Business Directory Plugin - Version 3.7.3

Version Description

Download this release

Release Info

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

Code changes from version 3.7.2 to 3.7.3

README.TXT CHANGED
@@ -1,11 +1,11 @@
1
  === Business Directory Plugin ===
2
  Contributors: businessdirectoryplugin
3
  Donate link: http://businessdirectoryplugin.com/premium-modules/
4
- Tags: business directory,directory,wordpress directory,wordpress directory plugin, wordpress directory theme,wordpress business directory,wordpress local directory,classified ads,classifieds,directory plugin,business directory plugin,directory widget,church directory,address book,address,member directory,members directory,city portal,city portal plugin,city guide plugin,city guide
5
  Requires at least: 4.0
6
- Tested up to: 4.4.1
7
- Last Updated: 2016-Jan-26
8
- Stable tag: tags/3.7.1
9
  License: GPLv2 or later
10
 
11
  Build any kind of local directory, directory of business providers, a Yellow-Pages business directory, Yelp-like review directory and much more!
@@ -116,6 +116,16 @@ If you are having problems please visit [support forum](http://www.businessdirec
116
 
117
 
118
  == Changelog ==
 
 
 
 
 
 
 
 
 
 
119
  = Version 3.7.1 =
120
  * Fixed bug where users can't change the category on listings during submit
121
 
1
  === Business Directory Plugin ===
2
  Contributors: businessdirectoryplugin
3
  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
 
117
 
118
  == Changelog ==
119
+ = Version 3.7.3 =
120
+ * Make category-specific fees work again.
121
+ * Improve the handling of deleted categories.
122
+
123
+ = Version 3.7.2 =
124
+ * Add alternative code for MIME type checking on image upload when FINFO is not available to prevent fatal errors.
125
+ * Fix fee selection on the frontend after Fees API update.
126
+ * Add warning to admins when the Directory is in paid mode and there are no fees active.
127
+ * Several minor improvements to the Fees API.
128
+
129
  = Version 3.7.1 =
130
  * Fixed bug where users can't change the category on listings during submit
131
 
admin/class-themes-admin.php CHANGED
@@ -15,6 +15,7 @@ class WPBDP_Themes_Admin {
15
  $this->updater = new WPBDP_Themes_Updater( $this->api );
16
 
17
  add_action( 'wp_ajax_wpbdp-themes-activate-license', array( &$this, 'ajax_activate_license' ) );
 
18
 
19
  add_action( 'wpbdp_admin_menu', array( &$this, 'admin_menu' ) );
20
  add_filter( 'wpbdp_admin_menu_reorder', array( &$this, 'admin_menu_move_themes_up' ) );
@@ -27,6 +28,8 @@ class WPBDP_Themes_Admin {
27
  add_action( 'wpbdp_action_delete-theme', array( &$this, 'delete_theme' ) );
28
  add_action( 'wpbdp_action_upload-theme', array( &$this, 'upload_theme' ) );
29
  add_action( 'wpbdp_action_create-theme-suggested-fields', array( &$this, 'create_suggested_fields' ) );
 
 
30
  }
31
 
32
  function admin_menu( $slug ) {
@@ -277,7 +280,7 @@ class WPBDP_Themes_Admin {
277
  if ( ! current_user_can( 'administrator' ) )
278
  die();
279
 
280
- $nonce = $_POST['_wpnonce'];
281
  $theme = $_POST['theme'];
282
  $license = trim( $_POST['license'] );
283
 
@@ -289,7 +292,7 @@ class WPBDP_Themes_Admin {
289
  if ( ! $info )
290
  die();
291
 
292
- $edd_name = isset( $info->edd_name ) ? $info->edd_name : '';
293
  if ( ! $edd_name )
294
  die();
295
 
@@ -301,7 +304,7 @@ class WPBDP_Themes_Admin {
301
  'item_name' => urlencode( $edd_name ),
302
  'url' => home_url()
303
  );
304
- $request = wp_remote_get( add_query_arg( $request_vars, 'http://bdtest.wpengine.com/' ), array( 'timeout' => 15, 'sslverify' => false ) );
305
 
306
  if ( is_wp_error( $request ) )
307
  $error = _x( 'Could not contact licensing server', 'licensing', 'WPBDM' );
@@ -332,6 +335,66 @@ class WPBDP_Themes_Admin {
332
  $response->send();
333
  }
334
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
335
  function theme_licenses() {
336
  $themes = $this->api->get_installed_themes();
337
 
@@ -339,4 +402,13 @@ class WPBDP_Themes_Admin {
339
  array( 'themes' => $themes ) );
340
  }
341
 
 
 
 
 
 
 
 
 
 
342
  }
15
  $this->updater = new WPBDP_Themes_Updater( $this->api );
16
 
17
  add_action( 'wp_ajax_wpbdp-themes-activate-license', array( &$this, 'ajax_activate_license' ) );
18
+ add_action( 'wp_ajax_wpbdp-themes-deactivate-license', array( &$this, 'ajax_deactivate_license' ) );
19
 
20
  add_action( 'wpbdp_admin_menu', array( &$this, 'admin_menu' ) );
21
  add_filter( 'wpbdp_admin_menu_reorder', array( &$this, 'admin_menu_move_themes_up' ) );
28
  add_action( 'wpbdp_action_delete-theme', array( &$this, 'delete_theme' ) );
29
  add_action( 'wpbdp_action_upload-theme', array( &$this, 'upload_theme' ) );
30
  add_action( 'wpbdp_action_create-theme-suggested-fields', array( &$this, 'create_suggested_fields' ) );
31
+
32
+ add_action( 'wpbdp-admin-themes-extra', array( &$this, 'enter_license_key_row' ) );
33
  }
34
 
35
  function admin_menu( $slug ) {
280
  if ( ! current_user_can( 'administrator' ) )
281
  die();
282
 
283
+ $nonce = $_POST['nonce'];
284
  $theme = $_POST['theme'];
285
  $license = trim( $_POST['license'] );
286
 
292
  if ( ! $info )
293
  die();
294
 
295
+ $edd_name = ! empty ( $info->edd_name ) ? $info->edd_name : $info->name;
296
  if ( ! $edd_name )
297
  die();
298
 
304
  'item_name' => urlencode( $edd_name ),
305
  'url' => home_url()
306
  );
307
+ $request = wp_remote_get( add_query_arg( $request_vars, 'http://businessdirectoryplugin.com/' ), array( 'timeout' => 15, 'sslverify' => false ) );
308
 
309
  if ( is_wp_error( $request ) )
310
  $error = _x( 'Could not contact licensing server', 'licensing', 'WPBDM' );
335
  $response->send();
336
  }
337
 
338
+ function ajax_deactivate_license() {
339
+ if ( ! current_user_can( 'administrator' ) )
340
+ die();
341
+
342
+ $nonce = $_POST['nonce'];
343
+ $theme = $_POST['theme'];
344
+
345
+ if ( ! wp_verify_nonce( $nonce, 'deactivate ' . $theme ) )
346
+ die();
347
+
348
+ // Try to activate license.
349
+ $info = $this->api->get_theme( $theme );
350
+ if ( ! $info )
351
+ die();
352
+
353
+ $edd_name = ! empty ( $info->edd_name ) ? $info->edd_name : $info->name;
354
+ if ( ! $edd_name )
355
+ die();
356
+
357
+ if ( empty( $info->license_key ) )
358
+ die();
359
+
360
+ // Try to deactivate the key.
361
+ $error = false;
362
+ $request_vars = array(
363
+ 'edd_action' => 'deactivate_license',
364
+ 'license' => $info->license_key,
365
+ 'item_name' => urlencode( $edd_name ),
366
+ 'url' => home_url()
367
+ );
368
+ $request = wp_remote_get( add_query_arg( $request_vars, 'http://businessdirectoryplugin.com/' ), array( 'timeout' => 15, 'sslverify' => false ) );
369
+
370
+ if ( is_wp_error( $request ) )
371
+ $error = _x( 'Could not contact licensing server', 'licensing', 'WPBDM' );
372
+
373
+ if ( ! $error ) {
374
+ $request_result = json_decode( wp_remote_retrieve_body( $request ) );
375
+
376
+ if ( ! is_object( $request_result ) || ! $request_result || ! isset( $request_result->success ) || ! $request_result->success )
377
+ $error = _x( 'Invalid response from server', 'licensing', 'WPBDM' );
378
+ }
379
+
380
+ $response = new WPBDP_Ajax_Response();
381
+ // if ( $error )
382
+ // return $response->send_error( sprintf( _x( 'Could not deactivate license: %s.', 'licensing', 'WPBDM' ), $error ) );
383
+
384
+ // Store license details.
385
+ $theme_licenses = get_option( 'wpbdp-themes-licenses', array() );
386
+ if ( ! is_array( $theme_licenses ) )
387
+ $theme_licenses = array();
388
+
389
+ if ( isset( $theme_licenses[ $theme ] ) )
390
+ unset( $theme_licenses[ $theme ] );
391
+
392
+ update_option( 'wpbdp-themes-licenses', $theme_licenses );
393
+
394
+ $response->set_message( _x( 'License deactivated', 'licensing', 'WPBDM' ) );
395
+ $response->send();
396
+ }
397
+
398
  function theme_licenses() {
399
  $themes = $this->api->get_installed_themes();
400
 
402
  array( 'themes' => $themes ) );
403
  }
404
 
405
+ function enter_license_key_row( $theme ) {
406
+ if ( $theme->can_be_activated )
407
+ return;
408
+
409
+ echo '<div class="wpbdp-theme-license-required-row">';
410
+ echo str_replace( '<a>', '<a href="' . esc_url( admin_url( 'admin.php?page=wpbdp-themes&v=licenses' ) ) . '">', _x( 'Activate your <a>license key</a> to use this theme.', 'themes', 'WPBDM' ) );
411
+ echo '</div>';
412
+ }
413
+
414
  }
admin/css/themes.css CHANGED
@@ -23,11 +23,12 @@
23
  .wpbdp-theme-details-wrapper {
24
  display: block;
25
  position: relative;
 
26
  }
27
 
28
  .wpbdp-theme-thumbnail {
29
  width: 100%;
30
- min-height: 232px;
31
  /* width: 310px;
32
  height: 232px;*/
33
  }
@@ -36,6 +37,7 @@
36
  opacity: 0.4;
37
  }
38
 
 
39
  .wpbdp-theme .choose-theme {
40
  display: none;
41
  position: absolute;
@@ -45,6 +47,11 @@
45
  right: 10px;
46
  }
47
 
 
 
 
 
 
48
  .wpbdp-theme:hover .choose-theme {
49
  display: block;
50
  }
@@ -180,3 +187,11 @@
180
  .wpbdp-theme .wpbdp-theme-update-info.theme-updated .update-message {
181
  background: #F0F5F7;
182
  }
 
 
 
 
 
 
 
 
23
  .wpbdp-theme-details-wrapper {
24
  display: block;
25
  position: relative;
26
+ height: 268px;
27
  }
28
 
29
  .wpbdp-theme-thumbnail {
30
  width: 100%;
31
+ height: 268px;
32
  /* width: 310px;
33
  height: 232px;*/
34
  }
37
  opacity: 0.4;
38
  }
39
 
40
+ .wpbdp-theme .enter-license,
41
  .wpbdp-theme .choose-theme {
42
  display: none;
43
  position: absolute;
47
  right: 10px;
48
  }
49
 
50
+ .wpbdp-theme .enter-license {
51
+ color: #a00;
52
+ }
53
+
54
+ .wpbdp-theme:hover .enter-license,
55
  .wpbdp-theme:hover .choose-theme {
56
  display: block;
57
  }
187
  .wpbdp-theme .wpbdp-theme-update-info.theme-updated .update-message {
188
  background: #F0F5F7;
189
  }
190
+
191
+ .wpbdp-theme .wpbdp-theme-license-required-row {
192
+ padding: 5px 10px;
193
+ border-top: solid 2px;
194
+ background: #fef7f1;
195
+ border-color: #D34F2B;
196
+ }
197
+
admin/css/themes.min.css CHANGED
@@ -1 +1 @@
1
- .wpbdp-theme{float:left;display:block;background:#fff;border:1px solid #ddd;position:relative;margin:10px 4% 10px 0;width:46%}.wpbdp-theme:nth-child(2n){margin-right:0}.wpbdp-theme.active{border:1px solid #2f2f2f}.wpbdp-theme-actions form{margin:0;padding:0;display:inline}.wpbdp-theme-actions form input[type="submit"]{margin:0}.wpbdp-theme-details-wrapper{display:block;position:relative}.wpbdp-theme-thumbnail{width:100%;min-height:232px}.wpbdp-theme:hover .wpbdp-theme-thumbnail{opacity:.4}.wpbdp-theme .choose-theme{display:none;position:absolute;float:none;font-weight:normal;top:3px;right:10px}.wpbdp-theme:hover .choose-theme{display:block}.wpbdp-theme.active .choose-theme,.wpbdp-theme.active:hover .choose-theme{display:none}.wpbdp-theme .wpbdp-theme-name{padding:8px;margin:0;background:#fafafa;font-weight:bold;font-size:15px;border-bottom:1px solid #ddd}.wpbdp-theme.active .wpbdp-theme-name{background:#2f2f2f;color:#fff;border-bottom:1px solid #2f2f2f;font-weight:normal}.wpbdp-theme.active .wpbdp-theme-name span{font-weight:bold}.wpbdp-theme .wpbdp-theme-details{display:none}.wpbdp-theme:hover .wpbdp-theme-details{display:block;position:absolute;top:15%;bottom:20%;left:5%;right:5%;padding:10px;font-size:90%;background:rgba(0,0,0,0.8);opacity:1.0;color:#fff;border-radius:3px}.wpbdp-theme-details dl{margin:0;padding:0}.wpbdp-theme-details dt{float:left;width:100px;margin:0;padding:0;font-weight:bold}.wpbdp-theme-details dd{display:block;margin:0;padding:0}.wpbdp-theme-details p.desc{font-size:inherit}.wpbdp-theme a.delete-theme-link{display:none;box-sizing:border-box;position:absolute;right:4px;bottom:10px;color:#fff;text-decoration:none;font-size:9px;background:#900000;padding:2px 5px;border-radius:2px}.wpbdp-theme:hover a.delete-theme-link{display:inline-block}#wpbdp-admin-page-theme-delete #delete-theme{margin-left:20px;color:#a00}#wpbdp-admin-page-theme-delete #delete-theme:hover{background:#d54e21;border-color:#d54e21;color:#fff;box-shadow:none}.wpbdp-theme .wpbdp-theme-update-info{padding:5px 10px;border-top:solid 2px}.wpbdp-theme .wpbdp-theme-update-info.update-available{background:#fef7f1;border-color:#d34f2b}.wpbdp-theme .wpbdp-theme-update-info.theme-updated{background:#f7fcfe;border-color:#1aa1d0}.wpbdp-theme .wpbdp-theme-update-info.update-error{border-color:red}.wpbdp-theme .wpbdp-theme-update-info .update-message{padding:2px 4px}.wpbdp-theme .wpbdp-theme-update-info.update-available .update-message{background:#fcf3ef}.wpbdp-theme .wpbdp-theme-update-info.update-error .update-message{color:red}.wpbdp-theme .wpbdp-theme-update-info.theme-updated .update-message{background:#f0f5f7}
1
+ .wpbdp-theme{float:left;display:block;background:#fff;border:1px solid #ddd;position:relative;margin:10px 4% 10px 0;width:46%}.wpbdp-theme:nth-child(2n){margin-right:0}.wpbdp-theme.active{border:1px solid #2f2f2f}.wpbdp-theme-actions form{margin:0;padding:0;display:inline}.wpbdp-theme-actions form input[type="submit"]{margin:0}.wpbdp-theme-details-wrapper{display:block;position:relative;height:268px}.wpbdp-theme-thumbnail{width:100%;height:268px}.wpbdp-theme:hover .wpbdp-theme-thumbnail{opacity:.4}.wpbdp-theme .enter-license,.wpbdp-theme .choose-theme{display:none;position:absolute;float:none;font-weight:normal;top:3px;right:10px}.wpbdp-theme .enter-license{color:#a00}.wpbdp-theme:hover .enter-license,.wpbdp-theme:hover .choose-theme{display:block}.wpbdp-theme.active .choose-theme,.wpbdp-theme.active:hover .choose-theme{display:none}.wpbdp-theme .wpbdp-theme-name{padding:8px;margin:0;background:#fafafa;font-weight:bold;font-size:15px;border-bottom:1px solid #ddd}.wpbdp-theme.active .wpbdp-theme-name{background:#2f2f2f;color:#fff;border-bottom:1px solid #2f2f2f;font-weight:normal}.wpbdp-theme.active .wpbdp-theme-name span{font-weight:bold}.wpbdp-theme .wpbdp-theme-details{display:none}.wpbdp-theme:hover .wpbdp-theme-details{display:block;position:absolute;top:15%;bottom:20%;left:5%;right:5%;padding:10px;font-size:90%;background:rgba(0,0,0,0.8);opacity:1.0;color:#fff;border-radius:3px}.wpbdp-theme-details dl{margin:0;padding:0}.wpbdp-theme-details dt{float:left;width:100px;margin:0;padding:0;font-weight:bold}.wpbdp-theme-details dd{display:block;margin:0;padding:0}.wpbdp-theme-details p.desc{font-size:inherit}.wpbdp-theme a.delete-theme-link{display:none;box-sizing:border-box;position:absolute;right:4px;bottom:10px;color:#fff;text-decoration:none;font-size:9px;background:#900000;padding:2px 5px;border-radius:2px}.wpbdp-theme:hover a.delete-theme-link{display:inline-block}#wpbdp-admin-page-theme-delete #delete-theme{margin-left:20px;color:#a00}#wpbdp-admin-page-theme-delete #delete-theme:hover{background:#d54e21;border-color:#d54e21;color:#fff;box-shadow:none}.wpbdp-theme .wpbdp-theme-update-info{padding:5px 10px;border-top:solid 2px}.wpbdp-theme .wpbdp-theme-update-info.update-available{background:#fef7f1;border-color:#d34f2b}.wpbdp-theme .wpbdp-theme-update-info.theme-updated{background:#f7fcfe;border-color:#1aa1d0}.wpbdp-theme .wpbdp-theme-update-info.update-error{border-color:red}.wpbdp-theme .wpbdp-theme-update-info .update-message{padding:2px 4px}.wpbdp-theme .wpbdp-theme-update-info.update-available .update-message{background:#fcf3ef}.wpbdp-theme .wpbdp-theme-update-info.update-error .update-message{color:red}.wpbdp-theme .wpbdp-theme-update-info.theme-updated .update-message{background:#f0f5f7}.wpbdp-theme .wpbdp-theme-license-required-row{padding:5px 10px;border-top:solid 2px;background:#fef7f1;border-color:#d34f2b}
admin/fees.php CHANGED
@@ -335,12 +335,12 @@ class WPBDP_FeesAdmin {
335
  $fee = $fee_id ? WPBDP_Fee_Plan::find( $fee_id ) : new WPBDP_Fee_Plan();
336
 
337
  if ( isset( $_POST['fee'] ) ) {
338
- if ( ! $fee->update( $_POST['fee'] ) )
339
- $this->admin->messages[] = array( $fee->errors->html() , 'error' );
340
- else
341
  $this->admin->messages[] = _x('Fee updated.', 'fees admin', 'WPBDM');
 
 
342
 
343
- return $this->feesTable();
344
  }
345
 
346
  wpbdp_render_page( WPBDP_PATH . 'admin/templates/fees-addoredit.tpl.php',
335
  $fee = $fee_id ? WPBDP_Fee_Plan::find( $fee_id ) : new WPBDP_Fee_Plan();
336
 
337
  if ( isset( $_POST['fee'] ) ) {
338
+ if ( $fee->update( $_POST['fee'] ) ) {
 
 
339
  $this->admin->messages[] = _x('Fee updated.', 'fees admin', 'WPBDM');
340
+ return $this->feesTable();
341
+ }
342
 
343
+ $this->admin->messages[] = array( $fee->errors->html() , 'error' );
344
  }
345
 
346
  wpbdp_render_page( WPBDP_PATH . 'admin/templates/fees-addoredit.tpl.php',
admin/js/themes.js CHANGED
@@ -12,15 +12,25 @@ jQuery(function($) {
12
  $( '#wpbdp-admin-page-themes-install #begin-theme-upload' ).removeAttr( 'disabled' );
13
  } );
14
 
15
- $( '#wpbdp-admin-page-themes form.license-activation' ).submit( function( e ) {
16
- e.preventDefault();
17
 
18
- var $form = $( this );
 
 
 
 
19
  var $msg = $( '.status-message', $form );
20
- var data = $( this ).serialize();
 
 
 
 
 
 
 
 
21
 
22
  $msg.removeClass( 'ok error' );
23
- $msg.html( $( 'input[type="submit"]', $form ).attr( 'data-l10n' ) );
24
 
25
  $.post( ajaxurl, data, function( res ) {
26
  if ( ! res.success ) {
@@ -38,11 +48,30 @@ jQuery(function($) {
38
  .addClass( 'ok' )
39
  .show();
40
 
41
- $( 'input[type="submit"]', $form ).hide();
42
- $( 'input[name="license"]', $form ).attr( 'readonly', 'readonly' );
 
 
 
 
 
 
 
43
  }, 'json' );
44
  } );
45
 
 
 
 
 
 
 
 
 
 
 
 
 
46
  $( '#wpbdp-admin-page-themes .wpbdp-theme .update-link' ).click( function( e ) {
47
  e.preventDefault();
48
 
12
  $( '#wpbdp-admin-page-themes-install #begin-theme-upload' ).removeAttr( 'disabled' );
13
  } );
14
 
 
 
15
 
16
+ $( '#wpbdp-admin-page-themes .license-activation input[type="button"]' ).click( function() {
17
+ var activate = $( this ).is( '[name="activate"]' );
18
+
19
+ var $form = $( this ).parents( '.license-activation' );
20
+ var $license = $( 'input[name="license"]', $form );
21
  var $msg = $( '.status-message', $form );
22
+ var data = { 'nonce': $( this ).attr( 'data-nonce' ),
23
+ 'theme': $( this ).attr( 'data-theme' ) };
24
+
25
+ if ( activate ) {
26
+ data['action'] = 'wpbdp-themes-activate-license';
27
+ data['license'] = $license.val();
28
+ } else {
29
+ data['action'] = 'wpbdp-themes-deactivate-license';
30
+ }
31
 
32
  $msg.removeClass( 'ok error' );
33
+ $msg.html( $( this ).attr( 'data-l10n' ) );
34
 
35
  $.post( ajaxurl, data, function( res ) {
36
  if ( ! res.success ) {
48
  .addClass( 'ok' )
49
  .show();
50
 
51
+ if ( activate ) {
52
+ $( 'input[name="activate"]', $form ).hide();
53
+ $( 'input[name="deactivate"]', $form ).show();
54
+ $license.attr( 'readonly', 'readonly' );
55
+ } else {
56
+ $license.removeAttr( 'readonly' ).val( '' );
57
+ $( 'input[name="deactivate"]', $form ).hide();
58
+ $( 'input[name="activate"]', $form ).show();
59
+ }
60
  }, 'json' );
61
  } );
62
 
63
+ /* $( '#wpbdp-admin-page-themes form.license-activation' ).submit( function( e ) {
64
+ $msg.hide()
65
+ .html( res.message )
66
+ .removeClass( 'error' )
67
+ .addClass( 'ok' )
68
+ .show();
69
+
70
+ $( 'input[name="activate"]', $form ).hide();
71
+ $( 'input[name="license"]', $form ).attr( 'readonly', 'readonly' );
72
+ }, 'json' );
73
+ } );*/
74
+
75
  $( '#wpbdp-admin-page-themes .wpbdp-theme .update-link' ).click( function( e ) {
76
  e.preventDefault();
77
 
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 form.license-activation").submit(function(e){e.preventDefault();var $form=$(this);var $msg=$(".status-message",$form);var data=$(this).serialize();$msg.removeClass("ok error");$msg.html($('input[type="submit"]',$form).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();$('input[type="submit"]',$form).hide();$('input[name="license"]',$form).attr("readonly","readonly")},"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 #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")})});
admin/templates/themes-item.tpl.php CHANGED
@@ -5,12 +5,16 @@
5
  </h3>
6
 
7
  <div class="wpbdp-theme-actions">
 
8
  <form action="" method="post">
9
  <input type="hidden" name="wpbdp-action" value="set-active-theme" />
10
  <input type="hidden" name="theme_id" value="<?php echo $theme->id; ?>" />
11
  <?php wp_nonce_field( 'activate theme ' . $theme->id ); ?>
12
  <input type="submit" class="button choose-theme button-primary" value="<?php _ex( 'Activate', 'themes', 'WPBDM' ); ?>" />
13
  </form>
 
 
 
14
  </div>
15
 
16
  <div class="wpbdp-theme-details-wrapper">
5
  </h3>
6
 
7
  <div class="wpbdp-theme-actions">
8
+ <?php if ( $theme->can_be_activated ): ?>
9
  <form action="" method="post">
10
  <input type="hidden" name="wpbdp-action" value="set-active-theme" />
11
  <input type="hidden" name="theme_id" value="<?php echo $theme->id; ?>" />
12
  <?php wp_nonce_field( 'activate theme ' . $theme->id ); ?>
13
  <input type="submit" class="button choose-theme button-primary" value="<?php _ex( 'Activate', 'themes', 'WPBDM' ); ?>" />
14
  </form>
15
+ <?php else: ?>
16
+ <!--<span class="license-required-message">License required</span>-->
17
+ <?php endif; ?>
18
  </div>
19
 
20
  <div class="wpbdp-theme-details-wrapper">
admin/templates/themes-licenses.tpl.php CHANGED
@@ -18,15 +18,21 @@ echo wpbdp_admin_notices();
18
  <?php echo $t->name; ?>
19
  </th>
20
  <td>
21
- <form action="" method="post" class="license-activation">
22
- <input type="hidden" name="action" value="wpbdp-themes-activate-license" />
23
- <?php wp_nonce_field( 'activate ' . $t->id ); ?>
24
- <input type="hidden" name="theme" value="<?php echo $t->id; ?>" />
25
- <input type="textfield" size="25" name="license" value="<?php echo $t->license_key; ?>" />
26
- <input type="submit" name="activate" class="button button-primary" value="Activate License"
27
- data-l10n="Activating license..." />
 
 
 
 
 
 
28
  <span class="status-message"></span>
29
- </form>
30
  </td>
31
  </tr>
32
  <?php endforeach; ?>
18
  <?php echo $t->name; ?>
19
  </th>
20
  <td>
21
+ <div class="license-activation">
22
+ <input type="textfield" size="25" name="license" value="<?php echo $t->license_key; ?>" <?php echo $t->license_key ? 'readonly="readonly"' : ''; ?> />
23
+
24
+ <input type="button" name="deactivate" class="button button-secondary" value="<?php _ex( 'Deactivate License', 'themes', 'WPBDM' ); ?>"
25
+ data-nonce="<?php echo wp_create_nonce( 'deactivate ' . $t->id ); ?>"
26
+ data-theme="<?php echo $t->id; ?>"
27
+ data-l10n="<?php _ex( 'Deactivating license...', 'themes', 'WPBDM' ); ?>"
28
+ style="<?php echo ( empty( $t->license_key ) ) ? 'display: none;' : '' ; ?>" />
29
+ <input type="button" name="activate" class="button button-primary" value="<?php _ex( 'Activate License', 'themes', 'WPBDM' ); ?>"
30
+ data-l10n="<?php _ex( 'Activating license...', 'themes', 'WPBDM' ); ?>"
31
+ data-nonce="<?php echo wp_create_nonce( 'activate ' . $t->id ); ?>"
32
+ data-theme="<?php echo $t->id; ?>"
33
+ style="<?php echo ( ! empty( $t->license_key ) ) ? 'display: none;' : '' ; ?>" />
34
  <span class="status-message"></span>
35
+ </div>
36
  </td>
37
  </tr>
38
  <?php endforeach; ?>
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.1
7
  * Author: D. Rodenbaugh
8
  * Author URI: http://businessdirectoryplugin.com
9
  * Text Domain: WPBDM
@@ -31,7 +31,7 @@
31
  if( preg_match( '#' . basename( __FILE__ ) . '#', $_SERVER['PHP_SELF'] ) )
32
  exit();
33
 
34
- define( 'WPBDP_VERSION', '3.7.1' );
35
 
36
  define( 'WPBDP_PATH', plugin_dir_path( __FILE__ ) );
37
  define( 'WPBDP_URL', trailingslashit( plugins_url( '/', __FILE__ ) ) );
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
  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__ ) ) );
core/api.php CHANGED
@@ -505,11 +505,19 @@ function wpbdp_current_query() {
505
  * @since 3.6.10
506
  */
507
  function wpbdp_experimental( $feature ) {
 
508
  global $wpbdp_development;
509
 
510
- if ( ! isset( $wpbdp_development ) )
511
- return false;
 
 
 
 
 
 
 
512
 
513
- return $wpbdp_development->option_get( $feature );
514
  }
515
 
505
  * @since 3.6.10
506
  */
507
  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;
515
+ if ( isset( $wpbdp_development ) )
516
+ $res = $wpbdp_development->option_get( $feature );
517
+
518
+ if ( $file_overrides && in_array( $feature, $file_overrides, true ) )
519
+ $res = true;
520
 
521
+ return $res;
522
  }
523
 
core/class-fee-plan.php CHANGED
@@ -80,8 +80,14 @@ class WPBDP_Fee_Plan extends WPBDP_DB_Entity {
80
  if ( $this->categories['all'] )
81
  return true;
82
 
83
- return in_array( $category_id,
84
- wpbdp_get_parent_catids( $category_id ) );
 
 
 
 
 
 
85
  }
86
 
87
  public static function for_category( $category_id ) {
80
  if ( $this->categories['all'] )
81
  return true;
82
 
83
+ $requested_cats = wpbdp_get_parent_catids( $category_id );
84
+
85
+ foreach ( $this->categories['categories'] as $s_cat_id ) {
86
+ if ( in_array( $s_cat_id, $requested_cats ) )
87
+ return true;
88
+ }
89
+
90
+ return false;
91
  }
92
 
93
  public static function for_category( $category_id ) {
core/class-fees-api.php CHANGED
@@ -59,6 +59,8 @@ class WPBDP_Fees_API {
59
  }
60
  }
61
 
 
 
62
  $fees[ $cat_id ] = $category_fees;
63
  }
64
 
59
  }
60
  }
61
 
62
+ // Do this so the first fee is at index 0.
63
+ $category_fees = array_merge( array(), $category_fees );
64
  $fees[ $cat_id ] = $category_fees;
65
  }
66
 
core/class-form-field.php CHANGED
@@ -503,7 +503,11 @@ class WPBDP_Form_Field {
503
  $data['weight'] = $this->weight;
504
  $data['display_flags'] = implode( ',', $this->display_flags );
505
  $data['field_data'] = serialize( $this->field_data );
506
- $data['tag'] = $this->tag;
 
 
 
 
507
 
508
  if ( $this->id ) {
509
  $wpdb->update( "{$wpdb->prefix}wpbdp_form_fields", $data, array( 'id' => $this->id ) );
503
  $data['weight'] = $this->weight;
504
  $data['display_flags'] = implode( ',', $this->display_flags );
505
  $data['field_data'] = serialize( $this->field_data );
506
+
507
+ if ( in_array( $this->association, array( 'title', 'excerpt', 'content', 'category', 'tags', 'rating' ), true ) )
508
+ $data['tag'] = $this->association;
509
+ else
510
+ $data['tag'] = $this->tag;
511
 
512
  if ( $this->id ) {
513
  $wpdb->update( "{$wpdb->prefix}wpbdp_form_fields", $data, array( 'id' => $this->id ) );
core/class-listing.php CHANGED
@@ -344,8 +344,10 @@ class WPBDP_Listing {
344
  $category->fee->id = $category->fee_id;
345
  $category->fee->label = _x( '(Fee Unavailable)', 'listing', 'WPBDM' );
346
  $category->fee->amount = 0.0;
347
- $category->fee->days = $category->fee_days;
348
- $category->fee->images = $category->fee_images;
 
 
349
  $category->fee->categories = array();
350
  $category->fee->extra_data = array();
351
  }
@@ -401,6 +403,10 @@ class WPBDP_Listing {
401
  } elseif ( ! $category_info ) {
402
  $fee_options = wpbdp_get_fees_for_category( $category_id );
403
 
 
 
 
 
404
  if ( $charge ) {
405
  $payment = new WPBDP_Payment( array( 'listing_id' => $this->id ) );
406
  $payment->add_category_fee_item( $category_id, reset( $fee_options ) );
344
  $category->fee->id = $category->fee_id;
345
  $category->fee->label = _x( '(Fee Unavailable)', 'listing', 'WPBDM' );
346
  $category->fee->amount = 0.0;
347
+ $category->fee_days = intval( $payment_info->data['fee_days'] );
348
+ $category->fee_images = intval( $payment_info->data['fee_images'] );
349
+ // $category->fee->days = $category->fee_days;
350
+ // $category->fee->images = $category->fee_images;
351
  $category->fee->categories = array();
352
  $category->fee->extra_data = array();
353
  }
403
  } elseif ( ! $category_info ) {
404
  $fee_options = wpbdp_get_fees_for_category( $category_id );
405
 
406
+ // Allow backend listing categories editing to always succeed.
407
+ if ( ! $fee_options && is_admin() && current_user_can( 'administrator' ) )
408
+ $fee_options[] = WPBDP_Fee_Plan::get_free_plan();
409
+
410
  if ( $charge ) {
411
  $payment = new WPBDP_Payment( array( 'listing_id' => $this->id ) );
412
  $payment->add_category_fee_item( $category_id, reset( $fee_options ) );
core/class-listings-api.php CHANGED
@@ -30,6 +30,7 @@ class WPBDP_Listings_API {
30
  add_action( 'transition_post_status', array( &$this, 'listing_published_notification' ), 10, 3 );
31
 
32
  add_action( 'before_delete_post', array( &$this, 'after_listing_delete' ) );
 
33
 
34
  $this->upgrades = WPBDP_Listing_Upgrade_API::instance();
35
  }
@@ -270,7 +271,14 @@ class WPBDP_Listings_API {
270
  $wpdb->query( $wpdb->prepare( "DELETE FROM {$wpdb->prefix}wpbdp_payments WHERE listing_id = %d", $post_id ) );
271
  }
272
 
 
 
 
 
 
273
 
 
 
274
 
275
  public function new_listing_confirmation_email( &$listing ) {
276
  if ( ! in_array( 'new-listing', wpbdp_get_option( 'user-notifications' ), true ) )
@@ -825,8 +833,10 @@ class WPBDP_Listings_API {
825
  foreach ( $rs as &$r ) {
826
  $listing = WPBDP_Listing::get( $r->listing_id );
827
 
828
- if ( ! $listing )
 
829
  continue;
 
830
 
831
  $base_replacements = array( 'site' => sprintf( '<a href="%s">%s</a>', get_bloginfo( 'url' ), get_bloginfo( 'name' ) ),
832
  'author' => get_the_author_meta( 'display_name', get_post( $r->listing_id )->post_author ),
30
  add_action( 'transition_post_status', array( &$this, 'listing_published_notification' ), 10, 3 );
31
 
32
  add_action( 'before_delete_post', array( &$this, 'after_listing_delete' ) );
33
+ add_action( 'delete_term', array( &$this, 'handle_delete_term' ), 10, 3 );
34
 
35
  $this->upgrades = WPBDP_Listing_Upgrade_API::instance();
36
  }
271
  $wpdb->query( $wpdb->prepare( "DELETE FROM {$wpdb->prefix}wpbdp_payments WHERE listing_id = %d", $post_id ) );
272
  }
273
 
274
+ public function handle_delete_term( $term_id, $tt_id, $taxonomy ) {
275
+ global $wpdb;
276
+
277
+ if ( WPBDP_CATEGORY_TAX != $taxonomy )
278
+ return;
279
 
280
+ $wpdb->query( $wpdb->prepare( "DELETE FROM {$wpdb->prefix}wpbdp_listing_fees WHERE category_id = %d", $term_id ) );
281
+ }
282
 
283
  public function new_listing_confirmation_email( &$listing ) {
284
  if ( ! in_array( 'new-listing', wpbdp_get_option( 'user-notifications' ), true ) )
833
  foreach ( $rs as &$r ) {
834
  $listing = WPBDP_Listing::get( $r->listing_id );
835
 
836
+ if ( ! $listing || ! term_exists( absint( $r->category_id ), WPBDP_CATEGORY_TAX ) ) {
837
+ $wpdb->query( $wpdb->prepare( "DELETE FROM {$wpdb->prefix}wpbdp_listing_fees WHERE id = %d", $r->id ) );
838
  continue;
839
+ }
840
 
841
  $base_replacements = array( 'site' => sprintf( '<a href="%s">%s</a>', get_bloginfo( 'url' ), get_bloginfo( 'name' ) ),
842
  'author' => get_the_author_meta( 'display_name', get_post( $r->listing_id )->post_author ),
core/form-fields.php CHANGED
@@ -24,7 +24,7 @@ class WPBDP_FormFields {
24
  }
25
 
26
  return self::$instance;
27
- }
28
 
29
  private function __construct() {
30
  // register core associations
@@ -65,7 +65,7 @@ class WPBDP_FormFields {
65
 
66
  $this->associations[ $association ] = $name ? $name : $association;
67
  $this->association_flags[ $association ] = is_array( $flags ) ? $flags : array( strval( $flags ) );
68
-
69
  if ( !isset( $this->association_field_types[ $association ] ) )
70
  $this->association_field_types[ $association ] = array();
71
  }
@@ -81,7 +81,7 @@ class WPBDP_FormFields {
81
  public function get_association_field_types( $association=null ) {
82
  if ( $association ) {
83
  if ( in_array( $association, array_keys( $this->associations ), true ) ) {
84
- return $this->association_field_types[ $association ];
85
  } else {
86
  return null;
87
  }
@@ -287,7 +287,7 @@ class WPBDP_FormFields {
287
  }
288
 
289
  $res = $unique ? ( $res ? $res[0] : null ) : $res;
290
-
291
  return $res;
292
  }
293
 
@@ -389,7 +389,7 @@ class WPBDP_FormFields {
389
 
390
  foreach ( $fields as $field ) {
391
  $name = WPBDP_Form_Field_Type::normalize_name( $field->get_label() );
392
-
393
  if ( $name == 'images' || $name == 'image' || $name == 'username' || $name == 'featured_level' || $name == 'expires_on' || $name == 'sequence_id' || in_array( $name, $names, true ) ) {
394
  $name = $name . '-' . $field->get_id();
395
  }
@@ -582,7 +582,7 @@ class WPBDP_FieldValidation {
582
  $values = explode( ',', $values );
583
 
584
  if ( !in_array( $value, $values ) )
585
- return WPBDP_ValidationError( sprintf( _x( '%s is invalid. Value most be one of %s.', 'form-fields-api validation', 'WPBDM' ), esc_attr( $args['field-label'] ), call_user_func( $formatter, $values ) ) );
586
  }
587
 
588
  }
24
  }
25
 
26
  return self::$instance;
27
+ }
28
 
29
  private function __construct() {
30
  // register core associations
65
 
66
  $this->associations[ $association ] = $name ? $name : $association;
67
  $this->association_flags[ $association ] = is_array( $flags ) ? $flags : array( strval( $flags ) );
68
+
69
  if ( !isset( $this->association_field_types[ $association ] ) )
70
  $this->association_field_types[ $association ] = array();
71
  }
81
  public function get_association_field_types( $association=null ) {
82
  if ( $association ) {
83
  if ( in_array( $association, array_keys( $this->associations ), true ) ) {
84
+ return $this->association_field_types[ $association ];
85
  } else {
86
  return null;
87
  }
287
  }
288
 
289
  $res = $unique ? ( $res ? $res[0] : null ) : $res;
290
+
291
  return $res;
292
  }
293
 
389
 
390
  foreach ( $fields as $field ) {
391
  $name = WPBDP_Form_Field_Type::normalize_name( $field->get_label() );
392
+
393
  if ( $name == 'images' || $name == 'image' || $name == 'username' || $name == 'featured_level' || $name == 'expires_on' || $name == 'sequence_id' || in_array( $name, $names, true ) ) {
394
  $name = $name . '-' . $field->get_id();
395
  }
582
  $values = explode( ',', $values );
583
 
584
  if ( !in_array( $value, $values ) )
585
+ return WPBDP_ValidationError( sprintf( _x( '%s is invalid. Value most be one of %s.', 'form-fields-api validation', 'WPBDM' ), esc_attr( $args['field-label'] ), call_user_func( $formatter, $values ) ) );
586
  }
587
 
588
  }
core/helpers/class-fs.php CHANGED
@@ -113,6 +113,7 @@ final class WPBDP_FS {
113
  }
114
 
115
  $normalized = basename( basename( strtolower( $zipfile ), '.zip' ), '.tmp' );
 
116
  $destdir = untrailingslashit( $destdir );
117
 
118
  $zip = new PclZip( $zipfile );
113
  }
114
 
115
  $normalized = basename( basename( strtolower( $zipfile ), '.zip' ), '.tmp' );
116
+ $normalized = str_replace( array( 'business-directory-', 'businessdirectory' ), '', $normalized );
117
  $destdir = untrailingslashit( $destdir );
118
 
119
  $zip = new PclZip( $zipfile );
core/helpers/class-themes-updater.php CHANGED
@@ -1,5 +1,4 @@
1
  <?php
2
- delete_transient( 'wpbdp-themes-updates' );
3
 
4
  class WPBDP_Themes_Updater {
5
 
@@ -76,7 +75,7 @@ class WPBDP_Themes_Updater {
76
  'url' => home_url(),
77
  'license' => $theme->license_key
78
  );
79
- $response = wp_remote_get( add_query_arg( $request, 'http://bdtest.wpengine.com/' ), array( 'timeout' => 15, 'sslverify' => false ) );
80
 
81
  if ( is_wp_error( $response ) )
82
  return false;
1
  <?php
 
2
 
3
  class WPBDP_Themes_Updater {
4
 
75
  'url' => home_url(),
76
  'license' => $theme->license_key
77
  );
78
+ $response = wp_remote_get( add_query_arg( $request, 'http://businessdirectoryplugin.com/' ), array( 'timeout' => 15, 'sslverify' => false ) );
79
 
80
  if ( is_wp_error( $response ) )
81
  return false;
core/installer.php CHANGED
@@ -2,7 +2,7 @@
2
 
3
  class WPBDP_Installer {
4
 
5
- const DB_VERSION = '10';
6
 
7
  private $installed_version = null;
8
 
@@ -22,6 +22,10 @@ class WPBDP_Installer {
22
  wpbdp_log('Expiration check was in schedule. Nothing to do.');
23
  }
24
 
 
 
 
 
25
  if ( self::DB_VERSION == $this->installed_version )
26
  return;
27
 
@@ -41,6 +45,15 @@ class WPBDP_Installer {
41
 
42
  add_option( 'wpbdp-show-drip-pointer', 1 );
43
  add_option( 'wpbdp-show-tracking-pointer', 1 );
 
 
 
 
 
 
 
 
 
44
  }
45
 
46
  delete_option('wpbusdirman_db_version');
@@ -159,7 +172,7 @@ class WPBDP_Installer {
159
  if ( get_option( 'wpbdp-manual-upgrade-pending', false ) )
160
  return;
161
 
162
- $upgrade_routines = array( '2.0', '2.1', '2.2', '2.3', '2.4', '2.5', '3.1', '3.2', '3.4', '3.5', '3.6', '3.7', '3.9', '4.0', '5', '6', '7', '8' );
163
 
164
  foreach ( $upgrade_routines as $v ) {
165
  if ( version_compare( $this->installed_version, $v ) < 0 ) {
@@ -881,6 +894,25 @@ class WPBDP_Installer {
881
  delete_option( WPBDP_Settings::PREFIX . 'show-search-form-in-results' );
882
  }
883
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
884
  }
885
 
886
 
2
 
3
  class WPBDP_Installer {
4
 
5
+ const DB_VERSION = '11';
6
 
7
  private $installed_version = null;
8
 
22
  wpbdp_log('Expiration check was in schedule. Nothing to do.');
23
  }
24
 
25
+ // As of @next-release we'll begin using this option to store DB migrations that were run.
26
+ if ( false === get_option( 'wpbdp-db-migrations', false ) )
27
+ update_option( 'wpbdp-db-migrations', array(), false );
28
+
29
  if ( self::DB_VERSION == $this->installed_version )
30
  return;
31
 
45
 
46
  add_option( 'wpbdp-show-drip-pointer', 1 );
47
  add_option( 'wpbdp-show-tracking-pointer', 1 );
48
+
49
+ // Create default paid fee.
50
+ $fee = new WPBDP_Fee_Plan( array( 'label' => _x( 'Default Fee', 'installer', 'WPBDM' ),
51
+ 'amount' => 1.0,
52
+ 'days' => 365,
53
+ 'images' => 1,
54
+ 'categories' => array( 'all' => true, 'categories' => array() ),
55
+ 'enabled' => 1 ) );
56
+ $fee->save();
57
  }
58
 
59
  delete_option('wpbusdirman_db_version');
172
  if ( get_option( 'wpbdp-manual-upgrade-pending', false ) )
173
  return;
174
 
175
+ $upgrade_routines = array( '2.0', '2.1', '2.2', '2.3', '2.4', '2.5', '3.1', '3.2', '3.4', '3.5', '3.6', '3.7', '3.9', '4.0', '5', '6', '7', '8', '11' );
176
 
177
  foreach ( $upgrade_routines as $v ) {
178
  if ( version_compare( $this->installed_version, $v ) < 0 ) {
894
  delete_option( WPBDP_Settings::PREFIX . 'show-search-form-in-results' );
895
  }
896
 
897
+ public function upgrade_to_11() {
898
+ // Save all form-fields again to set tags and shortnames.
899
+ // XXX: we might need to do this again once themes is officially released.
900
+ if ( wpbdp_experimental( 'themes' ) ) {
901
+ $fields = wpbdp_get_form_fields();
902
+
903
+ foreach ( $fields as &$f )
904
+ $f->save();
905
+ }
906
+ }
907
+
908
+ // public function upgrade_to_12() {
909
+ // global $wpdb;
910
+ //
911
+ // $wpdb->query( $wpdb->prepare(
912
+ // "DELETE lf.* FROM {$wpdb->prefix}wpbdp_listing_fees lf WHERE lf.category_id NOT IN ( SELECT tt.term_id FROM {$wpdb->term_taxonomy} tt WHERE tt.taxonomy = %s )",
913
+ // WPBDP_CATEGORY_TAX ) );
914
+ // }
915
+
916
  }
917
 
918
 
core/payment.php CHANGED
@@ -84,6 +84,8 @@ class WPBDP_PaymentsAPI {
84
  }
85
 
86
  public function check_config() {
 
 
87
  if ( wpbdp_get_option( 'featured-on' ) && ! wpbdp_get_option( 'payments-on' ) )
88
  return array(
89
  sprintf( _x( 'You are offering featured listings but have payments turned off. Go to <a href="%s">Manage Options - Payment</a> to change the payment settings. Until you change this, the <i>Upgrade to Featured</i> option will be disabled.', 'payments-api', 'WPBDM' ), admin_url( 'admin.php?page=wpbdp_admin_settings&groupid=payment' ) )
@@ -115,7 +117,7 @@ class WPBDP_PaymentsAPI {
115
 
116
  if ( ! $gateway_ok ) {
117
  $errors[] = sprintf(_x('You have payments turned on but no gateway is active and properly configured. Go to <a href="%s">Manage Options - Payment</a> to change the payment settings. Until you change this, the directory will operate in <i>Free Mode</i>.', 'admin', 'WPBDM'),
118
- admin_url('admin.php?page=wpbdp_admin_settings&groupid=payment'));
119
  } else {
120
  if ( count( $this->get_available_methods() ) >= 2 && $this->is_available( 'payfast' ) ) {
121
  $errors[] = __( 'BD detected PayFast and another gateway were enabled. This setup is not recommended due to PayFast supporting only ZAR and the other gateways not supporting this currency.', 'admin', 'WPBDM' );
@@ -124,6 +126,15 @@ class WPBDP_PaymentsAPI {
124
  if ( wpbdp_get_option( 'listing-renewal-auto' ) && ! $this->check_capability( 'recurring' ) ) {
125
  $errors[] = __( 'You have recurring renewal of listing fees enabled but the payment gateways installed don\'t support recurring payments. Until a gateway that supports recurring payments (such as PayPal) is enabled automatic renewals will be disabled.', 'WPBDM' );
126
  }
 
 
 
 
 
 
 
 
 
127
  }
128
 
129
  return $errors;
84
  }
85
 
86
  public function check_config() {
87
+ global $wpdb;
88
+
89
  if ( wpbdp_get_option( 'featured-on' ) && ! wpbdp_get_option( 'payments-on' ) )
90
  return array(
91
  sprintf( _x( 'You are offering featured listings but have payments turned off. Go to <a href="%s">Manage Options - Payment</a> to change the payment settings. Until you change this, the <i>Upgrade to Featured</i> option will be disabled.', 'payments-api', 'WPBDM' ), admin_url( 'admin.php?page=wpbdp_admin_settings&groupid=payment' ) )
117
 
118
  if ( ! $gateway_ok ) {
119
  $errors[] = sprintf(_x('You have payments turned on but no gateway is active and properly configured. Go to <a href="%s">Manage Options - Payment</a> to change the payment settings. Until you change this, the directory will operate in <i>Free Mode</i>.', 'admin', 'WPBDM'),
120
+ admin_url('admin.php?page=wpbdp_admin_settings&groupid=payment'));
121
  } else {
122
  if ( count( $this->get_available_methods() ) >= 2 && $this->is_available( 'payfast' ) ) {
123
  $errors[] = __( 'BD detected PayFast and another gateway were enabled. This setup is not recommended due to PayFast supporting only ZAR and the other gateways not supporting this currency.', 'admin', 'WPBDM' );
126
  if ( wpbdp_get_option( 'listing-renewal-auto' ) && ! $this->check_capability( 'recurring' ) ) {
127
  $errors[] = __( 'You have recurring renewal of listing fees enabled but the payment gateways installed don\'t support recurring payments. Until a gateway that supports recurring payments (such as PayPal) is enabled automatic renewals will be disabled.', 'WPBDM' );
128
  }
129
+
130
+ if ( 0 == absint( $wpdb->get_var( $wpdb->prepare( "SELECT COUNT(*) FROM {$wpdb->prefix}wpbdp_fees WHERE tag != %s AND enabled = %d", 'free', 1 ) ) ) ) {
131
+ $errors[] = str_replace( array( '<a href="fees">',
132
+ '<a href="settings">' ),
133
+ array( '<a href="' . admin_url( 'admin.php?page=wpbdp_admin_fees' ) . '">',
134
+ '<a href="' . admin_url( 'admin.php?page=wpbdp_admin_settings&groupid=payment' ) . '">' ),
135
+ __( 'You have payments enabled but there are no fees available. Users won\'t be able to post listings. Please <a href="fees">create some fees</a> or <a href="settings">configure the Directory</a> to operate in "Free Mode".',
136
+ 'WPBDM' ) );
137
+ }
138
  }
139
 
140
  return $errors;
core/templates/main_page.tpl.php CHANGED
@@ -3,11 +3,9 @@ $__template__ = array( 'wrapper' => 'page' );
3
  ?>
4
 
5
  <div id="wpbdp-categories">
6
- <?php
7
- wpbdp_the_directory_categories();
8
- ?>
9
  </div>
10
 
11
  <?php if ( $listings ): ?>
12
- <?php echo wpbdp_x_render( 'listings', array( 'query' => $listings ) ); ?>
13
  <?php endif; ?>
3
  ?>
4
 
5
  <div id="wpbdp-categories">
6
+ <?php wpbdp_the_directory_categories(); ?>
 
 
7
  </div>
8
 
9
  <?php if ( $listings ): ?>
10
+ <?php echo $listings; ?>
11
  <?php endif; ?>
core/templates/search.tpl.php ADDED
@@ -0,0 +1,27 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <div id="wpbdp-search-page" class="wpbdp-search-page businessdirectory-search businessdirectory wpbdp-page">
2
+ <div class="wpbdp-bar cf"><?php wpbdp_the_main_links(); ?></div>
3
+ <h2 class="title"><?php _ex('Search', 'search', 'WPBDM'); ?></h2>
4
+
5
+ <?php if ( 'above' == $search_form_position ): ?>
6
+ <?php echo $search_form; ?>
7
+ <?php endif; ?>
8
+
9
+ <?php if ($searching): ?>
10
+ <h3><?php _ex('Search Results', 'search', 'WPBDM'); ?></h3>
11
+
12
+ <?php if ( $results ): ?>
13
+ <div class="search-results">
14
+ <?php echo $results; ?>
15
+ </div>
16
+ <?php else: ?>
17
+ <?php _ex("No listings found.", 'templates', "WPBDM"); ?>
18
+ <br />
19
+ <?php echo sprintf('<a href="%s">%s</a>.', wpbdp_get_page_link('main'),
20
+ _x('Return to directory', 'templates', 'WPBDM')); ?>
21
+ <?php endif; ?>
22
+ <?php endif; ?>
23
+
24
+ <?php if ( 'below' == $search_form_position ): ?>
25
+ <?php echo $search_form; ?>
26
+ <?php endif; ?>
27
+ </div>
core/themes.php CHANGED
@@ -74,9 +74,18 @@ class WPBDP_Themes {
74
  }
75
 
76
  function field_theme_override( $html = '', &$field, $context, $listing_id ) {
77
- $options = array( 'field_' . $field->get_id(), 'field_' . $field->get_short_name(), 'field_' . $field->get_field_type_id() );
78
- if ( $field->get_tag() )
79
- $options[] = 'field_' . $field->get_tag();
 
 
 
 
 
 
 
 
 
80
 
81
  $path = '';
82
  foreach ( $options as $o ) {
@@ -318,6 +327,7 @@ class WPBDP_Themes {
318
 
319
  $t->is_core_theme = in_array( $t->id, array( 'no_theme', 'default' ), true );
320
  $t->active = ( $t->id == $this->get_active_theme() );
 
321
  }
322
  }
323
 
@@ -451,6 +461,7 @@ class WPBDP_Themes {
451
  array( '', '-', '', '', '' ),
452
  $id_or_file ),
453
  '_template' => $id_or_file,
 
454
  '_path' => $path,
455
  '_view' => null,
456
  '_full' => false,
@@ -464,6 +475,15 @@ class WPBDP_Themes {
464
  $defaults['_bar'] = true;
465
 
466
  $vars = array_merge( $defaults, $vars );
 
 
 
 
 
 
 
 
 
467
  $vars = apply_filters( 'wpbdp_template_variables', $vars, $id_or_file );
468
  $vars = apply_filters( 'wpbdp_template_variables__' . $id_or_file, $vars, $path );
469
 
74
  }
75
 
76
  function field_theme_override( $html = '', &$field, $context, $listing_id ) {
77
+ $options = array();
78
+
79
+ foreach ( array( $context . '-', '' ) as $prefix ) {
80
+ $options[] = $prefix . 'field-' . $field->get_id();
81
+ $options[] = $prefix . 'field-' . $field->get_short_name();
82
+
83
+ if ( $field->get_tag() )
84
+ $options[] = $prefix . 'field-' . $field->get_tag();
85
+
86
+ $options[] = $prefix . 'field-type-' . $field->get_field_type_id();
87
+ $options[] = $prefix . 'field';
88
+ }
89
 
90
  $path = '';
91
  foreach ( $options as $o ) {
327
 
328
  $t->is_core_theme = in_array( $t->id, array( 'no_theme', 'default' ), true );
329
  $t->active = ( $t->id == $this->get_active_theme() );
330
+ $t->can_be_activated = ( $t->is_core_theme || 'valid' == $t->license_status || $t->active );
331
  }
332
  }
333
 
461
  array( '', '-', '', '', '' ),
462
  $id_or_file ),
463
  '_template' => $id_or_file,
464
+ '_parent' => '',
465
  '_path' => $path,
466
  '_view' => null,
467
  '_full' => false,
475
  $defaults['_bar'] = true;
476
 
477
  $vars = array_merge( $defaults, $vars );
478
+
479
+ if ( $this->cache['template_vars_stack'] ) {
480
+ $cnt = count( $this->cache['template_vars_stack'] );
481
+ $last = $this->cache['template_vars_stack'][ $cnt - 1 ];
482
+
483
+ if ( ! empty( $last['_template'] ) )
484
+ $vars['_parent'] = $last['_template'];
485
+ }
486
+
487
  $vars = apply_filters( 'wpbdp_template_variables', $vars, $id_or_file );
488
  $vars = apply_filters( 'wpbdp_template_variables__' . $id_or_file, $vars, $path );
489
 
core/utils.php CHANGED
@@ -123,10 +123,15 @@ function wpbdp_media_upload($file_, $use_media_library=true, $check_image=false,
123
  if ( $sideload ) {
124
  $mime_type = '';
125
 
126
- if ( $finfo = finfo_open( FILEINFO_MIME ) ) {
127
- $mime_type = explode( ';', finfo_file( $finfo, $file_ ) );
128
- $mime_type = trim( $mime_type[0] );
129
- finfo_close( $finfo );
 
 
 
 
 
130
  }
131
 
132
  $file = array(
123
  if ( $sideload ) {
124
  $mime_type = '';
125
 
126
+ if ( function_exists( 'finfo_open' ) ) {
127
+ if ( $finfo = finfo_open( FILEINFO_MIME ) ) {
128
+ $mime_type = explode( ';', finfo_file( $finfo, $file_ ) );
129
+ $mime_type = trim( $mime_type[0] );
130
+ finfo_close( $finfo );
131
+ }
132
+ } else {
133
+ $type_info = wp_check_filetype( $file_, wp_get_mime_types() );
134
+ $mime_type = $type_info['type'];
135
  }
136
 
137
  $file = array(
core/view-submit-listing.php CHANGED
@@ -132,7 +132,7 @@ class WPBDP_Submit_Listing_Page extends WPBDP_View {
132
 
133
  $skip = true;
134
  foreach ( $fee_selection as $fs ) {
135
- if ( count( $fs['options'] ) > 1 ) {
136
  $skip = false;
137
  break;
138
  }
@@ -152,12 +152,16 @@ class WPBDP_Submit_Listing_Page extends WPBDP_View {
152
  $fee_selection[ $cat_id ] = array( 'fee_id' => $fee_id );
153
  } else {
154
  if ( $term = get_term( $cat_id, WPBDP_CATEGORY_TAX ) ) {
155
- $options = wpbdp_get_fees_for_category( $cat_id );
156
-
157
- if ( count( $options ) == 1 )
158
- $fee_id = $options[0]->id;
159
- else
160
- $fee_id = isset( $_POST['fees'][ $cat_id ] ) ? $_POST['fees'][ $cat_id ] : $fee_id;
 
 
 
 
161
 
162
  $fee_selection[ $cat_id ] = array( 'fee_id' => $fee_id,
163
  'term' => $term,
@@ -168,6 +172,7 @@ class WPBDP_Submit_Listing_Page extends WPBDP_View {
168
  }
169
  }
170
 
 
171
  return $fee_selection;
172
  }
173
 
@@ -194,7 +199,7 @@ class WPBDP_Submit_Listing_Page extends WPBDP_View {
194
  $validates = true;
195
 
196
  foreach ( array_keys( $this->state->categories ) as $cat_id) {
197
- $selected_fee_id = wpbdp_getv( $_POST['fees'], $cat_id, null );
198
 
199
  if ( null === $selected_fee_id ) {
200
  $this->errors[] = sprintf( _x( 'Please select a fee option for the "%s" category.', 'templates', 'WPBDM' ), esc_html( $fee_selection[ $cat_id ]['term']->name ) );
132
 
133
  $skip = true;
134
  foreach ( $fee_selection as $fs ) {
135
+ if ( ! $fs['options'] || count( $fs['options'] ) > 1 ) {
136
  $skip = false;
137
  break;
138
  }
152
  $fee_selection[ $cat_id ] = array( 'fee_id' => $fee_id );
153
  } else {
154
  if ( $term = get_term( $cat_id, WPBDP_CATEGORY_TAX ) ) {
155
+ if ( $options = wpbdp_get_fees_for_category( $cat_id ) ) {
156
+ if ( count( $options ) == 1 ) {
157
+ $fee = reset( $options );
158
+ $fee_id = $fee->id;
159
+ } else {
160
+ $fee_id = isset( $_POST['fees'][ $cat_id ] ) ? $_POST['fees'][ $cat_id ] : $fee_id;
161
+ }
162
+ } else {
163
+ $fee_id = null;
164
+ }
165
 
166
  $fee_selection[ $cat_id ] = array( 'fee_id' => $fee_id,
167
  'term' => $term,
172
  }
173
  }
174
 
175
+
176
  return $fee_selection;
177
  }
178
 
199
  $validates = true;
200
 
201
  foreach ( array_keys( $this->state->categories ) as $cat_id) {
202
+ $selected_fee_id = wpbdp_getv( $_POST['fees'], $cat_id, null );
203
 
204
  if ( null === $selected_fee_id ) {
205
  $this->errors[] = sprintf( _x( 'Please select a fee option for the "%s" category.', 'templates', 'WPBDM' ), esc_html( $fee_selection[ $cat_id ]['term']->name ) );
core/views.php CHANGED
@@ -399,8 +399,8 @@ class WPBDP_DirectoryController {
399
  wpbdp_push_query( $q );
400
 
401
  $html = wpbdp_x_render( 'listings', array( '_id' => 'listings',
402
- '_wrapper' => 'page',
403
- '_bar' => true,
404
  'query' => $q ) );
405
  wp_reset_postdata();
406
  } else {
@@ -513,7 +513,7 @@ class WPBDP_DirectoryController {
513
  }
514
 
515
  if ( wpbdp_experimental( 'themes' ) ) {
516
- $html .= wpbdp_x_render( 'main_page', array( '_full' => true, 'listings' => false ) );
517
  return $html;
518
  }
519
 
@@ -616,13 +616,35 @@ class WPBDP_DirectoryController {
616
  if ( ! $searching || 'none' != wpbdp_get_option( 'search-form-in-results' ) )
617
  $search_form = wpbdp_render_page( WPBDP_PATH . 'templates/search-form.tpl.php', array( 'fields' => $fields ) );
618
 
619
- $html = wpbdp_render( 'search',
620
- array( 'search_form' => $search_form,
621
- 'search_form_position' => wpbdp_get_option( 'search-form-in-results' ),
622
- 'fields' => $fields,
623
- 'searching' => $searching
624
- ),
625
- false );
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
626
  wp_reset_query();
627
  wpbdp_pop_query();
628
 
399
  wpbdp_push_query( $q );
400
 
401
  $html = wpbdp_x_render( 'listings', array( '_id' => 'listings',
402
+ '_wrapper' => $include_buttons ? 'page' : '',
403
+ '_bar' => $include_buttons ? true : false,
404
  'query' => $q ) );
405
  wp_reset_postdata();
406
  } else {
513
  }
514
 
515
  if ( wpbdp_experimental( 'themes' ) ) {
516
+ $html .= wpbdp_x_render( 'main_page', array( '_full' => true, 'listings' => $listings ) );
517
  return $html;
518
  }
519
 
616
  if ( ! $searching || 'none' != wpbdp_get_option( 'search-form-in-results' ) )
617
  $search_form = wpbdp_render_page( WPBDP_PATH . 'templates/search-form.tpl.php', array( 'fields' => $fields ) );
618
 
619
+ if ( wpbdp_experimental( 'themes' ) ) {
620
+ $results = false;
621
+
622
+ if ( have_posts() ) {
623
+ $results = '';
624
+ $results .= wpbdp_capture_action( 'wpbdp_before_search_results' );
625
+ $results .= wpbdp_x_render( 'listings', array( '_parent' => 'search',
626
+ 'query' => wpbdp_current_query() ) );
627
+ $results .= wpbdp_capture_action( 'wpbdp_after_search_results' );
628
+ }
629
+
630
+ $html = wpbdp_x_render( 'search',
631
+ array( 'search_form' => $search_form,
632
+ 'search_form_position' => wpbdp_get_option( 'search-form-in-results' ),
633
+ 'fields' => $fields,
634
+ 'searching' => $searching,
635
+ 'results' => $results
636
+ ) );
637
+
638
+ } else {
639
+ $html = wpbdp_render( 'search',
640
+ array( 'search_form' => $search_form,
641
+ 'search_form_position' => wpbdp_get_option( 'search-form-in-results' ),
642
+ 'fields' => $fields,
643
+ 'searching' => $searching
644
+ ),
645
+ false );
646
+ }
647
+
648
  wp_reset_query();
649
  wpbdp_pop_query();
650
 
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-01-21 13:45:58+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."
@@ -427,104 +427,119 @@ msgid "There are no images currently attached to the listing."
427
  msgstr ""
428
  "Es sind keine Bilder vorhanden die dem Eintrag aktuell hinzugefügt wurden."
429
 
430
- #: admin/class-themes-admin.php:41
431
  #, fuzzy
432
  msgctxt "themes"
433
  msgid "Directory Themes"
434
  msgstr "Verzeichnis Kategorien"
435
 
436
- #: admin/class-themes-admin.php:42
437
  #, fuzzy
438
  msgctxt "themes"
439
  msgid "Directory Themes %s"
440
  msgstr "Verzeichnis Kategorien"
441
 
442
- #: admin/class-themes-admin.php:97
443
  #, fuzzy
444
  msgctxt "themes"
445
  msgid "Could not change the active theme to \"%s\"."
446
  msgstr "Konnte Eintragskategorie nicht erstellen \"%s\""
447
 
448
- #: admin/class-themes-admin.php:144
449
  msgctxt "themes"
450
  msgid "Active theme changed to \"%s\"."
451
  msgstr ""
452
 
453
- #: admin/class-themes-admin.php:147
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:154
461
  msgctxt "themes"
462
  msgid "Dismiss this warning"
463
  msgstr ""
464
 
465
- #: admin/class-themes-admin.php:157
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:164
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:167
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:170
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:173
490
  msgctxt "themes"
491
  msgid "Could not delete theme directory. Check permissions."
492
  msgstr ""
493
 
494
- #: admin/class-themes-admin.php:199
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:206
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:307 core/licensing.php:127
507
- #: 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:313 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:318 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:331 core/licensing.php:332
524
  msgctxt "licensing"
525
  msgid "License activated"
526
  msgstr "Lizenz aktiviert"
527
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
528
  #: admin/csv-export.php:136
529
  msgctxt "admin csv-export"
530
  msgid "Could not create a temporary directory for handling this CSV export."
@@ -613,68 +628,92 @@ msgctxt "fees admin"
613
  msgid "fees"
614
  msgstr "Preise"
615
 
616
- #: admin/fees.php:16
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
617
  msgctxt "fees admin"
618
- msgid "You do not have any listing fees setup yet."
619
- msgstr "Du hast bisher noch keine Konfiguration für Preise von Einträgen."
 
620
 
621
- #: admin/fees.php:32
622
  #, fuzzy
623
  msgctxt "admin fees table"
624
  msgid "All"
625
  msgstr "Alle"
626
 
627
- #: admin/fees.php:44
628
  #, fuzzy
629
  msgctxt "admin fees table"
630
  msgid "Active"
631
  msgstr "Nur Aktiv"
632
 
633
- #: admin/fees.php:54
634
  #, fuzzy
635
  msgctxt "admin fees table"
636
  msgid "Not Available"
637
  msgstr "verfügbare Bilder:"
638
 
639
- #: admin/fees.php:61
640
  #, fuzzy
641
  msgctxt "admin fees table"
642
  msgid "Disabled"
643
  msgstr "Preis löschen"
644
 
645
- #: admin/fees.php:70
646
  msgctxt "fees admin"
647
  msgid "Label"
648
  msgstr "Bezeichnung"
649
 
650
- #: admin/fees.php:71
651
  msgctxt "fees admin"
652
  msgid "Amount"
653
  msgstr "Preis"
654
 
655
- #: admin/fees.php:72
656
  msgctxt "fees admin"
657
  msgid "Duration"
658
  msgstr "Zeitraum"
659
 
660
- #: admin/fees.php:73
661
  msgctxt "fees admin"
662
  msgid "Images"
663
  msgstr "Bilder"
664
 
665
- #: admin/fees.php:74
666
  #, fuzzy
667
  msgctxt "fees admin"
668
  msgid "Featured/Sticky"
669
  msgstr "unterstützter (unbeweglicher) Status"
670
 
671
- #: admin/fees.php:78
672
  #, fuzzy
673
  msgctxt "fees admin"
674
  msgid "Status"
675
  msgstr "Status"
676
 
677
- #: admin/fees.php:131
678
  msgctxt "fees admin"
679
  msgid ""
680
  "This is the default free plan for your directory. You can't delete it and "
@@ -683,121 +722,103 @@ msgid ""
683
  "fee plans, including ones for 0.00 (free) if you wish."
684
  msgstr ""
685
 
686
- #: admin/fees.php:163
687
  msgctxt "fees admin"
688
  msgid "Edit"
689
  msgstr "Bearbeiten"
690
 
691
- #: admin/fees.php:173
692
  msgctxt "fees admin"
693
  msgid "Disable"
694
  msgstr ""
695
 
696
- #: admin/fees.php:177
697
  msgctxt "fees admin"
698
  msgid "Enable"
699
  msgstr ""
700
 
701
- #: admin/fees.php:181
702
  msgctxt "fees admin"
703
  msgid "Delete"
704
  msgstr "Löschen"
705
 
706
- #: admin/fees.php:202
707
  msgctxt "fees admin"
708
  msgid "Forever"
709
  msgstr "Für immer"
710
 
711
- #: admin/fees.php:203
712
  msgctxt "fees admin"
713
  msgid "%d day"
714
  msgid_plural "%d days"
715
  msgstr[0] "%d Tag"
716
  msgstr[1] "%d Tage"
717
 
718
- #: admin/fees.php:207
719
  msgctxt "fees admin"
720
  msgid "%d image"
721
  msgid_plural "%d images"
722
  msgstr[0] "%d Bild"
723
  msgstr[1] "%d Bilder"
724
 
725
- #: admin/fees.php:212
726
  msgctxt "fees admin"
727
  msgid "All categories"
728
  msgstr "Alle Kategorien"
729
 
730
- #: admin/fees.php:226
731
  msgctxt "fees admin"
732
  msgid "Yes"
733
  msgstr ""
734
 
735
- #: admin/fees.php:226
736
  msgctxt "fees admin"
737
  msgid "No"
738
  msgstr ""
739
 
740
- #: admin/fees.php:231
741
- #, fuzzy
742
- msgctxt "fees admin"
743
- msgid "Disabled"
744
- msgstr "Preis löschen"
745
-
746
- #: admin/fees.php:234
747
- #, fuzzy
748
- msgctxt "fees admin"
749
- msgid "Not Available"
750
- msgstr "verfügbare Bilder:"
751
-
752
- #: admin/fees.php:236
753
- #, fuzzy
754
- msgctxt "fees admin"
755
- msgid "Active"
756
- msgstr "Nur Aktiv"
757
-
758
- #: admin/fees.php:261
759
  #, fuzzy
760
  msgctxt "fees admin"
761
  msgid "Fee enabled."
762
  msgstr "Preis gelöscht."
763
 
764
- #: admin/fees.php:269
765
  #, fuzzy
766
  msgctxt "fees admin"
767
  msgid "Fee disabled."
768
  msgstr "Preis gelöscht."
769
 
770
- #: admin/fees.php:294
771
  msgctxt "fees order"
772
  msgid "Label"
773
  msgstr "Bezeichnung"
774
 
775
- #: admin/fees.php:295
776
  msgctxt "fees order"
777
  msgid "Amount"
778
  msgstr "Preis"
779
 
780
- #: admin/fees.php:296
781
  msgctxt "fees order"
782
  msgid "Duration"
783
  msgstr "Zeitraum"
784
 
785
- #: admin/fees.php:297
786
  msgctxt "fees order"
787
  msgid "Images"
788
  msgstr "Bilder"
789
 
790
- #: admin/fees.php:298
791
  msgctxt "fees order"
792
  msgid "Custom Order"
793
  msgstr "Benutzerdefinierter Auftrag"
794
 
795
- #: admin/fees.php:317
796
  msgctxt "fees admin"
797
  msgid "Fee updated."
798
  msgstr "Preis aktualisiert."
799
 
800
- #: admin/fees.php:340
801
  msgctxt "fees admin"
802
  msgid "Fee deleted."
803
  msgstr "Preis gelöscht."
@@ -2095,7 +2116,7 @@ msgctxt "form-fields admin"
2095
  msgid "Please see the <a>Form Fields documentation</a> for more details."
2096
  msgstr ""
2097
 
2098
- #. #-#-#-#-# WPBDM.pot (Business Directory Plugin 3.6.13) #-#-#-#-#
2099
  #. Plugin Name of the plugin/theme
2100
  #: admin/templates/header.tpl.php:4
2101
  msgid "Business Directory Plugin"
@@ -2648,23 +2669,47 @@ msgctxt "themes"
2648
  msgid "Active:"
2649
  msgstr "Nur Aktiv"
2650
 
2651
- #: admin/templates/themes-item.tpl.php:12
2652
  #, fuzzy
2653
  msgctxt "themes"
2654
  msgid "Activate"
2655
  msgstr "Aktiviere Lizenz"
2656
 
2657
- #: admin/templates/themes-item.tpl.php:29
2658
  msgctxt "themes"
2659
  msgid "Version:"
2660
  msgstr ""
2661
 
2662
- #: admin/templates/themes-item.tpl.php:32
2663
  #, fuzzy
2664
  msgctxt "themes"
2665
  msgid "Author:"
2666
  msgstr "Author"
2667
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
2668
  #: admin/templates/transactions.tpl.php:2
2669
  msgctxt "admin transactions"
2670
  msgid "Transactions"
@@ -2927,12 +2972,12 @@ msgctxt "form-fields-api"
2927
  msgid "\"%s\" is an invalid field type for this association."
2928
  msgstr "\"%s\" ist ein ungültiger Feldtyp für diese Verbindung."
2929
 
2930
- #: core/class-form-field.php:527
2931
  msgctxt "form-fields-api"
2932
  msgid "Invalid field ID"
2933
  msgstr "Ungültige Feld ID"
2934
 
2935
- #: core/class-form-field.php:536
2936
  msgctxt "form-fields api"
2937
  msgid ""
2938
  "This form field can't be deleted because it is required for the plugin to "
@@ -2941,7 +2986,7 @@ msgstr ""
2941
  "Dieses Formfeld kann nicht gelöscht werden, weil es ein Pflichtfeld ist, "
2942
  "damit das Modul richtig funktioniert."
2943
 
2944
- #: core/class-form-field.php:548
2945
  msgctxt "form-fields-api"
2946
  msgid "An error occurred while trying to delete this field."
2947
  msgstr "Während der Löschung des Feldes ist ein Fehler aufgetreten."
@@ -5059,40 +5104,46 @@ msgctxt "fs helper"
5059
  msgid "Destination dir \"%s\" is not writable."
5060
  msgstr "Eintragskategorie \"%s\" existiert nicht"
5061
 
5062
- #: core/helpers/class-themes-updater.php:126
5063
  msgctxt "themes"
5064
  msgid "Updating theme..."
5065
  msgstr ""
5066
 
5067
- #: core/helpers/class-themes-updater.php:127
5068
  #, fuzzy
5069
  msgctxt "themes"
5070
  msgid "Theme updated."
5071
  msgstr "Preis aktualisiert."
5072
 
5073
- #: core/helpers/class-themes-updater.php:129
5074
  msgctxt "themes"
5075
  msgid "New version available (<b>%s</b>). <a>Update now.</a>"
5076
  msgstr ""
5077
 
5078
- #: core/helpers/class-themes-updater.php:157
5079
  #, fuzzy
5080
  msgctxt "themes"
5081
  msgid "Could not update theme: %s"
5082
  msgstr "Konnte Lizenz nicht deaktivieren: %s"
5083
 
5084
- #: core/helpers/class-themes-updater.php:163
5085
  #, fuzzy
5086
  msgctxt "themes"
5087
  msgid "Theme was updated sucessfully."
5088
  msgstr "Der Import wurde erfolgreich abgeschlossen."
5089
 
5090
- #: core/installer.php:38
5091
  msgctxt "default category name"
5092
  msgid "General"
5093
  msgstr "Allgemein"
5094
 
5095
- #: core/installer.php:471
 
 
 
 
 
 
5096
  msgctxt "installer"
5097
  msgid ""
5098
  "<b>Business Directory Plugin - Regions Module</b> was disabled because it is "
@@ -5103,41 +5154,41 @@ msgstr ""
5103
  "inkompatibel mit der aktuellen Version des Branchenverzeichnisses ist. Bitte "
5104
  "aktualisiere das Regionenmodul. "
5105
 
5106
- #: core/installer.php:537
5107
  msgctxt "installer"
5108
  msgid "Cleaning up listing fees information... %d/%d"
5109
  msgstr "Eintragpreisinformation säubern... %d/%d"
5110
 
5111
- #: core/installer.php:587
5112
  msgctxt "installer"
5113
  msgid "Migrating previous transactions to new Payments API... %d/%d"
5114
  msgstr "Migriere vergangene Transaktionen zur neuen Bezahl API... %d/%d"
5115
 
5116
- #: core/installer.php:616
5117
  msgctxt "installer"
5118
  msgid "Initial listing payment (BD < 3.4)"
5119
  msgstr "Initialbezahlung Eintrag (BD < 3.4)"
5120
 
5121
- #: core/installer.php:627
5122
  msgctxt "installer"
5123
  msgid "Listing edit payment (BD < 3.4)"
5124
  msgstr "Bezahlung Eintrag bearbeiten (BD < 3.4)"
5125
 
5126
- #: core/installer.php:648
5127
  msgctxt "installer"
5128
  msgid "Renewal fee \"%s\" for category \"%s\""
5129
  msgstr "Erneuere Preis \"%s\" für Kategorie \"%s\""
5130
 
5131
- #: core/installer.php:667
5132
  msgctxt "installer"
5133
  msgid "Listing upgrade to featured"
5134
  msgstr "Eintrag aktualisieren auf Hervorhebung"
5135
 
5136
- #: core/installer.php:909
5137
  msgid "Business Directory - Manual Upgrade Required"
5138
  msgstr "Branchenverzeichnis - Manuelle Aktualisierung erforderlich"
5139
 
5140
- #: core/installer.php:911
5141
  msgid ""
5142
  "Business Directory features are currently disabled because the plugin needs "
5143
  "to perform a manual upgrade before continuing."
@@ -5145,15 +5196,15 @@ msgstr ""
5145
  "Branchenverzeichnis Hervorhebungen sind aktuell deaktiviert, weil das Modul "
5146
  "manuell aktualisiert werden muss, bevor weiter hervorgehoben werden kann."
5147
 
5148
- #: core/installer.php:913
5149
  msgid "Perform Manual Upgrade"
5150
  msgstr "Manuelle Aktualisierung durchführen"
5151
 
5152
- #: core/installer.php:929 core/installer.php:930 core/installer.php:941
5153
  msgid "Business Directory - Manual Upgrade"
5154
  msgstr "Branchenverzeichnis - Manuelle Aktualisierung"
5155
 
5156
- #: core/installer.php:945
5157
  msgid ""
5158
  "Business Directory features are currently disabled because the plugin needs "
5159
  "to perform a manual upgrade before it can be used."
@@ -5161,22 +5212,22 @@ msgstr ""
5161
  "Branchenverzeichnis Hervorhebungen sind momentan deaktiviert weil das Modul "
5162
  "manuell aktualisiert werden muss, bevor es weiter verwendet werden kann."
5163
 
5164
- #: core/installer.php:947
5165
  msgid "Click \"Start Upgrade\" and wait until the process finishes."
5166
  msgstr ""
5167
  "Klicke \"Starte Aktualisierung\" und warte bis der Vorgang beendet wurde."
5168
 
5169
- #: core/installer.php:950
5170
  msgctxt "manual-upgrade"
5171
  msgid "Start Upgrade"
5172
  msgstr "Starte Aktualisierung"
5173
 
5174
- #: core/installer.php:952
5175
  msgctxt "manual-upgrade"
5176
  msgid "Pause Upgrade"
5177
  msgstr "Aktualisierung pausieren"
5178
 
5179
- #: core/installer.php:958
5180
  msgctxt "manual-upgrade"
5181
  msgid ""
5182
  "The upgrade was sucessfully performed. Business Directory Plugin is now "
@@ -5185,7 +5236,7 @@ msgstr ""
5185
  "Die Aktualisierung wurde erfolgreich durchgeführt. Branchenverzeichnis "
5186
  "Erweiterung ist nun verfügbar."
5187
 
5188
- #: core/installer.php:961
5189
  msgctxt "manual-upgrade"
5190
  msgid "Go to \"Directory Admin\""
5191
  msgstr "Nach \" Verzeichnis Administration\""
@@ -5262,12 +5313,7 @@ msgctxt "licensing"
5262
  msgid "Could not deactivate license: %s."
5263
  msgstr "Konnte Lizenz nicht deaktivieren: %s"
5264
 
5265
- #: core/licensing.php:350
5266
- msgctxt "licensing"
5267
- msgid "License deactivated"
5268
- msgstr "Lizenz deaktiviert"
5269
-
5270
- #: core/payment.php:89
5271
  msgctxt "payments-api"
5272
  msgid ""
5273
  "You are offering featured listings but have payments turned off. Go to <a "
@@ -5280,7 +5326,7 @@ msgstr ""
5280
  "Bezahlungseinstellungen zu verändern. Bis dahin ist die <i>Aktualisieren auf "
5281
  "Hervorgehoben</i> Option deaktiviert."
5282
 
5283
- #: core/payment.php:107
5284
  msgctxt "payments-api"
5285
  msgid ""
5286
  "The <b>%s</b> gateway is active but not properly configured. The gateway "
@@ -5291,7 +5337,7 @@ msgstr ""
5291
  "Gateway funktioniert nicht bis folgende Probleme gelöst wurden: <b>%s</b>. "
5292
  "Prüfe die <a href=\"%s\">Bezahlung Einstellungen</a>."
5293
 
5294
- #: core/payment.php:117
5295
  msgctxt "admin"
5296
  msgid ""
5297
  "You have payments turned on but no gateway is active and properly "
@@ -5304,7 +5350,7 @@ msgstr ""
5304
  "Bezahleinstellungen zu ändern. Das Verzeichnis wird im <i>kostenlosen Modus</"
5305
  "i> ausgeführt, bis die Änderungen gemacht wurden."
5306
 
5307
- #: core/payment.php:121
5308
  msgid ""
5309
  "BD detected PayFast and another gateway were enabled. This setup is not "
5310
  "recommended due to PayFast supporting only ZAR and the other gateways not "
@@ -5314,7 +5360,7 @@ msgstr ""
5314
  "aktiviert wurde. Dieses Setup ist nicht empfohlen, weil PayFast nur ZAR und "
5315
  "andere Gateways unterstützt und nicht dieses Zahlungsmittel."
5316
 
5317
- #: core/payment.php:125
5318
  msgid ""
5319
  "You have recurring renewal of listing fees enabled but the payment gateways "
5320
  "installed don't support recurring payments. Until a gateway that supports "
@@ -5325,37 +5371,44 @@ msgstr ""
5325
  "unterstützt keine wiederholten Abbuchungen. Bitte benutze einen Dienst wie "
5326
  "Paypal. Solange bleiben automatische Erneuerungen deaktiviert."
5327
 
5328
- #: core/payment.php:158
 
 
 
 
 
 
 
5329
  msgctxt "payments-api"
5330
  msgid "Checkout"
5331
  msgstr "Kasse"
5332
 
5333
- #: core/payment.php:159
5334
  msgctxt "payments-api"
5335
  msgid "Pay %1$s through %2$s"
5336
  msgstr "Bezahle %1$s bekomme %2$s"
5337
 
5338
- #: core/payment.php:166
5339
  msgctxt "payments-api"
5340
  msgid "Your transaction has been approved."
5341
  msgstr "Ihre Transaktion wurde genehmigt."
5342
 
5343
- #: core/payment.php:352
5344
  msgctxt "payments"
5345
  msgid "Payment Details"
5346
  msgstr "Bezahldetails"
5347
 
5348
- #: core/payment.php:379
5349
  msgctxt "checkout"
5350
  msgid "Payment Method"
5351
  msgstr "Bezahlmethode"
5352
 
5353
- #: core/payment.php:413
5354
  msgctxt "payment"
5355
  msgid "Return to Directory."
5356
  msgstr "Zurück zum Verzeichnis."
5357
 
5358
- #: core/payment.php:420
5359
  msgctxt "payments"
5360
  msgid ""
5361
  "Your payment is being processed by the payment gateway. Please reload this "
@@ -5365,7 +5418,7 @@ msgstr ""
5365
  "Ihre Bezahlung wird durchgeführt. Bitte laden Sie die Seite ggf. neu, um zu "
5366
  "sehen ob der Status sich verändert hat oder kontaktieren Sie uns."
5367
 
5368
- #: core/payment.php:423
5369
  msgctxt "payments"
5370
  msgid ""
5371
  "The payment has been rejected by the payment gateway. Please contact the "
@@ -5376,30 +5429,30 @@ msgstr ""
5376
  "klicken Sie auf \"Bezahlungsmethode ändern\" oder versuchen Sie es später "
5377
  "noch einmal."
5378
 
5379
- #: core/payment.php:424
5380
  msgctxt "payments"
5381
  msgid "Change Payment Method"
5382
  msgstr "Bezahlungsmethode ändern"
5383
 
5384
- #: core/payment.php:426
5385
  msgctxt "payments"
5386
  msgid ""
5387
  "The payment has been rejected by the payment gateway. Please contact the "
5388
  "site administrator if you think there is an error."
5389
  msgstr "Die Zahlung wurde zurückgewiesen."
5390
 
5391
- #: core/payment.php:429
5392
  msgctxt "payments"
5393
  msgid "The payment has been canceled at your request."
5394
  msgstr "Die Bezahlung wurde auf Ihren Wunsch abgebrochen."
5395
 
5396
- #: core/payment.php:527
5397
  #, fuzzy
5398
  msgctxt "admin"
5399
  msgid "Pending Abandonment"
5400
  msgstr "Ausstehende Bezahlung"
5401
 
5402
- #: core/payment.php:532
5403
  msgctxt "admin"
5404
  msgid "Abandoned"
5405
  msgstr ""
@@ -5454,25 +5507,25 @@ msgctxt "sort"
5454
  msgid "(Reset)"
5455
  msgstr "Zurücksetzen"
5456
 
5457
- #: core/themes.php:587
5458
  #, fuzzy
5459
  msgctxt "themes"
5460
  msgid "ZIP file is not a valid BD theme file."
5461
  msgstr "Bitte eine gültige E-mailadresse eingeben."
5462
 
5463
- #: core/themes.php:593
5464
  #, fuzzy
5465
  msgctxt "themes"
5466
  msgid "Could not create themes directory."
5467
  msgstr "wpbdp-csv-exports Verzeichnis konnte nicht erstellt werden."
5468
 
5469
- #: core/themes.php:601
5470
  #, fuzzy
5471
  msgctxt "themes"
5472
  msgid "Could not remove previous theme directory \"%s\"."
5473
  msgstr "Konnte Eintragskategorie nicht erstellen \"%s\""
5474
 
5475
- #: core/themes.php:607
5476
  #, fuzzy
5477
  msgctxt "themes"
5478
  msgid "Could not move new theme into theme directory."
@@ -5486,53 +5539,53 @@ msgstr ""
5486
  "Gepustete Daten haben Maximum erreicht. Schau dir den Eintrag \"post_ma_size"
5487
  "\"in deiner php.ini an."
5488
 
5489
- #: core/utils.php:159
5490
  msgctxt "utils"
5491
  msgid "File size (%s) exceeds maximum file size of %s"
5492
  msgstr "Dateigröße (%s) hat das Maximum von %s erreicht"
5493
 
5494
- #: core/utils.php:167
5495
  #, fuzzy
5496
  msgctxt "utils"
5497
  msgid "File size (%s) is inferior to the required minimum file size of %s"
5498
  msgstr "Dateigröße (%s) hat das Maximum von %s erreicht"
5499
 
5500
- #: core/utils.php:176 core/utils.php:183
5501
  msgctxt "utils"
5502
  msgid "File type \"%s\" is not allowed"
5503
  msgstr "Dateityp \"%s\" ist nicht erlaubt"
5504
 
5505
- #: core/utils.php:190
5506
  msgctxt "utils"
5507
  msgid "Unkown error while uploading file."
5508
  msgstr "Unbekannter Fehler beim Hochladen der Datei."
5509
 
5510
- #: core/utils.php:209
5511
  msgctxt "utils"
5512
  msgid "Uploaded file is not an image"
5513
  msgstr "Hochgeladene Datei ist kein Bild."
5514
 
5515
- #: core/utils.php:218
5516
  msgctxt "utils"
5517
  msgid "Image width (%s px) is inferior to minimum required width of %s px."
5518
  msgstr ""
5519
 
5520
- #: core/utils.php:224
5521
  msgctxt "utils"
5522
  msgid "Image height (%s px) is inferior to minimum required height of %s px."
5523
  msgstr ""
5524
 
5525
- #: core/utils.php:230
5526
  msgctxt "utils"
5527
  msgid "Image width (%s px) is greater than maximum allowed width of %s px."
5528
  msgstr ""
5529
 
5530
- #: core/utils.php:236
5531
  msgctxt "utils"
5532
  msgid "Image height (%s px) is greater than maximum required height of %s px."
5533
  msgstr ""
5534
 
5535
- #: core/utils.php:250
5536
  msgctxt "utils"
5537
  msgid "Error while uploading file"
5538
  msgstr "Fehler während des Hochladens der Datei"
@@ -5779,52 +5832,52 @@ msgstr ""
5779
  "Du bist als Administrator eingeloggt. Alle Bezahlungsschritte werden "
5780
  "übersprungen."
5781
 
5782
- #: core/view-submit-listing.php:200
5783
  msgctxt "templates"
5784
  msgid "Please select a fee option for the \"%s\" category."
5785
  msgstr "Bitte wähle eine Preisoption für die Kategorie \"%s\""
5786
 
5787
- #: core/view-submit-listing.php:268
5788
  msgctxt "templates"
5789
  msgid "Please agree to the Terms and Conditions."
5790
  msgstr "Bitte akzeptieren Sie die Allgemeinen Geschäftsbedingungen."
5791
 
5792
- #: core/view-submit-listing.php:274
5793
  msgctxt "templates"
5794
  msgid "The reCAPTCHA wasn't entered correctly."
5795
  msgstr "Das reCAPTCHA wurde nicht korrekt eingegeben."
5796
 
5797
- #: core/view-submit-listing.php:291
5798
  msgctxt "templates"
5799
  msgid "Read our Terms and Conditions"
5800
  msgstr "Lesen Sie unsere AGBs."
5801
 
5802
- #: core/view-submit-listing.php:296
5803
  msgctxt "templates"
5804
  msgid "Terms and Conditions:"
5805
  msgstr "AGBs:"
5806
 
5807
- #: core/view-submit-listing.php:307
5808
  msgctxt "templates"
5809
  msgid "I agree to the Terms and Conditions"
5810
  msgstr "Ich akzeptiere die AGBs"
5811
 
5812
- #: core/view-submit-listing.php:444
5813
  msgctxt "listings"
5814
  msgid "Fee \"%s\" for category \"%s\"%s"
5815
  msgstr "Preis \"%s\" für Kategorie \"%s\"%s"
5816
 
5817
- #: core/view-submit-listing.php:447
5818
  msgctxt "listings"
5819
  msgid "(recurring)"
5820
  msgstr "(wiederholt)"
5821
 
5822
- #: core/view-submit-listing.php:457 core/view-upgrade-listing.php:54
5823
  msgctxt "submit"
5824
  msgid "Listing upgrade to featured"
5825
  msgstr "Eintrag erneuert auf Hervorgehoben"
5826
 
5827
- #: core/view-submit-listing.php:490
5828
  msgctxt "submit_state"
5829
  msgid "Invalid submit state."
5830
  msgstr "Ungültiger Zustand beim Einsenden."
@@ -6395,12 +6448,18 @@ msgctxt "templates"
6395
  msgid "Images Allowed"
6396
  msgstr "erlaubte Bilder"
6397
 
6398
- #: templates/parts/category-fee-selection.tpl.php:43
 
 
 
 
 
 
6399
  msgctxt "templates"
6400
  msgid "Unlimited"
6401
  msgstr "Unbegrenzt"
6402
 
6403
- #: templates/parts/category-fee-selection.tpl.php:45
6404
  msgctxt "templates"
6405
  msgid "%d day"
6406
  msgid_plural "%d days"
@@ -6754,6 +6813,10 @@ msgstr "D. Rodenbaugh"
6754
  msgid "http://businessdirectoryplugin.com"
6755
  msgstr "http://businessdirectoryplugin.com"
6756
 
 
 
 
 
6757
  #~ msgctxt "fees admin"
6758
  #~ msgid "Applied To"
6759
  #~ msgstr "zugewiesen zu"
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."
427
  msgstr ""
428
  "Es sind keine Bilder vorhanden die dem Eintrag aktuell hinzugefügt wurden."
429
 
430
+ #: admin/class-themes-admin.php:44
431
  #, fuzzy
432
  msgctxt "themes"
433
  msgid "Directory Themes"
434
  msgstr "Verzeichnis Kategorien"
435
 
436
+ #: admin/class-themes-admin.php:45
437
  #, fuzzy
438
  msgctxt "themes"
439
  msgid "Directory Themes %s"
440
  msgstr "Verzeichnis Kategorien"
441
 
442
+ #: admin/class-themes-admin.php:100
443
  #, fuzzy
444
  msgctxt "themes"
445
  msgid "Could not change the active theme to \"%s\"."
446
  msgstr "Konnte Eintragskategorie nicht erstellen \"%s\""
447
 
448
+ #: admin/class-themes-admin.php:147
449
  msgctxt "themes"
450
  msgid "Active theme changed to \"%s\"."
451
  msgstr ""
452
 
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 ""
542
+
543
  #: admin/csv-export.php:136
544
  msgctxt "admin csv-export"
545
  msgid "Could not create a temporary directory for handling this CSV export."
628
  msgid "fees"
629
  msgstr "Preise"
630
 
631
+ #: admin/fees.php:19
632
+ msgctxt "fees admin"
633
+ msgid "There are no fees right now. You can <a>create one</a>, if you want."
634
+ msgstr ""
635
+
636
+ #: admin/fees.php:25 admin/fees.php:260
637
+ #, fuzzy
638
+ msgctxt "fees admin"
639
+ msgid "Active"
640
+ msgstr "Nur Aktiv"
641
+
642
+ #: admin/fees.php:28 admin/fees.php:258
643
+ #, fuzzy
644
+ msgctxt "fees admin"
645
+ msgid "Not Available"
646
+ msgstr "verfügbare Bilder:"
647
+
648
+ #: admin/fees.php:31 admin/fees.php:255
649
+ #, fuzzy
650
+ msgctxt "fees admin"
651
+ msgid "Disabled"
652
+ msgstr "Preis löschen"
653
+
654
+ #: admin/fees.php:39
655
  msgctxt "fees admin"
656
+ msgid ""
657
+ "There are no \"%s\" fees right now. You can <a>create one</a>, if you want."
658
+ msgstr ""
659
 
660
+ #: admin/fees.php:56
661
  #, fuzzy
662
  msgctxt "admin fees table"
663
  msgid "All"
664
  msgstr "Alle"
665
 
666
+ #: admin/fees.php:68
667
  #, fuzzy
668
  msgctxt "admin fees table"
669
  msgid "Active"
670
  msgstr "Nur Aktiv"
671
 
672
+ #: admin/fees.php:78
673
  #, fuzzy
674
  msgctxt "admin fees table"
675
  msgid "Not Available"
676
  msgstr "verfügbare Bilder:"
677
 
678
+ #: admin/fees.php:85
679
  #, fuzzy
680
  msgctxt "admin fees table"
681
  msgid "Disabled"
682
  msgstr "Preis löschen"
683
 
684
+ #: admin/fees.php:94
685
  msgctxt "fees admin"
686
  msgid "Label"
687
  msgstr "Bezeichnung"
688
 
689
+ #: admin/fees.php:95
690
  msgctxt "fees admin"
691
  msgid "Amount"
692
  msgstr "Preis"
693
 
694
+ #: admin/fees.php:96
695
  msgctxt "fees admin"
696
  msgid "Duration"
697
  msgstr "Zeitraum"
698
 
699
+ #: admin/fees.php:97
700
  msgctxt "fees admin"
701
  msgid "Images"
702
  msgstr "Bilder"
703
 
704
+ #: admin/fees.php:98
705
  #, fuzzy
706
  msgctxt "fees admin"
707
  msgid "Featured/Sticky"
708
  msgstr "unterstützter (unbeweglicher) Status"
709
 
710
+ #: admin/fees.php:102
711
  #, fuzzy
712
  msgctxt "fees admin"
713
  msgid "Status"
714
  msgstr "Status"
715
 
716
+ #: admin/fees.php:155
717
  msgctxt "fees admin"
718
  msgid ""
719
  "This is the default free plan for your directory. You can't delete it and "
722
  "fee plans, including ones for 0.00 (free) if you wish."
723
  msgstr ""
724
 
725
+ #: admin/fees.php:187
726
  msgctxt "fees admin"
727
  msgid "Edit"
728
  msgstr "Bearbeiten"
729
 
730
+ #: admin/fees.php:197
731
  msgctxt "fees admin"
732
  msgid "Disable"
733
  msgstr ""
734
 
735
+ #: admin/fees.php:201
736
  msgctxt "fees admin"
737
  msgid "Enable"
738
  msgstr ""
739
 
740
+ #: admin/fees.php:205
741
  msgctxt "fees admin"
742
  msgid "Delete"
743
  msgstr "Löschen"
744
 
745
+ #: admin/fees.php:226
746
  msgctxt "fees admin"
747
  msgid "Forever"
748
  msgstr "Für immer"
749
 
750
+ #: admin/fees.php:227
751
  msgctxt "fees admin"
752
  msgid "%d day"
753
  msgid_plural "%d days"
754
  msgstr[0] "%d Tag"
755
  msgstr[1] "%d Tage"
756
 
757
+ #: admin/fees.php:231
758
  msgctxt "fees admin"
759
  msgid "%d image"
760
  msgid_plural "%d images"
761
  msgstr[0] "%d Bild"
762
  msgstr[1] "%d Bilder"
763
 
764
+ #: admin/fees.php:236
765
  msgctxt "fees admin"
766
  msgid "All categories"
767
  msgstr "Alle Kategorien"
768
 
769
+ #: admin/fees.php:250
770
  msgctxt "fees admin"
771
  msgid "Yes"
772
  msgstr ""
773
 
774
+ #: admin/fees.php:250
775
  msgctxt "fees admin"
776
  msgid "No"
777
  msgstr ""
778
 
779
+ #: admin/fees.php:285
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
780
  #, fuzzy
781
  msgctxt "fees admin"
782
  msgid "Fee enabled."
783
  msgstr "Preis gelöscht."
784
 
785
+ #: admin/fees.php:293
786
  #, fuzzy
787
  msgctxt "fees admin"
788
  msgid "Fee disabled."
789
  msgstr "Preis gelöscht."
790
 
791
+ #: admin/fees.php:318
792
  msgctxt "fees order"
793
  msgid "Label"
794
  msgstr "Bezeichnung"
795
 
796
+ #: admin/fees.php:319
797
  msgctxt "fees order"
798
  msgid "Amount"
799
  msgstr "Preis"
800
 
801
+ #: admin/fees.php:320
802
  msgctxt "fees order"
803
  msgid "Duration"
804
  msgstr "Zeitraum"
805
 
806
+ #: admin/fees.php:321
807
  msgctxt "fees order"
808
  msgid "Images"
809
  msgstr "Bilder"
810
 
811
+ #: admin/fees.php:322
812
  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."
820
 
821
+ #: admin/fees.php:364
822
  msgctxt "fees admin"
823
  msgid "Fee deleted."
824
  msgstr "Preis gelöscht."
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"
2669
  msgid "Active:"
2670
  msgstr "Nur Aktiv"
2671
 
2672
+ #: admin/templates/themes-item.tpl.php:13
2673
  #, fuzzy
2674
  msgctxt "themes"
2675
  msgid "Activate"
2676
  msgstr "Aktiviere Lizenz"
2677
 
2678
+ #: admin/templates/themes-item.tpl.php:33
2679
  msgctxt "themes"
2680
  msgid "Version:"
2681
  msgstr ""
2682
 
2683
+ #: admin/templates/themes-item.tpl.php:36
2684
  #, fuzzy
2685
  msgctxt "themes"
2686
  msgid "Author:"
2687
  msgstr "Author"
2688
 
2689
+ #: admin/templates/themes-licenses.tpl.php:24
2690
+ #, fuzzy
2691
+ msgctxt "themes"
2692
+ msgid "Deactivate License"
2693
+ msgstr "Lizenz Deaktivieren"
2694
+
2695
+ #: admin/templates/themes-licenses.tpl.php:27
2696
+ #, fuzzy
2697
+ msgctxt "themes"
2698
+ msgid "Deactivating license..."
2699
+ msgstr "Deaktiviere Lizenz..."
2700
+
2701
+ #: admin/templates/themes-licenses.tpl.php:29
2702
+ #, fuzzy
2703
+ msgctxt "themes"
2704
+ msgid "Activate License"
2705
+ msgstr "Aktiviere Lizenz"
2706
+
2707
+ #: admin/templates/themes-licenses.tpl.php:30
2708
+ #, fuzzy
2709
+ msgctxt "themes"
2710
+ msgid "Activating license..."
2711
+ msgstr "Aktiviere Lizenz..."
2712
+
2713
  #: admin/templates/transactions.tpl.php:2
2714
  msgctxt "admin transactions"
2715
  msgid "Transactions"
2972
  msgid "\"%s\" is an invalid field type for this association."
2973
  msgstr "\"%s\" ist ein ungültiger Feldtyp für diese Verbindung."
2974
 
2975
+ #: core/class-form-field.php:531
2976
  msgctxt "form-fields-api"
2977
  msgid "Invalid field ID"
2978
  msgstr "Ungültige Feld ID"
2979
 
2980
+ #: core/class-form-field.php:540
2981
  msgctxt "form-fields api"
2982
  msgid ""
2983
  "This form field can't be deleted because it is required for the plugin to "
2986
  "Dieses Formfeld kann nicht gelöscht werden, weil es ein Pflichtfeld ist, "
2987
  "damit das Modul richtig funktioniert."
2988
 
2989
+ #: core/class-form-field.php:552
2990
  msgctxt "form-fields-api"
2991
  msgid "An error occurred while trying to delete this field."
2992
  msgstr "Während der Löschung des Feldes ist ein Fehler aufgetreten."
5104
  msgid "Destination dir \"%s\" is not writable."
5105
  msgstr "Eintragskategorie \"%s\" existiert nicht"
5106
 
5107
+ #: core/helpers/class-themes-updater.php:125
5108
  msgctxt "themes"
5109
  msgid "Updating theme..."
5110
  msgstr ""
5111
 
5112
+ #: core/helpers/class-themes-updater.php:126
5113
  #, fuzzy
5114
  msgctxt "themes"
5115
  msgid "Theme updated."
5116
  msgstr "Preis aktualisiert."
5117
 
5118
+ #: core/helpers/class-themes-updater.php:128
5119
  msgctxt "themes"
5120
  msgid "New version available (<b>%s</b>). <a>Update now.</a>"
5121
  msgstr ""
5122
 
5123
+ #: core/helpers/class-themes-updater.php:156
5124
  #, fuzzy
5125
  msgctxt "themes"
5126
  msgid "Could not update theme: %s"
5127
  msgstr "Konnte Lizenz nicht deaktivieren: %s"
5128
 
5129
+ #: core/helpers/class-themes-updater.php:162
5130
  #, fuzzy
5131
  msgctxt "themes"
5132
  msgid "Theme was updated sucessfully."
5133
  msgstr "Der Import wurde erfolgreich abgeschlossen."
5134
 
5135
+ #: core/installer.php:42
5136
  msgctxt "default category name"
5137
  msgid "General"
5138
  msgstr "Allgemein"
5139
 
5140
+ #: core/installer.php:50
5141
+ #, fuzzy
5142
+ msgctxt "installer"
5143
+ msgid "Default Fee"
5144
+ msgstr "Preis löschen"
5145
+
5146
+ #: core/installer.php:484
5147
  msgctxt "installer"
5148
  msgid ""
5149
  "<b>Business Directory Plugin - Regions Module</b> was disabled because it is "
5154
  "inkompatibel mit der aktuellen Version des Branchenverzeichnisses ist. Bitte "
5155
  "aktualisiere das Regionenmodul. "
5156
 
5157
+ #: core/installer.php:550
5158
  msgctxt "installer"
5159
  msgid "Cleaning up listing fees information... %d/%d"
5160
  msgstr "Eintragpreisinformation säubern... %d/%d"
5161
 
5162
+ #: core/installer.php:600
5163
  msgctxt "installer"
5164
  msgid "Migrating previous transactions to new Payments API... %d/%d"
5165
  msgstr "Migriere vergangene Transaktionen zur neuen Bezahl API... %d/%d"
5166
 
5167
+ #: core/installer.php:629
5168
  msgctxt "installer"
5169
  msgid "Initial listing payment (BD < 3.4)"
5170
  msgstr "Initialbezahlung Eintrag (BD < 3.4)"
5171
 
5172
+ #: core/installer.php:640
5173
  msgctxt "installer"
5174
  msgid "Listing edit payment (BD < 3.4)"
5175
  msgstr "Bezahlung Eintrag bearbeiten (BD < 3.4)"
5176
 
5177
+ #: core/installer.php:661
5178
  msgctxt "installer"
5179
  msgid "Renewal fee \"%s\" for category \"%s\""
5180
  msgstr "Erneuere Preis \"%s\" für Kategorie \"%s\""
5181
 
5182
+ #: core/installer.php:680
5183
  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
  "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
  "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
  "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\""
5313
  msgid "Could not deactivate license: %s."
5314
  msgstr "Konnte Lizenz nicht deaktivieren: %s"
5315
 
5316
+ #: core/payment.php:91
 
 
 
 
 
5317
  msgctxt "payments-api"
5318
  msgid ""
5319
  "You are offering featured listings but have payments turned off. Go to <a "
5326
  "Bezahlungseinstellungen zu verändern. Bis dahin ist die <i>Aktualisieren auf "
5327
  "Hervorgehoben</i> Option deaktiviert."
5328
 
5329
+ #: core/payment.php:109
5330
  msgctxt "payments-api"
5331
  msgid ""
5332
  "The <b>%s</b> gateway is active but not properly configured. The gateway "
5337
  "Gateway funktioniert nicht bis folgende Probleme gelöst wurden: <b>%s</b>. "
5338
  "Prüfe die <a href=\"%s\">Bezahlung Einstellungen</a>."
5339
 
5340
+ #: core/payment.php:119
5341
  msgctxt "admin"
5342
  msgid ""
5343
  "You have payments turned on but no gateway is active and properly "
5350
  "Bezahleinstellungen zu ändern. Das Verzeichnis wird im <i>kostenlosen Modus</"
5351
  "i> ausgeführt, bis die Änderungen gemacht wurden."
5352
 
5353
+ #: core/payment.php:123
5354
  msgid ""
5355
  "BD detected PayFast and another gateway were enabled. This setup is not "
5356
  "recommended due to PayFast supporting only ZAR and the other gateways not "
5360
  "aktiviert wurde. Dieses Setup ist nicht empfohlen, weil PayFast nur ZAR und "
5361
  "andere Gateways unterstützt und nicht dieses Zahlungsmittel."
5362
 
5363
+ #: core/payment.php:127
5364
  msgid ""
5365
  "You have recurring renewal of listing fees enabled but the payment gateways "
5366
  "installed don't support recurring payments. Until a gateway that supports "
5371
  "unterstützt keine wiederholten Abbuchungen. Bitte benutze einen Dienst wie "
5372
  "Paypal. Solange bleiben automatische Erneuerungen deaktiviert."
5373
 
5374
+ #: core/payment.php:135
5375
+ msgid ""
5376
+ "You have payments enabled but there are no fees available. Users won't be "
5377
+ "able to post listings. Please <a href=\"fees\">create some fees</a> or <a "
5378
+ "href=\"settings\">configure the Directory</a> to operate in \"Free Mode\"."
5379
+ msgstr ""
5380
+
5381
+ #: core/payment.php:169
5382
  msgctxt "payments-api"
5383
  msgid "Checkout"
5384
  msgstr "Kasse"
5385
 
5386
+ #: core/payment.php:170
5387
  msgctxt "payments-api"
5388
  msgid "Pay %1$s through %2$s"
5389
  msgstr "Bezahle %1$s bekomme %2$s"
5390
 
5391
+ #: core/payment.php:177
5392
  msgctxt "payments-api"
5393
  msgid "Your transaction has been approved."
5394
  msgstr "Ihre Transaktion wurde genehmigt."
5395
 
5396
+ #: core/payment.php:363
5397
  msgctxt "payments"
5398
  msgid "Payment Details"
5399
  msgstr "Bezahldetails"
5400
 
5401
+ #: core/payment.php:390
5402
  msgctxt "checkout"
5403
  msgid "Payment Method"
5404
  msgstr "Bezahlmethode"
5405
 
5406
+ #: core/payment.php:424
5407
  msgctxt "payment"
5408
  msgid "Return to Directory."
5409
  msgstr "Zurück zum Verzeichnis."
5410
 
5411
+ #: core/payment.php:431
5412
  msgctxt "payments"
5413
  msgid ""
5414
  "Your payment is being processed by the payment gateway. Please reload this "
5418
  "Ihre Bezahlung wird durchgeführt. Bitte laden Sie die Seite ggf. neu, um zu "
5419
  "sehen ob der Status sich verändert hat oder kontaktieren Sie uns."
5420
 
5421
+ #: core/payment.php:434
5422
  msgctxt "payments"
5423
  msgid ""
5424
  "The payment has been rejected by the payment gateway. Please contact the "
5429
  "klicken Sie auf \"Bezahlungsmethode ändern\" oder versuchen Sie es später "
5430
  "noch einmal."
5431
 
5432
+ #: core/payment.php:435
5433
  msgctxt "payments"
5434
  msgid "Change Payment Method"
5435
  msgstr "Bezahlungsmethode ändern"
5436
 
5437
+ #: core/payment.php:437
5438
  msgctxt "payments"
5439
  msgid ""
5440
  "The payment has been rejected by the payment gateway. Please contact the "
5441
  "site administrator if you think there is an error."
5442
  msgstr "Die Zahlung wurde zurückgewiesen."
5443
 
5444
+ #: core/payment.php:440
5445
  msgctxt "payments"
5446
  msgid "The payment has been canceled at your request."
5447
  msgstr "Die Bezahlung wurde auf Ihren Wunsch abgebrochen."
5448
 
5449
+ #: core/payment.php:538
5450
  #, fuzzy
5451
  msgctxt "admin"
5452
  msgid "Pending Abandonment"
5453
  msgstr "Ausstehende Bezahlung"
5454
 
5455
+ #: core/payment.php:543
5456
  msgctxt "admin"
5457
  msgid "Abandoned"
5458
  msgstr ""
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."
5539
  "Gepustete Daten haben Maximum erreicht. Schau dir den Eintrag \"post_ma_size"
5540
  "\"in deiner php.ini an."
5541
 
5542
+ #: core/utils.php:164
5543
  msgctxt "utils"
5544
  msgid "File size (%s) exceeds maximum file size of %s"
5545
  msgstr "Dateigröße (%s) hat das Maximum von %s erreicht"
5546
 
5547
+ #: core/utils.php:172
5548
  #, fuzzy
5549
  msgctxt "utils"
5550
  msgid "File size (%s) is inferior to the required minimum file size of %s"
5551
  msgstr "Dateigröße (%s) hat das Maximum von %s erreicht"
5552
 
5553
+ #: core/utils.php:181 core/utils.php:188
5554
  msgctxt "utils"
5555
  msgid "File type \"%s\" is not allowed"
5556
  msgstr "Dateityp \"%s\" ist nicht erlaubt"
5557
 
5558
+ #: core/utils.php:195
5559
  msgctxt "utils"
5560
  msgid "Unkown error while uploading file."
5561
  msgstr "Unbekannter Fehler beim Hochladen der Datei."
5562
 
5563
+ #: core/utils.php:214
5564
  msgctxt "utils"
5565
  msgid "Uploaded file is not an image"
5566
  msgstr "Hochgeladene Datei ist kein Bild."
5567
 
5568
+ #: core/utils.php:223
5569
  msgctxt "utils"
5570
  msgid "Image width (%s px) is inferior to minimum required width of %s px."
5571
  msgstr ""
5572
 
5573
+ #: core/utils.php:229
5574
  msgctxt "utils"
5575
  msgid "Image height (%s px) is inferior to minimum required height of %s px."
5576
  msgstr ""
5577
 
5578
+ #: core/utils.php:235
5579
  msgctxt "utils"
5580
  msgid "Image width (%s px) is greater than maximum allowed width of %s px."
5581
  msgstr ""
5582
 
5583
+ #: core/utils.php:241
5584
  msgctxt "utils"
5585
  msgid "Image height (%s px) is greater than maximum required height of %s px."
5586
  msgstr ""
5587
 
5588
+ #: core/utils.php:255
5589
  msgctxt "utils"
5590
  msgid "Error while uploading file"
5591
  msgstr "Fehler während des Hochladens der Datei"
5832
  "Du bist als Administrator eingeloggt. Alle Bezahlungsschritte werden "
5833
  "übersprungen."
5834
 
5835
+ #: core/view-submit-listing.php:205
5836
  msgctxt "templates"
5837
  msgid "Please select a fee option for the \"%s\" category."
5838
  msgstr "Bitte wähle eine Preisoption für die Kategorie \"%s\""
5839
 
5840
+ #: core/view-submit-listing.php:273
5841
  msgctxt "templates"
5842
  msgid "Please agree to the Terms and Conditions."
5843
  msgstr "Bitte akzeptieren Sie die Allgemeinen Geschäftsbedingungen."
5844
 
5845
+ #: core/view-submit-listing.php:279
5846
  msgctxt "templates"
5847
  msgid "The reCAPTCHA wasn't entered correctly."
5848
  msgstr "Das reCAPTCHA wurde nicht korrekt eingegeben."
5849
 
5850
+ #: core/view-submit-listing.php:296
5851
  msgctxt "templates"
5852
  msgid "Read our Terms and Conditions"
5853
  msgstr "Lesen Sie unsere AGBs."
5854
 
5855
+ #: core/view-submit-listing.php:301
5856
  msgctxt "templates"
5857
  msgid "Terms and Conditions:"
5858
  msgstr "AGBs:"
5859
 
5860
+ #: core/view-submit-listing.php:312
5861
  msgctxt "templates"
5862
  msgid "I agree to the Terms and Conditions"
5863
  msgstr "Ich akzeptiere die AGBs"
5864
 
5865
+ #: core/view-submit-listing.php:449
5866
  msgctxt "listings"
5867
  msgid "Fee \"%s\" for category \"%s\"%s"
5868
  msgstr "Preis \"%s\" für Kategorie \"%s\"%s"
5869
 
5870
+ #: core/view-submit-listing.php:452
5871
  msgctxt "listings"
5872
  msgid "(recurring)"
5873
  msgstr "(wiederholt)"
5874
 
5875
+ #: core/view-submit-listing.php:462 core/view-upgrade-listing.php:54
5876
  msgctxt "submit"
5877
  msgid "Listing upgrade to featured"
5878
  msgstr "Eintrag erneuert auf Hervorgehoben"
5879
 
5880
+ #: core/view-submit-listing.php:495
5881
  msgctxt "submit_state"
5882
  msgid "Invalid submit state."
5883
  msgstr "Ungültiger Zustand beim Einsenden."
6448
  msgid "Images Allowed"
6449
  msgstr "erlaubte Bilder"
6450
 
6451
+ #: templates/parts/category-fee-selection.tpl.php:28
6452
+ #, fuzzy
6453
+ msgctxt "templates"
6454
+ msgid "There are no fees available for this category."
6455
+ msgstr "Bitte wähle eine Preisoption für die Kategorie \"%s\""
6456
+
6457
+ #: templates/parts/category-fee-selection.tpl.php:50
6458
  msgctxt "templates"
6459
  msgid "Unlimited"
6460
  msgstr "Unbegrenzt"
6461
 
6462
+ #: templates/parts/category-fee-selection.tpl.php:52
6463
  msgctxt "templates"
6464
  msgid "%d day"
6465
  msgid_plural "%d days"
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."
6819
+
6820
  #~ msgctxt "fees admin"
6821
  #~ msgid "Applied To"
6822
  #~ msgstr "zugewiesen zu"
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-01-18 20:20:16+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"
@@ -21,93 +21,93 @@ msgctxt "admin category filter"
21
  msgid "All categories"
22
  msgstr ""
23
 
24
- #: admin/class-admin-listings.php:111
25
  msgid "Listing Information"
26
  msgstr ""
27
 
28
- #: admin/class-admin-listings.php:118
29
  msgctxt "admin"
30
  msgid "Listing Fields / Images"
31
  msgstr ""
32
 
33
- #: admin/class-admin-listings.php:129
34
  msgctxt "admin"
35
  msgid "Categories"
36
  msgstr ""
37
 
38
- #: admin/class-admin-listings.php:130
39
  msgid "Payment Status"
40
  msgstr ""
41
 
42
- #: admin/class-admin-listings.php:131
43
  msgid "Featured (Sticky) Status"
44
  msgstr ""
45
 
46
- #: admin/class-admin-listings.php:162
47
  msgctxt "admin"
48
  msgid "(Listing expired in this category)"
49
  msgstr ""
50
 
51
- #: admin/class-admin-listings.php:180 admin/class-admin-listings.php:263
52
  msgid "Paid"
53
  msgstr ""
54
 
55
- #: admin/class-admin-listings.php:185
56
  msgid "Mark as"
57
  msgstr ""
58
 
59
- #: admin/class-admin-listings.php:194 admin/class-admin-listings.php:273
60
  msgid "Pending Upgrade"
61
  msgstr ""
62
 
63
- #: admin/class-admin-listings.php:202 admin/listing-metabox.php:68
64
  msgid "Upgrade to %s"
65
  msgstr ""
66
 
67
- #: admin/class-admin-listings.php:209 admin/listing-metabox.php:75
68
  msgid "Downgrade to %s"
69
  msgstr ""
70
 
71
- #: admin/class-admin-listings.php:212 admin/class-admin-listings.php:392
72
  msgctxt "admin actions"
73
  msgid "Upgrade to Featured"
74
  msgstr ""
75
 
76
- #: admin/class-admin-listings.php:268
77
  msgid "Unpaid"
78
  msgstr ""
79
 
80
- #: admin/class-admin-listings.php:278
81
  msgctxt "admin"
82
  msgid "Expired"
83
  msgstr ""
84
 
85
- #: admin/class-admin-listings.php:328
86
  msgctxt "admin actions"
87
  msgid "Edit Listing"
88
  msgstr ""
89
 
90
- #: admin/class-admin-listings.php:331
91
  msgctxt "admin actions"
92
  msgid "Delete Listing"
93
  msgstr ""
94
 
95
- #: admin/class-admin-listings.php:390
96
  msgctxt "admin actions"
97
  msgid "Publish Listing"
98
  msgstr ""
99
 
100
- #: admin/class-admin-listings.php:393
101
  msgctxt "admin actions"
102
  msgid "Downgrade to Normal"
103
  msgstr ""
104
 
105
- #: admin/class-admin-listings.php:395
106
  msgctxt "admin actions"
107
  msgid "Mark as Paid"
108
  msgstr ""
109
 
110
- #: admin/class-admin-listings.php:397
111
  msgctxt "admin actions"
112
  msgid "Renew Listing"
113
  msgstr ""
@@ -220,164 +220,164 @@ msgctxt "admin menu"
220
  msgid "Uninstall"
221
  msgstr ""
222
 
223
- #: admin/class-admin.php:408
224
  #: admin/templates/listing-metabox-categories.tpl.php:69
225
  msgctxt "admin infometabox"
226
  msgid "never"
227
  msgstr ""
228
 
229
- #: admin/class-admin.php:490
230
  msgctxt "admin"
231
  msgid "The listing has been published."
232
  msgid_plural "The listings have been published."
233
  msgstr[0] ""
234
  msgstr[1] ""
235
 
236
- #: admin/class-admin.php:503
237
  msgctxt "admin"
238
  msgid "The listing status has been set as paid."
239
  msgid_plural "The listings status has been set as paid."
240
  msgstr[0] ""
241
  msgstr[1] ""
242
 
243
- #: admin/class-admin.php:515
244
  msgctxt "admin"
245
  msgid "The listing has been modified."
246
  msgid_plural "The listings have been modified."
247
  msgstr[0] ""
248
  msgstr[1] ""
249
 
250
- #: admin/class-admin.php:528
251
  msgctxt "admin"
252
  msgid "The listing has been upgraded."
253
  msgid_plural "The listings have been upgraded."
254
  msgstr[0] ""
255
  msgstr[1] ""
256
 
257
- #: admin/class-admin.php:540
258
  msgctxt "admin"
259
  msgid "The listing has been downgraded."
260
  msgid_plural "The listings have been downgraded."
261
  msgstr[0] ""
262
  msgstr[1] ""
263
 
264
- #: admin/class-admin.php:552
265
  msgctxt "admin"
266
  msgid "The transaction has been approved."
267
  msgstr ""
268
 
269
- #: admin/class-admin.php:560
270
  msgctxt "admin"
271
  msgid "The transaction has been rejected."
272
  msgstr ""
273
 
274
- #: admin/class-admin.php:566
275
  msgctxt "admin"
276
  msgid "The fee was successfully assigned."
277
  msgstr ""
278
 
279
- #: admin/class-admin.php:575
280
  msgctxt "admin"
281
  msgid "Listing was renewed."
282
  msgid_plural "Listings were renewed."
283
  msgstr[0] ""
284
  msgstr[1] ""
285
 
286
- #: admin/class-admin.php:582
287
  msgctxt "admin"
288
  msgid "Renewal email sent."
289
  msgstr ""
290
 
291
- #: admin/class-admin.php:616
292
  msgctxt "admin category id"
293
  msgid "ID"
294
  msgstr ""
295
 
296
- #: admin/class-admin.php:618 admin/class-admin.php:624
297
  msgctxt "admin"
298
  msgid "Listing Count"
299
  msgstr ""
300
 
301
- #: admin/class-admin.php:733
302
  msgctxt "admin"
303
  msgid ""
304
  "<b>Business Directory Plugin</b> requires fields with the following "
305
  "associations in order to work correctly: <b>%s</b>."
306
  msgstr ""
307
 
308
- #: admin/class-admin.php:735
309
  msgctxt "admin"
310
  msgid ""
311
  "<b>Business Directory Plugin</b> requires a field with a <b>%s</b> "
312
  "association in order to work correctly."
313
  msgstr ""
314
 
315
- #: admin/class-admin.php:739
316
  msgctxt "admin"
317
  msgid ""
318
  "You can create these custom fields by yourself inside \"Manage Form Fields\" "
319
  "or let Business Directory do this for you automatically."
320
  msgstr ""
321
 
322
- #: admin/class-admin.php:743
323
  msgctxt "admin"
324
  msgid "Go to \"Manage Form Fields\""
325
  msgstr ""
326
 
327
- #: admin/class-admin.php:746
328
  msgctxt "admin"
329
  msgid "Create these required fields for me"
330
  msgstr ""
331
 
332
- #: admin/class-admin.php:755
333
  msgctxt "admin"
334
  msgid ""
335
  "<b>Business Directory Plugin</b> requires a page with the "
336
  "<tt>[businessdirectory]</tt> shortcode to function properly."
337
  msgstr ""
338
 
339
- #: admin/class-admin.php:757
340
  msgctxt "admin"
341
  msgid ""
342
  "You can create this page by yourself or let Business Directory do this for "
343
  "you automatically."
344
  msgstr ""
345
 
346
- #: admin/class-admin.php:761
347
  msgctxt "admin"
348
  msgid "Create required pages for me"
349
  msgstr ""
350
 
351
- #: admin/class-admin.php:801
352
  msgctxt "admin compat"
353
  msgid "Installed: %s"
354
  msgstr ""
355
 
356
- #: admin/class-admin.php:801
357
  msgctxt "admin compat"
358
  msgid "N/A"
359
  msgstr ""
360
 
361
- #: admin/class-admin.php:804
362
  msgctxt "admin compat"
363
  msgid "Required: %s"
364
  msgstr ""
365
 
366
- #: admin/class-admin.php:817
367
  msgctxt "admin compat"
368
  msgid ""
369
  "Business Directory has detected some incompatible premium module versions "
370
  "installed."
371
  msgstr ""
372
 
373
- #: admin/class-admin.php:819
374
  msgctxt "admin compat"
375
  msgid ""
376
  "Please upgrade to the required versions indicated below to make sure "
377
  "everything functions properly."
378
  msgstr ""
379
 
380
- #: admin/class-admin.php:834
381
  msgctxt "admin"
382
  msgid ""
383
  "We noticed you want your Business Directory users to register before posting "
@@ -401,95 +401,110 @@ msgctxt "templates"
401
  msgid "There are no images currently attached to the listing."
402
  msgstr ""
403
 
404
- #: admin/class-themes-admin.php:41
405
  msgctxt "themes"
406
  msgid "Directory Themes"
407
  msgstr ""
408
 
409
- #: admin/class-themes-admin.php:42
410
  msgctxt "themes"
411
  msgid "Directory Themes %s"
412
  msgstr ""
413
 
414
- #: admin/class-themes-admin.php:97
415
  msgctxt "themes"
416
  msgid "Could not change the active theme to \"%s\"."
417
  msgstr ""
418
 
419
- #: admin/class-themes-admin.php:144
420
  msgctxt "themes"
421
  msgid "Active theme changed to \"%s\"."
422
  msgstr ""
423
 
424
- #: admin/class-themes-admin.php:147
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:154
432
  msgctxt "themes"
433
  msgid "Dismiss this warning"
434
  msgstr ""
435
 
436
- #: admin/class-themes-admin.php:157
437
  msgctxt "themes"
438
  msgid "Create suggested fields"
439
  msgstr ""
440
 
441
- #: admin/class-themes-admin.php:164
442
  msgctxt "themes"
443
  msgid "Suggested fields created successfully."
444
  msgstr ""
445
 
446
- #: admin/class-themes-admin.php:167
447
  msgctxt "themes"
448
  msgid "Theme installed successfully."
449
  msgstr ""
450
 
451
- #: admin/class-themes-admin.php:170
452
  msgctxt "themes"
453
  msgid "Theme was deleted sucessfully."
454
  msgstr ""
455
 
456
- #: admin/class-themes-admin.php:173
457
  msgctxt "themes"
458
  msgid "Could not delete theme directory. Check permissions."
459
  msgstr ""
460
 
461
- #: admin/class-themes-admin.php:199
462
  msgctxt "themes"
463
  msgid "Please upload a valid theme file."
464
  msgstr ""
465
 
466
- #: admin/class-themes-admin.php:206
467
  msgctxt "themes"
468
  msgid "Could not move \"%s\" to a temporary directory."
469
  msgstr ""
470
 
471
- #: admin/class-themes-admin.php:307 core/licensing.php:127
472
- #: core/licensing.php:159
473
  msgctxt "licensing"
474
  msgid "Could not contact licensing server"
475
  msgstr ""
476
 
477
- #: admin/class-themes-admin.php:313 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:318 core/licensing.php:330
484
  msgctxt "licensing"
485
  msgid "Could not activate license: %s."
486
  msgstr ""
487
 
488
- #: admin/class-themes-admin.php:331 core/licensing.php:332
489
  msgctxt "licensing"
490
  msgid "License activated"
491
  msgstr ""
492
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
493
  #: admin/csv-export.php:136
494
  msgctxt "admin csv-export"
495
  msgid "Could not create a temporary directory for handling this CSV export."
@@ -569,120 +584,186 @@ msgctxt "fees admin"
569
  msgid "fees"
570
  msgstr ""
571
 
572
- #: admin/fees.php:16
 
 
 
 
 
 
 
 
 
 
573
  msgctxt "fees admin"
574
- msgid "You do not have any listing fees setup yet."
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
575
  msgstr ""
576
 
577
- #: admin/fees.php:22
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
578
  msgctxt "fees admin"
579
  msgid "Label"
580
  msgstr ""
581
 
582
- #: admin/fees.php:23
583
  msgctxt "fees admin"
584
  msgid "Amount"
585
  msgstr ""
586
 
587
- #: admin/fees.php:24
588
  msgctxt "fees admin"
589
  msgid "Duration"
590
  msgstr ""
591
 
592
- #: admin/fees.php:25
593
  msgctxt "fees admin"
594
  msgid "Images"
595
  msgstr ""
596
 
597
- #: admin/fees.php:26
598
  msgctxt "fees admin"
599
- msgid "Applied To"
600
  msgstr ""
601
 
602
- #: admin/fees.php:60
603
  msgctxt "fees admin"
604
- msgid ""
605
- "This is the <i>default</i> free plan for your directory. It can't be deleted "
606
- "or be anything but free and is only visible when your directory is in "
607
- "<i>free mode</i>. You can create other fee plans if you wish to charge for "
608
- "listings instead."
609
  msgstr ""
610
 
611
- #: admin/fees.php:73
612
  msgctxt "fees admin"
613
- msgid "Fee plan disabled because directory is in free mode."
 
 
 
 
614
  msgstr ""
615
 
616
- #: admin/fees.php:92
617
  msgctxt "fees admin"
618
  msgid "Edit"
619
  msgstr ""
620
 
621
- #: admin/fees.php:97
622
  msgctxt "fees admin"
623
  msgid "Disable"
624
  msgstr ""
625
 
626
- #: admin/fees.php:101
 
 
 
 
 
627
  msgctxt "fees admin"
628
  msgid "Delete"
629
  msgstr ""
630
 
631
- #: admin/fees.php:122
632
  msgctxt "fees admin"
633
  msgid "Forever"
634
  msgstr ""
635
 
636
- #: admin/fees.php:123
637
  msgctxt "fees admin"
638
  msgid "%d day"
639
  msgid_plural "%d days"
640
  msgstr[0] ""
641
  msgstr[1] ""
642
 
643
- #: admin/fees.php:127
644
  msgctxt "fees admin"
645
  msgid "%d image"
646
  msgid_plural "%d images"
647
  msgstr[0] ""
648
  msgstr[1] ""
649
 
650
- #: admin/fees.php:132
651
  msgctxt "fees admin"
652
  msgid "All categories"
653
  msgstr ""
654
 
655
- #: admin/fees.php:184
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
656
  msgctxt "fees order"
657
  msgid "Label"
658
  msgstr ""
659
 
660
- #: admin/fees.php:185
661
  msgctxt "fees order"
662
  msgid "Amount"
663
  msgstr ""
664
 
665
- #: admin/fees.php:186
666
  msgctxt "fees order"
667
  msgid "Duration"
668
  msgstr ""
669
 
670
- #: admin/fees.php:187
671
  msgctxt "fees order"
672
  msgid "Images"
673
  msgstr ""
674
 
675
- #: admin/fees.php:188
676
  msgctxt "fees order"
677
  msgid "Custom Order"
678
  msgstr ""
679
 
680
- #: admin/fees.php:207
681
  msgctxt "fees admin"
682
  msgid "Fee updated."
683
  msgstr ""
684
 
685
- #: admin/fees.php:230
686
  msgctxt "fees admin"
687
  msgid "Fee deleted."
688
  msgstr ""
@@ -1549,26 +1630,33 @@ msgstr ""
1549
 
1550
  #: admin/templates/fees-addoredit.tpl.php:94
1551
  msgctxt "fees admin"
1552
- msgid "Is sticky?"
1553
  msgstr ""
1554
 
1555
- #: admin/templates/fees-addoredit.tpl.php:106
 
 
 
 
 
 
 
1556
  msgctxt "fees admin"
1557
  msgid "Apply to category"
1558
  msgstr ""
1559
 
1560
- #: admin/templates/fees-addoredit.tpl.php:110
1561
- #: admin/templates/fees-addoredit.tpl.php:113
1562
  msgctxt "fees admin"
1563
  msgid "* All Categories *"
1564
  msgstr ""
1565
 
1566
- #: admin/templates/fees-addoredit.tpl.php:133
1567
  msgctxt "fees admin"
1568
  msgid "Add Fee"
1569
  msgstr ""
1570
 
1571
- #: admin/templates/fees-addoredit.tpl.php:133
1572
  msgctxt "fees admin"
1573
  msgid "Update Fee"
1574
  msgstr ""
@@ -1615,47 +1703,91 @@ msgid ""
1615
  "and check the box next to 'Turn On Payments' under 'Payment Settings'."
1616
  msgstr ""
1617
 
1618
- #: admin/templates/fees.tpl.php:22
1619
  msgctxt "fees admin"
1620
  msgid "Order fees on the frontend by:"
1621
  msgstr ""
1622
 
1623
- #: admin/templates/fees.tpl.php:30
1624
  msgctxt "fees admin"
1625
  msgid "↑ Ascending"
1626
  msgstr ""
1627
 
1628
- #: admin/templates/fees.tpl.php:30
1629
  msgctxt "fees admin"
1630
  msgid "↓ Descending"
1631
  msgstr ""
1632
 
1633
- #: admin/templates/fees.tpl.php:36
1634
  msgctxt "fees admin"
1635
  msgid "Drag and drop to re-order fees."
1636
  msgstr ""
1637
 
1638
- #: admin/templates/fees.tpl.php:48 admin/templates/sidebar.tpl.php:13
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1639
  msgctxt "admin sidebar"
1640
  msgid "PayPal Gateway Module"
1641
  msgstr ""
1642
 
1643
- #: admin/templates/fees.tpl.php:49 admin/templates/sidebar.tpl.php:14
1644
  msgctxt "admin sidebar"
1645
  msgid "2Checkout Gateway Module"
1646
  msgstr ""
1647
 
1648
- #: admin/templates/fees.tpl.php:50 admin/templates/sidebar.tpl.php:5
1649
  msgctxt "admin sidebar"
1650
  msgid "PayFast Payment Module"
1651
  msgstr ""
1652
 
1653
- #: admin/templates/fees.tpl.php:51 admin/templates/sidebar.tpl.php:6
1654
  msgctxt "admin sidebar"
1655
  msgid "Stripe Payment Module"
1656
  msgstr ""
1657
 
1658
- #: admin/templates/fees.tpl.php:61
1659
  msgctxt "admin templates"
1660
  msgid ""
1661
  "It does not appear you have any of the payment gateway modules enabled. "
@@ -1665,12 +1797,12 @@ msgid ""
1665
  "below or visit %s."
1666
  msgstr ""
1667
 
1668
- #: admin/templates/fees.tpl.php:77
1669
  msgctxt "admin templates"
1670
  msgid "Already installed."
1671
  msgstr ""
1672
 
1673
- #: admin/templates/fees.tpl.php:82
1674
  msgctxt "admin templates"
1675
  msgid ""
1676
  "You can buy the <a>%s</a> to add <a>%s</a> as a payment option for your "
@@ -1850,7 +1982,7 @@ msgctxt "form-fields admin"
1850
  msgid "Please see the <a>Form Fields documentation</a> for more details."
1851
  msgstr ""
1852
 
1853
- #. #-#-#-#-# WPBDM.pot (Business Directory Plugin 3.6.13) #-#-#-#-#
1854
  #. Plugin Name of the plugin/theme
1855
  #: admin/templates/header.tpl.php:4
1856
  msgid "Business Directory Plugin"
@@ -2369,21 +2501,41 @@ msgctxt "themes"
2369
  msgid "Active:"
2370
  msgstr ""
2371
 
2372
- #: admin/templates/themes-item.tpl.php:12
2373
  msgctxt "themes"
2374
  msgid "Activate"
2375
  msgstr ""
2376
 
2377
- #: admin/templates/themes-item.tpl.php:29
2378
  msgctxt "themes"
2379
  msgid "Version:"
2380
  msgstr ""
2381
 
2382
- #: admin/templates/themes-item.tpl.php:32
2383
  msgctxt "themes"
2384
  msgid "Author:"
2385
  msgstr ""
2386
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
2387
  #: admin/templates/transactions.tpl.php:2
2388
  msgctxt "admin transactions"
2389
  msgid "Transactions"
@@ -2583,22 +2735,22 @@ msgctxt "admin csv-import"
2583
  msgid "Listing category \"%s\" does not exist"
2584
  msgstr ""
2585
 
2586
- #: core/class-fee-plan.php:45
2587
  msgctxt "fees-api"
2588
  msgid "Fee label is required."
2589
  msgstr ""
2590
 
2591
- #: core/class-fee-plan.php:48
2592
  msgctxt "fees-api"
2593
  msgid "Fee amount must be a non-negative decimal number."
2594
  msgstr ""
2595
 
2596
- #: core/class-fee-plan.php:51
2597
  msgctxt "fees-api"
2598
  msgid "Fee must apply to at least one category."
2599
  msgstr ""
2600
 
2601
- #: core/class-fee-plan.php:56
2602
  msgctxt "fees-api"
2603
  msgid "Fee listing duration must be a number less than 10 years (3650 days)."
2604
  msgstr ""
@@ -2635,19 +2787,19 @@ msgctxt "form-fields-api"
2635
  msgid "\"%s\" is an invalid field type for this association."
2636
  msgstr ""
2637
 
2638
- #: core/class-form-field.php:527
2639
  msgctxt "form-fields-api"
2640
  msgid "Invalid field ID"
2641
  msgstr ""
2642
 
2643
- #: core/class-form-field.php:536
2644
  msgctxt "form-fields api"
2645
  msgid ""
2646
  "This form field can't be deleted because it is required for the plugin to "
2647
  "work."
2648
  msgstr ""
2649
 
2650
- #: core/class-form-field.php:548
2651
  msgctxt "form-fields-api"
2652
  msgid "An error occurred while trying to delete this field."
2653
  msgstr ""
@@ -4630,37 +4782,42 @@ msgctxt "fs helper"
4630
  msgid "Destination dir \"%s\" is not writable."
4631
  msgstr ""
4632
 
4633
- #: core/helpers/class-themes-updater.php:126
4634
  msgctxt "themes"
4635
  msgid "Updating theme..."
4636
  msgstr ""
4637
 
4638
- #: core/helpers/class-themes-updater.php:127
4639
  msgctxt "themes"
4640
  msgid "Theme updated."
4641
  msgstr ""
4642
 
4643
- #: core/helpers/class-themes-updater.php:129
4644
  msgctxt "themes"
4645
  msgid "New version available (<b>%s</b>). <a>Update now.</a>"
4646
  msgstr ""
4647
 
4648
- #: core/helpers/class-themes-updater.php:157
4649
  msgctxt "themes"
4650
  msgid "Could not update theme: %s"
4651
  msgstr ""
4652
 
4653
- #: core/helpers/class-themes-updater.php:163
4654
  msgctxt "themes"
4655
  msgid "Theme was updated sucessfully."
4656
  msgstr ""
4657
 
4658
- #: core/installer.php:38
4659
  msgctxt "default category name"
4660
  msgid "General"
4661
  msgstr ""
4662
 
4663
- #: core/installer.php:471
 
 
 
 
 
4664
  msgctxt "installer"
4665
  msgid ""
4666
  "<b>Business Directory Plugin - Regions Module</b> was disabled because it is "
@@ -4668,82 +4825,82 @@ msgid ""
4668
  "the Regions module."
4669
  msgstr ""
4670
 
4671
- #: core/installer.php:537
4672
  msgctxt "installer"
4673
  msgid "Cleaning up listing fees information... %d/%d"
4674
  msgstr ""
4675
 
4676
- #: core/installer.php:587
4677
  msgctxt "installer"
4678
  msgid "Migrating previous transactions to new Payments API... %d/%d"
4679
  msgstr ""
4680
 
4681
- #: core/installer.php:616
4682
  msgctxt "installer"
4683
  msgid "Initial listing payment (BD < 3.4)"
4684
  msgstr ""
4685
 
4686
- #: core/installer.php:627
4687
  msgctxt "installer"
4688
  msgid "Listing edit payment (BD < 3.4)"
4689
  msgstr ""
4690
 
4691
- #: core/installer.php:648
4692
  msgctxt "installer"
4693
  msgid "Renewal fee \"%s\" for category \"%s\""
4694
  msgstr ""
4695
 
4696
- #: core/installer.php:667
4697
  msgctxt "installer"
4698
  msgid "Listing upgrade to featured"
4699
  msgstr ""
4700
 
4701
- #: core/installer.php:909
4702
  msgid "Business Directory - Manual Upgrade Required"
4703
  msgstr ""
4704
 
4705
- #: core/installer.php:911
4706
  msgid ""
4707
  "Business Directory features are currently disabled because the plugin needs "
4708
  "to perform a manual upgrade before continuing."
4709
  msgstr ""
4710
 
4711
- #: core/installer.php:913
4712
  msgid "Perform Manual Upgrade"
4713
  msgstr ""
4714
 
4715
- #: core/installer.php:929 core/installer.php:930 core/installer.php:941
4716
  msgid "Business Directory - Manual Upgrade"
4717
  msgstr ""
4718
 
4719
- #: core/installer.php:945
4720
  msgid ""
4721
  "Business Directory features are currently disabled because the plugin needs "
4722
  "to perform a manual upgrade before it can be used."
4723
  msgstr ""
4724
 
4725
- #: core/installer.php:947
4726
  msgid "Click \"Start Upgrade\" and wait until the process finishes."
4727
  msgstr ""
4728
 
4729
- #: core/installer.php:950
4730
  msgctxt "manual-upgrade"
4731
  msgid "Start Upgrade"
4732
  msgstr ""
4733
 
4734
- #: core/installer.php:952
4735
  msgctxt "manual-upgrade"
4736
  msgid "Pause Upgrade"
4737
  msgstr ""
4738
 
4739
- #: core/installer.php:958
4740
  msgctxt "manual-upgrade"
4741
  msgid ""
4742
  "The upgrade was sucessfully performed. Business Directory Plugin is now "
4743
  "available."
4744
  msgstr ""
4745
 
4746
- #: core/installer.php:961
4747
  msgctxt "manual-upgrade"
4748
  msgid "Go to \"Directory Admin\""
4749
  msgstr ""
@@ -4814,12 +4971,7 @@ msgctxt "licensing"
4814
  msgid "Could not deactivate license: %s."
4815
  msgstr ""
4816
 
4817
- #: core/licensing.php:350
4818
- msgctxt "licensing"
4819
- msgid "License deactivated"
4820
- msgstr ""
4821
-
4822
- #: core/payment.php:89
4823
  msgctxt "payments-api"
4824
  msgid ""
4825
  "You are offering featured listings but have payments turned off. Go to <a "
@@ -4828,7 +4980,7 @@ msgid ""
4828
  "disabled."
4829
  msgstr ""
4830
 
4831
- #: core/payment.php:107
4832
  msgctxt "payments-api"
4833
  msgid ""
4834
  "The <b>%s</b> gateway is active but not properly configured. The gateway "
@@ -4836,7 +4988,7 @@ msgid ""
4836
  "Check the <a href=\"%s\">payment settings</a>."
4837
  msgstr ""
4838
 
4839
- #: core/payment.php:117
4840
  msgctxt "admin"
4841
  msgid ""
4842
  "You have payments turned on but no gateway is active and properly "
@@ -4845,14 +4997,14 @@ msgid ""
4845
  "<i>Free Mode</i>."
4846
  msgstr ""
4847
 
4848
- #: core/payment.php:121
4849
  msgid ""
4850
  "BD detected PayFast and another gateway were enabled. This setup is not "
4851
  "recommended due to PayFast supporting only ZAR and the other gateways not "
4852
  "supporting this currency."
4853
  msgstr ""
4854
 
4855
- #: core/payment.php:125
4856
  msgid ""
4857
  "You have recurring renewal of listing fees enabled but the payment gateways "
4858
  "installed don't support recurring payments. Until a gateway that supports "
@@ -4860,37 +5012,44 @@ msgid ""
4860
  "disabled."
4861
  msgstr ""
4862
 
4863
- #: core/payment.php:158
 
 
 
 
 
 
 
4864
  msgctxt "payments-api"
4865
  msgid "Checkout"
4866
  msgstr ""
4867
 
4868
- #: core/payment.php:159
4869
  msgctxt "payments-api"
4870
  msgid "Pay %1$s through %2$s"
4871
  msgstr ""
4872
 
4873
- #: core/payment.php:166
4874
  msgctxt "payments-api"
4875
  msgid "Your transaction has been approved."
4876
  msgstr ""
4877
 
4878
- #: core/payment.php:352
4879
  msgctxt "payments"
4880
  msgid "Payment Details"
4881
  msgstr ""
4882
 
4883
- #: core/payment.php:379
4884
  msgctxt "checkout"
4885
  msgid "Payment Method"
4886
  msgstr ""
4887
 
4888
- #: core/payment.php:413
4889
  msgctxt "payment"
4890
  msgid "Return to Directory."
4891
  msgstr ""
4892
 
4893
- #: core/payment.php:420
4894
  msgctxt "payments"
4895
  msgid ""
4896
  "Your payment is being processed by the payment gateway. Please reload this "
@@ -4898,7 +5057,7 @@ msgid ""
4898
  "administrator."
4899
  msgstr ""
4900
 
4901
- #: core/payment.php:423
4902
  msgctxt "payments"
4903
  msgid ""
4904
  "The payment has been rejected by the payment gateway. Please contact the "
@@ -4906,29 +5065,29 @@ msgid ""
4906
  "Method\" to select another payment method and try again."
4907
  msgstr ""
4908
 
4909
- #: core/payment.php:424
4910
  msgctxt "payments"
4911
  msgid "Change Payment Method"
4912
  msgstr ""
4913
 
4914
- #: core/payment.php:426
4915
  msgctxt "payments"
4916
  msgid ""
4917
  "The payment has been rejected by the payment gateway. Please contact the "
4918
  "site administrator if you think there is an error."
4919
  msgstr ""
4920
 
4921
- #: core/payment.php:429
4922
  msgctxt "payments"
4923
  msgid "The payment has been canceled at your request."
4924
  msgstr ""
4925
 
4926
- #: core/payment.php:527
4927
  msgctxt "admin"
4928
  msgid "Pending Abandonment"
4929
  msgstr ""
4930
 
4931
- #: core/payment.php:532
4932
  msgctxt "admin"
4933
  msgid "Abandoned"
4934
  msgstr ""
@@ -4982,22 +5141,22 @@ msgctxt "sort"
4982
  msgid "(Reset)"
4983
  msgstr ""
4984
 
4985
- #: core/themes.php:587
4986
  msgctxt "themes"
4987
  msgid "ZIP file is not a valid BD theme file."
4988
  msgstr ""
4989
 
4990
- #: core/themes.php:593
4991
  msgctxt "themes"
4992
  msgid "Could not create themes directory."
4993
  msgstr ""
4994
 
4995
- #: core/themes.php:601
4996
  msgctxt "themes"
4997
  msgid "Could not remove previous theme directory \"%s\"."
4998
  msgstr ""
4999
 
5000
- #: core/themes.php:607
5001
  msgctxt "themes"
5002
  msgid "Could not move new theme into theme directory."
5003
  msgstr ""
@@ -5008,52 +5167,52 @@ msgid ""
5008
  "POSTed data exceeds PHP config. maximum. See \"post_max_size\" directive."
5009
  msgstr ""
5010
 
5011
- #: core/utils.php:159
5012
  msgctxt "utils"
5013
  msgid "File size (%s) exceeds maximum file size of %s"
5014
  msgstr ""
5015
 
5016
- #: core/utils.php:167
5017
  msgctxt "utils"
5018
  msgid "File size (%s) is inferior to the required minimum file size of %s"
5019
  msgstr ""
5020
 
5021
- #: core/utils.php:176 core/utils.php:183
5022
  msgctxt "utils"
5023
  msgid "File type \"%s\" is not allowed"
5024
  msgstr ""
5025
 
5026
- #: core/utils.php:190
5027
  msgctxt "utils"
5028
  msgid "Unkown error while uploading file."
5029
  msgstr ""
5030
 
5031
- #: core/utils.php:209
5032
  msgctxt "utils"
5033
  msgid "Uploaded file is not an image"
5034
  msgstr ""
5035
 
5036
- #: core/utils.php:218
5037
  msgctxt "utils"
5038
  msgid "Image width (%s px) is inferior to minimum required width of %s px."
5039
  msgstr ""
5040
 
5041
- #: core/utils.php:224
5042
  msgctxt "utils"
5043
  msgid "Image height (%s px) is inferior to minimum required height of %s px."
5044
  msgstr ""
5045
 
5046
- #: core/utils.php:230
5047
  msgctxt "utils"
5048
  msgid "Image width (%s px) is greater than maximum allowed width of %s px."
5049
  msgstr ""
5050
 
5051
- #: core/utils.php:236
5052
  msgctxt "utils"
5053
  msgid "Image height (%s px) is greater than maximum required height of %s px."
5054
  msgstr ""
5055
 
5056
- #: core/utils.php:250
5057
  msgctxt "utils"
5058
  msgid "Error while uploading file"
5059
  msgstr ""
@@ -5272,52 +5431,52 @@ msgid ""
5272
  "You are logged in as an administrator. Any payment steps will be skipped."
5273
  msgstr ""
5274
 
5275
- #: core/view-submit-listing.php:200
5276
  msgctxt "templates"
5277
  msgid "Please select a fee option for the \"%s\" category."
5278
  msgstr ""
5279
 
5280
- #: core/view-submit-listing.php:268
5281
  msgctxt "templates"
5282
  msgid "Please agree to the Terms and Conditions."
5283
  msgstr ""
5284
 
5285
- #: core/view-submit-listing.php:274
5286
  msgctxt "templates"
5287
  msgid "The reCAPTCHA wasn't entered correctly."
5288
  msgstr ""
5289
 
5290
- #: core/view-submit-listing.php:291
5291
  msgctxt "templates"
5292
  msgid "Read our Terms and Conditions"
5293
  msgstr ""
5294
 
5295
- #: core/view-submit-listing.php:296
5296
  msgctxt "templates"
5297
  msgid "Terms and Conditions:"
5298
  msgstr ""
5299
 
5300
- #: core/view-submit-listing.php:307
5301
  msgctxt "templates"
5302
  msgid "I agree to the Terms and Conditions"
5303
  msgstr ""
5304
 
5305
- #: core/view-submit-listing.php:444
5306
  msgctxt "listings"
5307
  msgid "Fee \"%s\" for category \"%s\"%s"
5308
  msgstr ""
5309
 
5310
- #: core/view-submit-listing.php:447
5311
  msgctxt "listings"
5312
  msgid "(recurring)"
5313
  msgstr ""
5314
 
5315
- #: core/view-submit-listing.php:457 core/view-upgrade-listing.php:54
5316
  msgctxt "submit"
5317
  msgid "Listing upgrade to featured"
5318
  msgstr ""
5319
 
5320
- #: core/view-submit-listing.php:490
5321
  msgctxt "submit_state"
5322
  msgid "Invalid submit state."
5323
  msgstr ""
@@ -5849,12 +6008,17 @@ msgctxt "templates"
5849
  msgid "Images Allowed"
5850
  msgstr ""
5851
 
5852
- #: templates/parts/category-fee-selection.tpl.php:43
 
 
 
 
 
5853
  msgctxt "templates"
5854
  msgid "Unlimited"
5855
  msgstr ""
5856
 
5857
- #: templates/parts/category-fee-selection.tpl.php:45
5858
  msgctxt "templates"
5859
  msgid "%d day"
5860
  msgid_plural "%d days"
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"
21
  msgid "All categories"
22
  msgstr ""
23
 
24
+ #: admin/class-admin-listings.php:114
25
  msgid "Listing Information"
26
  msgstr ""
27
 
28
+ #: admin/class-admin-listings.php:121
29
  msgctxt "admin"
30
  msgid "Listing Fields / Images"
31
  msgstr ""
32
 
33
+ #: admin/class-admin-listings.php:132
34
  msgctxt "admin"
35
  msgid "Categories"
36
  msgstr ""
37
 
38
+ #: admin/class-admin-listings.php:133
39
  msgid "Payment Status"
40
  msgstr ""
41
 
42
+ #: admin/class-admin-listings.php:134
43
  msgid "Featured (Sticky) Status"
44
  msgstr ""
45
 
46
+ #: admin/class-admin-listings.php:165
47
  msgctxt "admin"
48
  msgid "(Listing expired in this category)"
49
  msgstr ""
50
 
51
+ #: admin/class-admin-listings.php:183 admin/class-admin-listings.php:266
52
  msgid "Paid"
53
  msgstr ""
54
 
55
+ #: admin/class-admin-listings.php:188
56
  msgid "Mark as"
57
  msgstr ""
58
 
59
+ #: admin/class-admin-listings.php:197 admin/class-admin-listings.php:276
60
  msgid "Pending Upgrade"
61
  msgstr ""
62
 
63
+ #: admin/class-admin-listings.php:205 admin/listing-metabox.php:68
64
  msgid "Upgrade to %s"
65
  msgstr ""
66
 
67
+ #: admin/class-admin-listings.php:212 admin/listing-metabox.php:75
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 ""
75
 
76
+ #: admin/class-admin-listings.php:271
77
  msgid "Unpaid"
78
  msgstr ""
79
 
80
+ #: admin/class-admin-listings.php:281
81
  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 ""
220
  msgid "Uninstall"
221
  msgstr ""
222
 
223
+ #: admin/class-admin.php:410
224
  #: admin/templates/listing-metabox-categories.tpl.php:69
225
  msgctxt "admin infometabox"
226
  msgid "never"
227
  msgstr ""
228
 
229
+ #: admin/class-admin.php:492
230
  msgctxt "admin"
231
  msgid "The listing has been published."
232
  msgid_plural "The listings have been published."
233
  msgstr[0] ""
234
  msgstr[1] ""
235
 
236
+ #: admin/class-admin.php:505
237
  msgctxt "admin"
238
  msgid "The listing status has been set as paid."
239
  msgid_plural "The listings status has been set as paid."
240
  msgstr[0] ""
241
  msgstr[1] ""
242
 
243
+ #: admin/class-admin.php:517
244
  msgctxt "admin"
245
  msgid "The listing has been modified."
246
  msgid_plural "The listings have been modified."
247
  msgstr[0] ""
248
  msgstr[1] ""
249
 
250
+ #: admin/class-admin.php:530
251
  msgctxt "admin"
252
  msgid "The listing has been upgraded."
253
  msgid_plural "The listings have been upgraded."
254
  msgstr[0] ""
255
  msgstr[1] ""
256
 
257
+ #: admin/class-admin.php:542
258
  msgctxt "admin"
259
  msgid "The listing has been downgraded."
260
  msgid_plural "The listings have been downgraded."
261
  msgstr[0] ""
262
  msgstr[1] ""
263
 
264
+ #: admin/class-admin.php:554
265
  msgctxt "admin"
266
  msgid "The transaction has been approved."
267
  msgstr ""
268
 
269
+ #: admin/class-admin.php:562
270
  msgctxt "admin"
271
  msgid "The transaction has been rejected."
272
  msgstr ""
273
 
274
+ #: admin/class-admin.php:568
275
  msgctxt "admin"
276
  msgid "The fee was successfully assigned."
277
  msgstr ""
278
 
279
+ #: admin/class-admin.php:577
280
  msgctxt "admin"
281
  msgid "Listing was renewed."
282
  msgid_plural "Listings were renewed."
283
  msgstr[0] ""
284
  msgstr[1] ""
285
 
286
+ #: admin/class-admin.php:584
287
  msgctxt "admin"
288
  msgid "Renewal email sent."
289
  msgstr ""
290
 
291
+ #: admin/class-admin.php:618
292
  msgctxt "admin category id"
293
  msgid "ID"
294
  msgstr ""
295
 
296
+ #: admin/class-admin.php:620 admin/class-admin.php:626
297
  msgctxt "admin"
298
  msgid "Listing Count"
299
  msgstr ""
300
 
301
+ #: admin/class-admin.php:735
302
  msgctxt "admin"
303
  msgid ""
304
  "<b>Business Directory Plugin</b> requires fields with the following "
305
  "associations in order to work correctly: <b>%s</b>."
306
  msgstr ""
307
 
308
+ #: admin/class-admin.php:737
309
  msgctxt "admin"
310
  msgid ""
311
  "<b>Business Directory Plugin</b> requires a field with a <b>%s</b> "
312
  "association in order to work correctly."
313
  msgstr ""
314
 
315
+ #: admin/class-admin.php:741
316
  msgctxt "admin"
317
  msgid ""
318
  "You can create these custom fields by yourself inside \"Manage Form Fields\" "
319
  "or let Business Directory do this for you automatically."
320
  msgstr ""
321
 
322
+ #: admin/class-admin.php:745
323
  msgctxt "admin"
324
  msgid "Go to \"Manage Form Fields\""
325
  msgstr ""
326
 
327
+ #: admin/class-admin.php:748
328
  msgctxt "admin"
329
  msgid "Create these required fields for me"
330
  msgstr ""
331
 
332
+ #: admin/class-admin.php:757
333
  msgctxt "admin"
334
  msgid ""
335
  "<b>Business Directory Plugin</b> requires a page with the "
336
  "<tt>[businessdirectory]</tt> shortcode to function properly."
337
  msgstr ""
338
 
339
+ #: admin/class-admin.php:759
340
  msgctxt "admin"
341
  msgid ""
342
  "You can create this page by yourself or let Business Directory do this for "
343
  "you automatically."
344
  msgstr ""
345
 
346
+ #: admin/class-admin.php:763
347
  msgctxt "admin"
348
  msgid "Create required pages for me"
349
  msgstr ""
350
 
351
+ #: admin/class-admin.php:803
352
  msgctxt "admin compat"
353
  msgid "Installed: %s"
354
  msgstr ""
355
 
356
+ #: admin/class-admin.php:803
357
  msgctxt "admin compat"
358
  msgid "N/A"
359
  msgstr ""
360
 
361
+ #: admin/class-admin.php:806
362
  msgctxt "admin compat"
363
  msgid "Required: %s"
364
  msgstr ""
365
 
366
+ #: admin/class-admin.php:819
367
  msgctxt "admin compat"
368
  msgid ""
369
  "Business Directory has detected some incompatible premium module versions "
370
  "installed."
371
  msgstr ""
372
 
373
+ #: admin/class-admin.php:821
374
  msgctxt "admin compat"
375
  msgid ""
376
  "Please upgrade to the required versions indicated below to make sure "
377
  "everything functions properly."
378
  msgstr ""
379
 
380
+ #: admin/class-admin.php:836
381
  msgctxt "admin"
382
  msgid ""
383
  "We noticed you want your Business Directory users to register before posting "
401
  msgid "There are no images currently attached to the listing."
402
  msgstr ""
403
 
404
+ #: admin/class-themes-admin.php:44
405
  msgctxt "themes"
406
  msgid "Directory Themes"
407
  msgstr ""
408
 
409
+ #: admin/class-themes-admin.php:45
410
  msgctxt "themes"
411
  msgid "Directory Themes %s"
412
  msgstr ""
413
 
414
+ #: admin/class-themes-admin.php:100
415
  msgctxt "themes"
416
  msgid "Could not change the active theme to \"%s\"."
417
  msgstr ""
418
 
419
+ #: admin/class-themes-admin.php:147
420
  msgctxt "themes"
421
  msgid "Active theme changed to \"%s\"."
422
  msgstr ""
423
 
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 ""
507
+
508
  #: admin/csv-export.php:136
509
  msgctxt "admin csv-export"
510
  msgid "Could not create a temporary directory for handling this CSV export."
584
  msgid "fees"
585
  msgstr ""
586
 
587
+ #: admin/fees.php:19
588
+ msgctxt "fees admin"
589
+ msgid "There are no fees right now. You can <a>create one</a>, if you want."
590
+ msgstr ""
591
+
592
+ #: admin/fees.php:25 admin/fees.php:260
593
+ msgctxt "fees admin"
594
+ msgid "Active"
595
+ msgstr ""
596
+
597
+ #: admin/fees.php:28 admin/fees.php:258
598
  msgctxt "fees admin"
599
+ msgid "Not Available"
600
+ msgstr ""
601
+
602
+ #: admin/fees.php:31 admin/fees.php:255
603
+ msgctxt "fees admin"
604
+ msgid "Disabled"
605
+ msgstr ""
606
+
607
+ #: admin/fees.php:39
608
+ msgctxt "fees admin"
609
+ msgid ""
610
+ "There are no \"%s\" fees right now. You can <a>create one</a>, if you want."
611
+ msgstr ""
612
+
613
+ #: admin/fees.php:56
614
+ msgctxt "admin fees table"
615
+ msgid "All"
616
  msgstr ""
617
 
618
+ #: admin/fees.php:68
619
+ msgctxt "admin fees table"
620
+ msgid "Active"
621
+ msgstr ""
622
+
623
+ #: admin/fees.php:78
624
+ msgctxt "admin fees table"
625
+ msgid "Not Available"
626
+ msgstr ""
627
+
628
+ #: admin/fees.php:85
629
+ msgctxt "admin fees table"
630
+ msgid "Disabled"
631
+ msgstr ""
632
+
633
+ #: admin/fees.php:94
634
  msgctxt "fees admin"
635
  msgid "Label"
636
  msgstr ""
637
 
638
+ #: admin/fees.php:95
639
  msgctxt "fees admin"
640
  msgid "Amount"
641
  msgstr ""
642
 
643
+ #: admin/fees.php:96
644
  msgctxt "fees admin"
645
  msgid "Duration"
646
  msgstr ""
647
 
648
+ #: admin/fees.php:97
649
  msgctxt "fees admin"
650
  msgid "Images"
651
  msgstr ""
652
 
653
+ #: admin/fees.php:98
654
  msgctxt "fees admin"
655
+ msgid "Featured/Sticky"
656
  msgstr ""
657
 
658
+ #: admin/fees.php:102
659
  msgctxt "fees admin"
660
+ msgid "Status"
 
 
 
 
661
  msgstr ""
662
 
663
+ #: admin/fees.php:155
664
  msgctxt "fees admin"
665
+ msgid ""
666
+ "This is the default free plan for your directory. You can't delete it and "
667
+ "it's always free, but you can edit the name and other settings. It's only "
668
+ "available when the directory is in Free mode. You can always create other "
669
+ "fee plans, including ones for 0.00 (free) if you wish."
670
  msgstr ""
671
 
672
+ #: admin/fees.php:187
673
  msgctxt "fees admin"
674
  msgid "Edit"
675
  msgstr ""
676
 
677
+ #: admin/fees.php:197
678
  msgctxt "fees admin"
679
  msgid "Disable"
680
  msgstr ""
681
 
682
+ #: admin/fees.php:201
683
+ msgctxt "fees admin"
684
+ msgid "Enable"
685
+ msgstr ""
686
+
687
+ #: admin/fees.php:205
688
  msgctxt "fees admin"
689
  msgid "Delete"
690
  msgstr ""
691
 
692
+ #: admin/fees.php:226
693
  msgctxt "fees admin"
694
  msgid "Forever"
695
  msgstr ""
696
 
697
+ #: admin/fees.php:227
698
  msgctxt "fees admin"
699
  msgid "%d day"
700
  msgid_plural "%d days"
701
  msgstr[0] ""
702
  msgstr[1] ""
703
 
704
+ #: admin/fees.php:231
705
  msgctxt "fees admin"
706
  msgid "%d image"
707
  msgid_plural "%d images"
708
  msgstr[0] ""
709
  msgstr[1] ""
710
 
711
+ #: admin/fees.php:236
712
  msgctxt "fees admin"
713
  msgid "All categories"
714
  msgstr ""
715
 
716
+ #: admin/fees.php:250
717
+ msgctxt "fees admin"
718
+ msgid "Yes"
719
+ msgstr ""
720
+
721
+ #: admin/fees.php:250
722
+ msgctxt "fees admin"
723
+ msgid "No"
724
+ msgstr ""
725
+
726
+ #: admin/fees.php:285
727
+ msgctxt "fees admin"
728
+ msgid "Fee enabled."
729
+ msgstr ""
730
+
731
+ #: admin/fees.php:293
732
+ msgctxt "fees admin"
733
+ msgid "Fee disabled."
734
+ msgstr ""
735
+
736
+ #: admin/fees.php:318
737
  msgctxt "fees order"
738
  msgid "Label"
739
  msgstr ""
740
 
741
+ #: admin/fees.php:319
742
  msgctxt "fees order"
743
  msgid "Amount"
744
  msgstr ""
745
 
746
+ #: admin/fees.php:320
747
  msgctxt "fees order"
748
  msgid "Duration"
749
  msgstr ""
750
 
751
+ #: admin/fees.php:321
752
  msgctxt "fees order"
753
  msgid "Images"
754
  msgstr ""
755
 
756
+ #: admin/fees.php:322
757
  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 ""
765
 
766
+ #: admin/fees.php:364
767
  msgctxt "fees admin"
768
  msgid "Fee deleted."
769
  msgstr ""
1630
 
1631
  #: admin/templates/fees-addoredit.tpl.php:94
1632
  msgctxt "fees admin"
1633
+ msgid "Is featured listing/sticky?"
1634
  msgstr ""
1635
 
1636
+ #: admin/templates/fees-addoredit.tpl.php:102
1637
+ msgctxt "fees admin"
1638
+ msgid ""
1639
+ "This floats the listing to the top of search results and browsing the "
1640
+ "directory when the user buys this plan."
1641
+ msgstr ""
1642
+
1643
+ #: admin/templates/fees-addoredit.tpl.php:107
1644
  msgctxt "fees admin"
1645
  msgid "Apply to category"
1646
  msgstr ""
1647
 
1648
+ #: admin/templates/fees-addoredit.tpl.php:111
1649
+ #: admin/templates/fees-addoredit.tpl.php:114
1650
  msgctxt "fees admin"
1651
  msgid "* All Categories *"
1652
  msgstr ""
1653
 
1654
+ #: admin/templates/fees-addoredit.tpl.php:134
1655
  msgctxt "fees admin"
1656
  msgid "Add Fee"
1657
  msgstr ""
1658
 
1659
+ #: admin/templates/fees-addoredit.tpl.php:134
1660
  msgctxt "fees admin"
1661
  msgid "Update Fee"
1662
  msgstr ""
1703
  "and check the box next to 'Turn On Payments' under 'Payment Settings'."
1704
  msgstr ""
1705
 
1706
+ #: admin/templates/fees.tpl.php:24
1707
  msgctxt "fees admin"
1708
  msgid "Order fees on the frontend by:"
1709
  msgstr ""
1710
 
1711
+ #: admin/templates/fees.tpl.php:32
1712
  msgctxt "fees admin"
1713
  msgid "↑ Ascending"
1714
  msgstr ""
1715
 
1716
+ #: admin/templates/fees.tpl.php:32
1717
  msgctxt "fees admin"
1718
  msgid "↓ Descending"
1719
  msgstr ""
1720
 
1721
+ #: admin/templates/fees.tpl.php:38
1722
  msgctxt "fees admin"
1723
  msgid "Drag and drop to re-order fees."
1724
  msgstr ""
1725
 
1726
+ #: admin/templates/fees.tpl.php:54
1727
+ msgctxt "fees admin"
1728
+ msgid ""
1729
+ "These are all of the fee plans displayed to the user when they place a "
1730
+ "listing. Your current mode of \"%s\" restricts what you see here. Those on "
1731
+ "the <a>Not Available</a> filter will become active when you change the "
1732
+ "payment mode."
1733
+ msgstr ""
1734
+
1735
+ #: admin/templates/fees.tpl.php:57 admin/templates/fees.tpl.php:63
1736
+ #: admin/templates/fees.tpl.php:77
1737
+ msgctxt "fees admin"
1738
+ msgid "Paid"
1739
+ msgstr ""
1740
+
1741
+ #: admin/templates/fees.tpl.php:57 admin/templates/fees.tpl.php:63
1742
+ #: admin/templates/fees.tpl.php:77
1743
+ msgctxt "fees admin"
1744
+ msgid "Free"
1745
+ msgstr ""
1746
+
1747
+ #: admin/templates/fees.tpl.php:60
1748
+ msgctxt "fees admin"
1749
+ msgid ""
1750
+ "These are all of the fee plans that aren't available because you're in \"%s"
1751
+ "\" mode. Those on the Active filter will become Not Available when you "
1752
+ "change the payment mode."
1753
+ msgstr ""
1754
+
1755
+ #: admin/templates/fees.tpl.php:66
1756
+ msgctxt "fees admin"
1757
+ msgid ""
1758
+ "These fee plans were disabled by the admin and will not show to the end user "
1759
+ "regardless of mode until you enable them."
1760
+ msgstr ""
1761
+
1762
+ #: admin/templates/fees.tpl.php:74
1763
+ msgctxt "fees admin"
1764
+ msgid ""
1765
+ "These are all of the fee plans you have configured. Not all of them are "
1766
+ "available for the current mode (currently set to \"%s\"). To see the fee "
1767
+ "plans for this mode click <a>Active</a>."
1768
+ msgstr ""
1769
+
1770
+ #: admin/templates/fees.tpl.php:89 admin/templates/sidebar.tpl.php:13
1771
  msgctxt "admin sidebar"
1772
  msgid "PayPal Gateway Module"
1773
  msgstr ""
1774
 
1775
+ #: admin/templates/fees.tpl.php:90 admin/templates/sidebar.tpl.php:14
1776
  msgctxt "admin sidebar"
1777
  msgid "2Checkout Gateway Module"
1778
  msgstr ""
1779
 
1780
+ #: admin/templates/fees.tpl.php:91 admin/templates/sidebar.tpl.php:5
1781
  msgctxt "admin sidebar"
1782
  msgid "PayFast Payment Module"
1783
  msgstr ""
1784
 
1785
+ #: admin/templates/fees.tpl.php:92 admin/templates/sidebar.tpl.php:6
1786
  msgctxt "admin sidebar"
1787
  msgid "Stripe Payment Module"
1788
  msgstr ""
1789
 
1790
+ #: admin/templates/fees.tpl.php:102
1791
  msgctxt "admin templates"
1792
  msgid ""
1793
  "It does not appear you have any of the payment gateway modules enabled. "
1797
  "below or visit %s."
1798
  msgstr ""
1799
 
1800
+ #: admin/templates/fees.tpl.php:118
1801
  msgctxt "admin templates"
1802
  msgid "Already installed."
1803
  msgstr ""
1804
 
1805
+ #: admin/templates/fees.tpl.php:123
1806
  msgctxt "admin templates"
1807
  msgid ""
1808
  "You can buy the <a>%s</a> to add <a>%s</a> as a payment option for your "
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"
2501
  msgid "Active:"
2502
  msgstr ""
2503
 
2504
+ #: admin/templates/themes-item.tpl.php:13
2505
  msgctxt "themes"
2506
  msgid "Activate"
2507
  msgstr ""
2508
 
2509
+ #: admin/templates/themes-item.tpl.php:33
2510
  msgctxt "themes"
2511
  msgid "Version:"
2512
  msgstr ""
2513
 
2514
+ #: admin/templates/themes-item.tpl.php:36
2515
  msgctxt "themes"
2516
  msgid "Author:"
2517
  msgstr ""
2518
 
2519
+ #: admin/templates/themes-licenses.tpl.php:24
2520
+ msgctxt "themes"
2521
+ msgid "Deactivate License"
2522
+ msgstr ""
2523
+
2524
+ #: admin/templates/themes-licenses.tpl.php:27
2525
+ msgctxt "themes"
2526
+ msgid "Deactivating license..."
2527
+ msgstr ""
2528
+
2529
+ #: admin/templates/themes-licenses.tpl.php:29
2530
+ msgctxt "themes"
2531
+ msgid "Activate License"
2532
+ msgstr ""
2533
+
2534
+ #: admin/templates/themes-licenses.tpl.php:30
2535
+ msgctxt "themes"
2536
+ msgid "Activating license..."
2537
+ msgstr ""
2538
+
2539
  #: admin/templates/transactions.tpl.php:2
2540
  msgctxt "admin transactions"
2541
  msgid "Transactions"
2735
  msgid "Listing category \"%s\" does not exist"
2736
  msgstr ""
2737
 
2738
+ #: core/class-fee-plan.php:46
2739
  msgctxt "fees-api"
2740
  msgid "Fee label is required."
2741
  msgstr ""
2742
 
2743
+ #: core/class-fee-plan.php:49
2744
  msgctxt "fees-api"
2745
  msgid "Fee amount must be a non-negative decimal number."
2746
  msgstr ""
2747
 
2748
+ #: core/class-fee-plan.php:52
2749
  msgctxt "fees-api"
2750
  msgid "Fee must apply to at least one category."
2751
  msgstr ""
2752
 
2753
+ #: core/class-fee-plan.php:57
2754
  msgctxt "fees-api"
2755
  msgid "Fee listing duration must be a number less than 10 years (3650 days)."
2756
  msgstr ""
2787
  msgid "\"%s\" is an invalid field type for this association."
2788
  msgstr ""
2789
 
2790
+ #: core/class-form-field.php:531
2791
  msgctxt "form-fields-api"
2792
  msgid "Invalid field ID"
2793
  msgstr ""
2794
 
2795
+ #: core/class-form-field.php:540
2796
  msgctxt "form-fields api"
2797
  msgid ""
2798
  "This form field can't be deleted because it is required for the plugin to "
2799
  "work."
2800
  msgstr ""
2801
 
2802
+ #: core/class-form-field.php:552
2803
  msgctxt "form-fields-api"
2804
  msgid "An error occurred while trying to delete this field."
2805
  msgstr ""
4782
  msgid "Destination dir \"%s\" is not writable."
4783
  msgstr ""
4784
 
4785
+ #: core/helpers/class-themes-updater.php:125
4786
  msgctxt "themes"
4787
  msgid "Updating theme..."
4788
  msgstr ""
4789
 
4790
+ #: core/helpers/class-themes-updater.php:126
4791
  msgctxt "themes"
4792
  msgid "Theme updated."
4793
  msgstr ""
4794
 
4795
+ #: core/helpers/class-themes-updater.php:128
4796
  msgctxt "themes"
4797
  msgid "New version available (<b>%s</b>). <a>Update now.</a>"
4798
  msgstr ""
4799
 
4800
+ #: core/helpers/class-themes-updater.php:156
4801
  msgctxt "themes"
4802
  msgid "Could not update theme: %s"
4803
  msgstr ""
4804
 
4805
+ #: core/helpers/class-themes-updater.php:162
4806
  msgctxt "themes"
4807
  msgid "Theme was updated sucessfully."
4808
  msgstr ""
4809
 
4810
+ #: core/installer.php:42
4811
  msgctxt "default category name"
4812
  msgid "General"
4813
  msgstr ""
4814
 
4815
+ #: core/installer.php:50
4816
+ msgctxt "installer"
4817
+ msgid "Default Fee"
4818
+ msgstr ""
4819
+
4820
+ #: core/installer.php:484
4821
  msgctxt "installer"
4822
  msgid ""
4823
  "<b>Business Directory Plugin - Regions Module</b> was disabled because it is "
4825
  "the Regions module."
4826
  msgstr ""
4827
 
4828
+ #: core/installer.php:550
4829
  msgctxt "installer"
4830
  msgid "Cleaning up listing fees information... %d/%d"
4831
  msgstr ""
4832
 
4833
+ #: core/installer.php:600
4834
  msgctxt "installer"
4835
  msgid "Migrating previous transactions to new Payments API... %d/%d"
4836
  msgstr ""
4837
 
4838
+ #: core/installer.php:629
4839
  msgctxt "installer"
4840
  msgid "Initial listing payment (BD < 3.4)"
4841
  msgstr ""
4842
 
4843
+ #: core/installer.php:640
4844
  msgctxt "installer"
4845
  msgid "Listing edit payment (BD < 3.4)"
4846
  msgstr ""
4847
 
4848
+ #: core/installer.php:661
4849
  msgctxt "installer"
4850
  msgid "Renewal fee \"%s\" for category \"%s\""
4851
  msgstr ""
4852
 
4853
+ #: core/installer.php:680
4854
  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 ""
4971
  msgid "Could not deactivate license: %s."
4972
  msgstr ""
4973
 
4974
+ #: core/payment.php:91
 
 
 
 
 
4975
  msgctxt "payments-api"
4976
  msgid ""
4977
  "You are offering featured listings but have payments turned off. Go to <a "
4980
  "disabled."
4981
  msgstr ""
4982
 
4983
+ #: core/payment.php:109
4984
  msgctxt "payments-api"
4985
  msgid ""
4986
  "The <b>%s</b> gateway is active but not properly configured. The gateway "
4988
  "Check the <a href=\"%s\">payment settings</a>."
4989
  msgstr ""
4990
 
4991
+ #: core/payment.php:119
4992
  msgctxt "admin"
4993
  msgid ""
4994
  "You have payments turned on but no gateway is active and properly "
4997
  "<i>Free Mode</i>."
4998
  msgstr ""
4999
 
5000
+ #: core/payment.php:123
5001
  msgid ""
5002
  "BD detected PayFast and another gateway were enabled. This setup is not "
5003
  "recommended due to PayFast supporting only ZAR and the other gateways not "
5004
  "supporting this currency."
5005
  msgstr ""
5006
 
5007
+ #: core/payment.php:127
5008
  msgid ""
5009
  "You have recurring renewal of listing fees enabled but the payment gateways "
5010
  "installed don't support recurring payments. Until a gateway that supports "
5012
  "disabled."
5013
  msgstr ""
5014
 
5015
+ #: core/payment.php:135
5016
+ msgid ""
5017
+ "You have payments enabled but there are no fees available. Users won't be "
5018
+ "able to post listings. Please <a href=\"fees\">create some fees</a> or <a "
5019
+ "href=\"settings\">configure the Directory</a> to operate in \"Free Mode\"."
5020
+ msgstr ""
5021
+
5022
+ #: core/payment.php:169
5023
  msgctxt "payments-api"
5024
  msgid "Checkout"
5025
  msgstr ""
5026
 
5027
+ #: core/payment.php:170
5028
  msgctxt "payments-api"
5029
  msgid "Pay %1$s through %2$s"
5030
  msgstr ""
5031
 
5032
+ #: core/payment.php:177
5033
  msgctxt "payments-api"
5034
  msgid "Your transaction has been approved."
5035
  msgstr ""
5036
 
5037
+ #: core/payment.php:363
5038
  msgctxt "payments"
5039
  msgid "Payment Details"
5040
  msgstr ""
5041
 
5042
+ #: core/payment.php:390
5043
  msgctxt "checkout"
5044
  msgid "Payment Method"
5045
  msgstr ""
5046
 
5047
+ #: core/payment.php:424
5048
  msgctxt "payment"
5049
  msgid "Return to Directory."
5050
  msgstr ""
5051
 
5052
+ #: core/payment.php:431
5053
  msgctxt "payments"
5054
  msgid ""
5055
  "Your payment is being processed by the payment gateway. Please reload this "
5057
  "administrator."
5058
  msgstr ""
5059
 
5060
+ #: core/payment.php:434
5061
  msgctxt "payments"
5062
  msgid ""
5063
  "The payment has been rejected by the payment gateway. Please contact the "
5065
  "Method\" to select another payment method and try again."
5066
  msgstr ""
5067
 
5068
+ #: core/payment.php:435
5069
  msgctxt "payments"
5070
  msgid "Change Payment Method"
5071
  msgstr ""
5072
 
5073
+ #: core/payment.php:437
5074
  msgctxt "payments"
5075
  msgid ""
5076
  "The payment has been rejected by the payment gateway. Please contact the "
5077
  "site administrator if you think there is an error."
5078
  msgstr ""
5079
 
5080
+ #: core/payment.php:440
5081
  msgctxt "payments"
5082
  msgid "The payment has been canceled at your request."
5083
  msgstr ""
5084
 
5085
+ #: core/payment.php:538
5086
  msgctxt "admin"
5087
  msgid "Pending Abandonment"
5088
  msgstr ""
5089
 
5090
+ #: core/payment.php:543
5091
  msgctxt "admin"
5092
  msgid "Abandoned"
5093
  msgstr ""
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 ""
5167
  "POSTed data exceeds PHP config. maximum. See \"post_max_size\" directive."
5168
  msgstr ""
5169
 
5170
+ #: core/utils.php:164
5171
  msgctxt "utils"
5172
  msgid "File size (%s) exceeds maximum file size of %s"
5173
  msgstr ""
5174
 
5175
+ #: core/utils.php:172
5176
  msgctxt "utils"
5177
  msgid "File size (%s) is inferior to the required minimum file size of %s"
5178
  msgstr ""
5179
 
5180
+ #: core/utils.php:181 core/utils.php:188
5181
  msgctxt "utils"
5182
  msgid "File type \"%s\" is not allowed"
5183
  msgstr ""
5184
 
5185
+ #: core/utils.php:195
5186
  msgctxt "utils"
5187
  msgid "Unkown error while uploading file."
5188
  msgstr ""
5189
 
5190
+ #: core/utils.php:214
5191
  msgctxt "utils"
5192
  msgid "Uploaded file is not an image"
5193
  msgstr ""
5194
 
5195
+ #: core/utils.php:223
5196
  msgctxt "utils"
5197
  msgid "Image width (%s px) is inferior to minimum required width of %s px."
5198
  msgstr ""
5199
 
5200
+ #: core/utils.php:229
5201
  msgctxt "utils"
5202
  msgid "Image height (%s px) is inferior to minimum required height of %s px."
5203
  msgstr ""
5204
 
5205
+ #: core/utils.php:235
5206
  msgctxt "utils"
5207
  msgid "Image width (%s px) is greater than maximum allowed width of %s px."
5208
  msgstr ""
5209
 
5210
+ #: core/utils.php:241
5211
  msgctxt "utils"
5212
  msgid "Image height (%s px) is greater than maximum required height of %s px."
5213
  msgstr ""
5214
 
5215
+ #: core/utils.php:255
5216
  msgctxt "utils"
5217
  msgid "Error while uploading file"
5218
  msgstr ""
5431
  "You are logged in as an administrator. Any payment steps will be skipped."
5432
  msgstr ""
5433
 
5434
+ #: core/view-submit-listing.php:205
5435
  msgctxt "templates"
5436
  msgid "Please select a fee option for the \"%s\" category."
5437
  msgstr ""
5438
 
5439
+ #: core/view-submit-listing.php:273
5440
  msgctxt "templates"
5441
  msgid "Please agree to the Terms and Conditions."
5442
  msgstr ""
5443
 
5444
+ #: core/view-submit-listing.php:279
5445
  msgctxt "templates"
5446
  msgid "The reCAPTCHA wasn't entered correctly."
5447
  msgstr ""
5448
 
5449
+ #: core/view-submit-listing.php:296
5450
  msgctxt "templates"
5451
  msgid "Read our Terms and Conditions"
5452
  msgstr ""
5453
 
5454
+ #: core/view-submit-listing.php:301
5455
  msgctxt "templates"
5456
  msgid "Terms and Conditions:"
5457
  msgstr ""
5458
 
5459
+ #: core/view-submit-listing.php:312
5460
  msgctxt "templates"
5461
  msgid "I agree to the Terms and Conditions"
5462
  msgstr ""
5463
 
5464
+ #: core/view-submit-listing.php:449
5465
  msgctxt "listings"
5466
  msgid "Fee \"%s\" for category \"%s\"%s"
5467
  msgstr ""
5468
 
5469
+ #: core/view-submit-listing.php:452
5470
  msgctxt "listings"
5471
  msgid "(recurring)"
5472
  msgstr ""
5473
 
5474
+ #: core/view-submit-listing.php:462 core/view-upgrade-listing.php:54
5475
  msgctxt "submit"
5476
  msgid "Listing upgrade to featured"
5477
  msgstr ""
5478
 
5479
+ #: core/view-submit-listing.php:495
5480
  msgctxt "submit_state"
5481
  msgid "Invalid submit state."
5482
  msgstr ""
6008
  msgid "Images Allowed"
6009
  msgstr ""
6010
 
6011
+ #: templates/parts/category-fee-selection.tpl.php:28
6012
+ msgctxt "templates"
6013
+ msgid "There are no fees available for this category."
6014
+ msgstr ""
6015
+
6016
+ #: templates/parts/category-fee-selection.tpl.php:50
6017
  msgctxt "templates"
6018
  msgid "Unlimited"
6019
  msgstr ""
6020
 
6021
+ #: templates/parts/category-fee-selection.tpl.php:52
6022
  msgctxt "templates"
6023
  msgid "%d day"
6024
  msgid_plural "%d days"
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-01-18 20:20:16+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"
@@ -22,93 +22,93 @@ msgctxt "admin category filter"
22
  msgid "All categories"
23
  msgstr "Todas las categorías"
24
 
25
- #: admin/class-admin-listings.php:111
26
  msgid "Listing Information"
27
  msgstr "Información del Listado"
28
 
29
- #: admin/class-admin-listings.php:118
30
  msgctxt "admin"
31
  msgid "Listing Fields / Images"
32
  msgstr "Campos del Listado / Imágenes"
33
 
34
- #: admin/class-admin-listings.php:129
35
  msgctxt "admin"
36
  msgid "Categories"
37
  msgstr "Categorías"
38
 
39
- #: admin/class-admin-listings.php:130
40
  msgid "Payment Status"
41
  msgstr "Estado de Pago"
42
 
43
- #: admin/class-admin-listings.php:131
44
  msgid "Featured (Sticky) Status"
45
  msgstr "Estado Destacado/Sticky"
46
 
47
- #: admin/class-admin-listings.php:162
48
  msgctxt "admin"
49
  msgid "(Listing expired in this category)"
50
  msgstr "(El listado ha expirado en esta categoría)"
51
 
52
- #: admin/class-admin-listings.php:180 admin/class-admin-listings.php:263
53
  msgid "Paid"
54
  msgstr "Pago"
55
 
56
- #: admin/class-admin-listings.php:185
57
  msgid "Mark as"
58
  msgstr "Marcar como"
59
 
60
- #: admin/class-admin-listings.php:194 admin/class-admin-listings.php:273
61
  msgid "Pending Upgrade"
62
  msgstr "Pendientes de Mejora"
63
 
64
- #: admin/class-admin-listings.php:202 admin/listing-metabox.php:68
65
  msgid "Upgrade to %s"
66
  msgstr "Mejorar a %s"
67
 
68
- #: admin/class-admin-listings.php:209 admin/listing-metabox.php:75
69
  msgid "Downgrade to %s"
70
  msgstr "Degradar a %s"
71
 
72
- #: admin/class-admin-listings.php:212 admin/class-admin-listings.php:392
73
  msgctxt "admin actions"
74
  msgid "Upgrade to Featured"
75
  msgstr "Mejorar a Destacado"
76
 
77
- #: admin/class-admin-listings.php:268
78
  msgid "Unpaid"
79
  msgstr "No pagado"
80
 
81
- #: admin/class-admin-listings.php:278
82
  msgctxt "admin"
83
  msgid "Expired"
84
  msgstr "Expirados"
85
 
86
- #: admin/class-admin-listings.php:328
87
  msgctxt "admin actions"
88
  msgid "Edit Listing"
89
  msgstr "Editar Listado"
90
 
91
- #: admin/class-admin-listings.php:331
92
  msgctxt "admin actions"
93
  msgid "Delete Listing"
94
  msgstr "Eliminar Listado"
95
 
96
- #: admin/class-admin-listings.php:390
97
  msgctxt "admin actions"
98
  msgid "Publish Listing"
99
  msgstr "Publicar Listado"
100
 
101
- #: admin/class-admin-listings.php:393
102
  msgctxt "admin actions"
103
  msgid "Downgrade to Normal"
104
  msgstr "Degradar a Normal"
105
 
106
- #: admin/class-admin-listings.php:395
107
  msgctxt "admin actions"
108
  msgid "Mark as Paid"
109
  msgstr "Marcar listado como Pagado"
110
 
111
- #: admin/class-admin-listings.php:397
112
  msgctxt "admin actions"
113
  msgid "Renew Listing"
114
  msgstr "Renovar Listado"
@@ -227,85 +227,85 @@ msgctxt "admin menu"
227
  msgid "Uninstall"
228
  msgstr "Desinstalar"
229
 
230
- #: admin/class-admin.php:408
231
  #: admin/templates/listing-metabox-categories.tpl.php:69
232
  msgctxt "admin infometabox"
233
  msgid "never"
234
  msgstr "nunca"
235
 
236
- #: admin/class-admin.php:490
237
  msgctxt "admin"
238
  msgid "The listing has been published."
239
  msgid_plural "The listings have been published."
240
  msgstr[0] "El listado ha sido publicado."
241
  msgstr[1] "Los listados han sido publicados."
242
 
243
- #: admin/class-admin.php:503
244
  msgctxt "admin"
245
  msgid "The listing status has been set as paid."
246
  msgid_plural "The listings status has been set as paid."
247
  msgstr[0] "El listado se ha marcado como pagado."
248
  msgstr[1] "Los listados se han marcado como pagados."
249
 
250
- #: admin/class-admin.php:515
251
  msgctxt "admin"
252
  msgid "The listing has been modified."
253
  msgid_plural "The listings have been modified."
254
  msgstr[0] "El listado ha sido modificado."
255
  msgstr[1] "Los listados han sido modificados."
256
 
257
- #: admin/class-admin.php:528
258
  msgctxt "admin"
259
  msgid "The listing has been upgraded."
260
  msgid_plural "The listings have been upgraded."
261
  msgstr[0] "El listado ha sido mejorado."
262
  msgstr[1] "Los listados han sido mejorados."
263
 
264
- #: admin/class-admin.php:540
265
  msgctxt "admin"
266
  msgid "The listing has been downgraded."
267
  msgid_plural "The listings have been downgraded."
268
  msgstr[0] "El listado ha sido degradado."
269
  msgstr[1] "Los listados han sido degradados."
270
 
271
- #: admin/class-admin.php:552
272
  msgctxt "admin"
273
  msgid "The transaction has been approved."
274
  msgstr "La transacción ha sido aprobada."
275
 
276
- #: admin/class-admin.php:560
277
  msgctxt "admin"
278
  msgid "The transaction has been rejected."
279
  msgstr "La transacción ha sido rechazada."
280
 
281
- #: admin/class-admin.php:566
282
  msgctxt "admin"
283
  msgid "The fee was successfully assigned."
284
  msgstr "La comisión se asignó satisfactoriamente."
285
 
286
- #: admin/class-admin.php:575
287
  msgctxt "admin"
288
  msgid "Listing was renewed."
289
  msgid_plural "Listings were renewed."
290
  msgstr[0] "El listado ha sido renovado."
291
  msgstr[1] "Los listados fueron renovados."
292
 
293
- #: admin/class-admin.php:582
294
  msgctxt "admin"
295
  msgid "Renewal email sent."
296
  msgstr "Mensaje de correo electrónico de renovación enviado."
297
 
298
- #: admin/class-admin.php:616
299
  msgctxt "admin category id"
300
  msgid "ID"
301
  msgstr "ID"
302
 
303
- #: admin/class-admin.php:618 admin/class-admin.php:624
304
  msgctxt "admin"
305
  msgid "Listing Count"
306
  msgstr "Conteo de Listados"
307
 
308
- #: admin/class-admin.php:733
309
  msgctxt "admin"
310
  msgid ""
311
  "<b>Business Directory Plugin</b> requires fields with the following "
@@ -314,7 +314,7 @@ msgstr ""
314
  "<b>Business Directory Plugin</b> requiere campos con las siguientes "
315
  "asociaciones para funcionar correctamente: <b>%s</b>."
316
 
317
- #: admin/class-admin.php:735
318
  msgctxt "admin"
319
  msgid ""
320
  "<b>Business Directory Plugin</b> requires a field with a <b>%s</b> "
@@ -323,7 +323,7 @@ msgstr ""
323
  "<b>Business Directory Plugin</b> requiere un campo con la asociación <b>%s</"
324
  "b> para funcionar correctamente."
325
 
326
- #: admin/class-admin.php:739
327
  msgctxt "admin"
328
  msgid ""
329
  "You can create these custom fields by yourself inside \"Manage Form Fields\" "
@@ -332,17 +332,17 @@ msgstr ""
332
  "Puede crear estos campos usted mismo en \"Administrar Campos de Formulario\" "
333
  "o puede dejar que Business Directory haga esto por usted automáticamente."
334
 
335
- #: admin/class-admin.php:743
336
  msgctxt "admin"
337
  msgid "Go to \"Manage Form Fields\""
338
  msgstr "Ir a \"Administrar Campos de Formulario\""
339
 
340
- #: admin/class-admin.php:746
341
  msgctxt "admin"
342
  msgid "Create these required fields for me"
343
  msgstr "Crear estos campos requeridos por mi"
344
 
345
- #: admin/class-admin.php:755
346
  msgctxt "admin"
347
  msgid ""
348
  "<b>Business Directory Plugin</b> requires a page with the "
@@ -351,7 +351,7 @@ msgstr ""
351
  "<b>Business Directory Plugin</b> requiere una página con el shortcode "
352
  "<tt>[businessdirectory]</tt> para funcionar adecuadamente."
353
 
354
- #: admin/class-admin.php:757
355
  msgctxt "admin"
356
  msgid ""
357
  "You can create this page by yourself or let Business Directory do this for "
@@ -360,27 +360,27 @@ msgstr ""
360
  "Puede crear esta página usted mismo o dejar que Business Directory lo haga "
361
  "por usted automáticamente."
362
 
363
- #: admin/class-admin.php:761
364
  msgctxt "admin"
365
  msgid "Create required pages for me"
366
  msgstr "Crear las páginas requeridas por mi"
367
 
368
- #: admin/class-admin.php:801
369
  msgctxt "admin compat"
370
  msgid "Installed: %s"
371
  msgstr "Instalado: %s"
372
 
373
- #: admin/class-admin.php:801
374
  msgctxt "admin compat"
375
  msgid "N/A"
376
  msgstr "N/A"
377
 
378
- #: admin/class-admin.php:804
379
  msgctxt "admin compat"
380
  msgid "Required: %s"
381
  msgstr "Requerido: %s"
382
 
383
- #: admin/class-admin.php:817
384
  msgctxt "admin compat"
385
  msgid ""
386
  "Business Directory has detected some incompatible premium module versions "
@@ -389,7 +389,7 @@ msgstr ""
389
  "Business Directory ha detectado algunas versiones incompatibles de módulos "
390
  "instaladas."
391
 
392
- #: admin/class-admin.php:819
393
  msgctxt "admin compat"
394
  msgid ""
395
  "Please upgrade to the required versions indicated below to make sure "
@@ -398,7 +398,7 @@ msgstr ""
398
  "Por favor actualice a las versiones requeridas indicadas abajo para "
399
  "asegurarse de que todo funcione correctamente."
400
 
401
- #: admin/class-admin.php:834
402
  msgctxt "admin"
403
  msgid ""
404
  "We noticed you want your Business Directory users to register before posting "
@@ -427,95 +427,110 @@ msgctxt "templates"
427
  msgid "There are no images currently attached to the listing."
428
  msgstr "No hay imágenes actualmente asociadas al listado."
429
 
430
- #: admin/class-themes-admin.php:41
431
  msgctxt "themes"
432
  msgid "Directory Themes"
433
  msgstr ""
434
 
435
- #: admin/class-themes-admin.php:42
436
  msgctxt "themes"
437
  msgid "Directory Themes %s"
438
  msgstr ""
439
 
440
- #: admin/class-themes-admin.php:97
441
  msgctxt "themes"
442
  msgid "Could not change the active theme to \"%s\"."
443
  msgstr ""
444
 
445
- #: admin/class-themes-admin.php:144
446
  msgctxt "themes"
447
  msgid "Active theme changed to \"%s\"."
448
  msgstr ""
449
 
450
- #: admin/class-themes-admin.php:147
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:154
458
  msgctxt "themes"
459
  msgid "Dismiss this warning"
460
  msgstr ""
461
 
462
- #: admin/class-themes-admin.php:157
463
  msgctxt "themes"
464
  msgid "Create suggested fields"
465
  msgstr ""
466
 
467
- #: admin/class-themes-admin.php:164
468
  msgctxt "themes"
469
  msgid "Suggested fields created successfully."
470
  msgstr ""
471
 
472
- #: admin/class-themes-admin.php:167
473
  msgctxt "themes"
474
  msgid "Theme installed successfully."
475
  msgstr ""
476
 
477
- #: admin/class-themes-admin.php:170
478
  msgctxt "themes"
479
  msgid "Theme was deleted sucessfully."
480
  msgstr ""
481
 
482
- #: admin/class-themes-admin.php:173
483
  msgctxt "themes"
484
  msgid "Could not delete theme directory. Check permissions."
485
  msgstr ""
486
 
487
- #: admin/class-themes-admin.php:199
488
  msgctxt "themes"
489
  msgid "Please upload a valid theme file."
490
  msgstr ""
491
 
492
- #: admin/class-themes-admin.php:206
493
  msgctxt "themes"
494
  msgid "Could not move \"%s\" to a temporary directory."
495
  msgstr ""
496
 
497
- #: admin/class-themes-admin.php:307 core/licensing.php:127
498
- #: 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:313 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:318 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:331 core/licensing.php:332
515
  msgctxt "licensing"
516
  msgid "License activated"
517
  msgstr "Licencia activada"
518
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
519
  #: admin/csv-export.php:136
520
  msgctxt "admin csv-export"
521
  msgid "Could not create a temporary directory for handling this CSV export."
@@ -604,120 +619,198 @@ msgctxt "fees admin"
604
  msgid "fees"
605
  msgstr "comisiones"
606
 
607
- #: admin/fees.php:16
608
  msgctxt "fees admin"
609
- msgid "You do not have any listing fees setup yet."
610
- msgstr "Usted no tiene comisiones configuradas aún."
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
611
 
612
- #: admin/fees.php:22
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
613
  msgctxt "fees admin"
614
  msgid "Label"
615
  msgstr "Nombre"
616
 
617
- #: admin/fees.php:23
618
  msgctxt "fees admin"
619
  msgid "Amount"
620
  msgstr "Precio"
621
 
622
- #: admin/fees.php:24
623
  msgctxt "fees admin"
624
  msgid "Duration"
625
  msgstr "Duración"
626
 
627
- #: admin/fees.php:25
628
  msgctxt "fees admin"
629
  msgid "Images"
630
  msgstr "No. de Imágenes"
631
 
632
- #: admin/fees.php:26
 
633
  msgctxt "fees admin"
634
- msgid "Applied To"
635
- msgstr "Aplica A"
636
 
637
- #: admin/fees.php:60
 
638
  msgctxt "fees admin"
639
- msgid ""
640
- "This is the <i>default</i> free plan for your directory. It can't be deleted "
641
- "or be anything but free and is only visible when your directory is in "
642
- "<i>free mode</i>. You can create other fee plans if you wish to charge for "
643
- "listings instead."
644
- msgstr ""
645
 
646
- #: admin/fees.php:73
647
  msgctxt "fees admin"
648
- msgid "Fee plan disabled because directory is in free mode."
 
 
 
 
649
  msgstr ""
650
 
651
- #: admin/fees.php:92
652
  msgctxt "fees admin"
653
  msgid "Edit"
654
  msgstr "Editar"
655
 
656
- #: admin/fees.php:97
657
  msgctxt "fees admin"
658
  msgid "Disable"
659
  msgstr ""
660
 
661
- #: admin/fees.php:101
 
 
 
 
 
662
  msgctxt "fees admin"
663
  msgid "Delete"
664
  msgstr "Eliminar"
665
 
666
- #: admin/fees.php:122
667
  msgctxt "fees admin"
668
  msgid "Forever"
669
  msgstr "Para siempre"
670
 
671
- #: admin/fees.php:123
672
  msgctxt "fees admin"
673
  msgid "%d day"
674
  msgid_plural "%d days"
675
  msgstr[0] "%d día"
676
  msgstr[1] "%d días"
677
 
678
- #: admin/fees.php:127
679
  msgctxt "fees admin"
680
  msgid "%d image"
681
  msgid_plural "%d images"
682
  msgstr[0] "%d imagen"
683
  msgstr[1] "%d imágenes"
684
 
685
- #: admin/fees.php:132
686
  msgctxt "fees admin"
687
  msgid "All categories"
688
  msgstr "Todas las categorías"
689
 
690
- #: admin/fees.php:184
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
691
  msgctxt "fees order"
692
  msgid "Label"
693
  msgstr "Nombre"
694
 
695
- #: admin/fees.php:185
696
  msgctxt "fees order"
697
  msgid "Amount"
698
  msgstr "Precio"
699
 
700
- #: admin/fees.php:186
701
  msgctxt "fees order"
702
  msgid "Duration"
703
  msgstr "Duración"
704
 
705
- #: admin/fees.php:187
706
  msgctxt "fees order"
707
  msgid "Images"
708
  msgstr "No. de Imágenes"
709
 
710
- #: admin/fees.php:188
711
  msgctxt "fees order"
712
  msgid "Custom Order"
713
  msgstr "Orden Especial"
714
 
715
- #: admin/fees.php:207
716
  msgctxt "fees admin"
717
  msgid "Fee updated."
718
  msgstr "Comisión actualizada."
719
 
720
- #: admin/fees.php:230
721
  msgctxt "fees admin"
722
  msgid "Fee deleted."
723
  msgstr "Comisión eliminada."
@@ -1638,27 +1731,35 @@ msgid "Number of images allowed"
1638
  msgstr "Número de imágenes permitidas"
1639
 
1640
  #: admin/templates/fees-addoredit.tpl.php:94
 
1641
  msgctxt "fees admin"
1642
- msgid "Is sticky?"
1643
- msgstr "Es destacado?"
1644
 
1645
- #: admin/templates/fees-addoredit.tpl.php:106
 
 
 
 
 
 
 
1646
  msgctxt "fees admin"
1647
  msgid "Apply to category"
1648
  msgstr "Aplicar a categoría"
1649
 
1650
- #: admin/templates/fees-addoredit.tpl.php:110
1651
- #: admin/templates/fees-addoredit.tpl.php:113
1652
  msgctxt "fees admin"
1653
  msgid "* All Categories *"
1654
  msgstr "* Todas las Categorías *"
1655
 
1656
- #: admin/templates/fees-addoredit.tpl.php:133
1657
  msgctxt "fees admin"
1658
  msgid "Add Fee"
1659
  msgstr "Agregar Comisión"
1660
 
1661
- #: admin/templates/fees-addoredit.tpl.php:133
1662
  msgctxt "fees admin"
1663
  msgid "Update Fee"
1664
  msgstr "Actualizar Comisión"
@@ -1707,47 +1808,93 @@ msgstr ""
1707
  "Para poder utilizar comisiones debe ir a la página de <a>Configuraciones - "
1708
  "Configuración de Pagos</a> y habilitar \"Activar Pagos?\"."
1709
 
1710
- #: admin/templates/fees.tpl.php:22
1711
  msgctxt "fees admin"
1712
  msgid "Order fees on the frontend by:"
1713
  msgstr "Ordenar comisiones del lado del usuario por:"
1714
 
1715
- #: admin/templates/fees.tpl.php:30
1716
  msgctxt "fees admin"
1717
  msgid "↑ Ascending"
1718
  msgstr "Ascendente"
1719
 
1720
- #: admin/templates/fees.tpl.php:30
1721
  msgctxt "fees admin"
1722
  msgid "↓ Descending"
1723
  msgstr "Descendente"
1724
 
1725
- #: admin/templates/fees.tpl.php:36
1726
  msgctxt "fees admin"
1727
  msgid "Drag and drop to re-order fees."
1728
  msgstr "Arrastre y suelte para reordenar las comisiones."
1729
 
1730
- #: admin/templates/fees.tpl.php:48 admin/templates/sidebar.tpl.php:13
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1731
  msgctxt "admin sidebar"
1732
  msgid "PayPal Gateway Module"
1733
  msgstr "Módulo pasarela de pago PayPal"
1734
 
1735
- #: admin/templates/fees.tpl.php:49 admin/templates/sidebar.tpl.php:14
1736
  msgctxt "admin sidebar"
1737
  msgid "2Checkout Gateway Module"
1738
  msgstr "Módulo pasarela de pago 2Checkout"
1739
 
1740
- #: admin/templates/fees.tpl.php:50 admin/templates/sidebar.tpl.php:5
1741
  msgctxt "admin sidebar"
1742
  msgid "PayFast Payment Module"
1743
  msgstr "Módulo pasarela de pago PayFast"
1744
 
1745
- #: admin/templates/fees.tpl.php:51 admin/templates/sidebar.tpl.php:6
1746
  msgctxt "admin sidebar"
1747
  msgid "Stripe Payment Module"
1748
  msgstr "Módulo pasarela de pago Stripe"
1749
 
1750
- #: admin/templates/fees.tpl.php:61
1751
  msgctxt "admin templates"
1752
  msgid ""
1753
  "It does not appear you have any of the payment gateway modules enabled. "
@@ -1761,12 +1908,12 @@ msgstr ""
1761
  "cobrar por los listados. Para comprar pasarelas adicionales utilice los "
1762
  "botones abajo o visite %s."
1763
 
1764
- #: admin/templates/fees.tpl.php:77
1765
  msgctxt "admin templates"
1766
  msgid "Already installed."
1767
  msgstr "Ya instalado."
1768
 
1769
- #: admin/templates/fees.tpl.php:82
1770
  msgctxt "admin templates"
1771
  msgid ""
1772
  "You can buy the <a>%s</a> to add <a>%s</a> as a payment option for your "
@@ -1953,6 +2100,7 @@ msgstr ""
1953
  "Por favor vea la <a>documentación de Campos de Formulario</a> para más "
1954
  "detalles."
1955
 
 
1956
  #. Plugin Name of the plugin/theme
1957
  #: admin/templates/header.tpl.php:4
1958
  msgid "Business Directory Plugin"
@@ -2489,21 +2637,45 @@ msgctxt "themes"
2489
  msgid "Active:"
2490
  msgstr ""
2491
 
2492
- #: admin/templates/themes-item.tpl.php:12
2493
  msgctxt "themes"
2494
  msgid "Activate"
2495
  msgstr ""
2496
 
2497
- #: admin/templates/themes-item.tpl.php:29
2498
  msgctxt "themes"
2499
  msgid "Version:"
2500
  msgstr ""
2501
 
2502
- #: admin/templates/themes-item.tpl.php:32
2503
  msgctxt "themes"
2504
  msgid "Author:"
2505
  msgstr ""
2506
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
2507
  #: admin/templates/transactions.tpl.php:2
2508
  msgctxt "admin transactions"
2509
  msgid "Transactions"
@@ -2710,22 +2882,22 @@ msgctxt "admin csv-import"
2710
  msgid "Listing category \"%s\" does not exist"
2711
  msgstr "La categoría \"%s\" no existe"
2712
 
2713
- #: core/class-fee-plan.php:45
2714
  msgctxt "fees-api"
2715
  msgid "Fee label is required."
2716
  msgstr "El nombre de la Comisión es requerido."
2717
 
2718
- #: core/class-fee-plan.php:48
2719
  msgctxt "fees-api"
2720
  msgid "Fee amount must be a non-negative decimal number."
2721
  msgstr "El precio de la comisión de be ser un número decimal no negativo."
2722
 
2723
- #: core/class-fee-plan.php:51
2724
  msgctxt "fees-api"
2725
  msgid "Fee must apply to at least one category."
2726
  msgstr "La comisión debe aplicar al menos a una categoría."
2727
 
2728
- #: core/class-fee-plan.php:56
2729
  msgctxt "fees-api"
2730
  msgid "Fee listing duration must be a number less than 10 years (3650 days)."
2731
  msgstr ""
@@ -2766,12 +2938,12 @@ msgctxt "form-fields-api"
2766
  msgid "\"%s\" is an invalid field type for this association."
2767
  msgstr "\"%s\" es un tipo de campo inválido para esta asociación."
2768
 
2769
- #: core/class-form-field.php:527
2770
  msgctxt "form-fields-api"
2771
  msgid "Invalid field ID"
2772
  msgstr "ID de campo inválido"
2773
 
2774
- #: core/class-form-field.php:536
2775
  msgctxt "form-fields api"
2776
  msgid ""
2777
  "This form field can't be deleted because it is required for the plugin to "
@@ -2780,7 +2952,7 @@ msgstr ""
2780
  "Este campo de formulario no puede eliminarse porque es requerido para el "
2781
  "funcionamiento del plugin."
2782
 
2783
- #: core/class-form-field.php:548
2784
  msgctxt "form-fields-api"
2785
  msgid "An error occurred while trying to delete this field."
2786
  msgstr "Un error ocurrió mientras se trataba de eliminar este campo."
@@ -4895,37 +5067,43 @@ msgctxt "fs helper"
4895
  msgid "Destination dir \"%s\" is not writable."
4896
  msgstr "El directorio de destino \"%s\" no se puede escribir."
4897
 
4898
- #: core/helpers/class-themes-updater.php:126
4899
  msgctxt "themes"
4900
  msgid "Updating theme..."
4901
  msgstr ""
4902
 
4903
- #: core/helpers/class-themes-updater.php:127
4904
  msgctxt "themes"
4905
  msgid "Theme updated."
4906
  msgstr ""
4907
 
4908
- #: core/helpers/class-themes-updater.php:129
4909
  msgctxt "themes"
4910
  msgid "New version available (<b>%s</b>). <a>Update now.</a>"
4911
  msgstr ""
4912
 
4913
- #: core/helpers/class-themes-updater.php:157
4914
  msgctxt "themes"
4915
  msgid "Could not update theme: %s"
4916
  msgstr ""
4917
 
4918
- #: core/helpers/class-themes-updater.php:163
4919
  msgctxt "themes"
4920
  msgid "Theme was updated sucessfully."
4921
  msgstr ""
4922
 
4923
- #: core/installer.php:38
4924
  msgctxt "default category name"
4925
  msgid "General"
4926
  msgstr "General"
4927
 
4928
- #: core/installer.php:471
 
 
 
 
 
 
4929
  msgctxt "installer"
4930
  msgid ""
4931
  "<b>Business Directory Plugin - Regions Module</b> was disabled because it is "
@@ -4936,41 +5114,41 @@ msgstr ""
4936
  "es incompatible con la versión actual de Business Directory. Por favor "
4937
  "actualice el módulode Regions."
4938
 
4939
- #: core/installer.php:537
4940
  msgctxt "installer"
4941
  msgid "Cleaning up listing fees information... %d/%d"
4942
  msgstr "Actualizando información de comisiones de listados... %d/%d"
4943
 
4944
- #: core/installer.php:587
4945
  msgctxt "installer"
4946
  msgid "Migrating previous transactions to new Payments API... %d/%d"
4947
  msgstr "Migrando transacciones anteriores a la nueva API de pagos... %d/%d"
4948
 
4949
- #: core/installer.php:616
4950
  msgctxt "installer"
4951
  msgid "Initial listing payment (BD < 3.4)"
4952
  msgstr "Pago inicial de listado (BD < 3.4)"
4953
 
4954
- #: core/installer.php:627
4955
  msgctxt "installer"
4956
  msgid "Listing edit payment (BD < 3.4)"
4957
  msgstr "Pago por edición de listado (BD < 3.4)"
4958
 
4959
- #: core/installer.php:648
4960
  msgctxt "installer"
4961
  msgid "Renewal fee \"%s\" for category \"%s\""
4962
  msgstr "Comisión de renovación \"%s\" para categoría \"%s\""
4963
 
4964
- #: core/installer.php:667
4965
  msgctxt "installer"
4966
  msgid "Listing upgrade to featured"
4967
  msgstr "Mejora a Destacado"
4968
 
4969
- #: core/installer.php:909
4970
  msgid "Business Directory - Manual Upgrade Required"
4971
  msgstr "Business Directory - Actualización Manual Requerida"
4972
 
4973
- #: core/installer.php:911
4974
  msgid ""
4975
  "Business Directory features are currently disabled because the plugin needs "
4976
  "to perform a manual upgrade before continuing."
@@ -4978,15 +5156,15 @@ msgstr ""
4978
  "Las características de Business Directory se encuentran deshabitadas pues es "
4979
  "necesario realizar una actualización manual antes de continuar."
4980
 
4981
- #: core/installer.php:913
4982
  msgid "Perform Manual Upgrade"
4983
  msgstr "Realizar Actualización Manual"
4984
 
4985
- #: core/installer.php:929 core/installer.php:930 core/installer.php:941
4986
  msgid "Business Directory - Manual Upgrade"
4987
  msgstr "Business Directory - Actualización Manual"
4988
 
4989
- #: core/installer.php:945
4990
  msgid ""
4991
  "Business Directory features are currently disabled because the plugin needs "
4992
  "to perform a manual upgrade before it can be used."
@@ -4995,23 +5173,23 @@ msgstr ""
4995
  "necesario realizar una actualización manual antes de que el plugin pueda ser "
4996
  "utilizado."
4997
 
4998
- #: core/installer.php:947
4999
  msgid "Click \"Start Upgrade\" and wait until the process finishes."
5000
  msgstr ""
5001
  "Haga clic en \"Iniciar Actualización\" y espere hasta que el proceso "
5002
  "finalice."
5003
 
5004
- #: core/installer.php:950
5005
  msgctxt "manual-upgrade"
5006
  msgid "Start Upgrade"
5007
  msgstr "Iniciar Actualización"
5008
 
5009
- #: core/installer.php:952
5010
  msgctxt "manual-upgrade"
5011
  msgid "Pause Upgrade"
5012
  msgstr "Detener Actualización"
5013
 
5014
- #: core/installer.php:958
5015
  msgctxt "manual-upgrade"
5016
  msgid ""
5017
  "The upgrade was sucessfully performed. Business Directory Plugin is now "
@@ -5020,7 +5198,7 @@ msgstr ""
5020
  "La actualización fue ejecutada con éxito. Business Directory Plugin ahora se "
5021
  "encienta disponible para su uso."
5022
 
5023
- #: core/installer.php:961
5024
  msgctxt "manual-upgrade"
5025
  msgid "Go to \"Directory Admin\""
5026
  msgstr "Ir a \"Administración del Directorio\""
@@ -5097,12 +5275,7 @@ msgctxt "licensing"
5097
  msgid "Could not deactivate license: %s."
5098
  msgstr "No se pudo desactivar la licencia: %s."
5099
 
5100
- #: core/licensing.php:350
5101
- msgctxt "licensing"
5102
- msgid "License deactivated"
5103
- msgstr "Licencia desactivada"
5104
-
5105
- #: core/payment.php:89
5106
  msgctxt "payments-api"
5107
  msgid ""
5108
  "You are offering featured listings but have payments turned off. Go to <a "
@@ -5115,7 +5288,7 @@ msgstr ""
5115
  "de pago. Hasta tanto la opción de <i>Mejorar a Destacado</i> estará "
5116
  "deshabilitada."
5117
 
5118
- #: core/payment.php:107
5119
  msgctxt "payments-api"
5120
  msgid ""
5121
  "The <b>%s</b> gateway is active but not properly configured. The gateway "
@@ -5127,7 +5300,7 @@ msgstr ""
5127
  "siguientes problemas: <b>%s</b>.<br/> Revise sus <a href=\"%s"
5128
  "\">configuraciones de pago</a>."
5129
 
5130
- #: core/payment.php:117
5131
  msgctxt "admin"
5132
  msgid ""
5133
  "You have payments turned on but no gateway is active and properly "
@@ -5140,7 +5313,7 @@ msgstr ""
5140
  "para cambiar las configuraciones de pago. Hasta tanto, el Directorio operará "
5141
  "en <i>Modo Gratuito</i>."
5142
 
5143
- #: core/payment.php:121
5144
  msgid ""
5145
  "BD detected PayFast and another gateway were enabled. This setup is not "
5146
  "recommended due to PayFast supporting only ZAR and the other gateways not "
@@ -5150,7 +5323,7 @@ msgstr ""
5150
  "habilitadas. Esta configuración no es recomendada pues PayFast únicamente "
5151
  "soporta la moneda ZAR y las demás pasarelas no la soportan."
5152
 
5153
- #: core/payment.php:125
5154
  msgid ""
5155
  "You have recurring renewal of listing fees enabled but the payment gateways "
5156
  "installed don't support recurring payments. Until a gateway that supports "
@@ -5162,37 +5335,44 @@ msgstr ""
5162
  "recurrentes. Hasta tanto una pasarela que soporte pagos recurrentes (como "
5163
  "PayPal) sea habilitada las renovaciones automáticas estarán deshabilitadas."
5164
 
5165
- #: core/payment.php:158
 
 
 
 
 
 
 
5166
  msgctxt "payments-api"
5167
  msgid "Checkout"
5168
  msgstr "Pago"
5169
 
5170
- #: core/payment.php:159
5171
  msgctxt "payments-api"
5172
  msgid "Pay %1$s through %2$s"
5173
  msgstr "Pagar %1$s a través de %2$s"
5174
 
5175
- #: core/payment.php:166
5176
  msgctxt "payments-api"
5177
  msgid "Your transaction has been approved."
5178
  msgstr "Su transacción ha sido aprobada."
5179
 
5180
- #: core/payment.php:352
5181
  msgctxt "payments"
5182
  msgid "Payment Details"
5183
  msgstr "Detalles del Pago"
5184
 
5185
- #: core/payment.php:379
5186
  msgctxt "checkout"
5187
  msgid "Payment Method"
5188
  msgstr "Método de Pago"
5189
 
5190
- #: core/payment.php:413
5191
  msgctxt "payment"
5192
  msgid "Return to Directory."
5193
  msgstr "Regresar al Directorio."
5194
 
5195
- #: core/payment.php:420
5196
  msgctxt "payments"
5197
  msgid ""
5198
  "Your payment is being processed by the payment gateway. Please reload this "
@@ -5203,7 +5383,7 @@ msgstr ""
5203
  "esta página en un momento para ver el estado actualizado del mismo o "
5204
  "contacte al administrador del sitio."
5205
 
5206
- #: core/payment.php:423
5207
  msgctxt "payments"
5208
  msgid ""
5209
  "The payment has been rejected by the payment gateway. Please contact the "
@@ -5215,12 +5395,12 @@ msgstr ""
5215
  "\"Cambiar Método de Pago\" para seleccionar un método distinto de pago e "
5216
  "intentar nuevamente."
5217
 
5218
- #: core/payment.php:424
5219
  msgctxt "payments"
5220
  msgid "Change Payment Method"
5221
  msgstr "Cambiar Método de Pago"
5222
 
5223
- #: core/payment.php:426
5224
  msgctxt "payments"
5225
  msgid ""
5226
  "The payment has been rejected by the payment gateway. Please contact the "
@@ -5229,17 +5409,17 @@ msgstr ""
5229
  "El pago ha sido rechazado por la pasarela de pago. Por favor contacte el "
5230
  "administrador del sitio si cree que ha ocurrido un error."
5231
 
5232
- #: core/payment.php:429
5233
  msgctxt "payments"
5234
  msgid "The payment has been canceled at your request."
5235
  msgstr "La transacción ha sido cancelada por solicitud suya."
5236
 
5237
- #: core/payment.php:527
5238
  msgctxt "admin"
5239
  msgid "Pending Abandonment"
5240
  msgstr "Casi abandonado"
5241
 
5242
- #: core/payment.php:532
5243
  msgctxt "admin"
5244
  msgid "Abandoned"
5245
  msgstr "Abandonados"
@@ -5293,22 +5473,22 @@ msgctxt "sort"
5293
  msgid "(Reset)"
5294
  msgstr "(Reestablecer)"
5295
 
5296
- #: core/themes.php:587
5297
  msgctxt "themes"
5298
  msgid "ZIP file is not a valid BD theme file."
5299
  msgstr ""
5300
 
5301
- #: core/themes.php:593
5302
  msgctxt "themes"
5303
  msgid "Could not create themes directory."
5304
  msgstr ""
5305
 
5306
- #: core/themes.php:601
5307
  msgctxt "themes"
5308
  msgid "Could not remove previous theme directory \"%s\"."
5309
  msgstr ""
5310
 
5311
- #: core/themes.php:607
5312
  msgctxt "themes"
5313
  msgid "Could not move new theme into theme directory."
5314
  msgstr ""
@@ -5321,54 +5501,54 @@ msgstr ""
5321
  "Los datos enviados via POST superan el valor máximo configurado en PHP. "
5322
  "Revise la directiva \"post_max_size\" de su configuración."
5323
 
5324
- #: core/utils.php:159
5325
  msgctxt "utils"
5326
  msgid "File size (%s) exceeds maximum file size of %s"
5327
  msgstr "El tamaño de archivo (%s) excede el tamaño máximo permitido de %s"
5328
 
5329
- #: core/utils.php:167
5330
  msgctxt "utils"
5331
  msgid "File size (%s) is inferior to the required minimum file size of %s"
5332
  msgstr "El tamaño de archivo (%s) es inferior al tamaño mínimo requerido de %s"
5333
 
5334
- #: core/utils.php:176 core/utils.php:183
5335
  msgctxt "utils"
5336
  msgid "File type \"%s\" is not allowed"
5337
  msgstr "El tipo de archivo \"%s\" no está permitido"
5338
 
5339
- #: core/utils.php:190
5340
  msgctxt "utils"
5341
  msgid "Unkown error while uploading file."
5342
  msgstr "Error desconocido mientras se subía el archivo."
5343
 
5344
- #: core/utils.php:209
5345
  msgctxt "utils"
5346
  msgid "Uploaded file is not an image"
5347
  msgstr "El archivo subido no es una imagen"
5348
 
5349
- #: core/utils.php:218
5350
  msgctxt "utils"
5351
  msgid "Image width (%s px) is inferior to minimum required width of %s px."
5352
  msgstr ""
5353
  "El ancho de la imagen (%s px) es inferior al mínimo requerido de %s px."
5354
 
5355
- #: core/utils.php:224
5356
  msgctxt "utils"
5357
  msgid "Image height (%s px) is inferior to minimum required height of %s px."
5358
  msgstr "El alto de la imagen (%s px) es inferior al mínimo requerido de %s px."
5359
 
5360
- #: core/utils.php:230
5361
  msgctxt "utils"
5362
  msgid "Image width (%s px) is greater than maximum allowed width of %s px."
5363
  msgstr ""
5364
  "El ancho de la imagen (%s px) es superior al máximo permitido de %s px."
5365
 
5366
- #: core/utils.php:236
5367
  msgctxt "utils"
5368
  msgid "Image height (%s px) is greater than maximum required height of %s px."
5369
  msgstr "El alto de la imagen (%s px) es superior al máximo permitido de %s px."
5370
 
5371
- #: core/utils.php:250
5372
  msgctxt "utils"
5373
  msgid "Error while uploading file"
5374
  msgstr "Ocurrió un error mientras se subía el archivo"
@@ -5612,52 +5792,52 @@ msgid ""
5612
  msgstr ""
5613
  "Ha ingresado como administrador. Todos los pasos de pago serán saltados."
5614
 
5615
- #: core/view-submit-listing.php:200
5616
  msgctxt "templates"
5617
  msgid "Please select a fee option for the \"%s\" category."
5618
  msgstr "Por favor elija una opción de pago para la categoría \"%s\"."
5619
 
5620
- #: core/view-submit-listing.php:268
5621
  msgctxt "templates"
5622
  msgid "Please agree to the Terms and Conditions."
5623
  msgstr "Por favor acepte los Términos y Condiciones."
5624
 
5625
- #: core/view-submit-listing.php:274
5626
  msgctxt "templates"
5627
  msgid "The reCAPTCHA wasn't entered correctly."
5628
  msgstr "El reCAPTCHA no fue ingresado correctamente."
5629
 
5630
- #: core/view-submit-listing.php:291
5631
  msgctxt "templates"
5632
  msgid "Read our Terms and Conditions"
5633
  msgstr "Lea nuestros Términos y Condiciones"
5634
 
5635
- #: core/view-submit-listing.php:296
5636
  msgctxt "templates"
5637
  msgid "Terms and Conditions:"
5638
  msgstr "Términos y Condiciones:"
5639
 
5640
- #: core/view-submit-listing.php:307
5641
  msgctxt "templates"
5642
  msgid "I agree to the Terms and Conditions"
5643
  msgstr "Acepto los Términos y Condiciones"
5644
 
5645
- #: core/view-submit-listing.php:444
5646
  msgctxt "listings"
5647
  msgid "Fee \"%s\" for category \"%s\"%s"
5648
  msgstr "Comisión \"%s\" para categoría \"%s\"%s"
5649
 
5650
- #: core/view-submit-listing.php:447
5651
  msgctxt "listings"
5652
  msgid "(recurring)"
5653
  msgstr "(recurrente)"
5654
 
5655
- #: core/view-submit-listing.php:457 core/view-upgrade-listing.php:54
5656
  msgctxt "submit"
5657
  msgid "Listing upgrade to featured"
5658
  msgstr "Mejora a Destacado"
5659
 
5660
- #: core/view-submit-listing.php:490
5661
  msgctxt "submit_state"
5662
  msgid "Invalid submit state."
5663
  msgstr "Solicitud inválida."
@@ -6217,12 +6397,18 @@ msgctxt "templates"
6217
  msgid "Images Allowed"
6218
  msgstr "Imágenes Permitidas"
6219
 
6220
- #: templates/parts/category-fee-selection.tpl.php:43
 
 
 
 
 
 
6221
  msgctxt "templates"
6222
  msgid "Unlimited"
6223
  msgstr "Ilimitado"
6224
 
6225
- #: templates/parts/category-fee-selection.tpl.php:45
6226
  msgctxt "templates"
6227
  msgid "%d day"
6228
  msgid_plural "%d days"
@@ -6577,6 +6763,18 @@ msgstr "D. Rodenbaugh"
6577
  msgid "http://businessdirectoryplugin.com"
6578
  msgstr "http://businessdirectoryplugin.com"
6579
 
 
 
 
 
 
 
 
 
 
 
 
 
6580
  #~ msgctxt "admin settings"
6581
  #~ msgid "Registration"
6582
  #~ msgstr "Registro"
@@ -6681,10 +6879,6 @@ msgstr "http://businessdirectoryplugin.com"
6681
  #~ msgid "Listing"
6682
  #~ msgstr "Listado"
6683
 
6684
- #~ msgctxt "admin transactions"
6685
- #~ msgid "Status"
6686
- #~ msgstr "Estado"
6687
-
6688
  #~ msgctxt "admin transactions"
6689
  #~ msgid "Amount"
6690
  #~ msgstr "Valor"
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"
22
  msgid "All categories"
23
  msgstr "Todas las categorías"
24
 
25
+ #: admin/class-admin-listings.php:114
26
  msgid "Listing Information"
27
  msgstr "Información del Listado"
28
 
29
+ #: admin/class-admin-listings.php:121
30
  msgctxt "admin"
31
  msgid "Listing Fields / Images"
32
  msgstr "Campos del Listado / Imágenes"
33
 
34
+ #: admin/class-admin-listings.php:132
35
  msgctxt "admin"
36
  msgid "Categories"
37
  msgstr "Categorías"
38
 
39
+ #: admin/class-admin-listings.php:133
40
  msgid "Payment Status"
41
  msgstr "Estado de Pago"
42
 
43
+ #: admin/class-admin-listings.php:134
44
  msgid "Featured (Sticky) Status"
45
  msgstr "Estado Destacado/Sticky"
46
 
47
+ #: admin/class-admin-listings.php:165
48
  msgctxt "admin"
49
  msgid "(Listing expired in this category)"
50
  msgstr "(El listado ha expirado en esta categoría)"
51
 
52
+ #: admin/class-admin-listings.php:183 admin/class-admin-listings.php:266
53
  msgid "Paid"
54
  msgstr "Pago"
55
 
56
+ #: admin/class-admin-listings.php:188
57
  msgid "Mark as"
58
  msgstr "Marcar como"
59
 
60
+ #: admin/class-admin-listings.php:197 admin/class-admin-listings.php:276
61
  msgid "Pending Upgrade"
62
  msgstr "Pendientes de Mejora"
63
 
64
+ #: admin/class-admin-listings.php:205 admin/listing-metabox.php:68
65
  msgid "Upgrade to %s"
66
  msgstr "Mejorar a %s"
67
 
68
+ #: admin/class-admin-listings.php:212 admin/listing-metabox.php:75
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"
76
 
77
+ #: admin/class-admin-listings.php:271
78
  msgid "Unpaid"
79
  msgstr "No pagado"
80
 
81
+ #: admin/class-admin-listings.php:281
82
  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"
227
  msgid "Uninstall"
228
  msgstr "Desinstalar"
229
 
230
+ #: admin/class-admin.php:410
231
  #: admin/templates/listing-metabox-categories.tpl.php:69
232
  msgctxt "admin infometabox"
233
  msgid "never"
234
  msgstr "nunca"
235
 
236
+ #: admin/class-admin.php:492
237
  msgctxt "admin"
238
  msgid "The listing has been published."
239
  msgid_plural "The listings have been published."
240
  msgstr[0] "El listado ha sido publicado."
241
  msgstr[1] "Los listados han sido publicados."
242
 
243
+ #: admin/class-admin.php:505
244
  msgctxt "admin"
245
  msgid "The listing status has been set as paid."
246
  msgid_plural "The listings status has been set as paid."
247
  msgstr[0] "El listado se ha marcado como pagado."
248
  msgstr[1] "Los listados se han marcado como pagados."
249
 
250
+ #: admin/class-admin.php:517
251
  msgctxt "admin"
252
  msgid "The listing has been modified."
253
  msgid_plural "The listings have been modified."
254
  msgstr[0] "El listado ha sido modificado."
255
  msgstr[1] "Los listados han sido modificados."
256
 
257
+ #: admin/class-admin.php:530
258
  msgctxt "admin"
259
  msgid "The listing has been upgraded."
260
  msgid_plural "The listings have been upgraded."
261
  msgstr[0] "El listado ha sido mejorado."
262
  msgstr[1] "Los listados han sido mejorados."
263
 
264
+ #: admin/class-admin.php:542
265
  msgctxt "admin"
266
  msgid "The listing has been downgraded."
267
  msgid_plural "The listings have been downgraded."
268
  msgstr[0] "El listado ha sido degradado."
269
  msgstr[1] "Los listados han sido degradados."
270
 
271
+ #: admin/class-admin.php:554
272
  msgctxt "admin"
273
  msgid "The transaction has been approved."
274
  msgstr "La transacción ha sido aprobada."
275
 
276
+ #: admin/class-admin.php:562
277
  msgctxt "admin"
278
  msgid "The transaction has been rejected."
279
  msgstr "La transacción ha sido rechazada."
280
 
281
+ #: admin/class-admin.php:568
282
  msgctxt "admin"
283
  msgid "The fee was successfully assigned."
284
  msgstr "La comisión se asignó satisfactoriamente."
285
 
286
+ #: admin/class-admin.php:577
287
  msgctxt "admin"
288
  msgid "Listing was renewed."
289
  msgid_plural "Listings were renewed."
290
  msgstr[0] "El listado ha sido renovado."
291
  msgstr[1] "Los listados fueron renovados."
292
 
293
+ #: admin/class-admin.php:584
294
  msgctxt "admin"
295
  msgid "Renewal email sent."
296
  msgstr "Mensaje de correo electrónico de renovación enviado."
297
 
298
+ #: admin/class-admin.php:618
299
  msgctxt "admin category id"
300
  msgid "ID"
301
  msgstr "ID"
302
 
303
+ #: admin/class-admin.php:620 admin/class-admin.php:626
304
  msgctxt "admin"
305
  msgid "Listing Count"
306
  msgstr "Conteo de Listados"
307
 
308
+ #: admin/class-admin.php:735
309
  msgctxt "admin"
310
  msgid ""
311
  "<b>Business Directory Plugin</b> requires fields with the following "
314
  "<b>Business Directory Plugin</b> requiere campos con las siguientes "
315
  "asociaciones para funcionar correctamente: <b>%s</b>."
316
 
317
+ #: admin/class-admin.php:737
318
  msgctxt "admin"
319
  msgid ""
320
  "<b>Business Directory Plugin</b> requires a field with a <b>%s</b> "
323
  "<b>Business Directory Plugin</b> requiere un campo con la asociación <b>%s</"
324
  "b> para funcionar correctamente."
325
 
326
+ #: admin/class-admin.php:741
327
  msgctxt "admin"
328
  msgid ""
329
  "You can create these custom fields by yourself inside \"Manage Form Fields\" "
332
  "Puede crear estos campos usted mismo en \"Administrar Campos de Formulario\" "
333
  "o puede dejar que Business Directory haga esto por usted automáticamente."
334
 
335
+ #: admin/class-admin.php:745
336
  msgctxt "admin"
337
  msgid "Go to \"Manage Form Fields\""
338
  msgstr "Ir a \"Administrar Campos de Formulario\""
339
 
340
+ #: admin/class-admin.php:748
341
  msgctxt "admin"
342
  msgid "Create these required fields for me"
343
  msgstr "Crear estos campos requeridos por mi"
344
 
345
+ #: admin/class-admin.php:757
346
  msgctxt "admin"
347
  msgid ""
348
  "<b>Business Directory Plugin</b> requires a page with the "
351
  "<b>Business Directory Plugin</b> requiere una página con el shortcode "
352
  "<tt>[businessdirectory]</tt> para funcionar adecuadamente."
353
 
354
+ #: admin/class-admin.php:759
355
  msgctxt "admin"
356
  msgid ""
357
  "You can create this page by yourself or let Business Directory do this for "
360
  "Puede crear esta página usted mismo o dejar que Business Directory lo haga "
361
  "por usted automáticamente."
362
 
363
+ #: admin/class-admin.php:763
364
  msgctxt "admin"
365
  msgid "Create required pages for me"
366
  msgstr "Crear las páginas requeridas por mi"
367
 
368
+ #: admin/class-admin.php:803
369
  msgctxt "admin compat"
370
  msgid "Installed: %s"
371
  msgstr "Instalado: %s"
372
 
373
+ #: admin/class-admin.php:803
374
  msgctxt "admin compat"
375
  msgid "N/A"
376
  msgstr "N/A"
377
 
378
+ #: admin/class-admin.php:806
379
  msgctxt "admin compat"
380
  msgid "Required: %s"
381
  msgstr "Requerido: %s"
382
 
383
+ #: admin/class-admin.php:819
384
  msgctxt "admin compat"
385
  msgid ""
386
  "Business Directory has detected some incompatible premium module versions "
389
  "Business Directory ha detectado algunas versiones incompatibles de módulos "
390
  "instaladas."
391
 
392
+ #: admin/class-admin.php:821
393
  msgctxt "admin compat"
394
  msgid ""
395
  "Please upgrade to the required versions indicated below to make sure "
398
  "Por favor actualice a las versiones requeridas indicadas abajo para "
399
  "asegurarse de que todo funcione correctamente."
400
 
401
+ #: admin/class-admin.php:836
402
  msgctxt "admin"
403
  msgid ""
404
  "We noticed you want your Business Directory users to register before posting "
427
  msgid "There are no images currently attached to the listing."
428
  msgstr "No hay imágenes actualmente asociadas al listado."
429
 
430
+ #: admin/class-themes-admin.php:44
431
  msgctxt "themes"
432
  msgid "Directory Themes"
433
  msgstr ""
434
 
435
+ #: admin/class-themes-admin.php:45
436
  msgctxt "themes"
437
  msgid "Directory Themes %s"
438
  msgstr ""
439
 
440
+ #: admin/class-themes-admin.php:100
441
  msgctxt "themes"
442
  msgid "Could not change the active theme to \"%s\"."
443
  msgstr ""
444
 
445
+ #: admin/class-themes-admin.php:147
446
  msgctxt "themes"
447
  msgid "Active theme changed to \"%s\"."
448
  msgstr ""
449
 
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 ""
533
+
534
  #: admin/csv-export.php:136
535
  msgctxt "admin csv-export"
536
  msgid "Could not create a temporary directory for handling this CSV export."
619
  msgid "fees"
620
  msgstr "comisiones"
621
 
622
+ #: admin/fees.php:19
623
  msgctxt "fees admin"
624
+ msgid "There are no fees right now. You can <a>create one</a>, if you want."
625
+ msgstr ""
626
+
627
+ #: admin/fees.php:25 admin/fees.php:260
628
+ #, fuzzy
629
+ msgctxt "fees admin"
630
+ msgid "Active"
631
+ msgstr "Activos únicamente"
632
+
633
+ #: admin/fees.php:28 admin/fees.php:258
634
+ #, fuzzy
635
+ msgctxt "fees admin"
636
+ msgid "Not Available"
637
+ msgstr "Casillas de imagen disponibles:"
638
+
639
+ #: admin/fees.php:31 admin/fees.php:255
640
+ #, fuzzy
641
+ msgctxt "fees admin"
642
+ msgid "Disabled"
643
+ msgstr "Desactivar Comisión"
644
 
645
+ #: admin/fees.php:39
646
+ msgctxt "fees admin"
647
+ msgid ""
648
+ "There are no \"%s\" fees right now. You can <a>create one</a>, if you want."
649
+ msgstr ""
650
+
651
+ #: admin/fees.php:56
652
+ #, fuzzy
653
+ msgctxt "admin fees table"
654
+ msgid "All"
655
+ msgstr "Todos"
656
+
657
+ #: admin/fees.php:68
658
+ #, fuzzy
659
+ msgctxt "admin fees table"
660
+ msgid "Active"
661
+ msgstr "Activos únicamente"
662
+
663
+ #: admin/fees.php:78
664
+ #, fuzzy
665
+ msgctxt "admin fees table"
666
+ msgid "Not Available"
667
+ msgstr "Casillas de imagen disponibles:"
668
+
669
+ #: admin/fees.php:85
670
+ #, fuzzy
671
+ msgctxt "admin fees table"
672
+ msgid "Disabled"
673
+ msgstr "Desactivar Comisión"
674
+
675
+ #: admin/fees.php:94
676
  msgctxt "fees admin"
677
  msgid "Label"
678
  msgstr "Nombre"
679
 
680
+ #: admin/fees.php:95
681
  msgctxt "fees admin"
682
  msgid "Amount"
683
  msgstr "Precio"
684
 
685
+ #: admin/fees.php:96
686
  msgctxt "fees admin"
687
  msgid "Duration"
688
  msgstr "Duración"
689
 
690
+ #: admin/fees.php:97
691
  msgctxt "fees admin"
692
  msgid "Images"
693
  msgstr "No. de Imágenes"
694
 
695
+ #: admin/fees.php:98
696
+ #, fuzzy
697
  msgctxt "fees admin"
698
+ msgid "Featured/Sticky"
699
+ msgstr "Estado Destacado/Sticky"
700
 
701
+ #: admin/fees.php:102
702
+ #, fuzzy
703
  msgctxt "fees admin"
704
+ msgid "Status"
705
+ msgstr "Estado"
 
 
 
 
706
 
707
+ #: admin/fees.php:155
708
  msgctxt "fees admin"
709
+ msgid ""
710
+ "This is the default free plan for your directory. You can't delete it and "
711
+ "it's always free, but you can edit the name and other settings. It's only "
712
+ "available when the directory is in Free mode. You can always create other "
713
+ "fee plans, including ones for 0.00 (free) if you wish."
714
  msgstr ""
715
 
716
+ #: admin/fees.php:187
717
  msgctxt "fees admin"
718
  msgid "Edit"
719
  msgstr "Editar"
720
 
721
+ #: admin/fees.php:197
722
  msgctxt "fees admin"
723
  msgid "Disable"
724
  msgstr ""
725
 
726
+ #: admin/fees.php:201
727
+ msgctxt "fees admin"
728
+ msgid "Enable"
729
+ msgstr ""
730
+
731
+ #: admin/fees.php:205
732
  msgctxt "fees admin"
733
  msgid "Delete"
734
  msgstr "Eliminar"
735
 
736
+ #: admin/fees.php:226
737
  msgctxt "fees admin"
738
  msgid "Forever"
739
  msgstr "Para siempre"
740
 
741
+ #: admin/fees.php:227
742
  msgctxt "fees admin"
743
  msgid "%d day"
744
  msgid_plural "%d days"
745
  msgstr[0] "%d día"
746
  msgstr[1] "%d días"
747
 
748
+ #: admin/fees.php:231
749
  msgctxt "fees admin"
750
  msgid "%d image"
751
  msgid_plural "%d images"
752
  msgstr[0] "%d imagen"
753
  msgstr[1] "%d imágenes"
754
 
755
+ #: admin/fees.php:236
756
  msgctxt "fees admin"
757
  msgid "All categories"
758
  msgstr "Todas las categorías"
759
 
760
+ #: admin/fees.php:250
761
+ msgctxt "fees admin"
762
+ msgid "Yes"
763
+ msgstr ""
764
+
765
+ #: admin/fees.php:250
766
+ #, fuzzy
767
+ msgctxt "fees admin"
768
+ msgid "No"
769
+ msgstr "Nov"
770
+
771
+ #: admin/fees.php:285
772
+ #, fuzzy
773
+ msgctxt "fees admin"
774
+ msgid "Fee enabled."
775
+ msgstr "Comisión eliminada."
776
+
777
+ #: admin/fees.php:293
778
+ #, fuzzy
779
+ msgctxt "fees admin"
780
+ msgid "Fee disabled."
781
+ msgstr "Comisión eliminada."
782
+
783
+ #: admin/fees.php:318
784
  msgctxt "fees order"
785
  msgid "Label"
786
  msgstr "Nombre"
787
 
788
+ #: admin/fees.php:319
789
  msgctxt "fees order"
790
  msgid "Amount"
791
  msgstr "Precio"
792
 
793
+ #: admin/fees.php:320
794
  msgctxt "fees order"
795
  msgid "Duration"
796
  msgstr "Duración"
797
 
798
+ #: admin/fees.php:321
799
  msgctxt "fees order"
800
  msgid "Images"
801
  msgstr "No. de Imágenes"
802
 
803
+ #: admin/fees.php:322
804
  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."
812
 
813
+ #: admin/fees.php:364
814
  msgctxt "fees admin"
815
  msgid "Fee deleted."
816
  msgstr "Comisión eliminada."
1731
  msgstr "Número de imágenes permitidas"
1732
 
1733
  #: admin/templates/fees-addoredit.tpl.php:94
1734
+ #, fuzzy
1735
  msgctxt "fees admin"
1736
+ msgid "Is featured listing/sticky?"
1737
+ msgstr "Listados Destacados"
1738
 
1739
+ #: admin/templates/fees-addoredit.tpl.php:102
1740
+ msgctxt "fees admin"
1741
+ msgid ""
1742
+ "This floats the listing to the top of search results and browsing the "
1743
+ "directory when the user buys this plan."
1744
+ msgstr ""
1745
+
1746
+ #: admin/templates/fees-addoredit.tpl.php:107
1747
  msgctxt "fees admin"
1748
  msgid "Apply to category"
1749
  msgstr "Aplicar a categoría"
1750
 
1751
+ #: admin/templates/fees-addoredit.tpl.php:111
1752
+ #: admin/templates/fees-addoredit.tpl.php:114
1753
  msgctxt "fees admin"
1754
  msgid "* All Categories *"
1755
  msgstr "* Todas las Categorías *"
1756
 
1757
+ #: admin/templates/fees-addoredit.tpl.php:134
1758
  msgctxt "fees admin"
1759
  msgid "Add Fee"
1760
  msgstr "Agregar Comisión"
1761
 
1762
+ #: admin/templates/fees-addoredit.tpl.php:134
1763
  msgctxt "fees admin"
1764
  msgid "Update Fee"
1765
  msgstr "Actualizar Comisión"
1808
  "Para poder utilizar comisiones debe ir a la página de <a>Configuraciones - "
1809
  "Configuración de Pagos</a> y habilitar \"Activar Pagos?\"."
1810
 
1811
+ #: admin/templates/fees.tpl.php:24
1812
  msgctxt "fees admin"
1813
  msgid "Order fees on the frontend by:"
1814
  msgstr "Ordenar comisiones del lado del usuario por:"
1815
 
1816
+ #: admin/templates/fees.tpl.php:32
1817
  msgctxt "fees admin"
1818
  msgid "↑ Ascending"
1819
  msgstr "Ascendente"
1820
 
1821
+ #: admin/templates/fees.tpl.php:32
1822
  msgctxt "fees admin"
1823
  msgid "↓ Descending"
1824
  msgstr "Descendente"
1825
 
1826
+ #: admin/templates/fees.tpl.php:38
1827
  msgctxt "fees admin"
1828
  msgid "Drag and drop to re-order fees."
1829
  msgstr "Arrastre y suelte para reordenar las comisiones."
1830
 
1831
+ #: admin/templates/fees.tpl.php:54
1832
+ msgctxt "fees admin"
1833
+ msgid ""
1834
+ "These are all of the fee plans displayed to the user when they place a "
1835
+ "listing. Your current mode of \"%s\" restricts what you see here. Those on "
1836
+ "the <a>Not Available</a> filter will become active when you change the "
1837
+ "payment mode."
1838
+ msgstr ""
1839
+
1840
+ #: admin/templates/fees.tpl.php:57 admin/templates/fees.tpl.php:63
1841
+ #: admin/templates/fees.tpl.php:77
1842
+ #, fuzzy
1843
+ msgctxt "fees admin"
1844
+ msgid "Paid"
1845
+ msgstr "Pago"
1846
+
1847
+ #: admin/templates/fees.tpl.php:57 admin/templates/fees.tpl.php:63
1848
+ #: admin/templates/fees.tpl.php:77
1849
+ #, fuzzy
1850
+ msgctxt "fees admin"
1851
+ msgid "Free"
1852
+ msgstr "Gratuito"
1853
+
1854
+ #: admin/templates/fees.tpl.php:60
1855
+ msgctxt "fees admin"
1856
+ msgid ""
1857
+ "These are all of the fee plans that aren't available because you're in \"%s"
1858
+ "\" mode. Those on the Active filter will become Not Available when you "
1859
+ "change the payment mode."
1860
+ msgstr ""
1861
+
1862
+ #: admin/templates/fees.tpl.php:66
1863
+ msgctxt "fees admin"
1864
+ msgid ""
1865
+ "These fee plans were disabled by the admin and will not show to the end user "
1866
+ "regardless of mode until you enable them."
1867
+ msgstr ""
1868
+
1869
+ #: admin/templates/fees.tpl.php:74
1870
+ msgctxt "fees admin"
1871
+ msgid ""
1872
+ "These are all of the fee plans you have configured. Not all of them are "
1873
+ "available for the current mode (currently set to \"%s\"). To see the fee "
1874
+ "plans for this mode click <a>Active</a>."
1875
+ msgstr ""
1876
+
1877
+ #: admin/templates/fees.tpl.php:89 admin/templates/sidebar.tpl.php:13
1878
  msgctxt "admin sidebar"
1879
  msgid "PayPal Gateway Module"
1880
  msgstr "Módulo pasarela de pago PayPal"
1881
 
1882
+ #: admin/templates/fees.tpl.php:90 admin/templates/sidebar.tpl.php:14
1883
  msgctxt "admin sidebar"
1884
  msgid "2Checkout Gateway Module"
1885
  msgstr "Módulo pasarela de pago 2Checkout"
1886
 
1887
+ #: admin/templates/fees.tpl.php:91 admin/templates/sidebar.tpl.php:5
1888
  msgctxt "admin sidebar"
1889
  msgid "PayFast Payment Module"
1890
  msgstr "Módulo pasarela de pago PayFast"
1891
 
1892
+ #: admin/templates/fees.tpl.php:92 admin/templates/sidebar.tpl.php:6
1893
  msgctxt "admin sidebar"
1894
  msgid "Stripe Payment Module"
1895
  msgstr "Módulo pasarela de pago Stripe"
1896
 
1897
+ #: admin/templates/fees.tpl.php:102
1898
  msgctxt "admin templates"
1899
  msgid ""
1900
  "It does not appear you have any of the payment gateway modules enabled. "
1908
  "cobrar por los listados. Para comprar pasarelas adicionales utilice los "
1909
  "botones abajo o visite %s."
1910
 
1911
+ #: admin/templates/fees.tpl.php:118
1912
  msgctxt "admin templates"
1913
  msgid "Already installed."
1914
  msgstr "Ya instalado."
1915
 
1916
+ #: admin/templates/fees.tpl.php:123
1917
  msgctxt "admin templates"
1918
  msgid ""
1919
  "You can buy the <a>%s</a> to add <a>%s</a> as a payment option for your "
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"
2637
  msgid "Active:"
2638
  msgstr ""
2639
 
2640
+ #: admin/templates/themes-item.tpl.php:13
2641
  msgctxt "themes"
2642
  msgid "Activate"
2643
  msgstr ""
2644
 
2645
+ #: admin/templates/themes-item.tpl.php:33
2646
  msgctxt "themes"
2647
  msgid "Version:"
2648
  msgstr ""
2649
 
2650
+ #: admin/templates/themes-item.tpl.php:36
2651
  msgctxt "themes"
2652
  msgid "Author:"
2653
  msgstr ""
2654
 
2655
+ #: admin/templates/themes-licenses.tpl.php:24
2656
+ #, fuzzy
2657
+ msgctxt "themes"
2658
+ msgid "Deactivate License"
2659
+ msgstr "Desactivar Licencia"
2660
+
2661
+ #: admin/templates/themes-licenses.tpl.php:27
2662
+ #, fuzzy
2663
+ msgctxt "themes"
2664
+ msgid "Deactivating license..."
2665
+ msgstr "Desactivando licencia..."
2666
+
2667
+ #: admin/templates/themes-licenses.tpl.php:29
2668
+ #, fuzzy
2669
+ msgctxt "themes"
2670
+ msgid "Activate License"
2671
+ msgstr "Activar Licencia"
2672
+
2673
+ #: admin/templates/themes-licenses.tpl.php:30
2674
+ #, fuzzy
2675
+ msgctxt "themes"
2676
+ msgid "Activating license..."
2677
+ msgstr "Activando licencia..."
2678
+
2679
  #: admin/templates/transactions.tpl.php:2
2680
  msgctxt "admin transactions"
2681
  msgid "Transactions"
2882
  msgid "Listing category \"%s\" does not exist"
2883
  msgstr "La categoría \"%s\" no existe"
2884
 
2885
+ #: core/class-fee-plan.php:46
2886
  msgctxt "fees-api"
2887
  msgid "Fee label is required."
2888
  msgstr "El nombre de la Comisión es requerido."
2889
 
2890
+ #: core/class-fee-plan.php:49
2891
  msgctxt "fees-api"
2892
  msgid "Fee amount must be a non-negative decimal number."
2893
  msgstr "El precio de la comisión de be ser un número decimal no negativo."
2894
 
2895
+ #: core/class-fee-plan.php:52
2896
  msgctxt "fees-api"
2897
  msgid "Fee must apply to at least one category."
2898
  msgstr "La comisión debe aplicar al menos a una categoría."
2899
 
2900
+ #: core/class-fee-plan.php:57
2901
  msgctxt "fees-api"
2902
  msgid "Fee listing duration must be a number less than 10 years (3650 days)."
2903
  msgstr ""
2938
  msgid "\"%s\" is an invalid field type for this association."
2939
  msgstr "\"%s\" es un tipo de campo inválido para esta asociación."
2940
 
2941
+ #: core/class-form-field.php:531
2942
  msgctxt "form-fields-api"
2943
  msgid "Invalid field ID"
2944
  msgstr "ID de campo inválido"
2945
 
2946
+ #: core/class-form-field.php:540
2947
  msgctxt "form-fields api"
2948
  msgid ""
2949
  "This form field can't be deleted because it is required for the plugin to "
2952
  "Este campo de formulario no puede eliminarse porque es requerido para el "
2953
  "funcionamiento del plugin."
2954
 
2955
+ #: core/class-form-field.php:552
2956
  msgctxt "form-fields-api"
2957
  msgid "An error occurred while trying to delete this field."
2958
  msgstr "Un error ocurrió mientras se trataba de eliminar este campo."
5067
  msgid "Destination dir \"%s\" is not writable."
5068
  msgstr "El directorio de destino \"%s\" no se puede escribir."
5069
 
5070
+ #: core/helpers/class-themes-updater.php:125
5071
  msgctxt "themes"
5072
  msgid "Updating theme..."
5073
  msgstr ""
5074
 
5075
+ #: core/helpers/class-themes-updater.php:126
5076
  msgctxt "themes"
5077
  msgid "Theme updated."
5078
  msgstr ""
5079
 
5080
+ #: core/helpers/class-themes-updater.php:128
5081
  msgctxt "themes"
5082
  msgid "New version available (<b>%s</b>). <a>Update now.</a>"
5083
  msgstr ""
5084
 
5085
+ #: core/helpers/class-themes-updater.php:156
5086
  msgctxt "themes"
5087
  msgid "Could not update theme: %s"
5088
  msgstr ""
5089
 
5090
+ #: core/helpers/class-themes-updater.php:162
5091
  msgctxt "themes"
5092
  msgid "Theme was updated sucessfully."
5093
  msgstr ""
5094
 
5095
+ #: core/installer.php:42
5096
  msgctxt "default category name"
5097
  msgid "General"
5098
  msgstr "General"
5099
 
5100
+ #: core/installer.php:50
5101
+ #, fuzzy
5102
+ msgctxt "installer"
5103
+ msgid "Default Fee"
5104
+ msgstr "Eliminar Comisión"
5105
+
5106
+ #: core/installer.php:484
5107
  msgctxt "installer"
5108
  msgid ""
5109
  "<b>Business Directory Plugin - Regions Module</b> was disabled because it is "
5114
  "es incompatible con la versión actual de Business Directory. Por favor "
5115
  "actualice el módulode Regions."
5116
 
5117
+ #: core/installer.php:550
5118
  msgctxt "installer"
5119
  msgid "Cleaning up listing fees information... %d/%d"
5120
  msgstr "Actualizando información de comisiones de listados... %d/%d"
5121
 
5122
+ #: core/installer.php:600
5123
  msgctxt "installer"
5124
  msgid "Migrating previous transactions to new Payments API... %d/%d"
5125
  msgstr "Migrando transacciones anteriores a la nueva API de pagos... %d/%d"
5126
 
5127
+ #: core/installer.php:629
5128
  msgctxt "installer"
5129
  msgid "Initial listing payment (BD < 3.4)"
5130
  msgstr "Pago inicial de listado (BD < 3.4)"
5131
 
5132
+ #: core/installer.php:640
5133
  msgctxt "installer"
5134
  msgid "Listing edit payment (BD < 3.4)"
5135
  msgstr "Pago por edición de listado (BD < 3.4)"
5136
 
5137
+ #: core/installer.php:661
5138
  msgctxt "installer"
5139
  msgid "Renewal fee \"%s\" for category \"%s\""
5140
  msgstr "Comisión de renovación \"%s\" para categoría \"%s\""
5141
 
5142
+ #: core/installer.php:680
5143
  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
  "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
  "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
  "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\""
5275
  msgid "Could not deactivate license: %s."
5276
  msgstr "No se pudo desactivar la licencia: %s."
5277
 
5278
+ #: core/payment.php:91
 
 
 
 
 
5279
  msgctxt "payments-api"
5280
  msgid ""
5281
  "You are offering featured listings but have payments turned off. Go to <a "
5288
  "de pago. Hasta tanto la opción de <i>Mejorar a Destacado</i> estará "
5289
  "deshabilitada."
5290
 
5291
+ #: core/payment.php:109
5292
  msgctxt "payments-api"
5293
  msgid ""
5294
  "The <b>%s</b> gateway is active but not properly configured. The gateway "
5300
  "siguientes problemas: <b>%s</b>.<br/> Revise sus <a href=\"%s"
5301
  "\">configuraciones de pago</a>."
5302
 
5303
+ #: core/payment.php:119
5304
  msgctxt "admin"
5305
  msgid ""
5306
  "You have payments turned on but no gateway is active and properly "
5313
  "para cambiar las configuraciones de pago. Hasta tanto, el Directorio operará "
5314
  "en <i>Modo Gratuito</i>."
5315
 
5316
+ #: core/payment.php:123
5317
  msgid ""
5318
  "BD detected PayFast and another gateway were enabled. This setup is not "
5319
  "recommended due to PayFast supporting only ZAR and the other gateways not "
5323
  "habilitadas. Esta configuración no es recomendada pues PayFast únicamente "
5324
  "soporta la moneda ZAR y las demás pasarelas no la soportan."
5325
 
5326
+ #: core/payment.php:127
5327
  msgid ""
5328
  "You have recurring renewal of listing fees enabled but the payment gateways "
5329
  "installed don't support recurring payments. Until a gateway that supports "
5335
  "recurrentes. Hasta tanto una pasarela que soporte pagos recurrentes (como "
5336
  "PayPal) sea habilitada las renovaciones automáticas estarán deshabilitadas."
5337
 
5338
+ #: core/payment.php:135
5339
+ msgid ""
5340
+ "You have payments enabled but there are no fees available. Users won't be "
5341
+ "able to post listings. Please <a href=\"fees\">create some fees</a> or <a "
5342
+ "href=\"settings\">configure the Directory</a> to operate in \"Free Mode\"."
5343
+ msgstr ""
5344
+
5345
+ #: core/payment.php:169
5346
  msgctxt "payments-api"
5347
  msgid "Checkout"
5348
  msgstr "Pago"
5349
 
5350
+ #: core/payment.php:170
5351
  msgctxt "payments-api"
5352
  msgid "Pay %1$s through %2$s"
5353
  msgstr "Pagar %1$s a través de %2$s"
5354
 
5355
+ #: core/payment.php:177
5356
  msgctxt "payments-api"
5357
  msgid "Your transaction has been approved."
5358
  msgstr "Su transacción ha sido aprobada."
5359
 
5360
+ #: core/payment.php:363
5361
  msgctxt "payments"
5362
  msgid "Payment Details"
5363
  msgstr "Detalles del Pago"
5364
 
5365
+ #: core/payment.php:390
5366
  msgctxt "checkout"
5367
  msgid "Payment Method"
5368
  msgstr "Método de Pago"
5369
 
5370
+ #: core/payment.php:424
5371
  msgctxt "payment"
5372
  msgid "Return to Directory."
5373
  msgstr "Regresar al Directorio."
5374
 
5375
+ #: core/payment.php:431
5376
  msgctxt "payments"
5377
  msgid ""
5378
  "Your payment is being processed by the payment gateway. Please reload this "
5383
  "esta página en un momento para ver el estado actualizado del mismo o "
5384
  "contacte al administrador del sitio."
5385
 
5386
+ #: core/payment.php:434
5387
  msgctxt "payments"
5388
  msgid ""
5389
  "The payment has been rejected by the payment gateway. Please contact the "
5395
  "\"Cambiar Método de Pago\" para seleccionar un método distinto de pago e "
5396
  "intentar nuevamente."
5397
 
5398
+ #: core/payment.php:435
5399
  msgctxt "payments"
5400
  msgid "Change Payment Method"
5401
  msgstr "Cambiar Método de Pago"
5402
 
5403
+ #: core/payment.php:437
5404
  msgctxt "payments"
5405
  msgid ""
5406
  "The payment has been rejected by the payment gateway. Please contact the "
5409
  "El pago ha sido rechazado por la pasarela de pago. Por favor contacte el "
5410
  "administrador del sitio si cree que ha ocurrido un error."
5411
 
5412
+ #: core/payment.php:440
5413
  msgctxt "payments"
5414
  msgid "The payment has been canceled at your request."
5415
  msgstr "La transacción ha sido cancelada por solicitud suya."
5416
 
5417
+ #: core/payment.php:538
5418
  msgctxt "admin"
5419
  msgid "Pending Abandonment"
5420
  msgstr "Casi abandonado"
5421
 
5422
+ #: core/payment.php:543
5423
  msgctxt "admin"
5424
  msgid "Abandoned"
5425
  msgstr "Abandonados"
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 ""
5501
  "Los datos enviados via POST superan el valor máximo configurado en PHP. "
5502
  "Revise la directiva \"post_max_size\" de su configuración."
5503
 
5504
+ #: core/utils.php:164
5505
  msgctxt "utils"
5506
  msgid "File size (%s) exceeds maximum file size of %s"
5507
  msgstr "El tamaño de archivo (%s) excede el tamaño máximo permitido de %s"
5508
 
5509
+ #: core/utils.php:172
5510
  msgctxt "utils"
5511
  msgid "File size (%s) is inferior to the required minimum file size of %s"
5512
  msgstr "El tamaño de archivo (%s) es inferior al tamaño mínimo requerido de %s"
5513
 
5514
+ #: core/utils.php:181 core/utils.php:188
5515
  msgctxt "utils"
5516
  msgid "File type \"%s\" is not allowed"
5517
  msgstr "El tipo de archivo \"%s\" no está permitido"
5518
 
5519
+ #: core/utils.php:195
5520
  msgctxt "utils"
5521
  msgid "Unkown error while uploading file."
5522
  msgstr "Error desconocido mientras se subía el archivo."
5523
 
5524
+ #: core/utils.php:214
5525
  msgctxt "utils"
5526
  msgid "Uploaded file is not an image"
5527
  msgstr "El archivo subido no es una imagen"
5528
 
5529
+ #: core/utils.php:223
5530
  msgctxt "utils"
5531
  msgid "Image width (%s px) is inferior to minimum required width of %s px."
5532
  msgstr ""
5533
  "El ancho de la imagen (%s px) es inferior al mínimo requerido de %s px."
5534
 
5535
+ #: core/utils.php:229
5536
  msgctxt "utils"
5537
  msgid "Image height (%s px) is inferior to minimum required height of %s px."
5538
  msgstr "El alto de la imagen (%s px) es inferior al mínimo requerido de %s px."
5539
 
5540
+ #: core/utils.php:235
5541
  msgctxt "utils"
5542
  msgid "Image width (%s px) is greater than maximum allowed width of %s px."
5543
  msgstr ""
5544
  "El ancho de la imagen (%s px) es superior al máximo permitido de %s px."
5545
 
5546
+ #: core/utils.php:241
5547
  msgctxt "utils"
5548
  msgid "Image height (%s px) is greater than maximum required height of %s px."
5549
  msgstr "El alto de la imagen (%s px) es superior al máximo permitido de %s px."
5550
 
5551
+ #: core/utils.php:255
5552
  msgctxt "utils"
5553
  msgid "Error while uploading file"
5554
  msgstr "Ocurrió un error mientras se subía el archivo"
5792
  msgstr ""
5793
  "Ha ingresado como administrador. Todos los pasos de pago serán saltados."
5794
 
5795
+ #: core/view-submit-listing.php:205
5796
  msgctxt "templates"
5797
  msgid "Please select a fee option for the \"%s\" category."
5798
  msgstr "Por favor elija una opción de pago para la categoría \"%s\"."
5799
 
5800
+ #: core/view-submit-listing.php:273
5801
  msgctxt "templates"
5802
  msgid "Please agree to the Terms and Conditions."
5803
  msgstr "Por favor acepte los Términos y Condiciones."
5804
 
5805
+ #: core/view-submit-listing.php:279
5806
  msgctxt "templates"
5807
  msgid "The reCAPTCHA wasn't entered correctly."
5808
  msgstr "El reCAPTCHA no fue ingresado correctamente."
5809
 
5810
+ #: core/view-submit-listing.php:296
5811
  msgctxt "templates"
5812
  msgid "Read our Terms and Conditions"
5813
  msgstr "Lea nuestros Términos y Condiciones"
5814
 
5815
+ #: core/view-submit-listing.php:301
5816
  msgctxt "templates"
5817
  msgid "Terms and Conditions:"
5818
  msgstr "Términos y Condiciones:"
5819
 
5820
+ #: core/view-submit-listing.php:312
5821
  msgctxt "templates"
5822
  msgid "I agree to the Terms and Conditions"
5823
  msgstr "Acepto los Términos y Condiciones"
5824
 
5825
+ #: core/view-submit-listing.php:449
5826
  msgctxt "listings"
5827
  msgid "Fee \"%s\" for category \"%s\"%s"
5828
  msgstr "Comisión \"%s\" para categoría \"%s\"%s"
5829
 
5830
+ #: core/view-submit-listing.php:452
5831
  msgctxt "listings"
5832
  msgid "(recurring)"
5833
  msgstr "(recurrente)"
5834
 
5835
+ #: core/view-submit-listing.php:462 core/view-upgrade-listing.php:54
5836
  msgctxt "submit"
5837
  msgid "Listing upgrade to featured"
5838
  msgstr "Mejora a Destacado"
5839
 
5840
+ #: core/view-submit-listing.php:495
5841
  msgctxt "submit_state"
5842
  msgid "Invalid submit state."
5843
  msgstr "Solicitud inválida."
6397
  msgid "Images Allowed"
6398
  msgstr "Imágenes Permitidas"
6399
 
6400
+ #: templates/parts/category-fee-selection.tpl.php:28
6401
+ #, fuzzy
6402
+ msgctxt "templates"
6403
+ msgid "There are no fees available for this category."
6404
+ msgstr "Por favor elija una opción de pago para la categoría \"%s\"."
6405
+
6406
+ #: templates/parts/category-fee-selection.tpl.php:50
6407
  msgctxt "templates"
6408
  msgid "Unlimited"
6409
  msgstr "Ilimitado"
6410
 
6411
+ #: templates/parts/category-fee-selection.tpl.php:52
6412
  msgctxt "templates"
6413
  msgid "%d day"
6414
  msgid_plural "%d days"
6763
  msgid "http://businessdirectoryplugin.com"
6764
  msgstr "http://businessdirectoryplugin.com"
6765
 
6766
+ #~ msgctxt "fees admin"
6767
+ #~ msgid "You do not have any listing fees setup yet."
6768
+ #~ msgstr "Usted no tiene comisiones configuradas aún."
6769
+
6770
+ #~ msgctxt "fees admin"
6771
+ #~ msgid "Applied To"
6772
+ #~ msgstr "Aplica A"
6773
+
6774
+ #~ msgctxt "fees admin"
6775
+ #~ msgid "Is sticky?"
6776
+ #~ msgstr "Es destacado?"
6777
+
6778
  #~ msgctxt "admin settings"
6779
  #~ msgid "Registration"
6780
  #~ msgstr "Registro"
6879
  #~ msgid "Listing"
6880
  #~ msgstr "Listado"
6881
 
 
 
 
 
6882
  #~ msgctxt "admin transactions"
6883
  #~ msgid "Amount"
6884
  #~ msgstr "Valor"
languages/WPBDM-fr_FR.mo CHANGED
Binary file
languages/WPBDM-fr_FR.po CHANGED
@@ -4,7 +4,7 @@ msgid ""
4
  msgstr ""
5
  "Project-Id-Version: Business Directory Plugin 3.6\n"
6
  "Report-Msgid-Bugs-To: http://wordpress.org/tag/business-directory-plugin\n"
7
- "POT-Creation-Date: 2016-01-18 20:20:16+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"
@@ -22,93 +22,93 @@ msgctxt "admin category filter"
22
  msgid "All categories"
23
  msgstr "Toutes catégories"
24
 
25
- #: admin/class-admin-listings.php:111
26
  msgid "Listing Information"
27
  msgstr "Information sur l'annonce"
28
 
29
- #: admin/class-admin-listings.php:118
30
  msgctxt "admin"
31
  msgid "Listing Fields / Images"
32
  msgstr "Champs des annonces / Images "
33
 
34
- #: admin/class-admin-listings.php:129
35
  msgctxt "admin"
36
  msgid "Categories"
37
  msgstr "Catégories"
38
 
39
- #: admin/class-admin-listings.php:130
40
  msgid "Payment Status"
41
  msgstr "Statut du paiement"
42
 
43
- #: admin/class-admin-listings.php:131
44
  msgid "Featured (Sticky) Status"
45
  msgstr "Statut sélectionné (Post-it)"
46
 
47
- #: admin/class-admin-listings.php:162
48
  msgctxt "admin"
49
  msgid "(Listing expired in this category)"
50
  msgstr "(Annonce expirée dans cette catégorie) "
51
 
52
- #: admin/class-admin-listings.php:180 admin/class-admin-listings.php:263
53
  msgid "Paid"
54
  msgstr "Payé"
55
 
56
- #: admin/class-admin-listings.php:185
57
  msgid "Mark as"
58
  msgstr "Marqué comme"
59
 
60
- #: admin/class-admin-listings.php:194 admin/class-admin-listings.php:273
61
  msgid "Pending Upgrade"
62
  msgstr "Mise à jour nécessaire"
63
 
64
- #: admin/class-admin-listings.php:202 admin/listing-metabox.php:68
65
  msgid "Upgrade to %s"
66
  msgstr "Mettre à jour vers %s"
67
 
68
- #: admin/class-admin-listings.php:209 admin/listing-metabox.php:75
69
  msgid "Downgrade to %s"
70
  msgstr "Déclasser vers %s"
71
 
72
- #: admin/class-admin-listings.php:212 admin/class-admin-listings.php:392
73
  msgctxt "admin actions"
74
  msgid "Upgrade to Featured"
75
  msgstr "Mettre à jour vers la version sélectionnée"
76
 
77
- #: admin/class-admin-listings.php:268
78
  msgid "Unpaid"
79
  msgstr "Impayé"
80
 
81
- #: admin/class-admin-listings.php:278
82
  msgctxt "admin"
83
  msgid "Expired"
84
  msgstr "Expiré "
85
 
86
- #: admin/class-admin-listings.php:328
87
  msgctxt "admin actions"
88
  msgid "Edit Listing"
89
  msgstr "Editer l'annonce"
90
 
91
- #: admin/class-admin-listings.php:331
92
  msgctxt "admin actions"
93
  msgid "Delete Listing"
94
  msgstr "Effacer l'annonce"
95
 
96
- #: admin/class-admin-listings.php:390
97
  msgctxt "admin actions"
98
  msgid "Publish Listing"
99
  msgstr "Publier l'annonce"
100
 
101
- #: admin/class-admin-listings.php:393
102
  msgctxt "admin actions"
103
  msgid "Downgrade to Normal"
104
  msgstr "Rétrograder vers le mode Normal "
105
 
106
- #: admin/class-admin-listings.php:395
107
  msgctxt "admin actions"
108
  msgid "Mark as Paid"
109
  msgstr "Marquer comme Payé "
110
 
111
- #: admin/class-admin-listings.php:397
112
  msgctxt "admin actions"
113
  msgid "Renew Listing"
114
  msgstr "Renouveler l'annonce"
@@ -227,85 +227,85 @@ msgctxt "admin menu"
227
  msgid "Uninstall"
228
  msgstr "Désinstaller"
229
 
230
- #: admin/class-admin.php:408
231
  #: admin/templates/listing-metabox-categories.tpl.php:69
232
  msgctxt "admin infometabox"
233
  msgid "never"
234
  msgstr "jamais"
235
 
236
- #: admin/class-admin.php:490
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:503
244
  msgctxt "admin"
245
  msgid "The listing status has been set as paid."
246
  msgid_plural "The listings status has been set as paid."
247
  msgstr[0] "Le statut de l'annonce a été défini comme étant payée."
248
  msgstr[1] "Le statut des annocnes a été défini comme étant payées."
249
 
250
- #: admin/class-admin.php:515
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:528
258
  msgctxt "admin"
259
  msgid "The listing has been upgraded."
260
  msgid_plural "The listings have been upgraded."
261
  msgstr[0] "L'annonce a été mise à jour."
262
  msgstr[1] "Les annonces ont été mise à jour."
263
 
264
- #: admin/class-admin.php:540
265
  msgctxt "admin"
266
  msgid "The listing has been downgraded."
267
  msgid_plural "The listings have been downgraded."
268
  msgstr[0] "L'annonce a été rétrogradée."
269
  msgstr[1] "Les annonces ont été rétrogradées."
270
 
271
- #: admin/class-admin.php:552
272
  msgctxt "admin"
273
  msgid "The transaction has been approved."
274
  msgstr "La transaction a été approuvée."
275
 
276
- #: admin/class-admin.php:560
277
  msgctxt "admin"
278
  msgid "The transaction has been rejected."
279
  msgstr "La transaction a été rejetée."
280
 
281
- #: admin/class-admin.php:566
282
  msgctxt "admin"
283
  msgid "The fee was successfully assigned."
284
  msgstr "Les frais ont bien été assignés."
285
 
286
- #: admin/class-admin.php:575
287
  msgctxt "admin"
288
  msgid "Listing was renewed."
289
  msgid_plural "Listings were renewed."
290
  msgstr[0] "L'annonce a été renouvelée."
291
  msgstr[1] "Les annonces ont été renouvelées."
292
 
293
- #: admin/class-admin.php:582
294
  msgctxt "admin"
295
  msgid "Renewal email sent."
296
  msgstr "Email de renouvellement envoyé"
297
 
298
- #: admin/class-admin.php:616
299
  msgctxt "admin category id"
300
  msgid "ID"
301
  msgstr "ID"
302
 
303
- #: admin/class-admin.php:618 admin/class-admin.php:624
304
  msgctxt "admin"
305
  msgid "Listing Count"
306
  msgstr "Compteur d'annonces"
307
 
308
- #: admin/class-admin.php:733
309
  msgctxt "admin"
310
  msgid ""
311
  "<b>Business Directory Plugin</b> requires fields with the following "
@@ -314,7 +314,7 @@ msgstr ""
314
  "<b>Plugin d'Annuaire Professionnel</b> requiert des champs avec les "
315
  "associations suivantes pour marcher correctement: <b>%s</b>"
316
 
317
- #: admin/class-admin.php:735
318
  msgctxt "admin"
319
  msgid ""
320
  "<b>Business Directory Plugin</b> requires a field with a <b>%s</b> "
@@ -323,7 +323,7 @@ msgstr ""
323
  "<b>Plugin d'Annuaire Professionnel</b> requiert un champ avec un <b>%s</b> "
324
  "association en ordre pour marcher correctement."
325
 
326
- #: admin/class-admin.php:739
327
  msgctxt "admin"
328
  msgid ""
329
  "You can create these custom fields by yourself inside \"Manage Form Fields\" "
@@ -332,17 +332,17 @@ msgstr ""
332
  "Vous pouvez créer ces champs personnalisés pas vous-mêmes dans \"Gestion des "
333
  "Champs\" ou laissez le plugin le faire pour vous automatiquement."
334
 
335
- #: admin/class-admin.php:743
336
  msgctxt "admin"
337
  msgid "Go to \"Manage Form Fields\""
338
  msgstr "Aller à \"Gestion des Champs\""
339
 
340
- #: admin/class-admin.php:746
341
  msgctxt "admin"
342
  msgid "Create these required fields for me"
343
  msgstr "Créer ces champs obligatoires pour moi"
344
 
345
- #: admin/class-admin.php:755
346
  msgctxt "admin"
347
  msgid ""
348
  "<b>Business Directory Plugin</b> requires a page with the "
@@ -351,7 +351,7 @@ msgstr ""
351
  "<b>Business Directory Plugin</b> requiert une page avec le code "
352
  "d'activation <tt>[businessdirectory]</tt> pour marcher correctement."
353
 
354
- #: admin/class-admin.php:757
355
  msgctxt "admin"
356
  msgid ""
357
  "You can create this page by yourself or let Business Directory do this for "
@@ -360,27 +360,27 @@ msgstr ""
360
  "Vous pouvez créer cette page par vous-mêmes ou laisser le plugin la faire "
361
  "pour vous automatiquement."
362
 
363
- #: admin/class-admin.php:761
364
  msgctxt "admin"
365
  msgid "Create required pages for me"
366
  msgstr "Créer les pages requises pour moi."
367
 
368
- #: admin/class-admin.php:801
369
  msgctxt "admin compat"
370
  msgid "Installed: %s"
371
  msgstr "Installé: %s"
372
 
373
- #: admin/class-admin.php:801
374
  msgctxt "admin compat"
375
  msgid "N/A"
376
  msgstr "N/A"
377
 
378
- #: admin/class-admin.php:804
379
  msgctxt "admin compat"
380
  msgid "Required: %s"
381
  msgstr "Requis: %s"
382
 
383
- #: admin/class-admin.php:817
384
  msgctxt "admin compat"
385
  msgid ""
386
  "Business Directory has detected some incompatible premium module versions "
@@ -389,7 +389,7 @@ msgstr ""
389
  "Le plugin a détecté une/des modules incomptatible de la version premium "
390
  "installé."
391
 
392
- #: admin/class-admin.php:819
393
  msgctxt "admin compat"
394
  msgid ""
395
  "Please upgrade to the required versions indicated below to make sure "
@@ -398,7 +398,7 @@ msgstr ""
398
  "Veuillez mettre à jour vers la version requise, indiquée ci-dessous, pour "
399
  "assurer le bon fonctionnement des fonctions. "
400
 
401
- #: admin/class-admin.php:834
402
  msgctxt "admin"
403
  msgid ""
404
  "We noticed you want your Business Directory users to register before posting "
@@ -427,96 +427,111 @@ 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:41
431
  msgctxt "themes"
432
  msgid "Directory Themes"
433
  msgstr "Catégories de l'annuaire"
434
 
435
- #: admin/class-themes-admin.php:42
436
  #, fuzzy
437
  msgctxt "themes"
438
  msgid "Directory Themes %s"
439
  msgstr "Catégories de l'annuaire"
440
 
441
- #: admin/class-themes-admin.php:97
442
  msgctxt "themes"
443
  msgid "Could not change the active theme to \"%s\"."
444
  msgstr "Vous ne pouvez pas changer le thème actif pour \"%s\""
445
 
446
- #: admin/class-themes-admin.php:144
447
  msgctxt "themes"
448
  msgid "Active theme changed to \"%s\"."
449
  msgstr ""
450
 
451
- #: admin/class-themes-admin.php:147
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:154
459
  msgctxt "themes"
460
  msgid "Dismiss this warning"
461
  msgstr ""
462
 
463
- #: admin/class-themes-admin.php:157
464
  msgctxt "themes"
465
  msgid "Create suggested fields"
466
  msgstr "Créer ces champs"
467
 
468
- #: admin/class-themes-admin.php:164
469
  msgctxt "themes"
470
  msgid "Suggested fields created successfully."
471
  msgstr "Champs créés avec succès."
472
 
473
- #: admin/class-themes-admin.php:167
474
  msgctxt "themes"
475
  msgid "Theme installed successfully."
476
  msgstr "Thème installé avec succès"
477
 
478
- #: admin/class-themes-admin.php:170
479
  msgctxt "themes"
480
  msgid "Theme was deleted sucessfully."
481
  msgstr "Le thème a été supprimé"
482
 
483
- #: admin/class-themes-admin.php:173
484
  msgctxt "themes"
485
  msgid "Could not delete theme directory. Check permissions."
486
  msgstr ""
487
 
488
- #: admin/class-themes-admin.php:199
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:206
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:307 core/licensing.php:127
499
- #: 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:313 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:318 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:331 core/licensing.php:332
516
  msgctxt "licensing"
517
  msgid "License activated"
518
  msgstr "Licence activé"
519
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
520
  #: admin/csv-export.php:136
521
  msgctxt "admin csv-export"
522
  msgid "Could not create a temporary directory for handling this CSV export."
@@ -605,120 +620,198 @@ msgctxt "fees admin"
605
  msgid "fees"
606
  msgstr "frais"
607
 
608
- #: admin/fees.php:16
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
609
  msgctxt "fees admin"
610
- msgid "You do not have any listing fees setup yet."
611
- msgstr "Vous n'avez aucun droits d'inscription mis en place actuellement."
 
612
 
613
- #: admin/fees.php:22
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
614
  msgctxt "fees admin"
615
  msgid "Label"
616
  msgstr "Etiquette"
617
 
618
- #: admin/fees.php:23
619
  msgctxt "fees admin"
620
  msgid "Amount"
621
  msgstr "Montant"
622
 
623
- #: admin/fees.php:24
624
  msgctxt "fees admin"
625
  msgid "Duration"
626
  msgstr "Durée"
627
 
628
- #: admin/fees.php:25
629
  msgctxt "fees admin"
630
  msgid "Images"
631
  msgstr "Images"
632
 
633
- #: admin/fees.php:26
 
634
  msgctxt "fees admin"
635
- msgid "Applied To"
636
- msgstr "Appliqué à"
637
 
638
- #: admin/fees.php:60
 
639
  msgctxt "fees admin"
640
- msgid ""
641
- "This is the <i>default</i> free plan for your directory. It can't be deleted "
642
- "or be anything but free and is only visible when your directory is in "
643
- "<i>free mode</i>. You can create other fee plans if you wish to charge for "
644
- "listings instead."
645
- msgstr ""
646
 
647
- #: admin/fees.php:73
648
  msgctxt "fees admin"
649
- msgid "Fee plan disabled because directory is in free mode."
 
 
 
 
650
  msgstr ""
651
 
652
- #: admin/fees.php:92
653
  msgctxt "fees admin"
654
  msgid "Edit"
655
  msgstr "Editer"
656
 
657
- #: admin/fees.php:97
658
  msgctxt "fees admin"
659
  msgid "Disable"
660
  msgstr ""
661
 
662
- #: admin/fees.php:101
 
 
 
 
 
663
  msgctxt "fees admin"
664
  msgid "Delete"
665
  msgstr "Effacer"
666
 
667
- #: admin/fees.php:122
668
  msgctxt "fees admin"
669
  msgid "Forever"
670
  msgstr "Pour toujours"
671
 
672
- #: admin/fees.php:123
673
  msgctxt "fees admin"
674
  msgid "%d day"
675
  msgid_plural "%d days"
676
  msgstr[0] "%d jour"
677
  msgstr[1] "%d jours"
678
 
679
- #: admin/fees.php:127
680
  msgctxt "fees admin"
681
  msgid "%d image"
682
  msgid_plural "%d images"
683
  msgstr[0] "%d image"
684
  msgstr[1] "%d images"
685
 
686
- #: admin/fees.php:132
687
  msgctxt "fees admin"
688
  msgid "All categories"
689
  msgstr "Toutes catégories"
690
 
691
- #: admin/fees.php:184
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
692
  msgctxt "fees order"
693
  msgid "Label"
694
  msgstr "Etiquette"
695
 
696
- #: admin/fees.php:185
697
  msgctxt "fees order"
698
  msgid "Amount"
699
  msgstr "Montant"
700
 
701
- #: admin/fees.php:186
702
  msgctxt "fees order"
703
  msgid "Duration"
704
  msgstr "Durée"
705
 
706
- #: admin/fees.php:187
707
  msgctxt "fees order"
708
  msgid "Images"
709
  msgstr "Images"
710
 
711
- #: admin/fees.php:188
712
  msgctxt "fees order"
713
  msgid "Custom Order"
714
  msgstr "Ordre personnalisé"
715
 
716
- #: admin/fees.php:207
717
  msgctxt "fees admin"
718
  msgid "Fee updated."
719
  msgstr "Frais mis à jour"
720
 
721
- #: admin/fees.php:230
722
  msgctxt "fees admin"
723
  msgid "Fee deleted."
724
  msgstr "Frais effacé"
@@ -1640,27 +1733,35 @@ msgid "Number of images allowed"
1640
  msgstr "Nombre d'images autorisées"
1641
 
1642
  #: admin/templates/fees-addoredit.tpl.php:94
 
1643
  msgctxt "fees admin"
1644
- msgid "Is sticky?"
 
 
 
 
 
 
 
1645
  msgstr ""
1646
 
1647
- #: admin/templates/fees-addoredit.tpl.php:106
1648
  msgctxt "fees admin"
1649
  msgid "Apply to category"
1650
  msgstr "Appliquer à la catégorie"
1651
 
1652
- #: admin/templates/fees-addoredit.tpl.php:110
1653
- #: admin/templates/fees-addoredit.tpl.php:113
1654
  msgctxt "fees admin"
1655
  msgid "* All Categories *"
1656
  msgstr "Toutes Catégories"
1657
 
1658
- #: admin/templates/fees-addoredit.tpl.php:133
1659
  msgctxt "fees admin"
1660
  msgid "Add Fee"
1661
  msgstr "Ajouter des Frais"
1662
 
1663
- #: admin/templates/fees-addoredit.tpl.php:133
1664
  msgctxt "fees admin"
1665
  msgid "Update Fee"
1666
  msgstr "Mettre à jour les Frais"
@@ -1711,47 +1812,93 @@ msgstr ""
1711
  "Pour régler le montant des honoraires, vous devez aller à la page <a>Réglage "
1712
  "des Options de Paiement</a> et activer"
1713
 
1714
- #: admin/templates/fees.tpl.php:22
1715
  msgctxt "fees admin"
1716
  msgid "Order fees on the frontend by:"
1717
  msgstr "Ordonner les honnoraires dans l'interface par:"
1718
 
1719
- #: admin/templates/fees.tpl.php:30
1720
  msgctxt "fees admin"
1721
  msgid "↑ Ascending"
1722
  msgstr "↑ Ascendant"
1723
 
1724
- #: admin/templates/fees.tpl.php:30
1725
  msgctxt "fees admin"
1726
  msgid "↓ Descending"
1727
  msgstr "↓ Descendant"
1728
 
1729
- #: admin/templates/fees.tpl.php:36
1730
  msgctxt "fees admin"
1731
  msgid "Drag and drop to re-order fees."
1732
  msgstr "Glisser-déposer pour réorganiser les frais."
1733
 
1734
- #: admin/templates/fees.tpl.php:48 admin/templates/sidebar.tpl.php:13
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1735
  msgctxt "admin sidebar"
1736
  msgid "PayPal Gateway Module"
1737
  msgstr "Module de passerelle PayPal"
1738
 
1739
- #: admin/templates/fees.tpl.php:49 admin/templates/sidebar.tpl.php:14
1740
  msgctxt "admin sidebar"
1741
  msgid "2Checkout Gateway Module"
1742
  msgstr "Module de passerelle de vérification"
1743
 
1744
- #: admin/templates/fees.tpl.php:50 admin/templates/sidebar.tpl.php:5
1745
  msgctxt "admin sidebar"
1746
  msgid "PayFast Payment Module"
1747
  msgstr "Module de paiement rapide"
1748
 
1749
- #: admin/templates/fees.tpl.php:51 admin/templates/sidebar.tpl.php:6
1750
  msgctxt "admin sidebar"
1751
  msgid "Stripe Payment Module"
1752
  msgstr "Module de paiement par bande"
1753
 
1754
- #: admin/templates/fees.tpl.php:61
1755
  msgctxt "admin templates"
1756
  msgid ""
1757
  "It does not appear you have any of the payment gateway modules enabled. "
@@ -1767,12 +1914,12 @@ msgstr ""
1767
  "passerelles de paiement supplémentaires utilisez les boutons ci-dessous ou "
1768
  "visiter% s."
1769
 
1770
- #: admin/templates/fees.tpl.php:77
1771
  msgctxt "admin templates"
1772
  msgid "Already installed."
1773
  msgstr "Déjà installé"
1774
 
1775
- #: admin/templates/fees.tpl.php:82
1776
  msgctxt "admin templates"
1777
  msgid ""
1778
  "You can buy the <a>%s</a> to add <a>%s</a> as a payment option for your "
@@ -1960,7 +2107,7 @@ msgstr ""
1960
  "Veuillez voir la <a>Documentation de champs de formulaire</a> pour plus de "
1961
  "détails."
1962
 
1963
- #. #-#-#-#-# WPBDM.pot (Business Directory Plugin 3.6.13) #-#-#-#-#
1964
  #. Plugin Name of the plugin/theme
1965
  #: admin/templates/header.tpl.php:4
1966
  msgid "Business Directory Plugin"
@@ -2512,22 +2659,46 @@ msgctxt "themes"
2512
  msgid "Active:"
2513
  msgstr "Actif"
2514
 
2515
- #: admin/templates/themes-item.tpl.php:12
2516
  msgctxt "themes"
2517
  msgid "Activate"
2518
  msgstr "Activer"
2519
 
2520
- #: admin/templates/themes-item.tpl.php:29
2521
  msgctxt "themes"
2522
  msgid "Version:"
2523
  msgstr ""
2524
 
2525
- #: admin/templates/themes-item.tpl.php:32
2526
  #, fuzzy
2527
  msgctxt "themes"
2528
  msgid "Author:"
2529
  msgstr "Auteur"
2530
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
2531
  #: admin/templates/transactions.tpl.php:2
2532
  msgctxt "admin transactions"
2533
  msgid "Transactions"
@@ -2734,22 +2905,22 @@ msgctxt "admin csv-import"
2734
  msgid "Listing category \"%s\" does not exist"
2735
  msgstr "La catégorie d'annonce \"%s\" n'existe pas"
2736
 
2737
- #: core/class-fee-plan.php:45
2738
  msgctxt "fees-api"
2739
  msgid "Fee label is required."
2740
  msgstr "Une étiquette de frais est requise."
2741
 
2742
- #: core/class-fee-plan.php:48
2743
  msgctxt "fees-api"
2744
  msgid "Fee amount must be a non-negative decimal number."
2745
  msgstr "Le montant des frais doit être un nombre décimal non-négatif."
2746
 
2747
- #: core/class-fee-plan.php:51
2748
  msgctxt "fees-api"
2749
  msgid "Fee must apply to at least one category."
2750
  msgstr "Fee doit être appliqué à au moins une catégorie."
2751
 
2752
- #: core/class-fee-plan.php:56
2753
  msgctxt "fees-api"
2754
  msgid "Fee listing duration must be a number less than 10 years (3650 days)."
2755
  msgstr ""
@@ -2790,12 +2961,12 @@ msgctxt "form-fields-api"
2790
  msgid "\"%s\" is an invalid field type for this association."
2791
  msgstr "\" est un type de champ invalide pour cette association."
2792
 
2793
- #: core/class-form-field.php:527
2794
  msgctxt "form-fields-api"
2795
  msgid "Invalid field ID"
2796
  msgstr "ID de champ invalide"
2797
 
2798
- #: core/class-form-field.php:536
2799
  msgctxt "form-fields api"
2800
  msgid ""
2801
  "This form field can't be deleted because it is required for the plugin to "
@@ -2804,7 +2975,7 @@ msgstr ""
2804
  "Ce champ de formulaire ne peut pas être supprimé car il est nécessaire pour "
2805
  "que le plugin fonctionne."
2806
 
2807
- #: core/class-form-field.php:548
2808
  msgctxt "form-fields-api"
2809
  msgid "An error occurred while trying to delete this field."
2810
  msgstr "Une erreur est survenue en essayant de supprimer ce champ."
@@ -4931,40 +5102,46 @@ msgctxt "fs helper"
4931
  msgid "Destination dir \"%s\" is not writable."
4932
  msgstr "Le dossier \"%s\" n'est pas accessible en écriture"
4933
 
4934
- #: core/helpers/class-themes-updater.php:126
4935
  msgctxt "themes"
4936
  msgid "Updating theme..."
4937
  msgstr ""
4938
 
4939
- #: core/helpers/class-themes-updater.php:127
4940
  #, fuzzy
4941
  msgctxt "themes"
4942
  msgid "Theme updated."
4943
  msgstr "Frais mis à jour"
4944
 
4945
- #: core/helpers/class-themes-updater.php:129
4946
  msgctxt "themes"
4947
  msgid "New version available (<b>%s</b>). <a>Update now.</a>"
4948
  msgstr ""
4949
 
4950
- #: core/helpers/class-themes-updater.php:157
4951
  #, fuzzy
4952
  msgctxt "themes"
4953
  msgid "Could not update theme: %s"
4954
  msgstr "Impossible de désactiver la licence: %s."
4955
 
4956
- #: core/helpers/class-themes-updater.php:163
4957
  #, fuzzy
4958
  msgctxt "themes"
4959
  msgid "Theme was updated sucessfully."
4960
  msgstr "Le thème a été supprimé"
4961
 
4962
- #: core/installer.php:38
4963
  msgctxt "default category name"
4964
  msgid "General"
4965
  msgstr "Général"
4966
 
4967
- #: core/installer.php:471
 
 
 
 
 
 
4968
  msgctxt "installer"
4969
  msgid ""
4970
  "<b>Business Directory Plugin - Regions Module</b> was disabled because it is "
@@ -4975,43 +5152,43 @@ msgstr ""
4975
  "est incompatible avec la version actuelle du plugin. Veuillez mettre à jour "
4976
  "le module."
4977
 
4978
- #: core/installer.php:537
4979
  msgctxt "installer"
4980
  msgid "Cleaning up listing fees information... %d/%d"
4981
  msgstr "Nettoyage des informations sur les droits d'inscription ... %d/%d"
4982
 
4983
- #: core/installer.php:587
4984
  msgctxt "installer"
4985
  msgid "Migrating previous transactions to new Payments API... %d/%d"
4986
  msgstr ""
4987
  "Migration des transactions antérieures vers de nouveaux paiements API ... %d/"
4988
  "%d"
4989
 
4990
- #: core/installer.php:616
4991
  msgctxt "installer"
4992
  msgid "Initial listing payment (BD < 3.4)"
4993
  msgstr "Annonce de paiement initial (BD<3.4)"
4994
 
4995
- #: core/installer.php:627
4996
  msgctxt "installer"
4997
  msgid "Listing edit payment (BD < 3.4)"
4998
  msgstr "Edition de l'annonce de paiement (BD<3.4)"
4999
 
5000
- #: core/installer.php:648
5001
  msgctxt "installer"
5002
  msgid "Renewal fee \"%s\" for category \"%s\""
5003
  msgstr "Renouvellement des frais \"%s\" pour la catégorie \"%s\""
5004
 
5005
- #: core/installer.php:667
5006
  msgctxt "installer"
5007
  msgid "Listing upgrade to featured"
5008
  msgstr "Mise à jour des annonces vers prioritaire"
5009
 
5010
- #: core/installer.php:909
5011
  msgid "Business Directory - Manual Upgrade Required"
5012
  msgstr "Business Directory - Mise à jour manuelle requise"
5013
 
5014
- #: core/installer.php:911
5015
  msgid ""
5016
  "Business Directory features are currently disabled because the plugin needs "
5017
  "to perform a manual upgrade before continuing."
@@ -5020,15 +5197,15 @@ msgstr ""
5020
  "désactivés car le plugin a besoin d'effectuer une mise à jour manuelle avant "
5021
  "de poursuivre."
5022
 
5023
- #: core/installer.php:913
5024
  msgid "Perform Manual Upgrade"
5025
  msgstr "Effectuer la mise à jour manuelle"
5026
 
5027
- #: core/installer.php:929 core/installer.php:930 core/installer.php:941
5028
  msgid "Business Directory - Manual Upgrade"
5029
  msgstr "Business Directory - Mise à jour manuelle"
5030
 
5031
- #: core/installer.php:945
5032
  msgid ""
5033
  "Business Directory features are currently disabled because the plugin needs "
5034
  "to perform a manual upgrade before it can be used."
@@ -5037,23 +5214,23 @@ msgstr ""
5037
  "désactivées car le plugin a besoin d'effectuer une mise à jour manuelle afin "
5038
  "d'être pleinement utilisable."
5039
 
5040
- #: core/installer.php:947
5041
  msgid "Click \"Start Upgrade\" and wait until the process finishes."
5042
  msgstr ""
5043
  "Cliquez sur \"Commencer la mise à jour\" et patientez jusqu'à la fin du "
5044
  "processus."
5045
 
5046
- #: core/installer.php:950
5047
  msgctxt "manual-upgrade"
5048
  msgid "Start Upgrade"
5049
  msgstr "Commencer la mise à jour"
5050
 
5051
- #: core/installer.php:952
5052
  msgctxt "manual-upgrade"
5053
  msgid "Pause Upgrade"
5054
  msgstr "Mettre en pause la mise à jour"
5055
 
5056
- #: core/installer.php:958
5057
  msgctxt "manual-upgrade"
5058
  msgid ""
5059
  "The upgrade was sucessfully performed. Business Directory Plugin is now "
@@ -5062,7 +5239,7 @@ msgstr ""
5062
  "La mise à jour s'est bien effectué. Le plugin Business Directory est "
5063
  "maintenant disponible et fonctionnel."
5064
 
5065
- #: core/installer.php:961
5066
  msgctxt "manual-upgrade"
5067
  msgid "Go to \"Directory Admin\""
5068
  msgstr "Aller à \"Administrateur de l'annuaire\""
@@ -5139,12 +5316,7 @@ msgctxt "licensing"
5139
  msgid "Could not deactivate license: %s."
5140
  msgstr "Impossible de désactiver la licence: %s."
5141
 
5142
- #: core/licensing.php:350
5143
- msgctxt "licensing"
5144
- msgid "License deactivated"
5145
- msgstr "Licence désactivée"
5146
-
5147
- #: core/payment.php:89
5148
  msgctxt "payments-api"
5149
  msgid ""
5150
  "You are offering featured listings but have payments turned off. Go to <a "
@@ -5157,7 +5329,7 @@ msgstr ""
5157
  "paramètres de paiement. Jusqu'à ce que vous effectuiez les modifications "
5158
  "voulues, l'option <i> Mise à niveau en vedette </ i>sera désactivée."
5159
 
5160
- #: core/payment.php:107
5161
  msgctxt "payments-api"
5162
  msgid ""
5163
  "The <b>%s</b> gateway is active but not properly configured. The gateway "
@@ -5169,7 +5341,7 @@ msgstr ""
5169
  "soient fixés: <b>%s </b>. <br/> Vérifiez les <a href=\"%s\"> paramètres de "
5170
  "paiement </a>."
5171
 
5172
- #: core/payment.php:117
5173
  msgctxt "admin"
5174
  msgid ""
5175
  "You have payments turned on but no gateway is active and properly "
@@ -5182,7 +5354,7 @@ msgstr ""
5182
  "Paiement </a> pour modifier les paramètres de paiement. Jusqu'à ce que vous "
5183
  "modifiez cela, le répertoire fonctionnera en <i> Mode libre </ i>."
5184
 
5185
- #: core/payment.php:121
5186
  msgid ""
5187
  "BD detected PayFast and another gateway were enabled. This setup is not "
5188
  "recommended due to PayFast supporting only ZAR and the other gateways not "
@@ -5192,7 +5364,7 @@ msgstr ""
5192
  "Cette configuration est déconseillée étant donné que PayFast supporte la "
5193
  "devise ZAR (Rand sud-africain) et pas les autres passerelles."
5194
 
5195
- #: core/payment.php:125
5196
  msgid ""
5197
  "You have recurring renewal of listing fees enabled but the payment gateways "
5198
  "installed don't support recurring payments. Until a gateway that supports "
@@ -5205,37 +5377,44 @@ msgstr ""
5205
  "récurrents (comme PayPal) soit activé, les renouvellements automatiques "
5206
  "seront désactivées."
5207
 
5208
- #: core/payment.php:158
 
 
 
 
 
 
 
5209
  msgctxt "payments-api"
5210
  msgid "Checkout"
5211
  msgstr "Vérification"
5212
 
5213
- #: core/payment.php:159
5214
  msgctxt "payments-api"
5215
  msgid "Pay %1$s through %2$s"
5216
  msgstr "Payez %1$s par %2$s"
5217
 
5218
- #: core/payment.php:166
5219
  msgctxt "payments-api"
5220
  msgid "Your transaction has been approved."
5221
  msgstr "Votre traansaction a été aapprouvée."
5222
 
5223
- #: core/payment.php:352
5224
  msgctxt "payments"
5225
  msgid "Payment Details"
5226
  msgstr "Détails de paiement"
5227
 
5228
- #: core/payment.php:379
5229
  msgctxt "checkout"
5230
  msgid "Payment Method"
5231
  msgstr "Méthode de paiement"
5232
 
5233
- #: core/payment.php:413
5234
  msgctxt "payment"
5235
  msgid "Return to Directory."
5236
  msgstr "Retourner vers l'annuaire."
5237
 
5238
- #: core/payment.php:420
5239
  msgctxt "payments"
5240
  msgid ""
5241
  "Your payment is being processed by the payment gateway. Please reload this "
@@ -5246,7 +5425,7 @@ msgstr ""
5246
  "Veuillez recharger cette page dans un instant pour voir si la situation a "
5247
  "changé ou contactez l'administrateur du site."
5248
 
5249
- #: core/payment.php:423
5250
  msgctxt "payments"
5251
  msgid ""
5252
  "The payment has been rejected by the payment gateway. Please contact the "
@@ -5258,12 +5437,12 @@ msgstr ""
5258
  "\"Changer de Paiement \" pour sélectionner une autre méthode de paiement et "
5259
  "essayez à nouveau."
5260
 
5261
- #: core/payment.php:424
5262
  msgctxt "payments"
5263
  msgid "Change Payment Method"
5264
  msgstr "Changer la méthode de paiement"
5265
 
5266
- #: core/payment.php:426
5267
  msgctxt "payments"
5268
  msgid ""
5269
  "The payment has been rejected by the payment gateway. Please contact the "
@@ -5272,17 +5451,17 @@ msgstr ""
5272
  "Le paiement a été rejeté par la passerelle de paiement. Veuillez contacter "
5273
  "l'administrateur du site si vous pensez qu'il y a une erreur."
5274
 
5275
- #: core/payment.php:429
5276
  msgctxt "payments"
5277
  msgid "The payment has been canceled at your request."
5278
  msgstr "Le paiement a été annulé à votre demande."
5279
 
5280
- #: core/payment.php:527
5281
  msgctxt "admin"
5282
  msgid "Pending Abandonment"
5283
  msgstr "Abandon en cours"
5284
 
5285
- #: core/payment.php:532
5286
  msgctxt "admin"
5287
  msgid "Abandoned"
5288
  msgstr "Abandonné"
@@ -5336,22 +5515,22 @@ msgctxt "sort"
5336
  msgid "(Reset)"
5337
  msgstr "(Réinitialiser)"
5338
 
5339
- #: core/themes.php:587
5340
  msgctxt "themes"
5341
  msgid "ZIP file is not a valid BD theme file."
5342
  msgstr "Le fichier ZIP n'est pas un fichier de thème valide"
5343
 
5344
- #: core/themes.php:593
5345
  msgctxt "themes"
5346
  msgid "Could not create themes directory."
5347
  msgstr "Impossible de créer le répertoire de thèmes"
5348
 
5349
- #: core/themes.php:601
5350
  msgctxt "themes"
5351
  msgid "Could not remove previous theme directory \"%s\"."
5352
  msgstr "Impossible de supprimer le dossier de thème précédent \"%s\"."
5353
 
5354
- #: core/themes.php:607
5355
  msgctxt "themes"
5356
  msgid "Could not move new theme into theme directory."
5357
  msgstr "Impossible de déplacer le nouveau thème dans le dossier à thèmes"
@@ -5364,62 +5543,62 @@ msgstr ""
5364
  "Les données affichées dépassent les configurations maximale permisent par "
5365
  "PHP. Voir les directive \"post_max_size\"."
5366
 
5367
- #: core/utils.php:159
5368
  msgctxt "utils"
5369
  msgid "File size (%s) exceeds maximum file size of %s"
5370
  msgstr "La taille du fichier (%s) excède la taille maximale permise de %s"
5371
 
5372
- #: core/utils.php:167
5373
  msgctxt "utils"
5374
  msgid "File size (%s) is inferior to the required minimum file size of %s"
5375
  msgstr ""
5376
  "La taille du fichier (%s) est inférieur au minimum de taille de fichier "
5377
  "requise de %s"
5378
 
5379
- #: core/utils.php:176 core/utils.php:183
5380
  msgctxt "utils"
5381
  msgid "File type \"%s\" is not allowed"
5382
  msgstr "Le type de fichier \"%s\" n'est pas autorisé"
5383
 
5384
- #: core/utils.php:190
5385
  msgctxt "utils"
5386
  msgid "Unkown error while uploading file."
5387
  msgstr "Une erreur inconnu est survenu lors de l'upload du fichier."
5388
 
5389
- #: core/utils.php:209
5390
  msgctxt "utils"
5391
  msgid "Uploaded file is not an image"
5392
  msgstr "Le fichier transféré n'est pas une image"
5393
 
5394
- #: core/utils.php:218
5395
  msgctxt "utils"
5396
  msgid "Image width (%s px) is inferior to minimum required width of %s px."
5397
  msgstr ""
5398
  "La largeur de l'image (%s px) est inférieur à la largeur minimum requise de "
5399
  "%s px."
5400
 
5401
- #: core/utils.php:224
5402
  msgctxt "utils"
5403
  msgid "Image height (%s px) is inferior to minimum required height of %s px."
5404
  msgstr ""
5405
  "La hauteur de l'image (%s px) est inférieur à la hauteur minimum requise de "
5406
  "%s px."
5407
 
5408
- #: core/utils.php:230
5409
  msgctxt "utils"
5410
  msgid "Image width (%s px) is greater than maximum allowed width of %s px."
5411
  msgstr ""
5412
  "La largeur de l'image (%s px) est supérieur à la largeur maximum requise de "
5413
  "%s px."
5414
 
5415
- #: core/utils.php:236
5416
  msgctxt "utils"
5417
  msgid "Image height (%s px) is greater than maximum required height of %s px."
5418
  msgstr ""
5419
  "La hauteur de l'image (%s px) est supérieure à la hauteur maximum requise de "
5420
  "%s px."
5421
 
5422
- #: core/utils.php:250
5423
  msgctxt "utils"
5424
  msgid "Error while uploading file"
5425
  msgstr "Erreur durant l'upload du fichier"
@@ -5668,52 +5847,52 @@ msgstr ""
5668
  "Vous êtes connectés en tant qu'administrateur. TOutes les étapes de paiement "
5669
  "seront passé."
5670
 
5671
- #: core/view-submit-listing.php:200
5672
  msgctxt "templates"
5673
  msgid "Please select a fee option for the \"%s\" category."
5674
  msgstr "Veuillez sélectionner une option de frai pour la catégorie \"%s\"."
5675
 
5676
- #: core/view-submit-listing.php:268
5677
  msgctxt "templates"
5678
  msgid "Please agree to the Terms and Conditions."
5679
  msgstr "Veuillez accepter les Termes et Conditions."
5680
 
5681
- #: core/view-submit-listing.php:274
5682
  msgctxt "templates"
5683
  msgid "The reCAPTCHA wasn't entered correctly."
5684
  msgstr "Le CAPTCHA n'a pas été rentré correctement."
5685
 
5686
- #: core/view-submit-listing.php:291
5687
  msgctxt "templates"
5688
  msgid "Read our Terms and Conditions"
5689
  msgstr "Lisez nos Termes et Conditions"
5690
 
5691
- #: core/view-submit-listing.php:296
5692
  msgctxt "templates"
5693
  msgid "Terms and Conditions:"
5694
  msgstr "Termes et Conditions:"
5695
 
5696
- #: core/view-submit-listing.php:307
5697
  msgctxt "templates"
5698
  msgid "I agree to the Terms and Conditions"
5699
  msgstr "Je suis en accord avec les Termes et Condiditons"
5700
 
5701
- #: core/view-submit-listing.php:444
5702
  msgctxt "listings"
5703
  msgid "Fee \"%s\" for category \"%s\"%s"
5704
  msgstr "Frais \"%s\" pour la catégorie \"%s\"%s"
5705
 
5706
- #: core/view-submit-listing.php:447
5707
  msgctxt "listings"
5708
  msgid "(recurring)"
5709
  msgstr "(récurrant)"
5710
 
5711
- #: core/view-submit-listing.php:457 core/view-upgrade-listing.php:54
5712
  msgctxt "submit"
5713
  msgid "Listing upgrade to featured"
5714
  msgstr "Mise à jour de l'annonce vers prioritaire"
5715
 
5716
- #: core/view-submit-listing.php:490
5717
  msgctxt "submit_state"
5718
  msgid "Invalid submit state."
5719
  msgstr "Etat de soumission invalide"
@@ -6281,12 +6460,18 @@ msgctxt "templates"
6281
  msgid "Images Allowed"
6282
  msgstr "Images autorisées"
6283
 
6284
- #: templates/parts/category-fee-selection.tpl.php:43
 
 
 
 
 
 
6285
  msgctxt "templates"
6286
  msgid "Unlimited"
6287
  msgstr "Illimité"
6288
 
6289
- #: templates/parts/category-fee-selection.tpl.php:45
6290
  msgctxt "templates"
6291
  msgid "%d day"
6292
  msgid_plural "%d days"
@@ -6644,6 +6829,14 @@ msgstr "D. Rodenbaugh"
6644
  msgid "http://businessdirectoryplugin.com"
6645
  msgstr "http://businessdirectoryplugin.com"
6646
 
 
 
 
 
 
 
 
 
6647
  #~ msgctxt "admin settings"
6648
  #~ msgid "Registration"
6649
  #~ msgstr "Enregistrement"
@@ -6756,10 +6949,6 @@ msgstr "http://businessdirectoryplugin.com"
6756
  #~ msgid "Listing"
6757
  #~ msgstr "Annonce"
6758
 
6759
- #~ msgctxt "admin transactions"
6760
- #~ msgid "Status"
6761
- #~ msgstr "Statut"
6762
-
6763
  #~ msgctxt "admin transactions"
6764
  #~ msgid "Amount"
6765
  #~ msgstr "Montant"
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"
22
  msgid "All categories"
23
  msgstr "Toutes catégories"
24
 
25
+ #: admin/class-admin-listings.php:114
26
  msgid "Listing Information"
27
  msgstr "Information sur l'annonce"
28
 
29
+ #: admin/class-admin-listings.php:121
30
  msgctxt "admin"
31
  msgid "Listing Fields / Images"
32
  msgstr "Champs des annonces / Images "
33
 
34
+ #: admin/class-admin-listings.php:132
35
  msgctxt "admin"
36
  msgid "Categories"
37
  msgstr "Catégories"
38
 
39
+ #: admin/class-admin-listings.php:133
40
  msgid "Payment Status"
41
  msgstr "Statut du paiement"
42
 
43
+ #: admin/class-admin-listings.php:134
44
  msgid "Featured (Sticky) Status"
45
  msgstr "Statut sélectionné (Post-it)"
46
 
47
+ #: admin/class-admin-listings.php:165
48
  msgctxt "admin"
49
  msgid "(Listing expired in this category)"
50
  msgstr "(Annonce expirée dans cette catégorie) "
51
 
52
+ #: admin/class-admin-listings.php:183 admin/class-admin-listings.php:266
53
  msgid "Paid"
54
  msgstr "Payé"
55
 
56
+ #: admin/class-admin-listings.php:188
57
  msgid "Mark as"
58
  msgstr "Marqué comme"
59
 
60
+ #: admin/class-admin-listings.php:197 admin/class-admin-listings.php:276
61
  msgid "Pending Upgrade"
62
  msgstr "Mise à jour nécessaire"
63
 
64
+ #: admin/class-admin-listings.php:205 admin/listing-metabox.php:68
65
  msgid "Upgrade to %s"
66
  msgstr "Mettre à jour vers %s"
67
 
68
+ #: admin/class-admin-listings.php:212 admin/listing-metabox.php:75
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"
76
 
77
+ #: admin/class-admin-listings.php:271
78
  msgid "Unpaid"
79
  msgstr "Impayé"
80
 
81
+ #: admin/class-admin-listings.php:281
82
  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"
227
  msgid "Uninstall"
228
  msgstr "Désinstaller"
229
 
230
+ #: admin/class-admin.php:410
231
  #: admin/templates/listing-metabox-categories.tpl.php:69
232
  msgctxt "admin infometabox"
233
  msgid "never"
234
  msgstr "jamais"
235
 
236
+ #: admin/class-admin.php:492
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
244
  msgctxt "admin"
245
  msgid "The listing status has been set as paid."
246
  msgid_plural "The listings status has been set as paid."
247
  msgstr[0] "Le statut de l'annonce a été défini comme étant payée."
248
  msgstr[1] "Le statut des annocnes a été défini comme étant payées."
249
 
250
+ #: admin/class-admin.php:517
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
258
  msgctxt "admin"
259
  msgid "The listing has been upgraded."
260
  msgid_plural "The listings have been upgraded."
261
  msgstr[0] "L'annonce a été mise à jour."
262
  msgstr[1] "Les annonces ont été mise à jour."
263
 
264
+ #: admin/class-admin.php:542
265
  msgctxt "admin"
266
  msgid "The listing has been downgraded."
267
  msgid_plural "The listings have been downgraded."
268
  msgstr[0] "L'annonce a été rétrogradée."
269
  msgstr[1] "Les annonces ont été rétrogradées."
270
 
271
+ #: admin/class-admin.php:554
272
  msgctxt "admin"
273
  msgid "The transaction has been approved."
274
  msgstr "La transaction a été approuvée."
275
 
276
+ #: admin/class-admin.php:562
277
  msgctxt "admin"
278
  msgid "The transaction has been rejected."
279
  msgstr "La transaction a été rejetée."
280
 
281
+ #: admin/class-admin.php:568
282
  msgctxt "admin"
283
  msgid "The fee was successfully assigned."
284
  msgstr "Les frais ont bien été assignés."
285
 
286
+ #: admin/class-admin.php:577
287
  msgctxt "admin"
288
  msgid "Listing was renewed."
289
  msgid_plural "Listings were renewed."
290
  msgstr[0] "L'annonce a été renouvelée."
291
  msgstr[1] "Les annonces ont été renouvelées."
292
 
293
+ #: admin/class-admin.php:584
294
  msgctxt "admin"
295
  msgid "Renewal email sent."
296
  msgstr "Email de renouvellement envoyé"
297
 
298
+ #: admin/class-admin.php:618
299
  msgctxt "admin category id"
300
  msgid "ID"
301
  msgstr "ID"
302
 
303
+ #: admin/class-admin.php:620 admin/class-admin.php:626
304
  msgctxt "admin"
305
  msgid "Listing Count"
306
  msgstr "Compteur d'annonces"
307
 
308
+ #: admin/class-admin.php:735
309
  msgctxt "admin"
310
  msgid ""
311
  "<b>Business Directory Plugin</b> requires fields with the following "
314
  "<b>Plugin d'Annuaire Professionnel</b> requiert des champs avec les "
315
  "associations suivantes pour marcher correctement: <b>%s</b>"
316
 
317
+ #: admin/class-admin.php:737
318
  msgctxt "admin"
319
  msgid ""
320
  "<b>Business Directory Plugin</b> requires a field with a <b>%s</b> "
323
  "<b>Plugin d'Annuaire Professionnel</b> requiert un champ avec un <b>%s</b> "
324
  "association en ordre pour marcher correctement."
325
 
326
+ #: admin/class-admin.php:741
327
  msgctxt "admin"
328
  msgid ""
329
  "You can create these custom fields by yourself inside \"Manage Form Fields\" "
332
  "Vous pouvez créer ces champs personnalisés pas vous-mêmes dans \"Gestion des "
333
  "Champs\" ou laissez le plugin le faire pour vous automatiquement."
334
 
335
+ #: admin/class-admin.php:745
336
  msgctxt "admin"
337
  msgid "Go to \"Manage Form Fields\""
338
  msgstr "Aller à \"Gestion des Champs\""
339
 
340
+ #: admin/class-admin.php:748
341
  msgctxt "admin"
342
  msgid "Create these required fields for me"
343
  msgstr "Créer ces champs obligatoires pour moi"
344
 
345
+ #: admin/class-admin.php:757
346
  msgctxt "admin"
347
  msgid ""
348
  "<b>Business Directory Plugin</b> requires a page with the "
351
  "<b>Business Directory Plugin</b> requiert une page avec le code "
352
  "d'activation <tt>[businessdirectory]</tt> pour marcher correctement."
353
 
354
+ #: admin/class-admin.php:759
355
  msgctxt "admin"
356
  msgid ""
357
  "You can create this page by yourself or let Business Directory do this for "
360
  "Vous pouvez créer cette page par vous-mêmes ou laisser le plugin la faire "
361
  "pour vous automatiquement."
362
 
363
+ #: admin/class-admin.php:763
364
  msgctxt "admin"
365
  msgid "Create required pages for me"
366
  msgstr "Créer les pages requises pour moi."
367
 
368
+ #: admin/class-admin.php:803
369
  msgctxt "admin compat"
370
  msgid "Installed: %s"
371
  msgstr "Installé: %s"
372
 
373
+ #: admin/class-admin.php:803
374
  msgctxt "admin compat"
375
  msgid "N/A"
376
  msgstr "N/A"
377
 
378
+ #: admin/class-admin.php:806
379
  msgctxt "admin compat"
380
  msgid "Required: %s"
381
  msgstr "Requis: %s"
382
 
383
+ #: admin/class-admin.php:819
384
  msgctxt "admin compat"
385
  msgid ""
386
  "Business Directory has detected some incompatible premium module versions "
389
  "Le plugin a détecté une/des modules incomptatible de la version premium "
390
  "installé."
391
 
392
+ #: admin/class-admin.php:821
393
  msgctxt "admin compat"
394
  msgid ""
395
  "Please upgrade to the required versions indicated below to make sure "
398
  "Veuillez mettre à jour vers la version requise, indiquée ci-dessous, pour "
399
  "assurer le bon fonctionnement des fonctions. "
400
 
401
+ #: admin/class-admin.php:836
402
  msgctxt "admin"
403
  msgid ""
404
  "We noticed you want your Business Directory users to register before posting "
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"
432
  msgid "Directory Themes"
433
  msgstr "Catégories de l'annuaire"
434
 
435
+ #: admin/class-themes-admin.php:45
436
  #, fuzzy
437
  msgctxt "themes"
438
  msgid "Directory Themes %s"
439
  msgstr "Catégories de l'annuaire"
440
 
441
+ #: admin/class-themes-admin.php:100
442
  msgctxt "themes"
443
  msgid "Could not change the active theme to \"%s\"."
444
  msgstr "Vous ne pouvez pas changer le thème actif pour \"%s\""
445
 
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"
537
  msgid "Could not create a temporary directory for handling this CSV export."
620
  msgid "fees"
621
  msgstr "frais"
622
 
623
+ #: admin/fees.php:19
624
+ msgctxt "fees admin"
625
+ msgid "There are no fees right now. You can <a>create one</a>, if you want."
626
+ msgstr ""
627
+
628
+ #: admin/fees.php:25 admin/fees.php:260
629
+ #, fuzzy
630
+ msgctxt "fees admin"
631
+ msgid "Active"
632
+ msgstr "Actif"
633
+
634
+ #: admin/fees.php:28 admin/fees.php:258
635
+ #, fuzzy
636
+ msgctxt "fees admin"
637
+ msgid "Not Available"
638
+ msgstr "Emplacements d'image disponibles:"
639
+
640
+ #: admin/fees.php:31 admin/fees.php:255
641
+ #, fuzzy
642
+ msgctxt "fees admin"
643
+ msgid "Disabled"
644
+ msgstr "Effacer les Frais"
645
+
646
+ #: admin/fees.php:39
647
  msgctxt "fees admin"
648
+ msgid ""
649
+ "There are no \"%s\" fees right now. You can <a>create one</a>, if you want."
650
+ msgstr ""
651
 
652
+ #: admin/fees.php:56
653
+ #, fuzzy
654
+ msgctxt "admin fees table"
655
+ msgid "All"
656
+ msgstr "Toutes"
657
+
658
+ #: admin/fees.php:68
659
+ #, fuzzy
660
+ msgctxt "admin fees table"
661
+ msgid "Active"
662
+ msgstr "Actif"
663
+
664
+ #: admin/fees.php:78
665
+ #, fuzzy
666
+ msgctxt "admin fees table"
667
+ msgid "Not Available"
668
+ msgstr "Emplacements d'image disponibles:"
669
+
670
+ #: admin/fees.php:85
671
+ #, fuzzy
672
+ msgctxt "admin fees table"
673
+ msgid "Disabled"
674
+ msgstr "Effacer les Frais"
675
+
676
+ #: admin/fees.php:94
677
  msgctxt "fees admin"
678
  msgid "Label"
679
  msgstr "Etiquette"
680
 
681
+ #: admin/fees.php:95
682
  msgctxt "fees admin"
683
  msgid "Amount"
684
  msgstr "Montant"
685
 
686
+ #: admin/fees.php:96
687
  msgctxt "fees admin"
688
  msgid "Duration"
689
  msgstr "Durée"
690
 
691
+ #: admin/fees.php:97
692
  msgctxt "fees admin"
693
  msgid "Images"
694
  msgstr "Images"
695
 
696
+ #: admin/fees.php:98
697
+ #, fuzzy
698
  msgctxt "fees admin"
699
+ msgid "Featured/Sticky"
700
+ msgstr "Statut sélectionné (Post-it)"
701
 
702
+ #: admin/fees.php:102
703
+ #, fuzzy
704
  msgctxt "fees admin"
705
+ msgid "Status"
706
+ msgstr "Statut"
 
 
 
 
707
 
708
+ #: admin/fees.php:155
709
  msgctxt "fees admin"
710
+ msgid ""
711
+ "This is the default free plan for your directory. You can't delete it and "
712
+ "it's always free, but you can edit the name and other settings. It's only "
713
+ "available when the directory is in Free mode. You can always create other "
714
+ "fee plans, including ones for 0.00 (free) if you wish."
715
  msgstr ""
716
 
717
+ #: admin/fees.php:187
718
  msgctxt "fees admin"
719
  msgid "Edit"
720
  msgstr "Editer"
721
 
722
+ #: admin/fees.php:197
723
  msgctxt "fees admin"
724
  msgid "Disable"
725
  msgstr ""
726
 
727
+ #: admin/fees.php:201
728
+ msgctxt "fees admin"
729
+ msgid "Enable"
730
+ msgstr ""
731
+
732
+ #: admin/fees.php:205
733
  msgctxt "fees admin"
734
  msgid "Delete"
735
  msgstr "Effacer"
736
 
737
+ #: admin/fees.php:226
738
  msgctxt "fees admin"
739
  msgid "Forever"
740
  msgstr "Pour toujours"
741
 
742
+ #: admin/fees.php:227
743
  msgctxt "fees admin"
744
  msgid "%d day"
745
  msgid_plural "%d days"
746
  msgstr[0] "%d jour"
747
  msgstr[1] "%d jours"
748
 
749
+ #: admin/fees.php:231
750
  msgctxt "fees admin"
751
  msgid "%d image"
752
  msgid_plural "%d images"
753
  msgstr[0] "%d image"
754
  msgstr[1] "%d images"
755
 
756
+ #: admin/fees.php:236
757
  msgctxt "fees admin"
758
  msgid "All categories"
759
  msgstr "Toutes catégories"
760
 
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
774
+ msgctxt "fees admin"
775
+ 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"
786
  msgid "Label"
787
  msgstr "Etiquette"
788
 
789
+ #: admin/fees.php:319
790
  msgctxt "fees order"
791
  msgid "Amount"
792
  msgstr "Montant"
793
 
794
+ #: admin/fees.php:320
795
  msgctxt "fees order"
796
  msgid "Duration"
797
  msgstr "Durée"
798
 
799
+ #: admin/fees.php:321
800
  msgctxt "fees order"
801
  msgid "Images"
802
  msgstr "Images"
803
 
804
+ #: admin/fees.php:322
805
  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"
813
 
814
+ #: admin/fees.php:364
815
  msgctxt "fees admin"
816
  msgid "Fee deleted."
817
  msgstr "Frais effacé"
1733
  msgstr "Nombre d'images autorisées"
1734
 
1735
  #: admin/templates/fees-addoredit.tpl.php:94
1736
+ #, fuzzy
1737
  msgctxt "fees admin"
1738
+ msgid "Is featured listing/sticky?"
1739
+ msgstr "Annonces prioritaires."
1740
+
1741
+ #: admin/templates/fees-addoredit.tpl.php:102
1742
+ msgctxt "fees admin"
1743
+ msgid ""
1744
+ "This floats the listing to the top of search results and browsing the "
1745
+ "directory when the user buys this plan."
1746
  msgstr ""
1747
 
1748
+ #: admin/templates/fees-addoredit.tpl.php:107
1749
  msgctxt "fees admin"
1750
  msgid "Apply to category"
1751
  msgstr "Appliquer à la catégorie"
1752
 
1753
+ #: admin/templates/fees-addoredit.tpl.php:111
1754
+ #: admin/templates/fees-addoredit.tpl.php:114
1755
  msgctxt "fees admin"
1756
  msgid "* All Categories *"
1757
  msgstr "Toutes Catégories"
1758
 
1759
+ #: admin/templates/fees-addoredit.tpl.php:134
1760
  msgctxt "fees admin"
1761
  msgid "Add Fee"
1762
  msgstr "Ajouter des Frais"
1763
 
1764
+ #: admin/templates/fees-addoredit.tpl.php:134
1765
  msgctxt "fees admin"
1766
  msgid "Update Fee"
1767
  msgstr "Mettre à jour les Frais"
1812
  "Pour régler le montant des honoraires, vous devez aller à la page <a>Réglage "
1813
  "des Options de Paiement</a> et activer"
1814
 
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"
1822
  msgid "↑ Ascending"
1823
  msgstr "↑ Ascendant"
1824
 
1825
+ #: admin/templates/fees.tpl.php:32
1826
  msgctxt "fees admin"
1827
  msgid "↓ Descending"
1828
  msgstr "↓ Descendant"
1829
 
1830
+ #: admin/templates/fees.tpl.php:38
1831
  msgctxt "fees admin"
1832
  msgid "Drag and drop to re-order fees."
1833
  msgstr "Glisser-déposer pour réorganiser les frais."
1834
 
1835
+ #: admin/templates/fees.tpl.php:54
1836
+ msgctxt "fees admin"
1837
+ msgid ""
1838
+ "These are all of the fee plans displayed to the user when they place a "
1839
+ "listing. Your current mode of \"%s\" restricts what you see here. Those on "
1840
+ "the <a>Not Available</a> filter will become active when you change the "
1841
+ "payment mode."
1842
+ msgstr ""
1843
+
1844
+ #: admin/templates/fees.tpl.php:57 admin/templates/fees.tpl.php:63
1845
+ #: admin/templates/fees.tpl.php:77
1846
+ #, fuzzy
1847
+ msgctxt "fees admin"
1848
+ msgid "Paid"
1849
+ msgstr "Payé"
1850
+
1851
+ #: admin/templates/fees.tpl.php:57 admin/templates/fees.tpl.php:63
1852
+ #: admin/templates/fees.tpl.php:77
1853
+ #, fuzzy
1854
+ msgctxt "fees admin"
1855
+ msgid "Free"
1856
+ msgstr "Gratuit"
1857
+
1858
+ #: admin/templates/fees.tpl.php:60
1859
+ msgctxt "fees admin"
1860
+ msgid ""
1861
+ "These are all of the fee plans that aren't available because you're in \"%s"
1862
+ "\" mode. Those on the Active filter will become Not Available when you "
1863
+ "change the payment mode."
1864
+ msgstr ""
1865
+
1866
+ #: admin/templates/fees.tpl.php:66
1867
+ msgctxt "fees admin"
1868
+ msgid ""
1869
+ "These fee plans were disabled by the admin and will not show to the end user "
1870
+ "regardless of mode until you enable them."
1871
+ msgstr ""
1872
+
1873
+ #: admin/templates/fees.tpl.php:74
1874
+ msgctxt "fees admin"
1875
+ msgid ""
1876
+ "These are all of the fee plans you have configured. Not all of them are "
1877
+ "available for the current mode (currently set to \"%s\"). To see the fee "
1878
+ "plans for this mode click <a>Active</a>."
1879
+ msgstr ""
1880
+
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"
1888
  msgid "2Checkout Gateway Module"
1889
  msgstr "Module de passerelle de vérification"
1890
 
1891
+ #: admin/templates/fees.tpl.php:91 admin/templates/sidebar.tpl.php:5
1892
  msgctxt "admin sidebar"
1893
  msgid "PayFast Payment Module"
1894
  msgstr "Module de paiement rapide"
1895
 
1896
+ #: admin/templates/fees.tpl.php:92 admin/templates/sidebar.tpl.php:6
1897
  msgctxt "admin sidebar"
1898
  msgid "Stripe Payment Module"
1899
  msgstr "Module de paiement par bande"
1900
 
1901
+ #: admin/templates/fees.tpl.php:102
1902
  msgctxt "admin templates"
1903
  msgid ""
1904
  "It does not appear you have any of the payment gateway modules enabled. "
1914
  "passerelles de paiement supplémentaires utilisez les boutons ci-dessous ou "
1915
  "visiter% s."
1916
 
1917
+ #: admin/templates/fees.tpl.php:118
1918
  msgctxt "admin templates"
1919
  msgid "Already installed."
1920
  msgstr "Déjà installé"
1921
 
1922
+ #: admin/templates/fees.tpl.php:123
1923
  msgctxt "admin templates"
1924
  msgid ""
1925
  "You can buy the <a>%s</a> to add <a>%s</a> as a payment option for your "
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"
2659
  msgid "Active:"
2660
  msgstr "Actif"
2661
 
2662
+ #: admin/templates/themes-item.tpl.php:13
2663
  msgctxt "themes"
2664
  msgid "Activate"
2665
  msgstr "Activer"
2666
 
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
2674
  msgctxt "themes"
2675
  msgid "Author:"
2676
  msgstr "Auteur"
2677
 
2678
+ #: admin/templates/themes-licenses.tpl.php:24
2679
+ #, fuzzy
2680
+ msgctxt "themes"
2681
+ msgid "Deactivate License"
2682
+ msgstr "Désactiver la license"
2683
+
2684
+ #: admin/templates/themes-licenses.tpl.php:27
2685
+ #, fuzzy
2686
+ msgctxt "themes"
2687
+ msgid "Deactivating license..."
2688
+ msgstr "Désactivation de la license..."
2689
+
2690
+ #: admin/templates/themes-licenses.tpl.php:29
2691
+ #, fuzzy
2692
+ msgctxt "themes"
2693
+ msgid "Activate License"
2694
+ msgstr "Activer la license"
2695
+
2696
+ #: admin/templates/themes-licenses.tpl.php:30
2697
+ #, fuzzy
2698
+ msgctxt "themes"
2699
+ msgid "Activating license..."
2700
+ msgstr "Activation de la license"
2701
+
2702
  #: admin/templates/transactions.tpl.php:2
2703
  msgctxt "admin transactions"
2704
  msgid "Transactions"
2905
  msgid "Listing category \"%s\" does not exist"
2906
  msgstr "La catégorie d'annonce \"%s\" n'existe pas"
2907
 
2908
+ #: core/class-fee-plan.php:46
2909
  msgctxt "fees-api"
2910
  msgid "Fee label is required."
2911
  msgstr "Une étiquette de frais est requise."
2912
 
2913
+ #: core/class-fee-plan.php:49
2914
  msgctxt "fees-api"
2915
  msgid "Fee amount must be a non-negative decimal number."
2916
  msgstr "Le montant des frais doit être un nombre décimal non-négatif."
2917
 
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"
2925
  msgid "Fee listing duration must be a number less than 10 years (3650 days)."
2926
  msgstr ""
2961
  msgid "\"%s\" is an invalid field type for this association."
2962
  msgstr "\" est un type de champ invalide pour cette association."
2963
 
2964
+ #: core/class-form-field.php:531
2965
  msgctxt "form-fields-api"
2966
  msgid "Invalid field ID"
2967
  msgstr "ID de champ invalide"
2968
 
2969
+ #: core/class-form-field.php:540
2970
  msgctxt "form-fields api"
2971
  msgid ""
2972
  "This form field can't be deleted because it is required for the plugin to "
2975
  "Ce champ de formulaire ne peut pas être supprimé car il est nécessaire pour "
2976
  "que le plugin fonctionne."
2977
 
2978
+ #: core/class-form-field.php:552
2979
  msgctxt "form-fields-api"
2980
  msgid "An error occurred while trying to delete this field."
2981
  msgstr "Une erreur est survenue en essayant de supprimer ce champ."
5102
  msgid "Destination dir \"%s\" is not writable."
5103
  msgstr "Le dossier \"%s\" n'est pas accessible en écriture"
5104
 
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"
5135
  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"
5146
  msgid ""
5147
  "<b>Business Directory Plugin - Regions Module</b> was disabled because it is "
5152
  "est incompatible avec la version actuelle du plugin. Veuillez mettre à jour "
5153
  "le module."
5154
 
5155
+ #: core/installer.php:550
5156
  msgctxt "installer"
5157
  msgid "Cleaning up listing fees information... %d/%d"
5158
  msgstr "Nettoyage des informations sur les droits d'inscription ... %d/%d"
5159
 
5160
+ #: core/installer.php:600
5161
  msgctxt "installer"
5162
  msgid "Migrating previous transactions to new Payments API... %d/%d"
5163
  msgstr ""
5164
  "Migration des transactions antérieures vers de nouveaux paiements API ... %d/"
5165
  "%d"
5166
 
5167
+ #: core/installer.php:629
5168
  msgctxt "installer"
5169
  msgid "Initial listing payment (BD < 3.4)"
5170
  msgstr "Annonce de paiement initial (BD<3.4)"
5171
 
5172
+ #: core/installer.php:640
5173
  msgctxt "installer"
5174
  msgid "Listing edit payment (BD < 3.4)"
5175
  msgstr "Edition de l'annonce de paiement (BD<3.4)"
5176
 
5177
+ #: core/installer.php:661
5178
  msgctxt "installer"
5179
  msgid "Renewal fee \"%s\" for category \"%s\""
5180
  msgstr "Renouvellement des frais \"%s\" pour la catégorie \"%s\""
5181
 
5182
+ #: core/installer.php:680
5183
  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
  "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
  "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 "
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\""
5316
  msgid "Could not deactivate license: %s."
5317
  msgstr "Impossible de désactiver la licence: %s."
5318
 
5319
+ #: core/payment.php:91
 
 
 
 
 
5320
  msgctxt "payments-api"
5321
  msgid ""
5322
  "You are offering featured listings but have payments turned off. Go to <a "
5329
  "paramètres de paiement. Jusqu'à ce que vous effectuiez les modifications "
5330
  "voulues, l'option <i> Mise à niveau en vedette </ i>sera désactivée."
5331
 
5332
+ #: core/payment.php:109
5333
  msgctxt "payments-api"
5334
  msgid ""
5335
  "The <b>%s</b> gateway is active but not properly configured. The gateway "
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"
5346
  msgid ""
5347
  "You have payments turned on but no gateway is active and properly "
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>."
5356
 
5357
+ #: core/payment.php:123
5358
  msgid ""
5359
  "BD detected PayFast and another gateway were enabled. This setup is not "
5360
  "recommended due to PayFast supporting only ZAR and the other gateways not "
5364
  "Cette configuration est déconseillée étant donné que PayFast supporte la "
5365
  "devise ZAR (Rand sud-africain) et pas les autres passerelles."
5366
 
5367
+ #: core/payment.php:127
5368
  msgid ""
5369
  "You have recurring renewal of listing fees enabled but the payment gateways "
5370
  "installed don't support recurring payments. Until a gateway that supports "
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"
5389
  msgid "Checkout"
5390
  msgstr "Vérification"
5391
 
5392
+ #: core/payment.php:170
5393
  msgctxt "payments-api"
5394
  msgid "Pay %1$s through %2$s"
5395
  msgstr "Payez %1$s par %2$s"
5396
 
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"
5404
  msgid "Payment Details"
5405
  msgstr "Détails de paiement"
5406
 
5407
+ #: core/payment.php:390
5408
  msgctxt "checkout"
5409
  msgid "Payment Method"
5410
  msgstr "Méthode de paiement"
5411
 
5412
+ #: core/payment.php:424
5413
  msgctxt "payment"
5414
  msgid "Return to Directory."
5415
  msgstr "Retourner vers l'annuaire."
5416
 
5417
+ #: core/payment.php:431
5418
  msgctxt "payments"
5419
  msgid ""
5420
  "Your payment is being processed by the payment gateway. Please reload this "
5425
  "Veuillez recharger cette page dans un instant pour voir si la situation a "
5426
  "changé ou contactez l'administrateur du site."
5427
 
5428
+ #: core/payment.php:434
5429
  msgctxt "payments"
5430
  msgid ""
5431
  "The payment has been rejected by the payment gateway. Please contact the "
5437
  "\"Changer de Paiement \" pour sélectionner une autre méthode de paiement et "
5438
  "essayez à nouveau."
5439
 
5440
+ #: core/payment.php:435
5441
  msgctxt "payments"
5442
  msgid "Change Payment Method"
5443
  msgstr "Changer la méthode de paiement"
5444
 
5445
+ #: core/payment.php:437
5446
  msgctxt "payments"
5447
  msgid ""
5448
  "The payment has been rejected by the payment gateway. Please contact the "
5451
  "Le paiement a été rejeté par la passerelle de paiement. Veuillez contacter "
5452
  "l'administrateur du site si vous pensez qu'il y a une erreur."
5453
 
5454
+ #: core/payment.php:440
5455
  msgctxt "payments"
5456
  msgid "The payment has been canceled at your request."
5457
  msgstr "Le paiement a été annulé à votre demande."
5458
 
5459
+ #: core/payment.php:538
5460
  msgctxt "admin"
5461
  msgid "Pending Abandonment"
5462
  msgstr "Abandon en cours"
5463
 
5464
+ #: core/payment.php:543
5465
  msgctxt "admin"
5466
  msgid "Abandoned"
5467
  msgstr "Abandonné"
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"
5543
  "Les données affichées dépassent les configurations maximale permisent par "
5544
  "PHP. Voir les directive \"post_max_size\"."
5545
 
5546
+ #: core/utils.php:164
5547
  msgctxt "utils"
5548
  msgid "File size (%s) exceeds maximum file size of %s"
5549
  msgstr "La taille du fichier (%s) excède la taille maximale permise de %s"
5550
 
5551
+ #: core/utils.php:172
5552
  msgctxt "utils"
5553
  msgid "File size (%s) is inferior to the required minimum file size of %s"
5554
  msgstr ""
5555
  "La taille du fichier (%s) est inférieur au minimum de taille de fichier "
5556
  "requise de %s"
5557
 
5558
+ #: core/utils.php:181 core/utils.php:188
5559
  msgctxt "utils"
5560
  msgid "File type \"%s\" is not allowed"
5561
  msgstr "Le type de fichier \"%s\" n'est pas autorisé"
5562
 
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"
5570
  msgid "Uploaded file is not an image"
5571
  msgstr "Le fichier transféré n'est pas une image"
5572
 
5573
+ #: core/utils.php:223
5574
  msgctxt "utils"
5575
  msgid "Image width (%s px) is inferior to minimum required width of %s px."
5576
  msgstr ""
5577
  "La largeur de l'image (%s px) est inférieur à la largeur minimum requise de "
5578
  "%s px."
5579
 
5580
+ #: core/utils.php:229
5581
  msgctxt "utils"
5582
  msgid "Image height (%s px) is inferior to minimum required height of %s px."
5583
  msgstr ""
5584
  "La hauteur de l'image (%s px) est inférieur à la hauteur minimum requise de "
5585
  "%s px."
5586
 
5587
+ #: core/utils.php:235
5588
  msgctxt "utils"
5589
  msgid "Image width (%s px) is greater than maximum allowed width of %s px."
5590
  msgstr ""
5591
  "La largeur de l'image (%s px) est supérieur à la largeur maximum requise de "
5592
  "%s px."
5593
 
5594
+ #: core/utils.php:241
5595
  msgctxt "utils"
5596
  msgid "Image height (%s px) is greater than maximum required height of %s px."
5597
  msgstr ""
5598
  "La hauteur de l'image (%s px) est supérieure à la hauteur maximum requise de "
5599
  "%s px."
5600
 
5601
+ #: core/utils.php:255
5602
  msgctxt "utils"
5603
  msgid "Error while uploading file"
5604
  msgstr "Erreur durant l'upload du fichier"
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"
5862
  msgid "The reCAPTCHA wasn't entered correctly."
5863
  msgstr "Le CAPTCHA n'a pas été rentré correctement."
5864
 
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"
5882
  msgid "Fee \"%s\" for category \"%s\"%s"
5883
  msgstr "Frais \"%s\" pour la catégorie \"%s\"%s"
5884
 
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"
5892
  msgid "Listing upgrade to featured"
5893
  msgstr "Mise à jour de l'annonce vers prioritaire"
5894
 
5895
+ #: core/view-submit-listing.php:495
5896
  msgctxt "submit_state"
5897
  msgid "Invalid submit state."
5898
  msgstr "Etat de soumission invalide"
6460
  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"
6471
  msgid "Unlimited"
6472
  msgstr "Illimité"
6473
 
6474
+ #: templates/parts/category-fee-selection.tpl.php:52
6475
  msgctxt "templates"
6476
  msgid "%d day"
6477
  msgid_plural "%d days"
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."
6835
+
6836
+ #~ msgctxt "fees admin"
6837
+ #~ msgid "Applied To"
6838
+ #~ msgstr "Appliqué à"
6839
+
6840
  #~ msgctxt "admin settings"
6841
  #~ msgid "Registration"
6842
  #~ msgstr "Enregistrement"
6949
  #~ msgid "Listing"
6950
  #~ msgstr "Annonce"
6951
 
 
 
 
 
6952
  #~ msgctxt "admin transactions"
6953
  #~ msgid "Amount"
6954
  #~ msgstr "Montant"
languages/WPBDM.pot CHANGED
@@ -1,111 +1,109 @@
1
  # Copyright (C) 2016 Business Directory Plugin
2
  # This file is distributed under the same license as the Business Directory Plugin package.
3
- #, fuzzy
4
  msgid ""
5
  msgstr ""
6
- "Project-Id-Version: Business Directory Plugin 3.6.13\n"
7
  "Report-Msgid-Bugs-To: http://wordpress.org/tag/business-directory-plugin\n"
8
- "POT-Creation-Date: 2016-01-18 15:21-0500\n"
9
  "MIME-Version: 1.0\n"
10
  "Content-Type: text/plain; charset=UTF-8\n"
11
  "Content-Transfer-Encoding: 8bit\n"
12
  "PO-Revision-Date: 2016-MO-DA HO:MI+ZONE\n"
13
  "Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
14
- "Language-Team: BD Team <support@businessdirectoryplugin.com>\n"
15
- "X-Generator: Poedit 1.8.5\n"
16
 
17
  #: admin/class-admin-listings.php:39
18
  msgctxt "admin category filter"
19
  msgid "All categories"
20
  msgstr ""
21
 
22
- #: admin/class-admin-listings.php:111
23
  msgid "Listing Information"
24
  msgstr ""
25
 
26
- #: admin/class-admin-listings.php:118
27
  msgctxt "admin"
28
  msgid "Listing Fields / Images"
29
  msgstr ""
30
 
31
- #: admin/class-admin-listings.php:129
32
  msgctxt "admin"
33
  msgid "Categories"
34
  msgstr ""
35
 
36
- #: admin/class-admin-listings.php:130
37
  msgid "Payment Status"
38
  msgstr ""
39
 
40
- #: admin/class-admin-listings.php:131
41
  msgid "Featured (Sticky) Status"
42
  msgstr ""
43
 
44
- #: admin/class-admin-listings.php:162
45
  msgctxt "admin"
46
  msgid "(Listing expired in this category)"
47
  msgstr ""
48
 
49
- #: admin/class-admin-listings.php:180 admin/class-admin-listings.php:263
50
  msgid "Paid"
51
  msgstr ""
52
 
53
- #: admin/class-admin-listings.php:185
54
  msgid "Mark as"
55
  msgstr ""
56
 
57
- #: admin/class-admin-listings.php:194 admin/class-admin-listings.php:273
58
  msgid "Pending Upgrade"
59
  msgstr ""
60
 
61
- #: admin/class-admin-listings.php:202 admin/listing-metabox.php:68
62
  msgid "Upgrade to %s"
63
  msgstr ""
64
 
65
- #: admin/class-admin-listings.php:209 admin/listing-metabox.php:75
66
  msgid "Downgrade to %s"
67
  msgstr ""
68
 
69
- #: admin/class-admin-listings.php:212 admin/class-admin-listings.php:392
70
  msgctxt "admin actions"
71
  msgid "Upgrade to Featured"
72
  msgstr ""
73
 
74
- #: admin/class-admin-listings.php:268
75
  msgid "Unpaid"
76
  msgstr ""
77
 
78
- #: admin/class-admin-listings.php:278
79
  msgctxt "admin"
80
  msgid "Expired"
81
  msgstr ""
82
 
83
- #: admin/class-admin-listings.php:328
84
  msgctxt "admin actions"
85
  msgid "Edit Listing"
86
  msgstr ""
87
 
88
- #: admin/class-admin-listings.php:331
89
  msgctxt "admin actions"
90
  msgid "Delete Listing"
91
  msgstr ""
92
 
93
- #: admin/class-admin-listings.php:390
94
  msgctxt "admin actions"
95
  msgid "Publish Listing"
96
  msgstr ""
97
 
98
- #: admin/class-admin-listings.php:393
99
  msgctxt "admin actions"
100
  msgid "Downgrade to Normal"
101
  msgstr ""
102
 
103
- #: admin/class-admin-listings.php:395
104
  msgctxt "admin actions"
105
  msgid "Mark as Paid"
106
  msgstr ""
107
 
108
- #: admin/class-admin-listings.php:397
109
  msgctxt "admin actions"
110
  msgid "Renew Listing"
111
  msgstr ""
@@ -113,9 +111,9 @@ msgstr ""
113
  #: admin/class-admin.php:124
114
  msgctxt "drip pointer"
115
  msgid ""
116
- "Find out how to create a compelling, thriving business directory from scratch in this "
117
- "ridiculously actionable (and FREE) 5-part email course. Get a FREE premium module just "
118
- "for signing up."
119
  msgstr ""
120
 
121
  #: admin/class-admin.php:126
@@ -218,167 +216,169 @@ msgctxt "admin menu"
218
  msgid "Uninstall"
219
  msgstr ""
220
 
221
- #: admin/class-admin.php:408 admin/templates/listing-metabox-categories.tpl.php:69
 
222
  msgctxt "admin infometabox"
223
  msgid "never"
224
  msgstr ""
225
 
226
- #: admin/class-admin.php:490
227
  msgctxt "admin"
228
  msgid "The listing has been published."
229
  msgid_plural "The listings have been published."
230
  msgstr[0] ""
231
  msgstr[1] ""
232
 
233
- #: admin/class-admin.php:503
234
  msgctxt "admin"
235
  msgid "The listing status has been set as paid."
236
  msgid_plural "The listings status has been set as paid."
237
  msgstr[0] ""
238
  msgstr[1] ""
239
 
240
- #: admin/class-admin.php:515
241
  msgctxt "admin"
242
  msgid "The listing has been modified."
243
  msgid_plural "The listings have been modified."
244
  msgstr[0] ""
245
  msgstr[1] ""
246
 
247
- #: admin/class-admin.php:528
248
  msgctxt "admin"
249
  msgid "The listing has been upgraded."
250
  msgid_plural "The listings have been upgraded."
251
  msgstr[0] ""
252
  msgstr[1] ""
253
 
254
- #: admin/class-admin.php:540
255
  msgctxt "admin"
256
  msgid "The listing has been downgraded."
257
  msgid_plural "The listings have been downgraded."
258
  msgstr[0] ""
259
  msgstr[1] ""
260
 
261
- #: admin/class-admin.php:552
262
  msgctxt "admin"
263
  msgid "The transaction has been approved."
264
  msgstr ""
265
 
266
- #: admin/class-admin.php:560
267
  msgctxt "admin"
268
  msgid "The transaction has been rejected."
269
  msgstr ""
270
 
271
- #: admin/class-admin.php:566
272
  msgctxt "admin"
273
  msgid "The fee was successfully assigned."
274
  msgstr ""
275
 
276
- #: admin/class-admin.php:575
277
  msgctxt "admin"
278
  msgid "Listing was renewed."
279
  msgid_plural "Listings were renewed."
280
  msgstr[0] ""
281
  msgstr[1] ""
282
 
283
- #: admin/class-admin.php:582
284
  msgctxt "admin"
285
  msgid "Renewal email sent."
286
  msgstr ""
287
 
288
- #: admin/class-admin.php:616
289
  msgctxt "admin category id"
290
  msgid "ID"
291
  msgstr ""
292
 
293
- #: admin/class-admin.php:618 admin/class-admin.php:624
294
  msgctxt "admin"
295
  msgid "Listing Count"
296
  msgstr ""
297
 
298
- #: admin/class-admin.php:733
299
  msgctxt "admin"
300
  msgid ""
301
- "<b>Business Directory Plugin</b> requires fields with the following associations in "
302
- "order to work correctly: <b>%s</b>."
303
  msgstr ""
304
 
305
- #: admin/class-admin.php:735
306
  msgctxt "admin"
307
  msgid ""
308
- "<b>Business Directory Plugin</b> requires a field with a <b>%s</b> association in order "
309
- "to work correctly."
310
  msgstr ""
311
 
312
- #: admin/class-admin.php:739
313
  msgctxt "admin"
314
  msgid ""
315
- "You can create these custom fields by yourself inside \"Manage Form Fields\" or let "
316
- "Business Directory do this for you automatically."
317
  msgstr ""
318
 
319
- #: admin/class-admin.php:743
320
  msgctxt "admin"
321
  msgid "Go to \"Manage Form Fields\""
322
  msgstr ""
323
 
324
- #: admin/class-admin.php:746
325
  msgctxt "admin"
326
  msgid "Create these required fields for me"
327
  msgstr ""
328
 
329
- #: admin/class-admin.php:755
330
  msgctxt "admin"
331
  msgid ""
332
- "<b>Business Directory Plugin</b> requires a page with the <tt>[businessdirectory]</tt> "
333
- "shortcode to function properly."
334
  msgstr ""
335
 
336
- #: admin/class-admin.php:757
337
  msgctxt "admin"
338
  msgid ""
339
- "You can create this page by yourself or let Business Directory do this for you "
340
- "automatically."
341
  msgstr ""
342
 
343
- #: admin/class-admin.php:761
344
  msgctxt "admin"
345
  msgid "Create required pages for me"
346
  msgstr ""
347
 
348
- #: admin/class-admin.php:801
349
  msgctxt "admin compat"
350
  msgid "Installed: %s"
351
  msgstr ""
352
 
353
- #: admin/class-admin.php:801
354
  msgctxt "admin compat"
355
  msgid "N/A"
356
  msgstr ""
357
 
358
- #: admin/class-admin.php:804
359
  msgctxt "admin compat"
360
  msgid "Required: %s"
361
  msgstr ""
362
 
363
- #: admin/class-admin.php:817
364
  msgctxt "admin compat"
365
  msgid ""
366
- "Business Directory has detected some incompatible premium module versions installed."
 
367
  msgstr ""
368
 
369
- #: admin/class-admin.php:819
370
  msgctxt "admin compat"
371
  msgid ""
372
- "Please upgrade to the required versions indicated below to make sure everything "
373
- "functions properly."
374
  msgstr ""
375
 
376
- #: admin/class-admin.php:834
377
  msgctxt "admin"
378
  msgid ""
379
- "We noticed you want your Business Directory users to register before posting listings, "
380
- "but Registration for your site is currently disabled. Go [here] and check \"Anyone can "
381
- "register\" to make sure BD works properly."
382
  msgstr ""
383
 
384
  #: admin/class-listing-fields-metabox.php:21
@@ -386,7 +386,8 @@ msgctxt "admin"
386
  msgid "Listing Fields"
387
  msgstr ""
388
 
389
- #: admin/class-listing-fields-metabox.php:40 templates/submit-listing/images.tpl.php:12
 
390
  msgctxt "templates"
391
  msgid "Current Images"
392
  msgstr ""
@@ -396,91 +397,110 @@ msgctxt "templates"
396
  msgid "There are no images currently attached to the listing."
397
  msgstr ""
398
 
399
- #: admin/class-themes-admin.php:41
400
  msgctxt "themes"
401
  msgid "Directory Themes"
402
  msgstr ""
403
 
404
- #: admin/class-themes-admin.php:42
405
  msgctxt "themes"
406
  msgid "Directory Themes %s"
407
  msgstr ""
408
 
409
- #: admin/class-themes-admin.php:97
410
  msgctxt "themes"
411
  msgid "Could not change the active theme to \"%s\"."
412
  msgstr ""
413
 
414
- #: admin/class-themes-admin.php:144
415
  msgctxt "themes"
416
  msgid "Active theme changed to \"%s\"."
417
  msgstr ""
418
 
419
- #: admin/class-themes-admin.php:147
420
  msgctxt "themes"
421
- msgid "For better results, \"%s\" theme suggests the following form fields to be created."
 
 
422
  msgstr ""
423
 
424
- #: admin/class-themes-admin.php:154
425
  msgctxt "themes"
426
  msgid "Dismiss this warning"
427
  msgstr ""
428
 
429
- #: admin/class-themes-admin.php:157
430
  msgctxt "themes"
431
  msgid "Create suggested fields"
432
  msgstr ""
433
 
434
- #: admin/class-themes-admin.php:164
435
  msgctxt "themes"
436
  msgid "Suggested fields created successfully."
437
  msgstr ""
438
 
439
- #: admin/class-themes-admin.php:167
440
  msgctxt "themes"
441
  msgid "Theme installed successfully."
442
  msgstr ""
443
 
444
- #: admin/class-themes-admin.php:170
445
  msgctxt "themes"
446
  msgid "Theme was deleted sucessfully."
447
  msgstr ""
448
 
449
- #: admin/class-themes-admin.php:173
450
  msgctxt "themes"
451
  msgid "Could not delete theme directory. Check permissions."
452
  msgstr ""
453
 
454
- #: admin/class-themes-admin.php:199
455
  msgctxt "themes"
456
  msgid "Please upload a valid theme file."
457
  msgstr ""
458
 
459
- #: admin/class-themes-admin.php:206
460
  msgctxt "themes"
461
  msgid "Could not move \"%s\" to a temporary directory."
462
  msgstr ""
463
 
464
- #: admin/class-themes-admin.php:307 core/licensing.php:127 core/licensing.php:159
 
465
  msgctxt "licensing"
466
  msgid "Could not contact licensing server"
467
  msgstr ""
468
 
469
- #: admin/class-themes-admin.php:313 core/licensing.php:132 core/licensing.php:166
 
470
  msgctxt "licensing"
471
  msgid "License key is invalid"
472
  msgstr ""
473
 
474
- #: admin/class-themes-admin.php:318 core/licensing.php:330
475
  msgctxt "licensing"
476
  msgid "Could not activate license: %s."
477
  msgstr ""
478
 
479
- #: admin/class-themes-admin.php:331 core/licensing.php:332
480
  msgctxt "licensing"
481
  msgid "License activated"
482
  msgstr ""
483
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
484
  #: admin/csv-export.php:136
485
  msgctxt "admin csv-export"
486
  msgid "Could not create a temporary directory for handling this CSV export."
@@ -518,9 +538,9 @@ msgstr ""
518
 
519
  #: admin/csv-import.php:241
520
  msgid ""
521
- "A valid temporary directory with write permissions is required for CSV imports to "
522
- "function properly. Your server is using \"%s\" but this path does not seem to be "
523
- "writable. Please consult with your host."
524
  msgstr ""
525
 
526
  #: admin/csv-import.php:275
@@ -541,8 +561,8 @@ msgstr ""
541
  #: admin/csv-import.php:315
542
  msgctxt "admin csv-import"
543
  msgid ""
544
- "An error was detected while validating the CSV file for import. Please fix this before "
545
- "proceeding."
546
  msgstr ""
547
 
548
  #: admin/csv-import.php:324
@@ -560,119 +580,186 @@ msgctxt "fees admin"
560
  msgid "fees"
561
  msgstr ""
562
 
563
- #: admin/fees.php:16
564
  msgctxt "fees admin"
565
- msgid "You do not have any listing fees setup yet."
566
  msgstr ""
567
 
568
- #: admin/fees.php:22
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
569
  msgctxt "fees admin"
570
  msgid "Label"
571
  msgstr ""
572
 
573
- #: admin/fees.php:23
574
  msgctxt "fees admin"
575
  msgid "Amount"
576
  msgstr ""
577
 
578
- #: admin/fees.php:24
579
  msgctxt "fees admin"
580
  msgid "Duration"
581
  msgstr ""
582
 
583
- #: admin/fees.php:25
584
  msgctxt "fees admin"
585
  msgid "Images"
586
  msgstr ""
587
 
588
- #: admin/fees.php:26
589
  msgctxt "fees admin"
590
- msgid "Applied To"
591
  msgstr ""
592
 
593
- #: admin/fees.php:60
594
  msgctxt "fees admin"
595
- msgid ""
596
- "This is the <i>default</i> free plan for your directory. It can't be deleted or be "
597
- "anything but free and is only visible when your directory is in <i>free mode</i>. You "
598
- "can create other fee plans if you wish to charge for listings instead."
599
  msgstr ""
600
 
601
- #: admin/fees.php:73
602
  msgctxt "fees admin"
603
- msgid "Fee plan disabled because directory is in free mode."
 
 
 
 
604
  msgstr ""
605
 
606
- #: admin/fees.php:92
607
  msgctxt "fees admin"
608
  msgid "Edit"
609
  msgstr ""
610
 
611
- #: admin/fees.php:97
612
  msgctxt "fees admin"
613
  msgid "Disable"
614
  msgstr ""
615
 
616
- #: admin/fees.php:101
 
 
 
 
 
617
  msgctxt "fees admin"
618
  msgid "Delete"
619
  msgstr ""
620
 
621
- #: admin/fees.php:122
622
  msgctxt "fees admin"
623
  msgid "Forever"
624
  msgstr ""
625
 
626
- #: admin/fees.php:123
627
  msgctxt "fees admin"
628
  msgid "%d day"
629
  msgid_plural "%d days"
630
  msgstr[0] ""
631
  msgstr[1] ""
632
 
633
- #: admin/fees.php:127
634
  msgctxt "fees admin"
635
  msgid "%d image"
636
  msgid_plural "%d images"
637
  msgstr[0] ""
638
  msgstr[1] ""
639
 
640
- #: admin/fees.php:132
641
  msgctxt "fees admin"
642
  msgid "All categories"
643
  msgstr ""
644
 
645
- #: admin/fees.php:184
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
646
  msgctxt "fees order"
647
  msgid "Label"
648
  msgstr ""
649
 
650
- #: admin/fees.php:185
651
  msgctxt "fees order"
652
  msgid "Amount"
653
  msgstr ""
654
 
655
- #: admin/fees.php:186
656
  msgctxt "fees order"
657
  msgid "Duration"
658
  msgstr ""
659
 
660
- #: admin/fees.php:187
661
  msgctxt "fees order"
662
  msgid "Images"
663
  msgstr ""
664
 
665
- #: admin/fees.php:188
666
  msgctxt "fees order"
667
  msgid "Custom Order"
668
  msgstr ""
669
 
670
- #: admin/fees.php:207
671
  msgctxt "fees admin"
672
  msgid "Fee updated."
673
  msgstr ""
674
 
675
- #: admin/fees.php:230
676
  msgctxt "fees admin"
677
  msgid "Fee deleted."
678
  msgstr ""
@@ -755,9 +842,9 @@ msgstr ""
755
  #: admin/form-fields.php:174
756
  msgctxt "formfields-preview"
757
  msgid ""
758
- "This is a preview of the form as it will appear during \"Submit a Listing\". The users "
759
- "may not see all fields from \"Manage Form Fields\" because you have \"Featured Levels\" "
760
- "active and this is showing the base level."
761
  msgstr ""
762
 
763
  #: admin/form-fields.php:180
@@ -778,10 +865,10 @@ msgstr ""
778
  #: admin/form-fields.php:228
779
  msgctxt "form-fields admin"
780
  msgid ""
781
- "<b>Important</b>: Since the \"<a>Display email address fields publicly?</a>\" setting is "
782
- "disabled, display settings below will not be honored and this field will not be "
783
- "displayed on the frontend. If you want e-mail addresses to show on the frontend, you can "
784
- "<a>enable public display of e-mails</a>."
785
  msgstr ""
786
 
787
  #: admin/form-fields.php:262
@@ -936,17 +1023,18 @@ msgstr ""
936
  #: admin/templates/csv-export.tpl.php:9
937
  msgctxt "admin csv-export"
938
  msgid ""
939
- "An unknown error occurred during the export. Please make sure you have enough free disk "
940
- "space and memory available to PHP. Check your error logs for details."
 
941
  msgstr ""
942
 
943
  #: admin/templates/csv-export.tpl.php:18
944
  msgctxt "admin csv-export"
945
  msgid ""
946
- "Please note that the export process is a resource intensive task. If your export does "
947
- "not succeed try disabling other plugins first and/or increasing the values of the "
948
- "'memory_limit' and 'max_execution_time' directives in your server's php.ini "
949
- "configuration file."
950
  msgstr ""
951
 
952
  #: admin/templates/csv-export.tpl.php:30
@@ -992,8 +1080,8 @@ msgstr ""
992
  #: admin/templates/csv-export.tpl.php:56
993
  msgctxt "admin csv-export"
994
  msgid ""
995
- "When checked, instead of just a CSV file a ZIP file will be generated with both a CSV "
996
- "file and listing images."
997
  msgstr ""
998
 
999
  #: admin/templates/csv-export.tpl.php:62
@@ -1009,8 +1097,8 @@ msgstr ""
1009
  #: admin/templates/csv-export.tpl.php:69
1010
  msgctxt "admin csv-export"
1011
  msgid ""
1012
- "If you plan to re-import the listings into BD and don't want new ones created, select "
1013
- "this option!"
1014
  msgstr ""
1015
 
1016
  #: admin/templates/csv-export.tpl.php:75
@@ -1040,8 +1128,10 @@ msgstr ""
1040
 
1041
  #: admin/templates/csv-export.tpl.php:94 admin/templates/csv-export.tpl.php:105
1042
  #: admin/templates/csv-export.tpl.php:116 admin/templates/csv-import.tpl.php:43
1043
- #: admin/templates/csv-import.tpl.php:109 admin/templates/csv-import.tpl.php:120
1044
- #: admin/templates/csv-import.tpl.php:131 admin/templates/csv-import.tpl.php:158
 
 
1045
  msgctxt "admin forms"
1046
  msgid "required"
1047
  msgstr ""
@@ -1069,8 +1159,8 @@ msgstr ""
1069
  #: admin/templates/csv-export.tpl.php:135
1070
  msgctxt "admin csv-export"
1071
  msgid ""
1072
- "Your export file is being prepared. Please <u>do not leave</u> this page until the "
1073
- "export finishes."
1074
  msgstr ""
1075
 
1076
  #: admin/templates/csv-export.tpl.php:138
@@ -1095,7 +1185,9 @@ msgstr ""
1095
 
1096
  #: admin/templates/csv-export.tpl.php:153
1097
  msgctxt "admin csv-export"
1098
- msgid "Your export file has been successfully created and it is now ready for download."
 
 
1099
  msgstr ""
1100
 
1101
  #: admin/templates/csv-export.tpl.php:156
@@ -1106,8 +1198,8 @@ msgstr ""
1106
  #: admin/templates/csv-export.tpl.php:162
1107
  msgctxt "admin csv-export"
1108
  msgid ""
1109
- "Click \"Cleanup\" once the file has been downloaded in order to remove all temporary "
1110
- "data created by Business Directory during the export process."
1111
  msgstr ""
1112
 
1113
  #: admin/templates/csv-export.tpl.php:163
@@ -1138,9 +1230,9 @@ msgstr ""
1138
  #: admin/templates/csv-import-progress.tpl.php:10
1139
  msgctxt "admin csv-import"
1140
  msgid ""
1141
- "A fatal error occurred during the import. If connection wasn't lost during the import, "
1142
- "please make sure that you have enough free disk space and memory available to PHP. Check "
1143
- "your error logs for details."
1144
  msgstr ""
1145
 
1146
  #: admin/templates/csv-import-progress.tpl.php:14
@@ -1276,8 +1368,8 @@ msgstr ""
1276
  #: admin/templates/csv-import.tpl.php:29
1277
  msgctxt "admin csv-import"
1278
  msgid ""
1279
- "We strongly recommend reading our <a>CSV import documentation</a> first to help you do "
1280
- "things in the right order."
1281
  msgstr ""
1282
 
1283
  #: admin/templates/csv-import.tpl.php:38
@@ -1387,7 +1479,8 @@ msgstr ""
1387
 
1388
  #: admin/templates/csv-import.tpl.php:204
1389
  msgctxt "admin csv-import"
1390
- msgid "This user will be used if the username column is not present in the CSV file."
 
1391
  msgstr ""
1392
 
1393
  #: admin/templates/csv-import.tpl.php:209
@@ -1413,9 +1506,10 @@ msgstr ""
1413
  #: admin/templates/csv-import.tpl.php:229
1414
  msgctxt "admin csv-import"
1415
  msgid ""
1416
- "The following are the valid header names to be used in the CSV file. Multivalued fields "
1417
- "(such as category or tags) can appear multiple times in the file. Click <a href=\"%s\">"
1418
- "\"See an example CSV import file\"</a> to see how an import file should look like."
 
1419
  msgstr ""
1420
 
1421
  #: admin/templates/csv-import.tpl.php:236
@@ -1455,27 +1549,29 @@ msgstr ""
1455
 
1456
  #: admin/templates/csv-import.tpl.php:276
1457
  msgctxt "admin csv-import"
1458
- msgid "Internal Sequence ID used to allow listing updates from external sources."
 
1459
  msgstr ""
1460
 
1461
  #: admin/templates/csv-import.tpl.php:283
1462
  msgctxt "admin csv-import"
1463
  msgid ""
1464
- "Date of listing expiration formatted as YYYY-MM-DD. Use this column when adding or "
1465
- "updating listings from external sources."
1466
  msgstr ""
1467
 
1468
  #: admin/templates/debug-info.tpl.php:5
1469
  msgctxt "debug-info"
1470
  msgid ""
1471
- "The following information can help BD developers debug possible problems with your setup."
 
1472
  msgstr ""
1473
 
1474
  #: admin/templates/debug-info.tpl.php:6
1475
  msgctxt "debug-info"
1476
  msgid ""
1477
- "The debug information does not contain personal or sensitive information such as "
1478
- "passwords or private keys."
1479
  msgstr ""
1480
 
1481
  #: admin/templates/debug-info.tpl.php:9
@@ -1530,25 +1626,33 @@ msgstr ""
1530
 
1531
  #: admin/templates/fees-addoredit.tpl.php:94
1532
  msgctxt "fees admin"
1533
- msgid "Is sticky?"
 
 
 
 
 
 
 
1534
  msgstr ""
1535
 
1536
- #: admin/templates/fees-addoredit.tpl.php:106
1537
  msgctxt "fees admin"
1538
  msgid "Apply to category"
1539
  msgstr ""
1540
 
1541
- #: admin/templates/fees-addoredit.tpl.php:110 admin/templates/fees-addoredit.tpl.php:113
 
1542
  msgctxt "fees admin"
1543
  msgid "* All Categories *"
1544
  msgstr ""
1545
 
1546
- #: admin/templates/fees-addoredit.tpl.php:133
1547
  msgctxt "fees admin"
1548
  msgid "Add Fee"
1549
  msgstr ""
1550
 
1551
- #: admin/templates/fees-addoredit.tpl.php:133
1552
  msgctxt "fees admin"
1553
  msgid "Update Fee"
1554
  msgstr ""
@@ -1591,67 +1695,114 @@ msgstr ""
1591
  #: admin/templates/fees.tpl.php:13
1592
  msgctxt "fees admin"
1593
  msgid ""
1594
- "To manage fees you need to go to the <a>Manage Options - Payment</a> page and check the "
1595
- "box next to 'Turn On Payments' under 'Payment Settings'."
1596
  msgstr ""
1597
 
1598
- #: admin/templates/fees.tpl.php:22
1599
  msgctxt "fees admin"
1600
  msgid "Order fees on the frontend by:"
1601
  msgstr ""
1602
 
1603
- #: admin/templates/fees.tpl.php:30
1604
  msgctxt "fees admin"
1605
  msgid "↑ Ascending"
1606
  msgstr ""
1607
 
1608
- #: admin/templates/fees.tpl.php:30
1609
  msgctxt "fees admin"
1610
  msgid "↓ Descending"
1611
  msgstr ""
1612
 
1613
- #: admin/templates/fees.tpl.php:36
1614
  msgctxt "fees admin"
1615
  msgid "Drag and drop to re-order fees."
1616
  msgstr ""
1617
 
1618
- #: admin/templates/fees.tpl.php:48 admin/templates/sidebar.tpl.php:13
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1619
  msgctxt "admin sidebar"
1620
  msgid "PayPal Gateway Module"
1621
  msgstr ""
1622
 
1623
- #: admin/templates/fees.tpl.php:49 admin/templates/sidebar.tpl.php:14
1624
  msgctxt "admin sidebar"
1625
  msgid "2Checkout Gateway Module"
1626
  msgstr ""
1627
 
1628
- #: admin/templates/fees.tpl.php:50 admin/templates/sidebar.tpl.php:5
1629
  msgctxt "admin sidebar"
1630
  msgid "PayFast Payment Module"
1631
  msgstr ""
1632
 
1633
- #: admin/templates/fees.tpl.php:51 admin/templates/sidebar.tpl.php:6
1634
  msgctxt "admin sidebar"
1635
  msgid "Stripe Payment Module"
1636
  msgstr ""
1637
 
1638
- #: admin/templates/fees.tpl.php:61
1639
  msgctxt "admin templates"
1640
  msgid ""
1641
- "It does not appear you have any of the payment gateway modules enabled. Either <a>enable "
1642
- "the default Authorize.net gateway</a> with your account info, or purchase a different "
1643
- "payment gateway module in order to charge a fee for listings. To purchase additional "
1644
- "payment gateways use the buttons below or visit %s."
 
1645
  msgstr ""
1646
 
1647
- #: admin/templates/fees.tpl.php:77
1648
  msgctxt "admin templates"
1649
  msgid "Already installed."
1650
  msgstr ""
1651
 
1652
- #: admin/templates/fees.tpl.php:82
1653
  msgctxt "admin templates"
1654
- msgid "You can buy the <a>%s</a> to add <a>%s</a> as a payment option for your users."
 
 
1655
  msgstr ""
1656
 
1657
  #: admin/templates/form-fields-addoredit.tpl.php:1
@@ -1817,8 +1968,9 @@ msgstr ""
1817
  #: admin/templates/form-fields.tpl.php:13
1818
  msgctxt "form-fields admin"
1819
  msgid ""
1820
- "Here, you can create new fields for your listings, edit or delete existing ones, change "
1821
- "the order and visibility of the fields as well as configure special options for them."
 
1822
  msgstr ""
1823
 
1824
  #: admin/templates/form-fields.tpl.php:19
@@ -1826,6 +1978,7 @@ msgctxt "form-fields admin"
1826
  msgid "Please see the <a>Form Fields documentation</a> for more details."
1827
  msgstr ""
1828
 
 
1829
  #. Plugin Name of the plugin/theme
1830
  #: admin/templates/header.tpl.php:4
1831
  msgid "Business Directory Plugin"
@@ -1839,29 +1992,29 @@ msgstr ""
1839
  #: admin/templates/home.tpl.php:5
1840
  msgctxt "admin home"
1841
  msgid ""
1842
- "Thanks for choosing us. There's a lot you probably want to get done, so let's jump "
1843
- "right in!"
1844
  msgstr ""
1845
 
1846
  #: admin/templates/home.tpl.php:11
1847
  msgctxt "admin home"
1848
  msgid ""
1849
- "Our complete documentation is <a>here</a> which we encourage you to use while setting "
1850
- "things up."
1851
  msgstr ""
1852
 
1853
  #: admin/templates/home.tpl.php:14
1854
  msgctxt "admin home"
1855
  msgid ""
1856
- "We have some quick-start scenarios that you will find useful regarding setup and "
1857
- "configuration <a>here</a>."
1858
  msgstr ""
1859
 
1860
  #: admin/templates/home.tpl.php:18
1861
  msgctxt "admin home"
1862
  msgid ""
1863
- "If you have questions, please post a comment on <a>support forum</a> and we'll answer it "
1864
- "within 24 hours most days."
1865
  msgstr ""
1866
 
1867
  #: admin/templates/home.tpl.php:25
@@ -2045,7 +2198,9 @@ msgstr ""
2045
 
2046
  #: admin/templates/listing-metabox-fees.tpl.php:12
2047
  msgctxt "admin infometabox"
2048
- msgid "Note: In Free mode, the fee plans will always be set to \"Free Listing\" below."
 
 
2049
  msgstr ""
2050
 
2051
  #: admin/templates/listing-metabox-fees.tpl.php:22
@@ -2149,7 +2304,9 @@ msgid "← Return to \"Manage Options\""
2149
  msgstr ""
2150
 
2151
  #: admin/templates/settings-reset.tpl.php:10
2152
- msgid "Use this option if you want to go back to the original factory settings for BD."
 
 
2153
  msgstr ""
2154
 
2155
  #: admin/templates/settings-reset.tpl.php:11
@@ -2314,8 +2471,8 @@ msgctxt "themes admin"
2314
  msgid "Cancel"
2315
  msgstr ""
2316
 
2317
- #: admin/templates/themes-install.tpl.php:2 admin/templates/themes-licenses.tpl.php:3
2318
- #: admin/templates/themes.tpl.php:3
2319
  msgctxt "themes"
2320
  msgid "Upload Directory Theme"
2321
  msgstr ""
@@ -2340,21 +2497,41 @@ msgctxt "themes"
2340
  msgid "Active:"
2341
  msgstr ""
2342
 
2343
- #: admin/templates/themes-item.tpl.php:12
2344
  msgctxt "themes"
2345
  msgid "Activate"
2346
  msgstr ""
2347
 
2348
- #: admin/templates/themes-item.tpl.php:29
2349
  msgctxt "themes"
2350
  msgid "Version:"
2351
  msgstr ""
2352
 
2353
- #: admin/templates/themes-item.tpl.php:32
2354
  msgctxt "themes"
2355
  msgid "Author:"
2356
  msgstr ""
2357
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
2358
  #: admin/templates/transactions.tpl.php:2
2359
  msgctxt "admin transactions"
2360
  msgid "Transactions"
@@ -2388,8 +2565,9 @@ msgstr ""
2388
  #: admin/templates/uninstall-capture-form.tpl.php:16
2389
  msgctxt "uninstall"
2390
  msgid ""
2391
- "We're sorry to see you leave. Could you take 10 seconds and answer one question for us "
2392
- "to help us make the product better for everyone in the future?"
 
2393
  msgstr ""
2394
 
2395
  #: admin/templates/uninstall-capture-form.tpl.php:19
@@ -2435,8 +2613,9 @@ msgstr ""
2435
  #: admin/tracking.php:190
2436
  msgctxt "tracking"
2437
  msgid ""
2438
- "Can Business Directory keep track of your theme, plugins, and other non-personal, non-"
2439
- "identifying information to help us in testing the plugin for future releases?"
 
2440
  msgstr ""
2441
 
2442
  #: admin/tracking.php:192
@@ -2552,22 +2731,22 @@ msgctxt "admin csv-import"
2552
  msgid "Listing category \"%s\" does not exist"
2553
  msgstr ""
2554
 
2555
- #: core/class-fee-plan.php:45
2556
  msgctxt "fees-api"
2557
  msgid "Fee label is required."
2558
  msgstr ""
2559
 
2560
- #: core/class-fee-plan.php:48
2561
  msgctxt "fees-api"
2562
  msgid "Fee amount must be a non-negative decimal number."
2563
  msgstr ""
2564
 
2565
- #: core/class-fee-plan.php:51
2566
  msgctxt "fees-api"
2567
  msgid "Fee must apply to at least one category."
2568
  msgstr ""
2569
 
2570
- #: core/class-fee-plan.php:56
2571
  msgctxt "fees-api"
2572
  msgid "Fee listing duration must be a number less than 10 years (3650 days)."
2573
  msgstr ""
@@ -2595,7 +2774,8 @@ msgstr ""
2595
  #: core/class-form-field.php:480
2596
  msgctxt "form-fields-api"
2597
  msgid ""
2598
- "There can only be one field with association \"%s\". Please select another association."
 
2599
  msgstr ""
2600
 
2601
  #: core/class-form-field.php:490
@@ -2603,17 +2783,19 @@ msgctxt "form-fields-api"
2603
  msgid "\"%s\" is an invalid field type for this association."
2604
  msgstr ""
2605
 
2606
- #: core/class-form-field.php:527
2607
  msgctxt "form-fields-api"
2608
  msgid "Invalid field ID"
2609
  msgstr ""
2610
 
2611
- #: core/class-form-field.php:536
2612
  msgctxt "form-fields api"
2613
- msgid "This form field can't be deleted because it is required for the plugin to work."
 
 
2614
  msgstr ""
2615
 
2616
- #: core/class-form-field.php:548
2617
  msgctxt "form-fields-api"
2618
  msgid "An error occurred while trying to delete this field."
2619
  msgstr ""
@@ -2741,8 +2923,8 @@ msgstr ""
2741
  #: core/class-settings.php:29
2742
  msgctxt "admin settings"
2743
  msgid ""
2744
- "Allow BD to anonymously collect information about your installed plugins, themes and WP "
2745
- "version?"
2746
  msgstr ""
2747
 
2748
  #: core/class-settings.php:34
@@ -2767,7 +2949,8 @@ msgstr ""
2767
 
2768
  #: core/class-settings.php:39
2769
  msgctxt "admin settings"
2770
- msgid "The slug can't be in use by another term. Avoid \"category\", for instance."
 
2771
  msgstr ""
2772
 
2773
  #: core/class-settings.php:40
@@ -2788,8 +2971,9 @@ msgstr ""
2788
  #: core/class-settings.php:46
2789
  msgctxt "admin settings"
2790
  msgid ""
2791
- "Prior to 3.5.1, we included the ID in the listing URL, like \"/business-directory/1809/"
2792
- "listing-title\". Check this setting to remove the ID for better SEO."
 
2793
  msgstr ""
2794
 
2795
  #: core/class-settings.php:50
@@ -2829,10 +3013,10 @@ msgstr ""
2829
 
2830
  #: core/class-settings.php:68
2831
  msgid ""
2832
- "We expect that a membership plugin supports the 'redirect_to' parameter for the URLs "
2833
- "below to work. If the plugin does not support them, these settings will not function as "
2834
- "expected. Please contact the membership plugin and ask them to support the WP standard "
2835
- "'redirect_to' query parameter."
2836
  msgstr ""
2837
 
2838
  #: core/class-settings.php:71
@@ -2853,8 +3037,8 @@ msgstr ""
2853
  #: core/class-settings.php:80
2854
  msgctxt "admin settings"
2855
  msgid ""
2856
- "URL of your membership plugin's login page. Only enter this if using a membership "
2857
- "plugin or custom login page."
2858
  msgstr ""
2859
 
2860
  #: core/class-settings.php:85
@@ -2865,8 +3049,8 @@ msgstr ""
2865
  #: core/class-settings.php:88
2866
  msgctxt "admin settings"
2867
  msgid ""
2868
- "URL of your membership plugin's registration page. Only enter this if using a "
2869
- "membership plugin or custom registration page."
2870
  msgstr ""
2871
 
2872
  #: core/class-settings.php:93 core/class-settings.php:102
@@ -2882,8 +3066,8 @@ msgstr ""
2882
  #: core/class-settings.php:105
2883
  msgctxt "admin settings"
2884
  msgid ""
2885
- "Enter text or a URL starting with http. If you use a URL, the Terms and Conditions text "
2886
- "will be replaced by a link to the appropiate page."
2887
  msgstr ""
2888
 
2889
  #: core/class-settings.php:109
@@ -2939,15 +3123,17 @@ msgstr ""
2939
  #: core/class-settings.php:137
2940
  msgctxt "admin settings"
2941
  msgid ""
2942
- "You have selected a textarea field to be included in quick searches. Searches involving "
2943
- "those fields are very expensive and could result in timeouts and/or general slowness."
 
2944
  msgstr ""
2945
 
2946
  #: core/class-settings.php:139
2947
  msgctxt "admin settings"
2948
  msgid ""
2949
- "Use Ctrl-Click to include multiple fields in the search. Choosing too many fields for "
2950
- "inclusion into Quick Search can result in very slow search performance."
 
2951
  msgstr ""
2952
 
2953
  #: core/class-settings.php:142
@@ -2963,8 +3149,9 @@ msgstr ""
2963
  #: core/class-settings.php:153
2964
  msgctxt "admin settings"
2965
  msgid ""
2966
- "Enabling this makes BD sacrifice result quality to improve speed. This is helpful if "
2967
- "you're on shared hosting plans, where database performance is an issue."
 
2968
  msgstr ""
2969
 
2970
  #: core/class-settings.php:158
@@ -2975,16 +3162,16 @@ msgstr ""
2975
  #: core/class-settings.php:162
2976
  msgctxt "admin settings"
2977
  msgid ""
2978
- "Check this if you are having trouble with BD, particularly when importing or exporting "
2979
- "CSV files."
2980
  msgstr ""
2981
 
2982
  #: core/class-settings.php:165
2983
  msgctxt "admin settings"
2984
  msgid ""
2985
- "If this compatibility mode doesn't solve your issue, you may be experiencing a more "
2986
- "serious conflict. <a>Here is an article</a> about how to test for theme and plugin "
2987
- "conflicts with Business Directory."
2988
  msgstr ""
2989
 
2990
  #: core/class-settings.php:168
@@ -2997,7 +3184,8 @@ msgctxt "admin settings"
2997
  msgid "Listings"
2998
  msgstr ""
2999
 
3000
- #: core/class-settings.php:177 core/class-settings.php:324 core/class-settings.php:610
 
3001
  msgctxt "admin settings"
3002
  msgid "General Settings"
3003
  msgstr ""
@@ -3009,7 +3197,9 @@ msgstr ""
3009
 
3010
  #: core/class-settings.php:180
3011
  msgctxt "admin settings"
3012
- msgid "Number of listings to show per page. Use a value of \"0\" to show all listings."
 
 
3013
  msgstr ""
3014
 
3015
  #: core/class-settings.php:182
@@ -3020,8 +3210,8 @@ msgstr ""
3020
  #: core/class-settings.php:183
3021
  msgctxt "admin settings"
3022
  msgid ""
3023
- "Use a value of \"0\" to keep a listing alive indefinitely or enter a number less than 10 "
3024
- "years (3650 days)."
3025
  msgstr ""
3026
 
3027
  #: core/class-settings.php:189
@@ -3032,8 +3222,8 @@ msgstr ""
3032
  #: core/class-settings.php:192
3033
  msgctxt "admin settings"
3034
  msgid ""
3035
- "Allows visitors to contact listing authors privately. Authors will receive the messages "
3036
- "via email."
3037
  msgstr ""
3038
 
3039
  #: core/class-settings.php:195
@@ -3048,7 +3238,9 @@ msgstr ""
3048
 
3049
  #: core/class-settings.php:204
3050
  msgctxt "admin settings"
3051
- msgid "Use this to prevent spamming of listing owners. 0 means unlimited submits per day."
 
 
3052
  msgstr ""
3053
 
3054
  #: core/class-settings.php:210
@@ -3059,8 +3251,8 @@ msgstr ""
3059
  #: core/class-settings.php:213
3060
  msgctxt "admin settings"
3061
  msgid ""
3062
- "Allow visitors to discuss listings using the standard WordPress comment form. Comments "
3063
- "are public."
3064
  msgstr ""
3065
 
3066
  #: core/class-settings.php:214
@@ -3096,8 +3288,8 @@ msgstr ""
3096
  #: core/class-settings.php:227
3097
  msgctxt "admin settings"
3098
  msgid ""
3099
- "Allow users to opt in for automatic renewal of their listings. The fee is charged at the "
3100
- "time the listing expires without user intervention."
3101
  msgstr ""
3102
 
3103
  #: core/class-settings.php:231
@@ -3107,7 +3299,9 @@ msgstr ""
3107
 
3108
  #: core/class-settings.php:234
3109
  msgctxt "admin settings"
3110
- msgid "Enable automatic renewal without having users opt in during the submit process."
 
 
3111
  msgstr ""
3112
 
3113
  #: core/class-settings.php:239
@@ -3117,12 +3311,14 @@ msgstr ""
3117
 
3118
  #: core/class-settings.php:242
3119
  msgctxt "admin settings"
3120
- msgid "Configure how many days before listing expiration is the renewal e-mail sent."
 
3121
  msgstr ""
3122
 
3123
  #: core/class-settings.php:246
3124
  msgctxt "admin settings"
3125
- msgid "Send expiration notices including a cancel links to auto-renewed listings?"
 
3126
  msgstr ""
3127
 
3128
  #: core/class-settings.php:253
@@ -3138,8 +3334,8 @@ msgstr ""
3138
  #: core/class-settings.php:261
3139
  msgctxt "admin settings"
3140
  msgid ""
3141
- "Configure how many days after the expiration of a listing an e-mail reminder should be "
3142
- "sent to the owner."
3143
  msgstr ""
3144
 
3145
  #: core/class-settings.php:264
@@ -3300,8 +3496,8 @@ msgstr ""
3300
  #: core/class-settings.php:318
3301
  msgctxt "admin settings"
3302
  msgid ""
3303
- "You can upgrade your listing to featured status. Featured listings will always appear on "
3304
- "top of regular listings."
3305
  msgstr ""
3306
 
3307
  #: core/class-settings.php:323
@@ -3317,8 +3513,9 @@ msgstr ""
3317
  #: core/class-settings.php:330
3318
  msgctxt "admin settings"
3319
  msgid ""
3320
- "Shows the email address of the listing owner to all web users. NOT RECOMMENDED as this "
3321
- "increases spam to the address and allows spam bots to harvest it for future use."
 
3322
  msgstr ""
3323
 
3324
  #: core/class-settings.php:333
@@ -3329,8 +3526,8 @@ msgstr ""
3329
  #: core/class-settings.php:336
3330
  msgctxt "admin settings"
3331
  msgid ""
3332
- "This affects emails sent to listing owners via contact forms or when their listings "
3333
- "expire."
3334
  msgstr ""
3335
 
3336
  #: core/class-settings.php:343
@@ -3428,7 +3625,8 @@ msgctxt "admin settings"
3428
  msgid "Sent after a listing has been submitted."
3429
  msgstr ""
3430
 
3431
- #: core/class-settings.php:394 core/class-settings.php:402 core/class-settings.php:443
 
3432
  msgctxt "admin settings"
3433
  msgid "Listing's title"
3434
  msgstr ""
@@ -3441,8 +3639,8 @@ msgstr ""
3441
  #: core/class-settings.php:400
3442
  msgctxt "admin settings"
3443
  msgid ""
3444
- "Your listing \"[listing]\" is now available at [listing-url] and can be viewed by the "
3445
- "public."
3446
  msgstr ""
3447
 
3448
  #: core/class-settings.php:401
@@ -3462,7 +3660,9 @@ msgstr ""
3462
 
3463
  #: core/class-settings.php:411
3464
  msgctxt "admin settings"
3465
- msgid "Sent to listing owners when someone uses the contact form on their listing pages."
 
 
3466
  msgstr ""
3467
 
3468
  #: core/class-settings.php:421
@@ -3493,8 +3693,8 @@ msgstr ""
3493
  #: core/class-settings.php:453
3494
  msgctxt "admin settings"
3495
  msgid ""
3496
- "This section refers only to the text of the renewal/expiration notices. You can also "
3497
- "<a>configure when the e-mails are sent</a>."
3498
  msgstr ""
3499
 
3500
  #: core/class-settings.php:457
@@ -3504,22 +3704,27 @@ msgstr ""
3504
 
3505
  #: core/class-settings.php:461
3506
  msgctxt "settings"
3507
- msgid "Sent some time before the listing expires. Applies to non-recurring renewals only."
 
 
3508
  msgstr ""
3509
 
3510
- #: core/class-settings.php:462 core/class-settings.php:475 core/class-settings.php:488
3511
- #: core/class-settings.php:501 core/class-settings.php:514
 
3512
  msgctxt "settings"
3513
  msgid "Listing's name (with link)"
3514
  msgstr ""
3515
 
3516
- #: core/class-settings.php:463 core/class-settings.php:476 core/class-settings.php:489
3517
- #: core/class-settings.php:502 core/class-settings.php:515
 
3518
  msgctxt "settings"
3519
  msgid "Author's name"
3520
  msgstr ""
3521
 
3522
- #: core/class-settings.php:464 core/class-settings.php:477 core/class-settings.php:516
 
3523
  msgctxt "settings"
3524
  msgid "Expiration date"
3525
  msgstr ""
@@ -3529,13 +3734,15 @@ msgctxt "settings"
3529
  msgid "Category that is going to expire"
3530
  msgstr ""
3531
 
3532
- #: core/class-settings.php:466 core/class-settings.php:479 core/class-settings.php:518
 
3533
  msgctxt "settings"
3534
  msgid "Link to renewal page"
3535
  msgstr ""
3536
 
3537
- #: core/class-settings.php:467 core/class-settings.php:480 core/class-settings.php:492
3538
- #: core/class-settings.php:505 core/class-settings.php:519
 
3539
  msgctxt "settings"
3540
  msgid "Link to your site"
3541
  msgstr ""
@@ -3547,7 +3754,9 @@ msgstr ""
3547
 
3548
  #: core/class-settings.php:474
3549
  msgctxt "settings"
3550
- msgid "Sent at the time of listing expiration. Applies to non-recurring renewals only."
 
 
3551
  msgstr ""
3552
 
3553
  #: core/class-settings.php:478 core/class-settings.php:517
@@ -3563,7 +3772,8 @@ msgstr ""
3563
  #: core/class-settings.php:487
3564
  msgctxt "settings"
3565
  msgid ""
3566
- "Sent some time before the listing is auto-renewed. Applies to recurring renewals only."
 
3567
  msgstr ""
3568
 
3569
  #: core/class-settings.php:490 core/class-settings.php:504
@@ -3588,7 +3798,8 @@ msgstr ""
3588
 
3589
  #: core/class-settings.php:500
3590
  msgctxt "settings"
3591
- msgid "Sent after the listing is auto-renewed. Applies to recurring renewals only."
 
3592
  msgstr ""
3593
 
3594
  #: core/class-settings.php:503
@@ -3604,8 +3815,8 @@ msgstr ""
3604
  #: core/class-settings.php:513
3605
  msgctxt "settings"
3606
  msgid ""
3607
- "Sent some time after listing expiration and when no renewal has occurred. Applies to "
3608
- "both recurring and non-recurring renewals."
3609
  msgstr ""
3610
 
3611
  #: core/class-settings.php:523
@@ -3636,8 +3847,8 @@ msgstr ""
3636
  #: core/class-settings.php:537
3637
  msgctxt "admin settings"
3638
  msgid ""
3639
- "Recommended for added security. For this to work you need to enable HTTPS on your server "
3640
- "and <a>obtain an SSL certificate</a>."
3641
  msgstr ""
3642
 
3643
  #: core/class-settings.php:541
@@ -3798,8 +4009,8 @@ msgstr ""
3798
  #: core/class-settings.php:584
3799
  msgctxt "admin settings"
3800
  msgid ""
3801
- "Thank you for your payment. Your payment is being verified and your listing reviewed. "
3802
- "The verification and review process could take up to 48 hours."
3803
  msgstr ""
3804
 
3805
  #: core/class-settings.php:589
@@ -3810,10 +4021,10 @@ msgstr ""
3810
  #: core/class-settings.php:592
3811
  msgctxt "admin settings"
3812
  msgid ""
3813
- "An abandoned payment is when a user attempts to place a listing and gets to the end, but "
3814
- "fails to complete their payment for the listing. This results in listings that look like "
3815
- "they failed, when the user simply didn't complete the transaction. BD can remind them "
3816
- "to come back and continue."
3817
  msgstr ""
3818
 
3819
  #: core/class-settings.php:598
@@ -3824,8 +4035,8 @@ msgstr ""
3824
  #: core/class-settings.php:603
3825
  msgctxt "admin settings"
3826
  msgid ""
3827
- "Listings with pending payments are marked as abandoned after this time. You can also "
3828
- "<a>customize the e-mail</a> users receive."
3829
  msgstr ""
3830
 
3831
  #: core/class-settings.php:609
@@ -3856,9 +4067,10 @@ msgstr ""
3856
  #: core/class-settings.php:628
3857
  msgctxt "admin settings"
3858
  msgid ""
3859
- "Any changes to these settings will affect new listings only. Existing listings will not "
3860
- "be affected. If you wish to change existing listings, you will need to re-upload the "
3861
- "image(s) on that listing after changing things here."
 
3862
  msgstr ""
3863
 
3864
  #: core/class-settings.php:629
@@ -3908,7 +4120,8 @@ msgstr ""
3908
 
3909
  #: core/class-settings.php:641
3910
  msgctxt "admin settings"
3911
- msgid "Uncheck if it conflicts with other elements or plugins installed on your site"
 
3912
  msgstr ""
3913
 
3914
  #: core/class-settings.php:643
@@ -3934,10 +4147,10 @@ msgstr ""
3934
  #: core/class-settings.php:651
3935
  msgctxt "admin settings"
3936
  msgid ""
3937
- "When enabled images will match exactly the dimensions above but part of the image may be "
3938
- "cropped out. If disabled, image thumbnails will be resized to match the specified width "
3939
- "and their height will be adjusted proportionally. Depending on the uploaded images, "
3940
- "thumbnails may have different heights."
3941
  msgstr ""
3942
 
3943
  #: core/class-settings.php:657
@@ -3948,8 +4161,8 @@ msgstr ""
3948
  #: core/class-settings.php:662
3949
  msgctxt "admin settings"
3950
  msgid ""
3951
- "For paid listing images, configure that by adding or editing a <a>Fee Plan</a> instead "
3952
- "of this setting, which is ignored for paid listings."
3953
  msgstr ""
3954
 
3955
  #: core/class-settings.php:665
@@ -3965,21 +4178,22 @@ msgstr ""
3965
  #: core/class-settings.php:722
3966
  msgctxt "admin settings"
3967
  msgid ""
3968
- "Could not copy the AJAX compatibility plugin \"%s\". Compatibility mode was not "
3969
- "activated."
3970
  msgstr ""
3971
 
3972
  #: core/class-settings.php:730
3973
  msgctxt "admin settings"
3974
  msgid ""
3975
- "Could not activate AJAX Compatibility mode: the directory \"%s\" could not be created."
 
3976
  msgstr ""
3977
 
3978
  #: core/class-settings.php:739
3979
  msgctxt "admin settings"
3980
  msgid ""
3981
- "Could not remove the \"Business Directory Plugin - AJAX Compatibility Module\". Please "
3982
- "remove the file \"%s\" manually or deactivate the plugin."
3983
  msgstr ""
3984
 
3985
  #: core/class-settings.php:1057
@@ -4258,7 +4472,8 @@ msgstr ""
4258
  #: core/fieldtypes/class-fieldtypes-textarea.php:60
4259
  msgctxt "form-fields admin"
4260
  msgid ""
4261
- "<b>Warning:</b> Users can use this feature to get around your image limits in fee plans."
 
4262
  msgstr ""
4263
 
4264
  #: core/fieldtypes/class-fieldtypes-textarea.php:61
@@ -4269,8 +4484,8 @@ msgstr ""
4269
  #: core/fieldtypes/class-fieldtypes-textarea.php:64
4270
  msgctxt "form-fields admin"
4271
  msgid ""
4272
- "<b>Advanced users only!</b> Unless you've been told to change this, don't switch it "
4273
- "unless you know what you're doing."
4274
  msgstr ""
4275
 
4276
  #: core/fieldtypes/class-fieldtypes-textarea.php:65
@@ -4492,15 +4707,15 @@ msgstr ""
4492
  #: core/gateways-authorize-net.php:92
4493
  msgctxt "authorize-net"
4494
  msgid ""
4495
- "The payment gateway didn't accept your credit card or billing information. The following "
4496
- "reason was given: \"%s\"."
4497
  msgstr ""
4498
 
4499
  #: core/gateways-authorize-net.php:96
4500
  msgctxt "authorize-net"
4501
  msgid ""
4502
- "Your payment is being held for review by the payment gateway. The following reason was "
4503
- "given: \"%s\"."
4504
  msgstr ""
4505
 
4506
  #: core/gateways-authorize-net.php:99 core/gateways-authorize-net.php:122
@@ -4563,118 +4778,125 @@ msgctxt "fs helper"
4563
  msgid "Destination dir \"%s\" is not writable."
4564
  msgstr ""
4565
 
4566
- #: core/helpers/class-themes-updater.php:126
4567
  msgctxt "themes"
4568
  msgid "Updating theme..."
4569
  msgstr ""
4570
 
4571
- #: core/helpers/class-themes-updater.php:127
4572
  msgctxt "themes"
4573
  msgid "Theme updated."
4574
  msgstr ""
4575
 
4576
- #: core/helpers/class-themes-updater.php:129
4577
  msgctxt "themes"
4578
  msgid "New version available (<b>%s</b>). <a>Update now.</a>"
4579
  msgstr ""
4580
 
4581
- #: core/helpers/class-themes-updater.php:157
4582
  msgctxt "themes"
4583
  msgid "Could not update theme: %s"
4584
  msgstr ""
4585
 
4586
- #: core/helpers/class-themes-updater.php:163
4587
  msgctxt "themes"
4588
  msgid "Theme was updated sucessfully."
4589
  msgstr ""
4590
 
4591
- #: core/installer.php:38
4592
  msgctxt "default category name"
4593
  msgid "General"
4594
  msgstr ""
4595
 
4596
- #: core/installer.php:471
 
 
 
 
 
4597
  msgctxt "installer"
4598
  msgid ""
4599
  "<b>Business Directory Plugin - Regions Module</b> was disabled because it is "
4600
- "incompatible with the current version of Business Directory. Please update the Regions "
4601
- "module."
4602
  msgstr ""
4603
 
4604
- #: core/installer.php:537
4605
  msgctxt "installer"
4606
  msgid "Cleaning up listing fees information... %d/%d"
4607
  msgstr ""
4608
 
4609
- #: core/installer.php:587
4610
  msgctxt "installer"
4611
  msgid "Migrating previous transactions to new Payments API... %d/%d"
4612
  msgstr ""
4613
 
4614
- #: core/installer.php:616
4615
  msgctxt "installer"
4616
  msgid "Initial listing payment (BD < 3.4)"
4617
  msgstr ""
4618
 
4619
- #: core/installer.php:627
4620
  msgctxt "installer"
4621
  msgid "Listing edit payment (BD < 3.4)"
4622
  msgstr ""
4623
 
4624
- #: core/installer.php:648
4625
  msgctxt "installer"
4626
  msgid "Renewal fee \"%s\" for category \"%s\""
4627
  msgstr ""
4628
 
4629
- #: core/installer.php:667
4630
  msgctxt "installer"
4631
  msgid "Listing upgrade to featured"
4632
  msgstr ""
4633
 
4634
- #: core/installer.php:909
4635
  msgid "Business Directory - Manual Upgrade Required"
4636
  msgstr ""
4637
 
4638
- #: core/installer.php:911
4639
  msgid ""
4640
- "Business Directory features are currently disabled because the plugin needs to perform a "
4641
- "manual upgrade before continuing."
4642
  msgstr ""
4643
 
4644
- #: core/installer.php:913
4645
  msgid "Perform Manual Upgrade"
4646
  msgstr ""
4647
 
4648
- #: core/installer.php:929 core/installer.php:930 core/installer.php:941
4649
  msgid "Business Directory - Manual Upgrade"
4650
  msgstr ""
4651
 
4652
- #: core/installer.php:945
4653
  msgid ""
4654
- "Business Directory features are currently disabled because the plugin needs to perform a "
4655
- "manual upgrade before it can be used."
4656
  msgstr ""
4657
 
4658
- #: core/installer.php:947
4659
  msgid "Click \"Start Upgrade\" and wait until the process finishes."
4660
  msgstr ""
4661
 
4662
- #: core/installer.php:950
4663
  msgctxt "manual-upgrade"
4664
  msgid "Start Upgrade"
4665
  msgstr ""
4666
 
4667
- #: core/installer.php:952
4668
  msgctxt "manual-upgrade"
4669
  msgid "Pause Upgrade"
4670
  msgstr ""
4671
 
4672
- #: core/installer.php:958
4673
  msgctxt "manual-upgrade"
4674
- msgid "The upgrade was sucessfully performed. Business Directory Plugin is now available."
 
 
4675
  msgstr ""
4676
 
4677
- #: core/installer.php:961
4678
  msgctxt "manual-upgrade"
4679
  msgid "Go to \"Directory Admin\""
4680
  msgstr ""
@@ -4712,8 +4934,9 @@ msgstr ""
4712
  #: core/licensing.php:233
4713
  msgctxt "licensing"
4714
  msgid ""
4715
- "The following premium modules will not work until a valid license key is provided. Go to "
4716
- "<a>Manage Options - Licenses</a> to enter your license information."
 
4717
  msgstr ""
4718
 
4719
  #: core/licensing.php:254
@@ -4724,9 +4947,9 @@ msgstr ""
4724
  #: core/licensing.php:255
4725
  msgctxt "licensing"
4726
  msgid ""
4727
- "The license key for <span class=\"module-name\">%s %s</span> has expired. The module "
4728
- "will continue to work but you will not receive any more updates until the license is "
4729
- "renewed."
4730
  msgstr ""
4731
 
4732
  #: core/licensing.php:259
@@ -4744,138 +4967,147 @@ msgctxt "licensing"
4744
  msgid "Could not deactivate license: %s."
4745
  msgstr ""
4746
 
4747
- #: core/licensing.php:350
4748
- msgctxt "licensing"
4749
- msgid "License deactivated"
4750
- msgstr ""
4751
-
4752
- #: core/payment.php:89
4753
  msgctxt "payments-api"
4754
  msgid ""
4755
- "You are offering featured listings but have payments turned off. Go to <a href=\"%s"
4756
- "\">Manage Options - Payment</a> to change the payment settings. Until you change this, "
4757
- "the <i>Upgrade to Featured</i> option will be disabled."
 
4758
  msgstr ""
4759
 
4760
- #: core/payment.php:107
4761
  msgctxt "payments-api"
4762
  msgid ""
4763
- "The <b>%s</b> gateway is active but not properly configured. The gateway won't be "
4764
- "available until the following problems are fixed: <b>%s</b>. <br/> Check the <a href=\"%s"
4765
- "\">payment settings</a>."
4766
  msgstr ""
4767
 
4768
- #: core/payment.php:117
4769
  msgctxt "admin"
4770
  msgid ""
4771
- "You have payments turned on but no gateway is active and properly configured. Go to <a "
4772
- "href=\"%s\">Manage Options - Payment</a> to change the payment settings. Until you "
4773
- "change this, the directory will operate in <i>Free Mode</i>."
 
4774
  msgstr ""
4775
 
4776
- #: core/payment.php:121
4777
  msgid ""
4778
- "BD detected PayFast and another gateway were enabled. This setup is not recommended due "
4779
- "to PayFast supporting only ZAR and the other gateways not supporting this currency."
 
4780
  msgstr ""
4781
 
4782
- #: core/payment.php:125
4783
  msgid ""
4784
- "You have recurring renewal of listing fees enabled but the payment gateways installed "
4785
- "don't support recurring payments. Until a gateway that supports recurring payments (such "
4786
- "as PayPal) is enabled automatic renewals will be disabled."
 
4787
  msgstr ""
4788
 
4789
- #: core/payment.php:158
 
 
 
 
 
 
 
4790
  msgctxt "payments-api"
4791
  msgid "Checkout"
4792
  msgstr ""
4793
 
4794
- #: core/payment.php:159
4795
  msgctxt "payments-api"
4796
  msgid "Pay %1$s through %2$s"
4797
  msgstr ""
4798
 
4799
- #: core/payment.php:166
4800
  msgctxt "payments-api"
4801
  msgid "Your transaction has been approved."
4802
  msgstr ""
4803
 
4804
- #: core/payment.php:352
4805
  msgctxt "payments"
4806
  msgid "Payment Details"
4807
  msgstr ""
4808
 
4809
- #: core/payment.php:379
4810
  msgctxt "checkout"
4811
  msgid "Payment Method"
4812
  msgstr ""
4813
 
4814
- #: core/payment.php:413
4815
  msgctxt "payment"
4816
  msgid "Return to Directory."
4817
  msgstr ""
4818
 
4819
- #: core/payment.php:420
4820
  msgctxt "payments"
4821
  msgid ""
4822
- "Your payment is being processed by the payment gateway. Please reload this page in a "
4823
- "moment to see if the status has changed or contact the site administrator."
 
4824
  msgstr ""
4825
 
4826
- #: core/payment.php:423
4827
  msgctxt "payments"
4828
  msgid ""
4829
- "The payment has been rejected by the payment gateway. Please contact the site "
4830
- "administrator if you think there is an error or click \"Change Payment Method\" to "
4831
- "select another payment method and try again."
4832
  msgstr ""
4833
 
4834
- #: core/payment.php:424
4835
  msgctxt "payments"
4836
  msgid "Change Payment Method"
4837
  msgstr ""
4838
 
4839
- #: core/payment.php:426
4840
  msgctxt "payments"
4841
  msgid ""
4842
- "The payment has been rejected by the payment gateway. Please contact the site "
4843
- "administrator if you think there is an error."
4844
  msgstr ""
4845
 
4846
- #: core/payment.php:429
4847
  msgctxt "payments"
4848
  msgid "The payment has been canceled at your request."
4849
  msgstr ""
4850
 
4851
- #: core/payment.php:527
4852
  msgctxt "admin"
4853
  msgid "Pending Abandonment"
4854
  msgstr ""
4855
 
4856
- #: core/payment.php:532
4857
  msgctxt "admin"
4858
  msgid "Abandoned"
4859
  msgstr ""
4860
 
4861
- #: core/templates/listing-sticky-tag.tpl.php:3 core/templates/listing-sticky-tag.tpl.php:4
4862
- #: core/templates-listings.php:60
4863
  msgctxt "templates"
4864
  msgid "Featured Listing"
4865
  msgstr ""
4866
 
4867
- #: core/templates/listings.tpl.php:6 templates/businessdirectory-listings.tpl.php:27
4868
- #: templates/search.tpl.php:21
4869
  msgctxt "templates"
4870
  msgid "No listings found."
4871
  msgstr ""
4872
 
4873
- #: core/templates/listings.tpl.php:17 templates/businessdirectory-listings.tpl.php:38
 
4874
  msgctxt "templates"
4875
  msgid "&laquo; Previous "
4876
  msgstr ""
4877
 
4878
- #: core/templates/listings.tpl.php:18 templates/businessdirectory-listings.tpl.php:39
 
4879
  msgctxt "templates"
4880
  msgid "Next &raquo;"
4881
  msgstr ""
@@ -4905,77 +5137,78 @@ msgctxt "sort"
4905
  msgid "(Reset)"
4906
  msgstr ""
4907
 
4908
- #: core/themes.php:587
4909
  msgctxt "themes"
4910
  msgid "ZIP file is not a valid BD theme file."
4911
  msgstr ""
4912
 
4913
- #: core/themes.php:593
4914
  msgctxt "themes"
4915
  msgid "Could not create themes directory."
4916
  msgstr ""
4917
 
4918
- #: core/themes.php:601
4919
  msgctxt "themes"
4920
  msgid "Could not remove previous theme directory \"%s\"."
4921
  msgstr ""
4922
 
4923
- #: core/themes.php:607
4924
  msgctxt "themes"
4925
  msgid "Could not move new theme into theme directory."
4926
  msgstr ""
4927
 
4928
  #: core/utils.php:106
4929
  msgctxt "utils"
4930
- msgid "POSTed data exceeds PHP config. maximum. See \"post_max_size\" directive."
 
4931
  msgstr ""
4932
 
4933
- #: core/utils.php:159
4934
  msgctxt "utils"
4935
  msgid "File size (%s) exceeds maximum file size of %s"
4936
  msgstr ""
4937
 
4938
- #: core/utils.php:167
4939
  msgctxt "utils"
4940
  msgid "File size (%s) is inferior to the required minimum file size of %s"
4941
  msgstr ""
4942
 
4943
- #: core/utils.php:176 core/utils.php:183
4944
  msgctxt "utils"
4945
  msgid "File type \"%s\" is not allowed"
4946
  msgstr ""
4947
 
4948
- #: core/utils.php:190
4949
  msgctxt "utils"
4950
  msgid "Unkown error while uploading file."
4951
  msgstr ""
4952
 
4953
- #: core/utils.php:209
4954
  msgctxt "utils"
4955
  msgid "Uploaded file is not an image"
4956
  msgstr ""
4957
 
4958
- #: core/utils.php:218
4959
  msgctxt "utils"
4960
  msgid "Image width (%s px) is inferior to minimum required width of %s px."
4961
  msgstr ""
4962
 
4963
- #: core/utils.php:224
4964
  msgctxt "utils"
4965
  msgid "Image height (%s px) is inferior to minimum required height of %s px."
4966
  msgstr ""
4967
 
4968
- #: core/utils.php:230
4969
  msgctxt "utils"
4970
  msgid "Image width (%s px) is greater than maximum allowed width of %s px."
4971
  msgstr ""
4972
 
4973
- #: core/utils.php:236
4974
  msgctxt "utils"
4975
  msgid "Image height (%s px) is greater than maximum required height of %s px."
4976
  msgstr ""
4977
 
4978
- #: core/utils.php:250
4979
  msgctxt "utils"
4980
  msgid "Error while uploading file"
4981
  msgstr ""
@@ -4993,15 +5226,15 @@ msgstr ""
4993
  #: core/view-checkout.php:103
4994
  msgctxt "checkout"
4995
  msgid ""
4996
- "Payments are not allowed on the non-secure version of this site. Please <a>continue to "
4997
- "the secure server to proceed with your payment</a>."
4998
  msgstr ""
4999
 
5000
  #: core/view-checkout.php:118
5001
  msgctxt "checkout"
5002
  msgid ""
5003
- "Your payment is being verified. This usually takes a few minutes but can take up to 24 "
5004
- "hours."
5005
  msgstr ""
5006
 
5007
  #: core/view-checkout.php:126 core/view-checkout.php:147
@@ -5101,8 +5334,8 @@ msgstr ""
5101
  #: core/view-renew-listing.php:21
5102
  msgctxt "renewal"
5103
  msgid ""
5104
- "Your renewal ID is invalid. Please use the URL you were given on the renewal e-mail "
5105
- "message."
5106
  msgstr ""
5107
 
5108
  #: core/view-renew-listing.php:47
@@ -5128,8 +5361,8 @@ msgstr ""
5128
  #: core/view-renew-listing.php:92
5129
  msgctxt "renew"
5130
  msgid ""
5131
- "Because you are on a recurring fee plan you don't have to renew your listing right now "
5132
- "as this will be handled automatically when renewal comes."
5133
  msgstr ""
5134
 
5135
  #: core/view-renew-listing.php:94
@@ -5150,25 +5383,27 @@ msgstr ""
5150
  #: core/view-renew-listing.php:102
5151
  msgctxt "renew"
5152
  msgid ""
5153
- "However, if you want to cancel your subscription you can do that on this page. When the "
5154
- "renewal time comes you'll be able to change your settings again."
 
5155
  msgstr ""
5156
 
5157
  #: core/view-submit-listing.php:29
5158
  msgctxt "templates"
5159
  msgid ""
5160
- "There are no categories assigned to the business directory yet. You need to assign some "
5161
- "categories to the business directory. Only admins can see this message. Regular users "
5162
- "are seeing a message that they cannot add their listing at this time. Listings cannot be "
5163
- "added until you assign categories to the business directory."
 
5164
  msgstr ""
5165
 
5166
  #: core/view-submit-listing.php:31
5167
  msgctxt "templates"
5168
  msgid ""
5169
- "Your listing cannot be added at this time. Please try again later. If this is not the "
5170
- "first time you see this warning, please ask the site administrator to set up one or more "
5171
- "categories inside the Directory."
5172
  msgstr ""
5173
 
5174
  #: core/view-submit-listing.php:43
@@ -5188,55 +5423,56 @@ msgstr ""
5188
 
5189
  #: core/view-submit-listing.php:65
5190
  msgctxt "templates"
5191
- msgid "You are logged in as an administrator. Any payment steps will be skipped."
 
5192
  msgstr ""
5193
 
5194
- #: core/view-submit-listing.php:200
5195
  msgctxt "templates"
5196
  msgid "Please select a fee option for the \"%s\" category."
5197
  msgstr ""
5198
 
5199
- #: core/view-submit-listing.php:268
5200
  msgctxt "templates"
5201
  msgid "Please agree to the Terms and Conditions."
5202
  msgstr ""
5203
 
5204
- #: core/view-submit-listing.php:274
5205
  msgctxt "templates"
5206
  msgid "The reCAPTCHA wasn't entered correctly."
5207
  msgstr ""
5208
 
5209
- #: core/view-submit-listing.php:291
5210
  msgctxt "templates"
5211
  msgid "Read our Terms and Conditions"
5212
  msgstr ""
5213
 
5214
- #: core/view-submit-listing.php:296
5215
  msgctxt "templates"
5216
  msgid "Terms and Conditions:"
5217
  msgstr ""
5218
 
5219
- #: core/view-submit-listing.php:307
5220
  msgctxt "templates"
5221
  msgid "I agree to the Terms and Conditions"
5222
  msgstr ""
5223
 
5224
- #: core/view-submit-listing.php:444
5225
  msgctxt "listings"
5226
  msgid "Fee \"%s\" for category \"%s\"%s"
5227
  msgstr ""
5228
 
5229
- #: core/view-submit-listing.php:447
5230
  msgctxt "listings"
5231
  msgid "(recurring)"
5232
  msgstr ""
5233
 
5234
- #: core/view-submit-listing.php:457 core/view-upgrade-listing.php:54
5235
  msgctxt "submit"
5236
  msgid "Listing upgrade to featured"
5237
  msgstr ""
5238
 
5239
- #: core/view-submit-listing.php:490
5240
  msgctxt "submit_state"
5241
  msgid "Invalid submit state."
5242
  msgstr ""
@@ -5258,8 +5494,8 @@ msgstr ""
5258
 
5259
  #: core/views.php:32
5260
  msgid ""
5261
- "You need to create a page with the [businessdirectory] shortcode for the Business "
5262
- "Directory plugin to work correctly."
5263
  msgstr ""
5264
 
5265
  #: core/views.php:34
@@ -5279,10 +5515,11 @@ msgstr ""
5279
  #: core/views.php:486
5280
  msgctxt "templates"
5281
  msgid ""
5282
- "There are no categories assigned to the business directory yet. You need to assign some "
5283
- "categories to the business directory. Only admins can see this message. Regular users "
5284
- "are seeing a message that there are currently no listings in the directory. Listings "
5285
- "cannot be added until you assign categories to the business directory."
 
5286
  msgstr ""
5287
 
5288
  #: core/views.php:488
@@ -5293,9 +5530,9 @@ msgstr ""
5293
  #: core/views.php:506
5294
  msgctxt "templates"
5295
  msgid ""
5296
- "You have \"Hide Empty Categories\" on and some categories that don't have listings in "
5297
- "them. That means they won't show up on the front end of your site. If you didn't want "
5298
- "that, click <a>here</a> to change the setting."
5299
  msgstr ""
5300
 
5301
  #: core/widget-featured-listings.php:11
@@ -5541,15 +5778,16 @@ msgstr ""
5541
  #: templates/delete-listing-confirm.tpl.php:7
5542
  msgctxt "delete listing"
5543
  msgid ""
5544
- "Your listing is associated to a recurring payment. If you don't cancel the recurring "
5545
- "payment before deleting the listing, you might be charged for additional periods even "
5546
- "though your listing won't be available."
5547
  msgstr ""
5548
 
5549
  #: templates/delete-listing-confirm.tpl.php:12
5550
  msgctxt "delete listing"
5551
  msgid ""
5552
- "Please visit <a>Manage recurring payments</a> to review your current recurring payments."
 
5553
  msgstr ""
5554
 
5555
  #: templates/delete-listing-confirm.tpl.php:18
@@ -5575,35 +5813,42 @@ msgstr ""
5575
  #: templates/email/listing-added.tpl.php:2
5576
  msgctxt "emails"
5577
  msgid ""
5578
- "A new listing has been submitted to the directory. Listing details can be found below."
 
5579
  msgstr ""
5580
 
5581
- #: templates/email/listing-added.tpl.php:7 templates/email/listing-edited.tpl.php:7
 
5582
  msgctxt "notify email"
5583
  msgid "ID"
5584
  msgstr ""
5585
 
5586
- #: templates/email/listing-added.tpl.php:10 templates/email/listing-edited.tpl.php:10
 
5587
  msgctxt "notify email"
5588
  msgid "Title"
5589
  msgstr ""
5590
 
5591
- #: templates/email/listing-added.tpl.php:13 templates/email/listing-edited.tpl.php:13
 
5592
  msgctxt "notify email"
5593
  msgid "URL"
5594
  msgstr ""
5595
 
5596
- #: templates/email/listing-added.tpl.php:13 templates/email/listing-edited.tpl.php:13
 
5597
  msgctxt "notify email"
5598
  msgid "(not published yet)"
5599
  msgstr ""
5600
 
5601
- #: templates/email/listing-added.tpl.php:16 templates/email/listing-edited.tpl.php:16
 
5602
  msgctxt "notify email"
5603
  msgid "Categories"
5604
  msgstr ""
5605
 
5606
- #: templates/email/listing-added.tpl.php:19 templates/email/listing-edited.tpl.php:19
 
5607
  msgctxt "notify email"
5608
  msgid "Posted By"
5609
  msgstr ""
@@ -5611,7 +5856,8 @@ msgstr ""
5611
  #: templates/email/listing-edited.tpl.php:2
5612
  msgctxt "emails"
5613
  msgid ""
5614
- "A listing in the directory has been edited recently. Listing details can be found below."
 
5615
  msgstr ""
5616
 
5617
  #: templates/listing-contactform.tpl.php:9
@@ -5622,8 +5868,8 @@ msgstr ""
5622
  #: templates/listing-contactform.tpl.php:18
5623
  msgctxt "templates"
5624
  msgid ""
5625
- "You are currently logged in as %s. Your message will be sent using your logged in "
5626
- "contact email."
5627
  msgstr ""
5628
 
5629
  #: templates/listing-contactform.tpl.php:23
@@ -5659,8 +5905,8 @@ msgstr ""
5659
  #: templates/manage-listings.tpl.php:6
5660
  msgctxt "templates"
5661
  msgid ""
5662
- "Your current listings are shown below. To edit a listing click the edit button. To "
5663
- "delete a listing click the delete button."
5664
  msgstr ""
5665
 
5666
  #: templates/manage-listings.tpl.php:9
@@ -5758,19 +6004,25 @@ msgctxt "templates"
5758
  msgid "Images Allowed"
5759
  msgstr ""
5760
 
5761
- #: templates/parts/category-fee-selection.tpl.php:43
 
 
 
 
 
5762
  msgctxt "templates"
5763
  msgid "Unlimited"
5764
  msgstr ""
5765
 
5766
- #: templates/parts/category-fee-selection.tpl.php:45
5767
  msgctxt "templates"
5768
  msgid "%d day"
5769
  msgid_plural "%d days"
5770
  msgstr[0] ""
5771
  msgstr[1] ""
5772
 
5773
- #: templates/parts/listing-buttons.tpl.php:4 templates/parts/listing-buttons.tpl.php:18
 
5774
  #: templates/parts/listing-buttons.tpl.php:22
5775
  msgctxt "templates"
5776
  msgid "Edit"
@@ -5781,13 +6033,15 @@ msgctxt "templates"
5781
  msgid "Upgrade Listing"
5782
  msgstr ""
5783
 
5784
- #: templates/parts/listing-buttons.tpl.php:10 templates/parts/listing-buttons.tpl.php:19
 
5785
  #: templates/parts/listing-buttons.tpl.php:23
5786
  msgctxt "templates"
5787
  msgid "Delete"
5788
  msgstr ""
5789
 
5790
- #: templates/parts/listing-buttons.tpl.php:10 templates/parts/listing-buttons.tpl.php:23
 
5791
  msgctxt "templates"
5792
  msgid "Are you sure you wish to delete this listing?"
5793
  msgstr ""
@@ -5796,7 +6050,8 @@ msgstr ""
5796
  msgid "← Back to Directory"
5797
  msgstr ""
5798
 
5799
- #: templates/parts/listing-buttons.tpl.php:17 templates/parts/listing-buttons.tpl.php:21
 
5800
  msgctxt "templates"
5801
  msgid "View"
5802
  msgstr ""
@@ -5804,9 +6059,9 @@ msgstr ""
5804
  #: templates/parts/login-required.tpl.php:5
5805
  msgctxt "templates"
5806
  msgid ""
5807
- "You are not currently logged in. Please login or register first. When registering, you "
5808
- "will receive an activation email. Be sure to check your spam if you don't see it in your "
5809
- "email within 60 minutes."
5810
  msgstr ""
5811
 
5812
  #: templates/parts/login-required.tpl.php:10
@@ -5856,16 +6111,20 @@ msgstr ""
5856
 
5857
  #: templates/renew-listing.tpl.php:10
5858
  msgctxt "templates"
5859
- msgid "You are about to renew your listing \"%s\" publication inside category \"%s\"."
 
 
5860
  msgstr ""
5861
 
5862
  #: templates/renew-listing.tpl.php:15
5863
  msgctxt "WPBDM"
5864
  msgid ""
5865
- "Please select a fee option or click \"Do not renew my listing\" to cancel your renewal."
 
5866
  msgstr ""
5867
 
5868
- #: templates/renew-listing.tpl.php:22 templates/submit-listing/category-selection.tpl.php:8
 
5869
  #: templates/submit-listing/fee-selection.tpl.php:37
5870
  #: templates/submit-listing/images.tpl.php:38
5871
  #: templates/submit-listing/listing-fields.tpl.php:34
@@ -5960,7 +6219,8 @@ msgstr ""
5960
 
5961
  #: templates/submit-listing/fee-selection.tpl.php:31
5962
  msgctxt "submit"
5963
- msgid "Would you like to make your fee renew automatically at the end of the period?"
 
5964
  msgstr ""
5965
 
5966
  #: templates/submit-listing/images-single.tpl.php:18
@@ -6001,8 +6261,9 @@ msgstr ""
6001
  #: templates/submit-listing/images-upload-form.tpl.php:36
6002
  msgctxt "templates"
6003
  msgid ""
6004
- "Your image slots are all full at this time. You may click \"Continue\" if you are done, "
6005
- "or \"Delete Image\" to upload a new image in place of a current one."
 
6006
  msgstr ""
6007
 
6008
  #: templates/submit-listing/images-upload-form.tpl.php:44
@@ -6028,8 +6289,8 @@ msgstr ""
6028
  #: templates/submit-listing/images.tpl.php:7
6029
  msgctxt "templates"
6030
  msgid ""
6031
- "There is an image pending upload. Would you still like to continue without saving the "
6032
- "image?"
6033
  msgstr ""
6034
 
6035
  #: templates/submit-listing/images.tpl.php:13
@@ -6054,14 +6315,15 @@ msgstr ""
6054
 
6055
  #: vendors/edd/EDD_SL_Plugin_Updater.php:178
6056
  msgid ""
6057
- "There is a new version of %1$s available. <a target=\"_blank\" class=\"thickbox\" href="
6058
- "\"%2$s\">View version %3$s details</a>."
6059
  msgstr ""
6060
 
6061
  #: vendors/edd/EDD_SL_Plugin_Updater.php:185
6062
  msgid ""
6063
- "There is a new version of %1$s available. <a target=\"_blank\" class=\"thickbox\" href="
6064
- "\"%2$s\">View version %3$s details</a> or <a href=\"%4$s\">update now</a>."
 
6065
  msgstr ""
6066
 
6067
  #: vendors/edd/EDD_SL_Plugin_Updater.php:325
@@ -6078,8 +6340,8 @@ msgstr ""
6078
 
6079
  #. Description of the plugin/theme
6080
  msgid ""
6081
- "Provides the ability to maintain a free or paid business directory on your WordPress "
6082
- "powered site."
6083
  msgstr ""
6084
 
6085
  #. Author of the plugin/theme
1
  # Copyright (C) 2016 Business Directory Plugin
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"
11
  "PO-Revision-Date: 2016-MO-DA HO:MI+ZONE\n"
12
  "Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
13
+ "Language-Team: LANGUAGE <LL@li.org>\n"
 
14
 
15
  #: admin/class-admin-listings.php:39
16
  msgctxt "admin category filter"
17
  msgid "All categories"
18
  msgstr ""
19
 
20
+ #: admin/class-admin-listings.php:114
21
  msgid "Listing Information"
22
  msgstr ""
23
 
24
+ #: admin/class-admin-listings.php:121
25
  msgctxt "admin"
26
  msgid "Listing Fields / Images"
27
  msgstr ""
28
 
29
+ #: admin/class-admin-listings.php:132
30
  msgctxt "admin"
31
  msgid "Categories"
32
  msgstr ""
33
 
34
+ #: admin/class-admin-listings.php:133
35
  msgid "Payment Status"
36
  msgstr ""
37
 
38
+ #: admin/class-admin-listings.php:134
39
  msgid "Featured (Sticky) Status"
40
  msgstr ""
41
 
42
+ #: admin/class-admin-listings.php:165
43
  msgctxt "admin"
44
  msgid "(Listing expired in this category)"
45
  msgstr ""
46
 
47
+ #: admin/class-admin-listings.php:183 admin/class-admin-listings.php:266
48
  msgid "Paid"
49
  msgstr ""
50
 
51
+ #: admin/class-admin-listings.php:188
52
  msgid "Mark as"
53
  msgstr ""
54
 
55
+ #: admin/class-admin-listings.php:197 admin/class-admin-listings.php:276
56
  msgid "Pending Upgrade"
57
  msgstr ""
58
 
59
+ #: admin/class-admin-listings.php:205 admin/listing-metabox.php:68
60
  msgid "Upgrade to %s"
61
  msgstr ""
62
 
63
+ #: admin/class-admin-listings.php:212 admin/listing-metabox.php:75
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 ""
71
 
72
+ #: admin/class-admin-listings.php:271
73
  msgid "Unpaid"
74
  msgstr ""
75
 
76
+ #: admin/class-admin-listings.php:281
77
  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 ""
111
  #: admin/class-admin.php:124
112
  msgctxt "drip pointer"
113
  msgid ""
114
+ "Find out how to create a compelling, thriving business directory from "
115
+ "scratch in this ridiculously actionable (and FREE) 5-part email course. Get "
116
+ "a FREE premium module just for signing up."
117
  msgstr ""
118
 
119
  #: admin/class-admin.php:126
216
  msgid "Uninstall"
217
  msgstr ""
218
 
219
+ #: admin/class-admin.php:410
220
+ #: admin/templates/listing-metabox-categories.tpl.php:69
221
  msgctxt "admin infometabox"
222
  msgid "never"
223
  msgstr ""
224
 
225
+ #: admin/class-admin.php:492
226
  msgctxt "admin"
227
  msgid "The listing has been published."
228
  msgid_plural "The listings have been published."
229
  msgstr[0] ""
230
  msgstr[1] ""
231
 
232
+ #: admin/class-admin.php:505
233
  msgctxt "admin"
234
  msgid "The listing status has been set as paid."
235
  msgid_plural "The listings status has been set as paid."
236
  msgstr[0] ""
237
  msgstr[1] ""
238
 
239
+ #: admin/class-admin.php:517
240
  msgctxt "admin"
241
  msgid "The listing has been modified."
242
  msgid_plural "The listings have been modified."
243
  msgstr[0] ""
244
  msgstr[1] ""
245
 
246
+ #: admin/class-admin.php:530
247
  msgctxt "admin"
248
  msgid "The listing has been upgraded."
249
  msgid_plural "The listings have been upgraded."
250
  msgstr[0] ""
251
  msgstr[1] ""
252
 
253
+ #: admin/class-admin.php:542
254
  msgctxt "admin"
255
  msgid "The listing has been downgraded."
256
  msgid_plural "The listings have been downgraded."
257
  msgstr[0] ""
258
  msgstr[1] ""
259
 
260
+ #: admin/class-admin.php:554
261
  msgctxt "admin"
262
  msgid "The transaction has been approved."
263
  msgstr ""
264
 
265
+ #: admin/class-admin.php:562
266
  msgctxt "admin"
267
  msgid "The transaction has been rejected."
268
  msgstr ""
269
 
270
+ #: admin/class-admin.php:568
271
  msgctxt "admin"
272
  msgid "The fee was successfully assigned."
273
  msgstr ""
274
 
275
+ #: admin/class-admin.php:577
276
  msgctxt "admin"
277
  msgid "Listing was renewed."
278
  msgid_plural "Listings were renewed."
279
  msgstr[0] ""
280
  msgstr[1] ""
281
 
282
+ #: admin/class-admin.php:584
283
  msgctxt "admin"
284
  msgid "Renewal email sent."
285
  msgstr ""
286
 
287
+ #: admin/class-admin.php:618
288
  msgctxt "admin category id"
289
  msgid "ID"
290
  msgstr ""
291
 
292
+ #: admin/class-admin.php:620 admin/class-admin.php:626
293
  msgctxt "admin"
294
  msgid "Listing Count"
295
  msgstr ""
296
 
297
+ #: admin/class-admin.php:735
298
  msgctxt "admin"
299
  msgid ""
300
+ "<b>Business Directory Plugin</b> requires fields with the following "
301
+ "associations in order to work correctly: <b>%s</b>."
302
  msgstr ""
303
 
304
+ #: admin/class-admin.php:737
305
  msgctxt "admin"
306
  msgid ""
307
+ "<b>Business Directory Plugin</b> requires a field with a <b>%s</b> "
308
+ "association in order to work correctly."
309
  msgstr ""
310
 
311
+ #: admin/class-admin.php:741
312
  msgctxt "admin"
313
  msgid ""
314
+ "You can create these custom fields by yourself inside \"Manage Form Fields\" "
315
+ "or let Business Directory do this for you automatically."
316
  msgstr ""
317
 
318
+ #: admin/class-admin.php:745
319
  msgctxt "admin"
320
  msgid "Go to \"Manage Form Fields\""
321
  msgstr ""
322
 
323
+ #: admin/class-admin.php:748
324
  msgctxt "admin"
325
  msgid "Create these required fields for me"
326
  msgstr ""
327
 
328
+ #: admin/class-admin.php:757
329
  msgctxt "admin"
330
  msgid ""
331
+ "<b>Business Directory Plugin</b> requires a page with the "
332
+ "<tt>[businessdirectory]</tt> shortcode to function properly."
333
  msgstr ""
334
 
335
+ #: admin/class-admin.php:759
336
  msgctxt "admin"
337
  msgid ""
338
+ "You can create this page by yourself or let Business Directory do this for "
339
+ "you automatically."
340
  msgstr ""
341
 
342
+ #: admin/class-admin.php:763
343
  msgctxt "admin"
344
  msgid "Create required pages for me"
345
  msgstr ""
346
 
347
+ #: admin/class-admin.php:803
348
  msgctxt "admin compat"
349
  msgid "Installed: %s"
350
  msgstr ""
351
 
352
+ #: admin/class-admin.php:803
353
  msgctxt "admin compat"
354
  msgid "N/A"
355
  msgstr ""
356
 
357
+ #: admin/class-admin.php:806
358
  msgctxt "admin compat"
359
  msgid "Required: %s"
360
  msgstr ""
361
 
362
+ #: admin/class-admin.php:819
363
  msgctxt "admin compat"
364
  msgid ""
365
+ "Business Directory has detected some incompatible premium module versions "
366
+ "installed."
367
  msgstr ""
368
 
369
+ #: admin/class-admin.php:821
370
  msgctxt "admin compat"
371
  msgid ""
372
+ "Please upgrade to the required versions indicated below to make sure "
373
+ "everything functions properly."
374
  msgstr ""
375
 
376
+ #: admin/class-admin.php:836
377
  msgctxt "admin"
378
  msgid ""
379
+ "We noticed you want your Business Directory users to register before posting "
380
+ "listings, but Registration for your site is currently disabled. Go [here] "
381
+ "and check \"Anyone can register\" to make sure BD works properly."
382
  msgstr ""
383
 
384
  #: admin/class-listing-fields-metabox.php:21
386
  msgid "Listing Fields"
387
  msgstr ""
388
 
389
+ #: admin/class-listing-fields-metabox.php:40
390
+ #: templates/submit-listing/images.tpl.php:12
391
  msgctxt "templates"
392
  msgid "Current Images"
393
  msgstr ""
397
  msgid "There are no images currently attached to the listing."
398
  msgstr ""
399
 
400
+ #: admin/class-themes-admin.php:44
401
  msgctxt "themes"
402
  msgid "Directory Themes"
403
  msgstr ""
404
 
405
+ #: admin/class-themes-admin.php:45
406
  msgctxt "themes"
407
  msgid "Directory Themes %s"
408
  msgstr ""
409
 
410
+ #: admin/class-themes-admin.php:100
411
  msgctxt "themes"
412
  msgid "Could not change the active theme to \"%s\"."
413
  msgstr ""
414
 
415
+ #: admin/class-themes-admin.php:147
416
  msgctxt "themes"
417
  msgid "Active theme changed to \"%s\"."
418
  msgstr ""
419
 
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 ""
503
+
504
  #: admin/csv-export.php:136
505
  msgctxt "admin csv-export"
506
  msgid "Could not create a temporary directory for handling this CSV export."
538
 
539
  #: admin/csv-import.php:241
540
  msgid ""
541
+ "A valid temporary directory with write permissions is required for CSV "
542
+ "imports to function properly. Your server is using \"%s\" but this path does "
543
+ "not seem to be writable. Please consult with your host."
544
  msgstr ""
545
 
546
  #: admin/csv-import.php:275
561
  #: admin/csv-import.php:315
562
  msgctxt "admin csv-import"
563
  msgid ""
564
+ "An error was detected while validating the CSV file for import. Please fix "
565
+ "this before proceeding."
566
  msgstr ""
567
 
568
  #: admin/csv-import.php:324
580
  msgid "fees"
581
  msgstr ""
582
 
583
+ #: admin/fees.php:19
584
  msgctxt "fees admin"
585
+ msgid "There are no fees right now. You can <a>create one</a>, if you want."
586
  msgstr ""
587
 
588
+ #: admin/fees.php:25 admin/fees.php:260
589
+ msgctxt "fees admin"
590
+ msgid "Active"
591
+ msgstr ""
592
+
593
+ #: admin/fees.php:28 admin/fees.php:258
594
+ msgctxt "fees admin"
595
+ msgid "Not Available"
596
+ msgstr ""
597
+
598
+ #: admin/fees.php:31 admin/fees.php:255
599
+ msgctxt "fees admin"
600
+ msgid "Disabled"
601
+ msgstr ""
602
+
603
+ #: admin/fees.php:39
604
+ msgctxt "fees admin"
605
+ msgid ""
606
+ "There are no \"%s\" fees right now. You can <a>create one</a>, if you want."
607
+ msgstr ""
608
+
609
+ #: admin/fees.php:56
610
+ msgctxt "admin fees table"
611
+ msgid "All"
612
+ msgstr ""
613
+
614
+ #: admin/fees.php:68
615
+ msgctxt "admin fees table"
616
+ msgid "Active"
617
+ msgstr ""
618
+
619
+ #: admin/fees.php:78
620
+ msgctxt "admin fees table"
621
+ msgid "Not Available"
622
+ msgstr ""
623
+
624
+ #: admin/fees.php:85
625
+ msgctxt "admin fees table"
626
+ msgid "Disabled"
627
+ msgstr ""
628
+
629
+ #: admin/fees.php:94
630
  msgctxt "fees admin"
631
  msgid "Label"
632
  msgstr ""
633
 
634
+ #: admin/fees.php:95
635
  msgctxt "fees admin"
636
  msgid "Amount"
637
  msgstr ""
638
 
639
+ #: admin/fees.php:96
640
  msgctxt "fees admin"
641
  msgid "Duration"
642
  msgstr ""
643
 
644
+ #: admin/fees.php:97
645
  msgctxt "fees admin"
646
  msgid "Images"
647
  msgstr ""
648
 
649
+ #: admin/fees.php:98
650
  msgctxt "fees admin"
651
+ msgid "Featured/Sticky"
652
  msgstr ""
653
 
654
+ #: admin/fees.php:102
655
  msgctxt "fees admin"
656
+ msgid "Status"
 
 
 
657
  msgstr ""
658
 
659
+ #: admin/fees.php:155
660
  msgctxt "fees admin"
661
+ msgid ""
662
+ "This is the default free plan for your directory. You can't delete it and "
663
+ "it's always free, but you can edit the name and other settings. It's only "
664
+ "available when the directory is in Free mode. You can always create other "
665
+ "fee plans, including ones for 0.00 (free) if you wish."
666
  msgstr ""
667
 
668
+ #: admin/fees.php:187
669
  msgctxt "fees admin"
670
  msgid "Edit"
671
  msgstr ""
672
 
673
+ #: admin/fees.php:197
674
  msgctxt "fees admin"
675
  msgid "Disable"
676
  msgstr ""
677
 
678
+ #: admin/fees.php:201
679
+ msgctxt "fees admin"
680
+ msgid "Enable"
681
+ msgstr ""
682
+
683
+ #: admin/fees.php:205
684
  msgctxt "fees admin"
685
  msgid "Delete"
686
  msgstr ""
687
 
688
+ #: admin/fees.php:226
689
  msgctxt "fees admin"
690
  msgid "Forever"
691
  msgstr ""
692
 
693
+ #: admin/fees.php:227
694
  msgctxt "fees admin"
695
  msgid "%d day"
696
  msgid_plural "%d days"
697
  msgstr[0] ""
698
  msgstr[1] ""
699
 
700
+ #: admin/fees.php:231
701
  msgctxt "fees admin"
702
  msgid "%d image"
703
  msgid_plural "%d images"
704
  msgstr[0] ""
705
  msgstr[1] ""
706
 
707
+ #: admin/fees.php:236
708
  msgctxt "fees admin"
709
  msgid "All categories"
710
  msgstr ""
711
 
712
+ #: admin/fees.php:250
713
+ msgctxt "fees admin"
714
+ msgid "Yes"
715
+ msgstr ""
716
+
717
+ #: admin/fees.php:250
718
+ msgctxt "fees admin"
719
+ msgid "No"
720
+ msgstr ""
721
+
722
+ #: admin/fees.php:285
723
+ msgctxt "fees admin"
724
+ msgid "Fee enabled."
725
+ msgstr ""
726
+
727
+ #: admin/fees.php:293
728
+ msgctxt "fees admin"
729
+ msgid "Fee disabled."
730
+ msgstr ""
731
+
732
+ #: admin/fees.php:318
733
  msgctxt "fees order"
734
  msgid "Label"
735
  msgstr ""
736
 
737
+ #: admin/fees.php:319
738
  msgctxt "fees order"
739
  msgid "Amount"
740
  msgstr ""
741
 
742
+ #: admin/fees.php:320
743
  msgctxt "fees order"
744
  msgid "Duration"
745
  msgstr ""
746
 
747
+ #: admin/fees.php:321
748
  msgctxt "fees order"
749
  msgid "Images"
750
  msgstr ""
751
 
752
+ #: admin/fees.php:322
753
  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 ""
761
 
762
+ #: admin/fees.php:364
763
  msgctxt "fees admin"
764
  msgid "Fee deleted."
765
  msgstr ""
842
  #: admin/form-fields.php:174
843
  msgctxt "formfields-preview"
844
  msgid ""
845
+ "This is a preview of the form as it will appear during \"Submit a Listing\". "
846
+ "The users may not see all fields from \"Manage Form Fields\" because you "
847
+ "have \"Featured Levels\" active and this is showing the base level."
848
  msgstr ""
849
 
850
  #: admin/form-fields.php:180
865
  #: admin/form-fields.php:228
866
  msgctxt "form-fields admin"
867
  msgid ""
868
+ "<b>Important</b>: Since the \"<a>Display email address fields publicly?</a>"
869
+ "\" setting is disabled, display settings below will not be honored and this "
870
+ "field will not be displayed on the frontend. If you want e-mail addresses to "
871
+ "show on the frontend, you can <a>enable public display of e-mails</a>."
872
  msgstr ""
873
 
874
  #: admin/form-fields.php:262
1023
  #: admin/templates/csv-export.tpl.php:9
1024
  msgctxt "admin csv-export"
1025
  msgid ""
1026
+ "An unknown error occurred during the export. Please make sure you have "
1027
+ "enough free disk space and memory available to PHP. Check your error logs "
1028
+ "for details."
1029
  msgstr ""
1030
 
1031
  #: admin/templates/csv-export.tpl.php:18
1032
  msgctxt "admin csv-export"
1033
  msgid ""
1034
+ "Please note that the export process is a resource intensive task. If your "
1035
+ "export does not succeed try disabling other plugins first and/or increasing "
1036
+ "the values of the 'memory_limit' and 'max_execution_time' directives in your "
1037
+ "server's php.ini configuration file."
1038
  msgstr ""
1039
 
1040
  #: admin/templates/csv-export.tpl.php:30
1080
  #: admin/templates/csv-export.tpl.php:56
1081
  msgctxt "admin csv-export"
1082
  msgid ""
1083
+ "When checked, instead of just a CSV file a ZIP file will be generated with "
1084
+ "both a CSV file and listing images."
1085
  msgstr ""
1086
 
1087
  #: admin/templates/csv-export.tpl.php:62
1097
  #: admin/templates/csv-export.tpl.php:69
1098
  msgctxt "admin csv-export"
1099
  msgid ""
1100
+ "If you plan to re-import the listings into BD and don't want new ones "
1101
+ "created, select this option!"
1102
  msgstr ""
1103
 
1104
  #: admin/templates/csv-export.tpl.php:75
1128
 
1129
  #: admin/templates/csv-export.tpl.php:94 admin/templates/csv-export.tpl.php:105
1130
  #: admin/templates/csv-export.tpl.php:116 admin/templates/csv-import.tpl.php:43
1131
+ #: admin/templates/csv-import.tpl.php:109
1132
+ #: admin/templates/csv-import.tpl.php:120
1133
+ #: admin/templates/csv-import.tpl.php:131
1134
+ #: admin/templates/csv-import.tpl.php:158
1135
  msgctxt "admin forms"
1136
  msgid "required"
1137
  msgstr ""
1159
  #: admin/templates/csv-export.tpl.php:135
1160
  msgctxt "admin csv-export"
1161
  msgid ""
1162
+ "Your export file is being prepared. Please <u>do not leave</u> this page "
1163
+ "until the export finishes."
1164
  msgstr ""
1165
 
1166
  #: admin/templates/csv-export.tpl.php:138
1185
 
1186
  #: admin/templates/csv-export.tpl.php:153
1187
  msgctxt "admin csv-export"
1188
+ msgid ""
1189
+ "Your export file has been successfully created and it is now ready for "
1190
+ "download."
1191
  msgstr ""
1192
 
1193
  #: admin/templates/csv-export.tpl.php:156
1198
  #: admin/templates/csv-export.tpl.php:162
1199
  msgctxt "admin csv-export"
1200
  msgid ""
1201
+ "Click \"Cleanup\" once the file has been downloaded in order to remove all "
1202
+ "temporary data created by Business Directory during the export process."
1203
  msgstr ""
1204
 
1205
  #: admin/templates/csv-export.tpl.php:163
1230
  #: admin/templates/csv-import-progress.tpl.php:10
1231
  msgctxt "admin csv-import"
1232
  msgid ""
1233
+ "A fatal error occurred during the import. If connection wasn't lost during "
1234
+ "the import, please make sure that you have enough free disk space and memory "
1235
+ "available to PHP. Check your error logs for details."
1236
  msgstr ""
1237
 
1238
  #: admin/templates/csv-import-progress.tpl.php:14
1368
  #: admin/templates/csv-import.tpl.php:29
1369
  msgctxt "admin csv-import"
1370
  msgid ""
1371
+ "We strongly recommend reading our <a>CSV import documentation</a> first to "
1372
+ "help you do things in the right order."
1373
  msgstr ""
1374
 
1375
  #: admin/templates/csv-import.tpl.php:38
1479
 
1480
  #: admin/templates/csv-import.tpl.php:204
1481
  msgctxt "admin csv-import"
1482
+ msgid ""
1483
+ "This user will be used if the username column is not present in the CSV file."
1484
  msgstr ""
1485
 
1486
  #: admin/templates/csv-import.tpl.php:209
1506
  #: admin/templates/csv-import.tpl.php:229
1507
  msgctxt "admin csv-import"
1508
  msgid ""
1509
+ "The following are the valid header names to be used in the CSV file. "
1510
+ "Multivalued fields (such as category or tags) can appear multiple times in "
1511
+ "the file. Click <a href=\"%s\">\"See an example CSV import file\"</a> to see "
1512
+ "how an import file should look like."
1513
  msgstr ""
1514
 
1515
  #: admin/templates/csv-import.tpl.php:236
1549
 
1550
  #: admin/templates/csv-import.tpl.php:276
1551
  msgctxt "admin csv-import"
1552
+ msgid ""
1553
+ "Internal Sequence ID used to allow listing updates from external sources."
1554
  msgstr ""
1555
 
1556
  #: admin/templates/csv-import.tpl.php:283
1557
  msgctxt "admin csv-import"
1558
  msgid ""
1559
+ "Date of listing expiration formatted as YYYY-MM-DD. Use this column when "
1560
+ "adding or updating listings from external sources."
1561
  msgstr ""
1562
 
1563
  #: admin/templates/debug-info.tpl.php:5
1564
  msgctxt "debug-info"
1565
  msgid ""
1566
+ "The following information can help BD developers debug possible problems "
1567
+ "with your setup."
1568
  msgstr ""
1569
 
1570
  #: admin/templates/debug-info.tpl.php:6
1571
  msgctxt "debug-info"
1572
  msgid ""
1573
+ "The debug information does not contain personal or sensitive information "
1574
+ "such as passwords or private keys."
1575
  msgstr ""
1576
 
1577
  #: admin/templates/debug-info.tpl.php:9
1626
 
1627
  #: admin/templates/fees-addoredit.tpl.php:94
1628
  msgctxt "fees admin"
1629
+ msgid "Is featured listing/sticky?"
1630
+ msgstr ""
1631
+
1632
+ #: admin/templates/fees-addoredit.tpl.php:102
1633
+ msgctxt "fees admin"
1634
+ msgid ""
1635
+ "This floats the listing to the top of search results and browsing the "
1636
+ "directory when the user buys this plan."
1637
  msgstr ""
1638
 
1639
+ #: admin/templates/fees-addoredit.tpl.php:107
1640
  msgctxt "fees admin"
1641
  msgid "Apply to category"
1642
  msgstr ""
1643
 
1644
+ #: admin/templates/fees-addoredit.tpl.php:111
1645
+ #: admin/templates/fees-addoredit.tpl.php:114
1646
  msgctxt "fees admin"
1647
  msgid "* All Categories *"
1648
  msgstr ""
1649
 
1650
+ #: admin/templates/fees-addoredit.tpl.php:134
1651
  msgctxt "fees admin"
1652
  msgid "Add Fee"
1653
  msgstr ""
1654
 
1655
+ #: admin/templates/fees-addoredit.tpl.php:134
1656
  msgctxt "fees admin"
1657
  msgid "Update Fee"
1658
  msgstr ""
1695
  #: admin/templates/fees.tpl.php:13
1696
  msgctxt "fees admin"
1697
  msgid ""
1698
+ "To manage fees you need to go to the <a>Manage Options - Payment</a> page "
1699
+ "and check the box next to 'Turn On Payments' under 'Payment Settings'."
1700
  msgstr ""
1701
 
1702
+ #: admin/templates/fees.tpl.php:24
1703
  msgctxt "fees admin"
1704
  msgid "Order fees on the frontend by:"
1705
  msgstr ""
1706
 
1707
+ #: admin/templates/fees.tpl.php:32
1708
  msgctxt "fees admin"
1709
  msgid "↑ Ascending"
1710
  msgstr ""
1711
 
1712
+ #: admin/templates/fees.tpl.php:32
1713
  msgctxt "fees admin"
1714
  msgid "↓ Descending"
1715
  msgstr ""
1716
 
1717
+ #: admin/templates/fees.tpl.php:38
1718
  msgctxt "fees admin"
1719
  msgid "Drag and drop to re-order fees."
1720
  msgstr ""
1721
 
1722
+ #: admin/templates/fees.tpl.php:54
1723
+ msgctxt "fees admin"
1724
+ msgid ""
1725
+ "These are all of the fee plans displayed to the user when they place a "
1726
+ "listing. Your current mode of \"%s\" restricts what you see here. Those on "
1727
+ "the <a>Not Available</a> filter will become active when you change the "
1728
+ "payment mode."
1729
+ msgstr ""
1730
+
1731
+ #: admin/templates/fees.tpl.php:57 admin/templates/fees.tpl.php:63
1732
+ #: admin/templates/fees.tpl.php:77
1733
+ msgctxt "fees admin"
1734
+ msgid "Paid"
1735
+ msgstr ""
1736
+
1737
+ #: admin/templates/fees.tpl.php:57 admin/templates/fees.tpl.php:63
1738
+ #: admin/templates/fees.tpl.php:77
1739
+ msgctxt "fees admin"
1740
+ msgid "Free"
1741
+ msgstr ""
1742
+
1743
+ #: admin/templates/fees.tpl.php:60
1744
+ msgctxt "fees admin"
1745
+ msgid ""
1746
+ "These are all of the fee plans that aren't available because you're in \"%s"
1747
+ "\" mode. Those on the Active filter will become Not Available when you "
1748
+ "change the payment mode."
1749
+ msgstr ""
1750
+
1751
+ #: admin/templates/fees.tpl.php:66
1752
+ msgctxt "fees admin"
1753
+ msgid ""
1754
+ "These fee plans were disabled by the admin and will not show to the end user "
1755
+ "regardless of mode until you enable them."
1756
+ msgstr ""
1757
+
1758
+ #: admin/templates/fees.tpl.php:74
1759
+ msgctxt "fees admin"
1760
+ msgid ""
1761
+ "These are all of the fee plans you have configured. Not all of them are "
1762
+ "available for the current mode (currently set to \"%s\"). To see the fee "
1763
+ "plans for this mode click <a>Active</a>."
1764
+ msgstr ""
1765
+
1766
+ #: admin/templates/fees.tpl.php:89 admin/templates/sidebar.tpl.php:13
1767
  msgctxt "admin sidebar"
1768
  msgid "PayPal Gateway Module"
1769
  msgstr ""
1770
 
1771
+ #: admin/templates/fees.tpl.php:90 admin/templates/sidebar.tpl.php:14
1772
  msgctxt "admin sidebar"
1773
  msgid "2Checkout Gateway Module"
1774
  msgstr ""
1775
 
1776
+ #: admin/templates/fees.tpl.php:91 admin/templates/sidebar.tpl.php:5
1777
  msgctxt "admin sidebar"
1778
  msgid "PayFast Payment Module"
1779
  msgstr ""
1780
 
1781
+ #: admin/templates/fees.tpl.php:92 admin/templates/sidebar.tpl.php:6
1782
  msgctxt "admin sidebar"
1783
  msgid "Stripe Payment Module"
1784
  msgstr ""
1785
 
1786
+ #: admin/templates/fees.tpl.php:102
1787
  msgctxt "admin templates"
1788
  msgid ""
1789
+ "It does not appear you have any of the payment gateway modules enabled. "
1790
+ "Either <a>enable the default Authorize.net gateway</a> with your account "
1791
+ "info, or purchase a different payment gateway module in order to charge a "
1792
+ "fee for listings. To purchase additional payment gateways use the buttons "
1793
+ "below or visit %s."
1794
  msgstr ""
1795
 
1796
+ #: admin/templates/fees.tpl.php:118
1797
  msgctxt "admin templates"
1798
  msgid "Already installed."
1799
  msgstr ""
1800
 
1801
+ #: admin/templates/fees.tpl.php:123
1802
  msgctxt "admin templates"
1803
+ msgid ""
1804
+ "You can buy the <a>%s</a> to add <a>%s</a> as a payment option for your "
1805
+ "users."
1806
  msgstr ""
1807
 
1808
  #: admin/templates/form-fields-addoredit.tpl.php:1
1968
  #: admin/templates/form-fields.tpl.php:13
1969
  msgctxt "form-fields admin"
1970
  msgid ""
1971
+ "Here, you can create new fields for your listings, edit or delete existing "
1972
+ "ones, change the order and visibility of the fields as well as configure "
1973
+ "special options for them."
1974
  msgstr ""
1975
 
1976
  #: admin/templates/form-fields.tpl.php:19
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"
1992
  #: admin/templates/home.tpl.php:5
1993
  msgctxt "admin home"
1994
  msgid ""
1995
+ "Thanks for choosing us. There's a lot you probably want to get done, so "
1996
+ "let's jump right in!"
1997
  msgstr ""
1998
 
1999
  #: admin/templates/home.tpl.php:11
2000
  msgctxt "admin home"
2001
  msgid ""
2002
+ "Our complete documentation is <a>here</a> which we encourage you to use "
2003
+ "while setting things up."
2004
  msgstr ""
2005
 
2006
  #: admin/templates/home.tpl.php:14
2007
  msgctxt "admin home"
2008
  msgid ""
2009
+ "We have some quick-start scenarios that you will find useful regarding setup "
2010
+ "and configuration <a>here</a>."
2011
  msgstr ""
2012
 
2013
  #: admin/templates/home.tpl.php:18
2014
  msgctxt "admin home"
2015
  msgid ""
2016
+ "If you have questions, please post a comment on <a>support forum</a> and "
2017
+ "we'll answer it within 24 hours most days."
2018
  msgstr ""
2019
 
2020
  #: admin/templates/home.tpl.php:25
2198
 
2199
  #: admin/templates/listing-metabox-fees.tpl.php:12
2200
  msgctxt "admin infometabox"
2201
+ msgid ""
2202
+ "Note: In Free mode, the fee plans will always be set to \"Free Listing\" "
2203
+ "below."
2204
  msgstr ""
2205
 
2206
  #: admin/templates/listing-metabox-fees.tpl.php:22
2304
  msgstr ""
2305
 
2306
  #: admin/templates/settings-reset.tpl.php:10
2307
+ msgid ""
2308
+ "Use this option if you want to go back to the original factory settings for "
2309
+ "BD."
2310
  msgstr ""
2311
 
2312
  #: admin/templates/settings-reset.tpl.php:11
2471
  msgid "Cancel"
2472
  msgstr ""
2473
 
2474
+ #: admin/templates/themes-install.tpl.php:2
2475
+ #: admin/templates/themes-licenses.tpl.php:3 admin/templates/themes.tpl.php:3
2476
  msgctxt "themes"
2477
  msgid "Upload Directory Theme"
2478
  msgstr ""
2497
  msgid "Active:"
2498
  msgstr ""
2499
 
2500
+ #: admin/templates/themes-item.tpl.php:13
2501
  msgctxt "themes"
2502
  msgid "Activate"
2503
  msgstr ""
2504
 
2505
+ #: admin/templates/themes-item.tpl.php:33
2506
  msgctxt "themes"
2507
  msgid "Version:"
2508
  msgstr ""
2509
 
2510
+ #: admin/templates/themes-item.tpl.php:36
2511
  msgctxt "themes"
2512
  msgid "Author:"
2513
  msgstr ""
2514
 
2515
+ #: admin/templates/themes-licenses.tpl.php:24
2516
+ msgctxt "themes"
2517
+ msgid "Deactivate License"
2518
+ msgstr ""
2519
+
2520
+ #: admin/templates/themes-licenses.tpl.php:27
2521
+ msgctxt "themes"
2522
+ msgid "Deactivating license..."
2523
+ msgstr ""
2524
+
2525
+ #: admin/templates/themes-licenses.tpl.php:29
2526
+ msgctxt "themes"
2527
+ msgid "Activate License"
2528
+ msgstr ""
2529
+
2530
+ #: admin/templates/themes-licenses.tpl.php:30
2531
+ msgctxt "themes"
2532
+ msgid "Activating license..."
2533
+ msgstr ""
2534
+
2535
  #: admin/templates/transactions.tpl.php:2
2536
  msgctxt "admin transactions"
2537
  msgid "Transactions"
2565
  #: admin/templates/uninstall-capture-form.tpl.php:16
2566
  msgctxt "uninstall"
2567
  msgid ""
2568
+ "We're sorry to see you leave. Could you take 10 seconds and answer one "
2569
+ "question for us to help us make the product better for everyone in the "
2570
+ "future?"
2571
  msgstr ""
2572
 
2573
  #: admin/templates/uninstall-capture-form.tpl.php:19
2613
  #: admin/tracking.php:190
2614
  msgctxt "tracking"
2615
  msgid ""
2616
+ "Can Business Directory keep track of your theme, plugins, and other non-"
2617
+ "personal, non-identifying information to help us in testing the plugin for "
2618
+ "future releases?"
2619
  msgstr ""
2620
 
2621
  #: admin/tracking.php:192
2731
  msgid "Listing category \"%s\" does not exist"
2732
  msgstr ""
2733
 
2734
+ #: core/class-fee-plan.php:46
2735
  msgctxt "fees-api"
2736
  msgid "Fee label is required."
2737
  msgstr ""
2738
 
2739
+ #: core/class-fee-plan.php:49
2740
  msgctxt "fees-api"
2741
  msgid "Fee amount must be a non-negative decimal number."
2742
  msgstr ""
2743
 
2744
+ #: core/class-fee-plan.php:52
2745
  msgctxt "fees-api"
2746
  msgid "Fee must apply to at least one category."
2747
  msgstr ""
2748
 
2749
+ #: core/class-fee-plan.php:57
2750
  msgctxt "fees-api"
2751
  msgid "Fee listing duration must be a number less than 10 years (3650 days)."
2752
  msgstr ""
2774
  #: core/class-form-field.php:480
2775
  msgctxt "form-fields-api"
2776
  msgid ""
2777
+ "There can only be one field with association \"%s\". Please select another "
2778
+ "association."
2779
  msgstr ""
2780
 
2781
  #: core/class-form-field.php:490
2783
  msgid "\"%s\" is an invalid field type for this association."
2784
  msgstr ""
2785
 
2786
+ #: core/class-form-field.php:531
2787
  msgctxt "form-fields-api"
2788
  msgid "Invalid field ID"
2789
  msgstr ""
2790
 
2791
+ #: core/class-form-field.php:540
2792
  msgctxt "form-fields api"
2793
+ msgid ""
2794
+ "This form field can't be deleted because it is required for the plugin to "
2795
+ "work."
2796
  msgstr ""
2797
 
2798
+ #: core/class-form-field.php:552
2799
  msgctxt "form-fields-api"
2800
  msgid "An error occurred while trying to delete this field."
2801
  msgstr ""
2923
  #: core/class-settings.php:29
2924
  msgctxt "admin settings"
2925
  msgid ""
2926
+ "Allow BD to anonymously collect information about your installed plugins, "
2927
+ "themes and WP version?"
2928
  msgstr ""
2929
 
2930
  #: core/class-settings.php:34
2949
 
2950
  #: core/class-settings.php:39
2951
  msgctxt "admin settings"
2952
+ msgid ""
2953
+ "The slug can't be in use by another term. Avoid \"category\", for instance."
2954
  msgstr ""
2955
 
2956
  #: core/class-settings.php:40
2971
  #: core/class-settings.php:46
2972
  msgctxt "admin settings"
2973
  msgid ""
2974
+ "Prior to 3.5.1, we included the ID in the listing URL, like \"/business-"
2975
+ "directory/1809/listing-title\". Check this setting to remove the ID for "
2976
+ "better SEO."
2977
  msgstr ""
2978
 
2979
  #: core/class-settings.php:50
3013
 
3014
  #: core/class-settings.php:68
3015
  msgid ""
3016
+ "We expect that a membership plugin supports the 'redirect_to' parameter for "
3017
+ "the URLs below to work. If the plugin does not support them, these settings "
3018
+ "will not function as expected. Please contact the membership plugin and ask "
3019
+ "them to support the WP standard 'redirect_to' query parameter."
3020
  msgstr ""
3021
 
3022
  #: core/class-settings.php:71
3037
  #: core/class-settings.php:80
3038
  msgctxt "admin settings"
3039
  msgid ""
3040
+ "URL of your membership plugin's login page. Only enter this if using a "
3041
+ "membership plugin or custom login page."
3042
  msgstr ""
3043
 
3044
  #: core/class-settings.php:85
3049
  #: core/class-settings.php:88
3050
  msgctxt "admin settings"
3051
  msgid ""
3052
+ "URL of your membership plugin's registration page. Only enter this if using "
3053
+ "a membership plugin or custom registration page."
3054
  msgstr ""
3055
 
3056
  #: core/class-settings.php:93 core/class-settings.php:102
3066
  #: core/class-settings.php:105
3067
  msgctxt "admin settings"
3068
  msgid ""
3069
+ "Enter text or a URL starting with http. If you use a URL, the Terms and "
3070
+ "Conditions text will be replaced by a link to the appropiate page."
3071
  msgstr ""
3072
 
3073
  #: core/class-settings.php:109
3123
  #: core/class-settings.php:137
3124
  msgctxt "admin settings"
3125
  msgid ""
3126
+ "You have selected a textarea field to be included in quick searches. "
3127
+ "Searches involving those fields are very expensive and could result in "
3128
+ "timeouts and/or general slowness."
3129
  msgstr ""
3130
 
3131
  #: core/class-settings.php:139
3132
  msgctxt "admin settings"
3133
  msgid ""
3134
+ "Use Ctrl-Click to include multiple fields in the search. Choosing too many "
3135
+ "fields for inclusion into Quick Search can result in very slow search "
3136
+ "performance."
3137
  msgstr ""
3138
 
3139
  #: core/class-settings.php:142
3149
  #: core/class-settings.php:153
3150
  msgctxt "admin settings"
3151
  msgid ""
3152
+ "Enabling this makes BD sacrifice result quality to improve speed. This is "
3153
+ "helpful if you're on shared hosting plans, where database performance is an "
3154
+ "issue."
3155
  msgstr ""
3156
 
3157
  #: core/class-settings.php:158
3162
  #: core/class-settings.php:162
3163
  msgctxt "admin settings"
3164
  msgid ""
3165
+ "Check this if you are having trouble with BD, particularly when importing or "
3166
+ "exporting CSV files."
3167
  msgstr ""
3168
 
3169
  #: core/class-settings.php:165
3170
  msgctxt "admin settings"
3171
  msgid ""
3172
+ "If this compatibility mode doesn't solve your issue, you may be experiencing "
3173
+ "a more serious conflict. <a>Here is an article</a> about how to test for "
3174
+ "theme and plugin conflicts with Business Directory."
3175
  msgstr ""
3176
 
3177
  #: core/class-settings.php:168
3184
  msgid "Listings"
3185
  msgstr ""
3186
 
3187
+ #: core/class-settings.php:177 core/class-settings.php:324
3188
+ #: core/class-settings.php:610
3189
  msgctxt "admin settings"
3190
  msgid "General Settings"
3191
  msgstr ""
3197
 
3198
  #: core/class-settings.php:180
3199
  msgctxt "admin settings"
3200
+ msgid ""
3201
+ "Number of listings to show per page. Use a value of \"0\" to show all "
3202
+ "listings."
3203
  msgstr ""
3204
 
3205
  #: core/class-settings.php:182
3210
  #: core/class-settings.php:183
3211
  msgctxt "admin settings"
3212
  msgid ""
3213
+ "Use a value of \"0\" to keep a listing alive indefinitely or enter a number "
3214
+ "less than 10 years (3650 days)."
3215
  msgstr ""
3216
 
3217
  #: core/class-settings.php:189
3222
  #: core/class-settings.php:192
3223
  msgctxt "admin settings"
3224
  msgid ""
3225
+ "Allows visitors to contact listing authors privately. Authors will receive "
3226
+ "the messages via email."
3227
  msgstr ""
3228
 
3229
  #: core/class-settings.php:195
3238
 
3239
  #: core/class-settings.php:204
3240
  msgctxt "admin settings"
3241
+ msgid ""
3242
+ "Use this to prevent spamming of listing owners. 0 means unlimited submits "
3243
+ "per day."
3244
  msgstr ""
3245
 
3246
  #: core/class-settings.php:210
3251
  #: core/class-settings.php:213
3252
  msgctxt "admin settings"
3253
  msgid ""
3254
+ "Allow visitors to discuss listings using the standard WordPress comment "
3255
+ "form. Comments are public."
3256
  msgstr ""
3257
 
3258
  #: core/class-settings.php:214
3288
  #: core/class-settings.php:227
3289
  msgctxt "admin settings"
3290
  msgid ""
3291
+ "Allow users to opt in for automatic renewal of their listings. The fee is "
3292
+ "charged at the time the listing expires without user intervention."
3293
  msgstr ""
3294
 
3295
  #: core/class-settings.php:231
3299
 
3300
  #: core/class-settings.php:234
3301
  msgctxt "admin settings"
3302
+ msgid ""
3303
+ "Enable automatic renewal without having users opt in during the submit "
3304
+ "process."
3305
  msgstr ""
3306
 
3307
  #: core/class-settings.php:239
3311
 
3312
  #: core/class-settings.php:242
3313
  msgctxt "admin settings"
3314
+ msgid ""
3315
+ "Configure how many days before listing expiration is the renewal e-mail sent."
3316
  msgstr ""
3317
 
3318
  #: core/class-settings.php:246
3319
  msgctxt "admin settings"
3320
+ msgid ""
3321
+ "Send expiration notices including a cancel links to auto-renewed listings?"
3322
  msgstr ""
3323
 
3324
  #: core/class-settings.php:253
3334
  #: core/class-settings.php:261
3335
  msgctxt "admin settings"
3336
  msgid ""
3337
+ "Configure how many days after the expiration of a listing an e-mail reminder "
3338
+ "should be sent to the owner."
3339
  msgstr ""
3340
 
3341
  #: core/class-settings.php:264
3496
  #: core/class-settings.php:318
3497
  msgctxt "admin settings"
3498
  msgid ""
3499
+ "You can upgrade your listing to featured status. Featured listings will "
3500
+ "always appear on top of regular listings."
3501
  msgstr ""
3502
 
3503
  #: core/class-settings.php:323
3513
  #: core/class-settings.php:330
3514
  msgctxt "admin settings"
3515
  msgid ""
3516
+ "Shows the email address of the listing owner to all web users. NOT "
3517
+ "RECOMMENDED as this increases spam to the address and allows spam bots to "
3518
+ "harvest it for future use."
3519
  msgstr ""
3520
 
3521
  #: core/class-settings.php:333
3526
  #: core/class-settings.php:336
3527
  msgctxt "admin settings"
3528
  msgid ""
3529
+ "This affects emails sent to listing owners via contact forms or when their "
3530
+ "listings expire."
3531
  msgstr ""
3532
 
3533
  #: core/class-settings.php:343
3625
  msgid "Sent after a listing has been submitted."
3626
  msgstr ""
3627
 
3628
+ #: core/class-settings.php:394 core/class-settings.php:402
3629
+ #: core/class-settings.php:443
3630
  msgctxt "admin settings"
3631
  msgid "Listing's title"
3632
  msgstr ""
3639
  #: core/class-settings.php:400
3640
  msgctxt "admin settings"
3641
  msgid ""
3642
+ "Your listing \"[listing]\" is now available at [listing-url] and can be "
3643
+ "viewed by the public."
3644
  msgstr ""
3645
 
3646
  #: core/class-settings.php:401
3660
 
3661
  #: core/class-settings.php:411
3662
  msgctxt "admin settings"
3663
+ msgid ""
3664
+ "Sent to listing owners when someone uses the contact form on their listing "
3665
+ "pages."
3666
  msgstr ""
3667
 
3668
  #: core/class-settings.php:421
3693
  #: core/class-settings.php:453
3694
  msgctxt "admin settings"
3695
  msgid ""
3696
+ "This section refers only to the text of the renewal/expiration notices. You "
3697
+ "can also <a>configure when the e-mails are sent</a>."
3698
  msgstr ""
3699
 
3700
  #: core/class-settings.php:457
3704
 
3705
  #: core/class-settings.php:461
3706
  msgctxt "settings"
3707
+ msgid ""
3708
+ "Sent some time before the listing expires. Applies to non-recurring renewals "
3709
+ "only."
3710
  msgstr ""
3711
 
3712
+ #: core/class-settings.php:462 core/class-settings.php:475
3713
+ #: core/class-settings.php:488 core/class-settings.php:501
3714
+ #: core/class-settings.php:514
3715
  msgctxt "settings"
3716
  msgid "Listing's name (with link)"
3717
  msgstr ""
3718
 
3719
+ #: core/class-settings.php:463 core/class-settings.php:476
3720
+ #: core/class-settings.php:489 core/class-settings.php:502
3721
+ #: core/class-settings.php:515
3722
  msgctxt "settings"
3723
  msgid "Author's name"
3724
  msgstr ""
3725
 
3726
+ #: core/class-settings.php:464 core/class-settings.php:477
3727
+ #: core/class-settings.php:516
3728
  msgctxt "settings"
3729
  msgid "Expiration date"
3730
  msgstr ""
3734
  msgid "Category that is going to expire"
3735
  msgstr ""
3736
 
3737
+ #: core/class-settings.php:466 core/class-settings.php:479
3738
+ #: core/class-settings.php:518
3739
  msgctxt "settings"
3740
  msgid "Link to renewal page"
3741
  msgstr ""
3742
 
3743
+ #: core/class-settings.php:467 core/class-settings.php:480
3744
+ #: core/class-settings.php:492 core/class-settings.php:505
3745
+ #: core/class-settings.php:519
3746
  msgctxt "settings"
3747
  msgid "Link to your site"
3748
  msgstr ""
3754
 
3755
  #: core/class-settings.php:474
3756
  msgctxt "settings"
3757
+ msgid ""
3758
+ "Sent at the time of listing expiration. Applies to non-recurring renewals "
3759
+ "only."
3760
  msgstr ""
3761
 
3762
  #: core/class-settings.php:478 core/class-settings.php:517
3772
  #: core/class-settings.php:487
3773
  msgctxt "settings"
3774
  msgid ""
3775
+ "Sent some time before the listing is auto-renewed. Applies to recurring "
3776
+ "renewals only."
3777
  msgstr ""
3778
 
3779
  #: core/class-settings.php:490 core/class-settings.php:504
3798
 
3799
  #: core/class-settings.php:500
3800
  msgctxt "settings"
3801
+ msgid ""
3802
+ "Sent after the listing is auto-renewed. Applies to recurring renewals only."
3803
  msgstr ""
3804
 
3805
  #: core/class-settings.php:503
3815
  #: core/class-settings.php:513
3816
  msgctxt "settings"
3817
  msgid ""
3818
+ "Sent some time after listing expiration and when no renewal has occurred. "
3819
+ "Applies to both recurring and non-recurring renewals."
3820
  msgstr ""
3821
 
3822
  #: core/class-settings.php:523
3847
  #: core/class-settings.php:537
3848
  msgctxt "admin settings"
3849
  msgid ""
3850
+ "Recommended for added security. For this to work you need to enable HTTPS on "
3851
+ "your server and <a>obtain an SSL certificate</a>."
3852
  msgstr ""
3853
 
3854
  #: core/class-settings.php:541
4009
  #: core/class-settings.php:584
4010
  msgctxt "admin settings"
4011
  msgid ""
4012
+ "Thank you for your payment. Your payment is being verified and your listing "
4013
+ "reviewed. The verification and review process could take up to 48 hours."
4014
  msgstr ""
4015
 
4016
  #: core/class-settings.php:589
4021
  #: core/class-settings.php:592
4022
  msgctxt "admin settings"
4023
  msgid ""
4024
+ "An abandoned payment is when a user attempts to place a listing and gets to "
4025
+ "the end, but fails to complete their payment for the listing. This results "
4026
+ "in listings that look like they failed, when the user simply didn't complete "
4027
+ "the transaction. BD can remind them to come back and continue."
4028
  msgstr ""
4029
 
4030
  #: core/class-settings.php:598
4035
  #: core/class-settings.php:603
4036
  msgctxt "admin settings"
4037
  msgid ""
4038
+ "Listings with pending payments are marked as abandoned after this time. You "
4039
+ "can also <a>customize the e-mail</a> users receive."
4040
  msgstr ""
4041
 
4042
  #: core/class-settings.php:609
4067
  #: core/class-settings.php:628
4068
  msgctxt "admin settings"
4069
  msgid ""
4070
+ "Any changes to these settings will affect new listings only. Existing "
4071
+ "listings will not be affected. If you wish to change existing listings, you "
4072
+ "will need to re-upload the image(s) on that listing after changing things "
4073
+ "here."
4074
  msgstr ""
4075
 
4076
  #: core/class-settings.php:629
4120
 
4121
  #: core/class-settings.php:641
4122
  msgctxt "admin settings"
4123
+ msgid ""
4124
+ "Uncheck if it conflicts with other elements or plugins installed on your site"
4125
  msgstr ""
4126
 
4127
  #: core/class-settings.php:643
4147
  #: core/class-settings.php:651
4148
  msgctxt "admin settings"
4149
  msgid ""
4150
+ "When enabled images will match exactly the dimensions above but part of the "
4151
+ "image may be cropped out. If disabled, image thumbnails will be resized to "
4152
+ "match the specified width and their height will be adjusted proportionally. "
4153
+ "Depending on the uploaded images, thumbnails may have different heights."
4154
  msgstr ""
4155
 
4156
  #: core/class-settings.php:657
4161
  #: core/class-settings.php:662
4162
  msgctxt "admin settings"
4163
  msgid ""
4164
+ "For paid listing images, configure that by adding or editing a <a>Fee Plan</"
4165
+ "a> instead of this setting, which is ignored for paid listings."
4166
  msgstr ""
4167
 
4168
  #: core/class-settings.php:665
4178
  #: core/class-settings.php:722
4179
  msgctxt "admin settings"
4180
  msgid ""
4181
+ "Could not copy the AJAX compatibility plugin \"%s\". Compatibility mode was "
4182
+ "not activated."
4183
  msgstr ""
4184
 
4185
  #: core/class-settings.php:730
4186
  msgctxt "admin settings"
4187
  msgid ""
4188
+ "Could not activate AJAX Compatibility mode: the directory \"%s\" could not "
4189
+ "be created."
4190
  msgstr ""
4191
 
4192
  #: core/class-settings.php:739
4193
  msgctxt "admin settings"
4194
  msgid ""
4195
+ "Could not remove the \"Business Directory Plugin - AJAX Compatibility Module"
4196
+ "\". Please remove the file \"%s\" manually or deactivate the plugin."
4197
  msgstr ""
4198
 
4199
  #: core/class-settings.php:1057
4472
  #: core/fieldtypes/class-fieldtypes-textarea.php:60
4473
  msgctxt "form-fields admin"
4474
  msgid ""
4475
+ "<b>Warning:</b> Users can use this feature to get around your image limits "
4476
+ "in fee plans."
4477
  msgstr ""
4478
 
4479
  #: core/fieldtypes/class-fieldtypes-textarea.php:61
4484
  #: core/fieldtypes/class-fieldtypes-textarea.php:64
4485
  msgctxt "form-fields admin"
4486
  msgid ""
4487
+ "<b>Advanced users only!</b> Unless you've been told to change this, don't "
4488
+ "switch it unless you know what you're doing."
4489
  msgstr ""
4490
 
4491
  #: core/fieldtypes/class-fieldtypes-textarea.php:65
4707
  #: core/gateways-authorize-net.php:92
4708
  msgctxt "authorize-net"
4709
  msgid ""
4710
+ "The payment gateway didn't accept your credit card or billing information. "
4711
+ "The following reason was given: \"%s\"."
4712
  msgstr ""
4713
 
4714
  #: core/gateways-authorize-net.php:96
4715
  msgctxt "authorize-net"
4716
  msgid ""
4717
+ "Your payment is being held for review by the payment gateway. The following "
4718
+ "reason was given: \"%s\"."
4719
  msgstr ""
4720
 
4721
  #: core/gateways-authorize-net.php:99 core/gateways-authorize-net.php:122
4778
  msgid "Destination dir \"%s\" is not writable."
4779
  msgstr ""
4780
 
4781
+ #: core/helpers/class-themes-updater.php:125
4782
  msgctxt "themes"
4783
  msgid "Updating theme..."
4784
  msgstr ""
4785
 
4786
+ #: core/helpers/class-themes-updater.php:126
4787
  msgctxt "themes"
4788
  msgid "Theme updated."
4789
  msgstr ""
4790
 
4791
+ #: core/helpers/class-themes-updater.php:128
4792
  msgctxt "themes"
4793
  msgid "New version available (<b>%s</b>). <a>Update now.</a>"
4794
  msgstr ""
4795
 
4796
+ #: core/helpers/class-themes-updater.php:156
4797
  msgctxt "themes"
4798
  msgid "Could not update theme: %s"
4799
  msgstr ""
4800
 
4801
+ #: core/helpers/class-themes-updater.php:162
4802
  msgctxt "themes"
4803
  msgid "Theme was updated sucessfully."
4804
  msgstr ""
4805
 
4806
+ #: core/installer.php:42
4807
  msgctxt "default category name"
4808
  msgid "General"
4809
  msgstr ""
4810
 
4811
+ #: core/installer.php:50
4812
+ msgctxt "installer"
4813
+ msgid "Default Fee"
4814
+ msgstr ""
4815
+
4816
+ #: core/installer.php:484
4817
  msgctxt "installer"
4818
  msgid ""
4819
  "<b>Business Directory Plugin - Regions Module</b> was disabled because it is "
4820
+ "incompatible with the current version of Business Directory. Please update "
4821
+ "the Regions module."
4822
  msgstr ""
4823
 
4824
+ #: core/installer.php:550
4825
  msgctxt "installer"
4826
  msgid "Cleaning up listing fees information... %d/%d"
4827
  msgstr ""
4828
 
4829
+ #: core/installer.php:600
4830
  msgctxt "installer"
4831
  msgid "Migrating previous transactions to new Payments API... %d/%d"
4832
  msgstr ""
4833
 
4834
+ #: core/installer.php:629
4835
  msgctxt "installer"
4836
  msgid "Initial listing payment (BD < 3.4)"
4837
  msgstr ""
4838
 
4839
+ #: core/installer.php:640
4840
  msgctxt "installer"
4841
  msgid "Listing edit payment (BD < 3.4)"
4842
  msgstr ""
4843
 
4844
+ #: core/installer.php:661
4845
  msgctxt "installer"
4846
  msgid "Renewal fee \"%s\" for category \"%s\""
4847
  msgstr ""
4848
 
4849
+ #: core/installer.php:680
4850
  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 ""
4934
  #: core/licensing.php:233
4935
  msgctxt "licensing"
4936
  msgid ""
4937
+ "The following premium modules will not work until a valid license key is "
4938
+ "provided. Go to <a>Manage Options - Licenses</a> to enter your license "
4939
+ "information."
4940
  msgstr ""
4941
 
4942
  #: core/licensing.php:254
4947
  #: core/licensing.php:255
4948
  msgctxt "licensing"
4949
  msgid ""
4950
+ "The license key for <span class=\"module-name\">%s %s</span> has expired. "
4951
+ "The module will continue to work but you will not receive any more updates "
4952
+ "until the license is renewed."
4953
  msgstr ""
4954
 
4955
  #: core/licensing.php:259
4967
  msgid "Could not deactivate license: %s."
4968
  msgstr ""
4969
 
4970
+ #: core/payment.php:91
 
 
 
 
 
4971
  msgctxt "payments-api"
4972
  msgid ""
4973
+ "You are offering featured listings but have payments turned off. Go to <a "
4974
+ "href=\"%s\">Manage Options - Payment</a> to change the payment settings. "
4975
+ "Until you change this, the <i>Upgrade to Featured</i> option will be "
4976
+ "disabled."
4977
  msgstr ""
4978
 
4979
+ #: core/payment.php:109
4980
  msgctxt "payments-api"
4981
  msgid ""
4982
+ "The <b>%s</b> gateway is active but not properly configured. The gateway "
4983
+ "won't be available until the following problems are fixed: <b>%s</b>. <br/> "
4984
+ "Check the <a href=\"%s\">payment settings</a>."
4985
  msgstr ""
4986
 
4987
+ #: core/payment.php:119
4988
  msgctxt "admin"
4989
  msgid ""
4990
+ "You have payments turned on but no gateway is active and properly "
4991
+ "configured. Go to <a href=\"%s\">Manage Options - Payment</a> to change the "
4992
+ "payment settings. Until you change this, the directory will operate in "
4993
+ "<i>Free Mode</i>."
4994
  msgstr ""
4995
 
4996
+ #: core/payment.php:123
4997
  msgid ""
4998
+ "BD detected PayFast and another gateway were enabled. This setup is not "
4999
+ "recommended due to PayFast supporting only ZAR and the other gateways not "
5000
+ "supporting this currency."
5001
  msgstr ""
5002
 
5003
+ #: core/payment.php:127
5004
  msgid ""
5005
+ "You have recurring renewal of listing fees enabled but the payment gateways "
5006
+ "installed don't support recurring payments. Until a gateway that supports "
5007
+ "recurring payments (such as PayPal) is enabled automatic renewals will be "
5008
+ "disabled."
5009
  msgstr ""
5010
 
5011
+ #: core/payment.php:135
5012
+ msgid ""
5013
+ "You have payments enabled but there are no fees available. Users won't be "
5014
+ "able to post listings. Please <a href=\"fees\">create some fees</a> or <a "
5015
+ "href=\"settings\">configure the Directory</a> to operate in \"Free Mode\"."
5016
+ msgstr ""
5017
+
5018
+ #: core/payment.php:169
5019
  msgctxt "payments-api"
5020
  msgid "Checkout"
5021
  msgstr ""
5022
 
5023
+ #: core/payment.php:170
5024
  msgctxt "payments-api"
5025
  msgid "Pay %1$s through %2$s"
5026
  msgstr ""
5027
 
5028
+ #: core/payment.php:177
5029
  msgctxt "payments-api"
5030
  msgid "Your transaction has been approved."
5031
  msgstr ""
5032
 
5033
+ #: core/payment.php:363
5034
  msgctxt "payments"
5035
  msgid "Payment Details"
5036
  msgstr ""
5037
 
5038
+ #: core/payment.php:390
5039
  msgctxt "checkout"
5040
  msgid "Payment Method"
5041
  msgstr ""
5042
 
5043
+ #: core/payment.php:424
5044
  msgctxt "payment"
5045
  msgid "Return to Directory."
5046
  msgstr ""
5047
 
5048
+ #: core/payment.php:431
5049
  msgctxt "payments"
5050
  msgid ""
5051
+ "Your payment is being processed by the payment gateway. Please reload this "
5052
+ "page in a moment to see if the status has changed or contact the site "
5053
+ "administrator."
5054
  msgstr ""
5055
 
5056
+ #: core/payment.php:434
5057
  msgctxt "payments"
5058
  msgid ""
5059
+ "The payment has been rejected by the payment gateway. Please contact the "
5060
+ "site administrator if you think there is an error or click \"Change Payment "
5061
+ "Method\" to select another payment method and try again."
5062
  msgstr ""
5063
 
5064
+ #: core/payment.php:435
5065
  msgctxt "payments"
5066
  msgid "Change Payment Method"
5067
  msgstr ""
5068
 
5069
+ #: core/payment.php:437
5070
  msgctxt "payments"
5071
  msgid ""
5072
+ "The payment has been rejected by the payment gateway. Please contact the "
5073
+ "site administrator if you think there is an error."
5074
  msgstr ""
5075
 
5076
+ #: core/payment.php:440
5077
  msgctxt "payments"
5078
  msgid "The payment has been canceled at your request."
5079
  msgstr ""
5080
 
5081
+ #: core/payment.php:538
5082
  msgctxt "admin"
5083
  msgid "Pending Abandonment"
5084
  msgstr ""
5085
 
5086
+ #: core/payment.php:543
5087
  msgctxt "admin"
5088
  msgid "Abandoned"
5089
  msgstr ""
5090
 
5091
+ #: core/templates/listing-sticky-tag.tpl.php:3
5092
+ #: core/templates/listing-sticky-tag.tpl.php:4 core/templates-listings.php:60
5093
  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."
5101
  msgstr ""
5102
 
5103
+ #: core/templates/listings.tpl.php:17
5104
+ #: templates/businessdirectory-listings.tpl.php:38
5105
  msgctxt "templates"
5106
  msgid "&laquo; Previous "
5107
  msgstr ""
5108
 
5109
+ #: core/templates/listings.tpl.php:18
5110
+ #: templates/businessdirectory-listings.tpl.php:39
5111
  msgctxt "templates"
5112
  msgid "Next &raquo;"
5113
  msgstr ""
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 ""
5159
 
5160
  #: core/utils.php:106
5161
  msgctxt "utils"
5162
+ msgid ""
5163
+ "POSTed data exceeds PHP config. maximum. See \"post_max_size\" directive."
5164
  msgstr ""
5165
 
5166
+ #: core/utils.php:164
5167
  msgctxt "utils"
5168
  msgid "File size (%s) exceeds maximum file size of %s"
5169
  msgstr ""
5170
 
5171
+ #: core/utils.php:172
5172
  msgctxt "utils"
5173
  msgid "File size (%s) is inferior to the required minimum file size of %s"
5174
  msgstr ""
5175
 
5176
+ #: core/utils.php:181 core/utils.php:188
5177
  msgctxt "utils"
5178
  msgid "File type \"%s\" is not allowed"
5179
  msgstr ""
5180
 
5181
+ #: core/utils.php:195
5182
  msgctxt "utils"
5183
  msgid "Unkown error while uploading file."
5184
  msgstr ""
5185
 
5186
+ #: core/utils.php:214
5187
  msgctxt "utils"
5188
  msgid "Uploaded file is not an image"
5189
  msgstr ""
5190
 
5191
+ #: core/utils.php:223
5192
  msgctxt "utils"
5193
  msgid "Image width (%s px) is inferior to minimum required width of %s px."
5194
  msgstr ""
5195
 
5196
+ #: core/utils.php:229
5197
  msgctxt "utils"
5198
  msgid "Image height (%s px) is inferior to minimum required height of %s px."
5199
  msgstr ""
5200
 
5201
+ #: core/utils.php:235
5202
  msgctxt "utils"
5203
  msgid "Image width (%s px) is greater than maximum allowed width of %s px."
5204
  msgstr ""
5205
 
5206
+ #: core/utils.php:241
5207
  msgctxt "utils"
5208
  msgid "Image height (%s px) is greater than maximum required height of %s px."
5209
  msgstr ""
5210
 
5211
+ #: core/utils.php:255
5212
  msgctxt "utils"
5213
  msgid "Error while uploading file"
5214
  msgstr ""
5226
  #: core/view-checkout.php:103
5227
  msgctxt "checkout"
5228
  msgid ""
5229
+ "Payments are not allowed on the non-secure version of this site. Please "
5230
+ "<a>continue to the secure server to proceed with your payment</a>."
5231
  msgstr ""
5232
 
5233
  #: core/view-checkout.php:118
5234
  msgctxt "checkout"
5235
  msgid ""
5236
+ "Your payment is being verified. This usually takes a few minutes but can "
5237
+ "take up to 24 hours."
5238
  msgstr ""
5239
 
5240
  #: core/view-checkout.php:126 core/view-checkout.php:147
5334
  #: core/view-renew-listing.php:21
5335
  msgctxt "renewal"
5336
  msgid ""
5337
+ "Your renewal ID is invalid. Please use the URL you were given on the renewal "
5338
+ "e-mail message."
5339
  msgstr ""
5340
 
5341
  #: core/view-renew-listing.php:47
5361
  #: core/view-renew-listing.php:92
5362
  msgctxt "renew"
5363
  msgid ""
5364
+ "Because you are on a recurring fee plan you don't have to renew your listing "
5365
+ "right now as this will be handled automatically when renewal comes."
5366
  msgstr ""
5367
 
5368
  #: core/view-renew-listing.php:94
5383
  #: core/view-renew-listing.php:102
5384
  msgctxt "renew"
5385
  msgid ""
5386
+ "However, if you want to cancel your subscription you can do that on this "
5387
+ "page. When the renewal time comes you'll be able to change your settings "
5388
+ "again."
5389
  msgstr ""
5390
 
5391
  #: core/view-submit-listing.php:29
5392
  msgctxt "templates"
5393
  msgid ""
5394
+ "There are no categories assigned to the business directory yet. You need to "
5395
+ "assign some categories to the business directory. Only admins can see this "
5396
+ "message. Regular users are seeing a message that they cannot add their "
5397
+ "listing at this time. Listings cannot be added until you assign categories "
5398
+ "to the business directory."
5399
  msgstr ""
5400
 
5401
  #: core/view-submit-listing.php:31
5402
  msgctxt "templates"
5403
  msgid ""
5404
+ "Your listing cannot be added at this time. Please try again later. If this "
5405
+ "is not the first time you see this warning, please ask the site "
5406
+ "administrator to set up one or more categories inside the Directory."
5407
  msgstr ""
5408
 
5409
  #: core/view-submit-listing.php:43
5423
 
5424
  #: core/view-submit-listing.php:65
5425
  msgctxt "templates"
5426
+ msgid ""
5427
+ "You are logged in as an administrator. Any payment steps will be skipped."
5428
  msgstr ""
5429
 
5430
+ #: core/view-submit-listing.php:205
5431
  msgctxt "templates"
5432
  msgid "Please select a fee option for the \"%s\" category."
5433
  msgstr ""
5434
 
5435
+ #: core/view-submit-listing.php:273
5436
  msgctxt "templates"
5437
  msgid "Please agree to the Terms and Conditions."
5438
  msgstr ""
5439
 
5440
+ #: core/view-submit-listing.php:279
5441
  msgctxt "templates"
5442
  msgid "The reCAPTCHA wasn't entered correctly."
5443
  msgstr ""
5444
 
5445
+ #: core/view-submit-listing.php:296
5446
  msgctxt "templates"
5447
  msgid "Read our Terms and Conditions"
5448
  msgstr ""
5449
 
5450
+ #: core/view-submit-listing.php:301
5451
  msgctxt "templates"
5452
  msgid "Terms and Conditions:"
5453
  msgstr ""
5454
 
5455
+ #: core/view-submit-listing.php:312
5456
  msgctxt "templates"
5457
  msgid "I agree to the Terms and Conditions"
5458
  msgstr ""
5459
 
5460
+ #: core/view-submit-listing.php:449
5461
  msgctxt "listings"
5462
  msgid "Fee \"%s\" for category \"%s\"%s"
5463
  msgstr ""
5464
 
5465
+ #: core/view-submit-listing.php:452
5466
  msgctxt "listings"
5467
  msgid "(recurring)"
5468
  msgstr ""
5469
 
5470
+ #: core/view-submit-listing.php:462 core/view-upgrade-listing.php:54
5471
  msgctxt "submit"
5472
  msgid "Listing upgrade to featured"
5473
  msgstr ""
5474
 
5475
+ #: core/view-submit-listing.php:495
5476
  msgctxt "submit_state"
5477
  msgid "Invalid submit state."
5478
  msgstr ""
5494
 
5495
  #: core/views.php:32
5496
  msgid ""
5497
+ "You need to create a page with the [businessdirectory] shortcode for the "
5498
+ "Business Directory plugin to work correctly."
5499
  msgstr ""
5500
 
5501
  #: core/views.php:34
5515
  #: core/views.php:486
5516
  msgctxt "templates"
5517
  msgid ""
5518
+ "There are no categories assigned to the business directory yet. You need to "
5519
+ "assign some categories to the business directory. Only admins can see this "
5520
+ "message. Regular users are seeing a message that there are currently no "
5521
+ "listings in the directory. Listings cannot be added until you assign "
5522
+ "categories to the business directory."
5523
  msgstr ""
5524
 
5525
  #: core/views.php:488
5530
  #: core/views.php:506
5531
  msgctxt "templates"
5532
  msgid ""
5533
+ "You have \"Hide Empty Categories\" on and some categories that don't have "
5534
+ "listings in them. That means they won't show up on the front end of your "
5535
+ "site. If you didn't want that, click <a>here</a> to change the setting."
5536
  msgstr ""
5537
 
5538
  #: core/widget-featured-listings.php:11
5778
  #: templates/delete-listing-confirm.tpl.php:7
5779
  msgctxt "delete listing"
5780
  msgid ""
5781
+ "Your listing is associated to a recurring payment. If you don't cancel the "
5782
+ "recurring payment before deleting the listing, you might be charged for "
5783
+ "additional periods even though your listing won't be available."
5784
  msgstr ""
5785
 
5786
  #: templates/delete-listing-confirm.tpl.php:12
5787
  msgctxt "delete listing"
5788
  msgid ""
5789
+ "Please visit <a>Manage recurring payments</a> to review your current "
5790
+ "recurring payments."
5791
  msgstr ""
5792
 
5793
  #: templates/delete-listing-confirm.tpl.php:18
5813
  #: templates/email/listing-added.tpl.php:2
5814
  msgctxt "emails"
5815
  msgid ""
5816
+ "A new listing has been submitted to the directory. Listing details can be "
5817
+ "found below."
5818
  msgstr ""
5819
 
5820
+ #: templates/email/listing-added.tpl.php:7
5821
+ #: templates/email/listing-edited.tpl.php:7
5822
  msgctxt "notify email"
5823
  msgid "ID"
5824
  msgstr ""
5825
 
5826
+ #: templates/email/listing-added.tpl.php:10
5827
+ #: templates/email/listing-edited.tpl.php:10
5828
  msgctxt "notify email"
5829
  msgid "Title"
5830
  msgstr ""
5831
 
5832
+ #: templates/email/listing-added.tpl.php:13
5833
+ #: templates/email/listing-edited.tpl.php:13
5834
  msgctxt "notify email"
5835
  msgid "URL"
5836
  msgstr ""
5837
 
5838
+ #: templates/email/listing-added.tpl.php:13
5839
+ #: templates/email/listing-edited.tpl.php:13
5840
  msgctxt "notify email"
5841
  msgid "(not published yet)"
5842
  msgstr ""
5843
 
5844
+ #: templates/email/listing-added.tpl.php:16
5845
+ #: templates/email/listing-edited.tpl.php:16
5846
  msgctxt "notify email"
5847
  msgid "Categories"
5848
  msgstr ""
5849
 
5850
+ #: templates/email/listing-added.tpl.php:19
5851
+ #: templates/email/listing-edited.tpl.php:19
5852
  msgctxt "notify email"
5853
  msgid "Posted By"
5854
  msgstr ""
5856
  #: templates/email/listing-edited.tpl.php:2
5857
  msgctxt "emails"
5858
  msgid ""
5859
+ "A listing in the directory has been edited recently. Listing details can be "
5860
+ "found below."
5861
  msgstr ""
5862
 
5863
  #: templates/listing-contactform.tpl.php:9
5868
  #: templates/listing-contactform.tpl.php:18
5869
  msgctxt "templates"
5870
  msgid ""
5871
+ "You are currently logged in as %s. Your message will be sent using your "
5872
+ "logged in contact email."
5873
  msgstr ""
5874
 
5875
  #: templates/listing-contactform.tpl.php:23
5905
  #: templates/manage-listings.tpl.php:6
5906
  msgctxt "templates"
5907
  msgid ""
5908
+ "Your current listings are shown below. To edit a listing click the edit "
5909
+ "button. To delete a listing click the delete button."
5910
  msgstr ""
5911
 
5912
  #: templates/manage-listings.tpl.php:9
6004
  msgid "Images Allowed"
6005
  msgstr ""
6006
 
6007
+ #: templates/parts/category-fee-selection.tpl.php:28
6008
+ msgctxt "templates"
6009
+ msgid "There are no fees available for this category."
6010
+ msgstr ""
6011
+
6012
+ #: templates/parts/category-fee-selection.tpl.php:50
6013
  msgctxt "templates"
6014
  msgid "Unlimited"
6015
  msgstr ""
6016
 
6017
+ #: templates/parts/category-fee-selection.tpl.php:52
6018
  msgctxt "templates"
6019
  msgid "%d day"
6020
  msgid_plural "%d days"
6021
  msgstr[0] ""
6022
  msgstr[1] ""
6023
 
6024
+ #: templates/parts/listing-buttons.tpl.php:4
6025
+ #: templates/parts/listing-buttons.tpl.php:18
6026
  #: templates/parts/listing-buttons.tpl.php:22
6027
  msgctxt "templates"
6028
  msgid "Edit"
6033
  msgid "Upgrade Listing"
6034
  msgstr ""
6035
 
6036
+ #: templates/parts/listing-buttons.tpl.php:10
6037
+ #: templates/parts/listing-buttons.tpl.php:19
6038
  #: templates/parts/listing-buttons.tpl.php:23
6039
  msgctxt "templates"
6040
  msgid "Delete"
6041
  msgstr ""
6042
 
6043
+ #: templates/parts/listing-buttons.tpl.php:10
6044
+ #: templates/parts/listing-buttons.tpl.php:23
6045
  msgctxt "templates"
6046
  msgid "Are you sure you wish to delete this listing?"
6047
  msgstr ""
6050
  msgid "← Back to Directory"
6051
  msgstr ""
6052
 
6053
+ #: templates/parts/listing-buttons.tpl.php:17
6054
+ #: templates/parts/listing-buttons.tpl.php:21
6055
  msgctxt "templates"
6056
  msgid "View"
6057
  msgstr ""
6059
  #: templates/parts/login-required.tpl.php:5
6060
  msgctxt "templates"
6061
  msgid ""
6062
+ "You are not currently logged in. Please login or register first. When "
6063
+ "registering, you will receive an activation email. Be sure to check your "
6064
+ "spam if you don't see it in your email within 60 minutes."
6065
  msgstr ""
6066
 
6067
  #: templates/parts/login-required.tpl.php:10
6111
 
6112
  #: templates/renew-listing.tpl.php:10
6113
  msgctxt "templates"
6114
+ msgid ""
6115
+ "You are about to renew your listing \"%s\" publication inside category \"%s"
6116
+ "\"."
6117
  msgstr ""
6118
 
6119
  #: templates/renew-listing.tpl.php:15
6120
  msgctxt "WPBDM"
6121
  msgid ""
6122
+ "Please select a fee option or click \"Do not renew my listing\" to cancel "
6123
+ "your renewal."
6124
  msgstr ""
6125
 
6126
+ #: templates/renew-listing.tpl.php:22
6127
+ #: templates/submit-listing/category-selection.tpl.php:8
6128
  #: templates/submit-listing/fee-selection.tpl.php:37
6129
  #: templates/submit-listing/images.tpl.php:38
6130
  #: templates/submit-listing/listing-fields.tpl.php:34
6219
 
6220
  #: templates/submit-listing/fee-selection.tpl.php:31
6221
  msgctxt "submit"
6222
+ msgid ""
6223
+ "Would you like to make your fee renew automatically at the end of the period?"
6224
  msgstr ""
6225
 
6226
  #: templates/submit-listing/images-single.tpl.php:18
6261
  #: templates/submit-listing/images-upload-form.tpl.php:36
6262
  msgctxt "templates"
6263
  msgid ""
6264
+ "Your image slots are all full at this time. You may click \"Continue\" if "
6265
+ "you are done, or \"Delete Image\" to upload a new image in place of a "
6266
+ "current one."
6267
  msgstr ""
6268
 
6269
  #: templates/submit-listing/images-upload-form.tpl.php:44
6289
  #: templates/submit-listing/images.tpl.php:7
6290
  msgctxt "templates"
6291
  msgid ""
6292
+ "There is an image pending upload. Would you still like to continue without "
6293
+ "saving the image?"
6294
  msgstr ""
6295
 
6296
  #: templates/submit-listing/images.tpl.php:13
6315
 
6316
  #: vendors/edd/EDD_SL_Plugin_Updater.php:178
6317
  msgid ""
6318
+ "There is a new version of %1$s available. <a target=\"_blank\" class="
6319
+ "\"thickbox\" href=\"%2$s\">View version %3$s details</a>."
6320
  msgstr ""
6321
 
6322
  #: vendors/edd/EDD_SL_Plugin_Updater.php:185
6323
  msgid ""
6324
+ "There is a new version of %1$s available. <a target=\"_blank\" class="
6325
+ "\"thickbox\" href=\"%2$s\">View version %3$s details</a> or <a href=\"%4$s"
6326
+ "\">update now</a>."
6327
  msgstr ""
6328
 
6329
  #: vendors/edd/EDD_SL_Plugin_Updater.php:325
6340
 
6341
  #. Description of the plugin/theme
6342
  msgid ""
6343
+ "Provides the ability to maintain a free or paid business directory on your "
6344
+ "WordPress powered site."
6345
  msgstr ""
6346
 
6347
  #. Author of the plugin/theme
templates/listing-upgradetosticky.tpl.php CHANGED
@@ -1,7 +1,7 @@
1
  <h3><?php _ex('Upgrade listing', 'templates', 'WPBDM'); ?></h3>
2
 
3
  <?php if ( $featured_text = wpbdp_get_option( 'featured-description' ) ): ?>
4
- <p><?php echo $featured_text; ?></p>
5
  <?php endif; ?>
6
 
7
  <form action="" method="POST">
1
  <h3><?php _ex('Upgrade listing', 'templates', 'WPBDM'); ?></h3>
2
 
3
  <?php if ( $featured_text = wpbdp_get_option( 'featured-description' ) ): ?>
4
+ <p><?php echo wpautop( wp_kses_post( $featured_text ) ); ?></p>
5
  <?php endif; ?>
6
 
7
  <form action="" method="POST">
templates/parts/category-fee-selection.tpl.php CHANGED
@@ -21,7 +21,14 @@
21
  <th class="fee-images"><?php echo _x( 'Images Allowed', 'templates', 'WPBDM' ); ?></th>
22
  <?php // do_action( 'wpbdp_fee_selection_extra_headers' ); ?>
23
  </thead>
24
- <tbody>
 
 
 
 
 
 
 
25
  <?php
26
  $rows_html = '';
27
  ob_start();
@@ -65,7 +72,8 @@
65
  }
66
 
67
  echo $rows_html;
68
- ?>
 
69
  </tbody>
70
  </table>
71
 
21
  <th class="fee-images"><?php echo _x( 'Images Allowed', 'templates', 'WPBDM' ); ?></th>
22
  <?php // do_action( 'wpbdp_fee_selection_extra_headers' ); ?>
23
  </thead>
24
+ <tbody>
25
+ <?php if ( ! $category_fees ): ?>
26
+ <tr class="fee-option fee-id-none">
27
+ <td colspan="5">
28
+ <?php _ex( 'There are no fees available for this category.', 'templates', 'WPBDM'); ?>
29
+ </td>
30
+ </tr>
31
+ <?php else: ?>
32
  <?php
33
  $rows_html = '';
34
  ob_start();
72
  }
73
 
74
  echo $rows_html;
75
+ ?>
76
+ <?php endif; ?>
77
  </tbody>
78
  </table>
79
 
templates/submit-listing/fee-selection.tpl.php CHANGED
@@ -16,7 +16,7 @@
16
  <?php if ( $upgrade_option ): ?>
17
  <div class="upgrade-to-featured-option">
18
  <b><?php echo sprintf( _x('Would you like to upgrade your listing to "%s" for %s more?', 'templates', 'WPBDM'), esc_attr( $upgrade_option->name ), wpbdp_get_option( 'currency-symbol' ) . ' ' . $upgrade_option->cost ); ?></b>
19
- <p class="description"><?php echo esc_html( $upgrade_option->description ); ?></p>
20
  <p>
21
  <label><input type="checkbox" name="upgrade-listing" value="upgrade" <?php echo wpbdp_getv( $_POST, 'upgrade-listing', '') == 'upgrade' ? 'checked="checked"' : ''; ?> /> <?php _ex( 'Yes, upgrade my listing now.', 'templates', 'WPBDM'); ?></label>
22
  </p>
16
  <?php if ( $upgrade_option ): ?>
17
  <div class="upgrade-to-featured-option">
18
  <b><?php echo sprintf( _x('Would you like to upgrade your listing to "%s" for %s more?', 'templates', 'WPBDM'), esc_attr( $upgrade_option->name ), wpbdp_get_option( 'currency-symbol' ) . ' ' . $upgrade_option->cost ); ?></b>
19
+ <p class="description"><?php echo wpautop( wp_kses_post( $upgrade_option->description ) ); ?></p>
20
  <p>
21
  <label><input type="checkbox" name="upgrade-listing" value="upgrade" <?php echo wpbdp_getv( $_POST, 'upgrade-listing', '') == 'upgrade' ? 'checked="checked"' : ''; ?> /> <?php _ex( 'Yes, upgrade my listing now.', 'templates', 'WPBDM'); ?></label>
22
  </p>