Business Directory Plugin - Version 3.6.10

Version Description

Download this release

Release Info

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

Code changes from version 3.6.9.1 to 3.6.10

Files changed (57) hide show
  1. README.TXT +16 -2
  2. admin/class-themes-admin.php +89 -3
  3. admin/css/themes.css +57 -7
  4. admin/css/themes.min.css +1 -1
  5. admin/csv-export.php +8 -5
  6. admin/js/themes.js +67 -0
  7. admin/js/themes.min.js +1 -1
  8. admin/resources/admin.js +8 -0
  9. admin/resources/admin.min.js +1 -1
  10. admin/templates/fees-addoredit.tpl.php +12 -1
  11. admin/templates/form-fields-addoredit.tpl.php +4 -1
  12. admin/templates/themes-item.tpl.php +45 -0
  13. admin/templates/themes-licenses.tpl.php +39 -0
  14. admin/templates/themes-tabs.tpl.php +8 -0
  15. admin/templates/themes.tpl.php +7 -35
  16. business-directory-plugin.php +50 -6
  17. core/class-csv-import.php +10 -1
  18. core/class-listing.php +20 -10
  19. core/class-payment.php +64 -1
  20. core/class-settings.php +44 -8
  21. core/class-utils.php +17 -0
  22. core/css/wpbdp.css +34 -1
  23. core/css/wpbdp.min.css +1 -1
  24. core/gateways-authorize-net.php +73 -41
  25. core/helpers/class-fs.php +1 -1
  26. core/{class-listing-display-helper.php → helpers/class-listing-display-helper.php} +6 -0
  27. core/helpers/class-themes-updater.php +218 -0
  28. core/installer.php +12 -4
  29. core/payment.php +20 -6
  30. core/template-sections.php +1 -1
  31. core/templates-listings.php +58 -16
  32. core/templates-ui.php +4 -4
  33. core/themes.php +50 -13
  34. core/utils.php +2 -1
  35. core/view-checkout.php +1 -1
  36. core/view-listing-contact.php +1 -1
  37. core/view-submit-listing.php +2 -0
  38. core/views.php +26 -3
  39. languages/WPBDM-de_DE.mo +0 -0
  40. languages/WPBDM-de_DE.po +561 -432
  41. languages/WPBDM-en_US.mo +0 -0
  42. languages/WPBDM-en_US.po +526 -426
  43. languages/WPBDM-es_ES.mo +0 -0
  44. languages/WPBDM-es_ES.po +548 -435
  45. languages/WPBDM-fr_FR.mo +0 -0
  46. languages/WPBDM-fr_FR.po +695 -609
  47. languages/WPBDM.pot +803 -795
  48. templates/delete-listing-confirm.tpl.php +2 -2
  49. templates/listing-contactform.tpl.php +4 -4
  50. templates/parts/listing-buttons.tpl.php +8 -8
  51. templates/search-form.tpl.php +19 -0
  52. templates/search.tpl.php +22 -37
  53. templates/submit-listing/images-single.tpl.php +1 -1
  54. templates/submit-listing/images-upload-form.tpl.php +7 -0
  55. templates/submit-listing/images.tpl.php +1 -0
  56. themes/default/theme.json +1 -1
  57. themes/no_theme/theme.json +2 -2
README.TXT CHANGED
@@ -4,8 +4,8 @@ Donate link: http://businessdirectoryplugin.com/premium-modules/
4
  Tags: business directory,directory,wordpress directory,wordpress directory plugin, wordpress directory theme,wordpress business directory,wordpress local directory,classified ads,classifieds,directory plugin,business directory plugin,directory widget,church directory,address book,address,member directory,members directory,city portal,city portal plugin,city guide plugin,city guide
5
  Requires at least: 3.9
6
  Tested up to: 4.3.1
7
- Last Updated: 2015-Oct-15
8
- Stable tag: tags/3.6.9.1
9
  License: GPLv2 or later
10
 
11
  Build local directories, business provider listings, Yellow-Pages directories, Yelp-like review sections and much more!
@@ -117,6 +117,20 @@ If you are having problems please visit [support forum](http://www.businessdirec
117
 
118
  == Changelog ==
119
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
120
  = Version 3.6.9.1 =
121
  * Fixed critical problem with checkbox fields used with categories
122
  * Fixed conflicts with other Membership plugin (PHP warnings)
4
  Tags: business directory,directory,wordpress directory,wordpress directory plugin, wordpress directory theme,wordpress business directory,wordpress local directory,classified ads,classifieds,directory plugin,business directory plugin,directory widget,church directory,address book,address,member directory,members directory,city portal,city portal plugin,city guide plugin,city guide
5
  Requires at least: 3.9
6
  Tested up to: 4.3.1
7
+ Last Updated: 2015-Nov-17
8
+ Stable tag: tags/3.6.10
9
  License: GPLv2 or later
10
 
11
  Build local directories, business provider listings, Yellow-Pages directories, Yelp-like review sections and much more!
117
 
118
  == Changelog ==
119
 
120
+ = Version 3.6.10 =
121
+ * Fixes for recurring payments.
122
+ * New "Login URL" setting to control registration redirects
123
+ * Do not allow changing of validator for URL fields.
124
+ * Fix an issue with table prefixes when using "Paid first" for sorting listings.
125
+ * Several performance improvements on listings in the backend.
126
+ * Improved performance for CSV exports.
127
+ * Correct some styles in contact form.
128
+ * Allow placement of advanced search form.
129
+ * Show minimum file size in image upload form.
130
+ * Add sticky/featured option to fee plans.
131
+ * Add CSS classes for fee plans.
132
+ * Add shortcode [businessdirectory-listing] for displaying single listings.
133
+
134
  = Version 3.6.9.1 =
135
  * Fixed critical problem with checkbox fields used with categories
136
  * Fixed conflicts with other Membership plugin (PHP warnings)
admin/class-themes-admin.php CHANGED
@@ -5,10 +5,17 @@
5
  class WPBDP_Themes_Admin {
6
 
7
  private $api;
 
 
8
 
9
  function __construct( &$api ) {
10
  $this->api = $api;
11
 
 
 
 
 
 
12
  add_action( 'wpbdp_admin_menu', array( &$this, 'admin_menu' ) );
13
  add_filter( 'wpbdp_admin_menu_reorder', array( &$this, 'admin_menu_move_themes_up' ) );
14
 
@@ -23,9 +30,16 @@ class WPBDP_Themes_Admin {
23
  }
24
 
25
  function admin_menu( $slug ) {
 
 
 
 
 
 
 
26
  add_submenu_page( $slug,
27
  _x( 'Directory Themes', 'themes', 'WPBDM' ),
28
- _x( 'Directory Themes', 'themes', 'WPBDM' ),
29
  'administrator',
30
  'wpbdp-themes',
31
  array( &$this, 'dispatch' ) );
@@ -58,10 +72,13 @@ class WPBDP_Themes_Admin {
58
  $theme_fields = $this->api->get_active_theme_data( 'suggested_fields' );
59
  }
60
 
61
- function enqueue_scripts() {
62
  global $wpbdp;
63
  global $pagenow;
64
 
 
 
 
65
  $debug_on = $wpbdp->is_debug_on();
66
 
67
  wp_enqueue_style( 'wpbdp-admin-themes',
@@ -100,7 +117,7 @@ class WPBDP_Themes_Admin {
100
  }
101
 
102
  function dispatch() {
103
- $action = isset( $_GET['action'] ) ? $_GET['action'] : '';
104
 
105
  switch ( $action ) {
106
  case 'theme-install':
@@ -109,6 +126,9 @@ class WPBDP_Themes_Admin {
109
  case 'delete-theme':
110
  return $this->theme_delete_confirm();
111
  break;
 
 
 
112
  case 'theme-selection':
113
  default:
114
  return $this->theme_selection();
@@ -253,4 +273,70 @@ class WPBDP_Themes_Admin {
253
  exit;
254
  }
255
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
256
  }
5
  class WPBDP_Themes_Admin {
6
 
7
  private $api;
8
+ private $updater;
9
+
10
 
11
  function __construct( &$api ) {
12
  $this->api = $api;
13
 
14
+ require_once( WPBDP_PATH . 'core/helpers/class-themes-updater.php' );
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' ) );
21
 
30
  }
31
 
32
  function admin_menu( $slug ) {
33
+ $count = $this->updater->get_updates_count();
34
+
35
+ if ( $count )
36
+ $count_html = '<span class="update-plugins"><span class="plugin-count">' . number_format_i18n( $count ) . '</span></span>';
37
+ else
38
+ $count_html = '';
39
+
40
  add_submenu_page( $slug,
41
  _x( 'Directory Themes', 'themes', 'WPBDM' ),
42
+ sprintf( _x( 'Directory Themes %s', 'themes', 'WPBDM' ), $count_html ),
43
  'administrator',
44
  'wpbdp-themes',
45
  array( &$this, 'dispatch' ) );
72
  $theme_fields = $this->api->get_active_theme_data( 'suggested_fields' );
73
  }
74
 
75
+ function enqueue_scripts( $hook ) {
76
  global $wpbdp;
77
  global $pagenow;
78
 
79
+ if ( 'admin.php' != $pagenow || ! isset( $_GET['page'] ) || 'wpbdp-themes' != $_GET['page'] )
80
+ return;
81
+
82
  $debug_on = $wpbdp->is_debug_on();
83
 
84
  wp_enqueue_style( 'wpbdp-admin-themes',
117
  }
118
 
119
  function dispatch() {
120
+ $action = isset( $_GET['action'] ) ? $_GET['action'] : ( isset( $_GET['v'] ) ? $_GET['v'] : '' );
121
 
122
  switch ( $action ) {
123
  case 'theme-install':
126
  case 'delete-theme':
127
  return $this->theme_delete_confirm();
128
  break;
129
+ case 'licenses':
130
+ return $this->theme_licenses();
131
+ break;
132
  case 'theme-selection':
133
  default:
134
  return $this->theme_selection();
273
  exit;
274
  }
275
 
276
+ function ajax_activate_license() {
277
+ if ( ! current_user_can( 'administrator' ) )
278
+ die();
279
+
280
+ $nonce = $_POST['_wpnonce'];
281
+ $theme = $_POST['theme'];
282
+ $license = trim( $_POST['license'] );
283
+
284
+ if ( ! wp_verify_nonce( $nonce, 'activate ' . $theme ) )
285
+ die();
286
+
287
+ // Try to activate license.
288
+ $info = $this->api->get_theme( $theme );
289
+ if ( ! $info )
290
+ die();
291
+
292
+ $edd_name = isset( $info->edd_name ) ? $info->edd_name : '';
293
+ if ( ! $edd_name )
294
+ die();
295
+
296
+ // Try to activate theme.
297
+ $error = false;
298
+ $request_vars = array(
299
+ 'edd_action' => 'activate_license',
300
+ 'license' => $license,
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' );
308
+
309
+ if ( ! $error ) {
310
+ $request_result = json_decode( wp_remote_retrieve_body( $request ) );
311
+
312
+ if ( ! is_object( $request_result ) || ! $request_result || ! isset( $request_result->license ) || 'valid' !== $request_result->license )
313
+ $error = _x( 'License key is invalid', 'licensing', 'WPBDM' );
314
+ }
315
+
316
+ $response = new WPBDP_Ajax_Response();
317
+ if ( $error )
318
+ return $response->send_error( sprintf( _x( 'Could not activate license: %s.', 'licensing', 'WPBDM' ), $error ) );
319
+
320
+ // Store license details.
321
+ $theme_licenses = get_option( 'wpbdp-themes-licenses', array() );
322
+ if ( ! is_array( $theme_licenses ) )
323
+ $theme_licenses = array();
324
+
325
+ $theme_licenses[ $theme ] = array( 'license' => $license,
326
+ 'status' => 'valid',
327
+ 'updated' => time() );
328
+
329
+ update_option( 'wpbdp-themes-licenses', $theme_licenses );
330
+
331
+ $response->set_message( _x( 'License activated', 'licensing', 'WPBDM' ) );
332
+ $response->send();
333
+ }
334
+
335
+ function theme_licenses() {
336
+ $themes = $this->api->get_installed_themes();
337
+
338
+ echo wpbdp_render_page( WPBDP_PATH . 'admin/templates/themes-licenses.tpl.php',
339
+ array( 'themes' => $themes ) );
340
+ }
341
+
342
  }
admin/css/themes.css CHANGED
@@ -1,19 +1,35 @@
 
1
  .wpbdp-theme {
2
  float: left;
3
  display: block;
4
- margin: 10px 10px 10px 0;
5
  background: #fff;
6
  border: 1px solid #ddd;
7
  position: relative;
 
 
 
 
 
 
8
  }
9
 
10
  .wpbdp-theme.active {
11
  border: 1px solid #2f2f2f;
12
  }
13
 
 
 
 
 
 
 
 
 
14
  .wpbdp-theme-thumbnail {
15
- width: 310px;
16
- height: 232px;
 
 
17
  }
18
 
19
  .wpbdp-theme:hover .wpbdp-theme-thumbnail {
@@ -65,7 +81,7 @@
65
  .wpbdp-theme:hover .wpbdp-theme-details {
66
  display: block;
67
  position: absolute;
68
- top: 20%;
69
  bottom: 20%;
70
  left: 5%;
71
  right: 5%;
@@ -108,15 +124,14 @@
108
  bottom: 10px;
109
  color: #fff;
110
  text-decoration: none;
111
- font-size: 10px;
112
- text-transform: uppercase;
113
  background: #900000;
114
  padding: 2px 5px;
115
  border-radius: 2px;
116
  }
117
 
118
  .wpbdp-theme:hover a.delete-theme-link {
119
- display: block;
120
  }
121
 
122
  #wpbdp-admin-page-theme-delete #delete-theme {
@@ -130,3 +145,38 @@
130
  color: #fff;
131
  box-shadow: none;
132
  }
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+
2
  .wpbdp-theme {
3
  float: left;
4
  display: block;
 
5
  background: #fff;
6
  border: 1px solid #ddd;
7
  position: relative;
8
+ margin: 10px 4% 10px 0;
9
+ width: 46%;
10
+ }
11
+
12
+ .wpbdp-theme:nth-child(2n) {
13
+ margin-right: 0;
14
  }
15
 
16
  .wpbdp-theme.active {
17
  border: 1px solid #2f2f2f;
18
  }
19
 
20
+ .wpbdp-theme-actions form { margin: 0; padding: 0; display: inline; }
21
+ .wpbdp-theme-actions form input[type="submit"] { margin: 0; }
22
+
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
  }
34
 
35
  .wpbdp-theme:hover .wpbdp-theme-thumbnail {
81
  .wpbdp-theme:hover .wpbdp-theme-details {
82
  display: block;
83
  position: absolute;
84
+ top: 15%;
85
  bottom: 20%;
86
  left: 5%;
87
  right: 5%;
124
  bottom: 10px;
125
  color: #fff;
126
  text-decoration: none;
127
+ font-size: 9px;
 
128
  background: #900000;
129
  padding: 2px 5px;
130
  border-radius: 2px;
131
  }
132
 
133
  .wpbdp-theme:hover a.delete-theme-link {
134
+ display: inline-block;
135
  }
136
 
137
  #wpbdp-admin-page-theme-delete #delete-theme {
145
  color: #fff;
146
  box-shadow: none;
147
  }
148
+
149
+ .wpbdp-theme .wpbdp-theme-update-info {
150
+ padding: 5px 10px;
151
+ border-top: solid 2px;
152
+ }
153
+
154
+ .wpbdp-theme .wpbdp-theme-update-info.update-available {
155
+ background: #fef7f1;
156
+ border-color: #D34F2B;
157
+ }
158
+
159
+ .wpbdp-theme .wpbdp-theme-update-info.theme-updated {
160
+ background: #F7FCFE;
161
+ border-color: #1AA1D0;
162
+ }
163
+
164
+ .wpbdp-theme .wpbdp-theme-update-info.update-error {
165
+ border-color: red;
166
+ }
167
+
168
+ .wpbdp-theme .wpbdp-theme-update-info .update-message {
169
+ padding: 2px 4px;
170
+ }
171
+
172
+ .wpbdp-theme .wpbdp-theme-update-info.update-available .update-message {
173
+ background: #fcf3ef;
174
+ }
175
+
176
+ .wpbdp-theme .wpbdp-theme-update-info.update-error .update-message {
177
+ color: red;
178
+ }
179
+
180
+ .wpbdp-theme .wpbdp-theme-update-info.theme-updated .update-message {
181
+ background: #F0F5F7;
182
+ }
admin/css/themes.min.css CHANGED
@@ -1 +1 @@
1
- .wpbdp-theme{float:left;display:block;margin:10px 10px 10px 0;background:#fff;border:1px solid #ddd;position:relative}.wpbdp-theme.active{border:1px solid #2f2f2f}.wpbdp-theme-thumbnail{width:310px;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:20%;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:10px;text-transform:uppercase;background:#900000;padding:2px 5px;border-radius:2px}.wpbdp-theme:hover a.delete-theme-link{display:block}
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}
admin/csv-export.php CHANGED
@@ -301,6 +301,8 @@ class WPBDP_CSVExporter {
301
  }
302
 
303
  private function extract_data( $post_id ) {
 
 
304
  $post = get_post( $post_id );
305
 
306
  if ( !$post || $post->post_type != WPBDP_POST_TYPE )
@@ -358,19 +360,20 @@ class WPBDP_CSVExporter {
358
  break;
359
 
360
  case 'expires_on':
 
361
  $terms = wp_get_post_terms( $post->ID,
362
  WPBDP_CATEGORY_TAX,
363
  'fields=ids' );
 
 
364
  $expiration_dates = array();
365
 
366
  foreach ( $terms as $term_id ) {
367
- if ( $fee = $listings_api->get_listing_fee_for_category( $post->ID, $term_id ) ) {
368
- $expiration_dates[] = $fee->expires_on;
369
- } else {
370
  $expiration_dates[] = '';
371
- }
372
  }
373
-
374
  $value = implode( '/', $expiration_dates );
375
 
376
  break;
301
  }
302
 
303
  private function extract_data( $post_id ) {
304
+ global $wpdb;
305
+
306
  $post = get_post( $post_id );
307
 
308
  if ( !$post || $post->post_type != WPBDP_POST_TYPE )
360
  break;
361
 
362
  case 'expires_on':
363
+ $value = '';
364
  $terms = wp_get_post_terms( $post->ID,
365
  WPBDP_CATEGORY_TAX,
366
  'fields=ids' );
367
+ $expiresdata = $wpdb->get_results( $wpdb->prepare( "SELECT category_id, expires_on FROM {$wpdb->prefix}wpbdp_listing_fees WHERE listing_id = %d", $post->ID ) );
368
+ $expiresdata = wp_list_pluck( $data, 'expires_on', 'category_id' );
369
  $expiration_dates = array();
370
 
371
  foreach ( $terms as $term_id ) {
372
+ if ( isset( $expiresdata[ $term_id ] ) )
373
+ $expiration_dates[] = $expiresdata[ $term_id ];
374
+ else
375
  $expiration_dates[] = '';
 
376
  }
 
377
  $value = implode( '/', $expiration_dates );
378
 
379
  break;
admin/js/themes.js CHANGED
@@ -3,5 +3,72 @@ jQuery(function($) {
3
  e.preventDefault();
4
  $( this ).parents( 'div.error' ).fadeOut( 'fast' );
5
  } );
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
6
  });
7
 
3
  e.preventDefault();
4
  $( this ).parents( 'div.error' ).fadeOut( 'fast' );
5
  } );
6
+
7
+ $( '#wpbdp-admin-page-themes-install #begin-theme-upload' ).attr( 'disabled', 'disabled' );
8
+ $( '#wpbdp-admin-page-themes-install input[name="themezip"]' ).change( function( e ) {
9
+ var v = $( this ).val();
10
+
11
+ if ( v )
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 ) {
27
+ $msg.hide()
28
+ .html( res.error )
29
+ .removeClass( 'ok' )
30
+ .addClass( 'error' )
31
+ .show();
32
+ return;
33
+ }
34
+
35
+ $msg.hide()
36
+ .html( res.message )
37
+ .removeClass( 'error' )
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
+
49
+ var $theme = $( this ).parents( '.wpbdp-theme' );
50
+ var $info = $( '.wpbdp-theme-update-info', $theme );
51
+ var $msg = $( '.update-message', $info );
52
+
53
+ $msg.html( $info.attr( 'data-l10n-updating' ) );
54
+
55
+ $.post( ajaxurl, {
56
+ 'action': 'wpbdp-themes-update',
57
+ '_wpnonce': $( this ).attr( 'data-nonce' ),
58
+ 'theme': $( this ).attr( 'data-theme-id' ) }, function( res ) {
59
+ if ( ! res.success ) {
60
+ $info.addClass( 'update-error' );
61
+ $msg.html( res.error );
62
+ return;
63
+ }
64
+
65
+ var $html = $( res.data.html );
66
+ $( '.wpbdp-theme-details-wrapper', $theme ).replaceWith( $( '.wpbdp-theme-details-wrapper', $html ) );
67
+ $info.removeClass( 'update-available' ).addClass( 'theme-updated' );
68
+ $msg.html( $info.attr( 'data-l10n-updated' ) );
69
+ }, 'json' );
70
+
71
+ } );
72
+
73
  });
74
 
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")})});
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")})});
admin/resources/admin.js CHANGED
@@ -40,6 +40,14 @@ var WPBDP_associations_fieldtypes = {};
40
 
41
  var field_type = $field_type.val();
42
 
 
 
 
 
 
 
 
 
43
  var request_data = {
44
  action: "wpbdp-renderfieldsettings",
45
  association: WPBDPAdmin_FormFields.$f_association.find('option:selected').val(),
40
 
41
  var field_type = $field_type.val();
42
 
43
+ // URL fields can only have the 'url' validator.
44
+ if ( 'url' == field_type ) {
45
+ $( 'select#field-validator option' ).not( '[value="url"]' ).attr( 'disabled', 'disabled' ).removeAttr( 'selected' );
46
+ $( 'select#field-validator option[value="url"]' ).attr( 'selected', 'selected' );
47
+ } else {
48
+ $( 'select#field-validator option' ).removeAttr( 'disabled' );
49
+ }
50
+
51
  var request_data = {
52
  action: "wpbdp-renderfieldsettings",
53
  association: WPBDPAdmin_FormFields.$f_association.find('option:selected').val(),
admin/resources/admin.min.js CHANGED
@@ -1 +1 @@
1
- var WPBDP_associations_fieldtypes={};(function($){var WPBDPAdmin_FormFields={$f_association:null,$f_fieldtype:null,init:function(){WPBDPAdmin_FormFields.$f_association=$("form#wpbdp-formfield-form select#field-association");WPBDPAdmin_FormFields.$f_association.change(WPBDPAdmin_FormFields.onAssociationChange);WPBDPAdmin_FormFields.$f_fieldtype=$("form#wpbdp-formfield-form select#field-type");WPBDPAdmin_FormFields.$f_fieldtype.change(WPBDPAdmin_FormFields.onFieldTypeChange);$("table.formfields tbody").sortable({placeholder:"wpbdp-draggable-highlight",handle:".wpbdp-drag-handle",axis:"y",cursor:"move",opacity:0.9,update:function(event,ui){var sorted_items=[];$(this).find(".wpbdp-drag-handle").each(function(i,v){sorted_items.push($(v).attr("data-field-id"))});if(sorted_items){$.post(ajaxurl,{action:"wpbdp-formfields-reorder",order:sorted_items})}}})},onFieldTypeChange:function(){var $field_type=$(this).find("option:selected");if(!$field_type.length){return}var field_type=$field_type.val();var request_data={action:"wpbdp-renderfieldsettings",association:WPBDPAdmin_FormFields.$f_association.find("option:selected").val(),field_type:field_type,field_id:$('#wpbdp-formfield-form input[name="field[id]"]').val()};$.post(ajaxurl,request_data,function(response){if(response.ok&&response.html){$("#wpbdp-fieldsettings-html").html(response.html);$("#wpbdp-fieldsettings").show()}else{$("#wpbdp-fieldsettings-html").empty();$("#wpbdp-fieldsettings").hide()}},"json")},onAssociationChange:function(){$f_fieldtype=WPBDPAdmin_FormFields.$f_fieldtype;var association=$(this).find("option:selected").val();var valid_types=WPBDP_associations_fieldtypes[association];$f_fieldtype.find("option").removeAttr("disabled");$f_fieldtype.find("option").each(function(i,v){if($.inArray($(v).val(),valid_types)<0){$(v).attr("disabled","disabled")}});if($f_fieldtype.find("option:selected").attr("disabled")=="disabled"){$f_fieldtype.find("option").removeAttr("selected");$f_fieldtype.find('option[value="'+valid_types[0]+'"]').attr("selected","selected")}}};$(document).ready(function(){WPBDPAdmin_FormFields.init()})})(jQuery);jQuery(document).ready(function($){$('form#wpbdp-fee-form input[name="_days"]').change(function(){var value=$(this).val();if(value==0){$("form input#wpbdp-fee-form-days-n").attr("disabled",true);$('form input[name="fee[days]"]').val("0")}else{$("form input#wpbdp-fee-form-days-n").removeAttr("disabled");$('form input[name="fee[days]"]').val($("form input#wpbdp-fee-form-days-n").val());$("form input#wpbdp-fee-form-days-n").focus()}return true});$(".wpbdp-page-admin-fees .wp-list-table.fees tbody").sortable({placeholder:"wpbdp-draggable-highlight",handle:".wpbdp-drag-handle",axis:"y",cursor:"move",opacity:0.9,update:function(event,ui){var sorted_items=[];$(this).find(".wpbdp-drag-handle").each(function(i,v){sorted_items.push($(v).attr("data-fee-id"))});if(sorted_items){$.post(ajaxurl,{action:"wpbdp-admin-fees-reorder",order:sorted_items})}}});$("form#wpbdp-fee-form").submit(function(){$('form input[name="fee[days]"]').removeAttr("disabled");return true});$('select[name="fee_order[method]"], select[name="fee_order[order]"]').change(function(e){$.ajax({url:ajaxurl,data:$(this).parent("form").serialize(),dataType:"json",type:"POST",success:function(res){if(res.success){location.reload()}}})});if("custom"==$('select[name="fee_order[method]"]').val()){$(".wpbdp-page-admin-fees .wp-list-table .wpbdp-drag-handle").show()}$("#BusinessDirectory_listinginfo .listing-metabox-tabs a").click(function(e){e.preventDefault();var href=$(this).attr("href");var $selected=$(this).parent("li").siblings(".selected");if($selected.length>0){if($selected.find("a:first").attr("href")==href){return}else{$selected.removeClass("selected");$($selected.find("a:first").attr("href")).hide()}}$(this).parent("li").addClass("selected");$(href).show();$(".listing-fee-expiration-datepicker").hide()});$("#BusinessDirectory_listinginfo .listing-metabox-tabs li.selected a").click();$("#listing-metabox-fees a.assignfee-link").click(function(e){e.preventDefault();$(this).siblings(".assignfee").show()});$("#listing-metabox-fees .assignfee .close-handle").click(function(e){e.preventDefault();$(this).parent(".assignfee").hide()});$(".wpbdp-ajax-placeholder").each(function(i,v){wpbdp_load_placeholder($(v))});$("input#doaction, input#doaction2").click(function(e){var action_name=("doaction"==$(this).attr("id"))?"action":"action2";var $selected_option=$('select[name="'+action_name+'"] option:selected');var action_val=$selected_option.val();if(action_val.split("-")[0]=="listing"){var action=action_val.split("-")[1];if(action!="sep0"&&action!="sep1"&&action!="sep2"){var $checked_posts=$('input[name="post[]"]:checked');var uri=$selected_option.attr("data-uri");$checked_posts.each(function(i,v){uri+="&post[]="+$(v).val()});window.location.href=uri;return false}}return true});$('.wpbdp-admin.wpbdp-page-formfields-preview form input[type="submit"]').click(function(e){e.preventDefault();alert("This form is just a preview. It doesn't work.")});$("form#wpbdp-csv-import-form input.assign-listings-to-user").change(function(e){if($(this).is(":checked")){$("form#wpbdp-csv-import-form .default-user-selection").show()}else{$("form#wpbdp-csv-import-form .default-user-selection").hide()}}).change();$("#wpbdp-admin-debug-info-page a.nav-tab").click(function(e){e.preventDefault();$("#wpbdp-admin-debug-info-page a.nav-tab").not(this).removeClass("nav-tab-active");var $selected_tab=$(this);$selected_tab.addClass("nav-tab-active");$(".wpbdp-debug-section").hide();$('.wpbdp-debug-section[data-id="'+$(this).attr("href")+'"]').show()});if($("#wpbdp-admin-debug-info-page a.nav-tab").length>0){$("#wpbdp-admin-debug-info-page a.nav-tab").get(0).click()}$(".wpbdp-page-admin-transactions .column-actions a.details-link").click(function(e){e.preventDefault();var $tr=$(this).parents("tr");var $details=$tr.find("div.more-details");var $tr_details=$tr.next("tr.more-details-row");if($tr_details.length>0){$tr_details.remove();$(this).text($(this).text().replace("-","+"));return}else{$(this).text($(this).text().replace("+","-"))}$tr.after('<tr class="more-details-row"><td colspan="7">'+$details.html()+"</td></tr>").show()})});function wpbdp_load_placeholder($v){var action=$v.attr("data-action");var post_id=$v.attr("data-post_id");var baseurl=$v.attr("data-baseurl");$v.load(ajaxurl,{action:action,post_id:post_id,baseurl:baseurl})}var WPBDP_Admin={};WPBDP_Admin.payments={};WPBDP_Admin.listingMetabox={};WPBDP_Admin.ProgressBar=function($item,settings){$item.empty();$item.html('<div class="wpbdp-progress-bar"><span class="progress-text">0%</span><div class="progress-bar"><div class="progress-bar-outer"><div class="progress-bar-inner" style="width: 0%;"></div></div></div>');this.$item=$item;this.$text=$item.find(".progress-text");this.$bar=$item.find(".progress-bar");this.set=function(completed,total){var pcg=Math.round(100*parseInt(completed)/parseInt(total));this.$text.text(pcg+"%");this.$bar.find(".progress-bar-inner").attr("style","width: "+pcg+"%;")}};(function($){WPBDP_Admin.dialog={};var dialog=WPBDP_Admin.dialog})(jQuery);(function($){var payments=WPBDP_Admin.payments;payments._initialize=function(){$("#BusinessDirectory_listinginfo a.payment-details-link").click(function(e){e.preventDefault();payments.viewPaymentDetails($(this).attr("data-id"))});if($("#wpbdp-modal-dialog").length==0){$("body").append($('<div id="wpbdp-modal-dialog"></div>'))}};payments.viewPaymentDetails=function(id){$.get(ajaxurl,{action:"wpbdp-payment-details",id:id},function(res){if(res&&res.success){if($("#wpbdp-modal-dialog").length==0){$("body").append($('<div id="wpbdp-modal-dialog"></div>'))}$("#wpbdp-modal-dialog").html(res.data.html);tb_show("","#TB_inline?inlineId=wpbdp-modal-dialog");$("#wpbdp-modal-dialog").remove()}},"json")};$(document).ready(function(){payments._initialize()})})(jQuery);(function($){var metabox=WPBDP_Admin.listingMetabox;metabox._initialize=function(){$.extend($.datepicker,{_inlineDatepicker2:$.datepicker._inlineDatepicker,_inlineDatepicker:function(target,inst){this._inlineDatepicker2(target,inst);var beforeShow=$.datepicker._get(inst,"beforeShow");if(beforeShow){beforeShow.apply(target,[target,inst])}}});var _addNeverButton=function(instance){setTimeout(function(){var $buttonPane=$(instance).find(".ui-datepicker-buttonpane");if($buttonPane.find(".ui-datepicker-never").length>0){return}var $button=$("<button>",{text:"Never Expires",click:function(){_updateExpiration($(instance),"never");return false}}).addClass("ui-datepicker-never ui-state-default ui-priority-primary ui-corner-all");$buttonPane.append($button)},1)};var _updateExpiration=function($instance,newDate){if(!newDate){return}var $changeLink=$instance.siblings("a.expiration-change-link");var $expirationDate=$instance.siblings(".expiration-date");var $spinner=$instance.parents(".listing-category").find(".spinner:first");$expirationDate.text("--");$spinner.show();$instance.hide();_addNeverButton($instance.get(0));$.post(ajaxurl,{action:"wpbdp-listing_set_expiration",renewal_id:$changeLink.attr("data-renewal_id"),expiration_date:newDate},function(res){if(res&&res.success){$spinner.hide();$expirationDate.text(res.data.formattedExpirationDate).show()}},"json")};$("#listing-metabox-generalinfo, #listing-metabox-fees").each(function(i,v){var $tab=$(v);$tab.find(".expiration-date-info .datepicker").each(function(i,v){var $dp=$(v);var $changeLink=$dp.siblings("a.expiration-change-link");$dp.hide().datepicker({dateFormat:"yy-mm-dd",defaultDate:$changeLink.attr("data-date"),showButtonPanel:true,beforeShow:function(input){_addNeverButton(input)},onChangeMonthYear:function(year,month,instance){_addNeverButton(instance.input)},onSelect:function(newDate){_updateExpiration($(this),newDate)}})});$tab.find("a.expiration-change-link").click(function(e){e.preventDefault();var renewal_id=$(this).attr("data-renewal_id");$(".expiration-date-info .datepicker").not(".renewal-"+renewal_id).hide();$(".expiration-date-info .datepicker.renewal-"+renewal_id).toggle()})});$(".listing-category a.category-delete").click(function(e){e.preventDefault();var listingID=$(this).attr("data-listing");var categoryID=$(this).attr("data-category");if(!listingID||!categoryID){return}var $category=$(".listing-category-"+categoryID);$.post(ajaxurl,{action:"wpbdp-listing_remove_category",listing:listingID,category:categoryID},function(res){if(res&&res.success){$('input[name="tax_input[wpbdp_category][]"][value="'+categoryID+'"]').attr("checked",false);$category.fadeOut(function(){$(this).remove()})}},"json")});$(".listing-category a.category-change-fee").click(function(e){e.preventDefault();if($("#wpbdp-modal-dialog").length==0){$("body").append($('<div id="wpbdp-modal-dialog"></div>'))}$.post(ajaxurl,{action:"wpbdp-listing_change_fee",renewal:$(this).attr("data-renewal")},function(res){if(res&&res.success){$("#wpbdp-modal-dialog").html(res.data.html);tb_show("","#TB_inline?inlineId=wpbdp-modal-dialog");$("#wpbdp-modal-dialog").remove()}},"json")})};$(document).ready(function(){if($("#listing-metabox-fees").length>0){metabox._initialize()}})})(jQuery);(function($){var s=WPBDP_Admin.settings={_whenTrueActivateChilds:{},init:function(){var t=this;$(".wpbdp-settings-email").each(function(i,v){var $email=$(v);var $preview=$email.find(".short-preview");var $editor=$email.find(".editor");var $subject=$editor.find(".subject-text");var $body=$editor.find(".body-text");var data={subject:"",body:""};$preview.click(function(e){data.subject=$subject.val();data.body=$body.val();$preview.hide();$editor.show()});$(".cancel",$editor).click(function(e){e.preventDefault();$subject.val(data.subject);$body.val(data.body);$editor.hide();$preview.show()});$(".save",$editor).click(function(e){e.preventDefault();$("form#wpbdp-admin-settings #submit").click()});$(".preview-email",$editor).click(function(e){e.preventDefault();var subject=$subject.val();var body=$body.val();$.ajax({url:ajaxurl,data:{action:"wpbdp-admin-settings-email-preview",nonce:$editor.attr("data-preview-nonce"),setting:$email.attr("data-setting"),subject:subject,body:body},dataType:"json",type:"POST",success:function(res){if(!res.success){return}if(0==$("#wpbdp-modal-dialog").length){$("body").append('<div id="wpbdp-modal-dialog" style="display: none;"></div>')}$("#wpbdp-modal-dialog").html(res.data.html);tb_show("","#TB_inline?inlineId=wpbdp-modal-dialog");$("#wpbdp-modal-dialog").remove()}})})});$("select#quick-search-fields").change(function(){var selected=$(this).find("option.textfield:selected").length;if(selected>0){$("span.text-fields-warning").fadeIn("fast")}else{$("span.text-fields-warning").fadeOut("fast")}});$.each(this._whenTrueActivateChilds,function(p,chs){$('input[name="wpbdp-'+p+'"]').change(function(e){t.handleToggle(p)});t.handleToggle(p)})},handleToggle:function(setting){var childs=this._whenTrueActivateChilds[setting];if("undefined"===typeof(childs)){return}var checked=$('input[name="wpbdp-'+setting+'"]').is(":checked");$.each(this._whenTrueActivateChilds[setting],function(i,c){var $c=$('[name="wpbdp-'+c+'"], [name="wpbdp-'+c+'[]"]');var $row=$c.parents("tr");if(checked){$c.removeAttr("contenteditable");$row.removeClass("disabled")}else{$c.attr("contenteditable","false");$row.addClass("disabled")}})},add_requirement:function(setting,parent_,req){if("undefined"===typeof this._whenTrueActivateChilds[parent_]){this._whenTrueActivateChilds[parent_]=[]}this._whenTrueActivateChilds[parent_].push(setting)}};$(document).ready(function(){if(0==$(".wpbdp-page-admin-settings").length){return}s.init()})})(jQuery);(function($){var u=WPBDP_Admin.uninstall={init:function(){$('form#wpbdp-uninstall-capture-form input[name="uninstall[reason_id]"]').change(function(e){var val=$(this).val();if("0"==val){$('form#wpbdp-uninstall-capture-form textarea[name="uninstall[reason_text]"]').fadeIn()}else{$('form#wpbdp-uninstall-capture-form textarea[name="uninstall[reason_text]"]').fadeOut("fast",function(){$(this).val("")})}})}};$(document).ready(function(){if($(".wpbdp-page-admin-uninstall").length>0){u.init()}})})(jQuery);(function($){$(document).ready(function(){if($("body.wp-admin.widgets-php").length==0){return}$("body.wp-admin.widgets-php").on("change","input.wpbdp-toggle-images",function(){var checked=$(this).is(":checked");if(checked){$(this).parents(".widget").find(".thumbnail-width-config, .thumbnail-height-config").fadeIn("fast")}else{$(this).parents(".widget").find(".thumbnail-width-config, .thumbnail-height-config").fadeOut("fast")}})})})(jQuery);(function($){$(document).ready(function(){$("a.wpbdp-create-main-page-button").click(function(e){e.preventDefault();var $msg=$(this).parents("div.error");$.ajax({url:ajaxurl,data:{action:"wpbdp-create-main-page",_wpnonce:$(this).attr("data-nonce")},dataType:"json",success:function(res){if(!res.success){return}$msg.fadeOut("fast",function(){$(this).html("<p>"+res.message+"</p>");$(this).removeClass("error");$(this).addClass("updated");$(this).fadeIn("fast")})}})})})})(jQuery);(function($){var l=WPBDP_Admin.licensing={init:function(){$("input.license-activate").click(function(){var module=$(this).parent(".license-activation").attr("data-module-id");var license=$('input[type="text"]#license-key-'+module).val();l.activation_change(module,license,"activate")});$("input.license-deactivate").click(function(){var module=$(this).parent(".license-activation").attr("data-module-id");var license=$('input[type="text"]#license-key-'+module);l.activation_change(module,"","deactivate")})},activation_change:function(module,license,action){var $container=$('.license-activation[data-module-id="'+module+'"]');var $msg=$(".status-message",$container);var nonce=$('input[name="nonce"]',$container).val();$msg.removeClass("ok error");$msg.html($("input.license-"+action,$container).attr("data-L10n"));$.post(ajaxurl,{action:"wpbdp-"+action+"-license",module:module,key:license,nonce:nonce},function(res){if(res.success){$msg.hide().html(res.message).removeClass("error").addClass("ok").show();$("input.license-"+action,$container).hide();$('input[type="button"]',$container).not(".license-"+action).show();if("activate"==action){$('input[type="text"]#license-key-'+module).attr("readonly","readonly")}else{$('input[type="text"]#license-key-'+module).removeAttr("readonly")}}else{$msg.hide().html(res.error).removeClass("ok").addClass("error").show();if("deactivate"==action){$('input[type="text"]#license-key-'+module).removeAttr("readonly")}}},"json")}};$(document).ready(function(){if($("input.license-activate, input.license-deactivate").length>0){l.init()}if($(".wpbdp-license-expired-warning").length>0){$(".wpbdp-license-expired-warning .dismiss").click(function(e){e.preventDefault();var module_id=$(this).attr("data-module");var nonce=$(this).attr("data-nonce");var $warning=$(this).parents(".wpbdp-license-expired-warning");$.post(ajaxurl,{action:"wpbdp-license-expired-warning-dismiss",nonce:nonce,module:module_id},function(res){if(res.success){$warning.fadeOut("fast")}},"json")})}})})(jQuery);
1
+ var WPBDP_associations_fieldtypes={};(function($){var WPBDPAdmin_FormFields={$f_association:null,$f_fieldtype:null,init:function(){WPBDPAdmin_FormFields.$f_association=$("form#wpbdp-formfield-form select#field-association");WPBDPAdmin_FormFields.$f_association.change(WPBDPAdmin_FormFields.onAssociationChange);WPBDPAdmin_FormFields.$f_fieldtype=$("form#wpbdp-formfield-form select#field-type");WPBDPAdmin_FormFields.$f_fieldtype.change(WPBDPAdmin_FormFields.onFieldTypeChange);$("table.formfields tbody").sortable({placeholder:"wpbdp-draggable-highlight",handle:".wpbdp-drag-handle",axis:"y",cursor:"move",opacity:0.9,update:function(event,ui){var sorted_items=[];$(this).find(".wpbdp-drag-handle").each(function(i,v){sorted_items.push($(v).attr("data-field-id"))});if(sorted_items){$.post(ajaxurl,{action:"wpbdp-formfields-reorder",order:sorted_items})}}})},onFieldTypeChange:function(){var $field_type=$(this).find("option:selected");if(!$field_type.length){return}var field_type=$field_type.val();if("url"==field_type){$("select#field-validator option").not('[value="url"]').attr("disabled","disabled").removeAttr("selected");$('select#field-validator option[value="url"]').attr("selected","selected")}else{$("select#field-validator option").removeAttr("disabled")}var request_data={action:"wpbdp-renderfieldsettings",association:WPBDPAdmin_FormFields.$f_association.find("option:selected").val(),field_type:field_type,field_id:$('#wpbdp-formfield-form input[name="field[id]"]').val()};$.post(ajaxurl,request_data,function(response){if(response.ok&&response.html){$("#wpbdp-fieldsettings-html").html(response.html);$("#wpbdp-fieldsettings").show()}else{$("#wpbdp-fieldsettings-html").empty();$("#wpbdp-fieldsettings").hide()}},"json")},onAssociationChange:function(){$f_fieldtype=WPBDPAdmin_FormFields.$f_fieldtype;var association=$(this).find("option:selected").val();var valid_types=WPBDP_associations_fieldtypes[association];$f_fieldtype.find("option").removeAttr("disabled");$f_fieldtype.find("option").each(function(i,v){if($.inArray($(v).val(),valid_types)<0){$(v).attr("disabled","disabled")}});if($f_fieldtype.find("option:selected").attr("disabled")=="disabled"){$f_fieldtype.find("option").removeAttr("selected");$f_fieldtype.find('option[value="'+valid_types[0]+'"]').attr("selected","selected")}}};$(document).ready(function(){WPBDPAdmin_FormFields.init()})})(jQuery);jQuery(document).ready(function($){$('form#wpbdp-fee-form input[name="_days"]').change(function(){var value=$(this).val();if(value==0){$("form input#wpbdp-fee-form-days-n").attr("disabled",true);$('form input[name="fee[days]"]').val("0")}else{$("form input#wpbdp-fee-form-days-n").removeAttr("disabled");$('form input[name="fee[days]"]').val($("form input#wpbdp-fee-form-days-n").val());$("form input#wpbdp-fee-form-days-n").focus()}return true});$(".wpbdp-page-admin-fees .wp-list-table.fees tbody").sortable({placeholder:"wpbdp-draggable-highlight",handle:".wpbdp-drag-handle",axis:"y",cursor:"move",opacity:0.9,update:function(event,ui){var sorted_items=[];$(this).find(".wpbdp-drag-handle").each(function(i,v){sorted_items.push($(v).attr("data-fee-id"))});if(sorted_items){$.post(ajaxurl,{action:"wpbdp-admin-fees-reorder",order:sorted_items})}}});$("form#wpbdp-fee-form").submit(function(){$('form input[name="fee[days]"]').removeAttr("disabled");return true});$('select[name="fee_order[method]"], select[name="fee_order[order]"]').change(function(e){$.ajax({url:ajaxurl,data:$(this).parent("form").serialize(),dataType:"json",type:"POST",success:function(res){if(res.success){location.reload()}}})});if("custom"==$('select[name="fee_order[method]"]').val()){$(".wpbdp-page-admin-fees .wp-list-table .wpbdp-drag-handle").show()}$("#BusinessDirectory_listinginfo .listing-metabox-tabs a").click(function(e){e.preventDefault();var href=$(this).attr("href");var $selected=$(this).parent("li").siblings(".selected");if($selected.length>0){if($selected.find("a:first").attr("href")==href){return}else{$selected.removeClass("selected");$($selected.find("a:first").attr("href")).hide()}}$(this).parent("li").addClass("selected");$(href).show();$(".listing-fee-expiration-datepicker").hide()});$("#BusinessDirectory_listinginfo .listing-metabox-tabs li.selected a").click();$("#listing-metabox-fees a.assignfee-link").click(function(e){e.preventDefault();$(this).siblings(".assignfee").show()});$("#listing-metabox-fees .assignfee .close-handle").click(function(e){e.preventDefault();$(this).parent(".assignfee").hide()});$(".wpbdp-ajax-placeholder").each(function(i,v){wpbdp_load_placeholder($(v))});$("input#doaction, input#doaction2").click(function(e){var action_name=("doaction"==$(this).attr("id"))?"action":"action2";var $selected_option=$('select[name="'+action_name+'"] option:selected');var action_val=$selected_option.val();if(action_val.split("-")[0]=="listing"){var action=action_val.split("-")[1];if(action!="sep0"&&action!="sep1"&&action!="sep2"){var $checked_posts=$('input[name="post[]"]:checked');var uri=$selected_option.attr("data-uri");$checked_posts.each(function(i,v){uri+="&post[]="+$(v).val()});window.location.href=uri;return false}}return true});$('.wpbdp-admin.wpbdp-page-formfields-preview form input[type="submit"]').click(function(e){e.preventDefault();alert("This form is just a preview. It doesn't work.")});$("form#wpbdp-csv-import-form input.assign-listings-to-user").change(function(e){if($(this).is(":checked")){$("form#wpbdp-csv-import-form .default-user-selection").show()}else{$("form#wpbdp-csv-import-form .default-user-selection").hide()}}).change();$("#wpbdp-admin-debug-info-page a.nav-tab").click(function(e){e.preventDefault();$("#wpbdp-admin-debug-info-page a.nav-tab").not(this).removeClass("nav-tab-active");var $selected_tab=$(this);$selected_tab.addClass("nav-tab-active");$(".wpbdp-debug-section").hide();$('.wpbdp-debug-section[data-id="'+$(this).attr("href")+'"]').show()});if($("#wpbdp-admin-debug-info-page a.nav-tab").length>0){$("#wpbdp-admin-debug-info-page a.nav-tab").get(0).click()}$(".wpbdp-page-admin-transactions .column-actions a.details-link").click(function(e){e.preventDefault();var $tr=$(this).parents("tr");var $details=$tr.find("div.more-details");var $tr_details=$tr.next("tr.more-details-row");if($tr_details.length>0){$tr_details.remove();$(this).text($(this).text().replace("-","+"));return}else{$(this).text($(this).text().replace("+","-"))}$tr.after('<tr class="more-details-row"><td colspan="7">'+$details.html()+"</td></tr>").show()})});function wpbdp_load_placeholder($v){var action=$v.attr("data-action");var post_id=$v.attr("data-post_id");var baseurl=$v.attr("data-baseurl");$v.load(ajaxurl,{action:action,post_id:post_id,baseurl:baseurl})}var WPBDP_Admin={};WPBDP_Admin.payments={};WPBDP_Admin.listingMetabox={};WPBDP_Admin.ProgressBar=function($item,settings){$item.empty();$item.html('<div class="wpbdp-progress-bar"><span class="progress-text">0%</span><div class="progress-bar"><div class="progress-bar-outer"><div class="progress-bar-inner" style="width: 0%;"></div></div></div>');this.$item=$item;this.$text=$item.find(".progress-text");this.$bar=$item.find(".progress-bar");this.set=function(completed,total){var pcg=Math.round(100*parseInt(completed)/parseInt(total));this.$text.text(pcg+"%");this.$bar.find(".progress-bar-inner").attr("style","width: "+pcg+"%;")}};(function($){WPBDP_Admin.dialog={};var dialog=WPBDP_Admin.dialog})(jQuery);(function($){var payments=WPBDP_Admin.payments;payments._initialize=function(){$("#BusinessDirectory_listinginfo a.payment-details-link").click(function(e){e.preventDefault();payments.viewPaymentDetails($(this).attr("data-id"))});if($("#wpbdp-modal-dialog").length==0){$("body").append($('<div id="wpbdp-modal-dialog"></div>'))}};payments.viewPaymentDetails=function(id){$.get(ajaxurl,{action:"wpbdp-payment-details",id:id},function(res){if(res&&res.success){if($("#wpbdp-modal-dialog").length==0){$("body").append($('<div id="wpbdp-modal-dialog"></div>'))}$("#wpbdp-modal-dialog").html(res.data.html);tb_show("","#TB_inline?inlineId=wpbdp-modal-dialog");$("#wpbdp-modal-dialog").remove()}},"json")};$(document).ready(function(){payments._initialize()})})(jQuery);(function($){var metabox=WPBDP_Admin.listingMetabox;metabox._initialize=function(){$.extend($.datepicker,{_inlineDatepicker2:$.datepicker._inlineDatepicker,_inlineDatepicker:function(target,inst){this._inlineDatepicker2(target,inst);var beforeShow=$.datepicker._get(inst,"beforeShow");if(beforeShow){beforeShow.apply(target,[target,inst])}}});var _addNeverButton=function(instance){setTimeout(function(){var $buttonPane=$(instance).find(".ui-datepicker-buttonpane");if($buttonPane.find(".ui-datepicker-never").length>0){return}var $button=$("<button>",{text:"Never Expires",click:function(){_updateExpiration($(instance),"never");return false}}).addClass("ui-datepicker-never ui-state-default ui-priority-primary ui-corner-all");$buttonPane.append($button)},1)};var _updateExpiration=function($instance,newDate){if(!newDate){return}var $changeLink=$instance.siblings("a.expiration-change-link");var $expirationDate=$instance.siblings(".expiration-date");var $spinner=$instance.parents(".listing-category").find(".spinner:first");$expirationDate.text("--");$spinner.show();$instance.hide();_addNeverButton($instance.get(0));$.post(ajaxurl,{action:"wpbdp-listing_set_expiration",renewal_id:$changeLink.attr("data-renewal_id"),expiration_date:newDate},function(res){if(res&&res.success){$spinner.hide();$expirationDate.text(res.data.formattedExpirationDate).show()}},"json")};$("#listing-metabox-generalinfo, #listing-metabox-fees").each(function(i,v){var $tab=$(v);$tab.find(".expiration-date-info .datepicker").each(function(i,v){var $dp=$(v);var $changeLink=$dp.siblings("a.expiration-change-link");$dp.hide().datepicker({dateFormat:"yy-mm-dd",defaultDate:$changeLink.attr("data-date"),showButtonPanel:true,beforeShow:function(input){_addNeverButton(input)},onChangeMonthYear:function(year,month,instance){_addNeverButton(instance.input)},onSelect:function(newDate){_updateExpiration($(this),newDate)}})});$tab.find("a.expiration-change-link").click(function(e){e.preventDefault();var renewal_id=$(this).attr("data-renewal_id");$(".expiration-date-info .datepicker").not(".renewal-"+renewal_id).hide();$(".expiration-date-info .datepicker.renewal-"+renewal_id).toggle()})});$(".listing-category a.category-delete").click(function(e){e.preventDefault();var listingID=$(this).attr("data-listing");var categoryID=$(this).attr("data-category");if(!listingID||!categoryID){return}var $category=$(".listing-category-"+categoryID);$.post(ajaxurl,{action:"wpbdp-listing_remove_category",listing:listingID,category:categoryID},function(res){if(res&&res.success){$('input[name="tax_input[wpbdp_category][]"][value="'+categoryID+'"]').attr("checked",false);$category.fadeOut(function(){$(this).remove()})}},"json")});$(".listing-category a.category-change-fee").click(function(e){e.preventDefault();if($("#wpbdp-modal-dialog").length==0){$("body").append($('<div id="wpbdp-modal-dialog"></div>'))}$.post(ajaxurl,{action:"wpbdp-listing_change_fee",renewal:$(this).attr("data-renewal")},function(res){if(res&&res.success){$("#wpbdp-modal-dialog").html(res.data.html);tb_show("","#TB_inline?inlineId=wpbdp-modal-dialog");$("#wpbdp-modal-dialog").remove()}},"json")})};$(document).ready(function(){if($("#listing-metabox-fees").length>0){metabox._initialize()}})})(jQuery);(function($){var s=WPBDP_Admin.settings={_whenTrueActivateChilds:{},init:function(){var t=this;$(".wpbdp-settings-email").each(function(i,v){var $email=$(v);var $preview=$email.find(".short-preview");var $editor=$email.find(".editor");var $subject=$editor.find(".subject-text");var $body=$editor.find(".body-text");var data={subject:"",body:""};$preview.click(function(e){data.subject=$subject.val();data.body=$body.val();$preview.hide();$editor.show()});$(".cancel",$editor).click(function(e){e.preventDefault();$subject.val(data.subject);$body.val(data.body);$editor.hide();$preview.show()});$(".save",$editor).click(function(e){e.preventDefault();$("form#wpbdp-admin-settings #submit").click()});$(".preview-email",$editor).click(function(e){e.preventDefault();var subject=$subject.val();var body=$body.val();$.ajax({url:ajaxurl,data:{action:"wpbdp-admin-settings-email-preview",nonce:$editor.attr("data-preview-nonce"),setting:$email.attr("data-setting"),subject:subject,body:body},dataType:"json",type:"POST",success:function(res){if(!res.success){return}if(0==$("#wpbdp-modal-dialog").length){$("body").append('<div id="wpbdp-modal-dialog" style="display: none;"></div>')}$("#wpbdp-modal-dialog").html(res.data.html);tb_show("","#TB_inline?inlineId=wpbdp-modal-dialog");$("#wpbdp-modal-dialog").remove()}})})});$("select#quick-search-fields").change(function(){var selected=$(this).find("option.textfield:selected").length;if(selected>0){$("span.text-fields-warning").fadeIn("fast")}else{$("span.text-fields-warning").fadeOut("fast")}});$.each(this._whenTrueActivateChilds,function(p,chs){$('input[name="wpbdp-'+p+'"]').change(function(e){t.handleToggle(p)});t.handleToggle(p)})},handleToggle:function(setting){var childs=this._whenTrueActivateChilds[setting];if("undefined"===typeof(childs)){return}var checked=$('input[name="wpbdp-'+setting+'"]').is(":checked");$.each(this._whenTrueActivateChilds[setting],function(i,c){var $c=$('[name="wpbdp-'+c+'"], [name="wpbdp-'+c+'[]"]');var $row=$c.parents("tr");if(checked){$c.removeAttr("contenteditable");$row.removeClass("disabled")}else{$c.attr("contenteditable","false");$row.addClass("disabled")}})},add_requirement:function(setting,parent_,req){if("undefined"===typeof this._whenTrueActivateChilds[parent_]){this._whenTrueActivateChilds[parent_]=[]}this._whenTrueActivateChilds[parent_].push(setting)}};$(document).ready(function(){if(0==$(".wpbdp-page-admin-settings").length){return}s.init()})})(jQuery);(function($){var u=WPBDP_Admin.uninstall={init:function(){$('form#wpbdp-uninstall-capture-form input[name="uninstall[reason_id]"]').change(function(e){var val=$(this).val();if("0"==val){$('form#wpbdp-uninstall-capture-form textarea[name="uninstall[reason_text]"]').fadeIn()}else{$('form#wpbdp-uninstall-capture-form textarea[name="uninstall[reason_text]"]').fadeOut("fast",function(){$(this).val("")})}})}};$(document).ready(function(){if($(".wpbdp-page-admin-uninstall").length>0){u.init()}})})(jQuery);(function($){$(document).ready(function(){if($("body.wp-admin.widgets-php").length==0){return}$("body.wp-admin.widgets-php").on("change","input.wpbdp-toggle-images",function(){var checked=$(this).is(":checked");if(checked){$(this).parents(".widget").find(".thumbnail-width-config, .thumbnail-height-config").fadeIn("fast")}else{$(this).parents(".widget").find(".thumbnail-width-config, .thumbnail-height-config").fadeOut("fast")}})})})(jQuery);(function($){$(document).ready(function(){$("a.wpbdp-create-main-page-button").click(function(e){e.preventDefault();var $msg=$(this).parents("div.error");$.ajax({url:ajaxurl,data:{action:"wpbdp-create-main-page",_wpnonce:$(this).attr("data-nonce")},dataType:"json",success:function(res){if(!res.success){return}$msg.fadeOut("fast",function(){$(this).html("<p>"+res.message+"</p>");$(this).removeClass("error");$(this).addClass("updated");$(this).fadeIn("fast")})}})})})})(jQuery);(function($){var l=WPBDP_Admin.licensing={init:function(){$("input.license-activate").click(function(){var module=$(this).parent(".license-activation").attr("data-module-id");var license=$('input[type="text"]#license-key-'+module).val();l.activation_change(module,license,"activate")});$("input.license-deactivate").click(function(){var module=$(this).parent(".license-activation").attr("data-module-id");var license=$('input[type="text"]#license-key-'+module);l.activation_change(module,"","deactivate")})},activation_change:function(module,license,action){var $container=$('.license-activation[data-module-id="'+module+'"]');var $msg=$(".status-message",$container);var nonce=$('input[name="nonce"]',$container).val();$msg.removeClass("ok error");$msg.html($("input.license-"+action,$container).attr("data-L10n"));$.post(ajaxurl,{action:"wpbdp-"+action+"-license",module:module,key:license,nonce:nonce},function(res){if(res.success){$msg.hide().html(res.message).removeClass("error").addClass("ok").show();$("input.license-"+action,$container).hide();$('input[type="button"]',$container).not(".license-"+action).show();if("activate"==action){$('input[type="text"]#license-key-'+module).attr("readonly","readonly")}else{$('input[type="text"]#license-key-'+module).removeAttr("readonly")}}else{$msg.hide().html(res.error).removeClass("ok").addClass("error").show();if("deactivate"==action){$('input[type="text"]#license-key-'+module).removeAttr("readonly")}}},"json")}};$(document).ready(function(){if($("input.license-activate, input.license-deactivate").length>0){l.init()}if($(".wpbdp-license-expired-warning").length>0){$(".wpbdp-license-expired-warning .dismiss").click(function(e){e.preventDefault();var module_id=$(this).attr("data-module");var nonce=$(this).attr("data-nonce");var $warning=$(this).parents(".wpbdp-license-expired-warning");$.post(ajaxurl,{action:"wpbdp-license-expired-warning-dismiss",nonce:nonce,module:module_id},function(res){if(res.success){$warning.fadeOut("fast")}},"json")})}})})(jQuery);
admin/templates/fees-addoredit.tpl.php CHANGED
@@ -95,6 +95,17 @@ $fee = isset($fee) ? $fee : null;
95
  value="<?php echo wpbdp_getv($post_values, 'images', $fee ? $fee->images : '0'); ?>"
96
  style="width: 80px;" />
97
  </td>
 
 
 
 
 
 
 
 
 
 
 
98
  </tr>
99
  <?php
100
  $post_values_categories = wpbdp_getv(isset($post_values['categories']) ? $post_values['categories'] : array(), 'categories', $fee ? $fee->categories['categories'] : array());
@@ -134,4 +145,4 @@ $fee = isset($fee) ? $fee : null;
134
 
135
  <?php
136
  echo wpbdp_admin_footer();
137
- ?>
95
  value="<?php echo wpbdp_getv($post_values, 'images', $fee ? $fee->images : '0'); ?>"
96
  style="width: 80px;" />
97
  </td>
98
+ </tr>
99
+ <tr class="form-field form-required">
100
+ <th scope="row">
101
+ <label> <?php _ex('Is sticky?', 'fees admin', 'WPBDM'); ?></label>
102
+ </th>
103
+ <td>
104
+ <input name="fee[sticky]"
105
+ type="checkbox"
106
+ value="1"
107
+ <?php echo wpbdp_getv( $post_values, 'sticky', $fee ? $fee->sticky : false ) ? 'checked="checked"' : ''; ?>" />
108
+ </td>
109
  </tr>
110
  <?php
111
  $post_values_categories = wpbdp_getv(isset($post_values['categories']) ? $post_values['categories'] : array(), 'categories', $fee ? $fee->categories['categories'] : array());
145
 
146
  <?php
147
  echo wpbdp_admin_footer();
148
+ ?>
admin/templates/form-fields-addoredit.tpl.php CHANGED
@@ -102,7 +102,10 @@
102
  <select name="field[validators][]" id="field-validator">
103
  <option value=""><?php _ex('No validation', 'form-fields admin', 'WPBDM'); ?></label>
104
  <?php foreach ( $validators as $key => $name): ?>
105
- <option value="<?php echo $key; ?>" <?php echo in_array( $key, $field->get_validators(), true ) ? 'selected="selected"' : ''; ?>><?php echo $name; ?></option>
 
 
 
106
  <?php endforeach; ?>
107
  </select>
108
  </td>
102
  <select name="field[validators][]" id="field-validator">
103
  <option value=""><?php _ex('No validation', 'form-fields admin', 'WPBDM'); ?></label>
104
  <?php foreach ( $validators as $key => $name): ?>
105
+ <?php
106
+ $disable_validator = ( 'url' == $field->get_field_type_id() && 'url' != $key ) ? true : false;
107
+ ?>
108
+ <option value="<?php echo $key; ?>" <?php echo in_array( $key, $field->get_validators(), true ) ? 'selected="selected"' : ''; ?> <?php echo $disable_validator ? 'disabled="disabled"' : ''; ?> ><?php echo $name; ?></option>
109
  <?php endforeach; ?>
110
  </select>
111
  </td>
admin/templates/themes-item.tpl.php ADDED
@@ -0,0 +1,45 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <div class="wpbdp-theme <?php echo $theme->id; ?> <?php echo ( $theme->active ? 'active' : '' ); ?> <?php do_action( 'wpbdp-admin-themes-item-css', $theme ); ?> ">
2
+ <h3 class="wpbdp-theme-name">
3
+ <?php if ( $theme->active ): ?><span><?php _ex( 'Active:', 'themes', 'WPBDM' ); ?></span> <?php endif; ?>
4
+ <?php echo $theme->name; ?>
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">
17
+ <?php if ( $theme->thumbnail ): ?>
18
+ <a href="<?php echo $theme->thumbnail; ?>" title="<?php esc_attr_e( $theme->name ); ?>" class="thickbox" rel="wpbdp-theme-<?php echo $theme->id; ?>-gallery"><img src="<?php echo $theme->thumbnail; ?>" class="wpbdp-theme-thumbnail" /></a>
19
+ <!-- Other images -->
20
+ <?php foreach ( $theme->thumbnails as $imgpath => $title ): ?>
21
+ <a href="<?php echo $theme->url; ?><?php echo $imgpath; ?>" class="thickbox" title="<?php esc_attr_e( $title ); ?>" class="thickbox" rel="wpbdp-theme-<?php echo $theme->id; ?>-gallery" style="display: none;"></a>
22
+ <?php endforeach; ?>
23
+ <?php else: ?>
24
+ <div class="wpbdp-theme-thumbnail"></div>
25
+ <?php endif; ?>
26
+
27
+ <div class="wpbdp-theme-details">
28
+ <dl>
29
+ <dt class="version"><?php _ex( 'Version:', 'themes', 'WPBDM' ); ?></dt>
30
+ <dd class="version"><?php echo $theme->version; ?></dd>
31
+
32
+ <dt class="author"><?php _ex( 'Author:', 'themes', 'WPBDM' ); ?></dt>
33
+ <dd class="author"><?php echo $theme->author; ?></dd>
34
+ </dl>
35
+
36
+ <p class="desc"><?php echo $theme->description; ?></p>
37
+ </div>
38
+
39
+ <?php if ( ! $theme->active && ! in_array( $theme->id, array( 'default', 'no_theme' ), true ) ): ?>
40
+ <a href="<?php echo esc_url( add_query_arg( array( 'action' => 'delete-theme', 'theme_id' => $theme->id ) ) ); ?>" class="delete-theme-link">Delete</a>
41
+ <?php endif; ?>
42
+ </div>
43
+
44
+ <?php do_action( 'wpbdp-admin-themes-extra', $theme ); ?>
45
+ </div>
admin/templates/themes-licenses.tpl.php ADDED
@@ -0,0 +1,39 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <?php
2
+ echo wpbdp_admin_header( null, 'themes', array(
3
+ array( _x( 'Upload Directory Theme', 'themes', 'WPBDM' ), esc_url( add_query_arg( 'action', 'theme-install' ) ) )
4
+ ) );
5
+
6
+ echo wpbdp_admin_notices();
7
+ ?>
8
+
9
+ <?php echo wpbdp_render_page( WPBDP_PATH . 'admin/templates/themes-tabs.tpl.php', array( 'active' => 'licenses' ) ); ?>
10
+
11
+ <div id="wpbdp-theme-licenses">
12
+ <table class="form-table">
13
+ <tbody>
14
+ <?php foreach ( $themes as $t ): ?>
15
+ <?php if ( $t->is_core_theme ): continue; endif; ?>
16
+ <tr>
17
+ <th scope="row">
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; ?>
33
+ </tbody>
34
+ </table>
35
+ </div>
36
+
37
+ <?php
38
+ echo wpbdp_admin_footer();
39
+ ?>
admin/templates/themes-tabs.tpl.php ADDED
@@ -0,0 +1,8 @@
 
 
 
 
 
 
 
 
1
+ <?php
2
+ $active = isset( $active ) ? $active : 'themes';
3
+ ?>
4
+
5
+ <h3 class="nav-tab-wrapper">
6
+ <a class="nav-tab <?php echo 'themes' == $active ? 'nav-tab-active' : ''; ?>" href="<?php echo esc_url( admin_url( 'admin.php?page=wpbdp-themes' ) ); ?>">Available Themes</a>
7
+ <a class="nav-tab <?php echo 'licenses' == $active ? 'nav-tab-active' : ''; ?>" href="<?php echo esc_url( admin_url( 'admin.php?page=wpbdp-themes&v=licenses' ) ); ?>">Licenses</a>
8
+ </h3>
admin/templates/themes.tpl.php CHANGED
@@ -6,46 +6,18 @@ echo wpbdp_admin_header( null, 'themes', array(
6
  echo wpbdp_admin_notices();
7
  ?>
8
 
9
- <div class="wpbdp-theme-selection cf">
10
- <?php foreach ( $themes as &$t ): ?>
11
- <div class="wpbdp-theme <?php echo $t->id; ?> <?php echo ( $t->id == $active_theme ) ? 'active' : ''; ?>">
12
- <h3 class="wpbdp-theme-name">
13
- <?php if ( $t->id == $active_theme ): ?><span><?php _ex( 'Active:', 'themes', 'WPBDM' ); ?></span> <?php endif; ?>
14
- <?php echo $t->name; ?>
15
- </h3>
16
-
17
- <div class="wpbdp-theme-actions">
18
- <form action="" method="post">
19
- <input type="hidden" name="wpbdp-action" value="set-active-theme" />
20
- <input type="hidden" name="theme_id" value="<?php echo $t->id; ?>" />
21
- <?php wp_nonce_field( 'activate theme ' . $t->id ); ?>
22
- <input type="submit" class="button choose-theme button-primary" value="<?php _ex( 'Activate', 'themes', 'WPBDM' ); ?>" />
23
- </form>
24
- </div>
25
-
26
- <?php if ( $t->thumbnail ): ?>
27
- <img src="<?php echo $t->thumbnail; ?>" class="wpbdp-theme-thumbnail" />
28
- <?php endif; ?>
29
-
30
- <div class="wpbdp-theme-details">
31
- <dl>
32
- <dt class="version"><?php _ex( 'Version:', 'themes', 'WPBDM' ); ?></dt>
33
- <dd class="version"><?php echo $t->version; ?></dd>
34
 
35
- <dt class="author"><?php _ex( 'Author:', 'themes', 'WPBDM' ); ?></dt>
36
- <dd class="author"><?php echo $t->author; ?></dd>
37
- </dl>
38
 
39
- <p class="desc"><?php echo $t->description; ?></p>
40
- </div>
41
-
42
- <?php if ( ! in_array( $t->id, array( $active_theme, 'default', 'no_theme' ), true ) ): ?>
43
- <a href="<?php echo esc_url( add_query_arg( array( 'action' => 'delete-theme', 'theme_id' => $t->id ) ) ); ?>" class="delete-theme-link">Delete</a>
44
- <?php endif; ?>
45
- </div>
46
  <?php endforeach; ?>
47
  </div>
48
 
 
 
49
  <?php
50
  echo wpbdp_admin_footer();
51
  ?>
6
  echo wpbdp_admin_notices();
7
  ?>
8
 
9
+ <div id="wpbdp-admin-page-themes-tabs">
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
10
 
11
+ <?php echo wpbdp_render_page( WPBDP_PATH . 'admin/templates/themes-tabs.tpl.php' ); ?>
 
 
12
 
13
+ <div id="wpbdp-theme-selection" class="wpbdp-theme-selection cf">
14
+ <?php foreach ( $themes as &$t ): ?>
15
+ <?php echo wpbdp_render_page( WPBDP_PATH . 'admin/templates/themes-item.tpl.php', array( 'theme' => $t ) ); ?>
 
 
 
 
16
  <?php endforeach; ?>
17
  </div>
18
 
19
+ </div>
20
+
21
  <?php
22
  echo wpbdp_admin_footer();
23
  ?>
business-directory-plugin.php CHANGED
@@ -3,7 +3,7 @@
3
  * Plugin Name: Business Directory Plugin
4
  * Plugin URI: http://www.businessdirectoryplugin.com
5
  * Description: Provides the ability to maintain a free or paid business directory on your WordPress powered site.
6
- * Version: 3.6.9.1
7
  * Author: D. Rodenbaugh
8
  * Author URI: http://businessdirectoryplugin.com
9
  * License: GPLv2 or any later version
@@ -29,7 +29,7 @@
29
  if( preg_match( '#' . basename( __FILE__ ) . '#', $_SERVER['PHP_SELF'] ) )
30
  exit();
31
 
32
- define( 'WPBDP_VERSION', '3.6.9.1' );
33
 
34
  define( 'WPBDP_PATH', plugin_dir_path( __FILE__ ) );
35
  define( 'WPBDP_URL', trailingslashit( plugins_url( '/', __FILE__ ) ) );
@@ -122,7 +122,7 @@ class WPBDP_Plugin {
122
  $this->compat = new WPBDP_Compat();
123
 
124
  // Register cache groups.
125
- wp_cache_add_non_persistent_groups( array( 'wpbdp pages', 'wpbdp formfields', 'wpbdp submit state', 'wpbdp' ) );
126
 
127
  // Register some basic JS resources.
128
  add_action( 'wp_enqueue_scripts', array( &$this, 'register_common_scripts' ) );
@@ -183,6 +183,8 @@ class WPBDP_Plugin {
183
 
184
  add_action( 'wp_head', array( &$this, '_rss_feed' ) );
185
 
 
 
186
  // Register shortcodes.
187
  $shortcodes = $this->get_shortcodes();
188
 
@@ -300,6 +302,22 @@ class WPBDP_Plugin {
300
  $is_sticky_query = $wpdb->prepare("(SELECT 1 FROM {$wpdb->postmeta} WHERE {$wpdb->postmeta}.post_id = {$wpdb->posts}.ID AND {$wpdb->postmeta}.meta_key = %s AND {$wpdb->postmeta}.meta_value = %s LIMIT 1 ) AS wpbdp_is_sticky",
301
  '_wpbdp[sticky]', 'sticky');
302
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
303
  if ( in_array( wpbdp_get_option( 'listings-order-by' ), array( 'paid', 'paid-title' ), true ) ) {
304
  $is_paid_query = "(SELECT 1 FROM {$wpdb->prefix}wpbdp_payments pp WHERE pp.listing_id = {$wpdb->posts}.ID AND pp.amount > 0 LIMIT 1 ) AS wpbdp_is_paid";
305
  $fields = $fields . ', ' . $is_sticky_query . ', ' . $is_paid_query;
@@ -314,16 +332,18 @@ class WPBDP_Plugin {
314
  }
315
 
316
  public function _posts_orderby($orderby, $query) {
 
 
317
  if (!is_admin() && isset($query->query_vars['post_type']) && $query->query_vars['post_type'] == WPBDP_POST_TYPE) {
318
  $wpbdp_orderby = apply_filters('wpbdp_query_orderby', '');
319
 
320
  if ( in_array( wpbdp_get_option( 'listings-order-by' ), array( 'paid', 'paid-title' ), true ) ) {
321
  if ( 'paid-title' == wpbdp_get_option( 'listings-order-by' ) )
322
- $orderby = 'wp_posts.post_title ASC, ' . $orderby;
323
 
324
- $orderby = 'wpbdp_is_sticky DESC, wpbdp_is_paid DESC' . $wpbdp_orderby . ', ' . $orderby;
325
  } else {
326
- $orderby = 'wpbdp_is_sticky DESC' . $wpbdp_orderby . ', ' . $orderby;
327
  }
328
 
329
  $orderby = apply_filters( 'wpbdp_query_full_orderby', $orderby );
@@ -644,6 +664,7 @@ class WPBDP_Plugin {
644
  'businessdirectory_search' ),
645
  array( &$this->controller, 'search' ) );
646
  $shortcodes['businessdirectory-featuredlistings'] = array( &$this, '_featured_listings_shortcode' );
 
647
 
648
  return apply_filters( 'wpbdp_shortcodes', $shortcodes );
649
  }
@@ -846,6 +867,16 @@ class WPBDP_Plugin {
846
  echo "\n";
847
  }
848
 
 
 
 
 
 
 
 
 
 
 
849
  public function _register_widgets() {
850
  include_once ( WPBDP_PATH . 'core/widget-featured-listings.php' );
851
  include_once ( WPBDP_PATH . 'core/widget-latest-listings.php' );
@@ -925,6 +956,19 @@ class WPBDP_Plugin {
925
  return $this->controller->view_featured_listings( $atts );
926
  }
927
 
 
 
 
 
 
 
 
 
 
 
 
 
 
928
  /* theme filters */
929
  public function _comments_template($template) {
930
  // disable comments in WPBDP pages or if comments are disabled for listings
3
  * Plugin Name: Business Directory Plugin
4
  * Plugin URI: http://www.businessdirectoryplugin.com
5
  * Description: Provides the ability to maintain a free or paid business directory on your WordPress powered site.
6
+ * Version: 3.6.10
7
  * Author: D. Rodenbaugh
8
  * Author URI: http://businessdirectoryplugin.com
9
  * License: GPLv2 or any later version
29
  if( preg_match( '#' . basename( __FILE__ ) . '#', $_SERVER['PHP_SELF'] ) )
30
  exit();
31
 
32
+ define( 'WPBDP_VERSION', '3.6.10' );
33
 
34
  define( 'WPBDP_PATH', plugin_dir_path( __FILE__ ) );
35
  define( 'WPBDP_URL', trailingslashit( plugins_url( '/', __FILE__ ) ) );
122
  $this->compat = new WPBDP_Compat();
123
 
124
  // Register cache groups.
125
+ wp_cache_add_non_persistent_groups( array( 'wpbdp pages', 'wpbdp formfields', 'wpbdp fees', 'wpbdp submit state', 'wpbdp' ) );
126
 
127
  // Register some basic JS resources.
128
  add_action( 'wp_enqueue_scripts', array( &$this, 'register_common_scripts' ) );
183
 
184
  add_action( 'wp_head', array( &$this, '_rss_feed' ) );
185
 
186
+ add_filter( 'body_class', array( &$this, '_body_class' ), 10 );
187
+
188
  // Register shortcodes.
189
  $shortcodes = $this->get_shortcodes();
190
 
302
  $is_sticky_query = $wpdb->prepare("(SELECT 1 FROM {$wpdb->postmeta} WHERE {$wpdb->postmeta}.post_id = {$wpdb->posts}.ID AND {$wpdb->postmeta}.meta_key = %s AND {$wpdb->postmeta}.meta_value = %s LIMIT 1 ) AS wpbdp_is_sticky",
303
  '_wpbdp[sticky]', 'sticky');
304
 
305
+ // Handle fee-based sticky listings.
306
+ if ( 'browsecategory' == wpbdp_current_action() ) {
307
+ $cat_id = wpbdp_current_category_id();
308
+
309
+ if ( $cat_id && is_numeric( $cat_id ) ) {
310
+ $cat_sticky = $wpdb->prepare( "(SELECT 1 FROM {$wpdb->prefix}wpbdp_listing_fees lf WHERE lf.listing_id = {$wpdb->posts}.ID AND lf.sticky = %d AND lf.category_id = %d LIMIT 1 ) AS wpbdp_cat_sticky",
311
+ 1,
312
+ $cat_id );
313
+ $is_sticky_query .= ', ' . $cat_sticky;
314
+ } else {
315
+ $is_sticky_query .=', (SELECT 0) AS wpbdp_cat_sticky';
316
+ }
317
+ } else {
318
+ $is_sticky_query .=', (SELECT 0) AS wpbdp_cat_sticky';
319
+ }
320
+
321
  if ( in_array( wpbdp_get_option( 'listings-order-by' ), array( 'paid', 'paid-title' ), true ) ) {
322
  $is_paid_query = "(SELECT 1 FROM {$wpdb->prefix}wpbdp_payments pp WHERE pp.listing_id = {$wpdb->posts}.ID AND pp.amount > 0 LIMIT 1 ) AS wpbdp_is_paid";
323
  $fields = $fields . ', ' . $is_sticky_query . ', ' . $is_paid_query;
332
  }
333
 
334
  public function _posts_orderby($orderby, $query) {
335
+ global $wpdb;
336
+
337
  if (!is_admin() && isset($query->query_vars['post_type']) && $query->query_vars['post_type'] == WPBDP_POST_TYPE) {
338
  $wpbdp_orderby = apply_filters('wpbdp_query_orderby', '');
339
 
340
  if ( in_array( wpbdp_get_option( 'listings-order-by' ), array( 'paid', 'paid-title' ), true ) ) {
341
  if ( 'paid-title' == wpbdp_get_option( 'listings-order-by' ) )
342
+ $orderby = "{$wpdb->posts}post_title ASC, " . $orderby;
343
 
344
+ $orderby = 'wpbdp_is_sticky DESC, wpbdp_cat_sticky DESC, wpbdp_is_paid DESC' . $wpbdp_orderby . ', ' . $orderby;
345
  } else {
346
+ $orderby = 'wpbdp_is_sticky DESC, wpbdp_cat_sticky DESC ' . $wpbdp_orderby . ', ' . $orderby;
347
  }
348
 
349
  $orderby = apply_filters( 'wpbdp_query_full_orderby', $orderby );
664
  'businessdirectory_search' ),
665
  array( &$this->controller, 'search' ) );
666
  $shortcodes['businessdirectory-featuredlistings'] = array( &$this, '_featured_listings_shortcode' );
667
+ $shortcodes['businessdirectory-listing'] = array( &$this, '_single_listing_shortcode' );
668
 
669
  return apply_filters( 'wpbdp_shortcodes', $shortcodes );
670
  }
867
  echo "\n";
868
  }
869
 
870
+ function _body_class( $classes = array() ) {
871
+ global $post;
872
+
873
+ if ( ! $this->is_plugin_page() )
874
+ return $classes;
875
+
876
+ $classes[] = 'business-directory';
877
+ return $classes;
878
+ }
879
+
880
  public function _register_widgets() {
881
  include_once ( WPBDP_PATH . 'core/widget-featured-listings.php' );
882
  include_once ( WPBDP_PATH . 'core/widget-latest-listings.php' );
956
  return $this->controller->view_featured_listings( $atts );
957
  }
958
 
959
+ /**
960
+ * @since next-release
961
+ */
962
+ function _single_listing_shortcode( $atts ) {
963
+ $atts = shortcode_atts( array( 'id' => null, 'slug' => null ), $atts );
964
+ $listing_id = wpbdp_get_post_by_id_or_slug( $atts['id'] ? $atts['id'] : $atts['slug'], 'id', 'id' );
965
+
966
+ if ( ! $listing_id )
967
+ return '';
968
+
969
+ return wpbdp_render_listing( $listing_id, 'single' );
970
+ }
971
+
972
  /* theme filters */
973
  public function _comments_template($template) {
974
  // disable comments in WPBDP pages or if comments are disabled for listings
core/class-csv-import.php CHANGED
@@ -270,7 +270,9 @@ class WPBDP_CSV_Import {
270
  private function read_header() {
271
  $file = new SplFileObject( $this->csv_file );
272
 
273
- $this->set_header( str_getcsv( $file->current(), $this->settings['csv-file-separator'] ) );
 
 
274
  $file->next();
275
  $this->current_line = $file->key();
276
  $file = null;
@@ -606,4 +608,11 @@ class WPBDP_CSV_Import {
606
  return $media_id;
607
  }
608
 
 
 
 
 
 
 
 
609
  }
270
  private function read_header() {
271
  $file = new SplFileObject( $this->csv_file );
272
 
273
+ $header_line = $this->remove_bom( $file->current() );
274
+
275
+ $this->set_header( str_getcsv( $header_line, $this->settings['csv-file-separator'] ) );
276
  $file->next();
277
  $this->current_line = $file->key();
278
  $file = null;
608
  return $media_id;
609
  }
610
 
611
+ private function remove_bom( $str ) {
612
+ if ( substr( $str, 0, 3 ) == pack( "CCC", 0xef, 0xbb, 0xbf ) )
613
+ $str = substr( $str, 3 );
614
+
615
+ return $str;
616
+ }
617
+
618
  }
core/class-listing.php CHANGED
@@ -186,6 +186,7 @@ class WPBDP_Listing {
186
  $fee_info['fee_days'] = intval( isset( $fee['days'] ) ? $fee['days'] : $fee['fee_days'] );
187
  $fee_info['fee_images'] = intval( isset( $fee['images'] ) ? $fee['images'] : $fee['fee_images'] );
188
  $fee_info['recurring'] = $recurring ? 1 : 0;
 
189
 
190
  if ( isset( $recurring_data ) )
191
  $fee_info['recurring_data'] = serialize( $recurring_data );
@@ -215,14 +216,23 @@ class WPBDP_Listing {
215
  public function get_categories( $info = 'current' ) {
216
  global $wpdb;
217
 
218
- $current_ids = $wpdb->get_col( $wpdb->prepare( "SELECT DISTINCT category_id FROM {$wpdb->prefix}wpbdp_listing_fees WHERE listing_id = %d AND (expires_on >= %s OR expires_on IS NULL)",
219
- $this->id,
220
- current_time( 'mysql' ) ) );
221
- $expired_ids = $wpdb->get_col( $wpdb->prepare( "SELECT DISTINCT category_id FROM {$wpdb->prefix}wpbdp_listing_fees WHERE listing_id = %d AND expires_on IS NOT NULL AND expires_on < %s",
222
- $this->id,
223
- current_time( 'mysql' ) ) );
224
-
225
- // Pending info.
 
 
 
 
 
 
 
 
 
226
  $pending_payments = $wpdb->get_results( $wpdb->prepare( "SELECT pi.payment_id, pi.id, pi.rel_id_1 FROM {$wpdb->prefix}wpbdp_payments_items pi INNER JOIN {$wpdb->prefix}wpbdp_payments p ON p.id = pi.payment_id WHERE pi.item_type IN (%s, %s) AND p.status = %s AND p.listing_id = %d",
227
  'fee', 'recurring_fee',
228
  'pending',
@@ -231,7 +241,6 @@ class WPBDP_Listing {
231
  $pending = array();
232
  foreach ( $pending_payments as &$p ) {
233
  $pending[ intval( $p->rel_id_1 ) ] = $p->id;
234
- // $pending_payment_ids[ intval( $p->rel_id_1 ) ] = $p->payment_id;
235
  }
236
 
237
  $pending_ids = array_keys( $pending );
@@ -268,7 +277,8 @@ class WPBDP_Listing {
268
  switch ( $category->status ) {
269
  case 'expired':
270
  case 'ok':
271
- $fee_info = $wpdb->get_row( $wpdb->prepare( "SELECT * FROM {$wpdb->prefix}wpbdp_listing_fees WHERE listing_id = %d AND category_id = %d", $this->id, $category_id ) );
 
272
  $fee_info_recurring_data = unserialize( $fee_info->recurring_data );
273
 
274
  if ( ! $fee_info ) {
186
  $fee_info['fee_days'] = intval( isset( $fee['days'] ) ? $fee['days'] : $fee['fee_days'] );
187
  $fee_info['fee_images'] = intval( isset( $fee['images'] ) ? $fee['images'] : $fee['fee_images'] );
188
  $fee_info['recurring'] = $recurring ? 1 : 0;
189
+ $fee_info['sticky'] = $fee['sticky'];
190
 
191
  if ( isset( $recurring_data ) )
192
  $fee_info['recurring_data'] = serialize( $recurring_data );
216
  public function get_categories( $info = 'current' ) {
217
  global $wpdb;
218
 
219
+ $current_ids = array();
220
+ $expired_ids = array();
221
+ $pending_ids = array();
222
+ $known = array();
223
+
224
+ foreach ( $wpdb->get_results( $wpdb->prepare(
225
+ "SELECT *, IF ( expires_on >= %s OR expires_on IS NULL, 0, 1 ) AS _expired FROM {$wpdb->prefix}wpbdp_listing_fees WHERE listing_id = %d",
226
+ current_time( 'mysql' ),
227
+ $this->id ) ) as $r ) {
228
+ $known[ $r->category_id ] = $r;
229
+
230
+ if ( 1 == $r->_expired )
231
+ $expired_ids[] = $r->category_id;
232
+ else
233
+ $current_ids[] = $r->category_id;
234
+ }
235
+
236
  $pending_payments = $wpdb->get_results( $wpdb->prepare( "SELECT pi.payment_id, pi.id, pi.rel_id_1 FROM {$wpdb->prefix}wpbdp_payments_items pi INNER JOIN {$wpdb->prefix}wpbdp_payments p ON p.id = pi.payment_id WHERE pi.item_type IN (%s, %s) AND p.status = %s AND p.listing_id = %d",
237
  'fee', 'recurring_fee',
238
  'pending',
241
  $pending = array();
242
  foreach ( $pending_payments as &$p ) {
243
  $pending[ intval( $p->rel_id_1 ) ] = $p->id;
 
244
  }
245
 
246
  $pending_ids = array_keys( $pending );
277
  switch ( $category->status ) {
278
  case 'expired':
279
  case 'ok':
280
+ $fee_info = $known[ $category_id ];
281
+ //$fee_info = $wpdb->get_row( $wpdb->prepare( "SELECT * FROM {$wpdb->prefix}wpbdp_listing_fees WHERE listing_id = %d AND category_id = %d", $this->id, $category_id ) );
282
  $fee_info_recurring_data = unserialize( $fee_info->recurring_data );
283
 
284
  if ( ! $fee_info ) {
core/class-payment.php CHANGED
@@ -287,11 +287,74 @@ class WPBDP_Payment extends WPBDP_DB_Model {
287
  return null;
288
  }
289
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
290
  public function get_listing_id() {
291
  return $this->listing_id;
292
  }
293
 
294
- public function get_total() {
 
 
 
 
 
 
 
 
 
 
295
  return $this->amount;
296
  }
297
 
287
  return null;
288
  }
289
 
290
+ public function summarize() {
291
+ $regular = 0.0;
292
+ $discounts = 0.0;
293
+ $recurring = 0.0;
294
+ $recurring_days = 0;
295
+
296
+ $res = array( 'trial' => false,
297
+ 'trial_amount' => 0.0,
298
+ 'recurring' => false,
299
+ 'recurring_amount' => 0.0,
300
+ 'recurring_days' => 0,
301
+ 'recurring_description' => '',
302
+ 'recurring_obj' => null,
303
+ 'balance' => 0.0,
304
+ 'description' => $this->get_short_description() );
305
+
306
+ $recurring = $this->get_item( array( 'item_type' => 'recurring_fee' ) );
307
+ $res['recurring_obj'] = $recurring;
308
+
309
+ if ( ! $recurring ) {
310
+ $res['balance'] = floatval( $this->get_total() );
311
+ } else {
312
+ $recurring_amt = floatval( $recurring->amount );
313
+ $discounts_amt = abs( floatval( $this->get_total( 'coupon' ) ) );
314
+ $others_amt = ( floatval( $this->get_total() ) + $discounts_amt ) - $recurring_amt;
315
+
316
+ $res['recurring'] = true;
317
+ $res['recurring_amount'] = $recurring_amt;
318
+ $res['recurring_days'] = $recurring->data['fee_days'];
319
+ $res['recurring_description'] = $recurring->description;
320
+
321
+ if ( $discounts_amt > 0.0 ) {
322
+ if ( $others_amt > 0.0 ) {
323
+ $others_rem = $others_amt - $discounts_amt;
324
+
325
+ if ( $others_rem > 0.0 ) {
326
+ $res['balance'] = $others_rem;
327
+ } else {
328
+ $res['trial_amount'] = max( 0.0, $recurring_amt + $others_rem );
329
+ $res['trial'] = true;
330
+ }
331
+ } else {
332
+ $res['trial'] = true;
333
+ $res['trial_amount'] = max( 0.0, $recurring_amt - $discounts_amt );
334
+ }
335
+ } else {
336
+ $res['balance'] = $others_amt;
337
+ }
338
+ }
339
+
340
+ return $res;
341
+ }
342
+
343
  public function get_listing_id() {
344
  return $this->listing_id;
345
  }
346
 
347
+ public function get_total( $item_type = 'all' ) {
348
+ if ( $item_type && 'all' != $item_type ) {
349
+ $res = 0.0;
350
+ $items = $this->get_items( array( 'item_type' => $item_type ) );
351
+
352
+ foreach ( $items as $i )
353
+ $res += $i->amount;
354
+
355
+ return $res;
356
+ }
357
+
358
  return $this->amount;
359
  }
360
 
core/class-settings.php CHANGED
@@ -90,11 +90,20 @@ class WPBDP_Settings {
90
  $s = $this->add_section( $g,
91
  'search',
92
  _x( 'Directory Search', 'admin settings', 'WPBDM' ) );
 
 
 
 
 
93
  $this->add_setting( $s,
94
- 'show-search-form-in-results',
95
- _x( 'Display search form when displaying search results?', 'admin settings', 'WPBDM' ),
96
- 'boolean',
97
- true );
 
 
 
 
98
 
99
  // Quick search fields.
100
  $desc = '';
@@ -569,12 +578,39 @@ EOF;
569
  ) );
570
  $this->register_dep( 'payment-abandonment-threshold', 'requires-true', 'payment-abandonment' );
571
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
572
 
573
  /* Registration settings */
574
- $g = $this->add_group('registration', _x('Registration', 'admin settings', 'WPBDM'));
575
- $s = $this->add_section($g, 'registration', _x('Registration Settings', 'admin settings', 'WPBDM'));
 
 
 
 
576
  $this->add_setting($s, 'require-login', _x('Require login to post listings?', 'admin settings', 'WPBDM'), 'boolean', true);
577
- //$this->add_setting($s, 'login-url', _x('Login URL', 'admin settings', 'WPBDM'), 'text', wp_login_url()); // deprecated as of 2.1
 
 
 
 
 
 
 
 
578
  // deprecated as of 2.1, added again for 3.4
579
  $this->add_setting( $s,
580
  'registration-url',
@@ -610,7 +646,7 @@ EOF;
610
  'boolean',
611
  false,
612
  _x( 'When enabled images will match exactly the dimensions above but part of the image may be cropped out. If disabled, image thumbnails will be resized to match the specified width and their height will be adjusted proportionally. Depending on the uploaded images, thumbnails may have different heights.', 'admin settings', 'WPBDM' )
613
- );
614
 
615
  $s = $this->add_section($g, 'listings', _x('Listings', 'admin settings', 'WPBDM'));
616
  $this->add_setting( $s,
90
  $s = $this->add_section( $g,
91
  'search',
92
  _x( 'Directory Search', 'admin settings', 'WPBDM' ) );
93
+ // $this->add_setting( $s,
94
+ // 'show-search-form-in-results',
95
+ // _x( 'Display search form when displaying search results?', 'admin settings', 'WPBDM' ),
96
+ // 'boolean',
97
+ // true );
98
  $this->add_setting( $s,
99
+ 'search-form-in-results',
100
+ _x( 'Search form display', 'admin settings', 'WPBDM' ),
101
+ 'choice',
102
+ 'above',
103
+ '',
104
+ array( 'choices' => array( array( 'above', _x( 'Above results', 'admin settings', 'WPBDM' ) ),
105
+ array( 'below', _x( 'Below results', 'admin settings', 'WPBDM' ) ),
106
+ array( 'none', _x( 'Don\'t show with results', 'admin settings', 'WPBDM' ) ) ) ) );
107
 
108
  // Quick search fields.
109
  $desc = '';
578
  ) );
579
  $this->register_dep( 'payment-abandonment-threshold', 'requires-true', 'payment-abandonment' );
580
 
581
+ // TODO: we probably should merge this and 'Images' into an 'Appearance' tab.
582
+ if ( wpbdp_experimental( 'themes' ) ) {
583
+ $g = $this->add_group( 'themes', _x( 'Themes', 'admin settings', 'WPBDM' ) );
584
+ $s = $this->add_section( $g, 'general', _x( 'General Settings', 'admin settings', 'WPBDM' ) );
585
+
586
+ $this->add_setting( $s,
587
+ 'themes-button-style',
588
+ _x( 'Theme button style', 'admin settings', 'WPBDM' ),
589
+ 'choice',
590
+ 'theme',
591
+ '',
592
+ array( 'choices' => array( array( 'theme', _x( 'Use the BD theme style for BD buttons', 'admin settings', 'WPBDM' ) ),
593
+ array( 'none', _x( 'Use the WP theme style for BD buttons', 'admin settings', 'WPBDM' ) ) ),
594
+ 'use_checkboxes' => false ) );
595
+ }
596
 
597
  /* Registration settings */
598
+ $g = $this->add_group( 'registration',
599
+ _x('Registration', 'admin settings', 'WPBDM' ) );
600
+ $msg = __( "We expect that a membership plugin supports the 'redirect_to' parameter for the URLs below to work. If the plugin does not support them, these settings will not function as expected. Please contact the membership plugin and ask them to support the WP standard 'redirect_to' query parameter.",
601
+ 'admin settings',
602
+ 'WPBDM' );
603
+ $s = $this->add_section( $g, 'registration', _x( 'Registration Settings', 'admin settings', 'WPBDM' ), $msg );
604
  $this->add_setting($s, 'require-login', _x('Require login to post listings?', 'admin settings', 'WPBDM'), 'boolean', true);
605
+
606
+ // deprecated as of 2.1, added again for @next-release
607
+ $this->add_setting( $s,
608
+ 'login-url',
609
+ _x( 'Login URL', 'admin settings', 'WPBDM'),
610
+ 'text',
611
+ '',
612
+ _x( 'URL of your membership plugin\'s login page. Only enter this if using a membership plugin or custom login page.', 'admin settings', 'WPBDM' ) );
613
+
614
  // deprecated as of 2.1, added again for 3.4
615
  $this->add_setting( $s,
616
  'registration-url',
646
  'boolean',
647
  false,
648
  _x( 'When enabled images will match exactly the dimensions above but part of the image may be cropped out. If disabled, image thumbnails will be resized to match the specified width and their height will be adjusted proportionally. Depending on the uploaded images, thumbnails may have different heights.', 'admin settings', 'WPBDM' )
649
+ );
650
 
651
  $s = $this->add_section($g, 'listings', _x('Listings', 'admin settings', 'WPBDM'));
652
  $this->add_setting( $s,
core/class-utils.php ADDED
@@ -0,0 +1,17 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <?php
2
+
3
+ class WPBDP_Utils {
4
+
5
+ /**
6
+ * @since next-release
7
+ */
8
+ public static function normalize( $val = '', $opts = array() ) {
9
+ $res = strtolower( $val );
10
+ $res = remove_accents( $res );
11
+ $res = preg_replace( '/\s+/', '_', $res );
12
+ $res = preg_replace( '/[^a-zA-Z0-9_-]+/', '', $res );
13
+
14
+ return $res;
15
+ }
16
+
17
+ }
core/css/wpbdp.css CHANGED
@@ -86,7 +86,7 @@ form#wpbdmsearchform a.advanced-search-link {
86
  .listing-actions input.delete-listing {
87
  margin-left: 5px;
88
  margin-right: 30px;
89
- color: #ff0000;
90
  }
91
 
92
  .listing-actions .back-to-dir {
@@ -720,3 +720,36 @@ table#wpbdp-manage-recurring a.cancel-subscription {
720
 
721
  /* }} */
722
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
86
  .listing-actions input.delete-listing {
87
  margin-left: 5px;
88
  margin-right: 30px;
89
+ color: #ff0000 !important;
90
  }
91
 
92
  .listing-actions .back-to-dir {
720
 
721
  /* }} */
722
 
723
+ /* {{ Some fixes for Thickbox on BD pages. */
724
+
725
+ body.business-directory #TB_ImageOff .screen-reader-text,
726
+ body.business-directory #TB_closeWindowButton .screen-reader-text {
727
+ visibility: hidden;
728
+ }
729
+
730
+ body.business-directory #TB_next {
731
+ float: right;
732
+ }
733
+
734
+ body.business-directory #TB_prev {
735
+ float: left;
736
+ }
737
+
738
+ body.business-directory #TB_caption {
739
+ float: none !important;
740
+ }
741
+
742
+ body.business-directory #TB_closeWindow {
743
+ padding: 0;
744
+ height: 0px;
745
+ }
746
+
747
+ body.business-directory #TB_closeWindow .screen-reader-text {
748
+ display: none;
749
+ }
750
+
751
+ body.business-directory #TB_secondLine {
752
+ text-align: center;
753
+ }
754
+
755
+ /* }} */
core/css/wpbdp.min.css CHANGED
@@ -1 +1 @@
1
- form#wpbdmsearchform{padding:12px 0;text-align:center}form#wpbdmsearchform input{display:inline}form#wpbdmsearchform .wpbdmsearchbutton{margin-top:5px}form#wpbdmsearchform a.advanced-search-link{font-size:70%;display:block}#wpbdp-search-form{padding-left:10px}#wpbdp-search-form .wpbdp-search-filter{margin-bottom:10px;clear:both}#wpbdp-search-form .wpbdp-search-filter>div.label{display:block;width:40%;float:left}#wpbdp-search-form .wpbdp-search-filter>div.field{display:block;width:60%;margin-left:40%;padding-left:5px}#wpbdp-search-form .wpbdp-search-filter>div.field>input[type="text"]{width:90%}#wpbdp-search-form .wpbdp-search-filter>div.field>select{width:90%}#wpbdp-search-form input[type="submit"]{width:100px;float:none;margin:auto}.cf:before,.cf:after{content:" ";display:table}.cf:after{clear:both}.cf{*zoom:1}.wpbdp-pagination{margin:25px 0 0 0}.wpbdp-pagination .next{float:right}.listing-actions form{margin:0;padding:0;display:inline}.listing-actions input{margin:0}.listing-actions input.delete-listing{margin-left:5px;margin-right:30px;color:red}.listing-actions a.button{padding:5px 10px;font-size:11px;text-decoration:none;background-color:#e6e6e6;color:#7c7c7c;background-repeat:repeat-x;background-image:-moz-linear-gradient(top,#f4f4f4,#e6e6e6);background-image:-ms-linear-gradient(top,#f4f4f4,#e6e6e6);background-image:-webkit-linear-gradient(top,#f4f4f4,#e6e6e6);background-image:-o-linear-gradient(top,#f4f4f4,#e6e6e6);background-image:linear-gradient(top,#f4f4f4,#e6e6e6);border:1px solid #d2d2d2;border-radius:3px;box-shadow:0 1px 2px rgba(64,64,64,0.1);margin-right:3px}.listing-actions a.button:hover{color:#5e5e5e;background-color:#ebebeb;background-repeat:repeat-x;background-image:-moz-linear-gradient(top,#f9f9f9,#ebebeb);background-image:-ms-linear-gradient(top,#f9f9f9,#ebebeb);background-image:-webkit-linear-gradient(top,#f9f9f9,#ebebeb);background-image:-o-linear-gradient(top,#f9f9f9,#ebebeb);background-image:linear-gradient(top,#f9f9f9,#ebebeb)}.listing-actions a.delete-listing{margin-left:20px;color:red}.wpbdp-listing .listing-details .field-value{margin-bottom:10px;width:100%;float:none}.wpbdmsingledetails .singledetailsview .field-value{margin-bottom:10px}.field-value label{color:#444;font-weight:bold}.wpbdp-listing-excerpt{padding:10px;border-bottom:dotted 1px #ddd}.wpbdp-listing-excerpt.odd{background:#eee}.wpbdp-listing-excerpt.sticky{background:#fff0cf;border-bottom:solid 1px #b37800}.wpbdp-listing-excerpt .listing-thumbnail{float:right;margin:0 10px 0 0}.wpbdp-listing-excerpt .listing-actions{margin-top:15px}.wpbdp-listing-single .listing-actions{margin-bottom:25px}.wpbdp-listing-single .stickytag{float:right;margin-top:-68px}.wpbdp-listing-single .stickytag img{border:0;box-shadow:none;background:transparent}.wpbdp-listing-single .listing-title{padding:2px 8px;background:#efefef;border:dotted 1px #ddd;margin-bottom:7px}.wpbdp-listing-single .listing-title h2{clear:none;margin:0}.wpbdp-listing-single .main-image{float:right;margin-left:10px;padding:5px}.wpbdp-listing-single .main-image a{position:relative !important}.wpbdp-listing-single .main-image img{border:solid 1px #333}.wpbdp-listing-single .extra-images{margin-top:10px;clear:both}.wpbdp-listing-single .extra-images ul{margin:0 auto;width:100%}.wpbdp-listing-single .extra-images ul li{list-style-type:none;display:inline;margin-left:5px}.wpbdp-listing-single .extra-images ul li img{display:inline;vertical-align:top;margin:0 auto;max-width:150px;border:solid 1px #333}.wpbdp-listing .social-fields{margin:20px 0}.wpbdp-listing .social-field{margin:5px 0;height:30px;vertical-align:middle}.social-field.facebook .fb-like>span{overflow:visible !important;width:450px !important;margin-right:-375px}.wpbdp-listing .contact-form{margin-top:20px;border-top:dotted 1px #ddd;padding-top:20px;padding-left:10px}.wpbdp-listing .contact-form .send-message-button{margin-left:-10px}.wpbdp-listing .contact-form h3{margin-left:-10px}.wpbdp-listing .contact-form textarea{width:98% !important}.wpbdp-listing .comments{margin-top:20px}.wpbdp-bar{background:#f7f7f7;margin:10px 0 20px 0;padding:5px 10px}.wpbdp-bar .wpbdp-main-links{float:left}.wpbdp-bar .wpbdp-search-form{margin:0;padding:0 !important;margin-left:50%}.wpbdp-main-links a{margin-right:15px}.wpbdp-bar .left{float:left;text-align:center}.wpbdp-bar .right{width:300px;float:right}.wpbdp-listings-sort-options{font-size:90%;margin:5px 0;text-align:right}.wpbdp-listings-sort-options .current{font-weight:bold}.wpbdp-main-page #wpbdp-categories{clear:both;margin-bottom:20px}ul.wpbdp-categories{margin:0 0 10px 15px;padding:0 10px}ul.wpbdp-categories>li{width:50%;float:left;margin:0}@media screen and (max-width:704px){ul.wpbdp-categories>li{float:none;width:initial}}@media screen and (max-width:500px){ul.wpbdp-categories{font-size:90%}ul.wpbdp-categories ul.children li.cat-item{margin-left:10px;padding:0}}.wpbdp-submit-page h3{margin-bottom:10px}.wpbdp-submit-page .wpbdmp{margin:0}.wpbdp-submit-page legend{font-size:85%;margin-bottom:20px}.wpbdp-submit-page .wpbdp-form-field{margin-bottom:8px}.wpbdp-submit-page .wpbdp-form-field .wpbdmcheckboxclass checkbox{margin-left:0}.wpbdp-submit-page .wpbdp-form-field.required .wpbdp-form-field-label:after{content:' *';font-size:80%}.wpbdp-form-field .field-description{font-size:90%;color:#696969;float:right}.wpbdp-form-field span.sublabel{font-size:90%;margin-left:10px;margin-right:10px}.wpbdp-form-field.image a.delete{margin-left:10px}ul.validation-errors{margin:15px 0 15px 0}ul.validation-errors li{color:red;margin:3px 0;list-style-position:inside}.wpbdp-submit-page.step-fees h4{background:#ddd;color:#333;padding:10px;margin-bottom:5px}.wpbdp-submit-page.step-images #image-upload-form{margin:15px 10px}.wpbdp-submit-page.step-images .wpbdp-image{float:left;border-bottom:dotted 1px #efefef;margin-right:10px;margin-bottom:10px;vertical-align:top}.wpbdp-submit-page.step-images .wpbdp-image img{vertical-align:top;text-align:center;max-width:150px;height:auto}.wpbdp-submit-page.step-images .area-and-conditions #image-upload-dnd-area{float:left;width:72%}.wpbdp-submit-page.step-images .area-and-conditions #image-upload-conditions{float:right;width:25%;color:#666}.wpbdp-submit-page.step-images .area-and-conditions #image-upload-conditions dl{margin:0}.wpbdp-submit-page.step-images #image-upload-form-no-js{width:0;height:0;overflow:hidden;visibility:hidden}.wpbdp-submit-page.step-images .wpbdp-image .delete-image{color:red}.wpbdp-submit-page .upgrade-to-featured-option{border:solid 1px #666;padding:5px 10px;margin:25px 0 25px 0;font-size:90%}.wpbdp-msg{font-size:85%;padding:.6em;border:solid 1px #e6db55;color:#555;margin:5px 0;background:#fffbcc;border-radius:3px}.wpbdp-msg.error{background-color:#ffebe8;border-color:#C00}.wpbdp-submit-page table.fee-options{width:100%}.wpbdp-submit-page table.fee-options th,.wpbdp-submit-page table.fee-options td{text-align:center}.wpbdp-submit-page table.fee-options .fee-selection{width:5%}.wpbdp-submit-page table.fee-options tr.fee-option td.fee-label{font-weight:bold}.wpbdp-submit-page table.fee-options td.fee-description{font-size:90%;color:#666}#wpbdp-renewal-page .do-not-renew-listing{margin:40px 0;border:solid 1px #eee;font-size:95%}#wpbdp-renewal-page .do-not-renew-listing .header{background:#bc0b0b;color:#fff;text-align:center;font-weight:bold;padding:2px 0}#wpbdp-renewal-page .do-not-renew-listing input[type="submit"]{color:#900000}.wpbdp-recaptcha-error{color:red}#wpbdp-delete-listing-page form.confirm-form{margin-top:30px}#wpbdp-delete-listing-page input.delete-listing-confirm{margin-left:20px;color:#c00}#googlewallet-buy img{border:0;box-shadow:none}table#wpbdp-manage-recurring th.listing-title,table#wpbdp-manage-recurring td.listing-title{min-width:200px}table#wpbdp-manage-recurring a.cancel-subscription{color:red}#wpbdp-manage-recurring-cancel dl dd{margin-left:10px}.wpbdp-cc-form{padding:0;width:90%}.wpbdp-cc-form h4{margin:0}.wpbdp-cc-field input{width:auto}.wpbdp-cc-field label{display:block;font-weight:bold;text-align:right;padding-right:10px}#wpbdp-billing-information .billing-info-section h4{margin-bottom:5px}#wpbdp-billing-information .billing-info-section table{margin:10px 0 0 20px}#wpbdp-billing-information .form-buttons{margin:15px 0}.wpbdp-show-on-mobile{display:none}@media screen and (max-width:500px){.wpbdp-show-on-mobile{display:inline !important}.wpbdp-hide-on-mobile{display:none}.wpbdp-bar .wpbdp-main-links{display:block}.wpbdp-bar .wpbdp-main-links input[type="button"]{display:block;margin-bottom:2px}.wpbdp-bar form.wpbdp-search-form{width:49%;display:block}.wpbdp-bar form.wpbdp-search-form input[type="text"]{padding:4px 0;margin:0 0 2px 0}.wpbdp-listings-sort-options{font-size:90%}.wpbdp-listing.wpbdp-listing{font-size:90%}.wpbdp-listing.wpbdp-listing-excerpt .field-value>label{display:block}.wpbdp-listing.wpbdp-listing-excerpt .listing-thumbnail{padding:5px}.wpbdp-listing .listing-actions input{font-size:85%}.wpbdp-listing .listing-actions input.back-to-dir{float:right}.wpbdp-listing.wpbdp-listing-single .main-image{display:block;float:none;padding:0;margin:0 0 10px 0;text-align:center;max-width:90%}.wpbdp-listing.wpbdp-listing-single .field-value>label{display:block}.wpbdp-submit-page.step-images #image-upload-dnd-area{font-size:90%;float:none !important;width:100% !important}.wpbdp-submit-page.step-images .dnd-area-inside-error{margin-top:30px}.wpbdp-submit-page.step-images #image-upload-conditions{width:100% !important;float:none !important;font-size:90%}.wpbdp-submit-page.step-images #image-upload-conditions dl{margin:0;padding:0}.wpbdp-submit-page.step-images #image-upload-conditions dl dt{margin:0;margin-right:5px;padding:0;float:left}.wpbdp-submit-page.step-images #image-upload-conditions dl dd{margin:0;padding:0;display:block}.wpbdp-submit-page.step-images .wpbdp-image img{max-width:50%}.wpbdp-listings-sort-options.wpbdp-show-on-mobile{margin-bottom:10px}}
1
+ form#wpbdmsearchform{padding:12px 0;text-align:center}form#wpbdmsearchform input{display:inline}form#wpbdmsearchform .wpbdmsearchbutton{margin-top:5px}form#wpbdmsearchform a.advanced-search-link{font-size:70%;display:block}#wpbdp-search-form{padding-left:10px}#wpbdp-search-form .wpbdp-search-filter{margin-bottom:10px;clear:both}#wpbdp-search-form .wpbdp-search-filter>div.label{display:block;width:40%;float:left}#wpbdp-search-form .wpbdp-search-filter>div.field{display:block;width:60%;margin-left:40%;padding-left:5px}#wpbdp-search-form .wpbdp-search-filter>div.field>input[type="text"]{width:90%}#wpbdp-search-form .wpbdp-search-filter>div.field>select{width:90%}#wpbdp-search-form input[type="submit"]{width:100px;float:none;margin:auto}.cf:before,.cf:after{content:" ";display:table}.cf:after{clear:both}.cf{*zoom:1}.wpbdp-pagination{margin:25px 0 0 0}.wpbdp-pagination .next{float:right}.listing-actions form{margin:0;padding:0;display:inline}.listing-actions input{margin:0}.listing-actions input.delete-listing{margin-left:5px;margin-right:30px;color:#f00 !important}.listing-actions a.button{padding:5px 10px;font-size:11px;text-decoration:none;background-color:#e6e6e6;color:#7c7c7c;background-repeat:repeat-x;background-image:-moz-linear-gradient(top,#f4f4f4,#e6e6e6);background-image:-ms-linear-gradient(top,#f4f4f4,#e6e6e6);background-image:-webkit-linear-gradient(top,#f4f4f4,#e6e6e6);background-image:-o-linear-gradient(top,#f4f4f4,#e6e6e6);background-image:linear-gradient(top,#f4f4f4,#e6e6e6);border:1px solid #d2d2d2;border-radius:3px;box-shadow:0 1px 2px rgba(64,64,64,0.1);margin-right:3px}.listing-actions a.button:hover{color:#5e5e5e;background-color:#ebebeb;background-repeat:repeat-x;background-image:-moz-linear-gradient(top,#f9f9f9,#ebebeb);background-image:-ms-linear-gradient(top,#f9f9f9,#ebebeb);background-image:-webkit-linear-gradient(top,#f9f9f9,#ebebeb);background-image:-o-linear-gradient(top,#f9f9f9,#ebebeb);background-image:linear-gradient(top,#f9f9f9,#ebebeb)}.listing-actions a.delete-listing{margin-left:20px;color:red}.wpbdp-listing .listing-details .field-value{margin-bottom:10px;width:100%;float:none}.wpbdmsingledetails .singledetailsview .field-value{margin-bottom:10px}.field-value label{color:#444;font-weight:bold}.wpbdp-listing-excerpt{padding:10px;border-bottom:dotted 1px #ddd}.wpbdp-listing-excerpt.odd{background:#eee}.wpbdp-listing-excerpt.sticky{background:#fff0cf;border-bottom:solid 1px #b37800}.wpbdp-listing-excerpt .listing-thumbnail{float:right;margin:0 10px 0 0}.wpbdp-listing-excerpt .listing-actions{margin-top:15px}.wpbdp-listing-single .listing-actions{margin-bottom:25px}.wpbdp-listing-single .stickytag{float:right;margin-top:-68px}.wpbdp-listing-single .stickytag img{border:0;box-shadow:none;background:transparent}.wpbdp-listing-single .listing-title{padding:2px 8px;background:#efefef;border:dotted 1px #ddd;margin-bottom:7px}.wpbdp-listing-single .listing-title h2{clear:none;margin:0}.wpbdp-listing-single .main-image{float:right;margin-left:10px;padding:5px}.wpbdp-listing-single .main-image a{position:relative !important}.wpbdp-listing-single .main-image img{border:solid 1px #333}.wpbdp-listing-single .extra-images{margin-top:10px;clear:both}.wpbdp-listing-single .extra-images ul{margin:0 auto;width:100%}.wpbdp-listing-single .extra-images ul li{list-style-type:none;display:inline;margin-left:5px}.wpbdp-listing-single .extra-images ul li img{display:inline;vertical-align:top;margin:0 auto;max-width:150px;border:solid 1px #333}.wpbdp-listing .social-fields{margin:20px 0}.wpbdp-listing .social-field{margin:5px 0;height:30px;vertical-align:middle}.social-field.facebook .fb-like>span{overflow:visible !important;width:450px !important;margin-right:-375px}.wpbdp-listing .contact-form{margin-top:20px;border-top:dotted 1px #ddd;padding-top:20px;padding-left:10px}.wpbdp-listing .contact-form .send-message-button{margin-left:-10px}.wpbdp-listing .contact-form h3{margin-left:-10px}.wpbdp-listing .contact-form textarea{width:98% !important}.wpbdp-listing .comments{margin-top:20px}.wpbdp-bar{background:#f7f7f7;margin:10px 0 20px 0;padding:5px 10px}.wpbdp-bar .wpbdp-main-links{float:left}.wpbdp-bar .wpbdp-search-form{margin:0;padding:0 !important;margin-left:50%}.wpbdp-main-links a{margin-right:15px}.wpbdp-bar .left{float:left;text-align:center}.wpbdp-bar .right{width:300px;float:right}.wpbdp-listings-sort-options{font-size:90%;margin:5px 0;text-align:right}.wpbdp-listings-sort-options .current{font-weight:bold}.wpbdp-main-page #wpbdp-categories{clear:both;margin-bottom:20px}ul.wpbdp-categories{margin:0 0 10px 15px;padding:0 10px}ul.wpbdp-categories>li{width:50%;float:left;margin:0}@media screen and (max-width:704px){ul.wpbdp-categories>li{float:none;width:initial}}@media screen and (max-width:500px){ul.wpbdp-categories{font-size:90%}ul.wpbdp-categories ul.children li.cat-item{margin-left:10px;padding:0}}.wpbdp-submit-page h3{margin-bottom:10px}.wpbdp-submit-page .wpbdmp{margin:0}.wpbdp-submit-page legend{font-size:85%;margin-bottom:20px}.wpbdp-submit-page .wpbdp-form-field{margin-bottom:8px}.wpbdp-submit-page .wpbdp-form-field .wpbdmcheckboxclass checkbox{margin-left:0}.wpbdp-submit-page .wpbdp-form-field.required .wpbdp-form-field-label:after{content:' *';font-size:80%}.wpbdp-form-field .field-description{font-size:90%;color:#696969;float:right}.wpbdp-form-field span.sublabel{font-size:90%;margin-left:10px;margin-right:10px}.wpbdp-form-field.image a.delete{margin-left:10px}ul.validation-errors{margin:15px 0 15px 0}ul.validation-errors li{color:red;margin:3px 0;list-style-position:inside}.wpbdp-submit-page.step-fees h4{background:#ddd;color:#333;padding:10px;margin-bottom:5px}.wpbdp-submit-page.step-images #image-upload-form{margin:15px 10px}.wpbdp-submit-page.step-images .wpbdp-image{float:left;border-bottom:dotted 1px #efefef;margin-right:10px;margin-bottom:10px;vertical-align:top}.wpbdp-submit-page.step-images .wpbdp-image img{vertical-align:top;text-align:center;max-width:150px;height:auto}.wpbdp-submit-page.step-images .area-and-conditions #image-upload-dnd-area{float:left;width:72%}.wpbdp-submit-page.step-images .area-and-conditions #image-upload-conditions{float:right;width:25%;color:#666}.wpbdp-submit-page.step-images .area-and-conditions #image-upload-conditions dl{margin:0}.wpbdp-submit-page.step-images #image-upload-form-no-js{width:0;height:0;overflow:hidden;visibility:hidden}.wpbdp-submit-page.step-images .wpbdp-image .delete-image{color:red}.wpbdp-submit-page .upgrade-to-featured-option{border:solid 1px #666;padding:5px 10px;margin:25px 0 25px 0;font-size:90%}.wpbdp-msg{font-size:85%;padding:.6em;border:solid 1px #e6db55;color:#555;margin:5px 0;background:#fffbcc;border-radius:3px}.wpbdp-msg.error{background-color:#ffebe8;border-color:#C00}.wpbdp-submit-page table.fee-options{width:100%}.wpbdp-submit-page table.fee-options th,.wpbdp-submit-page table.fee-options td{text-align:center}.wpbdp-submit-page table.fee-options .fee-selection{width:5%}.wpbdp-submit-page table.fee-options tr.fee-option td.fee-label{font-weight:bold}.wpbdp-submit-page table.fee-options td.fee-description{font-size:90%;color:#666}#wpbdp-renewal-page .do-not-renew-listing{margin:40px 0;border:solid 1px #eee;font-size:95%}#wpbdp-renewal-page .do-not-renew-listing .header{background:#bc0b0b;color:#fff;text-align:center;font-weight:bold;padding:2px 0}#wpbdp-renewal-page .do-not-renew-listing input[type="submit"]{color:#900000}.wpbdp-recaptcha-error{color:red}#wpbdp-delete-listing-page form.confirm-form{margin-top:30px}#wpbdp-delete-listing-page input.delete-listing-confirm{margin-left:20px;color:#c00}#googlewallet-buy img{border:0;box-shadow:none}table#wpbdp-manage-recurring th.listing-title,table#wpbdp-manage-recurring td.listing-title{min-width:200px}table#wpbdp-manage-recurring a.cancel-subscription{color:red}#wpbdp-manage-recurring-cancel dl dd{margin-left:10px}.wpbdp-cc-form{padding:0;width:90%}.wpbdp-cc-form h4{margin:0}.wpbdp-cc-field input{width:auto}.wpbdp-cc-field label{display:block;font-weight:bold;text-align:right;padding-right:10px}#wpbdp-billing-information .billing-info-section h4{margin-bottom:5px}#wpbdp-billing-information .billing-info-section table{margin:10px 0 0 20px}#wpbdp-billing-information .form-buttons{margin:15px 0}.wpbdp-show-on-mobile{display:none}@media screen and (max-width:500px){.wpbdp-show-on-mobile{display:inline !important}.wpbdp-hide-on-mobile{display:none}.wpbdp-bar .wpbdp-main-links{display:block}.wpbdp-bar .wpbdp-main-links input[type="button"]{display:block;margin-bottom:2px}.wpbdp-bar form.wpbdp-search-form{width:49%;display:block}.wpbdp-bar form.wpbdp-search-form input[type="text"]{padding:4px 0;margin:0 0 2px 0}.wpbdp-listings-sort-options{font-size:90%}.wpbdp-listing.wpbdp-listing{font-size:90%}.wpbdp-listing.wpbdp-listing-excerpt .field-value>label{display:block}.wpbdp-listing.wpbdp-listing-excerpt .listing-thumbnail{padding:5px}.wpbdp-listing .listing-actions input{font-size:85%}.wpbdp-listing .listing-actions input.back-to-dir{float:right}.wpbdp-listing.wpbdp-listing-single .main-image{display:block;float:none;padding:0;margin:0 0 10px 0;text-align:center;max-width:90%}.wpbdp-listing.wpbdp-listing-single .field-value>label{display:block}.wpbdp-submit-page.step-images #image-upload-dnd-area{font-size:90%;float:none !important;width:100% !important}.wpbdp-submit-page.step-images .dnd-area-inside-error{margin-top:30px}.wpbdp-submit-page.step-images #image-upload-conditions{width:100% !important;float:none !important;font-size:90%}.wpbdp-submit-page.step-images #image-upload-conditions dl{margin:0;padding:0}.wpbdp-submit-page.step-images #image-upload-conditions dl dt{margin:0;margin-right:5px;padding:0;float:left}.wpbdp-submit-page.step-images #image-upload-conditions dl dd{margin:0;padding:0;display:block}.wpbdp-submit-page.step-images .wpbdp-image img{max-width:50%}.wpbdp-listings-sort-options.wpbdp-show-on-mobile{margin-bottom:10px}}body.business-directory #TB_ImageOff .screen-reader-text,body.business-directory #TB_closeWindowButton .screen-reader-text{visibility:hidden}body.business-directory #TB_next{float:right}body.business-directory #TB_prev{float:left}body.business-directory #TB_caption{float:none !important}body.business-directory #TB_closeWindow{padding:0;height:0}body.business-directory #TB_closeWindow .screen-reader-text{display:none}body.business-directory #TB_secondLine{text-align:center}
core/gateways-authorize-net.php CHANGED
@@ -78,44 +78,12 @@ class WPBDP_Authorize_Net_Gateway extends WPBDP_Payment_Gateway {
78
  }
79
 
80
  $data = $payment->get_data( 'billing-information' );
81
- $aim = new AuthorizeNetAIM( wpbdp_get_option( 'authorize-net-login-id' ),
82
- wpbdp_get_option( 'authorize-net-transaction-key' ) );
83
-
84
- if ( wpbdp_get_option( 'payments-test-mode' ) )
85
- $aim->setSandbox( true );
86
- else
87
- $aim->setSandbox( false );
88
-
89
- // Order info.
90
- $aim->setFields( array(
91
- 'amount' => $payment->get_total(),
92
- 'description' => $payment->get_short_description(),
93
- 'invoice_num' => $payment->get_id()
94
- ) );
95
-
96
- // Card info.
97
- $aim->setFields(array(
98
- 'card_num' => $data['cc_number'],
99
- 'exp_date' => $data['cc_exp_month'] . substr( $data['cc_exp_year'], 0, 2 ),
100
- 'card_code' => $data['cc_cvc']
101
- ));
102
-
103
- // Billing addres info.
104
- $aim->setFields(array(
105
- 'first_name' => $data['first_name'],
106
- 'last_name' => $data['last_name'],
107
- 'address' => $data['address_line1'],
108
- 'city' => $data['address_city'],
109
- 'state' => $data['address_state'],
110
- 'country' => $data['address_country'],
111
- 'zip' => $data['zipcode']
112
- ));
113
- // TODO: maybe add zip, phone, email and cust_id
114
-
115
- $aim->setCustomField( 'payment_id', $payment->get_id() );
116
- $aim->setCustomField( 'listing_id', $payment->get_listing_id() );
117
 
118
- $response = $aim->authorizeAndCapture();
 
 
 
 
119
 
120
  if ( $response->approved ) {
121
  $payment->set_status( WPBDP_Payment::STATUS_COMPLETED, WPBDP_Payment::HANDLER_GATEWAY );
@@ -141,6 +109,26 @@ class WPBDP_Authorize_Net_Gateway extends WPBDP_Payment_Gateway {
141
  private function process_recurring( &$payment ) {
142
  $data = $payment->get_data( 'billing-information' );
143
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
144
  $arb = new AuthorizeNetARB( wpbdp_get_option( 'authorize-net-login-id' ),
145
  wpbdp_get_option( 'authorize-net-transaction-key' ) );
146
 
@@ -149,16 +137,19 @@ class WPBDP_Authorize_Net_Gateway extends WPBDP_Payment_Gateway {
149
  else
150
  $arb->setSandbox( false );
151
 
152
- $recurring_item = $payment->get_recurring_item();
153
- //wpbdp_debug_e( $recurring_item );
154
 
155
  $s = new AuthorizeNet_Subscription();
156
- $s->intervalLength = $recurring_item->data['fee_days'];
157
  $s->intervalUnit = 'days';
158
  $s->totalOccurrences = '9999';
159
  $s->startDate = date( 'Y-m-d',
160
  strtotime( '+1 day', current_time( 'timestamp' ) ) );
161
- $s->amount = $recurring_item->amount;
 
 
 
 
 
162
 
163
  $s->creditCardCardNumber = $data['cc_number'];
164
  $s->creditCardExpirationDate = $data['cc_exp_year'] . '-' . $data['cc_exp_month'];
@@ -227,5 +218,46 @@ class WPBDP_Authorize_Net_Gateway extends WPBDP_Payment_Gateway {
227
  }
228
  }
229
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
230
  }
231
 
78
  }
79
 
80
  $data = $payment->get_data( 'billing-information' );
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
81
 
82
+ $response = $this->doAIM( $payment->get_total(),
83
+ $payment->get_short_description(),
84
+ $payment->get_id(),
85
+ $payment->get_listing_id(),
86
+ $data );
87
 
88
  if ( $response->approved ) {
89
  $payment->set_status( WPBDP_Payment::STATUS_COMPLETED, WPBDP_Payment::HANDLER_GATEWAY );
109
  private function process_recurring( &$payment ) {
110
  $data = $payment->get_data( 'billing-information' );
111
 
112
+ $summary = $payment->summarize();
113
+
114
+ if ( $summary['balance'] > 0.0 ) {
115
+ $res1 = $this->doAIM( $summary['balance'],
116
+ _x( 'Setup fee' ,'authorize-net', 'WPBDM' ),
117
+ $payment->get_id(),
118
+ $payment->get_listing_id(),
119
+ $data );
120
+
121
+ if ( ! $res1->approved ) {
122
+ $payment->add_error( sprintf( _x( 'Payment was rejected. The following reason was given: "%s".', 'authorize-net', 'WPBDM' ),
123
+ '(' . $res1->response_reason_code . ') ' . rtrim( $res1->response_reason_text, '.' ) ) );
124
+ $payment->set_status( WPBDP_Payment::STATUS_REJECTED, WPBDP_Payment::HANDLER_GATEWAY );
125
+ $payment->save();
126
+
127
+ wp_redirect( esc_url_raw( $payment->get_redirect_url() ) );
128
+ die();
129
+ }
130
+ }
131
+
132
  $arb = new AuthorizeNetARB( wpbdp_get_option( 'authorize-net-login-id' ),
133
  wpbdp_get_option( 'authorize-net-transaction-key' ) );
134
 
137
  else
138
  $arb->setSandbox( false );
139
 
 
 
140
 
141
  $s = new AuthorizeNet_Subscription();
142
+ $s->intervalLength = $summary['recurring_days'];
143
  $s->intervalUnit = 'days';
144
  $s->totalOccurrences = '9999';
145
  $s->startDate = date( 'Y-m-d',
146
  strtotime( '+1 day', current_time( 'timestamp' ) ) );
147
+ $s->amount = $summary['recurring_amount'];
148
+
149
+ if ( $summary['trial'] ) {
150
+ $s->trialOccurrences = '1';
151
+ $s->trialAmount = $summary['trial_amount'];
152
+ }
153
 
154
  $s->creditCardCardNumber = $data['cc_number'];
155
  $s->creditCardExpirationDate = $data['cc_exp_year'] . '-' . $data['cc_exp_month'];
218
  }
219
  }
220
 
221
+ private function doAIM( $amount, $desc, $invoice, $listing_id, $data ) {
222
+ $aim = new AuthorizeNetAIM( wpbdp_get_option( 'authorize-net-login-id' ),
223
+ wpbdp_get_option( 'authorize-net-transaction-key' ) );
224
+
225
+ if ( wpbdp_get_option( 'payments-test-mode' ) )
226
+ $aim->setSandbox( true );
227
+ else
228
+ $aim->setSandbox( false );
229
+
230
+ // Order info.
231
+ $aim->setFields( array( 'amount' => $amount,
232
+ 'description' => $desc,
233
+ 'invoice_num' => $invoice ) );
234
+
235
+ // Card info.
236
+ $aim->setFields(array(
237
+ 'card_num' => $data['cc_number'],
238
+ 'exp_date' => $data['cc_exp_month'] . substr( $data['cc_exp_year'], 0, 2 ),
239
+ 'card_code' => $data['cc_cvc']
240
+ ));
241
+
242
+ // Billing addres info.
243
+ $aim->setFields(array(
244
+ 'first_name' => $data['first_name'],
245
+ 'last_name' => $data['last_name'],
246
+ 'address' => $data['address_line1'],
247
+ 'city' => $data['address_city'],
248
+ 'state' => $data['address_state'],
249
+ 'country' => $data['address_country'],
250
+ 'zip' => $data['zipcode']
251
+ ));
252
+ // TODO: maybe add zip, phone, email and cust_id
253
+
254
+ $aim->setCustomField( 'payment_id', $invoice );
255
+ $aim->setCustomField( 'listing_id', $listing_id );
256
+
257
+ $response = $aim->authorizeAndCapture();
258
+
259
+ return $response;
260
+ }
261
+
262
  }
263
 
core/helpers/class-fs.php CHANGED
@@ -112,7 +112,7 @@ final class WPBDP_FS {
112
  sprintf( _x( 'Destination dir "%s" is not writable.', 'fs helper', 'WPBDM' ), $destdir ) );
113
  }
114
 
115
- $normalized = basename( strtolower( $zipfile ), '.zip' );
116
  $destdir = untrailingslashit( $destdir );
117
 
118
  $zip = new PclZip( $zipfile );
112
  sprintf( _x( 'Destination dir "%s" is not writable.', 'fs helper', 'WPBDM' ), $destdir ) );
113
  }
114
 
115
+ $normalized = basename( basename( strtolower( $zipfile ), '.zip' ), '.tmp' );
116
  $destdir = untrailingslashit( $destdir );
117
 
118
  $zip = new PclZip( $zipfile );
core/{class-listing-display-helper.php → helpers/class-listing-display-helper.php} RENAMED
@@ -92,9 +92,15 @@ class WPBDP_Listing_Display_Helper {
92
 
93
  // Main image.
94
  $thumbnail_id = $listing->get_thumbnail_id();
 
 
 
95
  $main_image = new StdClass();
96
  $main_image->id = $thumbnail_id;
97
  $main_image->html = wpbdp_listing_thumbnail( null, 'link=picture&class=wpbdp-single-thumbnail' );
 
 
 
98
 
99
  $vars['images']->main = $main_image;
100
 
92
 
93
  // Main image.
94
  $thumbnail_id = $listing->get_thumbnail_id();
95
+ $data_main = wp_get_attachment_image_src( $thumbnail_id, 'wpbdp-large', false );
96
+
97
+
98
  $main_image = new StdClass();
99
  $main_image->id = $thumbnail_id;
100
  $main_image->html = wpbdp_listing_thumbnail( null, 'link=picture&class=wpbdp-single-thumbnail' );
101
+ $main_image->url = $data_main[0];
102
+ $main_image->width = $data_main[1];
103
+ $main_image->height = $data_main[2];
104
 
105
  $vars['images']->main = $main_image;
106
 
core/helpers/class-themes-updater.php ADDED
@@ -0,0 +1,218 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <?php
2
+ delete_transient( 'wpbdp-themes-updates' );
3
+
4
+ class WPBDP_Themes_Updater {
5
+
6
+ private $themes_api;
7
+
8
+
9
+ public function __construct( &$themes_api ) {
10
+ $this->themes_api = $themes_api;
11
+ $this->data = get_transient( 'wpbdp-themes-updates' );
12
+
13
+ if ( ! $this->data )
14
+ $this->check_for_updates();
15
+
16
+ add_action( 'wp_ajax_wpbdp-themes-update', array( &$this, '_update_theme' ) );
17
+ add_action( 'wpbdp-admin-themes-item-css', array( &$this, '_add_update_css' ) );
18
+ add_action( 'wpbdp-admin-themes-extra', array( &$this, '_show_update_info' ) );
19
+ }
20
+
21
+ public function get_updates_count() {
22
+ if ( ! $this->data )
23
+ return 0;
24
+
25
+ $count = 0;
26
+
27
+ foreach ( array_keys( $this->data ) as $theme_id ) {
28
+ if ( $this->get_update_info( $theme_id ) )
29
+ $count++;
30
+ }
31
+
32
+ return $count;
33
+ }
34
+
35
+ private function check_for_updates() {
36
+ $data = get_transient( 'wpbdp-themes-updates' );
37
+ if ( ! is_array( $data ) )
38
+ $data = array();
39
+
40
+ $themes = $this->themes_api->get_installed_themes();
41
+ $res = array();
42
+
43
+ foreach ( $themes as $theme_id => $details ) {
44
+ if ( $details->is_core_theme )
45
+ continue;
46
+
47
+ if ( 'valid' != $details->license_status )
48
+ continue;
49
+
50
+ $id = $details->id;
51
+ $name = ! empty( $details->edd_name ) ? $details->edd_name : $details->name;
52
+ $version = $details->version;
53
+
54
+ if ( ! $name )
55
+ continue;
56
+
57
+ $res = $this->get_latest_version( $details );
58
+
59
+ if ( ! $res )
60
+ continue;
61
+
62
+ $data[ $theme_id ] = array( 'latest' => $res[0],
63
+ 'changelog' => $res[1],
64
+ 'url' => $res[2],
65
+ 'checked' => time() );
66
+ }
67
+
68
+ set_transient( 'wpbdp-themes-updates', $data, 60 * 60 * 24 * 7 ); // Make this available a full week.
69
+ $this->data = $data;
70
+ }
71
+
72
+ private function get_latest_version( $theme ) {
73
+ $request = array(
74
+ 'edd_action' => 'get_version',
75
+ 'item_name' => urlencode( ! empty( $theme->edd_name ) ? $theme->edd_name : $theme->name ),
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;
83
+
84
+ $data = json_decode( wp_remote_retrieve_body( $response ) );
85
+ if ( ! isset( $data->new_version ) )
86
+ return false;
87
+
88
+ $new_version = $data->new_version;
89
+ $url = $data->package;
90
+
91
+ $sections = isset( $data->sections ) ? unserialize( $data->sections ) : false;
92
+ if ( $sections && isset( $sections['changelog'] ) )
93
+ $changelog = $sections['changelog'];
94
+ else
95
+ $changelog = '';
96
+
97
+ return array( $new_version, $changelog, $url );
98
+ }
99
+
100
+ public function get_update_info( $theme_id ) {
101
+ if ( ! isset( $this->data[ $theme_id ] ) )
102
+ return false;
103
+
104
+ $theme = $this->themes_api->get_theme( $theme_id );
105
+
106
+ if ( version_compare( $theme->version, $this->data[ $theme_id ]['latest'], '>=' ) )
107
+ return false;
108
+
109
+ return $this->data[ $theme_id ];
110
+ }
111
+
112
+ public function _add_update_css( $theme ) {
113
+ if ( ! $this->get_update_info( $theme->id ) )
114
+ return;
115
+
116
+ echo ' update-available ';
117
+ }
118
+
119
+ public function _show_update_info( $theme ) {
120
+ $update_info = $this->get_update_info( $theme->id );
121
+
122
+ if ( ! $update_info )
123
+ return;
124
+
125
+ printf( '<div class="wpbdp-theme-update-info update-available" data-l10n-updating="%s" data-l10n-updated="%s">',
126
+ _x( 'Updating theme...', 'themes', 'WPBDM' ),
127
+ _x( 'Theme updated.', 'themes', 'WPBDM' ) );
128
+ echo '<div class="update-message">';
129
+ $msg = _x( 'New version available (<b>%s</b>). <a>Update now.</a>', 'themes', 'WPBDM' );
130
+ $msg = sprintf( $msg, $update_info['latest'] );
131
+ $msg = str_replace( '<a>', '<a href="#" data-theme-id="' . $theme->id . '" data-nonce="' . wp_create_nonce( 'update theme ' . $theme->id ) . '" class="update-link">', $msg );
132
+ echo $msg;
133
+ echo '</div>';
134
+
135
+ echo '</div>';
136
+ }
137
+
138
+ // Theme update process. {{
139
+
140
+ public function _update_theme() {
141
+ if ( ! current_user_can( 'administrator' ) || ! wp_verify_nonce( $_REQUEST['_wpnonce'], 'update theme ' . $_REQUEST['theme'] ) )
142
+ die();
143
+
144
+ $response = new WPBDP_Ajax_Response();
145
+
146
+ $theme_id = $_REQUEST['theme'];
147
+ $theme = $this->themes_api->get_theme( $theme_id );
148
+
149
+ if ( ! $theme )
150
+ $response->send_error( 'Invalid theme ID.' );
151
+
152
+ if ( ! $this->get_update_info( $theme_id ) )
153
+ $response->send_error( 'Theme is already up to date.' );
154
+
155
+ $result = $this->run_update( $theme_id );
156
+ if ( is_wp_error( $result ) )
157
+ $response->send_error( sprintf( _x( 'Could not update theme: %s', 'themes', 'WPBDM' ), $result->get_error_message() ) );
158
+
159
+ $this->themes_api->find_themes( true );
160
+
161
+ $response->add( 'html', wpbdp_render_page( WPBDP_PATH . 'admin/templates/themes-item.tpl.php',
162
+ array( 'theme' => $this->themes_api->get_theme( $theme_id ) ) ) );
163
+ $response->set_message( _x( 'Theme was updated sucessfully.', 'themes', 'WPBDM' ) );
164
+ $response->send();
165
+ }
166
+
167
+ private function run_update( $theme_id ) {
168
+ $theme = $this->themes_api->get_theme( $theme_id );
169
+ $update_info = $this->get_update_info( $theme_id );
170
+
171
+ // Download package.
172
+ $url = $update_info['url'];
173
+
174
+ if ( ! $url )
175
+ return new WP_Error( 'invalid_package_url', 'No package URL provided.' );
176
+
177
+ $download_file = download_url( $url );
178
+ if ( is_wp_error( $download_file ) )
179
+ return new WP_Error( 'download_failed', 'Could not download theme package.', $download_file->get_error_message() );
180
+
181
+ // Unpack package.
182
+ $upgrade_folder = $this->themes_api->get_themes_dir() . 'upgrade/';
183
+ if ( ! is_dir( $upgrade_folder ) ) {
184
+ if ( ! WPBDP_FS::mkdir( $upgrade_folder ) )
185
+ return new WP_Error( 'no_upgrade_folder', sprintf( 'Could not create temporary upgrade folder: %s.', $upgrade_folder ) );
186
+ }
187
+
188
+ $working_dir = $upgrade_folder . basename( basename( $download_file, '.tmp' ), '.zip' );
189
+ if ( is_dir( $working_dir) && ! WPBDP_FS::rmdir( $working_dir ) )
190
+ return new WP_Error( 'no_upgrade_folder', sprintf( 'Temporary upgrade folder already exists: %s.', $working_dir ) );
191
+
192
+ if ( ! WPBDP_FS::mkdir( $working_dir ) )
193
+ return new WP_Error( 'no_upgrade_folder', sprintf( 'Could not create upgrade folder: %s.', $working_dir ) );
194
+
195
+ $result = WPBDP_FS::unzip( $download_file, $working_dir );
196
+ if ( is_wp_error( $result ) )
197
+ return new WP_Error( 'unpackaging_failed', 'Could not unpackage theme file.' );
198
+
199
+ $contents_folder = $result[0];
200
+ $orig_theme_folder = $this->themes_api->get_themes_dir() . $theme->id;
201
+ $theme_folder = $contents_folder . $theme->id;
202
+ if ( ! is_dir( $theme_folder ) || ! file_exists( trailingslashit( $theme_folder ) . 'theme.json' ) )
203
+ return new WP_Error( 'no_valid_theme', 'Package is not a valid theme file.' );
204
+
205
+ if ( ! WPBDP_FS::rmdir( $orig_theme_folder ) )
206
+ return new WP_Error( 'dest_not_writable', 'Could not cleanup destination directory.' );
207
+
208
+ if ( ! WPBDP_FS::movedir( $theme_folder, $this->themes_api->get_themes_dir() ) )
209
+ return new WP_Error( 'theme_not_moved', 'Could not move theme to destination directory.' );
210
+
211
+ WPBDP_FS::rmdir( $working_dir );
212
+ WPBDP_FS::rmdir( $upgrade_folder );
213
+
214
+ return true;
215
+ }
216
+
217
+ // }}
218
+ }
core/installer.php CHANGED
@@ -2,7 +2,7 @@
2
 
3
  class WPBDP_Installer {
4
 
5
- const DB_VERSION = '7';
6
 
7
  private $installed_version = null;
8
 
@@ -80,7 +80,8 @@ class WPBDP_Installer {
80
  images smallint unsigned NOT NULL DEFAULT 0,
81
  categories blob NOT NULL,
82
  extra_data blob NULL,
83
- weight int(5) NOT NULL DEFAULT 0
 
84
  ) DEFAULT CHARSET=utf8 COLLATE=utf8_general_ci;";
85
 
86
  $schema['payments'] = "CREATE TABLE {$wpdb->prefix}wpbdp_payments (
@@ -121,7 +122,8 @@ class WPBDP_Installer {
121
  email_sent tinyint(1) NOT NULL DEFAULT 0,
122
  recurring tinyint(1) NOT NULL DEFAULT 0,
123
  recurring_id varchar(255) NULL,
124
- recurring_data blob NULL
 
125
  ) DEFAULT CHARSET=utf8 COLLATE=utf8_general_ci;";
126
 
127
  $schema['submit_state'] = "CREATE TABLE {$wpdb->prefix}wpbdp_submit_state (
@@ -150,7 +152,7 @@ class WPBDP_Installer {
150
  if ( get_option( 'wpbdp-manual-upgrade-pending', false ) )
151
  return;
152
 
153
- $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' );
154
 
155
  foreach ( $upgrade_routines as $v ) {
156
  if ( version_compare( $this->installed_version, $v ) < 0 ) {
@@ -866,6 +868,12 @@ class WPBDP_Installer {
866
  }
867
  }
868
 
 
 
 
 
 
 
869
  }
870
 
871
 
2
 
3
  class WPBDP_Installer {
4
 
5
+ const DB_VERSION = '8';
6
 
7
  private $installed_version = null;
8
 
80
  images smallint unsigned NOT NULL DEFAULT 0,
81
  categories blob NOT NULL,
82
  extra_data blob NULL,
83
+ weight int(5) NOT NULL DEFAULT 0,
84
+ sticky tinyint(1) NOT NULL DEFAULT 0
85
  ) DEFAULT CHARSET=utf8 COLLATE=utf8_general_ci;";
86
 
87
  $schema['payments'] = "CREATE TABLE {$wpdb->prefix}wpbdp_payments (
122
  email_sent tinyint(1) NOT NULL DEFAULT 0,
123
  recurring tinyint(1) NOT NULL DEFAULT 0,
124
  recurring_id varchar(255) NULL,
125
+ recurring_data blob NULL,
126
+ sticky tinyint(1) NOT NULL DEFAULT 0
127
  ) DEFAULT CHARSET=utf8 COLLATE=utf8_general_ci;";
128
 
129
  $schema['submit_state'] = "CREATE TABLE {$wpdb->prefix}wpbdp_submit_state (
152
  if ( get_option( 'wpbdp-manual-upgrade-pending', false ) )
153
  return;
154
 
155
+ $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' );
156
 
157
  foreach ( $upgrade_routines as $v ) {
158
  if ( version_compare( $this->installed_version, $v ) < 0 ) {
868
  }
869
  }
870
 
871
+ public function upgrade_to_8() {
872
+ if ( get_option( WPBDP_Settings::PREFIX . 'show-search-form-in-results', false ) )
873
+ update_option( WPBDP_Settings::PREFIX . 'search-form-in-results', 'above' );
874
+ delete_option( WPBDP_Settings::PREFIX . 'show-search-form-in-results' );
875
+ }
876
+
877
  }
878
 
879
 
core/payment.php CHANGED
@@ -117,15 +117,24 @@ class WPBDP_FeesAPI {
117
  public function get_fee_by_id($id) {
118
  global $wpdb;
119
 
120
- if ($id == 0)
 
 
121
  return $this->get_free_fee();
122
 
123
- if ($fee = $wpdb->get_row($wpdb->prepare("SELECT * FROM {$wpdb->prefix}wpbdp_fees WHERE id = %d", $id))) {
124
- $this->normalize($fee);
125
- return $fee;
 
 
 
 
 
 
 
126
  }
127
 
128
- return null;
129
  }
130
 
131
  public function is_valid_fee($fee=array(), &$errors=null) {
@@ -184,6 +193,11 @@ class WPBDP_FeesAPI {
184
  if (!$fee['categories']['categories'])
185
  $fee['categories']['all'] = true;
186
 
 
 
 
 
 
187
  // TODO: delete unnecessary categories: if a parent of a category is in the list, remove the category
188
 
189
  if ($this->is_valid_fee($fee, $errors)) {
@@ -615,7 +629,7 @@ class WPBDP_PaymentsAPI {
615
  $html .= '<h4>' . _x( 'Payment Method', 'checkout', 'WPBDM' ) . '</h4>';
616
 
617
  $html .= '<select name="payment_method">';
618
- $html .= '<option value="">-- Select a payment method --</option>';
619
  foreach ( $payment_methods as $method_id ) {
620
  $html .= '<option value="' . $method_id . '">' . $this->gateways[ $method_id ]->get_name() . '</option>';
621
  }
117
  public function get_fee_by_id($id) {
118
  global $wpdb;
119
 
120
+ $id = absint( $id );
121
+
122
+ if ( 0 == $id )
123
  return $this->get_free_fee();
124
 
125
+ $fee = wp_cache_get( $id, 'wpbdp fees' );
126
+
127
+ if ( ! $fee ) {
128
+ $fee = $wpdb->get_row( $wpdb->prepare( "SELECT * FROM {$wpdb->prefix}wpbdp_fees WHERE id = %d", $id ) );
129
+
130
+ if ( ! $fee )
131
+ return null;
132
+
133
+ $this->normalize( $fee );
134
+ wp_cache_set( $id, $fee, 'wpbdp fees' );
135
  }
136
 
137
+ return $fee;
138
  }
139
 
140
  public function is_valid_fee($fee=array(), &$errors=null) {
193
  if (!$fee['categories']['categories'])
194
  $fee['categories']['all'] = true;
195
 
196
+ if ( isset( $fee['sticky'] ) && $fee['sticky'] )
197
+ $fee['sticky'] = 1;
198
+ else
199
+ $fee['sticky'] = 0;
200
+
201
  // TODO: delete unnecessary categories: if a parent of a category is in the list, remove the category
202
 
203
  if ($this->is_valid_fee($fee, $errors)) {
629
  $html .= '<h4>' . _x( 'Payment Method', 'checkout', 'WPBDM' ) . '</h4>';
630
 
631
  $html .= '<select name="payment_method">';
632
+ $html .= '<option value="none">-- Select a payment method --</option>';
633
  foreach ( $payment_methods as $method_id ) {
634
  $html .= '<option value="' . $method_id . '">' . $this->gateways[ $method_id ]->get_name() . '</option>';
635
  }
core/template-sections.php CHANGED
@@ -15,7 +15,7 @@ class _WPBDP_Template_Sections {
15
 
16
  $vars['#contact_form'] = array( 'callback' => array( &$this, 'listing_contact_form' ),
17
  'position' => 'after',
18
- 'weight' => 0 );
19
  return $vars;
20
  }
21
 
15
 
16
  $vars['#contact_form'] = array( 'callback' => array( &$this, 'listing_contact_form' ),
17
  'position' => 'after',
18
+ 'weight' => 10 );
19
  return $vars;
20
  }
21
 
core/templates-listings.php CHANGED
@@ -1,6 +1,6 @@
1
  <?php
2
  if ( wpbdp_experimental( 'themes' ) )
3
- require_once ( WPBDP_PATH . 'core/class-listing-display-helper.php' );
4
 
5
 
6
  /**
@@ -45,18 +45,14 @@ function wpbdp_render_listing($listing_id=null, $view='single', $echo=false) {
45
  function _wpbdp_render_single() {
46
  global $post;
47
 
48
- $html = '';
49
-
50
- $sticky_status = wpbdp_listings_api()->get_sticky_status($post->ID);
51
-
52
- $html .= sprintf( '<div id="wpbdp-listing-%d" class="wpbdp-listing wpbdp-listing-single %s %s %s" itemscope itemtype="http://schema.org/LocalBusiness">',
53
  $post->ID,
54
- 'single',
55
- $sticky_status,
56
- apply_filters( 'wpbdp_listing_view_css', '', $post->ID ) );
57
  $html .= apply_filters('wpbdp_listing_view_before', '', $post->ID, 'single');
58
  $html .= wpbdp_capture_action('wpbdp_before_single_view', $post->ID);
59
 
 
60
  $sticky_tag = '';
61
  if ($sticky_status == 'sticky')
62
  $sticky_tag = sprintf('<div class="stickytag"><img src="%s" alt="%s" border="0" title="%s"></div>',
@@ -136,20 +132,20 @@ function _wpbdp_render_excerpt() {
136
  global $post;
137
  static $counter = 0;
138
 
139
- $sticky_status = wpbdp_listings_api()->get_sticky_status($post->ID);
140
-
141
  $html = '';
142
- $html .= sprintf('<div id="wpbdp-listing-%d" class="wpbdp-listing excerpt wpbdp-listing-excerpt %s %s %s cf">',
143
  $post->ID,
144
- $sticky_status,
145
- ($counter & 1) ? 'odd': 'even',
146
- apply_filters( 'wpbdp_excerpt_view_css', '', $post->ID ) );
147
- $html .= wpbdp_capture_action('wpbdp_before_excerpt_view', $post->ID);
148
 
149
  $d = WPBDP_ListingFieldDisplayItem::prepare_set( $post->ID, 'excerpt' );
150
  $listing_fields = implode( '', WPBDP_ListingFieldDisplayItem::walk_set( 'html', $d->fields ) );
151
  $social_fields = implode( '', WPBDP_ListingFieldDisplayItem::walk_set( 'html', $d->social ) );
152
 
 
 
153
  $vars = array(
154
  'is_sticky' => $sticky_status == 'sticky',
155
  'thumbnail' => ( wpbdp_get_option( 'allow-images' ) && wpbdp_get_option( 'show-thumbnail' ) ) ? wpbdp_listing_thumbnail( null, 'link=listing&class=wpbdmthumbs wpbdp-excerpt-thumbnail' ) : '',
@@ -200,3 +196,49 @@ function wpbdp_latest_listings($n=10, $before='<ul>', $after='</ul>', $before_it
200
 
201
  return $html;
202
  }
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
  <?php
2
  if ( wpbdp_experimental( 'themes' ) )
3
+ require_once ( WPBDP_PATH . 'core/helpers/class-listing-display-helper.php' );
4
 
5
 
6
  /**
45
  function _wpbdp_render_single() {
46
  global $post;
47
 
48
+ $html = '';
49
+ $html .= sprintf( '<div id="wpbdp-listing-%d" class="%s" itemscope itemtype="http://schema.org/LocalBusiness">',
 
 
 
50
  $post->ID,
51
+ wpbdp_listing_css_class( array( 'single', 'wpbdp-listing-single' ) ) );
 
 
52
  $html .= apply_filters('wpbdp_listing_view_before', '', $post->ID, 'single');
53
  $html .= wpbdp_capture_action('wpbdp_before_single_view', $post->ID);
54
 
55
+ $sticky_status = wpbdp_listings_api()->get_sticky_status( $post->ID );
56
  $sticky_tag = '';
57
  if ($sticky_status == 'sticky')
58
  $sticky_tag = sprintf('<div class="stickytag"><img src="%s" alt="%s" border="0" title="%s"></div>',
132
  global $post;
133
  static $counter = 0;
134
 
 
 
135
  $html = '';
136
+ $html .= sprintf('<div id="wpbdp-listing-%d" class="%s">',
137
  $post->ID,
138
+ wpbdp_listing_css_class( array( ( $counter & 1 ) ? 'odd' : 'even',
139
+ 'excerpt',
140
+ 'wpbdp-listing-excerpt' ) ) );
141
+ $html .= wpbdp_capture_action( 'wpbdp_before_excerpt_view', $post->ID );
142
 
143
  $d = WPBDP_ListingFieldDisplayItem::prepare_set( $post->ID, 'excerpt' );
144
  $listing_fields = implode( '', WPBDP_ListingFieldDisplayItem::walk_set( 'html', $d->fields ) );
145
  $social_fields = implode( '', WPBDP_ListingFieldDisplayItem::walk_set( 'html', $d->social ) );
146
 
147
+ $sticky_status = wpbdp_listings_api()->get_sticky_status( $post->ID );
148
+
149
  $vars = array(
150
  'is_sticky' => $sticky_status == 'sticky',
151
  'thumbnail' => ( wpbdp_get_option( 'allow-images' ) && wpbdp_get_option( 'show-thumbnail' ) ) ? wpbdp_listing_thumbnail( null, 'link=listing&class=wpbdmthumbs wpbdp-excerpt-thumbnail' ) : '',
196
 
197
  return $html;
198
  }
199
+
200
+ /**
201
+ * @since next-release
202
+ */
203
+ function wpbdp_listing_css_class( $class_ = '', $post_id = null ) {
204
+ global $wpdb;
205
+ global $post;
206
+
207
+ if ( ! $post_id && $post )
208
+ $post_id = $post->ID;
209
+
210
+ if ( WPBDP_POST_TYPE != get_post_type( $post_id ) )
211
+ return '';
212
+
213
+ $css_classes = array();
214
+ $css_classes[] = 'wpbdp-listing';
215
+ $css_classes[] = 'wpbdp-listing-' . $post_id;
216
+ $css_classes[] = 'cf';
217
+
218
+ if ( is_string( $class_ ) )
219
+ $css_classes = array_merge( $css_classes, explode( ' ', $class_ ) );
220
+ elseif ( is_array( $class_ ) )
221
+ $css_classes = array_merge( $css_classes, $class_ );
222
+
223
+ // Sticky status.
224
+ $sticky = wpbdp_listings_api()->get_sticky_status( $post_id );
225
+ $css_classes[] = $sticky; // For backwards compat.
226
+ $css_classes[] = 'wpbdp-' . $sticky;
227
+ $css_classes[] = 'wpbdp-level-' . $sticky;
228
+
229
+ // Fees and categories.
230
+ $listing = WPBDP_Listing::get( $post_id );
231
+ foreach ( $listing->get_categories() as $c ) {
232
+ $css_classes[] = 'wpbdp-listing-category-' . $c->term_id;
233
+ $css_classes[] = 'wpbdp-listing-category-' . $c->slug;
234
+
235
+ $css_classes[] = 'wpbdp-listing-fee-' . $c->fee_id;
236
+
237
+ if ( isset( $c->fee ) && isset( $c->fee->label ) )
238
+ $css_classes[] = 'wpbdp-listing-fee-' . WPBDP_Utils::normalize( $c->fee->label );
239
+ }
240
+
241
+ $css_classes = apply_filters( 'wpbdp_listing_css_class', $css_classes, $post_id );
242
+
243
+ return implode( ' ', $css_classes );
244
+ }
core/templates-ui.php CHANGED
@@ -179,7 +179,7 @@ function wpbdp_main_links() {
179
  $html = '';
180
 
181
  if (wpbdp_get_option('show-submit-listing')) {
182
- $html .= sprintf('<input id="wpbdp-bar-submit-listing-button" type="button" value="%s" onclick="window.location.href = \'%s\'" class="button" />',
183
  __('Submit A Listing', 'WPBDM'),
184
  wpbdp_get_page_link('add-listing'));
185
  /* $html .= sprintf('<a href="%s">%s</a>',
@@ -188,7 +188,7 @@ function wpbdp_main_links() {
188
  }
189
 
190
  if (wpbdp_get_option('show-view-listings')) {
191
- $html .= sprintf('<input id="wpbdp-bar-view-listings-button" type="button" value="%s" onclick="window.location.href = \'%s\'" class="button" />',
192
  __('View Listings', 'WPBDM'),
193
  wpbdp_get_page_link('view-listings'));
194
  /* $html .= sprintf('<a href="%s">%s</a>',
@@ -198,7 +198,7 @@ function wpbdp_main_links() {
198
  }
199
 
200
  if (wpbdp_get_option('show-directory-button')) {
201
- $html .= sprintf( '<input id="wpbdp-bar-show-directory-button" type="button" value="%s" onclick="window.location.href = \'%s\'" class="button" />',
202
  __('Directory', 'WPBDM'),
203
  wpbdp_get_page_link('main') );
204
  /* $html .= sprintf('<a href="%s">%s</a>',
@@ -225,7 +225,7 @@ function wpbdp_search_form() {
225
  <input type="hidden" name="dosrch" value="1" />',
226
  wpbdp_get_page_id('main'));
227
  $html .= '<input id="intextbox" maxlength="150" name="q" size="20" type="text" value="" />';
228
- $html .= sprintf('<input id="wpbdmsearchsubmit" class="submit" type="submit" value="%s" />',
229
  _x('Search Listings', 'templates', 'WPBDM'));
230
  $html .= sprintf('<a href="%s" class="advanced-search-link">%s</a>',
231
  esc_url( add_query_arg('action', 'search', wpbdp_get_page_link('main')) ),
179
  $html = '';
180
 
181
  if (wpbdp_get_option('show-submit-listing')) {
182
+ $html .= sprintf('<input id="wpbdp-bar-submit-listing-button" type="button" value="%s" onclick="window.location.href = \'%s\'" class="button wpbdp-button" />',
183
  __('Submit A Listing', 'WPBDM'),
184
  wpbdp_get_page_link('add-listing'));
185
  /* $html .= sprintf('<a href="%s">%s</a>',
188
  }
189
 
190
  if (wpbdp_get_option('show-view-listings')) {
191
+ $html .= sprintf('<input id="wpbdp-bar-view-listings-button" type="button" value="%s" onclick="window.location.href = \'%s\'" class="button wpbdp-button" />',
192
  __('View Listings', 'WPBDM'),
193
  wpbdp_get_page_link('view-listings'));
194
  /* $html .= sprintf('<a href="%s">%s</a>',
198
  }
199
 
200
  if (wpbdp_get_option('show-directory-button')) {
201
+ $html .= sprintf( '<input id="wpbdp-bar-show-directory-button" type="button" value="%s" onclick="window.location.href = \'%s\'" class="button wpbdp-button" />',
202
  __('Directory', 'WPBDM'),
203
  wpbdp_get_page_link('main') );
204
  /* $html .= sprintf('<a href="%s">%s</a>',
225
  <input type="hidden" name="dosrch" value="1" />',
226
  wpbdp_get_page_id('main'));
227
  $html .= '<input id="intextbox" maxlength="150" name="q" size="20" type="text" value="" />';
228
+ $html .= sprintf('<input id="wpbdmsearchsubmit" class="submit wpbdp-button wpbdp-submit" type="submit" value="%s" />',
229
  _x('Search Listings', 'templates', 'WPBDM'));
230
  $html .= sprintf('<a href="%s" class="advanced-search-link">%s</a>',
231
  esc_url( add_query_arg('action', 'search', wpbdp_get_page_link('main')) ),
core/themes.php CHANGED
@@ -12,10 +12,7 @@ class WPBDP_Themes {
12
 
13
 
14
  function __construct() {
15
- if ( is_admin() ) {
16
- require_once( WPBDP_PATH . 'admin/class-themes-admin.php' );
17
- $this->admin = new WPBDP_Themes_Admin( $this );
18
- }
19
 
20
  // Theme template dir is priority 1.
21
  $theme = $this->get_active_theme_data();
@@ -24,13 +21,20 @@ class WPBDP_Themes {
24
  // Core templates are last priority.
25
  $this->template_dirs[] = trailingslashit( WPBDP_PATH . 'core/templates' );
26
 
 
 
 
27
  // Load special theme .php file.
28
  $this->call_theme_function( '' );
29
  $this->call_theme_function( 'init' );
30
 
31
- add_action( 'wp_enqueue_scripts', array( &$this, 'enqueue_theme_scripts' ), 20 );
32
  add_filter( 'wpbdp_form_field_display', array( &$this, 'field_theme_override' ), 999, 4 );
33
 
 
 
 
 
34
  }
35
 
36
  function call_theme_function( $fname, $args = array() ) {
@@ -56,6 +60,11 @@ class WPBDP_Themes {
56
  $theme->url . 'assets/' . $c );
57
  }
58
 
 
 
 
 
 
59
  foreach ( $js as $j ) {
60
  wp_enqueue_script( $theme->id . '-' . $this->_normalize_asset_name( $j ),
61
  $theme->url . 'assets/' . $j );
@@ -94,6 +103,10 @@ class WPBDP_Themes {
94
  return $a;
95
  }
96
 
 
 
 
 
97
  function get_themes_directories() {
98
  $res = array();
99
 
@@ -113,7 +126,15 @@ class WPBDP_Themes {
113
  if ( ! empty( $this->themes ) )
114
  return $this->themes;
115
 
116
- $themes = array();
 
 
 
 
 
 
 
 
117
 
118
  foreach ( $this->get_themes_directories() as $path => $url ) {
119
  $dirs = WPBDP_FS::ls( $path, 'filter=dir' );
@@ -127,12 +148,9 @@ class WPBDP_Themes {
127
  if ( ! $info )
128
  continue;
129
 
130
- $themes[ $info->id ] = $info;
131
  }
132
  }
133
-
134
- $this->themes = $themes;
135
- return $themes;
136
  }
137
 
138
  /**
@@ -232,15 +250,17 @@ class WPBDP_Themes {
232
  $theme_keys = array(
233
  array( 'id', 'string', basename( $d ) ),
234
  array( 'name', 'string', basename( $d ) ),
 
235
  array( 'description', 'string', '' ),
236
- array( 'version', 'int', 0 ),
237
  array( 'author', 'string', '' ),
238
  array( 'author_email', 'email', '' ),
239
  array( 'author_url', 'url', '' ),
240
  array( 'requires', 'string', '4.0dev' ),
241
  array( 'assets', 'array', array( 'css' => null, 'js' => null ), array( 'allow_other_keys' => false ) ),
242
  array( 'template_variables', 'array', array() ),
243
- array( 'suggested_fields', 'array', array() )
 
244
  /* array( 'assets/css', 'array/string', array() ),
245
  array( 'assets/js', 'array/string', array() )*/
246
  );
@@ -255,7 +275,7 @@ class WPBDP_Themes {
255
  case 'string':
256
  case 'email':
257
  case 'url':
258
- $value = is_string( $value ) ? $value : null;
259
  break;
260
 
261
  case 'int':
@@ -284,6 +304,23 @@ class WPBDP_Themes {
284
  return $info;
285
  }
286
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
287
  function _guess_theme_path_info( &$theme ) {
288
  $valid_parents = $this->get_themes_directories();
289
  $url = '';
12
 
13
 
14
  function __construct() {
15
+ $this->find_themes();
 
 
 
16
 
17
  // Theme template dir is priority 1.
18
  $theme = $this->get_active_theme_data();
21
  // Core templates are last priority.
22
  $this->template_dirs[] = trailingslashit( WPBDP_PATH . 'core/templates' );
23
 
24
+ // Add some extra data to theme information.
25
+ $this->add_theme_data();
26
+
27
  // Load special theme .php file.
28
  $this->call_theme_function( '' );
29
  $this->call_theme_function( 'init' );
30
 
31
+ add_action( 'wp_enqueue_scripts', array( &$this, 'enqueue_theme_scripts' ), 999 );
32
  add_filter( 'wpbdp_form_field_display', array( &$this, 'field_theme_override' ), 999, 4 );
33
 
34
+ if ( is_admin() ) {
35
+ require_once( WPBDP_PATH . 'admin/class-themes-admin.php' );
36
+ $this->admin = new WPBDP_Themes_Admin( $this );
37
+ }
38
  }
39
 
40
  function call_theme_function( $fname, $args = array() ) {
60
  $theme->url . 'assets/' . $c );
61
  }
62
 
63
+ if ( 'theme' == wpbdp_get_option( 'themes-button-style' ) && file_exists( $theme->path . 'assets/buttons.css' ) ) {
64
+ wp_enqueue_style( $theme->id . '-buttons',
65
+ $theme->url . 'assets/buttons.css' );
66
+ }
67
+
68
  foreach ( $js as $j ) {
69
  wp_enqueue_script( $theme->id . '-' . $this->_normalize_asset_name( $j ),
70
  $theme->url . 'assets/' . $j );
103
  return $a;
104
  }
105
 
106
+ function get_themes_dir() {
107
+ return WP_CONTENT_DIR . '/businessdirectory-themes/';
108
+ }
109
+
110
  function get_themes_directories() {
111
  $res = array();
112
 
126
  if ( ! empty( $this->themes ) )
127
  return $this->themes;
128
 
129
+ $this->find_themes();
130
+ return $this->themes;
131
+ }
132
+
133
+ function find_themes( $reload = false ) {
134
+ if ( ! empty( $this->themes ) && ! $reload )
135
+ return;
136
+
137
+ $this->themes = array();
138
 
139
  foreach ( $this->get_themes_directories() as $path => $url ) {
140
  $dirs = WPBDP_FS::ls( $path, 'filter=dir' );
148
  if ( ! $info )
149
  continue;
150
 
151
+ $this->themes[ $info->id ] = $info;
152
  }
153
  }
 
 
 
154
  }
155
 
156
  /**
250
  $theme_keys = array(
251
  array( 'id', 'string', basename( $d ) ),
252
  array( 'name', 'string', basename( $d ) ),
253
+ array( 'edd_name', 'string', '' ),
254
  array( 'description', 'string', '' ),
255
+ array( 'version', 'string', '0' ),
256
  array( 'author', 'string', '' ),
257
  array( 'author_email', 'email', '' ),
258
  array( 'author_url', 'url', '' ),
259
  array( 'requires', 'string', '4.0dev' ),
260
  array( 'assets', 'array', array( 'css' => null, 'js' => null ), array( 'allow_other_keys' => false ) ),
261
  array( 'template_variables', 'array', array() ),
262
+ array( 'suggested_fields', 'array', array() ),
263
+ array( 'thumbnails', 'array', array() )
264
  /* array( 'assets/css', 'array/string', array() ),
265
  array( 'assets/js', 'array/string', array() )*/
266
  );
275
  case 'string':
276
  case 'email':
277
  case 'url':
278
+ $value = is_string( $value ) ? $value : strval( $value );
279
  break;
280
 
281
  case 'int':
304
  return $info;
305
  }
306
 
307
+ function add_theme_data() {
308
+ foreach ( $this->themes as &$t ) {
309
+ $t->license_key = '';
310
+ $t->license_status = '';
311
+
312
+ if ( $license_data = get_option( 'wpbdp-themes-licenses', array() ) ) {
313
+ $theme_license = isset( $license_data[ $t->id ] ) ? $license_data[ $t->id ] : array();
314
+
315
+ $t->license_key = isset( $theme_license['license'] ) ? $theme_license['license'] : '';
316
+ $t->license_status = isset( $theme_license['status'] ) ? $theme_license['status'] : '';
317
+ }
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
+
324
  function _guess_theme_path_info( &$theme ) {
325
  $valid_parents = $this->get_themes_directories();
326
  $url = '';
core/utils.php CHANGED
@@ -3,6 +3,7 @@ require_once( WPBDP_PATH . 'core/debugging.php' );
3
  require_once( WPBDP_PATH . 'core/class-email.php' );
4
  require_once( WPBDP_PATH . 'core/class-ajax-response.php' );
5
  require_once( WPBDP_PATH . 'core/helpers/class-fs.php' );
 
6
 
7
 
8
  /**
@@ -234,7 +235,7 @@ function wpbdp_media_upload($file_, $use_media_library=true, $check_image=false,
234
  if ( ! $failed && $meta && $constraints['max-height'] > 0 && $meta['height'] > $constraints['max-height'] ) {
235
  $error_msg = sprintf( _x( 'Image height (%s px) is greater than maximum required height of %s px.', 'utils', 'WPBDM' ),
236
  $meta['height'],
237
- $constraints['max-height'] );
238
  }
239
 
240
  if ( $failed ) {
3
  require_once( WPBDP_PATH . 'core/class-email.php' );
4
  require_once( WPBDP_PATH . 'core/class-ajax-response.php' );
5
  require_once( WPBDP_PATH . 'core/helpers/class-fs.php' );
6
+ require_once( WPBDP_PATH . 'core/class-utils.php' );
7
 
8
 
9
  /**
235
  if ( ! $failed && $meta && $constraints['max-height'] > 0 && $meta['height'] > $constraints['max-height'] ) {
236
  $error_msg = sprintf( _x( 'Image height (%s px) is greater than maximum required height of %s px.', 'utils', 'WPBDM' ),
237
  $meta['height'],
238
+ $constraints['max-height'] );
239
  }
240
 
241
  if ( $failed ) {
core/view-checkout.php CHANGED
@@ -76,7 +76,7 @@ class WPBDP_Checkout_Page extends WPBDP_View {
76
  if ( isset( $_POST['payment_method'] ) ) {
77
  $payment_method = trim( $_POST['payment_method'] );
78
 
79
- if ( ! $payment_method ) {
80
  // $html .= wpbdp_render_msg( _x( 'Please select a valid payment method.', 'checkout', 'WPBDM' ), 'error' );
81
  } else {
82
  $this->payment->set_payment_method( $payment_method );
76
  if ( isset( $_POST['payment_method'] ) ) {
77
  $payment_method = trim( $_POST['payment_method'] );
78
 
79
+ if ( ! $payment_method || 'none' == $payment_method ) {
80
  // $html .= wpbdp_render_msg( _x( 'Please select a valid payment method.', 'checkout', 'WPBDM' ), 'error' );
81
  } else {
82
  $this->payment->set_payment_method( $payment_method );
core/view-listing-contact.php CHANGED
@@ -119,7 +119,7 @@ class WPBDP_Listing_Contact_View extends WPBDP_View {
119
  $html .= '<div class="contact-form">';
120
 
121
  if ( ! $_POST ) {
122
- $html .= '<input type="button" class="wpbdp-show-on-mobile send-message-button" value="' . _x( 'Contact listing owner', 'templates', 'WPBDM' ) . '" />';
123
  $html .= '<div class="wpbdp-hide-on-mobile contact-form-wrapper">';
124
  }
125
 
119
  $html .= '<div class="contact-form">';
120
 
121
  if ( ! $_POST ) {
122
+ $html .= '<input type="button" class="wpbdp-show-on-mobile send-message-button wpbdp-button" value="' . _x( 'Contact listing owner', 'templates', 'WPBDM' ) . '" />';
123
  $html .= '<div class="wpbdp-hide-on-mobile contact-form-wrapper">';
124
  }
125
 
core/view-submit-listing.php CHANGED
@@ -341,6 +341,7 @@ class WPBDP_Submit_Listing_Page extends WPBDP_View {
341
  $images = $this->state->images;
342
  $thumbnail_id = $this->state->thumbnail_id;
343
  $image_slots_remaining = $image_slots - count( $images );
 
344
  $image_max_file_size = size_format( intval( wpbdp_get_option( 'image-max-filesize' ) ) * 1024 );
345
 
346
  // Set thumbnail.
@@ -354,6 +355,7 @@ class WPBDP_Submit_Listing_Page extends WPBDP_View {
354
 
355
  return $this->render( 'images',
356
  compact( 'image_max_file_size',
 
357
  'images',
358
  'image_slots',
359
  'image_slots_remaining' )
341
  $images = $this->state->images;
342
  $thumbnail_id = $this->state->thumbnail_id;
343
  $image_slots_remaining = $image_slots - count( $images );
344
+ $image_min_file_size = size_format( intval( wpbdp_get_option( 'image-min-filesize' ) ) * 1024 );
345
  $image_max_file_size = size_format( intval( wpbdp_get_option( 'image-max-filesize' ) ) * 1024 );
346
 
347
  // Set thumbnail.
355
 
356
  return $this->render( 'images',
357
  compact( 'image_max_file_size',
358
+ 'image_min_file_size',
359
  'images',
360
  'image_slots',
361
  'image_slots_remaining' )
core/views.php CHANGED
@@ -16,6 +16,8 @@ class WPBDP_DirectoryController {
16
 
17
  public function __construct() {
18
  add_action( 'wp', array( $this, '_handle_action'), 10, 1 );
 
 
19
  $this->_extra_sections = array();
20
  }
21
 
@@ -66,6 +68,21 @@ class WPBDP_DirectoryController {
66
  return $this->current_listing;
67
  }
68
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
69
  public function dispatch() {
70
  switch ($this->action) {
71
  case 'showlisting':
@@ -566,11 +583,17 @@ class WPBDP_DirectoryController {
566
  query_posts( $args );
567
  wpbdp_push_query( $GLOBALS['wp_query'] );
568
 
 
 
 
 
 
 
569
  $html = wpbdp_render( 'search',
570
- array(
 
571
  'fields' => $fields,
572
- 'searching' => isset( $_GET['dosrch'] ) ? true : false,
573
- 'show_form' => !isset( $_GET['dosrch'] ) || wpbdp_get_option( 'show-search-form-in-results' )
574
  ),
575
  false );
576
  wp_reset_query();
16
 
17
  public function __construct() {
18
  add_action( 'wp', array( $this, '_handle_action'), 10, 1 );
19
+ add_action( 'template_redirect', array( &$this, 'handle_login_redirect' ), 20 );
20
+
21
  $this->_extra_sections = array();
22
  }
23
 
68
  return $this->current_listing;
69
  }
70
 
71
+ function handle_login_redirect() {
72
+ $action = $this->get_current_action();
73
+ $login_url = trim( wpbdp_get_option( 'login-url' ) );
74
+
75
+ if ( ! $login_url || is_user_logged_in() || ! wpbdp_get_option( 'require-login' ) )
76
+ return;
77
+
78
+ if ( ! in_array( $action, array( 'editlisting', 'submitlisting', 'deletelisting', 'renewlisting' ), true ) )
79
+ return;
80
+
81
+ $url = add_query_arg( 'redirect_to', urlencode( home_url( $_SERVER['REQUEST_URI'] ) ), $login_url );
82
+ wp_redirect( esc_url_raw( $url ) );
83
+ exit();
84
+ }
85
+
86
  public function dispatch() {
87
  switch ($this->action) {
88
  case 'showlisting':
583
  query_posts( $args );
584
  wpbdp_push_query( $GLOBALS['wp_query'] );
585
 
586
+ $searching = isset( $_GET['dosrch'] ) ? true : false;
587
+ $search_form = '';
588
+
589
+ if ( ! $searching || 'none' != wpbdp_get_option( 'search-form-in-results' ) )
590
+ $search_form = wpbdp_render_page( WPBDP_PATH . 'templates/search-form.tpl.php', array( 'fields' => $fields ) );
591
+
592
  $html = wpbdp_render( 'search',
593
+ array( 'search_form' => $search_form,
594
+ 'search_form_position' => wpbdp_get_option( 'search-form-in-results' ),
595
  'fields' => $fields,
596
+ 'searching' => $searching
 
597
  ),
598
  false );
599
  wp_reset_query();
languages/WPBDM-de_DE.mo CHANGED
Binary file
languages/WPBDM-de_DE.po CHANGED
@@ -4,7 +4,7 @@ msgid ""
4
  msgstr ""
5
  "Project-Id-Version: Business Directory Plugin 3.5.4\n"
6
  "Report-Msgid-Bugs-To: http://wordpress.org/tag/business-directory-plugin\n"
7
- "POT-Creation-Date: 2015-10-13 15:01:21+00:00\n"
8
  "PO-Revision-Date: 2015-03-10 03:22+0100\n"
9
  "Last-Translator: BD Team <support@businessdirectoryplugin.com>\n"
10
  "Language-Team: Business Directory Plugin <support@businessdirectoryplugin."
@@ -220,85 +220,85 @@ msgctxt "admin menu"
220
  msgid "Uninstall"
221
  msgstr "Deinstallieren"
222
 
223
- #: admin/class-admin.php:404
224
  #: admin/templates/listing-metabox-categories.tpl.php:69
225
  msgctxt "admin infometabox"
226
  msgid "never"
227
  msgstr "niemals"
228
 
229
- #: admin/class-admin.php:486
230
  msgctxt "admin"
231
  msgid "The listing has been published."
232
  msgid_plural "The listings have been published."
233
  msgstr[0] "Der Eintrag wurde veröffentlicht."
234
  msgstr[1] "Die Einträge wurden veröffentlicht."
235
 
236
- #: admin/class-admin.php:499
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] "Der Status des Eintrags wurde auf bezahlt gesetzt."
241
  msgstr[1] "Der Status der Einträge wurde auf bezahlt gesetzt."
242
 
243
- #: admin/class-admin.php:511
244
  msgctxt "admin"
245
  msgid "The listing has been modified."
246
  msgid_plural "The listings have been modified."
247
  msgstr[0] "Der Eintrag wurde verändert."
248
  msgstr[1] "Die Einträge wurden verändert."
249
 
250
- #: admin/class-admin.php:524
251
  msgctxt "admin"
252
  msgid "The listing has been upgraded."
253
  msgid_plural "The listings have been upgraded."
254
  msgstr[0] "Der Eintrag wurde aktualisiert"
255
  msgstr[1] "Die Einträge wurden aktualisiert."
256
 
257
- #: admin/class-admin.php:536
258
  msgctxt "admin"
259
  msgid "The listing has been downgraded."
260
  msgid_plural "The listings have been downgraded."
261
  msgstr[0] "Der Eintrag wurde zurück gesetzt."
262
  msgstr[1] "Die Einträge wurden zurück gesetzt."
263
 
264
- #: admin/class-admin.php:548
265
  msgctxt "admin"
266
  msgid "The transaction has been approved."
267
  msgstr "Die Transaktion wurde genehmigt."
268
 
269
- #: admin/class-admin.php:556
270
  msgctxt "admin"
271
  msgid "The transaction has been rejected."
272
  msgstr "Die Transaktion wurde abgelehnt."
273
 
274
- #: admin/class-admin.php:562
275
  msgctxt "admin"
276
  msgid "The fee was successfully assigned."
277
  msgstr "Der Preis wurde erfolgreich zugewiesen."
278
 
279
- #: admin/class-admin.php:571
280
  msgctxt "admin"
281
  msgid "Listing was renewed."
282
  msgid_plural "Listings were renewed."
283
  msgstr[0] "Eintrag wurde aktualisiert."
284
  msgstr[1] "Einträge wurden aktualisiert."
285
 
286
- #: admin/class-admin.php:578
287
  msgctxt "admin"
288
  msgid "Renewal email sent."
289
  msgstr "E-mail erneut senden."
290
 
291
- #: admin/class-admin.php:612
292
  msgctxt "admin category id"
293
  msgid "ID"
294
  msgstr "ID"
295
 
296
- #: admin/class-admin.php:614 admin/class-admin.php:620
297
  msgctxt "admin"
298
  msgid "Listing Count"
299
  msgstr "Anzahl Einträge "
300
 
301
- #: admin/class-admin.php:716
302
  msgctxt "admin"
303
  msgid ""
304
  "<b>Business Directory Plugin</b> requires fields with the following "
@@ -307,7 +307,7 @@ msgstr ""
307
  "<b>Branchenverzeichnis Erweiterung</b> benötigt Felder mit den folgenden "
308
  "Verbindungen um korrekt zu funktionieren: <b>%s</b>."
309
 
310
- #: admin/class-admin.php:718
311
  msgctxt "admin"
312
  msgid ""
313
  "<b>Business Directory Plugin</b> requires a field with a <b>%s</b> "
@@ -316,7 +316,7 @@ msgstr ""
316
  "<b>Branchenverzeichnis Erweiterung</b> benötigt ein Feld mit der Verbindung "
317
  "<b>%s</b>, um korrekt zu funktionieren."
318
 
319
- #: admin/class-admin.php:722
320
  msgctxt "admin"
321
  msgid ""
322
  "You can create these custom fields by yourself inside \"Manage Form Fields\" "
@@ -325,17 +325,17 @@ msgstr ""
325
  "Sie können diese benutzerdefinierten Felder selbst erzeugen \"Form Felder "
326
  "Verwalten\" oder vom Branchenverzeichnis automatisch erstellen lassen."
327
 
328
- #: admin/class-admin.php:726
329
  msgctxt "admin"
330
  msgid "Go to \"Manage Form Fields\""
331
  msgstr "zu \"Form Felder verwalten\""
332
 
333
- #: admin/class-admin.php:729
334
  msgctxt "admin"
335
  msgid "Create these required fields for me"
336
  msgstr "Erstelle diese benötigten Felder für mich"
337
 
338
- #: admin/class-admin.php:738
339
  msgctxt "admin"
340
  msgid ""
341
  "<b>Business Directory Plugin</b> requires a page with the "
@@ -344,7 +344,7 @@ msgstr ""
344
  "<b>Branchenverzeichnis Erweiterung</b> benötigt eine Seite mit dem "
345
  "<tt>[businessdirectory]</tt> shortcode um zu funktionieren."
346
 
347
- #: admin/class-admin.php:740
348
  msgctxt "admin"
349
  msgid ""
350
  "You can create this page by yourself or let Business Directory do this for "
@@ -353,27 +353,27 @@ msgstr ""
353
  "Du kannst diese Seite selbst erstellen oder vom Branchenverzeichnis "
354
  "automatisch erstellen lassen."
355
 
356
- #: admin/class-admin.php:744
357
  msgctxt "admin"
358
  msgid "Create required pages for me"
359
  msgstr "Erstelle benötigte Seiten für mich"
360
 
361
- #: admin/class-admin.php:784
362
  msgctxt "admin compat"
363
  msgid "Installed: %s"
364
  msgstr "Installiert: %s"
365
 
366
- #: admin/class-admin.php:784
367
  msgctxt "admin compat"
368
  msgid "N/A"
369
  msgstr "keine Angabe"
370
 
371
- #: admin/class-admin.php:787
372
  msgctxt "admin compat"
373
  msgid "Required: %s"
374
  msgstr "Pflichtfeld: %s"
375
 
376
- #: admin/class-admin.php:800
377
  msgctxt "admin compat"
378
  msgid ""
379
  "Business Directory has detected some incompatible premium module versions "
@@ -382,7 +382,7 @@ msgstr ""
382
  "Branchenverzeichnis hat festgestellt, dass einige inkompatible Premium Modul "
383
  "Versionen installiert sind."
384
 
385
- #: admin/class-admin.php:802
386
  msgctxt "admin compat"
387
  msgid ""
388
  "Please upgrade to the required versions indicated below to make sure "
@@ -391,7 +391,7 @@ msgstr ""
391
  "Bitte die benötigten Versionen siehe unten aktualisieren, um sicher zu sein, "
392
  "dass alles korrekt funktioniert. "
393
 
394
- #: admin/class-admin.php:817
395
  msgctxt "admin"
396
  msgid ""
397
  "We noticed you want your Business Directory users to register before posting "
@@ -421,76 +421,104 @@ msgid "There are no images currently attached to the listing."
421
  msgstr ""
422
  "Es sind keine Bilder vorhanden die dem Eintrag aktuell hinzugefügt wurden."
423
 
424
- #: admin/class-themes-admin.php:27 admin/class-themes-admin.php:28
425
  #, fuzzy
426
  msgctxt "themes"
427
  msgid "Directory Themes"
428
  msgstr "Verzeichnis Kategorien"
429
 
430
- #: admin/class-themes-admin.php:80
 
 
 
 
 
 
431
  #, fuzzy
432
  msgctxt "themes"
433
  msgid "Could not change the active theme to \"%s\"."
434
  msgstr "Konnte Eintragskategorie nicht erstellen \"%s\""
435
 
436
- #: admin/class-themes-admin.php:124
437
  msgctxt "themes"
438
  msgid "Active theme changed to \"%s\"."
439
  msgstr ""
440
 
441
- #: admin/class-themes-admin.php:127
442
  msgctxt "themes"
443
  msgid ""
444
  "For better results, \"%s\" theme suggests the following form fields to be "
445
  "created."
446
  msgstr ""
447
 
448
- #: admin/class-themes-admin.php:134
449
  msgctxt "themes"
450
  msgid "Dismiss this warning"
451
  msgstr ""
452
 
453
- #: admin/class-themes-admin.php:137
454
  #, fuzzy
455
  msgctxt "themes"
456
  msgid "Create suggested fields"
457
  msgstr "Erstelle diese benötigten Felder für mich"
458
 
459
- #: admin/class-themes-admin.php:144
460
  #, fuzzy
461
  msgctxt "themes"
462
  msgid "Suggested fields created successfully."
463
  msgstr "Benötigtes Feld wurde erfolgreich erstellt."
464
 
465
- #: admin/class-themes-admin.php:147
466
  #, fuzzy
467
  msgctxt "themes"
468
  msgid "Theme installed successfully."
469
  msgstr "Benötigtes Feld wurde erfolgreich erstellt."
470
 
471
- #: admin/class-themes-admin.php:150
472
  #, fuzzy
473
  msgctxt "themes"
474
  msgid "Theme was deleted sucessfully."
475
  msgstr "Der Import wurde erfolgreich abgeschlossen."
476
 
477
- #: admin/class-themes-admin.php:153
478
  msgctxt "themes"
479
  msgid "Could not delete theme directory. Check permissions."
480
  msgstr ""
481
 
482
- #: admin/class-themes-admin.php:179
483
  #, fuzzy
484
  msgctxt "themes"
485
  msgid "Please upload a valid theme file."
486
  msgstr "Bitte eine gültige E-mailadresse eingeben."
487
 
488
- #: admin/class-themes-admin.php:186
489
  #, fuzzy
490
  msgctxt "themes"
491
  msgid "Could not move \"%s\" to a temporary directory."
492
  msgstr "wpbdp-csv-exports Verzeichnis konnte nicht erstellt werden."
493
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
494
  #: admin/csv-export.php:136
495
  msgctxt "admin csv-export"
496
  msgid "Could not create a temporary directory for handling this CSV export."
@@ -1578,22 +1606,27 @@ msgctxt "fees admin"
1578
  msgid "Number of images allowed"
1579
  msgstr "Erlaubte Anzahl der Bilder"
1580
 
1581
- #: admin/templates/fees-addoredit.tpl.php:105
 
 
 
 
 
1582
  msgctxt "fees admin"
1583
  msgid "Apply to category"
1584
  msgstr "der Kategorie zuweisen"
1585
 
1586
- #: admin/templates/fees-addoredit.tpl.php:109
1587
  msgctxt "fees admin"
1588
  msgid "* All Categories *"
1589
  msgstr "* Alle Kategorien *"
1590
 
1591
- #: admin/templates/fees-addoredit.tpl.php:129
1592
  msgctxt "fees admin"
1593
  msgid "Update Fee"
1594
  msgstr "Preis Aktualisierung"
1595
 
1596
- #: admin/templates/fees-addoredit.tpl.php:131
1597
  msgctxt "fees admin"
1598
  msgid "Add Fee"
1599
  msgstr "Preis Erstellen"
@@ -1745,67 +1778,67 @@ msgctxt "form-fields admin"
1745
  msgid "No validation"
1746
  msgstr "Keine Validierung"
1747
 
1748
- #: admin/templates/form-fields-addoredit.tpl.php:112
1749
  msgctxt "form-fields admin"
1750
  msgid "Is field required?"
1751
  msgstr "Ist das Feld ein Pflichtfeld?"
1752
 
1753
- #: admin/templates/form-fields-addoredit.tpl.php:118
1754
  msgctxt "form-fields admin"
1755
  msgid "This field is required."
1756
  msgstr "Dieses Feld ist ein Pflichtfeld."
1757
 
1758
- #: admin/templates/form-fields-addoredit.tpl.php:126
1759
  msgctxt "form-fields admin"
1760
  msgid "Field display options"
1761
  msgstr "Feld Anzeigeoptionen"
1762
 
1763
- #: admin/templates/form-fields-addoredit.tpl.php:130
1764
  msgctxt "form-fields admin"
1765
  msgid "Show this value in excerpt view?"
1766
  msgstr "Diesen Wert in der Auszugsansicht anzeigen?"
1767
 
1768
- #: admin/templates/form-fields-addoredit.tpl.php:136
1769
  msgctxt "form-fields admin"
1770
  msgid "Display this value in post excerpt view."
1771
  msgstr "Diesen Wert in der Postauszugansicht anzeigen."
1772
 
1773
- #: admin/templates/form-fields-addoredit.tpl.php:142
1774
  msgctxt "form-fields admin"
1775
  msgid "Show this value in listing view?"
1776
  msgstr "Diesen Wert in der Eintragansicht anzeigen?"
1777
 
1778
- #: admin/templates/form-fields-addoredit.tpl.php:148
1779
  msgctxt "form-fields admin"
1780
  msgid "Display this value in the listing view."
1781
  msgstr "Diesen Wert in der Eintragansicht anzeigen."
1782
 
1783
- #: admin/templates/form-fields-addoredit.tpl.php:154
1784
  msgctxt "form-fields admin"
1785
  msgid "Include this field in the search form?"
1786
  msgstr "Dieses Feld in die Suchform integrieren?"
1787
 
1788
- #: admin/templates/form-fields-addoredit.tpl.php:160
1789
  msgctxt "form-fields admin"
1790
  msgid "Include this field in the search form."
1791
  msgstr "Dieses Feld in die Suchform integrieren."
1792
 
1793
- #: admin/templates/form-fields-addoredit.tpl.php:166
1794
  msgctxt "form-fields admin"
1795
  msgid "Hide this field's label?"
1796
  msgstr "Diese Feldbezeichnung verbergen?"
1797
 
1798
- #: admin/templates/form-fields-addoredit.tpl.php:172
1799
  msgctxt "form-fields admin"
1800
  msgid "Hide this field's label when displaying it."
1801
  msgstr "Diese Feldbezeichnung beim Anzeigen verbergen ."
1802
 
1803
- #: admin/templates/form-fields-addoredit.tpl.php:179
1804
  msgctxt "form-fields admin"
1805
  msgid "Update Field"
1806
  msgstr "Feld aktualisieren"
1807
 
1808
- #: admin/templates/form-fields-addoredit.tpl.php:181
1809
  msgctxt "form-fields admin"
1810
  msgid "Add Field"
1811
  msgstr "Feld erstellen"
@@ -1877,7 +1910,7 @@ msgctxt "form-fields admin"
1877
  msgid "Please see the <a>Form Fields documentation</a> for more details."
1878
  msgstr ""
1879
 
1880
- #. #-#-#-#-# WPBDM.pot (Business Directory Plugin 3.6.9) #-#-#-#-#
1881
  #. Plugin Name of the plugin/theme
1882
  #: admin/templates/header.tpl.php:4
1883
  msgid "Business Directory Plugin"
@@ -2364,24 +2397,26 @@ msgid "Enhanced Categories Module"
2364
  msgstr "Enhanced Categories Modul"
2365
 
2366
  #: admin/templates/themes-delete-confirm.tpl.php:1
 
2367
  #, fuzzy
2368
  msgctxt "themes admin"
2369
- msgid "Delete theme"
2370
- msgstr "Preis löschen"
2371
 
2372
  #: admin/templates/themes-delete-confirm.tpl.php:3
2373
  #, fuzzy
2374
  msgctxt "themes admin"
2375
- msgid "Are you sure you want to delete the theme \"%s\"?"
2376
  msgstr "Bist du sicher, dass du diesen \"%s\" Preis löschen möchtest?"
2377
 
2378
  #: admin/templates/themes-delete-confirm.tpl.php:12
2379
  #, fuzzy
2380
  msgctxt "themes admin"
2381
- msgid "Delete Theme"
2382
- msgstr "Preis löschen"
2383
 
2384
- #: admin/templates/themes-install.tpl.php:2 admin/templates/themes.tpl.php:3
 
2385
  msgctxt "themes"
2386
  msgid "Upload Directory Theme"
2387
  msgstr ""
@@ -2401,24 +2436,24 @@ msgctxt "themes"
2401
  msgid "Begin Upload"
2402
  msgstr ""
2403
 
2404
- #: admin/templates/themes.tpl.php:13
2405
  #, fuzzy
2406
  msgctxt "themes"
2407
  msgid "Active:"
2408
  msgstr "Nur Aktiv"
2409
 
2410
- #: admin/templates/themes.tpl.php:22
2411
  #, fuzzy
2412
  msgctxt "themes"
2413
  msgid "Activate"
2414
  msgstr "Aktiviere Lizenz"
2415
 
2416
- #: admin/templates/themes.tpl.php:32
2417
  msgctxt "themes"
2418
  msgid "Version:"
2419
  msgstr ""
2420
 
2421
- #: admin/templates/themes.tpl.php:35
2422
  #, fuzzy
2423
  msgctxt "themes"
2424
  msgid "Author:"
@@ -2532,100 +2567,100 @@ msgctxt "tracking"
2532
  msgid "Allow Tracking"
2533
  msgstr "Verfolgung erlauben"
2534
 
2535
- #: business-directory-plugin.php:676
2536
  msgctxt "admin plugins"
2537
  msgid "Settings"
2538
  msgstr "Einstellungen"
2539
 
2540
- #: business-directory-plugin.php:686
2541
  msgctxt "post type general name"
2542
  msgid "Directory"
2543
  msgstr "Verzeichnis"
2544
 
2545
- #: business-directory-plugin.php:687
2546
  msgctxt "post type singular name"
2547
  msgid "Directory"
2548
  msgstr "Verzeichnis"
2549
 
2550
- #: business-directory-plugin.php:688
2551
  msgctxt "listing"
2552
  msgid "Add New Listing"
2553
  msgstr "Neuen Eintrag erstellen"
2554
 
2555
- #: business-directory-plugin.php:689
2556
  msgctxt "post type"
2557
  msgid "Add New Listing"
2558
  msgstr "Neuen Eintrag erstellen"
2559
 
2560
- #: business-directory-plugin.php:690 core/compatibility/deprecated.php:255
2561
  msgid "Edit Listing"
2562
  msgstr "Eintrag Bearbeiten"
2563
 
2564
- #: business-directory-plugin.php:691
2565
  msgid "New Listing"
2566
  msgstr "Neuer Eintag"
2567
 
2568
- #: business-directory-plugin.php:692
2569
  msgid "View Listing"
2570
  msgstr "Eintrag anschauen"
2571
 
2572
- #: business-directory-plugin.php:693
2573
  msgid "Search Listings"
2574
  msgstr "Einträge durchsuchen"
2575
 
2576
- #: business-directory-plugin.php:694
2577
  msgid "No listings found"
2578
  msgstr "Keine Einträge gefunden"
2579
 
2580
- #: business-directory-plugin.php:695
2581
  msgid "No listings found in trash"
2582
  msgstr "Keine Einträge im Papierkorb gefunden"
2583
 
2584
- #: business-directory-plugin.php:717
2585
  msgid "Directory Categories"
2586
  msgstr "Verzeichnis Kategorien"
2587
 
2588
- #: business-directory-plugin.php:830 business-directory-plugin.php:837
2589
  msgctxt "rss feed"
2590
  msgid "%s Feed"
2591
  msgstr "% Feed"
2592
 
2593
- #: business-directory-plugin.php:1218
2594
  msgctxt "title"
2595
  msgid "Submit A Listing"
2596
  msgstr "Eintrag zusenden"
2597
 
2598
- #: business-directory-plugin.php:1228
2599
  msgctxt "title"
2600
  msgid "Find a Listing"
2601
  msgstr "Eintrag finden"
2602
 
2603
- #: business-directory-plugin.php:1238
2604
  msgctxt "title"
2605
  msgid "View All Listings"
2606
  msgstr "Alle Einträge anschauen"
2607
 
2608
- #: business-directory-plugin.php:1258
2609
  msgctxt "title"
2610
  msgid "Listings tagged: %s"
2611
  msgstr "Einträge getaggt: %s"
2612
 
2613
- #: core/class-csv-import.php:369
2614
  msgctxt "admin csv-import"
2615
  msgid "Could not create listing category \"%s\""
2616
  msgstr "Konnte Eintragskategorie nicht erstellen \"%s\""
2617
 
2618
- #: core/class-csv-import.php:513
2619
  msgctxt "admin csv-import"
2620
  msgid "Username \"%s\" does not exist"
2621
  msgstr "Benutzername \"%s\" existiert nicht"
2622
 
2623
- #: core/class-csv-import.php:545
2624
  msgctxt "admin csv-import"
2625
  msgid "Missing required field: %s"
2626
  msgstr "Benötigtes nicht vorhandenes Feld: %s"
2627
 
2628
- #: core/class-csv-import.php:565
2629
  msgctxt "admin csv-import"
2630
  msgid "Listing category \"%s\" does not exist"
2631
  msgstr "Eintragskategorie \"%s\" existiert nicht"
@@ -2729,7 +2764,7 @@ msgctxt "listings-api"
2729
  msgid "Featured Listing"
2730
  msgstr "Unterstützter Eintrag"
2731
 
2732
- #: core/class-listing.php:287 core/class-listing.php:313
2733
  msgctxt "listing"
2734
  msgid "(Fee Unavailable)"
2735
  msgstr "(Preis nicht verfügbar)"
@@ -2954,12 +2989,27 @@ msgctxt "admin settings"
2954
  msgid "Directory Search"
2955
  msgstr "Verzeichnis Suche"
2956
 
2957
- #: core/class-settings.php:95
2958
  msgctxt "admin settings"
2959
- msgid "Display search form when displaying search results?"
2960
- msgstr "Suchform anzeigen wenn die Suchergebnisse angezeigt werden?"
2961
 
2962
- #: core/class-settings.php:102
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
2963
  msgctxt "admin settings"
2964
  msgid ""
2965
  "You have selected a textarea field to be included in quick searches. "
@@ -2970,7 +3020,7 @@ msgstr ""
2970
  "Felder hinzugefügt werden, kann sehr langsam sein und lange Zeit in Anspruch "
2971
  "nehmen. "
2972
 
2973
- #: core/class-settings.php:104
2974
  #, fuzzy
2975
  msgctxt "admin settings"
2976
  msgid ""
@@ -2980,17 +3030,17 @@ msgid ""
2980
  msgstr ""
2981
  "Zu viele Felder können die Suchleistung stark beeinflussen und lange dauern."
2982
 
2983
- #: core/class-settings.php:107
2984
  msgctxt "admin settings"
2985
  msgid "Quick search fields"
2986
  msgstr "Schnellsuche Felder"
2987
 
2988
- #: core/class-settings.php:115
2989
  msgctxt "admin settings"
2990
  msgid "Enable high performance searches?"
2991
  msgstr ""
2992
 
2993
- #: core/class-settings.php:118
2994
  msgctxt "admin settings"
2995
  msgid ""
2996
  "Enabling this makes BD sacrifice result quality to improve speed. This is "
@@ -2998,19 +3048,19 @@ msgid ""
2998
  "issue."
2999
  msgstr ""
3000
 
3001
- #: core/class-settings.php:123
3002
  msgctxt "admin settings"
3003
  msgid "Miscellaneous Settings"
3004
  msgstr "Sonstiges Einstellungen"
3005
 
3006
- #: core/class-settings.php:127
3007
  msgctxt "admin settings"
3008
  msgid ""
3009
  "Check this if you are having trouble with BD, particularly when importing or "
3010
  "exporting CSV files."
3011
  msgstr ""
3012
 
3013
- #: core/class-settings.php:130
3014
  msgctxt "admin settings"
3015
  msgid ""
3016
  "If this compatibility mode doesn't solve your issue, you may be experiencing "
@@ -3018,27 +3068,28 @@ msgid ""
3018
  "theme and plugin conflicts with Business Directory."
3019
  msgstr ""
3020
 
3021
- #: core/class-settings.php:133
3022
  msgctxt "admin settings"
3023
  msgid "Enable AJAX compatibility mode?"
3024
  msgstr ""
3025
 
3026
- #: core/class-settings.php:141 core/class-settings.php:615
3027
  msgctxt "admin settings"
3028
  msgid "Listings"
3029
  msgstr "Einträge"
3030
 
3031
- #: core/class-settings.php:142 core/class-settings.php:289
 
3032
  msgctxt "admin settings"
3033
  msgid "General Settings"
3034
  msgstr "Allgemeine Einstellungen"
3035
 
3036
- #: core/class-settings.php:144
3037
  msgctxt "admin settings"
3038
  msgid "Listings per page"
3039
  msgstr "Einträge pro Seite"
3040
 
3041
- #: core/class-settings.php:145
3042
  msgctxt "admin settings"
3043
  msgid ""
3044
  "Number of listings to show per page. Use a value of \"0\" to show all "
@@ -3047,12 +3098,12 @@ msgstr ""
3047
  "Nummer der Einträge die pro Seite angezeigt werden. Benutze einen Wert von "
3048
  "\"0\" um alle Einträge anzuzeigen."
3049
 
3050
- #: core/class-settings.php:147
3051
  msgctxt "admin settings"
3052
  msgid "Listing duration for no-fee sites (in days)"
3053
  msgstr "Eintrag Zeitraum für kostenlose Seiten (in Tagen)"
3054
 
3055
- #: core/class-settings.php:148
3056
  msgctxt "admin settings"
3057
  msgid ""
3058
  "Use a value of \"0\" to keep a listing alive indefinitely or enter a number "
@@ -3061,12 +3112,12 @@ msgstr ""
3061
  "Benutze einen Wert von \"0\" um ein Eintrag undefiniert zu lassen oder "
3062
  "benutze eine Nummer unter 10 Jahren (3650 Tage)"
3063
 
3064
- #: core/class-settings.php:154
3065
  msgctxt "admin settings"
3066
  msgid "Include listing contact form on listing pages?"
3067
  msgstr "Kontaktform in Eintragsseiten einfügen?"
3068
 
3069
- #: core/class-settings.php:157
3070
  msgctxt "admin settings"
3071
  msgid ""
3072
  "Allows visitors to contact listing authors privately. Authors will receive "
@@ -3075,17 +3126,17 @@ msgstr ""
3075
  "Benutzer erlauben den Eintragsauthor privat zu kontaktieren. Der Author "
3076
  "bekommt eine Nachricht per E-mail zugeschickt."
3077
 
3078
- #: core/class-settings.php:160
3079
  msgctxt "admin settings"
3080
  msgid "Require login for using the contact form?"
3081
  msgstr "Einloggen um die Kontaktform zu benutzen?"
3082
 
3083
- #: core/class-settings.php:166
3084
  msgctxt "admin settings"
3085
  msgid "Maximum number of contact form submits per day"
3086
  msgstr "Maximale Nummer der Kontaktformmails die pro Tag zugesendet werden"
3087
 
3088
- #: core/class-settings.php:169
3089
  msgctxt "admin settings"
3090
  msgid ""
3091
  "Use this to prevent spamming of listing owners. 0 means unlimited submits "
@@ -3094,12 +3145,12 @@ msgstr ""
3094
  "Benutze dieses Feld um spamming von Einträgen zu vermeiden. 0 heisst "
3095
  "unbegrenzt pro Tag."
3096
 
3097
- #: core/class-settings.php:175
3098
  msgctxt "admin settings"
3099
  msgid "Include comment form on listing pages?"
3100
  msgstr "Kommentarform einfügen in Eintragsseiten?"
3101
 
3102
- #: core/class-settings.php:178
3103
  msgctxt "admin settings"
3104
  msgid ""
3105
  "Allow visitors to discuss listings using the standard WordPress comment "
@@ -3108,37 +3159,37 @@ msgstr ""
3108
  "Besuchern erlauben die Einträge mit der Standard Wordpress Form zu "
3109
  "diskutieren. Kommentare sind öffentlich."
3110
 
3111
- #: core/class-settings.php:179
3112
  msgctxt "admin settings"
3113
  msgid "Show listings under categories on main page?"
3114
  msgstr "Einträge unter Kategorien anzeigen auf der Hauptseite?"
3115
 
3116
- #: core/class-settings.php:180
3117
  msgctxt "admin settings"
3118
  msgid "Status of listings upon uninstalling plugin"
3119
  msgstr "Status der Einträge bei Deinstallation der Erweiterung"
3120
 
3121
- #: core/class-settings.php:182
3122
  msgctxt "admin settings"
3123
  msgid "Status of deleted listings"
3124
  msgstr "Status der gelöschten Einträge"
3125
 
3126
- #: core/class-settings.php:185
3127
  msgctxt "admin settings"
3128
  msgid "Listing Renewal"
3129
  msgstr "Einträge erneuern"
3130
 
3131
- #: core/class-settings.php:186
3132
  msgctxt "admin settings"
3133
  msgid "Turn on listing renewal option?"
3134
  msgstr "Option zur Erneuerung von Einträgen aktivieren?"
3135
 
3136
- #: core/class-settings.php:189
3137
  msgctxt "admin settings"
3138
  msgid "Allow recurring renewal payments?"
3139
  msgstr "Wiederholte Bezahlung erlauben?"
3140
 
3141
- #: core/class-settings.php:192
3142
  msgctxt "admin settings"
3143
  msgid ""
3144
  "Allow users to opt in for automatic renewal of their listings. The fee is "
@@ -3148,12 +3199,12 @@ msgstr ""
3148
  "anzumelden. Der Preis wird abgebucht, zu dem Zeitpunkt an dem der Eintrag "
3149
  "abläuft, ohne Eingriff durch den Benutzer."
3150
 
3151
- #: core/class-settings.php:196
3152
  msgctxt "admin settings"
3153
  msgid "Use recurring payments as the default payment method?"
3154
  msgstr "Benutze automatische Abbuchungen als Standardbezahlmethode?"
3155
 
3156
- #: core/class-settings.php:199
3157
  msgctxt "admin settings"
3158
  msgid ""
3159
  "Enable automatic renewal without having users opt in during the submit "
@@ -3162,12 +3213,12 @@ msgstr ""
3162
  "Automatische Abbuchung aktivieren, ohne die Anmeldung durch den Benutzer "
3163
  "während der Einreichung."
3164
 
3165
- #: core/class-settings.php:204
3166
  msgctxt "admin settings"
3167
  msgid "Listing renewal e-mail threshold (in days)"
3168
  msgstr "Eintragsabbuchungsemail Grenze (in tagen)"
3169
 
3170
- #: core/class-settings.php:207
3171
  msgctxt "admin settings"
3172
  msgid ""
3173
  "Configure how many days before listing expiration is the renewal e-mail sent."
@@ -3175,7 +3226,7 @@ msgstr ""
3175
  "Konfiguriere wieviel Tage vor der Abbuchung eine Buchungsmail verschickt "
3176
  "wird."
3177
 
3178
- #: core/class-settings.php:211
3179
  msgctxt "admin settings"
3180
  msgid ""
3181
  "Send expiration notices including a cancel links to auto-renewed listings?"
@@ -3183,17 +3234,17 @@ msgstr ""
3183
  "Sende eine Ablaufinformation die einen Beenden und einen Automatisch Eintrag "
3184
  "Erneuern Link enghält?"
3185
 
3186
- #: core/class-settings.php:218
3187
  msgctxt "admin settings"
3188
  msgid "Remind listing owners of expired listings (past due)?"
3189
  msgstr "Eintraginhaber an abgelaufene Einträge erinnern (überfällig)?"
3190
 
3191
- #: core/class-settings.php:223
3192
  msgctxt "admin settings"
3193
  msgid "Listing renewal reminder e-mail threshold (in days)"
3194
  msgstr "Einträge erneuern E-mail Grenze (in Tagen)"
3195
 
3196
- #: core/class-settings.php:226
3197
  msgctxt "admin settings"
3198
  msgid ""
3199
  "Configure how many days after the expiration of a listing an e-mail reminder "
@@ -3202,164 +3253,164 @@ msgstr ""
3202
  "Konfiguriere wie viele Tage nach dem Ablauf eines Eintrags eine E-mail an "
3203
  "den Inhaber versendet wird."
3204
 
3205
- #: core/class-settings.php:229
3206
  msgctxt "admin settings"
3207
  msgid "Post/Category Settings"
3208
  msgstr "Post/Kategorie Einstellungen"
3209
 
3210
- #: core/class-settings.php:230
3211
  msgctxt "admin settings"
3212
  msgid "Default new post status"
3213
  msgstr "Standard neuer Post Status"
3214
 
3215
- #: core/class-settings.php:233
3216
  msgctxt "admin settings"
3217
  msgid "Edit post status"
3218
  msgstr "Post Status Bearbeiten"
3219
 
3220
- #: core/class-settings.php:235
3221
  msgctxt "admin settings"
3222
  msgid "Order categories list by"
3223
  msgstr "Anordnung Kategorieliste durch"
3224
 
3225
- #: core/class-settings.php:237
3226
  msgctxt "admin settings"
3227
  msgid "Name"
3228
  msgstr "Name"
3229
 
3230
- #: core/class-settings.php:238
3231
  msgctxt "admin settings"
3232
  msgid "Slug"
3233
  msgstr "Entwurf"
3234
 
3235
- #: core/class-settings.php:239
3236
  msgctxt "admin settings"
3237
  msgid "Listing Count"
3238
  msgstr "Anzahl Einträge"
3239
 
3240
- #: core/class-settings.php:241
3241
  msgctxt "admin settings"
3242
  msgid "Sort order for categories"
3243
  msgstr "Sortierung für Kategorien"
3244
 
3245
- #: core/class-settings.php:242 core/class-settings.php:260
3246
  msgctxt "admin settings"
3247
  msgid "Ascending"
3248
  msgstr "Aufsteigend"
3249
 
3250
- #: core/class-settings.php:242 core/class-settings.php:260
3251
  msgctxt "admin settings"
3252
  msgid "Descending"
3253
  msgstr "Absteigend"
3254
 
3255
- #: core/class-settings.php:243
3256
  msgctxt "admin settings"
3257
  msgid "Show category post count?"
3258
  msgstr "Kategoriepost Anzahl anzeigen?"
3259
 
3260
- #: core/class-settings.php:244
3261
  msgctxt "admin settings"
3262
  msgid "Hide empty categories?"
3263
  msgstr "Leere Kategorien verbergen?"
3264
 
3265
- #: core/class-settings.php:245
3266
  msgctxt "admin settings"
3267
  msgid "Show only parent categories in category list?"
3268
  msgstr "Nur Elternkategorien in Kategorieliste anzeigen?"
3269
 
3270
- #: core/class-settings.php:247
3271
  msgctxt "admin settings"
3272
  msgid "Listings Sorting"
3273
  msgstr "Sortierung Einträge"
3274
 
3275
- #: core/class-settings.php:248
3276
  msgctxt "admin settings"
3277
  msgid "Order directory listings by"
3278
  msgstr "Anordnung Verzeichniseinträge durch"
3279
 
3280
- #: core/class-settings.php:250
3281
  msgctxt "admin settings"
3282
  msgid "Title"
3283
  msgstr "Titel"
3284
 
3285
- #: core/class-settings.php:251
3286
  msgctxt "admin settings"
3287
  msgid "Author"
3288
  msgstr "Author"
3289
 
3290
- #: core/class-settings.php:252
3291
  msgctxt "admin settings"
3292
  msgid "Date posted"
3293
  msgstr "Datum gepostet"
3294
 
3295
- #: core/class-settings.php:253
3296
  msgctxt "admin settings"
3297
  msgid "Date last modified"
3298
  msgstr "Datum zuletzt verändert"
3299
 
3300
- #: core/class-settings.php:254
3301
  msgctxt "admin settings"
3302
  msgid "Random"
3303
  msgstr "Zufall"
3304
 
3305
- #: core/class-settings.php:255
3306
  msgctxt "admin settings"
3307
  msgid "Paid first then free. Inside each group by date."
3308
  msgstr ""
3309
 
3310
- #: core/class-settings.php:256
3311
  msgctxt "admin settings"
3312
  msgid "Paid first then free. Inside each group by title."
3313
  msgstr ""
3314
 
3315
- #: core/class-settings.php:258
3316
  msgctxt "admin settings"
3317
  msgid "Sort directory listings by"
3318
  msgstr "Verzeichnissortierung der Einträge durch"
3319
 
3320
- #: core/class-settings.php:259
3321
  msgctxt "admin settings"
3322
  msgid "Ascending for ascending order A-Z, Descending for descending order Z-A"
3323
  msgstr ""
3324
  "Aufsteigend für aufsteigende Reihenfolge A-Z, Absteigend für absteigende "
3325
  "Reihenfolge Z-A"
3326
 
3327
- #: core/class-settings.php:264
3328
  msgctxt "admin settings"
3329
  msgid "Enable sort bar?"
3330
  msgstr "Sortierung aktivieren?"
3331
 
3332
- #: core/class-settings.php:269
3333
  msgctxt "admin settings"
3334
  msgid "Sortbar Fields"
3335
  msgstr "Sortierbare Felder"
3336
 
3337
- #: core/class-settings.php:278
3338
  msgctxt "admin settings"
3339
  msgid "Featured (Sticky) listing settings"
3340
  msgstr "Unterstützte (unbewegliche) Eintrageinstellungen"
3341
 
3342
- #: core/class-settings.php:279
3343
  msgctxt "admin settings"
3344
  msgid "Offer sticky listings?"
3345
  msgstr "Unbewegliche Einträge anbieten? "
3346
 
3347
- #: core/class-settings.php:280
3348
  msgctxt "admin settings"
3349
  msgid "Offer upgrades during submit process?"
3350
  msgstr "Aktualisierungen anbieten im Bestellprozess?"
3351
 
3352
- #: core/class-settings.php:281
3353
  msgctxt "admin settings"
3354
  msgid "Sticky listing price"
3355
  msgstr "Unbeweglicher Eintragspreis"
3356
 
3357
- #: core/class-settings.php:282
3358
  msgctxt "admin settings"
3359
  msgid "Sticky listing page description text"
3360
  msgstr "Unbewegliche Eintragsseite Beschreibung"
3361
 
3362
- #: core/class-settings.php:283
3363
  msgctxt "admin settings"
3364
  msgid ""
3365
  "You can upgrade your listing to featured status. Featured listings will "
@@ -3368,17 +3419,17 @@ msgstr ""
3368
  "Du kannst dein Eintrag in den hervorgehobenen Status aktualisieren. "
3369
  "Unterstützte Einträge werden immer ganz oben eines Eintrags angezeigt."
3370
 
3371
- #: core/class-settings.php:288
3372
  msgctxt "admin settings"
3373
  msgid "E-Mail"
3374
  msgstr "E-mail"
3375
 
3376
- #: core/class-settings.php:292
3377
  msgctxt "admin settings"
3378
  msgid "Display email address fields publicly?"
3379
  msgstr "E-mail Adressfeld öffentlich anzeigen?"
3380
 
3381
- #: core/class-settings.php:295
3382
  msgctxt "admin settings"
3383
  msgid ""
3384
  "Shows the email address of the listing owner to all web users. NOT "
@@ -3387,12 +3438,12 @@ msgid ""
3387
  msgstr ""
3388
  "E-mailadresse allen Benutzern anzeigen. NICHT ZU EMPFEHLEN. Achtung Spam!"
3389
 
3390
- #: core/class-settings.php:298
3391
  msgctxt "admin settings"
3392
  msgid "How to determine the listing's email address?"
3393
  msgstr "Wie legt man die E-mailadresse für einen Eintrag fest?"
3394
 
3395
- #: core/class-settings.php:301
3396
  msgctxt "admin settings"
3397
  msgid ""
3398
  "This affects emails sent to listing owners via contact forms or when their "
@@ -3401,115 +3452,115 @@ msgstr ""
3401
  "Dies bewirkt, dass eine E-mail an den Eigentümer geschickt wird, wenn der "
3402
  "Eintrag abläuft."
3403
 
3404
- #: core/class-settings.php:308
3405
  msgctxt "admin settings"
3406
  msgid "E-Mail Notifications"
3407
  msgstr "Email Erinnerung"
3408
 
3409
- #: core/class-settings.php:311
3410
  msgctxt "admin settings"
3411
  msgid "Notify admin via e-mail when..."
3412
  msgstr "Administrator per E-mail informieren wenn... "
3413
 
3414
- #: core/class-settings.php:315
3415
  msgctxt "admin settings"
3416
  msgid "A new listing is submitted."
3417
  msgstr "Ein neuer Eintrag wurde eingestellt."
3418
 
3419
- #: core/class-settings.php:316
3420
  msgctxt "admin settings"
3421
  msgid "A listing is edited."
3422
  msgstr "Ein Eintrag wurde bearbeitet."
3423
 
3424
- #: core/class-settings.php:317
3425
  msgctxt "admin settings"
3426
  msgid "A listing expires."
3427
  msgstr "Ein Eintrag ist abgelaufen."
3428
 
3429
- #: core/class-settings.php:318
3430
  msgctxt "admin settings"
3431
  msgid "A contact message is sent to a listing's owner."
3432
  msgstr "Eine Nachricht wurde an den Eigentümer verschickt."
3433
 
3434
- #: core/class-settings.php:324
3435
  msgctxt "admin settings"
3436
  msgid "CC this e-mail address too"
3437
  msgstr "CC diese E-mail an"
3438
 
3439
- #: core/class-settings.php:330
3440
  msgctxt "admin settings"
3441
  msgid "Notify users via e-mail when..."
3442
  msgstr "Benachrichtige Benutzer per E-mail wenn..."
3443
 
3444
- #: core/class-settings.php:333
3445
  msgctxt "admin settings"
3446
  msgid "You can modify the text template used for most of these e-mails below."
3447
  msgstr ""
3448
  "Du kannst dieses Texttemplate verändern, das für die meisten der E-"
3449
  "mailadressen unten verwendet wird."
3450
 
3451
- #: core/class-settings.php:334
3452
  msgctxt "admin settings"
3453
  msgid "Their listing is submitted."
3454
  msgstr "Ihr Eintrag ist eingereicht."
3455
 
3456
- #: core/class-settings.php:335
3457
  msgctxt "admin settings"
3458
  msgid "Their listing is approved/published."
3459
  msgstr "Ihr Eintrag ist genehmigt/veröffentlicht."
3460
 
3461
- #: core/class-settings.php:344
3462
  msgctxt "contact email"
3463
  msgid "You have received a reply from your listing at %s."
3464
  msgstr "Sie haben eine Antwort auf Ihren Eintrag erhalten am %s."
3465
 
3466
- #: core/class-settings.php:345
3467
  msgctxt "contact email"
3468
  msgid "Name: %s"
3469
  msgstr "Name: %s"
3470
 
3471
- #: core/class-settings.php:346
3472
  msgctxt "contact email"
3473
  msgid "E-Mail: %s"
3474
  msgstr "E-mail: %s"
3475
 
3476
- #: core/class-settings.php:347
3477
  msgctxt "contact email"
3478
  msgid "Message:"
3479
  msgstr "Nachricht:"
3480
 
3481
- #: core/class-settings.php:349
3482
  msgctxt "contact email"
3483
  msgid "Time: %s"
3484
  msgstr "Zeit: %s"
3485
 
3486
- #: core/class-settings.php:351
3487
  msgctxt "admin settings"
3488
  msgid "E-Mail Templates"
3489
  msgstr "E-mail Templates"
3490
 
3491
- #: core/class-settings.php:354
3492
  msgctxt "admin settings"
3493
  msgid "Email confirmation message"
3494
  msgstr "Email Bestätigungsnachricht"
3495
 
3496
- #: core/class-settings.php:358
3497
  msgctxt "admin settings"
3498
  msgid "Sent after a listing has been submitted."
3499
  msgstr "Senden nachdem der Eintrag eingestellt wurde."
3500
 
3501
- #: core/class-settings.php:359 core/class-settings.php:367
3502
- #: core/class-settings.php:408
3503
  msgctxt "admin settings"
3504
  msgid "Listing's title"
3505
  msgstr "Eintrag Titel"
3506
 
3507
- #: core/class-settings.php:362
3508
  msgctxt "admin settings"
3509
  msgid "Listing published message"
3510
  msgstr "Eintrag veröffentlicht Nachricht"
3511
 
3512
- #: core/class-settings.php:365
3513
  msgctxt "admin settings"
3514
  msgid ""
3515
  "Your listing \"[listing]\" is now available at [listing-url] and can be "
@@ -3518,24 +3569,24 @@ msgstr ""
3518
  "Dein Eintrag \"[listing]\" ist jetzt verfügbar unter [listing-url] und "
3519
  "kann öffentlich eingesehen werden."
3520
 
3521
- #: core/class-settings.php:366
3522
  msgctxt "admin settings"
3523
  msgid "Sent when the listing has been published or approved by an admin."
3524
  msgstr ""
3525
  "Senden wenn der Eintrag vom Administrator genehmigt oder veröffentlicht "
3526
  "wurde."
3527
 
3528
- #: core/class-settings.php:368
3529
  msgctxt "admin settings"
3530
  msgid "Listing's URL"
3531
  msgstr "Eintrags URL"
3532
 
3533
- #: core/class-settings.php:372
3534
  msgctxt "admin settings"
3535
  msgid "Listing Contact Message"
3536
  msgstr "Eintrag Kontakt Nachricht"
3537
 
3538
- #: core/class-settings.php:376
3539
  msgctxt "admin settings"
3540
  msgid ""
3541
  "Sent to listing owners when someone uses the contact form on their listing "
@@ -3544,35 +3595,35 @@ msgstr ""
3544
  "An den Eigentümer senden wenn jemand die Kontaktform auf Ihrer Eintragsseite "
3545
  "verwendet."
3546
 
3547
- #: core/class-settings.php:386
3548
  #, fuzzy
3549
  msgctxt "admin settings"
3550
  msgid "Payment related"
3551
  msgstr "Bezahlmethode"
3552
 
3553
- #: core/class-settings.php:403
3554
  #, fuzzy
3555
  msgctxt "admin settings"
3556
  msgid "Payment abandoned reminder message"
3557
  msgstr "Erneuerungserinnerung E-mail Nachricht"
3558
 
3559
- #: core/class-settings.php:407
3560
  msgctxt "admin settings"
3561
  msgid "Sent some time after a pending payment is abandoned by users."
3562
  msgstr ""
3563
 
3564
- #: core/class-settings.php:409
3565
  #, fuzzy
3566
  msgctxt "admin settings"
3567
  msgid "Checkout URL link"
3568
  msgstr "Kasse"
3569
 
3570
- #: core/class-settings.php:415
3571
  msgctxt "admin settings"
3572
  msgid "Renewal Reminders"
3573
  msgstr "Erneuerungserinnerung"
3574
 
3575
- #: core/class-settings.php:418
3576
  msgctxt "admin settings"
3577
  msgid ""
3578
  "This section refers only to the text of the renewal/expiration notices. You "
@@ -3582,12 +3633,12 @@ msgstr ""
3582
  "Nachricht. Du kannst auch <a>konfigurieren wann die E-mails gesendet werden</"
3583
  "a>"
3584
 
3585
- #: core/class-settings.php:422
3586
  msgctxt "admin settings"
3587
  msgid "Pending expiration e-mail message"
3588
  msgstr "Ausstehende Abgelaufen E-mail Nachricht"
3589
 
3590
- #: core/class-settings.php:426
3591
  msgctxt "settings"
3592
  msgid ""
3593
  "Sent some time before the listing expires. Applies to non-recurring renewals "
@@ -3596,50 +3647,50 @@ msgstr ""
3596
  "Einige Zeit bevor der Eintrag abläuft senden. Wird nur bei kostenlosen "
3597
  "Erneuerungen verwendet."
3598
 
3599
- #: core/class-settings.php:427 core/class-settings.php:440
3600
- #: core/class-settings.php:453 core/class-settings.php:466
3601
- #: core/class-settings.php:479
3602
  msgctxt "settings"
3603
  msgid "Listing's name (with link)"
3604
  msgstr "Eintragsname (mit Link)"
3605
 
3606
- #: core/class-settings.php:428 core/class-settings.php:441
3607
- #: core/class-settings.php:454 core/class-settings.php:467
3608
- #: core/class-settings.php:480
3609
  msgctxt "settings"
3610
  msgid "Author's name"
3611
  msgstr "Authorname"
3612
 
3613
- #: core/class-settings.php:429 core/class-settings.php:442
3614
- #: core/class-settings.php:481
3615
  msgctxt "settings"
3616
  msgid "Expiration date"
3617
  msgstr "Ablaufdatum"
3618
 
3619
- #: core/class-settings.php:430
3620
  msgctxt "settings"
3621
  msgid "Category that is going to expire"
3622
  msgstr "Kategorie die bald abläuft"
3623
 
3624
- #: core/class-settings.php:431 core/class-settings.php:444
3625
- #: core/class-settings.php:483
3626
  msgctxt "settings"
3627
  msgid "Link to renewal page"
3628
  msgstr "Link zu erneuerten Seite"
3629
 
3630
- #: core/class-settings.php:432 core/class-settings.php:445
3631
- #: core/class-settings.php:457 core/class-settings.php:470
3632
- #: core/class-settings.php:484
3633
  msgctxt "settings"
3634
  msgid "Link to your site"
3635
  msgstr "Link zu deiner Seite"
3636
 
3637
- #: core/class-settings.php:435
3638
  msgctxt "admin settings"
3639
  msgid "Listing Renewal e-mail message"
3640
  msgstr "Eintrag Erneuerung E-mail Nachricht"
3641
 
3642
- #: core/class-settings.php:439
3643
  msgctxt "settings"
3644
  msgid ""
3645
  "Sent at the time of listing expiration. Applies to non-recurring renewals "
@@ -3648,17 +3699,17 @@ msgstr ""
3648
  "Zur Zeit wenn der Eintrag abläuft senden. Wird nur bei kostenlosen "
3649
  "Erneuerungen verwendet."
3650
 
3651
- #: core/class-settings.php:443 core/class-settings.php:482
3652
  msgctxt "settings"
3653
  msgid "Category that expired"
3654
  msgstr "Ablaufende Kategorie"
3655
 
3656
- #: core/class-settings.php:448
3657
  msgctxt "admin settings"
3658
  msgid "Listing auto-renewal reminder (recurring payments)"
3659
  msgstr "Eintrag automatische Erneuerungserinnerung (Abbuchungen)"
3660
 
3661
- #: core/class-settings.php:452
3662
  msgctxt "settings"
3663
  msgid ""
3664
  "Sent some time before the listing is auto-renewed. Applies to recurring "
@@ -3667,27 +3718,27 @@ msgstr ""
3667
  "Einige Zeit bevor der Eintrag abläuft senden. Wird nur bei bezahlten "
3668
  "Erneuerungen verwendet."
3669
 
3670
- #: core/class-settings.php:455 core/class-settings.php:469
3671
  msgctxt "settings"
3672
  msgid "Renewal date"
3673
  msgstr "Erneuerungsdatum"
3674
 
3675
- #: core/class-settings.php:456
3676
  msgctxt "settings"
3677
  msgid "Category that is going to be renewed"
3678
  msgstr "Kategorie die erneuert werden soll"
3679
 
3680
- #: core/class-settings.php:458
3681
  msgctxt "settings"
3682
  msgid "Link to manage subscriptions"
3683
  msgstr "Link um Abos zu verwalten"
3684
 
3685
- #: core/class-settings.php:461
3686
  msgctxt "admin settings"
3687
  msgid "Listing Renewal e-mail message (recurring payments)"
3688
  msgstr "Eintragserneuerungs E-mail Nachricht (Abbuchungen)"
3689
 
3690
- #: core/class-settings.php:465
3691
  msgctxt "settings"
3692
  msgid ""
3693
  "Sent after the listing is auto-renewed. Applies to recurring renewals only."
@@ -3695,17 +3746,17 @@ msgstr ""
3695
  "Sende nachdem der Eintrag automatisch erneuert wurde. Wird nur bei bezahlten "
3696
  "Erneuerungen verwendet."
3697
 
3698
- #: core/class-settings.php:468
3699
  msgctxt "settings"
3700
  msgid "Renewed category"
3701
  msgstr "Erneuerte Kategorie"
3702
 
3703
- #: core/class-settings.php:474
3704
  msgctxt "admin settings"
3705
  msgid "Renewal reminder e-mail message"
3706
  msgstr "Erneuerungserinnerung E-mail Nachricht"
3707
 
3708
- #: core/class-settings.php:478
3709
  msgctxt "settings"
3710
  msgid ""
3711
  "Sent some time after listing expiration and when no renewal has occurred. "
@@ -3714,33 +3765,33 @@ msgstr ""
3714
  "Einige Zeit nachdem der Eintrag abgelaufen und keine Erneuerung beauftragt "
3715
  "wurde senden. Wird bei bezahlten und kostenlosen Erneuerungen verwendet."
3716
 
3717
- #: core/class-settings.php:488
3718
  msgctxt "admin settings"
3719
  msgid "Payment"
3720
  msgstr "Bezahlung"
3721
 
3722
- #: core/class-settings.php:489
3723
  msgctxt "admin settings"
3724
  msgid "Payment Settings"
3725
  msgstr "Bezahlung Einstellungen"
3726
 
3727
- #: core/class-settings.php:492
3728
  msgctxt "admin settings"
3729
  msgid "Turn On payments?"
3730
  msgstr "Bezahlungen aktivieren?"
3731
 
3732
- #: core/class-settings.php:494
3733
  msgctxt "admin settings"
3734
  msgid "Put payment gateways in test mode?"
3735
  msgstr "Bezahlungsgateway im Testmodus ausführen?"
3736
 
3737
- #: core/class-settings.php:499
3738
  msgctxt "admin settings"
3739
  msgid "Perform checkouts on the secure (HTTPS) version of your site?"
3740
  msgstr ""
3741
  "Aktiviere (HTTPS) sichere Verbindung für den Bestellprozess deiner Seite?"
3742
 
3743
- #: core/class-settings.php:502
3744
  msgctxt "admin settings"
3745
  msgid ""
3746
  "Recommended for added security. For this to work you need to enable HTTPS on "
@@ -3749,165 +3800,165 @@ msgstr ""
3749
  "Empfohlen zur Erweiterung der Sicherheit. Aktiviere HTTPS auf deinem Server "
3750
  "und <a>erhalte ein SSL Zertifikat</a>"
3751
 
3752
- #: core/class-settings.php:506
3753
  msgctxt "admin settings"
3754
  msgid "Currency Code"
3755
  msgstr "Währungsschlüssel"
3756
 
3757
- #: core/class-settings.php:508
3758
  msgctxt "admin settings"
3759
  msgid "Australian Dollar (AUD)"
3760
  msgstr "Australischer Dollar (AUD)"
3761
 
3762
- #: core/class-settings.php:509
3763
  msgctxt "admin settings"
3764
  msgid "Brazilian Real (BRL)"
3765
  msgstr "Brasilianischer Real (BRL)"
3766
 
3767
- #: core/class-settings.php:510
3768
  msgctxt "admin settings"
3769
  msgid "Canadian Dollar (CAD)"
3770
  msgstr "Kanadischer Dollar (CAD)"
3771
 
3772
- #: core/class-settings.php:511
3773
  msgctxt "admin settings"
3774
  msgid "Czech Koruna (CZK)"
3775
  msgstr "Tschechische Koruna (CZK)"
3776
 
3777
- #: core/class-settings.php:512
3778
  msgctxt "admin settings"
3779
  msgid "Danish Krone (DKK)"
3780
  msgstr "Dänische Krone (DKK)"
3781
 
3782
- #: core/class-settings.php:513
3783
  msgctxt "admin settings"
3784
  msgid "Euro (EUR)"
3785
  msgstr "Euro (EUR)"
3786
 
3787
- #: core/class-settings.php:514
3788
  msgctxt "admin settings"
3789
  msgid "Hong Kong Dollar (HKD)"
3790
  msgstr "Hong Kong Dollar (HKD)"
3791
 
3792
- #: core/class-settings.php:515
3793
  msgctxt "admin settings"
3794
  msgid "Hungarian Forint (HUF)"
3795
  msgstr "Ungarischer Forint (HUF)"
3796
 
3797
- #: core/class-settings.php:516
3798
  msgctxt "admin settings"
3799
  msgid "Israeli New Shequel (ILS)"
3800
  msgstr "Israelischer Neuer Schequel (ILS)"
3801
 
3802
- #: core/class-settings.php:517
3803
  msgctxt "admin settings"
3804
  msgid "Japanese Yen (JPY)"
3805
  msgstr "Japanischer Jen (JPY)"
3806
 
3807
- #: core/class-settings.php:518
3808
  msgctxt "admin settings"
3809
  msgid "Malasian Ringgit (MYR)"
3810
  msgstr "Malaysischer Ringgit (MYR)"
3811
 
3812
- #: core/class-settings.php:519
3813
  msgctxt "admin settings"
3814
  msgid "Mexican Peso (MXN)"
3815
  msgstr "Mexikanischer Peso (MXN)"
3816
 
3817
- #: core/class-settings.php:520
3818
  msgctxt "admin settings"
3819
  msgid "Norwegian Krone (NOK)"
3820
  msgstr "Norwegische Krone (NOK)"
3821
 
3822
- #: core/class-settings.php:521
3823
  msgctxt "admin settings"
3824
  msgid "New Zealand Dollar (NZD)"
3825
  msgstr "Neuseeland Dollar (NZD)"
3826
 
3827
- #: core/class-settings.php:522
3828
  msgctxt "admin settings"
3829
  msgid "Philippine Peso (PHP)"
3830
  msgstr "Philippinischer Peso (PHP)"
3831
 
3832
- #: core/class-settings.php:523
3833
  msgctxt "admin settings"
3834
  msgid "Polish Zloty (PLN)"
3835
  msgstr "Polnischer Zloty (PLN)"
3836
 
3837
- #: core/class-settings.php:524
3838
  msgctxt "admin settings"
3839
  msgid "Pound Sterling (GBP)"
3840
  msgstr "Pfund Sterling (GBP)"
3841
 
3842
- #: core/class-settings.php:525
3843
  msgctxt "admin settings"
3844
  msgid "Singapore Dollar (SGD)"
3845
  msgstr "Singapore Dollar (SGD)"
3846
 
3847
- #: core/class-settings.php:526
3848
  msgctxt "admin settings"
3849
  msgid "Swedish Krona (SEK)"
3850
  msgstr "Schwedische Krone (SEK)"
3851
 
3852
- #: core/class-settings.php:527
3853
  msgctxt "admin settings"
3854
  msgid "Swiss Franc (CHF)"
3855
  msgstr "Schweizer Franken (CHF)"
3856
 
3857
- #: core/class-settings.php:528
3858
  msgctxt "admin settings"
3859
  msgid "Taiwan Dollar (TWD)"
3860
  msgstr "Taiwanischer Dollar (TWD)"
3861
 
3862
- #: core/class-settings.php:529
3863
  msgctxt "admin settings"
3864
  msgid "Thai Baht (THB)"
3865
  msgstr "Thailändischer Baht (THB)"
3866
 
3867
- #: core/class-settings.php:530
3868
  msgctxt "admin settings"
3869
  msgid "Turkish Lira (TRY)"
3870
  msgstr "Türkische Lira (TRY)"
3871
 
3872
- #: core/class-settings.php:531
3873
  #, fuzzy
3874
  msgctxt "admin settings"
3875
  msgid "U.S. Dollar (USD)"
3876
  msgstr "U.S. Dollar"
3877
 
3878
- #: core/class-settings.php:535
3879
  msgctxt "admin settings"
3880
  msgid "Currency Symbol"
3881
  msgstr "Währungssymbol"
3882
 
3883
- #: core/class-settings.php:540
3884
  #, fuzzy
3885
  msgctxt "admin settings"
3886
  msgid "Currency symbol display"
3887
  msgstr "Währungssymbol"
3888
 
3889
- #: core/class-settings.php:544
3890
  msgctxt "admin settings"
3891
  msgid "Show currency symbol on the left"
3892
  msgstr ""
3893
 
3894
- #: core/class-settings.php:545
3895
  msgctxt "admin settings"
3896
  msgid "Show currency symbol on the right"
3897
  msgstr ""
3898
 
3899
- #: core/class-settings.php:546
3900
  #, fuzzy
3901
  msgctxt "admin settings"
3902
  msgid "Do not show currency symbol"
3903
  msgstr "Währungssymbol"
3904
 
3905
- #: core/class-settings.php:548
3906
  msgctxt "admin settings"
3907
  msgid "Thank you for payment message"
3908
  msgstr "Danke für die Bezahlung Nachricht"
3909
 
3910
- #: core/class-settings.php:549
3911
  msgctxt "admin settings"
3912
  msgid ""
3913
  "Thank you for your payment. Your payment is being verified and your listing "
@@ -3917,12 +3968,12 @@ msgstr ""
3917
  "geprüft. Die Verifizierung und die Prüfung können 48 Stunden in Anspruch "
3918
  "nehmen."
3919
 
3920
- #: core/class-settings.php:554
3921
  msgctxt "admin settings"
3922
  msgid "Ask users to come back for abandoned payments?"
3923
  msgstr ""
3924
 
3925
- #: core/class-settings.php:557
3926
  msgctxt "admin settings"
3927
  msgid ""
3928
  "An abandoned payment is when a user attempts to place a listing and gets to "
@@ -3931,41 +3982,86 @@ msgid ""
3931
  "the transaction. BD can remind them to come back and continue."
3932
  msgstr ""
3933
 
3934
- #: core/class-settings.php:563
3935
  #, fuzzy
3936
  msgctxt "admin settings"
3937
  msgid "Listing abandonment threshold (hours)"
3938
  msgstr "Eintragsabbuchungsemail Grenze (in tagen)"
3939
 
3940
- #: core/class-settings.php:568
3941
  msgctxt "admin settings"
3942
  msgid ""
3943
  "Listings with pending payments are marked as abandoned after this time. You "
3944
  "can also <a>customize the e-mail</a> users receive."
3945
  msgstr ""
3946
 
3947
- #: core/class-settings.php:574
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
3948
  msgctxt "admin settings"
3949
  msgid "Registration"
3950
  msgstr "Registrierung"
3951
 
3952
- #: core/class-settings.php:575
 
 
 
 
 
 
 
 
3953
  msgctxt "admin settings"
3954
  msgid "Registration Settings"
3955
  msgstr "Registrierung Einstellungen"
3956
 
3957
- #: core/class-settings.php:576
3958
  #, fuzzy
3959
  msgctxt "admin settings"
3960
  msgid "Require login to post listings?"
3961
  msgstr "Zurück zum Eintrag."
3962
 
3963
- #: core/class-settings.php:581
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
3964
  msgctxt "admin settings"
3965
  msgid "Registration URL"
3966
  msgstr "Registrierung URL"
3967
 
3968
- #: core/class-settings.php:584
3969
  msgctxt "admin settings"
3970
  msgid ""
3971
  "URL of your membership plugin's registration page. Only enter this if using "
@@ -3975,12 +4071,12 @@ msgstr ""
3975
  "ein Membership Plugin oder eine benutzerdefinierte Registrierungseite "
3976
  "benutzt. "
3977
 
3978
- #: core/class-settings.php:588
3979
  msgctxt "admin settings"
3980
  msgid "Image"
3981
  msgstr "Bild"
3982
 
3983
- #: core/class-settings.php:589
3984
  msgctxt "admin settings"
3985
  msgid ""
3986
  "Any changes to these settings will affect new listings only. Existing "
@@ -3993,57 +4089,57 @@ msgstr ""
3993
  "existierende Einträge verändert werden, musst du Bild(er) neu hochladen, "
3994
  "nachdem Einstellungen hier verändert wurden."
3995
 
3996
- #: core/class-settings.php:590
3997
  msgctxt "admin settings"
3998
  msgid "Image Settings"
3999
  msgstr "Bildeinstellungen"
4000
 
4001
- #: core/class-settings.php:591
4002
  msgctxt "admin settings"
4003
  msgid "Allow images?"
4004
  msgstr "Bilder erlauben?"
4005
 
4006
- #: core/class-settings.php:593
4007
  #, fuzzy
4008
  msgctxt "admin settings"
4009
  msgid "Min Image File Size (KB)"
4010
  msgstr "Maximale Bildgröße (KB)"
4011
 
4012
- #: core/class-settings.php:594
4013
  msgctxt "admin settings"
4014
  msgid "Max Image File Size (KB)"
4015
  msgstr "Maximale Bildgröße (KB)"
4016
 
4017
- #: core/class-settings.php:596
4018
  #, fuzzy
4019
  msgctxt "admin settings"
4020
  msgid "Min image width (px)"
4021
  msgstr "Bildergröße (in px):"
4022
 
4023
- #: core/class-settings.php:597
4024
  #, fuzzy
4025
  msgctxt "admin settings"
4026
  msgid "Min image height (px)"
4027
  msgstr "Bilderhöhe (in px):"
4028
 
4029
- #: core/class-settings.php:599
4030
  #, fuzzy
4031
  msgctxt "admin settings"
4032
  msgid "Max image width (px)"
4033
  msgstr "Maximale Bildbreite"
4034
 
4035
- #: core/class-settings.php:600
4036
  #, fuzzy
4037
  msgctxt "admin settings"
4038
  msgid "Max image height (px)"
4039
  msgstr "Maximale Bildhöhe"
4040
 
4041
- #: core/class-settings.php:602
4042
  msgctxt "admin settings"
4043
  msgid "Turn on thickbox/lightbox?"
4044
  msgstr "Kontrollkästchen/Leuchtkasten aktivieren?"
4045
 
4046
- #: core/class-settings.php:602
4047
  msgctxt "admin settings"
4048
  msgid ""
4049
  "Uncheck if it conflicts with other elements or plugins installed on your site"
@@ -4051,30 +4147,30 @@ msgstr ""
4051
  "Deaktivieren wenn Konflikte mit anderen Elementen oder installierten "
4052
  "Erweiterungen entstehen"
4053
 
4054
- #: core/class-settings.php:604
4055
  #, fuzzy
4056
  msgctxt "admin settings"
4057
  msgid "Thumbnails"
4058
  msgstr "Thumbnails"
4059
 
4060
- #: core/class-settings.php:605
4061
  #, fuzzy
4062
  msgctxt "admin settings"
4063
  msgid "Thumbnail width (px)"
4064
  msgstr "Thumbnailbreite"
4065
 
4066
- #: core/class-settings.php:606
4067
  #, fuzzy
4068
  msgctxt "admin settings"
4069
  msgid "Thumbnail height (px)"
4070
  msgstr "Thumbnailbreite"
4071
 
4072
- #: core/class-settings.php:609
4073
  msgctxt "admin settings"
4074
  msgid "Crop thumbnails to exact dimensions?"
4075
  msgstr ""
4076
 
4077
- #: core/class-settings.php:612
4078
  msgctxt "admin settings"
4079
  msgid ""
4080
  "When enabled images will match exactly the dimensions above but part of the "
@@ -4083,12 +4179,12 @@ msgid ""
4083
  "Depending on the uploaded images, thumbnails may have different heights."
4084
  msgstr ""
4085
 
4086
- #: core/class-settings.php:618
4087
  msgctxt "admin settings"
4088
  msgid "Number of free images"
4089
  msgstr "Nummer der freien Bilder"
4090
 
4091
- #: core/class-settings.php:623
4092
  msgctxt "admin settings"
4093
  msgid ""
4094
  "For paid listing images, configure that by adding or editing a <a>Fee Plan</"
@@ -4098,128 +4194,128 @@ msgstr ""
4098
  "erstellen eines <a>Preisplan</a> an Stelle dieser Einstellungen, die von "
4099
  "bezahlten Einträgen ignoriert wird."
4100
 
4101
- #: core/class-settings.php:624
4102
  msgctxt "admin settings"
4103
  msgid "Use default picture for listings with no picture?"
4104
  msgstr "Benutze Standardbilder für Einträge mit keinem Bild?"
4105
 
4106
- #: core/class-settings.php:625
4107
  msgctxt "admin settings"
4108
  msgid "Show Thumbnail on main listings page?"
4109
  msgstr "Thumbnail auf der Eintragshauptseite anzeigen?"
4110
 
4111
- #: core/class-settings.php:681
4112
  msgctxt "admin settings"
4113
  msgid ""
4114
  "Could not copy the AJAX compatibility plugin \"%s\". Compatibility mode was "
4115
  "not activated."
4116
  msgstr ""
4117
 
4118
- #: core/class-settings.php:689
4119
  msgctxt "admin settings"
4120
  msgid ""
4121
  "Could not activate AJAX Compatibility mode: the directory \"%s\" could not "
4122
  "be created."
4123
  msgstr ""
4124
 
4125
- #: core/class-settings.php:698
4126
  msgctxt "admin settings"
4127
  msgid ""
4128
  "Could not remove the \"Business Directory Plugin - AJAX Compatibility Module"
4129
  "\". Please remove the file \"%s\" manually or deactivate the plugin."
4130
  msgstr ""
4131
 
4132
- #: core/class-settings.php:997
4133
  msgctxt "settings"
4134
  msgid "Deactivate License"
4135
  msgstr "Lizenz Deaktivieren"
4136
 
4137
- #: core/class-settings.php:999
4138
  msgctxt "settings"
4139
  msgid "Deactivating license..."
4140
  msgstr "Deaktiviere Lizenz..."
4141
 
4142
- #: core/class-settings.php:1002
4143
  msgctxt "settings"
4144
  msgid "Activate License"
4145
  msgstr "Aktiviere Lizenz"
4146
 
4147
- #: core/class-settings.php:1004
4148
  msgctxt "settings"
4149
  msgid "Activating license..."
4150
  msgstr "Aktiviere Lizenz..."
4151
 
4152
- #: core/class-settings.php:1028
4153
  msgctxt "admin settings"
4154
  msgid "Valid placeholders: %s"
4155
  msgstr "Gültige Platzhalter: %s"
4156
 
4157
- #: core/class-settings.php:1062
4158
  msgctxt "settings email"
4159
  msgid "Click to edit e-mail"
4160
  msgstr "Klicken um E-mail zu bearbeiten"
4161
 
4162
- #: core/class-settings.php:1063
4163
  msgctxt "settings email"
4164
  msgid "Click to edit"
4165
  msgstr "zum Bearbeiten klicken"
4166
 
4167
- #: core/class-settings.php:1076
4168
  msgctxt "settings email"
4169
  msgid "E-Mail Subject"
4170
  msgstr "E-mail Betreff"
4171
 
4172
- #: core/class-settings.php:1087
4173
  msgctxt "settings email"
4174
  msgid "E-Mail Body"
4175
  msgstr "E-mail Text"
4176
 
4177
- #: core/class-settings.php:1098
4178
  msgctxt "settings email"
4179
  msgid "You can use the following placeholders:"
4180
  msgstr "Du kannst folgende Platzhalter verwenden:"
4181
 
4182
- #: core/class-settings.php:1121
4183
  msgctxt "settings email"
4184
  msgid "Preview e-mail"
4185
  msgstr "Vorschau E-mail"
4186
 
4187
- #: core/class-settings.php:1122
4188
  msgctxt "settings email"
4189
  msgid "Cancel"
4190
  msgstr "Abbrechen"
4191
 
4192
- #: core/class-settings.php:1123
4193
  msgctxt "settings email"
4194
  msgid "Save Changes"
4195
  msgstr "Änderungen sichern"
4196
 
4197
- #: core/class-settings.php:1142
4198
  msgctxt "settings email"
4199
  msgid "Site title"
4200
  msgstr "Seitentitel"
4201
 
4202
- #: core/class-settings.php:1145
4203
  msgctxt "settings email"
4204
  msgid "Site title (with link)"
4205
  msgstr "Seitentitel (mit Link)"
4206
 
4207
- #: core/class-settings.php:1148
4208
  msgctxt "settings email"
4209
  msgid "Site address (with link)"
4210
  msgstr "Seitenadresse (mit Link)"
4211
 
4212
- #: core/class-settings.php:1151
4213
  msgctxt "settings email"
4214
  msgid "Directory URL (with link)"
4215
  msgstr "Verzeichnis URL (mit Link)"
4216
 
4217
- #: core/class-settings.php:1154
4218
  msgctxt "settings email"
4219
  msgid "Current date"
4220
  msgstr "Aktuelles Datum"
4221
 
4222
- #: core/class-settings.php:1157
4223
  msgctxt "settings email"
4224
  msgid "Current time"
4225
  msgstr "Aktuelle Zeit"
@@ -4635,26 +4731,32 @@ msgctxt "authorize-net"
4635
  msgid "Transaction Key is missing."
4636
  msgstr "Transaktionen"
4637
 
4638
- #: core/gateways-authorize-net.php:124
4639
  msgctxt "authorize-net"
4640
  msgid ""
4641
  "The payment gateway didn't accept your credit card or billing information. "
4642
  "The following reason was given: \"%s\"."
4643
  msgstr ""
4644
 
4645
- #: core/gateways-authorize-net.php:128
4646
  msgctxt "authorize-net"
4647
  msgid ""
4648
  "Your payment is being held for review by the payment gateway. The following "
4649
  "reason was given: \"%s\"."
4650
  msgstr ""
4651
 
4652
- #: core/gateways-authorize-net.php:131
4653
  msgctxt "authorize-net"
4654
  msgid "Payment was rejected. The following reason was given: \"%s\"."
4655
  msgstr ""
4656
 
4657
- #: core/gateways-authorize-net.php:182
 
 
 
 
 
 
4658
  #, fuzzy
4659
  msgctxt "authorize-net"
4660
  msgid "Could not process payment."
@@ -4771,12 +4873,40 @@ msgctxt "fs helper"
4771
  msgid "Destination dir \"%s\" is not writable."
4772
  msgstr "Eintragskategorie \"%s\" existiert nicht"
4773
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
4774
  #: core/installer.php:38
4775
  msgctxt "default category name"
4776
  msgid "General"
4777
  msgstr "Allgemein"
4778
 
4779
- #: core/installer.php:462
4780
  msgctxt "installer"
4781
  msgid ""
4782
  "<b>Business Directory Plugin - Regions Module</b> was disabled because it is "
@@ -4787,41 +4917,41 @@ msgstr ""
4787
  "inkompatibel mit der aktuellen Version des Branchenverzeichnisses ist. Bitte "
4788
  "aktualisiere das Regionenmodul. "
4789
 
4790
- #: core/installer.php:528
4791
  msgctxt "installer"
4792
  msgid "Cleaning up listing fees information... %d/%d"
4793
  msgstr "Eintragpreisinformation säubern... %d/%d"
4794
 
4795
- #: core/installer.php:578
4796
  msgctxt "installer"
4797
  msgid "Migrating previous transactions to new Payments API... %d/%d"
4798
  msgstr "Migriere vergangene Transaktionen zur neuen Bezahl API... %d/%d"
4799
 
4800
- #: core/installer.php:607
4801
  msgctxt "installer"
4802
  msgid "Initial listing payment (BD < 3.4)"
4803
  msgstr "Initialbezahlung Eintrag (BD < 3.4)"
4804
 
4805
- #: core/installer.php:618
4806
  msgctxt "installer"
4807
  msgid "Listing edit payment (BD < 3.4)"
4808
  msgstr "Bezahlung Eintrag bearbeiten (BD < 3.4)"
4809
 
4810
- #: core/installer.php:639
4811
  msgctxt "installer"
4812
  msgid "Renewal fee \"%s\" for category \"%s\""
4813
  msgstr "Erneuere Preis \"%s\" für Kategorie \"%s\""
4814
 
4815
- #: core/installer.php:658
4816
  msgctxt "installer"
4817
  msgid "Listing upgrade to featured"
4818
  msgstr "Eintrag aktualisieren auf Hervorhebung"
4819
 
4820
- #: core/installer.php:894
4821
  msgid "Business Directory - Manual Upgrade Required"
4822
  msgstr "Branchenverzeichnis - Manuelle Aktualisierung erforderlich"
4823
 
4824
- #: core/installer.php:896
4825
  msgid ""
4826
  "Business Directory features are currently disabled because the plugin needs "
4827
  "to perform a manual upgrade before continuing."
@@ -4829,15 +4959,15 @@ msgstr ""
4829
  "Branchenverzeichnis Hervorhebungen sind aktuell deaktiviert, weil das Modul "
4830
  "manuell aktualisiert werden muss, bevor weiter hervorgehoben werden kann."
4831
 
4832
- #: core/installer.php:898
4833
  msgid "Perform Manual Upgrade"
4834
  msgstr "Manuelle Aktualisierung durchführen"
4835
 
4836
- #: core/installer.php:914 core/installer.php:915 core/installer.php:926
4837
  msgid "Business Directory - Manual Upgrade"
4838
  msgstr "Branchenverzeichnis - Manuelle Aktualisierung"
4839
 
4840
- #: core/installer.php:930
4841
  msgid ""
4842
  "Business Directory features are currently disabled because the plugin needs "
4843
  "to perform a manual upgrade before it can be used."
@@ -4845,22 +4975,22 @@ msgstr ""
4845
  "Branchenverzeichnis Hervorhebungen sind momentan deaktiviert weil das Modul "
4846
  "manuell aktualisiert werden muss, bevor es weiter verwendet werden kann."
4847
 
4848
- #: core/installer.php:932
4849
  msgid "Click \"Start Upgrade\" and wait until the process finishes."
4850
  msgstr ""
4851
  "Klicke \"Starte Aktualisierung\" und warte bis der Vorgang beendet wurde."
4852
 
4853
- #: core/installer.php:935
4854
  msgctxt "manual-upgrade"
4855
  msgid "Start Upgrade"
4856
  msgstr "Starte Aktualisierung"
4857
 
4858
- #: core/installer.php:937
4859
  msgctxt "manual-upgrade"
4860
  msgid "Pause Upgrade"
4861
  msgstr "Aktualisierung pausieren"
4862
 
4863
- #: core/installer.php:943
4864
  msgctxt "manual-upgrade"
4865
  msgid ""
4866
  "The upgrade was sucessfully performed. Business Directory Plugin is now "
@@ -4869,7 +4999,7 @@ msgstr ""
4869
  "Die Aktualisierung wurde erfolgreich durchgeführt. Branchenverzeichnis "
4870
  "Erweiterung ist nun verfügbar."
4871
 
4872
- #: core/installer.php:946
4873
  msgctxt "manual-upgrade"
4874
  msgid "Go to \"Directory Admin\""
4875
  msgstr "Nach \" Verzeichnis Administration\""
@@ -4894,16 +5024,6 @@ msgctxt "licensing"
4894
  msgid "No license key provided"
4895
  msgstr "Kein Lizenzschlüssel"
4896
 
4897
- #: core/licensing.php:127 core/licensing.php:159
4898
- msgctxt "licensing"
4899
- msgid "Could not contact licensing server"
4900
- msgstr "Eine Verbindung zum Lizenzserver konnte nicht hergestellt werden."
4901
-
4902
- #: core/licensing.php:132 core/licensing.php:166
4903
- msgctxt "licensing"
4904
- msgid "License key is invalid"
4905
- msgstr "Lizenzschlüssel ungültig "
4906
-
4907
  #: core/licensing.php:169
4908
  msgctxt "licensing"
4909
  msgid "Deactivation failed"
@@ -4921,9 +5041,9 @@ msgid ""
4921
  "provided. Go to <a>Manage Options - Licenses</a> to enter your license "
4922
  "information."
4923
  msgstr ""
4924
- "Folgende Premium Module funktionieren nicht, bis ein gültiger Lizenzschlüssel "
4925
- "angegeben wurde. Gehen Sie zu <a>Optionen verwalten - Lizenzen</a>, um Ihre "
4926
- "Lizenzinformation einzugeben."
4927
 
4928
  #: core/licensing.php:254
4929
  msgctxt "licensing"
@@ -4951,16 +5071,6 @@ msgctxt "licensing"
4951
  msgid "Renew License Key"
4952
  msgstr "Erneuere Lizenzschlüssel"
4953
 
4954
- #: core/licensing.php:330
4955
- msgctxt "licensing"
4956
- msgid "Could not activate license: %s."
4957
- msgstr "Konnte Lizenz nicht aktivieren: %s"
4958
-
4959
- #: core/licensing.php:332
4960
- msgctxt "licensing"
4961
- msgid "License activated"
4962
- msgstr "Lizenz aktiviert"
4963
-
4964
  #: core/licensing.php:348
4965
  msgctxt "licensing"
4966
  msgid "Could not deactivate license: %s."
@@ -4976,41 +5086,41 @@ msgctxt "fees-api"
4976
  msgid "Free Listing"
4977
  msgstr "kostenloser Eintrag"
4978
 
4979
- #: core/payment.php:135
4980
  msgctxt "fees-api"
4981
  msgid "Fee label is required."
4982
  msgstr "Preisbezeichnung erforderlich."
4983
 
4984
- #: core/payment.php:138
4985
  msgctxt "fees-api"
4986
  msgid "Fee amount must be a non-negative decimal number."
4987
  msgstr "Preismenge muss eine nicht negative Zahl sein."
4988
 
4989
- #: core/payment.php:141 core/payment.php:144
4990
  msgctxt "fees-api"
4991
  msgid "Fee must apply to at least one category."
4992
  msgstr "Preis muss mindestens einer Kategorie zugewiesen werden."
4993
 
4994
- #: core/payment.php:147
4995
  msgctxt "fees-api"
4996
  msgid "Fee allowed images must be a non-negative integer."
4997
  msgstr ""
4998
  "Preis der Bilder erlaubt muss ein nicht negativer Wert einer ganzen Zahl "
4999
  "sein."
5000
 
5001
- #: core/payment.php:150
5002
  msgctxt "fees-api"
5003
  msgid "Fee listing run must be a non-negative integer."
5004
  msgstr "Preis Eintrag muss eine ganzem nicht negative Zahl sein."
5005
 
5006
- #: core/payment.php:155
5007
  msgctxt "fees-api"
5008
  msgid "Fee listing duration must be a number less than 10 years (3650 days)."
5009
  msgstr ""
5010
  "Preis Eintrag Zeitraum muss eine Nummer kleiner als 10 Jahre sein (3650 "
5011
  "Tage)."
5012
 
5013
- #: core/payment.php:325
5014
  msgctxt "payments-api"
5015
  msgid ""
5016
  "You are offering featured listings but have payments turned off. Go to <a "
@@ -5023,7 +5133,7 @@ msgstr ""
5023
  "Bezahlungseinstellungen zu verändern. Bis dahin ist die <i>Aktualisieren auf "
5024
  "Hervorgehoben</i> Option deaktiviert."
5025
 
5026
- #: core/payment.php:343
5027
  msgctxt "payments-api"
5028
  msgid ""
5029
  "The <b>%s</b> gateway is active but not properly configured. The gateway "
@@ -5034,7 +5144,7 @@ msgstr ""
5034
  "Gateway funktioniert nicht bis folgende Probleme gelöst wurden: <b>%s</b>. "
5035
  "Prüfe die <a href=\"%s\">Bezahlung Einstellungen</a>."
5036
 
5037
- #: core/payment.php:353
5038
  msgctxt "admin"
5039
  msgid ""
5040
  "You have payments turned on but no gateway is active and properly "
@@ -5047,7 +5157,7 @@ msgstr ""
5047
  "Bezahleinstellungen zu ändern. Das Verzeichnis wird im <i>kostenlosen Modus</"
5048
  "i> ausgeführt, bis die Änderungen gemacht wurden."
5049
 
5050
- #: core/payment.php:357
5051
  msgid ""
5052
  "BD detected PayFast and another gateway were enabled. This setup is not "
5053
  "recommended due to PayFast supporting only ZAR and the other gateways not "
@@ -5057,7 +5167,7 @@ msgstr ""
5057
  "aktiviert wurde. Dieses Setup ist nicht empfohlen, weil PayFast nur ZAR und "
5058
  "andere Gateways unterstützt und nicht dieses Zahlungsmittel."
5059
 
5060
- #: core/payment.php:361
5061
  msgid ""
5062
  "You have recurring renewal of listing fees enabled but the payment gateways "
5063
  "installed don't support recurring payments. Until a gateway that supports "
@@ -5068,7 +5178,7 @@ msgstr ""
5068
  "unterstützt keine wiederholten Abbuchungen. Bitte benutze einen Dienst wie "
5069
  "Paypal. Solange bleiben automatische Erneuerungen deaktiviert."
5070
 
5071
- #: core/payment.php:366
5072
  msgid ""
5073
  "Due to Google Wallet limitations only monthly (30 days) recurring fees are "
5074
  "supported by the gateway. All other fees will be charged as non-recurring."
@@ -5076,37 +5186,37 @@ msgstr ""
5076
  "Google Wallet unterstützt monatlich (30 Tage) wiederholte Abbuchungen durch "
5077
  "das Gateway. Alle anderen Gebühren werden als kostenlos abgerechnet."
5078
 
5079
- #: core/payment.php:399
5080
  msgctxt "payments-api"
5081
  msgid "Checkout"
5082
  msgstr "Kasse"
5083
 
5084
- #: core/payment.php:400
5085
  msgctxt "payments-api"
5086
  msgid "Pay %1$s through %2$s"
5087
  msgstr "Bezahle %1$s bekomme %2$s"
5088
 
5089
- #: core/payment.php:407
5090
  msgctxt "payments-api"
5091
  msgid "Your transaction has been approved."
5092
  msgstr "Ihre Transaktion wurde genehmigt."
5093
 
5094
- #: core/payment.php:588
5095
  msgctxt "payments"
5096
  msgid "Payment Details"
5097
  msgstr "Bezahldetails"
5098
 
5099
- #: core/payment.php:615
5100
  msgctxt "checkout"
5101
  msgid "Payment Method"
5102
  msgstr "Bezahlmethode"
5103
 
5104
- #: core/payment.php:644
5105
  msgctxt "payment"
5106
  msgid "Return to Directory."
5107
  msgstr "Zurück zum Verzeichnis."
5108
 
5109
- #: core/payment.php:650
5110
  msgctxt "payments"
5111
  msgid ""
5112
  "Your payment is being processed by the payment gateway. Please reload this "
@@ -5116,7 +5226,7 @@ msgstr ""
5116
  "Ihre Bezahlung wird durchgeführt. Bitte laden Sie die Seite ggf. neu, um zu "
5117
  "sehen ob der Status sich verändert hat oder kontaktieren Sie uns."
5118
 
5119
- #: core/payment.php:653
5120
  msgctxt "payments"
5121
  msgid ""
5122
  "The payment has been rejected by the payment gateway. Please contact the "
@@ -5127,42 +5237,42 @@ msgstr ""
5127
  "klicken Sie auf \"Bezahlungsmethode ändern\" oder versuchen Sie es später "
5128
  "noch einmal."
5129
 
5130
- #: core/payment.php:654
5131
  msgctxt "payments"
5132
  msgid "Change Payment Method"
5133
  msgstr "Bezahlungsmethode ändern"
5134
 
5135
- #: core/payment.php:656
5136
  msgctxt "payments"
5137
  msgid ""
5138
  "The payment has been rejected by the payment gateway. Please contact the "
5139
  "site administrator if you think there is an error."
5140
  msgstr "Die Zahlung wurde zurückgewiesen."
5141
 
5142
- #: core/payment.php:659
5143
  msgctxt "payments"
5144
  msgid "The payment has been canceled at your request."
5145
  msgstr "Die Bezahlung wurde auf Ihren Wunsch abgebrochen."
5146
 
5147
- #: core/payment.php:755
5148
  #, fuzzy
5149
  msgctxt "admin"
5150
  msgid "Pending Abandonment"
5151
  msgstr "Ausstehende Bezahlung"
5152
 
5153
- #: core/payment.php:760
5154
  msgctxt "admin"
5155
  msgid "Abandoned"
5156
  msgstr ""
5157
 
5158
  #: core/templates/listing-sticky-tag.tpl.php:3
5159
- #: core/templates/listing-sticky-tag.tpl.php:4 core/templates-listings.php:64
5160
  msgctxt "templates"
5161
  msgid "Featured Listing"
5162
  msgstr "Hervorgehobene Einträge"
5163
 
5164
  #: core/templates/listings.tpl.php:6
5165
- #: templates/businessdirectory-listings.tpl.php:27 templates/search.tpl.php:41
5166
  msgctxt "templates"
5167
  msgid "No listings found."
5168
  msgstr "Kein Listig gefunden."
@@ -5205,31 +5315,31 @@ msgctxt "sort"
5205
  msgid "(Reset)"
5206
  msgstr "Zurücksetzen"
5207
 
5208
- #: core/themes.php:550
5209
  #, fuzzy
5210
  msgctxt "themes"
5211
  msgid "ZIP file is not a valid BD theme file."
5212
  msgstr "Bitte eine gültige E-mailadresse eingeben."
5213
 
5214
- #: core/themes.php:556
5215
  #, fuzzy
5216
  msgctxt "themes"
5217
  msgid "Could not create themes directory."
5218
  msgstr "wpbdp-csv-exports Verzeichnis konnte nicht erstellt werden."
5219
 
5220
- #: core/themes.php:564
5221
  #, fuzzy
5222
  msgctxt "themes"
5223
  msgid "Could not remove previous theme directory \"%s\"."
5224
  msgstr "Konnte Eintragskategorie nicht erstellen \"%s\""
5225
 
5226
- #: core/themes.php:570
5227
  #, fuzzy
5228
  msgctxt "themes"
5229
  msgid "Could not move new theme into theme directory."
5230
  msgstr "Momentan sind keine Einträge im Verzeichnis vorhanden."
5231
 
5232
- #: core/utils.php:105
5233
  msgctxt "utils"
5234
  msgid ""
5235
  "POSTed data exceeds PHP config. maximum. See \"post_max_size\" directive."
@@ -5237,53 +5347,53 @@ msgstr ""
5237
  "Gepustete Daten haben Maximum erreicht. Schau dir den Eintrag \"post_ma_size"
5238
  "\"in deiner php.ini an."
5239
 
5240
- #: core/utils.php:158
5241
  msgctxt "utils"
5242
  msgid "File size (%s) exceeds maximum file size of %s"
5243
  msgstr "Dateigröße (%s) hat das Maximum von %s erreicht"
5244
 
5245
- #: core/utils.php:166
5246
  #, fuzzy
5247
  msgctxt "utils"
5248
  msgid "File size (%s) is inferior to the required minimum file size of %s"
5249
  msgstr "Dateigröße (%s) hat das Maximum von %s erreicht"
5250
 
5251
- #: core/utils.php:175 core/utils.php:182
5252
  msgctxt "utils"
5253
  msgid "File type \"%s\" is not allowed"
5254
  msgstr "Dateityp \"%s\" ist nicht erlaubt"
5255
 
5256
- #: core/utils.php:189
5257
  msgctxt "utils"
5258
  msgid "Unkown error while uploading file."
5259
  msgstr "Unbekannter Fehler beim Hochladen der Datei."
5260
 
5261
- #: core/utils.php:208
5262
  msgctxt "utils"
5263
  msgid "Uploaded file is not an image"
5264
  msgstr "Hochgeladene Datei ist kein Bild."
5265
 
5266
- #: core/utils.php:217
5267
  msgctxt "utils"
5268
  msgid "Image width (%s px) is inferior to minimum required width of %s px."
5269
  msgstr ""
5270
 
5271
- #: core/utils.php:223
5272
  msgctxt "utils"
5273
  msgid "Image height (%s px) is inferior to minimum required height of %s px."
5274
  msgstr ""
5275
 
5276
- #: core/utils.php:229
5277
  msgctxt "utils"
5278
  msgid "Image width (%s px) is greater than maximum allowed width of %s px."
5279
  msgstr ""
5280
 
5281
- #: core/utils.php:235
5282
  msgctxt "utils"
5283
  msgid "Image height (%s px) is greater than maximum required height of %s px."
5284
  msgstr ""
5285
 
5286
- #: core/utils.php:249
5287
  msgctxt "utils"
5288
  msgid "Error while uploading file"
5289
  msgstr "Fehler während des Hochladens der Datei"
@@ -5560,22 +5670,22 @@ msgctxt "templates"
5560
  msgid "I agree to the Terms and Conditions"
5561
  msgstr "Ich akzeptiere die AGBs"
5562
 
5563
- #: core/view-submit-listing.php:404
5564
  msgctxt "listings"
5565
  msgid "Fee \"%s\" for category \"%s\"%s"
5566
  msgstr "Preis \"%s\" für Kategorie \"%s\"%s"
5567
 
5568
- #: core/view-submit-listing.php:407
5569
  msgctxt "listings"
5570
  msgid "(recurring)"
5571
  msgstr "(wiederholt)"
5572
 
5573
- #: core/view-submit-listing.php:417 core/view-upgrade-listing.php:54
5574
  msgctxt "submit"
5575
  msgid "Listing upgrade to featured"
5576
  msgstr "Eintrag erneuert auf Hervorgehoben"
5577
 
5578
- #: core/view-submit-listing.php:450
5579
  msgctxt "submit_state"
5580
  msgid "Invalid submit state."
5581
  msgstr "Ungültiger Zustand beim Einsenden."
@@ -5596,7 +5706,7 @@ msgctxt "templates"
5596
  msgid "Return to listing."
5597
  msgstr "Zurück zum Eintrag."
5598
 
5599
- #: core/views.php:28
5600
  msgid ""
5601
  "You need to create a page with the [businessdirectory] shortcode for the "
5602
  "Business Directory plugin to work correctly."
@@ -5604,21 +5714,21 @@ msgstr ""
5604
  "Sie müssen ein Seite erstellen die den [businessdirecory] Shortcode enthält "
5605
  "damit die Erweiterung richtig funktioniert."
5606
 
5607
- #: core/views.php:30
5608
  msgid "The directory is temporarily disabled."
5609
  msgstr "Das Verzeichnis wurde temporär deaktiviert."
5610
 
5611
- #: core/views.php:173
5612
  msgctxt "preview"
5613
  msgid "This is just a preview. The listing has not been published yet."
5614
  msgstr "Dies ist nur eine Vorschau. Der Eintrag wurde bisher nicht publiziert."
5615
 
5616
- #: core/views.php:325
5617
  msgctxt "templates"
5618
  msgid "Listings tagged: %s"
5619
  msgstr "Getaggte Einträge: %s"
5620
 
5621
- #: core/views.php:442
5622
  msgctxt "templates"
5623
  msgid ""
5624
  "There are no categories assigned to the business directory yet. You need to "
@@ -5633,12 +5743,12 @@ msgstr ""
5633
  "nicht erstellt werden kann. Einträge können nicht erstellt werden bis ein "
5634
  "Kategorie zugewiesen wurde."
5635
 
5636
- #: core/views.php:444
5637
  msgctxt "templates"
5638
  msgid "There are currently no listings in the directory."
5639
  msgstr "Keine Einträge im Verzeichnis vorhanden. "
5640
 
5641
- #: core/views.php:462
5642
  msgctxt "templates"
5643
  msgid ""
5644
  "You have \"Hide Empty Categories\" on and some categories that don't have "
@@ -6056,7 +6166,7 @@ msgctxt "templates"
6056
  msgid "You do not currently have any listings in the directory."
6057
  msgstr "Momentan sind keine Einträge im Verzeichnis vorhanden."
6058
 
6059
- #: templates/manage-listings.tpl.php:11 templates/search.tpl.php:44
6060
  msgctxt "templates"
6061
  msgid "Return to directory"
6062
  msgstr "Zurück zum Verzeichnis"
@@ -6272,7 +6382,7 @@ msgstr ""
6272
  #: templates/renew-listing.tpl.php:22
6273
  #: templates/submit-listing/category-selection.tpl.php:8
6274
  #: templates/submit-listing/fee-selection.tpl.php:37
6275
- #: templates/submit-listing/images.tpl.php:35
6276
  #: templates/submit-listing/listing-fields.tpl.php:34
6277
  msgctxt "templates"
6278
  msgid "Continue"
@@ -6288,27 +6398,22 @@ msgctxt "templates"
6288
  msgid "Do not renew my listing"
6289
  msgstr "Meinen Eintrag nicht erneuern"
6290
 
6291
- #: templates/search.tpl.php:8 templates/search.tpl.php:27
6292
- msgctxt "search"
6293
- msgid "Search"
6294
- msgstr "Suche"
6295
-
6296
- #: templates/search.tpl.php:10
6297
- msgctxt "search"
6298
- msgid "Return to Advanced Search"
6299
- msgstr "Zurück zur erweiterten Suche"
6300
-
6301
- #: templates/search.tpl.php:15
6302
  msgctxt "templates"
6303
  msgid "Find a listing"
6304
  msgstr "Einen Eintrag finden"
6305
 
6306
- #: templates/search.tpl.php:26
6307
  msgctxt "search"
6308
  msgid "Clear"
6309
  msgstr "Säubern"
6310
 
6311
- #: templates/search.tpl.php:34
 
 
 
 
 
6312
  msgctxt "search"
6313
  msgid "Search Results"
6314
  msgstr "Ergebnisse durchsuchen"
@@ -6424,7 +6529,13 @@ msgctxt "templates"
6424
  msgid "Image slots available:"
6425
  msgstr "verfügbare Bilder:"
6426
 
6427
- #: templates/submit-listing/images-upload-form.tpl.php:49
 
 
 
 
 
 
6428
  msgctxt "templates"
6429
  msgid "Max. file size:"
6430
  msgstr "Max. Dateigröße:"
@@ -6504,6 +6615,24 @@ msgstr "D. Rodenbaugh"
6504
  msgid "http://businessdirectoryplugin.com"
6505
  msgstr "http://businessdirectoryplugin.com"
6506
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
6507
  #~ msgctxt "admin transactions"
6508
  #~ msgid "transaction"
6509
  #~ msgstr "Transaktion"
4
  msgstr ""
5
  "Project-Id-Version: Business Directory Plugin 3.5.4\n"
6
  "Report-Msgid-Bugs-To: http://wordpress.org/tag/business-directory-plugin\n"
7
+ "POT-Creation-Date: 2015-11-17 23:37:00+00:00\n"
8
  "PO-Revision-Date: 2015-03-10 03:22+0100\n"
9
  "Last-Translator: BD Team <support@businessdirectoryplugin.com>\n"
10
  "Language-Team: Business Directory Plugin <support@businessdirectoryplugin."
220
  msgid "Uninstall"
221
  msgstr "Deinstallieren"
222
 
223
+ #: admin/class-admin.php:405
224
  #: admin/templates/listing-metabox-categories.tpl.php:69
225
  msgctxt "admin infometabox"
226
  msgid "never"
227
  msgstr "niemals"
228
 
229
+ #: admin/class-admin.php:487
230
  msgctxt "admin"
231
  msgid "The listing has been published."
232
  msgid_plural "The listings have been published."
233
  msgstr[0] "Der Eintrag wurde veröffentlicht."
234
  msgstr[1] "Die Einträge wurden veröffentlicht."
235
 
236
+ #: admin/class-admin.php:500
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] "Der Status des Eintrags wurde auf bezahlt gesetzt."
241
  msgstr[1] "Der Status der Einträge wurde auf bezahlt gesetzt."
242
 
243
+ #: admin/class-admin.php:512
244
  msgctxt "admin"
245
  msgid "The listing has been modified."
246
  msgid_plural "The listings have been modified."
247
  msgstr[0] "Der Eintrag wurde verändert."
248
  msgstr[1] "Die Einträge wurden verändert."
249
 
250
+ #: admin/class-admin.php:525
251
  msgctxt "admin"
252
  msgid "The listing has been upgraded."
253
  msgid_plural "The listings have been upgraded."
254
  msgstr[0] "Der Eintrag wurde aktualisiert"
255
  msgstr[1] "Die Einträge wurden aktualisiert."
256
 
257
+ #: admin/class-admin.php:537
258
  msgctxt "admin"
259
  msgid "The listing has been downgraded."
260
  msgid_plural "The listings have been downgraded."
261
  msgstr[0] "Der Eintrag wurde zurück gesetzt."
262
  msgstr[1] "Die Einträge wurden zurück gesetzt."
263
 
264
+ #: admin/class-admin.php:549
265
  msgctxt "admin"
266
  msgid "The transaction has been approved."
267
  msgstr "Die Transaktion wurde genehmigt."
268
 
269
+ #: admin/class-admin.php:557
270
  msgctxt "admin"
271
  msgid "The transaction has been rejected."
272
  msgstr "Die Transaktion wurde abgelehnt."
273
 
274
+ #: admin/class-admin.php:563
275
  msgctxt "admin"
276
  msgid "The fee was successfully assigned."
277
  msgstr "Der Preis wurde erfolgreich zugewiesen."
278
 
279
+ #: admin/class-admin.php:572
280
  msgctxt "admin"
281
  msgid "Listing was renewed."
282
  msgid_plural "Listings were renewed."
283
  msgstr[0] "Eintrag wurde aktualisiert."
284
  msgstr[1] "Einträge wurden aktualisiert."
285
 
286
+ #: admin/class-admin.php:579
287
  msgctxt "admin"
288
  msgid "Renewal email sent."
289
  msgstr "E-mail erneut senden."
290
 
291
+ #: admin/class-admin.php:613
292
  msgctxt "admin category id"
293
  msgid "ID"
294
  msgstr "ID"
295
 
296
+ #: admin/class-admin.php:615 admin/class-admin.php:621
297
  msgctxt "admin"
298
  msgid "Listing Count"
299
  msgstr "Anzahl Einträge "
300
 
301
+ #: admin/class-admin.php:717
302
  msgctxt "admin"
303
  msgid ""
304
  "<b>Business Directory Plugin</b> requires fields with the following "
307
  "<b>Branchenverzeichnis Erweiterung</b> benötigt Felder mit den folgenden "
308
  "Verbindungen um korrekt zu funktionieren: <b>%s</b>."
309
 
310
+ #: admin/class-admin.php:719
311
  msgctxt "admin"
312
  msgid ""
313
  "<b>Business Directory Plugin</b> requires a field with a <b>%s</b> "
316
  "<b>Branchenverzeichnis Erweiterung</b> benötigt ein Feld mit der Verbindung "
317
  "<b>%s</b>, um korrekt zu funktionieren."
318
 
319
+ #: admin/class-admin.php:723
320
  msgctxt "admin"
321
  msgid ""
322
  "You can create these custom fields by yourself inside \"Manage Form Fields\" "
325
  "Sie können diese benutzerdefinierten Felder selbst erzeugen \"Form Felder "
326
  "Verwalten\" oder vom Branchenverzeichnis automatisch erstellen lassen."
327
 
328
+ #: admin/class-admin.php:727
329
  msgctxt "admin"
330
  msgid "Go to \"Manage Form Fields\""
331
  msgstr "zu \"Form Felder verwalten\""
332
 
333
+ #: admin/class-admin.php:730
334
  msgctxt "admin"
335
  msgid "Create these required fields for me"
336
  msgstr "Erstelle diese benötigten Felder für mich"
337
 
338
+ #: admin/class-admin.php:739
339
  msgctxt "admin"
340
  msgid ""
341
  "<b>Business Directory Plugin</b> requires a page with the "
344
  "<b>Branchenverzeichnis Erweiterung</b> benötigt eine Seite mit dem "
345
  "<tt>[businessdirectory]</tt> shortcode um zu funktionieren."
346
 
347
+ #: admin/class-admin.php:741
348
  msgctxt "admin"
349
  msgid ""
350
  "You can create this page by yourself or let Business Directory do this for "
353
  "Du kannst diese Seite selbst erstellen oder vom Branchenverzeichnis "
354
  "automatisch erstellen lassen."
355
 
356
+ #: admin/class-admin.php:745
357
  msgctxt "admin"
358
  msgid "Create required pages for me"
359
  msgstr "Erstelle benötigte Seiten für mich"
360
 
361
+ #: admin/class-admin.php:785
362
  msgctxt "admin compat"
363
  msgid "Installed: %s"
364
  msgstr "Installiert: %s"
365
 
366
+ #: admin/class-admin.php:785
367
  msgctxt "admin compat"
368
  msgid "N/A"
369
  msgstr "keine Angabe"
370
 
371
+ #: admin/class-admin.php:788
372
  msgctxt "admin compat"
373
  msgid "Required: %s"
374
  msgstr "Pflichtfeld: %s"
375
 
376
+ #: admin/class-admin.php:801
377
  msgctxt "admin compat"
378
  msgid ""
379
  "Business Directory has detected some incompatible premium module versions "
382
  "Branchenverzeichnis hat festgestellt, dass einige inkompatible Premium Modul "
383
  "Versionen installiert sind."
384
 
385
+ #: admin/class-admin.php:803
386
  msgctxt "admin compat"
387
  msgid ""
388
  "Please upgrade to the required versions indicated below to make sure "
391
  "Bitte die benötigten Versionen siehe unten aktualisieren, um sicher zu sein, "
392
  "dass alles korrekt funktioniert. "
393
 
394
+ #: admin/class-admin.php:818
395
  msgctxt "admin"
396
  msgid ""
397
  "We noticed you want your Business Directory users to register before posting "
421
  msgstr ""
422
  "Es sind keine Bilder vorhanden die dem Eintrag aktuell hinzugefügt wurden."
423
 
424
+ #: admin/class-themes-admin.php:41
425
  #, fuzzy
426
  msgctxt "themes"
427
  msgid "Directory Themes"
428
  msgstr "Verzeichnis Kategorien"
429
 
430
+ #: admin/class-themes-admin.php:42
431
+ #, fuzzy
432
+ msgctxt "themes"
433
+ msgid "Directory Themes %s"
434
+ msgstr "Verzeichnis Kategorien"
435
+
436
+ #: admin/class-themes-admin.php:97
437
  #, fuzzy
438
  msgctxt "themes"
439
  msgid "Could not change the active theme to \"%s\"."
440
  msgstr "Konnte Eintragskategorie nicht erstellen \"%s\""
441
 
442
+ #: admin/class-themes-admin.php:144
443
  msgctxt "themes"
444
  msgid "Active theme changed to \"%s\"."
445
  msgstr ""
446
 
447
+ #: admin/class-themes-admin.php:147
448
  msgctxt "themes"
449
  msgid ""
450
  "For better results, \"%s\" theme suggests the following form fields to be "
451
  "created."
452
  msgstr ""
453
 
454
+ #: admin/class-themes-admin.php:154
455
  msgctxt "themes"
456
  msgid "Dismiss this warning"
457
  msgstr ""
458
 
459
+ #: admin/class-themes-admin.php:157
460
  #, fuzzy
461
  msgctxt "themes"
462
  msgid "Create suggested fields"
463
  msgstr "Erstelle diese benötigten Felder für mich"
464
 
465
+ #: admin/class-themes-admin.php:164
466
  #, fuzzy
467
  msgctxt "themes"
468
  msgid "Suggested fields created successfully."
469
  msgstr "Benötigtes Feld wurde erfolgreich erstellt."
470
 
471
+ #: admin/class-themes-admin.php:167
472
  #, fuzzy
473
  msgctxt "themes"
474
  msgid "Theme installed 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 was deleted sucessfully."
481
  msgstr "Der Import wurde erfolgreich abgeschlossen."
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
  #, fuzzy
490
  msgctxt "themes"
491
  msgid "Please upload a valid theme file."
492
  msgstr "Bitte eine gültige E-mailadresse eingeben."
493
 
494
+ #: admin/class-themes-admin.php:206
495
  #, fuzzy
496
  msgctxt "themes"
497
  msgid "Could not move \"%s\" to a temporary directory."
498
  msgstr "wpbdp-csv-exports Verzeichnis konnte nicht erstellt werden."
499
 
500
+ #: admin/class-themes-admin.php:307 core/licensing.php:127
501
+ #: core/licensing.php:159
502
+ msgctxt "licensing"
503
+ msgid "Could not contact licensing server"
504
+ msgstr "Eine Verbindung zum Lizenzserver konnte nicht hergestellt werden."
505
+
506
+ #: admin/class-themes-admin.php:313 core/licensing.php:132
507
+ #: core/licensing.php:166
508
+ msgctxt "licensing"
509
+ msgid "License key is invalid"
510
+ msgstr "Lizenzschlüssel ungültig "
511
+
512
+ #: admin/class-themes-admin.php:318 core/licensing.php:330
513
+ msgctxt "licensing"
514
+ msgid "Could not activate license: %s."
515
+ msgstr "Konnte Lizenz nicht aktivieren: %s"
516
+
517
+ #: admin/class-themes-admin.php:331 core/licensing.php:332
518
+ msgctxt "licensing"
519
+ msgid "License activated"
520
+ msgstr "Lizenz aktiviert"
521
+
522
  #: admin/csv-export.php:136
523
  msgctxt "admin csv-export"
524
  msgid "Could not create a temporary directory for handling this CSV export."
1606
  msgid "Number of images allowed"
1607
  msgstr "Erlaubte Anzahl der Bilder"
1608
 
1609
+ #: admin/templates/fees-addoredit.tpl.php:101
1610
+ msgctxt "fees admin"
1611
+ msgid "Is sticky?"
1612
+ msgstr ""
1613
+
1614
+ #: admin/templates/fees-addoredit.tpl.php:116
1615
  msgctxt "fees admin"
1616
  msgid "Apply to category"
1617
  msgstr "der Kategorie zuweisen"
1618
 
1619
+ #: admin/templates/fees-addoredit.tpl.php:120
1620
  msgctxt "fees admin"
1621
  msgid "* All Categories *"
1622
  msgstr "* Alle Kategorien *"
1623
 
1624
+ #: admin/templates/fees-addoredit.tpl.php:140
1625
  msgctxt "fees admin"
1626
  msgid "Update Fee"
1627
  msgstr "Preis Aktualisierung"
1628
 
1629
+ #: admin/templates/fees-addoredit.tpl.php:142
1630
  msgctxt "fees admin"
1631
  msgid "Add Fee"
1632
  msgstr "Preis Erstellen"
1778
  msgid "No validation"
1779
  msgstr "Keine Validierung"
1780
 
1781
+ #: admin/templates/form-fields-addoredit.tpl.php:115
1782
  msgctxt "form-fields admin"
1783
  msgid "Is field required?"
1784
  msgstr "Ist das Feld ein Pflichtfeld?"
1785
 
1786
+ #: admin/templates/form-fields-addoredit.tpl.php:121
1787
  msgctxt "form-fields admin"
1788
  msgid "This field is required."
1789
  msgstr "Dieses Feld ist ein Pflichtfeld."
1790
 
1791
+ #: admin/templates/form-fields-addoredit.tpl.php:129
1792
  msgctxt "form-fields admin"
1793
  msgid "Field display options"
1794
  msgstr "Feld Anzeigeoptionen"
1795
 
1796
+ #: admin/templates/form-fields-addoredit.tpl.php:133
1797
  msgctxt "form-fields admin"
1798
  msgid "Show this value in excerpt view?"
1799
  msgstr "Diesen Wert in der Auszugsansicht anzeigen?"
1800
 
1801
+ #: admin/templates/form-fields-addoredit.tpl.php:139
1802
  msgctxt "form-fields admin"
1803
  msgid "Display this value in post excerpt view."
1804
  msgstr "Diesen Wert in der Postauszugansicht anzeigen."
1805
 
1806
+ #: admin/templates/form-fields-addoredit.tpl.php:145
1807
  msgctxt "form-fields admin"
1808
  msgid "Show this value in listing view?"
1809
  msgstr "Diesen Wert in der Eintragansicht anzeigen?"
1810
 
1811
+ #: admin/templates/form-fields-addoredit.tpl.php:151
1812
  msgctxt "form-fields admin"
1813
  msgid "Display this value in the listing view."
1814
  msgstr "Diesen Wert in der Eintragansicht anzeigen."
1815
 
1816
+ #: admin/templates/form-fields-addoredit.tpl.php:157
1817
  msgctxt "form-fields admin"
1818
  msgid "Include this field in the search form?"
1819
  msgstr "Dieses Feld in die Suchform integrieren?"
1820
 
1821
+ #: admin/templates/form-fields-addoredit.tpl.php:163
1822
  msgctxt "form-fields admin"
1823
  msgid "Include this field in the search form."
1824
  msgstr "Dieses Feld in die Suchform integrieren."
1825
 
1826
+ #: admin/templates/form-fields-addoredit.tpl.php:169
1827
  msgctxt "form-fields admin"
1828
  msgid "Hide this field's label?"
1829
  msgstr "Diese Feldbezeichnung verbergen?"
1830
 
1831
+ #: admin/templates/form-fields-addoredit.tpl.php:175
1832
  msgctxt "form-fields admin"
1833
  msgid "Hide this field's label when displaying it."
1834
  msgstr "Diese Feldbezeichnung beim Anzeigen verbergen ."
1835
 
1836
+ #: admin/templates/form-fields-addoredit.tpl.php:182
1837
  msgctxt "form-fields admin"
1838
  msgid "Update Field"
1839
  msgstr "Feld aktualisieren"
1840
 
1841
+ #: admin/templates/form-fields-addoredit.tpl.php:184
1842
  msgctxt "form-fields admin"
1843
  msgid "Add Field"
1844
  msgstr "Feld erstellen"
1910
  msgid "Please see the <a>Form Fields documentation</a> for more details."
1911
  msgstr ""
1912
 
1913
+ #. #-#-#-#-# WPBDM.pot (Business Directory Plugin 3.6.10) #-#-#-#-#
1914
  #. Plugin Name of the plugin/theme
1915
  #: admin/templates/header.tpl.php:4
1916
  msgid "Business Directory Plugin"
2397
  msgstr "Enhanced Categories Modul"
2398
 
2399
  #: admin/templates/themes-delete-confirm.tpl.php:1
2400
+ #: admin/templates/themes-delete-confirm.tpl.php:13
2401
  #, fuzzy
2402
  msgctxt "themes admin"
2403
+ msgid "Delete Directory Theme"
2404
+ msgstr "Verzeichnis Kategorien"
2405
 
2406
  #: admin/templates/themes-delete-confirm.tpl.php:3
2407
  #, fuzzy
2408
  msgctxt "themes admin"
2409
+ msgid "Are you sure you want to delete the directory theme \"%s\"?"
2410
  msgstr "Bist du sicher, dass du diesen \"%s\" Preis löschen möchtest?"
2411
 
2412
  #: admin/templates/themes-delete-confirm.tpl.php:12
2413
  #, fuzzy
2414
  msgctxt "themes admin"
2415
+ msgid "Cancel"
2416
+ msgstr "Abbrechen"
2417
 
2418
+ #: admin/templates/themes-install.tpl.php:2
2419
+ #: admin/templates/themes-licenses.tpl.php:3 admin/templates/themes.tpl.php:3
2420
  msgctxt "themes"
2421
  msgid "Upload Directory Theme"
2422
  msgstr ""
2436
  msgid "Begin Upload"
2437
  msgstr ""
2438
 
2439
+ #: admin/templates/themes-item.tpl.php:3
2440
  #, fuzzy
2441
  msgctxt "themes"
2442
  msgid "Active:"
2443
  msgstr "Nur Aktiv"
2444
 
2445
+ #: admin/templates/themes-item.tpl.php:12
2446
  #, fuzzy
2447
  msgctxt "themes"
2448
  msgid "Activate"
2449
  msgstr "Aktiviere Lizenz"
2450
 
2451
+ #: admin/templates/themes-item.tpl.php:29
2452
  msgctxt "themes"
2453
  msgid "Version:"
2454
  msgstr ""
2455
 
2456
+ #: admin/templates/themes-item.tpl.php:32
2457
  #, fuzzy
2458
  msgctxt "themes"
2459
  msgid "Author:"
2567
  msgid "Allow Tracking"
2568
  msgstr "Verfolgung erlauben"
2569
 
2570
+ #: business-directory-plugin.php:701
2571
  msgctxt "admin plugins"
2572
  msgid "Settings"
2573
  msgstr "Einstellungen"
2574
 
2575
+ #: business-directory-plugin.php:711
2576
  msgctxt "post type general name"
2577
  msgid "Directory"
2578
  msgstr "Verzeichnis"
2579
 
2580
+ #: business-directory-plugin.php:712
2581
  msgctxt "post type singular name"
2582
  msgid "Directory"
2583
  msgstr "Verzeichnis"
2584
 
2585
+ #: business-directory-plugin.php:713
2586
  msgctxt "listing"
2587
  msgid "Add New Listing"
2588
  msgstr "Neuen Eintrag erstellen"
2589
 
2590
+ #: business-directory-plugin.php:714
2591
  msgctxt "post type"
2592
  msgid "Add New Listing"
2593
  msgstr "Neuen Eintrag erstellen"
2594
 
2595
+ #: business-directory-plugin.php:715 core/compatibility/deprecated.php:255
2596
  msgid "Edit Listing"
2597
  msgstr "Eintrag Bearbeiten"
2598
 
2599
+ #: business-directory-plugin.php:716
2600
  msgid "New Listing"
2601
  msgstr "Neuer Eintag"
2602
 
2603
+ #: business-directory-plugin.php:717
2604
  msgid "View Listing"
2605
  msgstr "Eintrag anschauen"
2606
 
2607
+ #: business-directory-plugin.php:718
2608
  msgid "Search Listings"
2609
  msgstr "Einträge durchsuchen"
2610
 
2611
+ #: business-directory-plugin.php:719
2612
  msgid "No listings found"
2613
  msgstr "Keine Einträge gefunden"
2614
 
2615
+ #: business-directory-plugin.php:720
2616
  msgid "No listings found in trash"
2617
  msgstr "Keine Einträge im Papierkorb gefunden"
2618
 
2619
+ #: business-directory-plugin.php:742
2620
  msgid "Directory Categories"
2621
  msgstr "Verzeichnis Kategorien"
2622
 
2623
+ #: business-directory-plugin.php:855 business-directory-plugin.php:862
2624
  msgctxt "rss feed"
2625
  msgid "%s Feed"
2626
  msgstr "% Feed"
2627
 
2628
+ #: business-directory-plugin.php:1266
2629
  msgctxt "title"
2630
  msgid "Submit A Listing"
2631
  msgstr "Eintrag zusenden"
2632
 
2633
+ #: business-directory-plugin.php:1276
2634
  msgctxt "title"
2635
  msgid "Find a Listing"
2636
  msgstr "Eintrag finden"
2637
 
2638
+ #: business-directory-plugin.php:1286
2639
  msgctxt "title"
2640
  msgid "View All Listings"
2641
  msgstr "Alle Einträge anschauen"
2642
 
2643
+ #: business-directory-plugin.php:1306
2644
  msgctxt "title"
2645
  msgid "Listings tagged: %s"
2646
  msgstr "Einträge getaggt: %s"
2647
 
2648
+ #: core/class-csv-import.php:371
2649
  msgctxt "admin csv-import"
2650
  msgid "Could not create listing category \"%s\""
2651
  msgstr "Konnte Eintragskategorie nicht erstellen \"%s\""
2652
 
2653
+ #: core/class-csv-import.php:515
2654
  msgctxt "admin csv-import"
2655
  msgid "Username \"%s\" does not exist"
2656
  msgstr "Benutzername \"%s\" existiert nicht"
2657
 
2658
+ #: core/class-csv-import.php:547
2659
  msgctxt "admin csv-import"
2660
  msgid "Missing required field: %s"
2661
  msgstr "Benötigtes nicht vorhandenes Feld: %s"
2662
 
2663
+ #: core/class-csv-import.php:567
2664
  msgctxt "admin csv-import"
2665
  msgid "Listing category \"%s\" does not exist"
2666
  msgstr "Eintragskategorie \"%s\" existiert nicht"
2764
  msgid "Featured Listing"
2765
  msgstr "Unterstützter Eintrag"
2766
 
2767
+ #: core/class-listing.php:297 core/class-listing.php:323
2768
  msgctxt "listing"
2769
  msgid "(Fee Unavailable)"
2770
  msgstr "(Preis nicht verfügbar)"
2989
  msgid "Directory Search"
2990
  msgstr "Verzeichnis Suche"
2991
 
2992
+ #: core/class-settings.php:100
2993
  msgctxt "admin settings"
2994
+ msgid "Search form display"
2995
+ msgstr ""
2996
 
2997
+ #: core/class-settings.php:104
2998
+ msgctxt "admin settings"
2999
+ msgid "Above results"
3000
+ msgstr ""
3001
+
3002
+ #: core/class-settings.php:105
3003
+ msgctxt "admin settings"
3004
+ msgid "Below results"
3005
+ msgstr ""
3006
+
3007
+ #: core/class-settings.php:106
3008
+ msgctxt "admin settings"
3009
+ msgid "Don't show with results"
3010
+ msgstr ""
3011
+
3012
+ #: core/class-settings.php:111
3013
  msgctxt "admin settings"
3014
  msgid ""
3015
  "You have selected a textarea field to be included in quick searches. "
3020
  "Felder hinzugefügt werden, kann sehr langsam sein und lange Zeit in Anspruch "
3021
  "nehmen. "
3022
 
3023
+ #: core/class-settings.php:113
3024
  #, fuzzy
3025
  msgctxt "admin settings"
3026
  msgid ""
3030
  msgstr ""
3031
  "Zu viele Felder können die Suchleistung stark beeinflussen und lange dauern."
3032
 
3033
+ #: core/class-settings.php:116
3034
  msgctxt "admin settings"
3035
  msgid "Quick search fields"
3036
  msgstr "Schnellsuche Felder"
3037
 
3038
+ #: core/class-settings.php:124
3039
  msgctxt "admin settings"
3040
  msgid "Enable high performance searches?"
3041
  msgstr ""
3042
 
3043
+ #: core/class-settings.php:127
3044
  msgctxt "admin settings"
3045
  msgid ""
3046
  "Enabling this makes BD sacrifice result quality to improve speed. This is "
3048
  "issue."
3049
  msgstr ""
3050
 
3051
+ #: core/class-settings.php:132
3052
  msgctxt "admin settings"
3053
  msgid "Miscellaneous Settings"
3054
  msgstr "Sonstiges Einstellungen"
3055
 
3056
+ #: core/class-settings.php:136
3057
  msgctxt "admin settings"
3058
  msgid ""
3059
  "Check this if you are having trouble with BD, particularly when importing or "
3060
  "exporting CSV files."
3061
  msgstr ""
3062
 
3063
+ #: core/class-settings.php:139
3064
  msgctxt "admin settings"
3065
  msgid ""
3066
  "If this compatibility mode doesn't solve your issue, you may be experiencing "
3068
  "theme and plugin conflicts with Business Directory."
3069
  msgstr ""
3070
 
3071
+ #: core/class-settings.php:142
3072
  msgctxt "admin settings"
3073
  msgid "Enable AJAX compatibility mode?"
3074
  msgstr ""
3075
 
3076
+ #: core/class-settings.php:150 core/class-settings.php:651
3077
  msgctxt "admin settings"
3078
  msgid "Listings"
3079
  msgstr "Einträge"
3080
 
3081
+ #: core/class-settings.php:151 core/class-settings.php:298
3082
+ #: core/class-settings.php:584
3083
  msgctxt "admin settings"
3084
  msgid "General Settings"
3085
  msgstr "Allgemeine Einstellungen"
3086
 
3087
+ #: core/class-settings.php:153
3088
  msgctxt "admin settings"
3089
  msgid "Listings per page"
3090
  msgstr "Einträge pro Seite"
3091
 
3092
+ #: core/class-settings.php:154
3093
  msgctxt "admin settings"
3094
  msgid ""
3095
  "Number of listings to show per page. Use a value of \"0\" to show all "
3098
  "Nummer der Einträge die pro Seite angezeigt werden. Benutze einen Wert von "
3099
  "\"0\" um alle Einträge anzuzeigen."
3100
 
3101
+ #: core/class-settings.php:156
3102
  msgctxt "admin settings"
3103
  msgid "Listing duration for no-fee sites (in days)"
3104
  msgstr "Eintrag Zeitraum für kostenlose Seiten (in Tagen)"
3105
 
3106
+ #: core/class-settings.php:157
3107
  msgctxt "admin settings"
3108
  msgid ""
3109
  "Use a value of \"0\" to keep a listing alive indefinitely or enter a number "
3112
  "Benutze einen Wert von \"0\" um ein Eintrag undefiniert zu lassen oder "
3113
  "benutze eine Nummer unter 10 Jahren (3650 Tage)"
3114
 
3115
+ #: core/class-settings.php:163
3116
  msgctxt "admin settings"
3117
  msgid "Include listing contact form on listing pages?"
3118
  msgstr "Kontaktform in Eintragsseiten einfügen?"
3119
 
3120
+ #: core/class-settings.php:166
3121
  msgctxt "admin settings"
3122
  msgid ""
3123
  "Allows visitors to contact listing authors privately. Authors will receive "
3126
  "Benutzer erlauben den Eintragsauthor privat zu kontaktieren. Der Author "
3127
  "bekommt eine Nachricht per E-mail zugeschickt."
3128
 
3129
+ #: core/class-settings.php:169
3130
  msgctxt "admin settings"
3131
  msgid "Require login for using the contact form?"
3132
  msgstr "Einloggen um die Kontaktform zu benutzen?"
3133
 
3134
+ #: core/class-settings.php:175
3135
  msgctxt "admin settings"
3136
  msgid "Maximum number of contact form submits per day"
3137
  msgstr "Maximale Nummer der Kontaktformmails die pro Tag zugesendet werden"
3138
 
3139
+ #: core/class-settings.php:178
3140
  msgctxt "admin settings"
3141
  msgid ""
3142
  "Use this to prevent spamming of listing owners. 0 means unlimited submits "
3145
  "Benutze dieses Feld um spamming von Einträgen zu vermeiden. 0 heisst "
3146
  "unbegrenzt pro Tag."
3147
 
3148
+ #: core/class-settings.php:184
3149
  msgctxt "admin settings"
3150
  msgid "Include comment form on listing pages?"
3151
  msgstr "Kommentarform einfügen in Eintragsseiten?"
3152
 
3153
+ #: core/class-settings.php:187
3154
  msgctxt "admin settings"
3155
  msgid ""
3156
  "Allow visitors to discuss listings using the standard WordPress comment "
3159
  "Besuchern erlauben die Einträge mit der Standard Wordpress Form zu "
3160
  "diskutieren. Kommentare sind öffentlich."
3161
 
3162
+ #: core/class-settings.php:188
3163
  msgctxt "admin settings"
3164
  msgid "Show listings under categories on main page?"
3165
  msgstr "Einträge unter Kategorien anzeigen auf der Hauptseite?"
3166
 
3167
+ #: core/class-settings.php:189
3168
  msgctxt "admin settings"
3169
  msgid "Status of listings upon uninstalling plugin"
3170
  msgstr "Status der Einträge bei Deinstallation der Erweiterung"
3171
 
3172
+ #: core/class-settings.php:191
3173
  msgctxt "admin settings"
3174
  msgid "Status of deleted listings"
3175
  msgstr "Status der gelöschten Einträge"
3176
 
3177
+ #: core/class-settings.php:194
3178
  msgctxt "admin settings"
3179
  msgid "Listing Renewal"
3180
  msgstr "Einträge erneuern"
3181
 
3182
+ #: core/class-settings.php:195
3183
  msgctxt "admin settings"
3184
  msgid "Turn on listing renewal option?"
3185
  msgstr "Option zur Erneuerung von Einträgen aktivieren?"
3186
 
3187
+ #: core/class-settings.php:198
3188
  msgctxt "admin settings"
3189
  msgid "Allow recurring renewal payments?"
3190
  msgstr "Wiederholte Bezahlung erlauben?"
3191
 
3192
+ #: core/class-settings.php:201
3193
  msgctxt "admin settings"
3194
  msgid ""
3195
  "Allow users to opt in for automatic renewal of their listings. The fee is "
3199
  "anzumelden. Der Preis wird abgebucht, zu dem Zeitpunkt an dem der Eintrag "
3200
  "abläuft, ohne Eingriff durch den Benutzer."
3201
 
3202
+ #: core/class-settings.php:205
3203
  msgctxt "admin settings"
3204
  msgid "Use recurring payments as the default payment method?"
3205
  msgstr "Benutze automatische Abbuchungen als Standardbezahlmethode?"
3206
 
3207
+ #: core/class-settings.php:208
3208
  msgctxt "admin settings"
3209
  msgid ""
3210
  "Enable automatic renewal without having users opt in during the submit "
3213
  "Automatische Abbuchung aktivieren, ohne die Anmeldung durch den Benutzer "
3214
  "während der Einreichung."
3215
 
3216
+ #: core/class-settings.php:213
3217
  msgctxt "admin settings"
3218
  msgid "Listing renewal e-mail threshold (in days)"
3219
  msgstr "Eintragsabbuchungsemail Grenze (in tagen)"
3220
 
3221
+ #: core/class-settings.php:216
3222
  msgctxt "admin settings"
3223
  msgid ""
3224
  "Configure how many days before listing expiration is the renewal e-mail sent."
3226
  "Konfiguriere wieviel Tage vor der Abbuchung eine Buchungsmail verschickt "
3227
  "wird."
3228
 
3229
+ #: core/class-settings.php:220
3230
  msgctxt "admin settings"
3231
  msgid ""
3232
  "Send expiration notices including a cancel links to auto-renewed listings?"
3234
  "Sende eine Ablaufinformation die einen Beenden und einen Automatisch Eintrag "
3235
  "Erneuern Link enghält?"
3236
 
3237
+ #: core/class-settings.php:227
3238
  msgctxt "admin settings"
3239
  msgid "Remind listing owners of expired listings (past due)?"
3240
  msgstr "Eintraginhaber an abgelaufene Einträge erinnern (überfällig)?"
3241
 
3242
+ #: core/class-settings.php:232
3243
  msgctxt "admin settings"
3244
  msgid "Listing renewal reminder e-mail threshold (in days)"
3245
  msgstr "Einträge erneuern E-mail Grenze (in Tagen)"
3246
 
3247
+ #: core/class-settings.php:235
3248
  msgctxt "admin settings"
3249
  msgid ""
3250
  "Configure how many days after the expiration of a listing an e-mail reminder "
3253
  "Konfiguriere wie viele Tage nach dem Ablauf eines Eintrags eine E-mail an "
3254
  "den Inhaber versendet wird."
3255
 
3256
+ #: core/class-settings.php:238
3257
  msgctxt "admin settings"
3258
  msgid "Post/Category Settings"
3259
  msgstr "Post/Kategorie Einstellungen"
3260
 
3261
+ #: core/class-settings.php:239
3262
  msgctxt "admin settings"
3263
  msgid "Default new post status"
3264
  msgstr "Standard neuer Post Status"
3265
 
3266
+ #: core/class-settings.php:242
3267
  msgctxt "admin settings"
3268
  msgid "Edit post status"
3269
  msgstr "Post Status Bearbeiten"
3270
 
3271
+ #: core/class-settings.php:244
3272
  msgctxt "admin settings"
3273
  msgid "Order categories list by"
3274
  msgstr "Anordnung Kategorieliste durch"
3275
 
3276
+ #: core/class-settings.php:246
3277
  msgctxt "admin settings"
3278
  msgid "Name"
3279
  msgstr "Name"
3280
 
3281
+ #: core/class-settings.php:247
3282
  msgctxt "admin settings"
3283
  msgid "Slug"
3284
  msgstr "Entwurf"
3285
 
3286
+ #: core/class-settings.php:248
3287
  msgctxt "admin settings"
3288
  msgid "Listing Count"
3289
  msgstr "Anzahl Einträge"
3290
 
3291
+ #: core/class-settings.php:250
3292
  msgctxt "admin settings"
3293
  msgid "Sort order for categories"
3294
  msgstr "Sortierung für Kategorien"
3295
 
3296
+ #: core/class-settings.php:251 core/class-settings.php:269
3297
  msgctxt "admin settings"
3298
  msgid "Ascending"
3299
  msgstr "Aufsteigend"
3300
 
3301
+ #: core/class-settings.php:251 core/class-settings.php:269
3302
  msgctxt "admin settings"
3303
  msgid "Descending"
3304
  msgstr "Absteigend"
3305
 
3306
+ #: core/class-settings.php:252
3307
  msgctxt "admin settings"
3308
  msgid "Show category post count?"
3309
  msgstr "Kategoriepost Anzahl anzeigen?"
3310
 
3311
+ #: core/class-settings.php:253
3312
  msgctxt "admin settings"
3313
  msgid "Hide empty categories?"
3314
  msgstr "Leere Kategorien verbergen?"
3315
 
3316
+ #: core/class-settings.php:254
3317
  msgctxt "admin settings"
3318
  msgid "Show only parent categories in category list?"
3319
  msgstr "Nur Elternkategorien in Kategorieliste anzeigen?"
3320
 
3321
+ #: core/class-settings.php:256
3322
  msgctxt "admin settings"
3323
  msgid "Listings Sorting"
3324
  msgstr "Sortierung Einträge"
3325
 
3326
+ #: core/class-settings.php:257
3327
  msgctxt "admin settings"
3328
  msgid "Order directory listings by"
3329
  msgstr "Anordnung Verzeichniseinträge durch"
3330
 
3331
+ #: core/class-settings.php:259
3332
  msgctxt "admin settings"
3333
  msgid "Title"
3334
  msgstr "Titel"
3335
 
3336
+ #: core/class-settings.php:260
3337
  msgctxt "admin settings"
3338
  msgid "Author"
3339
  msgstr "Author"
3340
 
3341
+ #: core/class-settings.php:261
3342
  msgctxt "admin settings"
3343
  msgid "Date posted"
3344
  msgstr "Datum gepostet"
3345
 
3346
+ #: core/class-settings.php:262
3347
  msgctxt "admin settings"
3348
  msgid "Date last modified"
3349
  msgstr "Datum zuletzt verändert"
3350
 
3351
+ #: core/class-settings.php:263
3352
  msgctxt "admin settings"
3353
  msgid "Random"
3354
  msgstr "Zufall"
3355
 
3356
+ #: core/class-settings.php:264
3357
  msgctxt "admin settings"
3358
  msgid "Paid first then free. Inside each group by date."
3359
  msgstr ""
3360
 
3361
+ #: core/class-settings.php:265
3362
  msgctxt "admin settings"
3363
  msgid "Paid first then free. Inside each group by title."
3364
  msgstr ""
3365
 
3366
+ #: core/class-settings.php:267
3367
  msgctxt "admin settings"
3368
  msgid "Sort directory listings by"
3369
  msgstr "Verzeichnissortierung der Einträge durch"
3370
 
3371
+ #: core/class-settings.php:268
3372
  msgctxt "admin settings"
3373
  msgid "Ascending for ascending order A-Z, Descending for descending order Z-A"
3374
  msgstr ""
3375
  "Aufsteigend für aufsteigende Reihenfolge A-Z, Absteigend für absteigende "
3376
  "Reihenfolge Z-A"
3377
 
3378
+ #: core/class-settings.php:273
3379
  msgctxt "admin settings"
3380
  msgid "Enable sort bar?"
3381
  msgstr "Sortierung aktivieren?"
3382
 
3383
+ #: core/class-settings.php:278
3384
  msgctxt "admin settings"
3385
  msgid "Sortbar Fields"
3386
  msgstr "Sortierbare Felder"
3387
 
3388
+ #: core/class-settings.php:287
3389
  msgctxt "admin settings"
3390
  msgid "Featured (Sticky) listing settings"
3391
  msgstr "Unterstützte (unbewegliche) Eintrageinstellungen"
3392
 
3393
+ #: core/class-settings.php:288
3394
  msgctxt "admin settings"
3395
  msgid "Offer sticky listings?"
3396
  msgstr "Unbewegliche Einträge anbieten? "
3397
 
3398
+ #: core/class-settings.php:289
3399
  msgctxt "admin settings"
3400
  msgid "Offer upgrades during submit process?"
3401
  msgstr "Aktualisierungen anbieten im Bestellprozess?"
3402
 
3403
+ #: core/class-settings.php:290
3404
  msgctxt "admin settings"
3405
  msgid "Sticky listing price"
3406
  msgstr "Unbeweglicher Eintragspreis"
3407
 
3408
+ #: core/class-settings.php:291
3409
  msgctxt "admin settings"
3410
  msgid "Sticky listing page description text"
3411
  msgstr "Unbewegliche Eintragsseite Beschreibung"
3412
 
3413
+ #: core/class-settings.php:292
3414
  msgctxt "admin settings"
3415
  msgid ""
3416
  "You can upgrade your listing to featured status. Featured listings will "
3419
  "Du kannst dein Eintrag in den hervorgehobenen Status aktualisieren. "
3420
  "Unterstützte Einträge werden immer ganz oben eines Eintrags angezeigt."
3421
 
3422
+ #: core/class-settings.php:297
3423
  msgctxt "admin settings"
3424
  msgid "E-Mail"
3425
  msgstr "E-mail"
3426
 
3427
+ #: core/class-settings.php:301
3428
  msgctxt "admin settings"
3429
  msgid "Display email address fields publicly?"
3430
  msgstr "E-mail Adressfeld öffentlich anzeigen?"
3431
 
3432
+ #: core/class-settings.php:304
3433
  msgctxt "admin settings"
3434
  msgid ""
3435
  "Shows the email address of the listing owner to all web users. NOT "
3438
  msgstr ""
3439
  "E-mailadresse allen Benutzern anzeigen. NICHT ZU EMPFEHLEN. Achtung Spam!"
3440
 
3441
+ #: core/class-settings.php:307
3442
  msgctxt "admin settings"
3443
  msgid "How to determine the listing's email address?"
3444
  msgstr "Wie legt man die E-mailadresse für einen Eintrag fest?"
3445
 
3446
+ #: core/class-settings.php:310
3447
  msgctxt "admin settings"
3448
  msgid ""
3449
  "This affects emails sent to listing owners via contact forms or when their "
3452
  "Dies bewirkt, dass eine E-mail an den Eigentümer geschickt wird, wenn der "
3453
  "Eintrag abläuft."
3454
 
3455
+ #: core/class-settings.php:317
3456
  msgctxt "admin settings"
3457
  msgid "E-Mail Notifications"
3458
  msgstr "Email Erinnerung"
3459
 
3460
+ #: core/class-settings.php:320
3461
  msgctxt "admin settings"
3462
  msgid "Notify admin via e-mail when..."
3463
  msgstr "Administrator per E-mail informieren wenn... "
3464
 
3465
+ #: core/class-settings.php:324
3466
  msgctxt "admin settings"
3467
  msgid "A new listing is submitted."
3468
  msgstr "Ein neuer Eintrag wurde eingestellt."
3469
 
3470
+ #: core/class-settings.php:325
3471
  msgctxt "admin settings"
3472
  msgid "A listing is edited."
3473
  msgstr "Ein Eintrag wurde bearbeitet."
3474
 
3475
+ #: core/class-settings.php:326
3476
  msgctxt "admin settings"
3477
  msgid "A listing expires."
3478
  msgstr "Ein Eintrag ist abgelaufen."
3479
 
3480
+ #: core/class-settings.php:327
3481
  msgctxt "admin settings"
3482
  msgid "A contact message is sent to a listing's owner."
3483
  msgstr "Eine Nachricht wurde an den Eigentümer verschickt."
3484
 
3485
+ #: core/class-settings.php:333
3486
  msgctxt "admin settings"
3487
  msgid "CC this e-mail address too"
3488
  msgstr "CC diese E-mail an"
3489
 
3490
+ #: core/class-settings.php:339
3491
  msgctxt "admin settings"
3492
  msgid "Notify users via e-mail when..."
3493
  msgstr "Benachrichtige Benutzer per E-mail wenn..."
3494
 
3495
+ #: core/class-settings.php:342
3496
  msgctxt "admin settings"
3497
  msgid "You can modify the text template used for most of these e-mails below."
3498
  msgstr ""
3499
  "Du kannst dieses Texttemplate verändern, das für die meisten der E-"
3500
  "mailadressen unten verwendet wird."
3501
 
3502
+ #: core/class-settings.php:343
3503
  msgctxt "admin settings"
3504
  msgid "Their listing is submitted."
3505
  msgstr "Ihr Eintrag ist eingereicht."
3506
 
3507
+ #: core/class-settings.php:344
3508
  msgctxt "admin settings"
3509
  msgid "Their listing is approved/published."
3510
  msgstr "Ihr Eintrag ist genehmigt/veröffentlicht."
3511
 
3512
+ #: core/class-settings.php:353
3513
  msgctxt "contact email"
3514
  msgid "You have received a reply from your listing at %s."
3515
  msgstr "Sie haben eine Antwort auf Ihren Eintrag erhalten am %s."
3516
 
3517
+ #: core/class-settings.php:354
3518
  msgctxt "contact email"
3519
  msgid "Name: %s"
3520
  msgstr "Name: %s"
3521
 
3522
+ #: core/class-settings.php:355
3523
  msgctxt "contact email"
3524
  msgid "E-Mail: %s"
3525
  msgstr "E-mail: %s"
3526
 
3527
+ #: core/class-settings.php:356
3528
  msgctxt "contact email"
3529
  msgid "Message:"
3530
  msgstr "Nachricht:"
3531
 
3532
+ #: core/class-settings.php:358
3533
  msgctxt "contact email"
3534
  msgid "Time: %s"
3535
  msgstr "Zeit: %s"
3536
 
3537
+ #: core/class-settings.php:360
3538
  msgctxt "admin settings"
3539
  msgid "E-Mail Templates"
3540
  msgstr "E-mail Templates"
3541
 
3542
+ #: core/class-settings.php:363
3543
  msgctxt "admin settings"
3544
  msgid "Email confirmation message"
3545
  msgstr "Email Bestätigungsnachricht"
3546
 
3547
+ #: core/class-settings.php:367
3548
  msgctxt "admin settings"
3549
  msgid "Sent after a listing has been submitted."
3550
  msgstr "Senden nachdem der Eintrag eingestellt wurde."
3551
 
3552
+ #: core/class-settings.php:368 core/class-settings.php:376
3553
+ #: core/class-settings.php:417
3554
  msgctxt "admin settings"
3555
  msgid "Listing's title"
3556
  msgstr "Eintrag Titel"
3557
 
3558
+ #: core/class-settings.php:371
3559
  msgctxt "admin settings"
3560
  msgid "Listing published message"
3561
  msgstr "Eintrag veröffentlicht Nachricht"
3562
 
3563
+ #: core/class-settings.php:374
3564
  msgctxt "admin settings"
3565
  msgid ""
3566
  "Your listing \"[listing]\" is now available at [listing-url] and can be "
3569
  "Dein Eintrag \"[listing]\" ist jetzt verfügbar unter [listing-url] und "
3570
  "kann öffentlich eingesehen werden."
3571
 
3572
+ #: core/class-settings.php:375
3573
  msgctxt "admin settings"
3574
  msgid "Sent when the listing has been published or approved by an admin."
3575
  msgstr ""
3576
  "Senden wenn der Eintrag vom Administrator genehmigt oder veröffentlicht "
3577
  "wurde."
3578
 
3579
+ #: core/class-settings.php:377
3580
  msgctxt "admin settings"
3581
  msgid "Listing's URL"
3582
  msgstr "Eintrags URL"
3583
 
3584
+ #: core/class-settings.php:381
3585
  msgctxt "admin settings"
3586
  msgid "Listing Contact Message"
3587
  msgstr "Eintrag Kontakt Nachricht"
3588
 
3589
+ #: core/class-settings.php:385
3590
  msgctxt "admin settings"
3591
  msgid ""
3592
  "Sent to listing owners when someone uses the contact form on their listing "
3595
  "An den Eigentümer senden wenn jemand die Kontaktform auf Ihrer Eintragsseite "
3596
  "verwendet."
3597
 
3598
+ #: core/class-settings.php:395
3599
  #, fuzzy
3600
  msgctxt "admin settings"
3601
  msgid "Payment related"
3602
  msgstr "Bezahlmethode"
3603
 
3604
+ #: core/class-settings.php:412
3605
  #, fuzzy
3606
  msgctxt "admin settings"
3607
  msgid "Payment abandoned reminder message"
3608
  msgstr "Erneuerungserinnerung E-mail Nachricht"
3609
 
3610
+ #: core/class-settings.php:416
3611
  msgctxt "admin settings"
3612
  msgid "Sent some time after a pending payment is abandoned by users."
3613
  msgstr ""
3614
 
3615
+ #: core/class-settings.php:418
3616
  #, fuzzy
3617
  msgctxt "admin settings"
3618
  msgid "Checkout URL link"
3619
  msgstr "Kasse"
3620
 
3621
+ #: core/class-settings.php:424
3622
  msgctxt "admin settings"
3623
  msgid "Renewal Reminders"
3624
  msgstr "Erneuerungserinnerung"
3625
 
3626
+ #: core/class-settings.php:427
3627
  msgctxt "admin settings"
3628
  msgid ""
3629
  "This section refers only to the text of the renewal/expiration notices. You "
3633
  "Nachricht. Du kannst auch <a>konfigurieren wann die E-mails gesendet werden</"
3634
  "a>"
3635
 
3636
+ #: core/class-settings.php:431
3637
  msgctxt "admin settings"
3638
  msgid "Pending expiration e-mail message"
3639
  msgstr "Ausstehende Abgelaufen E-mail Nachricht"
3640
 
3641
+ #: core/class-settings.php:435
3642
  msgctxt "settings"
3643
  msgid ""
3644
  "Sent some time before the listing expires. Applies to non-recurring renewals "
3647
  "Einige Zeit bevor der Eintrag abläuft senden. Wird nur bei kostenlosen "
3648
  "Erneuerungen verwendet."
3649
 
3650
+ #: core/class-settings.php:436 core/class-settings.php:449
3651
+ #: core/class-settings.php:462 core/class-settings.php:475
3652
+ #: core/class-settings.php:488
3653
  msgctxt "settings"
3654
  msgid "Listing's name (with link)"
3655
  msgstr "Eintragsname (mit Link)"
3656
 
3657
+ #: core/class-settings.php:437 core/class-settings.php:450
3658
+ #: core/class-settings.php:463 core/class-settings.php:476
3659
+ #: core/class-settings.php:489
3660
  msgctxt "settings"
3661
  msgid "Author's name"
3662
  msgstr "Authorname"
3663
 
3664
+ #: core/class-settings.php:438 core/class-settings.php:451
3665
+ #: core/class-settings.php:490
3666
  msgctxt "settings"
3667
  msgid "Expiration date"
3668
  msgstr "Ablaufdatum"
3669
 
3670
+ #: core/class-settings.php:439
3671
  msgctxt "settings"
3672
  msgid "Category that is going to expire"
3673
  msgstr "Kategorie die bald abläuft"
3674
 
3675
+ #: core/class-settings.php:440 core/class-settings.php:453
3676
+ #: core/class-settings.php:492
3677
  msgctxt "settings"
3678
  msgid "Link to renewal page"
3679
  msgstr "Link zu erneuerten Seite"
3680
 
3681
+ #: core/class-settings.php:441 core/class-settings.php:454
3682
+ #: core/class-settings.php:466 core/class-settings.php:479
3683
+ #: core/class-settings.php:493
3684
  msgctxt "settings"
3685
  msgid "Link to your site"
3686
  msgstr "Link zu deiner Seite"
3687
 
3688
+ #: core/class-settings.php:444
3689
  msgctxt "admin settings"
3690
  msgid "Listing Renewal e-mail message"
3691
  msgstr "Eintrag Erneuerung E-mail Nachricht"
3692
 
3693
+ #: core/class-settings.php:448
3694
  msgctxt "settings"
3695
  msgid ""
3696
  "Sent at the time of listing expiration. Applies to non-recurring renewals "
3699
  "Zur Zeit wenn der Eintrag abläuft senden. Wird nur bei kostenlosen "
3700
  "Erneuerungen verwendet."
3701
 
3702
+ #: core/class-settings.php:452 core/class-settings.php:491
3703
  msgctxt "settings"
3704
  msgid "Category that expired"
3705
  msgstr "Ablaufende Kategorie"
3706
 
3707
+ #: core/class-settings.php:457
3708
  msgctxt "admin settings"
3709
  msgid "Listing auto-renewal reminder (recurring payments)"
3710
  msgstr "Eintrag automatische Erneuerungserinnerung (Abbuchungen)"
3711
 
3712
+ #: core/class-settings.php:461
3713
  msgctxt "settings"
3714
  msgid ""
3715
  "Sent some time before the listing is auto-renewed. Applies to recurring "
3718
  "Einige Zeit bevor der Eintrag abläuft senden. Wird nur bei bezahlten "
3719
  "Erneuerungen verwendet."
3720
 
3721
+ #: core/class-settings.php:464 core/class-settings.php:478
3722
  msgctxt "settings"
3723
  msgid "Renewal date"
3724
  msgstr "Erneuerungsdatum"
3725
 
3726
+ #: core/class-settings.php:465
3727
  msgctxt "settings"
3728
  msgid "Category that is going to be renewed"
3729
  msgstr "Kategorie die erneuert werden soll"
3730
 
3731
+ #: core/class-settings.php:467
3732
  msgctxt "settings"
3733
  msgid "Link to manage subscriptions"
3734
  msgstr "Link um Abos zu verwalten"
3735
 
3736
+ #: core/class-settings.php:470
3737
  msgctxt "admin settings"
3738
  msgid "Listing Renewal e-mail message (recurring payments)"
3739
  msgstr "Eintragserneuerungs E-mail Nachricht (Abbuchungen)"
3740
 
3741
+ #: core/class-settings.php:474
3742
  msgctxt "settings"
3743
  msgid ""
3744
  "Sent after the listing is auto-renewed. Applies to recurring renewals only."
3746
  "Sende nachdem der Eintrag automatisch erneuert wurde. Wird nur bei bezahlten "
3747
  "Erneuerungen verwendet."
3748
 
3749
+ #: core/class-settings.php:477
3750
  msgctxt "settings"
3751
  msgid "Renewed category"
3752
  msgstr "Erneuerte Kategorie"
3753
 
3754
+ #: core/class-settings.php:483
3755
  msgctxt "admin settings"
3756
  msgid "Renewal reminder e-mail message"
3757
  msgstr "Erneuerungserinnerung E-mail Nachricht"
3758
 
3759
+ #: core/class-settings.php:487
3760
  msgctxt "settings"
3761
  msgid ""
3762
  "Sent some time after listing expiration and when no renewal has occurred. "
3765
  "Einige Zeit nachdem der Eintrag abgelaufen und keine Erneuerung beauftragt "
3766
  "wurde senden. Wird bei bezahlten und kostenlosen Erneuerungen verwendet."
3767
 
3768
+ #: core/class-settings.php:497
3769
  msgctxt "admin settings"
3770
  msgid "Payment"
3771
  msgstr "Bezahlung"
3772
 
3773
+ #: core/class-settings.php:498
3774
  msgctxt "admin settings"
3775
  msgid "Payment Settings"
3776
  msgstr "Bezahlung Einstellungen"
3777
 
3778
+ #: core/class-settings.php:501
3779
  msgctxt "admin settings"
3780
  msgid "Turn On payments?"
3781
  msgstr "Bezahlungen aktivieren?"
3782
 
3783
+ #: core/class-settings.php:503
3784
  msgctxt "admin settings"
3785
  msgid "Put payment gateways in test mode?"
3786
  msgstr "Bezahlungsgateway im Testmodus ausführen?"
3787
 
3788
+ #: core/class-settings.php:508
3789
  msgctxt "admin settings"
3790
  msgid "Perform checkouts on the secure (HTTPS) version of your site?"
3791
  msgstr ""
3792
  "Aktiviere (HTTPS) sichere Verbindung für den Bestellprozess deiner Seite?"
3793
 
3794
+ #: core/class-settings.php:511
3795
  msgctxt "admin settings"
3796
  msgid ""
3797
  "Recommended for added security. For this to work you need to enable HTTPS on "
3800
  "Empfohlen zur Erweiterung der Sicherheit. Aktiviere HTTPS auf deinem Server "
3801
  "und <a>erhalte ein SSL Zertifikat</a>"
3802
 
3803
+ #: core/class-settings.php:515
3804
  msgctxt "admin settings"
3805
  msgid "Currency Code"
3806
  msgstr "Währungsschlüssel"
3807
 
3808
+ #: core/class-settings.php:517
3809
  msgctxt "admin settings"
3810
  msgid "Australian Dollar (AUD)"
3811
  msgstr "Australischer Dollar (AUD)"
3812
 
3813
+ #: core/class-settings.php:518
3814
  msgctxt "admin settings"
3815
  msgid "Brazilian Real (BRL)"
3816
  msgstr "Brasilianischer Real (BRL)"
3817
 
3818
+ #: core/class-settings.php:519
3819
  msgctxt "admin settings"
3820
  msgid "Canadian Dollar (CAD)"
3821
  msgstr "Kanadischer Dollar (CAD)"
3822
 
3823
+ #: core/class-settings.php:520
3824
  msgctxt "admin settings"
3825
  msgid "Czech Koruna (CZK)"
3826
  msgstr "Tschechische Koruna (CZK)"
3827
 
3828
+ #: core/class-settings.php:521
3829
  msgctxt "admin settings"
3830
  msgid "Danish Krone (DKK)"
3831
  msgstr "Dänische Krone (DKK)"
3832
 
3833
+ #: core/class-settings.php:522
3834
  msgctxt "admin settings"
3835
  msgid "Euro (EUR)"
3836
  msgstr "Euro (EUR)"
3837
 
3838
+ #: core/class-settings.php:523
3839
  msgctxt "admin settings"
3840
  msgid "Hong Kong Dollar (HKD)"
3841
  msgstr "Hong Kong Dollar (HKD)"
3842
 
3843
+ #: core/class-settings.php:524
3844
  msgctxt "admin settings"
3845
  msgid "Hungarian Forint (HUF)"
3846
  msgstr "Ungarischer Forint (HUF)"
3847
 
3848
+ #: core/class-settings.php:525
3849
  msgctxt "admin settings"
3850
  msgid "Israeli New Shequel (ILS)"
3851
  msgstr "Israelischer Neuer Schequel (ILS)"
3852
 
3853
+ #: core/class-settings.php:526
3854
  msgctxt "admin settings"
3855
  msgid "Japanese Yen (JPY)"
3856
  msgstr "Japanischer Jen (JPY)"
3857
 
3858
+ #: core/class-settings.php:527
3859
  msgctxt "admin settings"
3860
  msgid "Malasian Ringgit (MYR)"
3861
  msgstr "Malaysischer Ringgit (MYR)"
3862
 
3863
+ #: core/class-settings.php:528
3864
  msgctxt "admin settings"
3865
  msgid "Mexican Peso (MXN)"
3866
  msgstr "Mexikanischer Peso (MXN)"
3867
 
3868
+ #: core/class-settings.php:529
3869
  msgctxt "admin settings"
3870
  msgid "Norwegian Krone (NOK)"
3871
  msgstr "Norwegische Krone (NOK)"
3872
 
3873
+ #: core/class-settings.php:530
3874
  msgctxt "admin settings"
3875
  msgid "New Zealand Dollar (NZD)"
3876
  msgstr "Neuseeland Dollar (NZD)"
3877
 
3878
+ #: core/class-settings.php:531
3879
  msgctxt "admin settings"
3880
  msgid "Philippine Peso (PHP)"
3881
  msgstr "Philippinischer Peso (PHP)"
3882
 
3883
+ #: core/class-settings.php:532
3884
  msgctxt "admin settings"
3885
  msgid "Polish Zloty (PLN)"
3886
  msgstr "Polnischer Zloty (PLN)"
3887
 
3888
+ #: core/class-settings.php:533
3889
  msgctxt "admin settings"
3890
  msgid "Pound Sterling (GBP)"
3891
  msgstr "Pfund Sterling (GBP)"
3892
 
3893
+ #: core/class-settings.php:534
3894
  msgctxt "admin settings"
3895
  msgid "Singapore Dollar (SGD)"
3896
  msgstr "Singapore Dollar (SGD)"
3897
 
3898
+ #: core/class-settings.php:535
3899
  msgctxt "admin settings"
3900
  msgid "Swedish Krona (SEK)"
3901
  msgstr "Schwedische Krone (SEK)"
3902
 
3903
+ #: core/class-settings.php:536
3904
  msgctxt "admin settings"
3905
  msgid "Swiss Franc (CHF)"
3906
  msgstr "Schweizer Franken (CHF)"
3907
 
3908
+ #: core/class-settings.php:537
3909
  msgctxt "admin settings"
3910
  msgid "Taiwan Dollar (TWD)"
3911
  msgstr "Taiwanischer Dollar (TWD)"
3912
 
3913
+ #: core/class-settings.php:538
3914
  msgctxt "admin settings"
3915
  msgid "Thai Baht (THB)"
3916
  msgstr "Thailändischer Baht (THB)"
3917
 
3918
+ #: core/class-settings.php:539
3919
  msgctxt "admin settings"
3920
  msgid "Turkish Lira (TRY)"
3921
  msgstr "Türkische Lira (TRY)"
3922
 
3923
+ #: core/class-settings.php:540
3924
  #, fuzzy
3925
  msgctxt "admin settings"
3926
  msgid "U.S. Dollar (USD)"
3927
  msgstr "U.S. Dollar"
3928
 
3929
+ #: core/class-settings.php:544
3930
  msgctxt "admin settings"
3931
  msgid "Currency Symbol"
3932
  msgstr "Währungssymbol"
3933
 
3934
+ #: core/class-settings.php:549
3935
  #, fuzzy
3936
  msgctxt "admin settings"
3937
  msgid "Currency symbol display"
3938
  msgstr "Währungssymbol"
3939
 
3940
+ #: core/class-settings.php:553
3941
  msgctxt "admin settings"
3942
  msgid "Show currency symbol on the left"
3943
  msgstr ""
3944
 
3945
+ #: core/class-settings.php:554
3946
  msgctxt "admin settings"
3947
  msgid "Show currency symbol on the right"
3948
  msgstr ""
3949
 
3950
+ #: core/class-settings.php:555
3951
  #, fuzzy
3952
  msgctxt "admin settings"
3953
  msgid "Do not show currency symbol"
3954
  msgstr "Währungssymbol"
3955
 
3956
+ #: core/class-settings.php:557
3957
  msgctxt "admin settings"
3958
  msgid "Thank you for payment message"
3959
  msgstr "Danke für die Bezahlung Nachricht"
3960
 
3961
+ #: core/class-settings.php:558
3962
  msgctxt "admin settings"
3963
  msgid ""
3964
  "Thank you for your payment. Your payment is being verified and your listing "
3968
  "geprüft. Die Verifizierung und die Prüfung können 48 Stunden in Anspruch "
3969
  "nehmen."
3970
 
3971
+ #: core/class-settings.php:563
3972
  msgctxt "admin settings"
3973
  msgid "Ask users to come back for abandoned payments?"
3974
  msgstr ""
3975
 
3976
+ #: core/class-settings.php:566
3977
  msgctxt "admin settings"
3978
  msgid ""
3979
  "An abandoned payment is when a user attempts to place a listing and gets to "
3982
  "the transaction. BD can remind them to come back and continue."
3983
  msgstr ""
3984
 
3985
+ #: core/class-settings.php:572
3986
  #, fuzzy
3987
  msgctxt "admin settings"
3988
  msgid "Listing abandonment threshold (hours)"
3989
  msgstr "Eintragsabbuchungsemail Grenze (in tagen)"
3990
 
3991
+ #: core/class-settings.php:577
3992
  msgctxt "admin settings"
3993
  msgid ""
3994
  "Listings with pending payments are marked as abandoned after this time. You "
3995
  "can also <a>customize the e-mail</a> users receive."
3996
  msgstr ""
3997
 
3998
+ #: core/class-settings.php:583
3999
+ msgctxt "admin settings"
4000
+ msgid "Themes"
4001
+ msgstr ""
4002
+
4003
+ #: core/class-settings.php:588
4004
+ msgctxt "admin settings"
4005
+ msgid "Theme button style"
4006
+ msgstr ""
4007
+
4008
+ #: core/class-settings.php:592
4009
+ msgctxt "admin settings"
4010
+ msgid "Use the BD theme style for BD buttons"
4011
+ msgstr ""
4012
+
4013
+ #: core/class-settings.php:593
4014
+ msgctxt "admin settings"
4015
+ msgid "Use the WP theme style for BD buttons"
4016
+ msgstr ""
4017
+
4018
+ #: core/class-settings.php:599
4019
  msgctxt "admin settings"
4020
  msgid "Registration"
4021
  msgstr "Registrierung"
4022
 
4023
+ #: core/class-settings.php:600
4024
+ msgid ""
4025
+ "We expect that a membership plugin supports the 'redirect_to' parameter for "
4026
+ "the URLs below to work. If the plugin does not support them, these settings "
4027
+ "will not function as expected. Please contact the membership plugin and ask "
4028
+ "them to support the WP standard 'redirect_to' query parameter."
4029
+ msgstr ""
4030
+
4031
+ #: core/class-settings.php:603
4032
  msgctxt "admin settings"
4033
  msgid "Registration Settings"
4034
  msgstr "Registrierung Einstellungen"
4035
 
4036
+ #: core/class-settings.php:604
4037
  #, fuzzy
4038
  msgctxt "admin settings"
4039
  msgid "Require login to post listings?"
4040
  msgstr "Zurück zum Eintrag."
4041
 
4042
+ #: core/class-settings.php:609
4043
+ #, fuzzy
4044
+ msgctxt "admin settings"
4045
+ msgid "Login URL"
4046
+ msgstr "Login"
4047
+
4048
+ #: core/class-settings.php:612
4049
+ #, fuzzy
4050
+ msgctxt "admin settings"
4051
+ msgid ""
4052
+ "URL of your membership plugin's login page. Only enter this if using a "
4053
+ "membership plugin or custom login page."
4054
+ msgstr ""
4055
+ "URL deiner Mitgliedserweiterung Registrierungsseite. Nur verwenden wenn du "
4056
+ "ein Membership Plugin oder eine benutzerdefinierte Registrierungseite "
4057
+ "benutzt. "
4058
+
4059
+ #: core/class-settings.php:617
4060
  msgctxt "admin settings"
4061
  msgid "Registration URL"
4062
  msgstr "Registrierung URL"
4063
 
4064
+ #: core/class-settings.php:620
4065
  msgctxt "admin settings"
4066
  msgid ""
4067
  "URL of your membership plugin's registration page. Only enter this if using "
4071
  "ein Membership Plugin oder eine benutzerdefinierte Registrierungseite "
4072
  "benutzt. "
4073
 
4074
+ #: core/class-settings.php:624
4075
  msgctxt "admin settings"
4076
  msgid "Image"
4077
  msgstr "Bild"
4078
 
4079
+ #: core/class-settings.php:625
4080
  msgctxt "admin settings"
4081
  msgid ""
4082
  "Any changes to these settings will affect new listings only. Existing "
4089
  "existierende Einträge verändert werden, musst du Bild(er) neu hochladen, "
4090
  "nachdem Einstellungen hier verändert wurden."
4091
 
4092
+ #: core/class-settings.php:626
4093
  msgctxt "admin settings"
4094
  msgid "Image Settings"
4095
  msgstr "Bildeinstellungen"
4096
 
4097
+ #: core/class-settings.php:627
4098
  msgctxt "admin settings"
4099
  msgid "Allow images?"
4100
  msgstr "Bilder erlauben?"
4101
 
4102
+ #: core/class-settings.php:629
4103
  #, fuzzy
4104
  msgctxt "admin settings"
4105
  msgid "Min Image File Size (KB)"
4106
  msgstr "Maximale Bildgröße (KB)"
4107
 
4108
+ #: core/class-settings.php:630
4109
  msgctxt "admin settings"
4110
  msgid "Max Image File Size (KB)"
4111
  msgstr "Maximale Bildgröße (KB)"
4112
 
4113
+ #: core/class-settings.php:632
4114
  #, fuzzy
4115
  msgctxt "admin settings"
4116
  msgid "Min image width (px)"
4117
  msgstr "Bildergröße (in px):"
4118
 
4119
+ #: core/class-settings.php:633
4120
  #, fuzzy
4121
  msgctxt "admin settings"
4122
  msgid "Min image height (px)"
4123
  msgstr "Bilderhöhe (in px):"
4124
 
4125
+ #: core/class-settings.php:635
4126
  #, fuzzy
4127
  msgctxt "admin settings"
4128
  msgid "Max image width (px)"
4129
  msgstr "Maximale Bildbreite"
4130
 
4131
+ #: core/class-settings.php:636
4132
  #, fuzzy
4133
  msgctxt "admin settings"
4134
  msgid "Max image height (px)"
4135
  msgstr "Maximale Bildhöhe"
4136
 
4137
+ #: core/class-settings.php:638
4138
  msgctxt "admin settings"
4139
  msgid "Turn on thickbox/lightbox?"
4140
  msgstr "Kontrollkästchen/Leuchtkasten aktivieren?"
4141
 
4142
+ #: core/class-settings.php:638
4143
  msgctxt "admin settings"
4144
  msgid ""
4145
  "Uncheck if it conflicts with other elements or plugins installed on your site"
4147
  "Deaktivieren wenn Konflikte mit anderen Elementen oder installierten "
4148
  "Erweiterungen entstehen"
4149
 
4150
+ #: core/class-settings.php:640
4151
  #, fuzzy
4152
  msgctxt "admin settings"
4153
  msgid "Thumbnails"
4154
  msgstr "Thumbnails"
4155
 
4156
+ #: core/class-settings.php:641
4157
  #, fuzzy
4158
  msgctxt "admin settings"
4159
  msgid "Thumbnail width (px)"
4160
  msgstr "Thumbnailbreite"
4161
 
4162
+ #: core/class-settings.php:642
4163
  #, fuzzy
4164
  msgctxt "admin settings"
4165
  msgid "Thumbnail height (px)"
4166
  msgstr "Thumbnailbreite"
4167
 
4168
+ #: core/class-settings.php:645
4169
  msgctxt "admin settings"
4170
  msgid "Crop thumbnails to exact dimensions?"
4171
  msgstr ""
4172
 
4173
+ #: core/class-settings.php:648
4174
  msgctxt "admin settings"
4175
  msgid ""
4176
  "When enabled images will match exactly the dimensions above but part of the "
4179
  "Depending on the uploaded images, thumbnails may have different heights."
4180
  msgstr ""
4181
 
4182
+ #: core/class-settings.php:654
4183
  msgctxt "admin settings"
4184
  msgid "Number of free images"
4185
  msgstr "Nummer der freien Bilder"
4186
 
4187
+ #: core/class-settings.php:659
4188
  msgctxt "admin settings"
4189
  msgid ""
4190
  "For paid listing images, configure that by adding or editing a <a>Fee Plan</"
4194
  "erstellen eines <a>Preisplan</a> an Stelle dieser Einstellungen, die von "
4195
  "bezahlten Einträgen ignoriert wird."
4196
 
4197
+ #: core/class-settings.php:660
4198
  msgctxt "admin settings"
4199
  msgid "Use default picture for listings with no picture?"
4200
  msgstr "Benutze Standardbilder für Einträge mit keinem Bild?"
4201
 
4202
+ #: core/class-settings.php:661
4203
  msgctxt "admin settings"
4204
  msgid "Show Thumbnail on main listings page?"
4205
  msgstr "Thumbnail auf der Eintragshauptseite anzeigen?"
4206
 
4207
+ #: core/class-settings.php:717
4208
  msgctxt "admin settings"
4209
  msgid ""
4210
  "Could not copy the AJAX compatibility plugin \"%s\". Compatibility mode was "
4211
  "not activated."
4212
  msgstr ""
4213
 
4214
+ #: core/class-settings.php:725
4215
  msgctxt "admin settings"
4216
  msgid ""
4217
  "Could not activate AJAX Compatibility mode: the directory \"%s\" could not "
4218
  "be created."
4219
  msgstr ""
4220
 
4221
+ #: core/class-settings.php:734
4222
  msgctxt "admin settings"
4223
  msgid ""
4224
  "Could not remove the \"Business Directory Plugin - AJAX Compatibility Module"
4225
  "\". Please remove the file \"%s\" manually or deactivate the plugin."
4226
  msgstr ""
4227
 
4228
+ #: core/class-settings.php:1033
4229
  msgctxt "settings"
4230
  msgid "Deactivate License"
4231
  msgstr "Lizenz Deaktivieren"
4232
 
4233
+ #: core/class-settings.php:1035
4234
  msgctxt "settings"
4235
  msgid "Deactivating license..."
4236
  msgstr "Deaktiviere Lizenz..."
4237
 
4238
+ #: core/class-settings.php:1038
4239
  msgctxt "settings"
4240
  msgid "Activate License"
4241
  msgstr "Aktiviere Lizenz"
4242
 
4243
+ #: core/class-settings.php:1040
4244
  msgctxt "settings"
4245
  msgid "Activating license..."
4246
  msgstr "Aktiviere Lizenz..."
4247
 
4248
+ #: core/class-settings.php:1064
4249
  msgctxt "admin settings"
4250
  msgid "Valid placeholders: %s"
4251
  msgstr "Gültige Platzhalter: %s"
4252
 
4253
+ #: core/class-settings.php:1098
4254
  msgctxt "settings email"
4255
  msgid "Click to edit e-mail"
4256
  msgstr "Klicken um E-mail zu bearbeiten"
4257
 
4258
+ #: core/class-settings.php:1099
4259
  msgctxt "settings email"
4260
  msgid "Click to edit"
4261
  msgstr "zum Bearbeiten klicken"
4262
 
4263
+ #: core/class-settings.php:1112
4264
  msgctxt "settings email"
4265
  msgid "E-Mail Subject"
4266
  msgstr "E-mail Betreff"
4267
 
4268
+ #: core/class-settings.php:1123
4269
  msgctxt "settings email"
4270
  msgid "E-Mail Body"
4271
  msgstr "E-mail Text"
4272
 
4273
+ #: core/class-settings.php:1134
4274
  msgctxt "settings email"
4275
  msgid "You can use the following placeholders:"
4276
  msgstr "Du kannst folgende Platzhalter verwenden:"
4277
 
4278
+ #: core/class-settings.php:1157
4279
  msgctxt "settings email"
4280
  msgid "Preview e-mail"
4281
  msgstr "Vorschau E-mail"
4282
 
4283
+ #: core/class-settings.php:1158
4284
  msgctxt "settings email"
4285
  msgid "Cancel"
4286
  msgstr "Abbrechen"
4287
 
4288
+ #: core/class-settings.php:1159
4289
  msgctxt "settings email"
4290
  msgid "Save Changes"
4291
  msgstr "Änderungen sichern"
4292
 
4293
+ #: core/class-settings.php:1178
4294
  msgctxt "settings email"
4295
  msgid "Site title"
4296
  msgstr "Seitentitel"
4297
 
4298
+ #: core/class-settings.php:1181
4299
  msgctxt "settings email"
4300
  msgid "Site title (with link)"
4301
  msgstr "Seitentitel (mit Link)"
4302
 
4303
+ #: core/class-settings.php:1184
4304
  msgctxt "settings email"
4305
  msgid "Site address (with link)"
4306
  msgstr "Seitenadresse (mit Link)"
4307
 
4308
+ #: core/class-settings.php:1187
4309
  msgctxt "settings email"
4310
  msgid "Directory URL (with link)"
4311
  msgstr "Verzeichnis URL (mit Link)"
4312
 
4313
+ #: core/class-settings.php:1190
4314
  msgctxt "settings email"
4315
  msgid "Current date"
4316
  msgstr "Aktuelles Datum"
4317
 
4318
+ #: core/class-settings.php:1193
4319
  msgctxt "settings email"
4320
  msgid "Current time"
4321
  msgstr "Aktuelle Zeit"
4731
  msgid "Transaction Key is missing."
4732
  msgstr "Transaktionen"
4733
 
4734
+ #: core/gateways-authorize-net.php:92
4735
  msgctxt "authorize-net"
4736
  msgid ""
4737
  "The payment gateway didn't accept your credit card or billing information. "
4738
  "The following reason was given: \"%s\"."
4739
  msgstr ""
4740
 
4741
+ #: core/gateways-authorize-net.php:96
4742
  msgctxt "authorize-net"
4743
  msgid ""
4744
  "Your payment is being held for review by the payment gateway. The following "
4745
  "reason was given: \"%s\"."
4746
  msgstr ""
4747
 
4748
+ #: core/gateways-authorize-net.php:99 core/gateways-authorize-net.php:122
4749
  msgctxt "authorize-net"
4750
  msgid "Payment was rejected. The following reason was given: \"%s\"."
4751
  msgstr ""
4752
 
4753
+ #: core/gateways-authorize-net.php:116
4754
+ #, fuzzy
4755
+ msgctxt "authorize-net"
4756
+ msgid "Setup fee"
4757
+ msgstr "Preise Installieren/Verwalten"
4758
+
4759
+ #: core/gateways-authorize-net.php:173
4760
  #, fuzzy
4761
  msgctxt "authorize-net"
4762
  msgid "Could not process payment."
4873
  msgid "Destination dir \"%s\" is not writable."
4874
  msgstr "Eintragskategorie \"%s\" existiert nicht"
4875
 
4876
+ #: core/helpers/class-themes-updater.php:126
4877
+ msgctxt "themes"
4878
+ msgid "Updating theme..."
4879
+ msgstr ""
4880
+
4881
+ #: core/helpers/class-themes-updater.php:127
4882
+ #, fuzzy
4883
+ msgctxt "themes"
4884
+ msgid "Theme updated."
4885
+ msgstr "Preis aktualisiert."
4886
+
4887
+ #: core/helpers/class-themes-updater.php:129
4888
+ msgctxt "themes"
4889
+ msgid "New version available (<b>%s</b>). <a>Update now.</a>"
4890
+ msgstr ""
4891
+
4892
+ #: core/helpers/class-themes-updater.php:157
4893
+ #, fuzzy
4894
+ msgctxt "themes"
4895
+ msgid "Could not update theme: %s"
4896
+ msgstr "Konnte Lizenz nicht deaktivieren: %s"
4897
+
4898
+ #: core/helpers/class-themes-updater.php:163
4899
+ #, fuzzy
4900
+ msgctxt "themes"
4901
+ msgid "Theme was updated sucessfully."
4902
+ msgstr "Der Import wurde erfolgreich abgeschlossen."
4903
+
4904
  #: core/installer.php:38
4905
  msgctxt "default category name"
4906
  msgid "General"
4907
  msgstr "Allgemein"
4908
 
4909
+ #: core/installer.php:464
4910
  msgctxt "installer"
4911
  msgid ""
4912
  "<b>Business Directory Plugin - Regions Module</b> was disabled because it is "
4917
  "inkompatibel mit der aktuellen Version des Branchenverzeichnisses ist. Bitte "
4918
  "aktualisiere das Regionenmodul. "
4919
 
4920
+ #: core/installer.php:530
4921
  msgctxt "installer"
4922
  msgid "Cleaning up listing fees information... %d/%d"
4923
  msgstr "Eintragpreisinformation säubern... %d/%d"
4924
 
4925
+ #: core/installer.php:580
4926
  msgctxt "installer"
4927
  msgid "Migrating previous transactions to new Payments API... %d/%d"
4928
  msgstr "Migriere vergangene Transaktionen zur neuen Bezahl API... %d/%d"
4929
 
4930
+ #: core/installer.php:609
4931
  msgctxt "installer"
4932
  msgid "Initial listing payment (BD < 3.4)"
4933
  msgstr "Initialbezahlung Eintrag (BD < 3.4)"
4934
 
4935
+ #: core/installer.php:620
4936
  msgctxt "installer"
4937
  msgid "Listing edit payment (BD < 3.4)"
4938
  msgstr "Bezahlung Eintrag bearbeiten (BD < 3.4)"
4939
 
4940
+ #: core/installer.php:641
4941
  msgctxt "installer"
4942
  msgid "Renewal fee \"%s\" for category \"%s\""
4943
  msgstr "Erneuere Preis \"%s\" für Kategorie \"%s\""
4944
 
4945
+ #: core/installer.php:660
4946
  msgctxt "installer"
4947
  msgid "Listing upgrade to featured"
4948
  msgstr "Eintrag aktualisieren auf Hervorhebung"
4949
 
4950
+ #: core/installer.php:902
4951
  msgid "Business Directory - Manual Upgrade Required"
4952
  msgstr "Branchenverzeichnis - Manuelle Aktualisierung erforderlich"
4953
 
4954
+ #: core/installer.php:904
4955
  msgid ""
4956
  "Business Directory features are currently disabled because the plugin needs "
4957
  "to perform a manual upgrade before continuing."
4959
  "Branchenverzeichnis Hervorhebungen sind aktuell deaktiviert, weil das Modul "
4960
  "manuell aktualisiert werden muss, bevor weiter hervorgehoben werden kann."
4961
 
4962
+ #: core/installer.php:906
4963
  msgid "Perform Manual Upgrade"
4964
  msgstr "Manuelle Aktualisierung durchführen"
4965
 
4966
+ #: core/installer.php:922 core/installer.php:923 core/installer.php:934
4967
  msgid "Business Directory - Manual Upgrade"
4968
  msgstr "Branchenverzeichnis - Manuelle Aktualisierung"
4969
 
4970
+ #: core/installer.php:938
4971
  msgid ""
4972
  "Business Directory features are currently disabled because the plugin needs "
4973
  "to perform a manual upgrade before it can be used."
4975
  "Branchenverzeichnis Hervorhebungen sind momentan deaktiviert weil das Modul "
4976
  "manuell aktualisiert werden muss, bevor es weiter verwendet werden kann."
4977
 
4978
+ #: core/installer.php:940
4979
  msgid "Click \"Start Upgrade\" and wait until the process finishes."
4980
  msgstr ""
4981
  "Klicke \"Starte Aktualisierung\" und warte bis der Vorgang beendet wurde."
4982
 
4983
+ #: core/installer.php:943
4984
  msgctxt "manual-upgrade"
4985
  msgid "Start Upgrade"
4986
  msgstr "Starte Aktualisierung"
4987
 
4988
+ #: core/installer.php:945
4989
  msgctxt "manual-upgrade"
4990
  msgid "Pause Upgrade"
4991
  msgstr "Aktualisierung pausieren"
4992
 
4993
+ #: core/installer.php:951
4994
  msgctxt "manual-upgrade"
4995
  msgid ""
4996
  "The upgrade was sucessfully performed. Business Directory Plugin is now "
4999
  "Die Aktualisierung wurde erfolgreich durchgeführt. Branchenverzeichnis "
5000
  "Erweiterung ist nun verfügbar."
5001
 
5002
+ #: core/installer.php:954
5003
  msgctxt "manual-upgrade"
5004
  msgid "Go to \"Directory Admin\""
5005
  msgstr "Nach \" Verzeichnis Administration\""
5024
  msgid "No license key provided"
5025
  msgstr "Kein Lizenzschlüssel"
5026
 
 
 
 
 
 
 
 
 
 
 
5027
  #: core/licensing.php:169
5028
  msgctxt "licensing"
5029
  msgid "Deactivation failed"
5041
  "provided. Go to <a>Manage Options - Licenses</a> to enter your license "
5042
  "information."
5043
  msgstr ""
5044
+ "Folgende Premium Module funktionieren nicht, bis ein gültiger "
5045
+ "Lizenzschlüssel angegeben wurde. Gehen Sie zu <a>Optionen verwalten - "
5046
+ "Lizenzen</a>, um Ihre Lizenzinformation einzugeben."
5047
 
5048
  #: core/licensing.php:254
5049
  msgctxt "licensing"
5071
  msgid "Renew License Key"
5072
  msgstr "Erneuere Lizenzschlüssel"
5073
 
 
 
 
 
 
 
 
 
 
 
5074
  #: core/licensing.php:348
5075
  msgctxt "licensing"
5076
  msgid "Could not deactivate license: %s."
5086
  msgid "Free Listing"
5087
  msgstr "kostenloser Eintrag"
5088
 
5089
+ #: core/payment.php:144
5090
  msgctxt "fees-api"
5091
  msgid "Fee label is required."
5092
  msgstr "Preisbezeichnung erforderlich."
5093
 
5094
+ #: core/payment.php:147
5095
  msgctxt "fees-api"
5096
  msgid "Fee amount must be a non-negative decimal number."
5097
  msgstr "Preismenge muss eine nicht negative Zahl sein."
5098
 
5099
+ #: core/payment.php:150 core/payment.php:153
5100
  msgctxt "fees-api"
5101
  msgid "Fee must apply to at least one category."
5102
  msgstr "Preis muss mindestens einer Kategorie zugewiesen werden."
5103
 
5104
+ #: core/payment.php:156
5105
  msgctxt "fees-api"
5106
  msgid "Fee allowed images must be a non-negative integer."
5107
  msgstr ""
5108
  "Preis der Bilder erlaubt muss ein nicht negativer Wert einer ganzen Zahl "
5109
  "sein."
5110
 
5111
+ #: core/payment.php:159
5112
  msgctxt "fees-api"
5113
  msgid "Fee listing run must be a non-negative integer."
5114
  msgstr "Preis Eintrag muss eine ganzem nicht negative Zahl sein."
5115
 
5116
+ #: core/payment.php:164
5117
  msgctxt "fees-api"
5118
  msgid "Fee listing duration must be a number less than 10 years (3650 days)."
5119
  msgstr ""
5120
  "Preis Eintrag Zeitraum muss eine Nummer kleiner als 10 Jahre sein (3650 "
5121
  "Tage)."
5122
 
5123
+ #: core/payment.php:339
5124
  msgctxt "payments-api"
5125
  msgid ""
5126
  "You are offering featured listings but have payments turned off. Go to <a "
5133
  "Bezahlungseinstellungen zu verändern. Bis dahin ist die <i>Aktualisieren auf "
5134
  "Hervorgehoben</i> Option deaktiviert."
5135
 
5136
+ #: core/payment.php:357
5137
  msgctxt "payments-api"
5138
  msgid ""
5139
  "The <b>%s</b> gateway is active but not properly configured. The gateway "
5144
  "Gateway funktioniert nicht bis folgende Probleme gelöst wurden: <b>%s</b>. "
5145
  "Prüfe die <a href=\"%s\">Bezahlung Einstellungen</a>."
5146
 
5147
+ #: core/payment.php:367
5148
  msgctxt "admin"
5149
  msgid ""
5150
  "You have payments turned on but no gateway is active and properly "
5157
  "Bezahleinstellungen zu ändern. Das Verzeichnis wird im <i>kostenlosen Modus</"
5158
  "i> ausgeführt, bis die Änderungen gemacht wurden."
5159
 
5160
+ #: core/payment.php:371
5161
  msgid ""
5162
  "BD detected PayFast and another gateway were enabled. This setup is not "
5163
  "recommended due to PayFast supporting only ZAR and the other gateways not "
5167
  "aktiviert wurde. Dieses Setup ist nicht empfohlen, weil PayFast nur ZAR und "
5168
  "andere Gateways unterstützt und nicht dieses Zahlungsmittel."
5169
 
5170
+ #: core/payment.php:375
5171
  msgid ""
5172
  "You have recurring renewal of listing fees enabled but the payment gateways "
5173
  "installed don't support recurring payments. Until a gateway that supports "
5178
  "unterstützt keine wiederholten Abbuchungen. Bitte benutze einen Dienst wie "
5179
  "Paypal. Solange bleiben automatische Erneuerungen deaktiviert."
5180
 
5181
+ #: core/payment.php:380
5182
  msgid ""
5183
  "Due to Google Wallet limitations only monthly (30 days) recurring fees are "
5184
  "supported by the gateway. All other fees will be charged as non-recurring."
5186
  "Google Wallet unterstützt monatlich (30 Tage) wiederholte Abbuchungen durch "
5187
  "das Gateway. Alle anderen Gebühren werden als kostenlos abgerechnet."
5188
 
5189
+ #: core/payment.php:413
5190
  msgctxt "payments-api"
5191
  msgid "Checkout"
5192
  msgstr "Kasse"
5193
 
5194
+ #: core/payment.php:414
5195
  msgctxt "payments-api"
5196
  msgid "Pay %1$s through %2$s"
5197
  msgstr "Bezahle %1$s bekomme %2$s"
5198
 
5199
+ #: core/payment.php:421
5200
  msgctxt "payments-api"
5201
  msgid "Your transaction has been approved."
5202
  msgstr "Ihre Transaktion wurde genehmigt."
5203
 
5204
+ #: core/payment.php:602
5205
  msgctxt "payments"
5206
  msgid "Payment Details"
5207
  msgstr "Bezahldetails"
5208
 
5209
+ #: core/payment.php:629
5210
  msgctxt "checkout"
5211
  msgid "Payment Method"
5212
  msgstr "Bezahlmethode"
5213
 
5214
+ #: core/payment.php:658
5215
  msgctxt "payment"
5216
  msgid "Return to Directory."
5217
  msgstr "Zurück zum Verzeichnis."
5218
 
5219
+ #: core/payment.php:664
5220
  msgctxt "payments"
5221
  msgid ""
5222
  "Your payment is being processed by the payment gateway. Please reload this "
5226
  "Ihre Bezahlung wird durchgeführt. Bitte laden Sie die Seite ggf. neu, um zu "
5227
  "sehen ob der Status sich verändert hat oder kontaktieren Sie uns."
5228
 
5229
+ #: core/payment.php:667
5230
  msgctxt "payments"
5231
  msgid ""
5232
  "The payment has been rejected by the payment gateway. Please contact the "
5237
  "klicken Sie auf \"Bezahlungsmethode ändern\" oder versuchen Sie es später "
5238
  "noch einmal."
5239
 
5240
+ #: core/payment.php:668
5241
  msgctxt "payments"
5242
  msgid "Change Payment Method"
5243
  msgstr "Bezahlungsmethode ändern"
5244
 
5245
+ #: core/payment.php:670
5246
  msgctxt "payments"
5247
  msgid ""
5248
  "The payment has been rejected by the payment gateway. Please contact the "
5249
  "site administrator if you think there is an error."
5250
  msgstr "Die Zahlung wurde zurückgewiesen."
5251
 
5252
+ #: core/payment.php:673
5253
  msgctxt "payments"
5254
  msgid "The payment has been canceled at your request."
5255
  msgstr "Die Bezahlung wurde auf Ihren Wunsch abgebrochen."
5256
 
5257
+ #: core/payment.php:769
5258
  #, fuzzy
5259
  msgctxt "admin"
5260
  msgid "Pending Abandonment"
5261
  msgstr "Ausstehende Bezahlung"
5262
 
5263
+ #: core/payment.php:774
5264
  msgctxt "admin"
5265
  msgid "Abandoned"
5266
  msgstr ""
5267
 
5268
  #: core/templates/listing-sticky-tag.tpl.php:3
5269
+ #: core/templates/listing-sticky-tag.tpl.php:4 core/templates-listings.php:60
5270
  msgctxt "templates"
5271
  msgid "Featured Listing"
5272
  msgstr "Hervorgehobene Einträge"
5273
 
5274
  #: core/templates/listings.tpl.php:6
5275
+ #: templates/businessdirectory-listings.tpl.php:27 templates/search.tpl.php:21
5276
  msgctxt "templates"
5277
  msgid "No listings found."
5278
  msgstr "Kein Listig gefunden."
5315
  msgid "(Reset)"
5316
  msgstr "Zurücksetzen"
5317
 
5318
+ #: core/themes.php:587
5319
  #, fuzzy
5320
  msgctxt "themes"
5321
  msgid "ZIP file is not a valid BD theme file."
5322
  msgstr "Bitte eine gültige E-mailadresse eingeben."
5323
 
5324
+ #: core/themes.php:593
5325
  #, fuzzy
5326
  msgctxt "themes"
5327
  msgid "Could not create themes directory."
5328
  msgstr "wpbdp-csv-exports Verzeichnis konnte nicht erstellt werden."
5329
 
5330
+ #: core/themes.php:601
5331
  #, fuzzy
5332
  msgctxt "themes"
5333
  msgid "Could not remove previous theme directory \"%s\"."
5334
  msgstr "Konnte Eintragskategorie nicht erstellen \"%s\""
5335
 
5336
+ #: core/themes.php:607
5337
  #, fuzzy
5338
  msgctxt "themes"
5339
  msgid "Could not move new theme into theme directory."
5340
  msgstr "Momentan sind keine Einträge im Verzeichnis vorhanden."
5341
 
5342
+ #: core/utils.php:106
5343
  msgctxt "utils"
5344
  msgid ""
5345
  "POSTed data exceeds PHP config. maximum. See \"post_max_size\" directive."
5347
  "Gepustete Daten haben Maximum erreicht. Schau dir den Eintrag \"post_ma_size"
5348
  "\"in deiner php.ini an."
5349
 
5350
+ #: core/utils.php:159
5351
  msgctxt "utils"
5352
  msgid "File size (%s) exceeds maximum file size of %s"
5353
  msgstr "Dateigröße (%s) hat das Maximum von %s erreicht"
5354
 
5355
+ #: core/utils.php:167
5356
  #, fuzzy
5357
  msgctxt "utils"
5358
  msgid "File size (%s) is inferior to the required minimum file size of %s"
5359
  msgstr "Dateigröße (%s) hat das Maximum von %s erreicht"
5360
 
5361
+ #: core/utils.php:176 core/utils.php:183
5362
  msgctxt "utils"
5363
  msgid "File type \"%s\" is not allowed"
5364
  msgstr "Dateityp \"%s\" ist nicht erlaubt"
5365
 
5366
+ #: core/utils.php:190
5367
  msgctxt "utils"
5368
  msgid "Unkown error while uploading file."
5369
  msgstr "Unbekannter Fehler beim Hochladen der Datei."
5370
 
5371
+ #: core/utils.php:209
5372
  msgctxt "utils"
5373
  msgid "Uploaded file is not an image"
5374
  msgstr "Hochgeladene Datei ist kein Bild."
5375
 
5376
+ #: core/utils.php:218
5377
  msgctxt "utils"
5378
  msgid "Image width (%s px) is inferior to minimum required width of %s px."
5379
  msgstr ""
5380
 
5381
+ #: core/utils.php:224
5382
  msgctxt "utils"
5383
  msgid "Image height (%s px) is inferior to minimum required height of %s px."
5384
  msgstr ""
5385
 
5386
+ #: core/utils.php:230
5387
  msgctxt "utils"
5388
  msgid "Image width (%s px) is greater than maximum allowed width of %s px."
5389
  msgstr ""
5390
 
5391
+ #: core/utils.php:236
5392
  msgctxt "utils"
5393
  msgid "Image height (%s px) is greater than maximum required height of %s px."
5394
  msgstr ""
5395
 
5396
+ #: core/utils.php:250
5397
  msgctxt "utils"
5398
  msgid "Error while uploading file"
5399
  msgstr "Fehler während des Hochladens der Datei"
5670
  msgid "I agree to the Terms and Conditions"
5671
  msgstr "Ich akzeptiere die AGBs"
5672
 
5673
+ #: core/view-submit-listing.php:406
5674
  msgctxt "listings"
5675
  msgid "Fee \"%s\" for category \"%s\"%s"
5676
  msgstr "Preis \"%s\" für Kategorie \"%s\"%s"
5677
 
5678
+ #: core/view-submit-listing.php:409
5679
  msgctxt "listings"
5680
  msgid "(recurring)"
5681
  msgstr "(wiederholt)"
5682
 
5683
+ #: core/view-submit-listing.php:419 core/view-upgrade-listing.php:54
5684
  msgctxt "submit"
5685
  msgid "Listing upgrade to featured"
5686
  msgstr "Eintrag erneuert auf Hervorgehoben"
5687
 
5688
+ #: core/view-submit-listing.php:452
5689
  msgctxt "submit_state"
5690
  msgid "Invalid submit state."
5691
  msgstr "Ungültiger Zustand beim Einsenden."
5706
  msgid "Return to listing."
5707
  msgstr "Zurück zum Eintrag."
5708
 
5709
+ #: core/views.php:30
5710
  msgid ""
5711
  "You need to create a page with the [businessdirectory] shortcode for the "
5712
  "Business Directory plugin to work correctly."
5714
  "Sie müssen ein Seite erstellen die den [businessdirecory] Shortcode enthält "
5715
  "damit die Erweiterung richtig funktioniert."
5716
 
5717
+ #: core/views.php:32
5718
  msgid "The directory is temporarily disabled."
5719
  msgstr "Das Verzeichnis wurde temporär deaktiviert."
5720
 
5721
+ #: core/views.php:190
5722
  msgctxt "preview"
5723
  msgid "This is just a preview. The listing has not been published yet."
5724
  msgstr "Dies ist nur eine Vorschau. Der Eintrag wurde bisher nicht publiziert."
5725
 
5726
+ #: core/views.php:342
5727
  msgctxt "templates"
5728
  msgid "Listings tagged: %s"
5729
  msgstr "Getaggte Einträge: %s"
5730
 
5731
+ #: core/views.php:459
5732
  msgctxt "templates"
5733
  msgid ""
5734
  "There are no categories assigned to the business directory yet. You need to "
5743
  "nicht erstellt werden kann. Einträge können nicht erstellt werden bis ein "
5744
  "Kategorie zugewiesen wurde."
5745
 
5746
+ #: core/views.php:461
5747
  msgctxt "templates"
5748
  msgid "There are currently no listings in the directory."
5749
  msgstr "Keine Einträge im Verzeichnis vorhanden. "
5750
 
5751
+ #: core/views.php:479
5752
  msgctxt "templates"
5753
  msgid ""
5754
  "You have \"Hide Empty Categories\" on and some categories that don't have "
6166
  msgid "You do not currently have any listings in the directory."
6167
  msgstr "Momentan sind keine Einträge im Verzeichnis vorhanden."
6168
 
6169
+ #: templates/manage-listings.tpl.php:11 templates/search.tpl.php:24
6170
  msgctxt "templates"
6171
  msgid "Return to directory"
6172
  msgstr "Zurück zum Verzeichnis"
6382
  #: templates/renew-listing.tpl.php:22
6383
  #: templates/submit-listing/category-selection.tpl.php:8
6384
  #: templates/submit-listing/fee-selection.tpl.php:37
6385
+ #: templates/submit-listing/images.tpl.php:36
6386
  #: templates/submit-listing/listing-fields.tpl.php:34
6387
  msgctxt "templates"
6388
  msgid "Continue"
6398
  msgid "Do not renew my listing"
6399
  msgstr "Meinen Eintrag nicht erneuern"
6400
 
6401
+ #: templates/search-form.tpl.php:3
 
 
 
 
 
 
 
 
 
 
6402
  msgctxt "templates"
6403
  msgid "Find a listing"
6404
  msgstr "Einen Eintrag finden"
6405
 
6406
+ #: templates/search-form.tpl.php:14
6407
  msgctxt "search"
6408
  msgid "Clear"
6409
  msgstr "Säubern"
6410
 
6411
+ #: templates/search-form.tpl.php:15 templates/search.tpl.php:6
6412
+ msgctxt "search"
6413
+ msgid "Search"
6414
+ msgstr "Suche"
6415
+
6416
+ #: templates/search.tpl.php:14
6417
  msgctxt "search"
6418
  msgid "Search Results"
6419
  msgstr "Ergebnisse durchsuchen"
6529
  msgid "Image slots available:"
6530
  msgstr "verfügbare Bilder:"
6531
 
6532
+ #: templates/submit-listing/images-upload-form.tpl.php:50
6533
+ #, fuzzy
6534
+ msgctxt "templates"
6535
+ msgid "Min. file size:"
6536
+ msgstr "Max. Dateigröße:"
6537
+
6538
+ #: templates/submit-listing/images-upload-form.tpl.php:56
6539
  msgctxt "templates"
6540
  msgid "Max. file size:"
6541
  msgstr "Max. Dateigröße:"
6615
  msgid "http://businessdirectoryplugin.com"
6616
  msgstr "http://businessdirectoryplugin.com"
6617
 
6618
+ #, fuzzy
6619
+ #~ msgctxt "themes admin"
6620
+ #~ msgid "Delete theme"
6621
+ #~ msgstr "Preis löschen"
6622
+
6623
+ #, fuzzy
6624
+ #~ msgctxt "themes admin"
6625
+ #~ msgid "Delete Theme"
6626
+ #~ msgstr "Preis löschen"
6627
+
6628
+ #~ msgctxt "admin settings"
6629
+ #~ msgid "Display search form when displaying search results?"
6630
+ #~ msgstr "Suchform anzeigen wenn die Suchergebnisse angezeigt werden?"
6631
+
6632
+ #~ msgctxt "search"
6633
+ #~ msgid "Return to Advanced Search"
6634
+ #~ msgstr "Zurück zur erweiterten Suche"
6635
+
6636
  #~ msgctxt "admin transactions"
6637
  #~ msgid "transaction"
6638
  #~ msgstr "Transaktion"
languages/WPBDM-en_US.mo CHANGED
Binary file
languages/WPBDM-en_US.po CHANGED
@@ -4,7 +4,7 @@ msgid ""
4
  msgstr ""
5
  "Project-Id-Version: Business Directory Plugin 3.6\n"
6
  "Report-Msgid-Bugs-To: http://wordpress.org/tag/business-directory-plugin\n"
7
- "POT-Creation-Date: 2015-10-13 15:01:21+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"
@@ -215,164 +215,164 @@ msgctxt "admin menu"
215
  msgid "Uninstall"
216
  msgstr ""
217
 
218
- #: admin/class-admin.php:404
219
  #: admin/templates/listing-metabox-categories.tpl.php:69
220
  msgctxt "admin infometabox"
221
  msgid "never"
222
  msgstr ""
223
 
224
- #: admin/class-admin.php:486
225
  msgctxt "admin"
226
  msgid "The listing has been published."
227
  msgid_plural "The listings have been published."
228
  msgstr[0] ""
229
  msgstr[1] ""
230
 
231
- #: admin/class-admin.php:499
232
  msgctxt "admin"
233
  msgid "The listing status has been set as paid."
234
  msgid_plural "The listings status has been set as paid."
235
  msgstr[0] ""
236
  msgstr[1] ""
237
 
238
- #: admin/class-admin.php:511
239
  msgctxt "admin"
240
  msgid "The listing has been modified."
241
  msgid_plural "The listings have been modified."
242
  msgstr[0] ""
243
  msgstr[1] ""
244
 
245
- #: admin/class-admin.php:524
246
  msgctxt "admin"
247
  msgid "The listing has been upgraded."
248
  msgid_plural "The listings have been upgraded."
249
  msgstr[0] ""
250
  msgstr[1] ""
251
 
252
- #: admin/class-admin.php:536
253
  msgctxt "admin"
254
  msgid "The listing has been downgraded."
255
  msgid_plural "The listings have been downgraded."
256
  msgstr[0] ""
257
  msgstr[1] ""
258
 
259
- #: admin/class-admin.php:548
260
  msgctxt "admin"
261
  msgid "The transaction has been approved."
262
  msgstr ""
263
 
264
- #: admin/class-admin.php:556
265
  msgctxt "admin"
266
  msgid "The transaction has been rejected."
267
  msgstr ""
268
 
269
- #: admin/class-admin.php:562
270
  msgctxt "admin"
271
  msgid "The fee was successfully assigned."
272
  msgstr ""
273
 
274
- #: admin/class-admin.php:571
275
  msgctxt "admin"
276
  msgid "Listing was renewed."
277
  msgid_plural "Listings were renewed."
278
  msgstr[0] ""
279
  msgstr[1] ""
280
 
281
- #: admin/class-admin.php:578
282
  msgctxt "admin"
283
  msgid "Renewal email sent."
284
  msgstr ""
285
 
286
- #: admin/class-admin.php:612
287
  msgctxt "admin category id"
288
  msgid "ID"
289
  msgstr ""
290
 
291
- #: admin/class-admin.php:614 admin/class-admin.php:620
292
  msgctxt "admin"
293
  msgid "Listing Count"
294
  msgstr ""
295
 
296
- #: admin/class-admin.php:716
297
  msgctxt "admin"
298
  msgid ""
299
  "<b>Business Directory Plugin</b> requires fields with the following "
300
  "associations in order to work correctly: <b>%s</b>."
301
  msgstr ""
302
 
303
- #: admin/class-admin.php:718
304
  msgctxt "admin"
305
  msgid ""
306
  "<b>Business Directory Plugin</b> requires a field with a <b>%s</b> "
307
  "association in order to work correctly."
308
  msgstr ""
309
 
310
- #: admin/class-admin.php:722
311
  msgctxt "admin"
312
  msgid ""
313
  "You can create these custom fields by yourself inside \"Manage Form Fields\" "
314
  "or let Business Directory do this for you automatically."
315
  msgstr ""
316
 
317
- #: admin/class-admin.php:726
318
  msgctxt "admin"
319
  msgid "Go to \"Manage Form Fields\""
320
  msgstr ""
321
 
322
- #: admin/class-admin.php:729
323
  msgctxt "admin"
324
  msgid "Create these required fields for me"
325
  msgstr ""
326
 
327
- #: admin/class-admin.php:738
328
  msgctxt "admin"
329
  msgid ""
330
  "<b>Business Directory Plugin</b> requires a page with the "
331
  "<tt>[businessdirectory]</tt> shortcode to function properly."
332
  msgstr ""
333
 
334
- #: admin/class-admin.php:740
335
  msgctxt "admin"
336
  msgid ""
337
  "You can create this page by yourself or let Business Directory do this for "
338
  "you automatically."
339
  msgstr ""
340
 
341
- #: admin/class-admin.php:744
342
  msgctxt "admin"
343
  msgid "Create required pages for me"
344
  msgstr ""
345
 
346
- #: admin/class-admin.php:784
347
  msgctxt "admin compat"
348
  msgid "Installed: %s"
349
  msgstr ""
350
 
351
- #: admin/class-admin.php:784
352
  msgctxt "admin compat"
353
  msgid "N/A"
354
  msgstr ""
355
 
356
- #: admin/class-admin.php:787
357
  msgctxt "admin compat"
358
  msgid "Required: %s"
359
  msgstr ""
360
 
361
- #: admin/class-admin.php:800
362
  msgctxt "admin compat"
363
  msgid ""
364
  "Business Directory has detected some incompatible premium module versions "
365
  "installed."
366
  msgstr ""
367
 
368
- #: admin/class-admin.php:802
369
  msgctxt "admin compat"
370
  msgid ""
371
  "Please upgrade to the required versions indicated below to make sure "
372
  "everything functions properly."
373
  msgstr ""
374
 
375
- #: admin/class-admin.php:817
376
  msgctxt "admin"
377
  msgid ""
378
  "We noticed you want your Business Directory users to register before posting "
@@ -396,68 +396,95 @@ msgctxt "templates"
396
  msgid "There are no images currently attached to the listing."
397
  msgstr ""
398
 
399
- #: admin/class-themes-admin.php:27 admin/class-themes-admin.php:28
400
  msgctxt "themes"
401
  msgid "Directory Themes"
402
  msgstr ""
403
 
404
- #: admin/class-themes-admin.php:80
 
 
 
 
 
405
  msgctxt "themes"
406
  msgid "Could not change the active theme to \"%s\"."
407
  msgstr ""
408
 
409
- #: admin/class-themes-admin.php:124
410
  msgctxt "themes"
411
  msgid "Active theme changed to \"%s\"."
412
  msgstr ""
413
 
414
- #: admin/class-themes-admin.php:127
415
  msgctxt "themes"
416
  msgid ""
417
  "For better results, \"%s\" theme suggests the following form fields to be "
418
  "created."
419
  msgstr ""
420
 
421
- #: admin/class-themes-admin.php:134
422
  msgctxt "themes"
423
  msgid "Dismiss this warning"
424
  msgstr ""
425
 
426
- #: admin/class-themes-admin.php:137
427
  msgctxt "themes"
428
  msgid "Create suggested fields"
429
  msgstr ""
430
 
431
- #: admin/class-themes-admin.php:144
432
  msgctxt "themes"
433
  msgid "Suggested fields created successfully."
434
  msgstr ""
435
 
436
- #: admin/class-themes-admin.php:147
437
  msgctxt "themes"
438
  msgid "Theme installed successfully."
439
  msgstr ""
440
 
441
- #: admin/class-themes-admin.php:150
442
  msgctxt "themes"
443
  msgid "Theme was deleted sucessfully."
444
  msgstr ""
445
 
446
- #: admin/class-themes-admin.php:153
447
  msgctxt "themes"
448
  msgid "Could not delete theme directory. Check permissions."
449
  msgstr ""
450
 
451
- #: admin/class-themes-admin.php:179
452
  msgctxt "themes"
453
  msgid "Please upload a valid theme file."
454
  msgstr ""
455
 
456
- #: admin/class-themes-admin.php:186
457
  msgctxt "themes"
458
  msgid "Could not move \"%s\" to a temporary directory."
459
  msgstr ""
460
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
461
  #: admin/csv-export.php:136
462
  msgctxt "admin csv-export"
463
  msgid "Could not create a temporary directory for handling this CSV export."
@@ -1476,22 +1503,27 @@ msgctxt "fees admin"
1476
  msgid "Number of images allowed"
1477
  msgstr ""
1478
 
1479
- #: admin/templates/fees-addoredit.tpl.php:105
 
 
 
 
 
1480
  msgctxt "fees admin"
1481
  msgid "Apply to category"
1482
  msgstr ""
1483
 
1484
- #: admin/templates/fees-addoredit.tpl.php:109
1485
  msgctxt "fees admin"
1486
  msgid "* All Categories *"
1487
  msgstr ""
1488
 
1489
- #: admin/templates/fees-addoredit.tpl.php:129
1490
  msgctxt "fees admin"
1491
  msgid "Update Fee"
1492
  msgstr ""
1493
 
1494
- #: admin/templates/fees-addoredit.tpl.php:131
1495
  msgctxt "fees admin"
1496
  msgid "Add Fee"
1497
  msgstr ""
@@ -1635,67 +1667,67 @@ msgctxt "form-fields admin"
1635
  msgid "No validation"
1636
  msgstr ""
1637
 
1638
- #: admin/templates/form-fields-addoredit.tpl.php:112
1639
  msgctxt "form-fields admin"
1640
  msgid "Is field required?"
1641
  msgstr ""
1642
 
1643
- #: admin/templates/form-fields-addoredit.tpl.php:118
1644
  msgctxt "form-fields admin"
1645
  msgid "This field is required."
1646
  msgstr ""
1647
 
1648
- #: admin/templates/form-fields-addoredit.tpl.php:126
1649
  msgctxt "form-fields admin"
1650
  msgid "Field display options"
1651
  msgstr ""
1652
 
1653
- #: admin/templates/form-fields-addoredit.tpl.php:130
1654
  msgctxt "form-fields admin"
1655
  msgid "Show this value in excerpt view?"
1656
  msgstr ""
1657
 
1658
- #: admin/templates/form-fields-addoredit.tpl.php:136
1659
  msgctxt "form-fields admin"
1660
  msgid "Display this value in post excerpt view."
1661
  msgstr ""
1662
 
1663
- #: admin/templates/form-fields-addoredit.tpl.php:142
1664
  msgctxt "form-fields admin"
1665
  msgid "Show this value in listing view?"
1666
  msgstr ""
1667
 
1668
- #: admin/templates/form-fields-addoredit.tpl.php:148
1669
  msgctxt "form-fields admin"
1670
  msgid "Display this value in the listing view."
1671
  msgstr ""
1672
 
1673
- #: admin/templates/form-fields-addoredit.tpl.php:154
1674
  msgctxt "form-fields admin"
1675
  msgid "Include this field in the search form?"
1676
  msgstr ""
1677
 
1678
- #: admin/templates/form-fields-addoredit.tpl.php:160
1679
  msgctxt "form-fields admin"
1680
  msgid "Include this field in the search form."
1681
  msgstr ""
1682
 
1683
- #: admin/templates/form-fields-addoredit.tpl.php:166
1684
  msgctxt "form-fields admin"
1685
  msgid "Hide this field's label?"
1686
  msgstr ""
1687
 
1688
- #: admin/templates/form-fields-addoredit.tpl.php:172
1689
  msgctxt "form-fields admin"
1690
  msgid "Hide this field's label when displaying it."
1691
  msgstr ""
1692
 
1693
- #: admin/templates/form-fields-addoredit.tpl.php:179
1694
  msgctxt "form-fields admin"
1695
  msgid "Update Field"
1696
  msgstr ""
1697
 
1698
- #: admin/templates/form-fields-addoredit.tpl.php:181
1699
  msgctxt "form-fields admin"
1700
  msgid "Add Field"
1701
  msgstr ""
@@ -1763,7 +1795,7 @@ msgctxt "form-fields admin"
1763
  msgid "Please see the <a>Form Fields documentation</a> for more details."
1764
  msgstr ""
1765
 
1766
- #. #-#-#-#-# WPBDM.pot (Business Directory Plugin 3.6.9) #-#-#-#-#
1767
  #. Plugin Name of the plugin/theme
1768
  #: admin/templates/header.tpl.php:4
1769
  msgid "Business Directory Plugin"
@@ -2223,21 +2255,23 @@ msgid "Enhanced Categories Module"
2223
  msgstr ""
2224
 
2225
  #: admin/templates/themes-delete-confirm.tpl.php:1
 
2226
  msgctxt "themes admin"
2227
- msgid "Delete theme"
2228
  msgstr ""
2229
 
2230
  #: admin/templates/themes-delete-confirm.tpl.php:3
2231
  msgctxt "themes admin"
2232
- msgid "Are you sure you want to delete the theme \"%s\"?"
2233
  msgstr ""
2234
 
2235
  #: admin/templates/themes-delete-confirm.tpl.php:12
2236
  msgctxt "themes admin"
2237
- msgid "Delete Theme"
2238
  msgstr ""
2239
 
2240
- #: admin/templates/themes-install.tpl.php:2 admin/templates/themes.tpl.php:3
 
2241
  msgctxt "themes"
2242
  msgid "Upload Directory Theme"
2243
  msgstr ""
@@ -2257,22 +2291,22 @@ msgctxt "themes"
2257
  msgid "Begin Upload"
2258
  msgstr ""
2259
 
2260
- #: admin/templates/themes.tpl.php:13
2261
  msgctxt "themes"
2262
  msgid "Active:"
2263
  msgstr ""
2264
 
2265
- #: admin/templates/themes.tpl.php:22
2266
  msgctxt "themes"
2267
  msgid "Activate"
2268
  msgstr ""
2269
 
2270
- #: admin/templates/themes.tpl.php:32
2271
  msgctxt "themes"
2272
  msgid "Version:"
2273
  msgstr ""
2274
 
2275
- #: admin/templates/themes.tpl.php:35
2276
  msgctxt "themes"
2277
  msgid "Author:"
2278
  msgstr ""
@@ -2378,100 +2412,100 @@ msgctxt "tracking"
2378
  msgid "Allow Tracking"
2379
  msgstr ""
2380
 
2381
- #: business-directory-plugin.php:676
2382
  msgctxt "admin plugins"
2383
  msgid "Settings"
2384
  msgstr ""
2385
 
2386
- #: business-directory-plugin.php:686
2387
  msgctxt "post type general name"
2388
  msgid "Directory"
2389
  msgstr ""
2390
 
2391
- #: business-directory-plugin.php:687
2392
  msgctxt "post type singular name"
2393
  msgid "Directory"
2394
  msgstr ""
2395
 
2396
- #: business-directory-plugin.php:688
2397
  msgctxt "listing"
2398
  msgid "Add New Listing"
2399
  msgstr ""
2400
 
2401
- #: business-directory-plugin.php:689
2402
  msgctxt "post type"
2403
  msgid "Add New Listing"
2404
  msgstr ""
2405
 
2406
- #: business-directory-plugin.php:690 core/compatibility/deprecated.php:255
2407
  msgid "Edit Listing"
2408
  msgstr ""
2409
 
2410
- #: business-directory-plugin.php:691
2411
  msgid "New Listing"
2412
  msgstr ""
2413
 
2414
- #: business-directory-plugin.php:692
2415
  msgid "View Listing"
2416
  msgstr ""
2417
 
2418
- #: business-directory-plugin.php:693
2419
  msgid "Search Listings"
2420
  msgstr ""
2421
 
2422
- #: business-directory-plugin.php:694
2423
  msgid "No listings found"
2424
  msgstr ""
2425
 
2426
- #: business-directory-plugin.php:695
2427
  msgid "No listings found in trash"
2428
  msgstr ""
2429
 
2430
- #: business-directory-plugin.php:717
2431
  msgid "Directory Categories"
2432
  msgstr ""
2433
 
2434
- #: business-directory-plugin.php:830 business-directory-plugin.php:837
2435
  msgctxt "rss feed"
2436
  msgid "%s Feed"
2437
  msgstr ""
2438
 
2439
- #: business-directory-plugin.php:1218
2440
  msgctxt "title"
2441
  msgid "Submit A Listing"
2442
  msgstr ""
2443
 
2444
- #: business-directory-plugin.php:1228
2445
  msgctxt "title"
2446
  msgid "Find a Listing"
2447
  msgstr ""
2448
 
2449
- #: business-directory-plugin.php:1238
2450
  msgctxt "title"
2451
  msgid "View All Listings"
2452
  msgstr ""
2453
 
2454
- #: business-directory-plugin.php:1258
2455
  msgctxt "title"
2456
  msgid "Listings tagged: %s"
2457
  msgstr ""
2458
 
2459
- #: core/class-csv-import.php:369
2460
  msgctxt "admin csv-import"
2461
  msgid "Could not create listing category \"%s\""
2462
  msgstr ""
2463
 
2464
- #: core/class-csv-import.php:513
2465
  msgctxt "admin csv-import"
2466
  msgid "Username \"%s\" does not exist"
2467
  msgstr ""
2468
 
2469
- #: core/class-csv-import.php:545
2470
  msgctxt "admin csv-import"
2471
  msgid "Missing required field: %s"
2472
  msgstr ""
2473
 
2474
- #: core/class-csv-import.php:565
2475
  msgctxt "admin csv-import"
2476
  msgid "Listing category \"%s\" does not exist"
2477
  msgstr ""
@@ -2565,7 +2599,7 @@ msgctxt "listings-api"
2565
  msgid "Featured Listing"
2566
  msgstr ""
2567
 
2568
- #: core/class-listing.php:287 core/class-listing.php:313
2569
  msgctxt "listing"
2570
  msgid "(Fee Unavailable)"
2571
  msgstr ""
@@ -2778,12 +2812,27 @@ msgctxt "admin settings"
2778
  msgid "Directory Search"
2779
  msgstr ""
2780
 
2781
- #: core/class-settings.php:95
 
 
 
 
 
 
 
 
 
 
2782
  msgctxt "admin settings"
2783
- msgid "Display search form when displaying search results?"
2784
  msgstr ""
2785
 
2786
- #: core/class-settings.php:102
 
 
 
 
 
2787
  msgctxt "admin settings"
2788
  msgid ""
2789
  "You have selected a textarea field to be included in quick searches. "
@@ -2791,7 +2840,7 @@ msgid ""
2791
  "timeouts and/or general slowness."
2792
  msgstr ""
2793
 
2794
- #: core/class-settings.php:104
2795
  msgctxt "admin settings"
2796
  msgid ""
2797
  "Use Ctrl-Click to include multiple fields in the search. Choosing too many "
@@ -2799,17 +2848,17 @@ msgid ""
2799
  "performance."
2800
  msgstr ""
2801
 
2802
- #: core/class-settings.php:107
2803
  msgctxt "admin settings"
2804
  msgid "Quick search fields"
2805
  msgstr ""
2806
 
2807
- #: core/class-settings.php:115
2808
  msgctxt "admin settings"
2809
  msgid "Enable high performance searches?"
2810
  msgstr ""
2811
 
2812
- #: core/class-settings.php:118
2813
  msgctxt "admin settings"
2814
  msgid ""
2815
  "Enabling this makes BD sacrifice result quality to improve speed. This is "
@@ -2817,19 +2866,19 @@ msgid ""
2817
  "issue."
2818
  msgstr ""
2819
 
2820
- #: core/class-settings.php:123
2821
  msgctxt "admin settings"
2822
  msgid "Miscellaneous Settings"
2823
  msgstr ""
2824
 
2825
- #: core/class-settings.php:127
2826
  msgctxt "admin settings"
2827
  msgid ""
2828
  "Check this if you are having trouble with BD, particularly when importing or "
2829
  "exporting CSV files."
2830
  msgstr ""
2831
 
2832
- #: core/class-settings.php:130
2833
  msgctxt "admin settings"
2834
  msgid ""
2835
  "If this compatibility mode doesn't solve your issue, you may be experiencing "
@@ -2837,342 +2886,343 @@ msgid ""
2837
  "theme and plugin conflicts with Business Directory."
2838
  msgstr ""
2839
 
2840
- #: core/class-settings.php:133
2841
  msgctxt "admin settings"
2842
  msgid "Enable AJAX compatibility mode?"
2843
  msgstr ""
2844
 
2845
- #: core/class-settings.php:141 core/class-settings.php:615
2846
  msgctxt "admin settings"
2847
  msgid "Listings"
2848
  msgstr ""
2849
 
2850
- #: core/class-settings.php:142 core/class-settings.php:289
 
2851
  msgctxt "admin settings"
2852
  msgid "General Settings"
2853
  msgstr ""
2854
 
2855
- #: core/class-settings.php:144
2856
  msgctxt "admin settings"
2857
  msgid "Listings per page"
2858
  msgstr ""
2859
 
2860
- #: core/class-settings.php:145
2861
  msgctxt "admin settings"
2862
  msgid ""
2863
  "Number of listings to show per page. Use a value of \"0\" to show all "
2864
  "listings."
2865
  msgstr ""
2866
 
2867
- #: core/class-settings.php:147
2868
  msgctxt "admin settings"
2869
  msgid "Listing duration for no-fee sites (in days)"
2870
  msgstr ""
2871
 
2872
- #: core/class-settings.php:148
2873
  msgctxt "admin settings"
2874
  msgid ""
2875
  "Use a value of \"0\" to keep a listing alive indefinitely or enter a number "
2876
  "less than 10 years (3650 days)."
2877
  msgstr ""
2878
 
2879
- #: core/class-settings.php:154
2880
  msgctxt "admin settings"
2881
  msgid "Include listing contact form on listing pages?"
2882
  msgstr ""
2883
 
2884
- #: core/class-settings.php:157
2885
  msgctxt "admin settings"
2886
  msgid ""
2887
  "Allows visitors to contact listing authors privately. Authors will receive "
2888
  "the messages via email."
2889
  msgstr ""
2890
 
2891
- #: core/class-settings.php:160
2892
  msgctxt "admin settings"
2893
  msgid "Require login for using the contact form?"
2894
  msgstr ""
2895
 
2896
- #: core/class-settings.php:166
2897
  msgctxt "admin settings"
2898
  msgid "Maximum number of contact form submits per day"
2899
  msgstr ""
2900
 
2901
- #: core/class-settings.php:169
2902
  msgctxt "admin settings"
2903
  msgid ""
2904
  "Use this to prevent spamming of listing owners. 0 means unlimited submits "
2905
  "per day."
2906
  msgstr ""
2907
 
2908
- #: core/class-settings.php:175
2909
  msgctxt "admin settings"
2910
  msgid "Include comment form on listing pages?"
2911
  msgstr ""
2912
 
2913
- #: core/class-settings.php:178
2914
  msgctxt "admin settings"
2915
  msgid ""
2916
  "Allow visitors to discuss listings using the standard WordPress comment "
2917
  "form. Comments are public."
2918
  msgstr ""
2919
 
2920
- #: core/class-settings.php:179
2921
  msgctxt "admin settings"
2922
  msgid "Show listings under categories on main page?"
2923
  msgstr ""
2924
 
2925
- #: core/class-settings.php:180
2926
  msgctxt "admin settings"
2927
  msgid "Status of listings upon uninstalling plugin"
2928
  msgstr ""
2929
 
2930
- #: core/class-settings.php:182
2931
  msgctxt "admin settings"
2932
  msgid "Status of deleted listings"
2933
  msgstr ""
2934
 
2935
- #: core/class-settings.php:185
2936
  msgctxt "admin settings"
2937
  msgid "Listing Renewal"
2938
  msgstr ""
2939
 
2940
- #: core/class-settings.php:186
2941
  msgctxt "admin settings"
2942
  msgid "Turn on listing renewal option?"
2943
  msgstr ""
2944
 
2945
- #: core/class-settings.php:189
2946
  msgctxt "admin settings"
2947
  msgid "Allow recurring renewal payments?"
2948
  msgstr ""
2949
 
2950
- #: core/class-settings.php:192
2951
  msgctxt "admin settings"
2952
  msgid ""
2953
  "Allow users to opt in for automatic renewal of their listings. The fee is "
2954
  "charged at the time the listing expires without user intervention."
2955
  msgstr ""
2956
 
2957
- #: core/class-settings.php:196
2958
  msgctxt "admin settings"
2959
  msgid "Use recurring payments as the default payment method?"
2960
  msgstr ""
2961
 
2962
- #: core/class-settings.php:199
2963
  msgctxt "admin settings"
2964
  msgid ""
2965
  "Enable automatic renewal without having users opt in during the submit "
2966
  "process."
2967
  msgstr ""
2968
 
2969
- #: core/class-settings.php:204
2970
  msgctxt "admin settings"
2971
  msgid "Listing renewal e-mail threshold (in days)"
2972
  msgstr ""
2973
 
2974
- #: core/class-settings.php:207
2975
  msgctxt "admin settings"
2976
  msgid ""
2977
  "Configure how many days before listing expiration is the renewal e-mail sent."
2978
  msgstr ""
2979
 
2980
- #: core/class-settings.php:211
2981
  msgctxt "admin settings"
2982
  msgid ""
2983
  "Send expiration notices including a cancel links to auto-renewed listings?"
2984
  msgstr ""
2985
 
2986
- #: core/class-settings.php:218
2987
  msgctxt "admin settings"
2988
  msgid "Remind listing owners of expired listings (past due)?"
2989
  msgstr ""
2990
 
2991
- #: core/class-settings.php:223
2992
  msgctxt "admin settings"
2993
  msgid "Listing renewal reminder e-mail threshold (in days)"
2994
  msgstr ""
2995
 
2996
- #: core/class-settings.php:226
2997
  msgctxt "admin settings"
2998
  msgid ""
2999
  "Configure how many days after the expiration of a listing an e-mail reminder "
3000
  "should be sent to the owner."
3001
  msgstr ""
3002
 
3003
- #: core/class-settings.php:229
3004
  msgctxt "admin settings"
3005
  msgid "Post/Category Settings"
3006
  msgstr ""
3007
 
3008
- #: core/class-settings.php:230
3009
  msgctxt "admin settings"
3010
  msgid "Default new post status"
3011
  msgstr ""
3012
 
3013
- #: core/class-settings.php:233
3014
  msgctxt "admin settings"
3015
  msgid "Edit post status"
3016
  msgstr ""
3017
 
3018
- #: core/class-settings.php:235
3019
  msgctxt "admin settings"
3020
  msgid "Order categories list by"
3021
  msgstr ""
3022
 
3023
- #: core/class-settings.php:237
3024
  msgctxt "admin settings"
3025
  msgid "Name"
3026
  msgstr ""
3027
 
3028
- #: core/class-settings.php:238
3029
  msgctxt "admin settings"
3030
  msgid "Slug"
3031
  msgstr ""
3032
 
3033
- #: core/class-settings.php:239
3034
  msgctxt "admin settings"
3035
  msgid "Listing Count"
3036
  msgstr ""
3037
 
3038
- #: core/class-settings.php:241
3039
  msgctxt "admin settings"
3040
  msgid "Sort order for categories"
3041
  msgstr ""
3042
 
3043
- #: core/class-settings.php:242 core/class-settings.php:260
3044
  msgctxt "admin settings"
3045
  msgid "Ascending"
3046
  msgstr ""
3047
 
3048
- #: core/class-settings.php:242 core/class-settings.php:260
3049
  msgctxt "admin settings"
3050
  msgid "Descending"
3051
  msgstr ""
3052
 
3053
- #: core/class-settings.php:243
3054
  msgctxt "admin settings"
3055
  msgid "Show category post count?"
3056
  msgstr ""
3057
 
3058
- #: core/class-settings.php:244
3059
  msgctxt "admin settings"
3060
  msgid "Hide empty categories?"
3061
  msgstr ""
3062
 
3063
- #: core/class-settings.php:245
3064
  msgctxt "admin settings"
3065
  msgid "Show only parent categories in category list?"
3066
  msgstr ""
3067
 
3068
- #: core/class-settings.php:247
3069
  msgctxt "admin settings"
3070
  msgid "Listings Sorting"
3071
  msgstr ""
3072
 
3073
- #: core/class-settings.php:248
3074
  msgctxt "admin settings"
3075
  msgid "Order directory listings by"
3076
  msgstr ""
3077
 
3078
- #: core/class-settings.php:250
3079
  msgctxt "admin settings"
3080
  msgid "Title"
3081
  msgstr ""
3082
 
3083
- #: core/class-settings.php:251
3084
  msgctxt "admin settings"
3085
  msgid "Author"
3086
  msgstr ""
3087
 
3088
- #: core/class-settings.php:252
3089
  msgctxt "admin settings"
3090
  msgid "Date posted"
3091
  msgstr ""
3092
 
3093
- #: core/class-settings.php:253
3094
  msgctxt "admin settings"
3095
  msgid "Date last modified"
3096
  msgstr ""
3097
 
3098
- #: core/class-settings.php:254
3099
  msgctxt "admin settings"
3100
  msgid "Random"
3101
  msgstr ""
3102
 
3103
- #: core/class-settings.php:255
3104
  msgctxt "admin settings"
3105
  msgid "Paid first then free. Inside each group by date."
3106
  msgstr ""
3107
 
3108
- #: core/class-settings.php:256
3109
  msgctxt "admin settings"
3110
  msgid "Paid first then free. Inside each group by title."
3111
  msgstr ""
3112
 
3113
- #: core/class-settings.php:258
3114
  msgctxt "admin settings"
3115
  msgid "Sort directory listings by"
3116
  msgstr ""
3117
 
3118
- #: core/class-settings.php:259
3119
  msgctxt "admin settings"
3120
  msgid "Ascending for ascending order A-Z, Descending for descending order Z-A"
3121
  msgstr ""
3122
 
3123
- #: core/class-settings.php:264
3124
  msgctxt "admin settings"
3125
  msgid "Enable sort bar?"
3126
  msgstr ""
3127
 
3128
- #: core/class-settings.php:269
3129
  msgctxt "admin settings"
3130
  msgid "Sortbar Fields"
3131
  msgstr ""
3132
 
3133
- #: core/class-settings.php:278
3134
  msgctxt "admin settings"
3135
  msgid "Featured (Sticky) listing settings"
3136
  msgstr ""
3137
 
3138
- #: core/class-settings.php:279
3139
  msgctxt "admin settings"
3140
  msgid "Offer sticky listings?"
3141
  msgstr ""
3142
 
3143
- #: core/class-settings.php:280
3144
  msgctxt "admin settings"
3145
  msgid "Offer upgrades during submit process?"
3146
  msgstr ""
3147
 
3148
- #: core/class-settings.php:281
3149
  msgctxt "admin settings"
3150
  msgid "Sticky listing price"
3151
  msgstr ""
3152
 
3153
- #: core/class-settings.php:282
3154
  msgctxt "admin settings"
3155
  msgid "Sticky listing page description text"
3156
  msgstr ""
3157
 
3158
- #: core/class-settings.php:283
3159
  msgctxt "admin settings"
3160
  msgid ""
3161
  "You can upgrade your listing to featured status. Featured listings will "
3162
  "always appear on top of regular listings."
3163
  msgstr ""
3164
 
3165
- #: core/class-settings.php:288
3166
  msgctxt "admin settings"
3167
  msgid "E-Mail"
3168
  msgstr ""
3169
 
3170
- #: core/class-settings.php:292
3171
  msgctxt "admin settings"
3172
  msgid "Display email address fields publicly?"
3173
  msgstr ""
3174
 
3175
- #: core/class-settings.php:295
3176
  msgctxt "admin settings"
3177
  msgid ""
3178
  "Shows the email address of the listing owner to all web users. NOT "
@@ -3180,507 +3230,507 @@ msgid ""
3180
  "harvest it for future use."
3181
  msgstr ""
3182
 
3183
- #: core/class-settings.php:298
3184
  msgctxt "admin settings"
3185
  msgid "How to determine the listing's email address?"
3186
  msgstr ""
3187
 
3188
- #: core/class-settings.php:301
3189
  msgctxt "admin settings"
3190
  msgid ""
3191
  "This affects emails sent to listing owners via contact forms or when their "
3192
  "listings expire."
3193
  msgstr ""
3194
 
3195
- #: core/class-settings.php:308
3196
  msgctxt "admin settings"
3197
  msgid "E-Mail Notifications"
3198
  msgstr ""
3199
 
3200
- #: core/class-settings.php:311
3201
  msgctxt "admin settings"
3202
  msgid "Notify admin via e-mail when..."
3203
  msgstr ""
3204
 
3205
- #: core/class-settings.php:315
3206
  msgctxt "admin settings"
3207
  msgid "A new listing is submitted."
3208
  msgstr ""
3209
 
3210
- #: core/class-settings.php:316
3211
  msgctxt "admin settings"
3212
  msgid "A listing is edited."
3213
  msgstr ""
3214
 
3215
- #: core/class-settings.php:317
3216
  msgctxt "admin settings"
3217
  msgid "A listing expires."
3218
  msgstr ""
3219
 
3220
- #: core/class-settings.php:318
3221
  msgctxt "admin settings"
3222
  msgid "A contact message is sent to a listing's owner."
3223
  msgstr ""
3224
 
3225
- #: core/class-settings.php:324
3226
  msgctxt "admin settings"
3227
  msgid "CC this e-mail address too"
3228
  msgstr ""
3229
 
3230
- #: core/class-settings.php:330
3231
  msgctxt "admin settings"
3232
  msgid "Notify users via e-mail when..."
3233
  msgstr ""
3234
 
3235
- #: core/class-settings.php:333
3236
  msgctxt "admin settings"
3237
  msgid "You can modify the text template used for most of these e-mails below."
3238
  msgstr ""
3239
 
3240
- #: core/class-settings.php:334
3241
  msgctxt "admin settings"
3242
  msgid "Their listing is submitted."
3243
  msgstr ""
3244
 
3245
- #: core/class-settings.php:335
3246
  msgctxt "admin settings"
3247
  msgid "Their listing is approved/published."
3248
  msgstr ""
3249
 
3250
- #: core/class-settings.php:344
3251
  msgctxt "contact email"
3252
  msgid "You have received a reply from your listing at %s."
3253
  msgstr ""
3254
 
3255
- #: core/class-settings.php:345
3256
  msgctxt "contact email"
3257
  msgid "Name: %s"
3258
  msgstr ""
3259
 
3260
- #: core/class-settings.php:346
3261
  msgctxt "contact email"
3262
  msgid "E-Mail: %s"
3263
  msgstr ""
3264
 
3265
- #: core/class-settings.php:347
3266
  msgctxt "contact email"
3267
  msgid "Message:"
3268
  msgstr ""
3269
 
3270
- #: core/class-settings.php:349
3271
  msgctxt "contact email"
3272
  msgid "Time: %s"
3273
  msgstr ""
3274
 
3275
- #: core/class-settings.php:351
3276
  msgctxt "admin settings"
3277
  msgid "E-Mail Templates"
3278
  msgstr ""
3279
 
3280
- #: core/class-settings.php:354
3281
  msgctxt "admin settings"
3282
  msgid "Email confirmation message"
3283
  msgstr ""
3284
 
3285
- #: core/class-settings.php:358
3286
  msgctxt "admin settings"
3287
  msgid "Sent after a listing has been submitted."
3288
  msgstr ""
3289
 
3290
- #: core/class-settings.php:359 core/class-settings.php:367
3291
- #: core/class-settings.php:408
3292
  msgctxt "admin settings"
3293
  msgid "Listing's title"
3294
  msgstr ""
3295
 
3296
- #: core/class-settings.php:362
3297
  msgctxt "admin settings"
3298
  msgid "Listing published message"
3299
  msgstr ""
3300
 
3301
- #: core/class-settings.php:365
3302
  msgctxt "admin settings"
3303
  msgid ""
3304
  "Your listing \"[listing]\" is now available at [listing-url] and can be "
3305
  "viewed by the public."
3306
  msgstr ""
3307
 
3308
- #: core/class-settings.php:366
3309
  msgctxt "admin settings"
3310
  msgid "Sent when the listing has been published or approved by an admin."
3311
  msgstr ""
3312
 
3313
- #: core/class-settings.php:368
3314
  msgctxt "admin settings"
3315
  msgid "Listing's URL"
3316
  msgstr ""
3317
 
3318
- #: core/class-settings.php:372
3319
  msgctxt "admin settings"
3320
  msgid "Listing Contact Message"
3321
  msgstr ""
3322
 
3323
- #: core/class-settings.php:376
3324
  msgctxt "admin settings"
3325
  msgid ""
3326
  "Sent to listing owners when someone uses the contact form on their listing "
3327
  "pages."
3328
  msgstr ""
3329
 
3330
- #: core/class-settings.php:386
3331
  msgctxt "admin settings"
3332
  msgid "Payment related"
3333
  msgstr ""
3334
 
3335
- #: core/class-settings.php:403
3336
  msgctxt "admin settings"
3337
  msgid "Payment abandoned reminder message"
3338
  msgstr ""
3339
 
3340
- #: core/class-settings.php:407
3341
  msgctxt "admin settings"
3342
  msgid "Sent some time after a pending payment is abandoned by users."
3343
  msgstr ""
3344
 
3345
- #: core/class-settings.php:409
3346
  msgctxt "admin settings"
3347
  msgid "Checkout URL link"
3348
  msgstr ""
3349
 
3350
- #: core/class-settings.php:415
3351
  msgctxt "admin settings"
3352
  msgid "Renewal Reminders"
3353
  msgstr ""
3354
 
3355
- #: core/class-settings.php:418
3356
  msgctxt "admin settings"
3357
  msgid ""
3358
  "This section refers only to the text of the renewal/expiration notices. You "
3359
  "can also <a>configure when the e-mails are sent</a>."
3360
  msgstr ""
3361
 
3362
- #: core/class-settings.php:422
3363
  msgctxt "admin settings"
3364
  msgid "Pending expiration e-mail message"
3365
  msgstr ""
3366
 
3367
- #: core/class-settings.php:426
3368
  msgctxt "settings"
3369
  msgid ""
3370
  "Sent some time before the listing expires. Applies to non-recurring renewals "
3371
  "only."
3372
  msgstr ""
3373
 
3374
- #: core/class-settings.php:427 core/class-settings.php:440
3375
- #: core/class-settings.php:453 core/class-settings.php:466
3376
- #: core/class-settings.php:479
3377
  msgctxt "settings"
3378
  msgid "Listing's name (with link)"
3379
  msgstr ""
3380
 
3381
- #: core/class-settings.php:428 core/class-settings.php:441
3382
- #: core/class-settings.php:454 core/class-settings.php:467
3383
- #: core/class-settings.php:480
3384
  msgctxt "settings"
3385
  msgid "Author's name"
3386
  msgstr ""
3387
 
3388
- #: core/class-settings.php:429 core/class-settings.php:442
3389
- #: core/class-settings.php:481
3390
  msgctxt "settings"
3391
  msgid "Expiration date"
3392
  msgstr ""
3393
 
3394
- #: core/class-settings.php:430
3395
  msgctxt "settings"
3396
  msgid "Category that is going to expire"
3397
  msgstr ""
3398
 
3399
- #: core/class-settings.php:431 core/class-settings.php:444
3400
- #: core/class-settings.php:483
3401
  msgctxt "settings"
3402
  msgid "Link to renewal page"
3403
  msgstr ""
3404
 
3405
- #: core/class-settings.php:432 core/class-settings.php:445
3406
- #: core/class-settings.php:457 core/class-settings.php:470
3407
- #: core/class-settings.php:484
3408
  msgctxt "settings"
3409
  msgid "Link to your site"
3410
  msgstr ""
3411
 
3412
- #: core/class-settings.php:435
3413
  msgctxt "admin settings"
3414
  msgid "Listing Renewal e-mail message"
3415
  msgstr ""
3416
 
3417
- #: core/class-settings.php:439
3418
  msgctxt "settings"
3419
  msgid ""
3420
  "Sent at the time of listing expiration. Applies to non-recurring renewals "
3421
  "only."
3422
  msgstr ""
3423
 
3424
- #: core/class-settings.php:443 core/class-settings.php:482
3425
  msgctxt "settings"
3426
  msgid "Category that expired"
3427
  msgstr ""
3428
 
3429
- #: core/class-settings.php:448
3430
  msgctxt "admin settings"
3431
  msgid "Listing auto-renewal reminder (recurring payments)"
3432
  msgstr ""
3433
 
3434
- #: core/class-settings.php:452
3435
  msgctxt "settings"
3436
  msgid ""
3437
  "Sent some time before the listing is auto-renewed. Applies to recurring "
3438
  "renewals only."
3439
  msgstr ""
3440
 
3441
- #: core/class-settings.php:455 core/class-settings.php:469
3442
  msgctxt "settings"
3443
  msgid "Renewal date"
3444
  msgstr ""
3445
 
3446
- #: core/class-settings.php:456
3447
  msgctxt "settings"
3448
  msgid "Category that is going to be renewed"
3449
  msgstr ""
3450
 
3451
- #: core/class-settings.php:458
3452
  msgctxt "settings"
3453
  msgid "Link to manage subscriptions"
3454
  msgstr ""
3455
 
3456
- #: core/class-settings.php:461
3457
  msgctxt "admin settings"
3458
  msgid "Listing Renewal e-mail message (recurring payments)"
3459
  msgstr ""
3460
 
3461
- #: core/class-settings.php:465
3462
  msgctxt "settings"
3463
  msgid ""
3464
  "Sent after the listing is auto-renewed. Applies to recurring renewals only."
3465
  msgstr ""
3466
 
3467
- #: core/class-settings.php:468
3468
  msgctxt "settings"
3469
  msgid "Renewed category"
3470
  msgstr ""
3471
 
3472
- #: core/class-settings.php:474
3473
  msgctxt "admin settings"
3474
  msgid "Renewal reminder e-mail message"
3475
  msgstr ""
3476
 
3477
- #: core/class-settings.php:478
3478
  msgctxt "settings"
3479
  msgid ""
3480
  "Sent some time after listing expiration and when no renewal has occurred. "
3481
  "Applies to both recurring and non-recurring renewals."
3482
  msgstr ""
3483
 
3484
- #: core/class-settings.php:488
3485
  msgctxt "admin settings"
3486
  msgid "Payment"
3487
  msgstr ""
3488
 
3489
- #: core/class-settings.php:489
3490
  msgctxt "admin settings"
3491
  msgid "Payment Settings"
3492
  msgstr ""
3493
 
3494
- #: core/class-settings.php:492
3495
  msgctxt "admin settings"
3496
  msgid "Turn On payments?"
3497
  msgstr ""
3498
 
3499
- #: core/class-settings.php:494
3500
  msgctxt "admin settings"
3501
  msgid "Put payment gateways in test mode?"
3502
  msgstr ""
3503
 
3504
- #: core/class-settings.php:499
3505
  msgctxt "admin settings"
3506
  msgid "Perform checkouts on the secure (HTTPS) version of your site?"
3507
  msgstr ""
3508
 
3509
- #: core/class-settings.php:502
3510
  msgctxt "admin settings"
3511
  msgid ""
3512
  "Recommended for added security. For this to work you need to enable HTTPS on "
3513
  "your server and <a>obtain an SSL certificate</a>."
3514
  msgstr ""
3515
 
3516
- #: core/class-settings.php:506
3517
  msgctxt "admin settings"
3518
  msgid "Currency Code"
3519
  msgstr ""
3520
 
3521
- #: core/class-settings.php:508
3522
  msgctxt "admin settings"
3523
  msgid "Australian Dollar (AUD)"
3524
  msgstr ""
3525
 
3526
- #: core/class-settings.php:509
3527
  msgctxt "admin settings"
3528
  msgid "Brazilian Real (BRL)"
3529
  msgstr ""
3530
 
3531
- #: core/class-settings.php:510
3532
  msgctxt "admin settings"
3533
  msgid "Canadian Dollar (CAD)"
3534
  msgstr ""
3535
 
3536
- #: core/class-settings.php:511
3537
  msgctxt "admin settings"
3538
  msgid "Czech Koruna (CZK)"
3539
  msgstr ""
3540
 
3541
- #: core/class-settings.php:512
3542
  msgctxt "admin settings"
3543
  msgid "Danish Krone (DKK)"
3544
  msgstr ""
3545
 
3546
- #: core/class-settings.php:513
3547
  msgctxt "admin settings"
3548
  msgid "Euro (EUR)"
3549
  msgstr ""
3550
 
3551
- #: core/class-settings.php:514
3552
  msgctxt "admin settings"
3553
  msgid "Hong Kong Dollar (HKD)"
3554
  msgstr ""
3555
 
3556
- #: core/class-settings.php:515
3557
  msgctxt "admin settings"
3558
  msgid "Hungarian Forint (HUF)"
3559
  msgstr ""
3560
 
3561
- #: core/class-settings.php:516
3562
  msgctxt "admin settings"
3563
  msgid "Israeli New Shequel (ILS)"
3564
  msgstr ""
3565
 
3566
- #: core/class-settings.php:517
3567
  msgctxt "admin settings"
3568
  msgid "Japanese Yen (JPY)"
3569
  msgstr ""
3570
 
3571
- #: core/class-settings.php:518
3572
  msgctxt "admin settings"
3573
  msgid "Malasian Ringgit (MYR)"
3574
  msgstr ""
3575
 
3576
- #: core/class-settings.php:519
3577
  msgctxt "admin settings"
3578
  msgid "Mexican Peso (MXN)"
3579
  msgstr ""
3580
 
3581
- #: core/class-settings.php:520
3582
  msgctxt "admin settings"
3583
  msgid "Norwegian Krone (NOK)"
3584
  msgstr ""
3585
 
3586
- #: core/class-settings.php:521
3587
  msgctxt "admin settings"
3588
  msgid "New Zealand Dollar (NZD)"
3589
  msgstr ""
3590
 
3591
- #: core/class-settings.php:522
3592
  msgctxt "admin settings"
3593
  msgid "Philippine Peso (PHP)"
3594
  msgstr ""
3595
 
3596
- #: core/class-settings.php:523
3597
  msgctxt "admin settings"
3598
  msgid "Polish Zloty (PLN)"
3599
  msgstr ""
3600
 
3601
- #: core/class-settings.php:524
3602
  msgctxt "admin settings"
3603
  msgid "Pound Sterling (GBP)"
3604
  msgstr ""
3605
 
3606
- #: core/class-settings.php:525
3607
  msgctxt "admin settings"
3608
  msgid "Singapore Dollar (SGD)"
3609
  msgstr ""
3610
 
3611
- #: core/class-settings.php:526
3612
  msgctxt "admin settings"
3613
  msgid "Swedish Krona (SEK)"
3614
  msgstr ""
3615
 
3616
- #: core/class-settings.php:527
3617
  msgctxt "admin settings"
3618
  msgid "Swiss Franc (CHF)"
3619
  msgstr ""
3620
 
3621
- #: core/class-settings.php:528
3622
  msgctxt "admin settings"
3623
  msgid "Taiwan Dollar (TWD)"
3624
  msgstr ""
3625
 
3626
- #: core/class-settings.php:529
3627
  msgctxt "admin settings"
3628
  msgid "Thai Baht (THB)"
3629
  msgstr ""
3630
 
3631
- #: core/class-settings.php:530
3632
  msgctxt "admin settings"
3633
  msgid "Turkish Lira (TRY)"
3634
  msgstr ""
3635
 
3636
- #: core/class-settings.php:531
3637
  msgctxt "admin settings"
3638
  msgid "U.S. Dollar (USD)"
3639
  msgstr ""
3640
 
3641
- #: core/class-settings.php:535
3642
  msgctxt "admin settings"
3643
  msgid "Currency Symbol"
3644
  msgstr ""
3645
 
3646
- #: core/class-settings.php:540
3647
  msgctxt "admin settings"
3648
  msgid "Currency symbol display"
3649
  msgstr ""
3650
 
3651
- #: core/class-settings.php:544
3652
  msgctxt "admin settings"
3653
  msgid "Show currency symbol on the left"
3654
  msgstr ""
3655
 
3656
- #: core/class-settings.php:545
3657
  msgctxt "admin settings"
3658
  msgid "Show currency symbol on the right"
3659
  msgstr ""
3660
 
3661
- #: core/class-settings.php:546
3662
  msgctxt "admin settings"
3663
  msgid "Do not show currency symbol"
3664
  msgstr ""
3665
 
3666
- #: core/class-settings.php:548
3667
  msgctxt "admin settings"
3668
  msgid "Thank you for payment message"
3669
  msgstr ""
3670
 
3671
- #: core/class-settings.php:549
3672
  msgctxt "admin settings"
3673
  msgid ""
3674
  "Thank you for your payment. Your payment is being verified and your listing "
3675
  "reviewed. The verification and review process could take up to 48 hours."
3676
  msgstr ""
3677
 
3678
- #: core/class-settings.php:554
3679
  msgctxt "admin settings"
3680
  msgid "Ask users to come back for abandoned payments?"
3681
  msgstr ""
3682
 
3683
- #: core/class-settings.php:557
3684
  msgctxt "admin settings"
3685
  msgid ""
3686
  "An abandoned payment is when a user attempts to place a listing and gets to "
@@ -3689,51 +3739,91 @@ msgid ""
3689
  "the transaction. BD can remind them to come back and continue."
3690
  msgstr ""
3691
 
3692
- #: core/class-settings.php:563
3693
  msgctxt "admin settings"
3694
  msgid "Listing abandonment threshold (hours)"
3695
  msgstr ""
3696
 
3697
- #: core/class-settings.php:568
3698
  msgctxt "admin settings"
3699
  msgid ""
3700
  "Listings with pending payments are marked as abandoned after this time. You "
3701
  "can also <a>customize the e-mail</a> users receive."
3702
  msgstr ""
3703
 
3704
- #: core/class-settings.php:574
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
3705
  msgctxt "admin settings"
3706
  msgid "Registration"
3707
  msgstr ""
3708
 
3709
- #: core/class-settings.php:575
 
 
 
 
 
 
 
 
3710
  msgctxt "admin settings"
3711
  msgid "Registration Settings"
3712
  msgstr ""
3713
 
3714
- #: core/class-settings.php:576
3715
  msgctxt "admin settings"
3716
  msgid "Require login to post listings?"
3717
  msgstr ""
3718
 
3719
- #: core/class-settings.php:581
 
 
 
 
 
 
 
 
 
 
 
 
3720
  msgctxt "admin settings"
3721
  msgid "Registration URL"
3722
  msgstr ""
3723
 
3724
- #: core/class-settings.php:584
3725
  msgctxt "admin settings"
3726
  msgid ""
3727
  "URL of your membership plugin's registration page. Only enter this if using "
3728
  "a membership plugin or custom registration page."
3729
  msgstr ""
3730
 
3731
- #: core/class-settings.php:588
3732
  msgctxt "admin settings"
3733
  msgid "Image"
3734
  msgstr ""
3735
 
3736
- #: core/class-settings.php:589
3737
  msgctxt "admin settings"
3738
  msgid ""
3739
  "Any changes to these settings will affect new listings only. Existing "
@@ -3742,78 +3832,78 @@ msgid ""
3742
  "here."
3743
  msgstr ""
3744
 
3745
- #: core/class-settings.php:590
3746
  msgctxt "admin settings"
3747
  msgid "Image Settings"
3748
  msgstr ""
3749
 
3750
- #: core/class-settings.php:591
3751
  msgctxt "admin settings"
3752
  msgid "Allow images?"
3753
  msgstr ""
3754
 
3755
- #: core/class-settings.php:593
3756
  msgctxt "admin settings"
3757
  msgid "Min Image File Size (KB)"
3758
  msgstr ""
3759
 
3760
- #: core/class-settings.php:594
3761
  msgctxt "admin settings"
3762
  msgid "Max Image File Size (KB)"
3763
  msgstr ""
3764
 
3765
- #: core/class-settings.php:596
3766
  msgctxt "admin settings"
3767
  msgid "Min image width (px)"
3768
  msgstr ""
3769
 
3770
- #: core/class-settings.php:597
3771
  msgctxt "admin settings"
3772
  msgid "Min image height (px)"
3773
  msgstr ""
3774
 
3775
- #: core/class-settings.php:599
3776
  msgctxt "admin settings"
3777
  msgid "Max image width (px)"
3778
  msgstr ""
3779
 
3780
- #: core/class-settings.php:600
3781
  msgctxt "admin settings"
3782
  msgid "Max image height (px)"
3783
  msgstr ""
3784
 
3785
- #: core/class-settings.php:602
3786
  msgctxt "admin settings"
3787
  msgid "Turn on thickbox/lightbox?"
3788
  msgstr ""
3789
 
3790
- #: core/class-settings.php:602
3791
  msgctxt "admin settings"
3792
  msgid ""
3793
  "Uncheck if it conflicts with other elements or plugins installed on your site"
3794
  msgstr ""
3795
 
3796
- #: core/class-settings.php:604
3797
  msgctxt "admin settings"
3798
  msgid "Thumbnails"
3799
  msgstr ""
3800
 
3801
- #: core/class-settings.php:605
3802
  msgctxt "admin settings"
3803
  msgid "Thumbnail width (px)"
3804
  msgstr ""
3805
 
3806
- #: core/class-settings.php:606
3807
  msgctxt "admin settings"
3808
  msgid "Thumbnail height (px)"
3809
  msgstr ""
3810
 
3811
- #: core/class-settings.php:609
3812
  msgctxt "admin settings"
3813
  msgid "Crop thumbnails to exact dimensions?"
3814
  msgstr ""
3815
 
3816
- #: core/class-settings.php:612
3817
  msgctxt "admin settings"
3818
  msgid ""
3819
  "When enabled images will match exactly the dimensions above but part of the "
@@ -3822,140 +3912,140 @@ msgid ""
3822
  "Depending on the uploaded images, thumbnails may have different heights."
3823
  msgstr ""
3824
 
3825
- #: core/class-settings.php:618
3826
  msgctxt "admin settings"
3827
  msgid "Number of free images"
3828
  msgstr ""
3829
 
3830
- #: core/class-settings.php:623
3831
  msgctxt "admin settings"
3832
  msgid ""
3833
  "For paid listing images, configure that by adding or editing a <a>Fee Plan</"
3834
  "a> instead of this setting, which is ignored for paid listings."
3835
  msgstr ""
3836
 
3837
- #: core/class-settings.php:624
3838
  msgctxt "admin settings"
3839
  msgid "Use default picture for listings with no picture?"
3840
  msgstr ""
3841
 
3842
- #: core/class-settings.php:625
3843
  msgctxt "admin settings"
3844
  msgid "Show Thumbnail on main listings page?"
3845
  msgstr ""
3846
 
3847
- #: core/class-settings.php:681
3848
  msgctxt "admin settings"
3849
  msgid ""
3850
  "Could not copy the AJAX compatibility plugin \"%s\". Compatibility mode was "
3851
  "not activated."
3852
  msgstr ""
3853
 
3854
- #: core/class-settings.php:689
3855
  msgctxt "admin settings"
3856
  msgid ""
3857
  "Could not activate AJAX Compatibility mode: the directory \"%s\" could not "
3858
  "be created."
3859
  msgstr ""
3860
 
3861
- #: core/class-settings.php:698
3862
  msgctxt "admin settings"
3863
  msgid ""
3864
  "Could not remove the \"Business Directory Plugin - AJAX Compatibility Module"
3865
  "\". Please remove the file \"%s\" manually or deactivate the plugin."
3866
  msgstr ""
3867
 
3868
- #: core/class-settings.php:997
3869
  msgctxt "settings"
3870
  msgid "Deactivate License"
3871
  msgstr ""
3872
 
3873
- #: core/class-settings.php:999
3874
  msgctxt "settings"
3875
  msgid "Deactivating license..."
3876
  msgstr ""
3877
 
3878
- #: core/class-settings.php:1002
3879
  msgctxt "settings"
3880
  msgid "Activate License"
3881
  msgstr ""
3882
 
3883
- #: core/class-settings.php:1004
3884
  msgctxt "settings"
3885
  msgid "Activating license..."
3886
  msgstr ""
3887
 
3888
- #: core/class-settings.php:1028
3889
  msgctxt "admin settings"
3890
  msgid "Valid placeholders: %s"
3891
  msgstr ""
3892
 
3893
- #: core/class-settings.php:1062
3894
  msgctxt "settings email"
3895
  msgid "Click to edit e-mail"
3896
  msgstr ""
3897
 
3898
- #: core/class-settings.php:1063
3899
  msgctxt "settings email"
3900
  msgid "Click to edit"
3901
  msgstr ""
3902
 
3903
- #: core/class-settings.php:1076
3904
  msgctxt "settings email"
3905
  msgid "E-Mail Subject"
3906
  msgstr ""
3907
 
3908
- #: core/class-settings.php:1087
3909
  msgctxt "settings email"
3910
  msgid "E-Mail Body"
3911
  msgstr ""
3912
 
3913
- #: core/class-settings.php:1098
3914
  msgctxt "settings email"
3915
  msgid "You can use the following placeholders:"
3916
  msgstr ""
3917
 
3918
- #: core/class-settings.php:1121
3919
  msgctxt "settings email"
3920
  msgid "Preview e-mail"
3921
  msgstr ""
3922
 
3923
- #: core/class-settings.php:1122
3924
  msgctxt "settings email"
3925
  msgid "Cancel"
3926
  msgstr ""
3927
 
3928
- #: core/class-settings.php:1123
3929
  msgctxt "settings email"
3930
  msgid "Save Changes"
3931
  msgstr ""
3932
 
3933
- #: core/class-settings.php:1142
3934
  msgctxt "settings email"
3935
  msgid "Site title"
3936
  msgstr ""
3937
 
3938
- #: core/class-settings.php:1145
3939
  msgctxt "settings email"
3940
  msgid "Site title (with link)"
3941
  msgstr ""
3942
 
3943
- #: core/class-settings.php:1148
3944
  msgctxt "settings email"
3945
  msgid "Site address (with link)"
3946
  msgstr ""
3947
 
3948
- #: core/class-settings.php:1151
3949
  msgctxt "settings email"
3950
  msgid "Directory URL (with link)"
3951
  msgstr ""
3952
 
3953
- #: core/class-settings.php:1154
3954
  msgctxt "settings email"
3955
  msgid "Current date"
3956
  msgstr ""
3957
 
3958
- #: core/class-settings.php:1157
3959
  msgctxt "settings email"
3960
  msgid "Current time"
3961
  msgstr ""
@@ -4351,26 +4441,31 @@ msgctxt "authorize-net"
4351
  msgid "Transaction Key is missing."
4352
  msgstr ""
4353
 
4354
- #: core/gateways-authorize-net.php:124
4355
  msgctxt "authorize-net"
4356
  msgid ""
4357
  "The payment gateway didn't accept your credit card or billing information. "
4358
  "The following reason was given: \"%s\"."
4359
  msgstr ""
4360
 
4361
- #: core/gateways-authorize-net.php:128
4362
  msgctxt "authorize-net"
4363
  msgid ""
4364
  "Your payment is being held for review by the payment gateway. The following "
4365
  "reason was given: \"%s\"."
4366
  msgstr ""
4367
 
4368
- #: core/gateways-authorize-net.php:131
4369
  msgctxt "authorize-net"
4370
  msgid "Payment was rejected. The following reason was given: \"%s\"."
4371
  msgstr ""
4372
 
4373
- #: core/gateways-authorize-net.php:182
 
 
 
 
 
4374
  msgctxt "authorize-net"
4375
  msgid "Could not process payment."
4376
  msgstr ""
@@ -4480,12 +4575,37 @@ msgctxt "fs helper"
4480
  msgid "Destination dir \"%s\" is not writable."
4481
  msgstr ""
4482
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
4483
  #: core/installer.php:38
4484
  msgctxt "default category name"
4485
  msgid "General"
4486
  msgstr ""
4487
 
4488
- #: core/installer.php:462
4489
  msgctxt "installer"
4490
  msgid ""
4491
  "<b>Business Directory Plugin - Regions Module</b> was disabled because it is "
@@ -4493,82 +4613,82 @@ msgid ""
4493
  "the Regions module."
4494
  msgstr ""
4495
 
4496
- #: core/installer.php:528
4497
  msgctxt "installer"
4498
  msgid "Cleaning up listing fees information... %d/%d"
4499
  msgstr ""
4500
 
4501
- #: core/installer.php:578
4502
  msgctxt "installer"
4503
  msgid "Migrating previous transactions to new Payments API... %d/%d"
4504
  msgstr ""
4505
 
4506
- #: core/installer.php:607
4507
  msgctxt "installer"
4508
  msgid "Initial listing payment (BD < 3.4)"
4509
  msgstr ""
4510
 
4511
- #: core/installer.php:618
4512
  msgctxt "installer"
4513
  msgid "Listing edit payment (BD < 3.4)"
4514
  msgstr ""
4515
 
4516
- #: core/installer.php:639
4517
  msgctxt "installer"
4518
  msgid "Renewal fee \"%s\" for category \"%s\""
4519
  msgstr ""
4520
 
4521
- #: core/installer.php:658
4522
  msgctxt "installer"
4523
  msgid "Listing upgrade to featured"
4524
  msgstr ""
4525
 
4526
- #: core/installer.php:894
4527
  msgid "Business Directory - Manual Upgrade Required"
4528
  msgstr ""
4529
 
4530
- #: core/installer.php:896
4531
  msgid ""
4532
  "Business Directory features are currently disabled because the plugin needs "
4533
  "to perform a manual upgrade before continuing."
4534
  msgstr ""
4535
 
4536
- #: core/installer.php:898
4537
  msgid "Perform Manual Upgrade"
4538
  msgstr ""
4539
 
4540
- #: core/installer.php:914 core/installer.php:915 core/installer.php:926
4541
  msgid "Business Directory - Manual Upgrade"
4542
  msgstr ""
4543
 
4544
- #: core/installer.php:930
4545
  msgid ""
4546
  "Business Directory features are currently disabled because the plugin needs "
4547
  "to perform a manual upgrade before it can be used."
4548
  msgstr ""
4549
 
4550
- #: core/installer.php:932
4551
  msgid "Click \"Start Upgrade\" and wait until the process finishes."
4552
  msgstr ""
4553
 
4554
- #: core/installer.php:935
4555
  msgctxt "manual-upgrade"
4556
  msgid "Start Upgrade"
4557
  msgstr ""
4558
 
4559
- #: core/installer.php:937
4560
  msgctxt "manual-upgrade"
4561
  msgid "Pause Upgrade"
4562
  msgstr ""
4563
 
4564
- #: core/installer.php:943
4565
  msgctxt "manual-upgrade"
4566
  msgid ""
4567
  "The upgrade was sucessfully performed. Business Directory Plugin is now "
4568
  "available."
4569
  msgstr ""
4570
 
4571
- #: core/installer.php:946
4572
  msgctxt "manual-upgrade"
4573
  msgid "Go to \"Directory Admin\""
4574
  msgstr ""
@@ -4593,16 +4713,6 @@ msgctxt "licensing"
4593
  msgid "No license key provided"
4594
  msgstr ""
4595
 
4596
- #: core/licensing.php:127 core/licensing.php:159
4597
- msgctxt "licensing"
4598
- msgid "Could not contact licensing server"
4599
- msgstr ""
4600
-
4601
- #: core/licensing.php:132 core/licensing.php:166
4602
- msgctxt "licensing"
4603
- msgid "License key is invalid"
4604
- msgstr ""
4605
-
4606
  #: core/licensing.php:169
4607
  msgctxt "licensing"
4608
  msgid "Deactivation failed"
@@ -4644,16 +4754,6 @@ msgctxt "licensing"
4644
  msgid "Renew License Key"
4645
  msgstr ""
4646
 
4647
- #: core/licensing.php:330
4648
- msgctxt "licensing"
4649
- msgid "Could not activate license: %s."
4650
- msgstr ""
4651
-
4652
- #: core/licensing.php:332
4653
- msgctxt "licensing"
4654
- msgid "License activated"
4655
- msgstr ""
4656
-
4657
  #: core/licensing.php:348
4658
  msgctxt "licensing"
4659
  msgid "Could not deactivate license: %s."
@@ -4669,37 +4769,37 @@ msgctxt "fees-api"
4669
  msgid "Free Listing"
4670
  msgstr ""
4671
 
4672
- #: core/payment.php:135
4673
  msgctxt "fees-api"
4674
  msgid "Fee label is required."
4675
  msgstr ""
4676
 
4677
- #: core/payment.php:138
4678
  msgctxt "fees-api"
4679
  msgid "Fee amount must be a non-negative decimal number."
4680
  msgstr ""
4681
 
4682
- #: core/payment.php:141 core/payment.php:144
4683
  msgctxt "fees-api"
4684
  msgid "Fee must apply to at least one category."
4685
  msgstr ""
4686
 
4687
- #: core/payment.php:147
4688
  msgctxt "fees-api"
4689
  msgid "Fee allowed images must be a non-negative integer."
4690
  msgstr ""
4691
 
4692
- #: core/payment.php:150
4693
  msgctxt "fees-api"
4694
  msgid "Fee listing run must be a non-negative integer."
4695
  msgstr ""
4696
 
4697
- #: core/payment.php:155
4698
  msgctxt "fees-api"
4699
  msgid "Fee listing duration must be a number less than 10 years (3650 days)."
4700
  msgstr ""
4701
 
4702
- #: core/payment.php:325
4703
  msgctxt "payments-api"
4704
  msgid ""
4705
  "You are offering featured listings but have payments turned off. Go to <a "
@@ -4708,7 +4808,7 @@ msgid ""
4708
  "disabled."
4709
  msgstr ""
4710
 
4711
- #: core/payment.php:343
4712
  msgctxt "payments-api"
4713
  msgid ""
4714
  "The <b>%s</b> gateway is active but not properly configured. The gateway "
@@ -4716,7 +4816,7 @@ msgid ""
4716
  "Check the <a href=\"%s\">payment settings</a>."
4717
  msgstr ""
4718
 
4719
- #: core/payment.php:353
4720
  msgctxt "admin"
4721
  msgid ""
4722
  "You have payments turned on but no gateway is active and properly "
@@ -4725,14 +4825,14 @@ msgid ""
4725
  "<i>Free Mode</i>."
4726
  msgstr ""
4727
 
4728
- #: core/payment.php:357
4729
  msgid ""
4730
  "BD detected PayFast and another gateway were enabled. This setup is not "
4731
  "recommended due to PayFast supporting only ZAR and the other gateways not "
4732
  "supporting this currency."
4733
  msgstr ""
4734
 
4735
- #: core/payment.php:361
4736
  msgid ""
4737
  "You have recurring renewal of listing fees enabled but the payment gateways "
4738
  "installed don't support recurring payments. Until a gateway that supports "
@@ -4740,43 +4840,43 @@ msgid ""
4740
  "disabled."
4741
  msgstr ""
4742
 
4743
- #: core/payment.php:366
4744
  msgid ""
4745
  "Due to Google Wallet limitations only monthly (30 days) recurring fees are "
4746
  "supported by the gateway. All other fees will be charged as non-recurring."
4747
  msgstr ""
4748
 
4749
- #: core/payment.php:399
4750
  msgctxt "payments-api"
4751
  msgid "Checkout"
4752
  msgstr ""
4753
 
4754
- #: core/payment.php:400
4755
  msgctxt "payments-api"
4756
  msgid "Pay %1$s through %2$s"
4757
  msgstr ""
4758
 
4759
- #: core/payment.php:407
4760
  msgctxt "payments-api"
4761
  msgid "Your transaction has been approved."
4762
  msgstr ""
4763
 
4764
- #: core/payment.php:588
4765
  msgctxt "payments"
4766
  msgid "Payment Details"
4767
  msgstr ""
4768
 
4769
- #: core/payment.php:615
4770
  msgctxt "checkout"
4771
  msgid "Payment Method"
4772
  msgstr ""
4773
 
4774
- #: core/payment.php:644
4775
  msgctxt "payment"
4776
  msgid "Return to Directory."
4777
  msgstr ""
4778
 
4779
- #: core/payment.php:650
4780
  msgctxt "payments"
4781
  msgid ""
4782
  "Your payment is being processed by the payment gateway. Please reload this "
@@ -4784,7 +4884,7 @@ msgid ""
4784
  "administrator."
4785
  msgstr ""
4786
 
4787
- #: core/payment.php:653
4788
  msgctxt "payments"
4789
  msgid ""
4790
  "The payment has been rejected by the payment gateway. Please contact the "
@@ -4792,41 +4892,41 @@ msgid ""
4792
  "Method\" to select another payment method and try again."
4793
  msgstr ""
4794
 
4795
- #: core/payment.php:654
4796
  msgctxt "payments"
4797
  msgid "Change Payment Method"
4798
  msgstr ""
4799
 
4800
- #: core/payment.php:656
4801
  msgctxt "payments"
4802
  msgid ""
4803
  "The payment has been rejected by the payment gateway. Please contact the "
4804
  "site administrator if you think there is an error."
4805
  msgstr ""
4806
 
4807
- #: core/payment.php:659
4808
  msgctxt "payments"
4809
  msgid "The payment has been canceled at your request."
4810
  msgstr ""
4811
 
4812
- #: core/payment.php:755
4813
  msgctxt "admin"
4814
  msgid "Pending Abandonment"
4815
  msgstr ""
4816
 
4817
- #: core/payment.php:760
4818
  msgctxt "admin"
4819
  msgid "Abandoned"
4820
  msgstr ""
4821
 
4822
  #: core/templates/listing-sticky-tag.tpl.php:3
4823
- #: core/templates/listing-sticky-tag.tpl.php:4 core/templates-listings.php:64
4824
  msgctxt "templates"
4825
  msgid "Featured Listing"
4826
  msgstr ""
4827
 
4828
  #: core/templates/listings.tpl.php:6
4829
- #: templates/businessdirectory-listings.tpl.php:27 templates/search.tpl.php:41
4830
  msgctxt "templates"
4831
  msgid "No listings found."
4832
  msgstr ""
@@ -4868,78 +4968,78 @@ msgctxt "sort"
4868
  msgid "(Reset)"
4869
  msgstr ""
4870
 
4871
- #: core/themes.php:550
4872
  msgctxt "themes"
4873
  msgid "ZIP file is not a valid BD theme file."
4874
  msgstr ""
4875
 
4876
- #: core/themes.php:556
4877
  msgctxt "themes"
4878
  msgid "Could not create themes directory."
4879
  msgstr ""
4880
 
4881
- #: core/themes.php:564
4882
  msgctxt "themes"
4883
  msgid "Could not remove previous theme directory \"%s\"."
4884
  msgstr ""
4885
 
4886
- #: core/themes.php:570
4887
  msgctxt "themes"
4888
  msgid "Could not move new theme into theme directory."
4889
  msgstr ""
4890
 
4891
- #: core/utils.php:105
4892
  msgctxt "utils"
4893
  msgid ""
4894
  "POSTed data exceeds PHP config. maximum. See \"post_max_size\" directive."
4895
  msgstr ""
4896
 
4897
- #: core/utils.php:158
4898
  msgctxt "utils"
4899
  msgid "File size (%s) exceeds maximum file size of %s"
4900
  msgstr ""
4901
 
4902
- #: core/utils.php:166
4903
  msgctxt "utils"
4904
  msgid "File size (%s) is inferior to the required minimum file size of %s"
4905
  msgstr ""
4906
 
4907
- #: core/utils.php:175 core/utils.php:182
4908
  msgctxt "utils"
4909
  msgid "File type \"%s\" is not allowed"
4910
  msgstr ""
4911
 
4912
- #: core/utils.php:189
4913
  msgctxt "utils"
4914
  msgid "Unkown error while uploading file."
4915
  msgstr ""
4916
 
4917
- #: core/utils.php:208
4918
  msgctxt "utils"
4919
  msgid "Uploaded file is not an image"
4920
  msgstr ""
4921
 
4922
- #: core/utils.php:217
4923
  msgctxt "utils"
4924
  msgid "Image width (%s px) is inferior to minimum required width of %s px."
4925
  msgstr ""
4926
 
4927
- #: core/utils.php:223
4928
  msgctxt "utils"
4929
  msgid "Image height (%s px) is inferior to minimum required height of %s px."
4930
  msgstr ""
4931
 
4932
- #: core/utils.php:229
4933
  msgctxt "utils"
4934
  msgid "Image width (%s px) is greater than maximum allowed width of %s px."
4935
  msgstr ""
4936
 
4937
- #: core/utils.php:235
4938
  msgctxt "utils"
4939
  msgid "Image height (%s px) is greater than maximum required height of %s px."
4940
  msgstr ""
4941
 
4942
- #: core/utils.php:249
4943
  msgctxt "utils"
4944
  msgid "Error while uploading file"
4945
  msgstr ""
@@ -5188,22 +5288,22 @@ msgctxt "templates"
5188
  msgid "I agree to the Terms and Conditions"
5189
  msgstr ""
5190
 
5191
- #: core/view-submit-listing.php:404
5192
  msgctxt "listings"
5193
  msgid "Fee \"%s\" for category \"%s\"%s"
5194
  msgstr ""
5195
 
5196
- #: core/view-submit-listing.php:407
5197
  msgctxt "listings"
5198
  msgid "(recurring)"
5199
  msgstr ""
5200
 
5201
- #: core/view-submit-listing.php:417 core/view-upgrade-listing.php:54
5202
  msgctxt "submit"
5203
  msgid "Listing upgrade to featured"
5204
  msgstr ""
5205
 
5206
- #: core/view-submit-listing.php:450
5207
  msgctxt "submit_state"
5208
  msgid "Invalid submit state."
5209
  msgstr ""
@@ -5223,27 +5323,27 @@ msgctxt "templates"
5223
  msgid "Return to listing."
5224
  msgstr ""
5225
 
5226
- #: core/views.php:28
5227
  msgid ""
5228
  "You need to create a page with the [businessdirectory] shortcode for the "
5229
  "Business Directory plugin to work correctly."
5230
  msgstr ""
5231
 
5232
- #: core/views.php:30
5233
  msgid "The directory is temporarily disabled."
5234
  msgstr ""
5235
 
5236
- #: core/views.php:173
5237
  msgctxt "preview"
5238
  msgid "This is just a preview. The listing has not been published yet."
5239
  msgstr ""
5240
 
5241
- #: core/views.php:325
5242
  msgctxt "templates"
5243
  msgid "Listings tagged: %s"
5244
  msgstr ""
5245
 
5246
- #: core/views.php:442
5247
  msgctxt "templates"
5248
  msgid ""
5249
  "There are no categories assigned to the business directory yet. You need to "
@@ -5253,12 +5353,12 @@ msgid ""
5253
  "categories to the business directory."
5254
  msgstr ""
5255
 
5256
- #: core/views.php:444
5257
  msgctxt "templates"
5258
  msgid "There are currently no listings in the directory."
5259
  msgstr ""
5260
 
5261
- #: core/views.php:462
5262
  msgctxt "templates"
5263
  msgid ""
5264
  "You have \"Hide Empty Categories\" on and some categories that don't have "
@@ -5645,7 +5745,7 @@ msgctxt "templates"
5645
  msgid "You do not currently have any listings in the directory."
5646
  msgstr ""
5647
 
5648
- #: templates/manage-listings.tpl.php:11 templates/search.tpl.php:44
5649
  msgctxt "templates"
5650
  msgid "Return to directory"
5651
  msgstr ""
@@ -5852,7 +5952,7 @@ msgstr ""
5852
  #: templates/renew-listing.tpl.php:22
5853
  #: templates/submit-listing/category-selection.tpl.php:8
5854
  #: templates/submit-listing/fee-selection.tpl.php:37
5855
- #: templates/submit-listing/images.tpl.php:35
5856
  #: templates/submit-listing/listing-fields.tpl.php:34
5857
  msgctxt "templates"
5858
  msgid "Continue"
@@ -5868,27 +5968,22 @@ msgctxt "templates"
5868
  msgid "Do not renew my listing"
5869
  msgstr ""
5870
 
5871
- #: templates/search.tpl.php:8 templates/search.tpl.php:27
5872
- msgctxt "search"
5873
- msgid "Search"
5874
- msgstr ""
5875
-
5876
- #: templates/search.tpl.php:10
5877
- msgctxt "search"
5878
- msgid "Return to Advanced Search"
5879
- msgstr ""
5880
-
5881
- #: templates/search.tpl.php:15
5882
  msgctxt "templates"
5883
  msgid "Find a listing"
5884
  msgstr ""
5885
 
5886
- #: templates/search.tpl.php:26
5887
  msgctxt "search"
5888
  msgid "Clear"
5889
  msgstr ""
5890
 
5891
- #: templates/search.tpl.php:34
 
 
 
 
 
5892
  msgctxt "search"
5893
  msgid "Search Results"
5894
  msgstr ""
@@ -6002,7 +6097,12 @@ msgctxt "templates"
6002
  msgid "Image slots available:"
6003
  msgstr ""
6004
 
6005
- #: templates/submit-listing/images-upload-form.tpl.php:49
 
 
 
 
 
6006
  msgctxt "templates"
6007
  msgid "Max. file size:"
6008
  msgstr ""
4
  msgstr ""
5
  "Project-Id-Version: Business Directory Plugin 3.6\n"
6
  "Report-Msgid-Bugs-To: http://wordpress.org/tag/business-directory-plugin\n"
7
+ "POT-Creation-Date: 2015-11-17 23:37:00+00:00\n"
8
  "PO-Revision-Date: 2015-04-07 11:11-0500\n"
9
  "Last-Translator: BD Team <support@businessdirectoryplugin.com>\n"
10
  "Language-Team: BD Team <support@businessdirectoryplugin.com>\n"
215
  msgid "Uninstall"
216
  msgstr ""
217
 
218
+ #: admin/class-admin.php:405
219
  #: admin/templates/listing-metabox-categories.tpl.php:69
220
  msgctxt "admin infometabox"
221
  msgid "never"
222
  msgstr ""
223
 
224
+ #: admin/class-admin.php:487
225
  msgctxt "admin"
226
  msgid "The listing has been published."
227
  msgid_plural "The listings have been published."
228
  msgstr[0] ""
229
  msgstr[1] ""
230
 
231
+ #: admin/class-admin.php:500
232
  msgctxt "admin"
233
  msgid "The listing status has been set as paid."
234
  msgid_plural "The listings status has been set as paid."
235
  msgstr[0] ""
236
  msgstr[1] ""
237
 
238
+ #: admin/class-admin.php:512
239
  msgctxt "admin"
240
  msgid "The listing has been modified."
241
  msgid_plural "The listings have been modified."
242
  msgstr[0] ""
243
  msgstr[1] ""
244
 
245
+ #: admin/class-admin.php:525
246
  msgctxt "admin"
247
  msgid "The listing has been upgraded."
248
  msgid_plural "The listings have been upgraded."
249
  msgstr[0] ""
250
  msgstr[1] ""
251
 
252
+ #: admin/class-admin.php:537
253
  msgctxt "admin"
254
  msgid "The listing has been downgraded."
255
  msgid_plural "The listings have been downgraded."
256
  msgstr[0] ""
257
  msgstr[1] ""
258
 
259
+ #: admin/class-admin.php:549
260
  msgctxt "admin"
261
  msgid "The transaction has been approved."
262
  msgstr ""
263
 
264
+ #: admin/class-admin.php:557
265
  msgctxt "admin"
266
  msgid "The transaction has been rejected."
267
  msgstr ""
268
 
269
+ #: admin/class-admin.php:563
270
  msgctxt "admin"
271
  msgid "The fee was successfully assigned."
272
  msgstr ""
273
 
274
+ #: admin/class-admin.php:572
275
  msgctxt "admin"
276
  msgid "Listing was renewed."
277
  msgid_plural "Listings were renewed."
278
  msgstr[0] ""
279
  msgstr[1] ""
280
 
281
+ #: admin/class-admin.php:579
282
  msgctxt "admin"
283
  msgid "Renewal email sent."
284
  msgstr ""
285
 
286
+ #: admin/class-admin.php:613
287
  msgctxt "admin category id"
288
  msgid "ID"
289
  msgstr ""
290
 
291
+ #: admin/class-admin.php:615 admin/class-admin.php:621
292
  msgctxt "admin"
293
  msgid "Listing Count"
294
  msgstr ""
295
 
296
+ #: admin/class-admin.php:717
297
  msgctxt "admin"
298
  msgid ""
299
  "<b>Business Directory Plugin</b> requires fields with the following "
300
  "associations in order to work correctly: <b>%s</b>."
301
  msgstr ""
302
 
303
+ #: admin/class-admin.php:719
304
  msgctxt "admin"
305
  msgid ""
306
  "<b>Business Directory Plugin</b> requires a field with a <b>%s</b> "
307
  "association in order to work correctly."
308
  msgstr ""
309
 
310
+ #: admin/class-admin.php:723
311
  msgctxt "admin"
312
  msgid ""
313
  "You can create these custom fields by yourself inside \"Manage Form Fields\" "
314
  "or let Business Directory do this for you automatically."
315
  msgstr ""
316
 
317
+ #: admin/class-admin.php:727
318
  msgctxt "admin"
319
  msgid "Go to \"Manage Form Fields\""
320
  msgstr ""
321
 
322
+ #: admin/class-admin.php:730
323
  msgctxt "admin"
324
  msgid "Create these required fields for me"
325
  msgstr ""
326
 
327
+ #: admin/class-admin.php:739
328
  msgctxt "admin"
329
  msgid ""
330
  "<b>Business Directory Plugin</b> requires a page with the "
331
  "<tt>[businessdirectory]</tt> shortcode to function properly."
332
  msgstr ""
333
 
334
+ #: admin/class-admin.php:741
335
  msgctxt "admin"
336
  msgid ""
337
  "You can create this page by yourself or let Business Directory do this for "
338
  "you automatically."
339
  msgstr ""
340
 
341
+ #: admin/class-admin.php:745
342
  msgctxt "admin"
343
  msgid "Create required pages for me"
344
  msgstr ""
345
 
346
+ #: admin/class-admin.php:785
347
  msgctxt "admin compat"
348
  msgid "Installed: %s"
349
  msgstr ""
350
 
351
+ #: admin/class-admin.php:785
352
  msgctxt "admin compat"
353
  msgid "N/A"
354
  msgstr ""
355
 
356
+ #: admin/class-admin.php:788
357
  msgctxt "admin compat"
358
  msgid "Required: %s"
359
  msgstr ""
360
 
361
+ #: admin/class-admin.php:801
362
  msgctxt "admin compat"
363
  msgid ""
364
  "Business Directory has detected some incompatible premium module versions "
365
  "installed."
366
  msgstr ""
367
 
368
+ #: admin/class-admin.php:803
369
  msgctxt "admin compat"
370
  msgid ""
371
  "Please upgrade to the required versions indicated below to make sure "
372
  "everything functions properly."
373
  msgstr ""
374
 
375
+ #: admin/class-admin.php:818
376
  msgctxt "admin"
377
  msgid ""
378
  "We noticed you want your Business Directory users to register before posting "
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 ""
422
  "For better results, \"%s\" theme suggests the following form fields to be "
423
  "created."
424
  msgstr ""
425
 
426
+ #: admin/class-themes-admin.php:154
427
  msgctxt "themes"
428
  msgid "Dismiss this warning"
429
  msgstr ""
430
 
431
+ #: admin/class-themes-admin.php:157
432
  msgctxt "themes"
433
  msgid "Create suggested fields"
434
  msgstr ""
435
 
436
+ #: admin/class-themes-admin.php:164
437
  msgctxt "themes"
438
  msgid "Suggested fields created successfully."
439
  msgstr ""
440
 
441
+ #: admin/class-themes-admin.php:167
442
  msgctxt "themes"
443
  msgid "Theme installed successfully."
444
  msgstr ""
445
 
446
+ #: admin/class-themes-admin.php:170
447
  msgctxt "themes"
448
  msgid "Theme was deleted sucessfully."
449
  msgstr ""
450
 
451
+ #: admin/class-themes-admin.php:173
452
  msgctxt "themes"
453
  msgid "Could not delete theme directory. Check permissions."
454
  msgstr ""
455
 
456
+ #: admin/class-themes-admin.php:199
457
  msgctxt "themes"
458
  msgid "Please upload a valid theme file."
459
  msgstr ""
460
 
461
+ #: admin/class-themes-admin.php:206
462
  msgctxt "themes"
463
  msgid "Could not move \"%s\" to a temporary directory."
464
  msgstr ""
465
 
466
+ #: admin/class-themes-admin.php:307 core/licensing.php:127
467
+ #: core/licensing.php:159
468
+ msgctxt "licensing"
469
+ msgid "Could not contact licensing server"
470
+ msgstr ""
471
+
472
+ #: admin/class-themes-admin.php:313 core/licensing.php:132
473
+ #: core/licensing.php:166
474
+ msgctxt "licensing"
475
+ msgid "License key is invalid"
476
+ msgstr ""
477
+
478
+ #: admin/class-themes-admin.php:318 core/licensing.php:330
479
+ msgctxt "licensing"
480
+ msgid "Could not activate license: %s."
481
+ msgstr ""
482
+
483
+ #: admin/class-themes-admin.php:331 core/licensing.php:332
484
+ msgctxt "licensing"
485
+ msgid "License activated"
486
+ msgstr ""
487
+
488
  #: admin/csv-export.php:136
489
  msgctxt "admin csv-export"
490
  msgid "Could not create a temporary directory for handling this CSV export."
1503
  msgid "Number of images allowed"
1504
  msgstr ""
1505
 
1506
+ #: admin/templates/fees-addoredit.tpl.php:101
1507
+ msgctxt "fees admin"
1508
+ msgid "Is sticky?"
1509
+ msgstr ""
1510
+
1511
+ #: admin/templates/fees-addoredit.tpl.php:116
1512
  msgctxt "fees admin"
1513
  msgid "Apply to category"
1514
  msgstr ""
1515
 
1516
+ #: admin/templates/fees-addoredit.tpl.php:120
1517
  msgctxt "fees admin"
1518
  msgid "* All Categories *"
1519
  msgstr ""
1520
 
1521
+ #: admin/templates/fees-addoredit.tpl.php:140
1522
  msgctxt "fees admin"
1523
  msgid "Update Fee"
1524
  msgstr ""
1525
 
1526
+ #: admin/templates/fees-addoredit.tpl.php:142
1527
  msgctxt "fees admin"
1528
  msgid "Add Fee"
1529
  msgstr ""
1667
  msgid "No validation"
1668
  msgstr ""
1669
 
1670
+ #: admin/templates/form-fields-addoredit.tpl.php:115
1671
  msgctxt "form-fields admin"
1672
  msgid "Is field required?"
1673
  msgstr ""
1674
 
1675
+ #: admin/templates/form-fields-addoredit.tpl.php:121
1676
  msgctxt "form-fields admin"
1677
  msgid "This field is required."
1678
  msgstr ""
1679
 
1680
+ #: admin/templates/form-fields-addoredit.tpl.php:129
1681
  msgctxt "form-fields admin"
1682
  msgid "Field display options"
1683
  msgstr ""
1684
 
1685
+ #: admin/templates/form-fields-addoredit.tpl.php:133
1686
  msgctxt "form-fields admin"
1687
  msgid "Show this value in excerpt view?"
1688
  msgstr ""
1689
 
1690
+ #: admin/templates/form-fields-addoredit.tpl.php:139
1691
  msgctxt "form-fields admin"
1692
  msgid "Display this value in post excerpt view."
1693
  msgstr ""
1694
 
1695
+ #: admin/templates/form-fields-addoredit.tpl.php:145
1696
  msgctxt "form-fields admin"
1697
  msgid "Show this value in listing view?"
1698
  msgstr ""
1699
 
1700
+ #: admin/templates/form-fields-addoredit.tpl.php:151
1701
  msgctxt "form-fields admin"
1702
  msgid "Display this value in the listing view."
1703
  msgstr ""
1704
 
1705
+ #: admin/templates/form-fields-addoredit.tpl.php:157
1706
  msgctxt "form-fields admin"
1707
  msgid "Include this field in the search form?"
1708
  msgstr ""
1709
 
1710
+ #: admin/templates/form-fields-addoredit.tpl.php:163
1711
  msgctxt "form-fields admin"
1712
  msgid "Include this field in the search form."
1713
  msgstr ""
1714
 
1715
+ #: admin/templates/form-fields-addoredit.tpl.php:169
1716
  msgctxt "form-fields admin"
1717
  msgid "Hide this field's label?"
1718
  msgstr ""
1719
 
1720
+ #: admin/templates/form-fields-addoredit.tpl.php:175
1721
  msgctxt "form-fields admin"
1722
  msgid "Hide this field's label when displaying it."
1723
  msgstr ""
1724
 
1725
+ #: admin/templates/form-fields-addoredit.tpl.php:182
1726
  msgctxt "form-fields admin"
1727
  msgid "Update Field"
1728
  msgstr ""
1729
 
1730
+ #: admin/templates/form-fields-addoredit.tpl.php:184
1731
  msgctxt "form-fields admin"
1732
  msgid "Add Field"
1733
  msgstr ""
1795
  msgid "Please see the <a>Form Fields documentation</a> for more details."
1796
  msgstr ""
1797
 
1798
+ #. #-#-#-#-# WPBDM.pot (Business Directory Plugin 3.6.10) #-#-#-#-#
1799
  #. Plugin Name of the plugin/theme
1800
  #: admin/templates/header.tpl.php:4
1801
  msgid "Business Directory Plugin"
2255
  msgstr ""
2256
 
2257
  #: admin/templates/themes-delete-confirm.tpl.php:1
2258
+ #: admin/templates/themes-delete-confirm.tpl.php:13
2259
  msgctxt "themes admin"
2260
+ msgid "Delete Directory Theme"
2261
  msgstr ""
2262
 
2263
  #: admin/templates/themes-delete-confirm.tpl.php:3
2264
  msgctxt "themes admin"
2265
+ msgid "Are you sure you want to delete the directory theme \"%s\"?"
2266
  msgstr ""
2267
 
2268
  #: admin/templates/themes-delete-confirm.tpl.php:12
2269
  msgctxt "themes admin"
2270
+ msgid "Cancel"
2271
  msgstr ""
2272
 
2273
+ #: admin/templates/themes-install.tpl.php:2
2274
+ #: admin/templates/themes-licenses.tpl.php:3 admin/templates/themes.tpl.php:3
2275
  msgctxt "themes"
2276
  msgid "Upload Directory Theme"
2277
  msgstr ""
2291
  msgid "Begin Upload"
2292
  msgstr ""
2293
 
2294
+ #: admin/templates/themes-item.tpl.php:3
2295
  msgctxt "themes"
2296
  msgid "Active:"
2297
  msgstr ""
2298
 
2299
+ #: admin/templates/themes-item.tpl.php:12
2300
  msgctxt "themes"
2301
  msgid "Activate"
2302
  msgstr ""
2303
 
2304
+ #: admin/templates/themes-item.tpl.php:29
2305
  msgctxt "themes"
2306
  msgid "Version:"
2307
  msgstr ""
2308
 
2309
+ #: admin/templates/themes-item.tpl.php:32
2310
  msgctxt "themes"
2311
  msgid "Author:"
2312
  msgstr ""
2412
  msgid "Allow Tracking"
2413
  msgstr ""
2414
 
2415
+ #: business-directory-plugin.php:701
2416
  msgctxt "admin plugins"
2417
  msgid "Settings"
2418
  msgstr ""
2419
 
2420
+ #: business-directory-plugin.php:711
2421
  msgctxt "post type general name"
2422
  msgid "Directory"
2423
  msgstr ""
2424
 
2425
+ #: business-directory-plugin.php:712
2426
  msgctxt "post type singular name"
2427
  msgid "Directory"
2428
  msgstr ""
2429
 
2430
+ #: business-directory-plugin.php:713
2431
  msgctxt "listing"
2432
  msgid "Add New Listing"
2433
  msgstr ""
2434
 
2435
+ #: business-directory-plugin.php:714
2436
  msgctxt "post type"
2437
  msgid "Add New Listing"
2438
  msgstr ""
2439
 
2440
+ #: business-directory-plugin.php:715 core/compatibility/deprecated.php:255
2441
  msgid "Edit Listing"
2442
  msgstr ""
2443
 
2444
+ #: business-directory-plugin.php:716
2445
  msgid "New Listing"
2446
  msgstr ""
2447
 
2448
+ #: business-directory-plugin.php:717
2449
  msgid "View Listing"
2450
  msgstr ""
2451
 
2452
+ #: business-directory-plugin.php:718
2453
  msgid "Search Listings"
2454
  msgstr ""
2455
 
2456
+ #: business-directory-plugin.php:719
2457
  msgid "No listings found"
2458
  msgstr ""
2459
 
2460
+ #: business-directory-plugin.php:720
2461
  msgid "No listings found in trash"
2462
  msgstr ""
2463
 
2464
+ #: business-directory-plugin.php:742
2465
  msgid "Directory Categories"
2466
  msgstr ""
2467
 
2468
+ #: business-directory-plugin.php:855 business-directory-plugin.php:862
2469
  msgctxt "rss feed"
2470
  msgid "%s Feed"
2471
  msgstr ""
2472
 
2473
+ #: business-directory-plugin.php:1266
2474
  msgctxt "title"
2475
  msgid "Submit A Listing"
2476
  msgstr ""
2477
 
2478
+ #: business-directory-plugin.php:1276
2479
  msgctxt "title"
2480
  msgid "Find a Listing"
2481
  msgstr ""
2482
 
2483
+ #: business-directory-plugin.php:1286
2484
  msgctxt "title"
2485
  msgid "View All Listings"
2486
  msgstr ""
2487
 
2488
+ #: business-directory-plugin.php:1306
2489
  msgctxt "title"
2490
  msgid "Listings tagged: %s"
2491
  msgstr ""
2492
 
2493
+ #: core/class-csv-import.php:371
2494
  msgctxt "admin csv-import"
2495
  msgid "Could not create listing category \"%s\""
2496
  msgstr ""
2497
 
2498
+ #: core/class-csv-import.php:515
2499
  msgctxt "admin csv-import"
2500
  msgid "Username \"%s\" does not exist"
2501
  msgstr ""
2502
 
2503
+ #: core/class-csv-import.php:547
2504
  msgctxt "admin csv-import"
2505
  msgid "Missing required field: %s"
2506
  msgstr ""
2507
 
2508
+ #: core/class-csv-import.php:567
2509
  msgctxt "admin csv-import"
2510
  msgid "Listing category \"%s\" does not exist"
2511
  msgstr ""
2599
  msgid "Featured Listing"
2600
  msgstr ""
2601
 
2602
+ #: core/class-listing.php:297 core/class-listing.php:323
2603
  msgctxt "listing"
2604
  msgid "(Fee Unavailable)"
2605
  msgstr ""
2812
  msgid "Directory Search"
2813
  msgstr ""
2814
 
2815
+ #: core/class-settings.php:100
2816
+ msgctxt "admin settings"
2817
+ msgid "Search form display"
2818
+ msgstr ""
2819
+
2820
+ #: core/class-settings.php:104
2821
+ msgctxt "admin settings"
2822
+ msgid "Above results"
2823
+ msgstr ""
2824
+
2825
+ #: core/class-settings.php:105
2826
  msgctxt "admin settings"
2827
+ msgid "Below results"
2828
  msgstr ""
2829
 
2830
+ #: core/class-settings.php:106
2831
+ msgctxt "admin settings"
2832
+ msgid "Don't show with results"
2833
+ msgstr ""
2834
+
2835
+ #: core/class-settings.php:111
2836
  msgctxt "admin settings"
2837
  msgid ""
2838
  "You have selected a textarea field to be included in quick searches. "
2840
  "timeouts and/or general slowness."
2841
  msgstr ""
2842
 
2843
+ #: core/class-settings.php:113
2844
  msgctxt "admin settings"
2845
  msgid ""
2846
  "Use Ctrl-Click to include multiple fields in the search. Choosing too many "
2848
  "performance."
2849
  msgstr ""
2850
 
2851
+ #: core/class-settings.php:116
2852
  msgctxt "admin settings"
2853
  msgid "Quick search fields"
2854
  msgstr ""
2855
 
2856
+ #: core/class-settings.php:124
2857
  msgctxt "admin settings"
2858
  msgid "Enable high performance searches?"
2859
  msgstr ""
2860
 
2861
+ #: core/class-settings.php:127
2862
  msgctxt "admin settings"
2863
  msgid ""
2864
  "Enabling this makes BD sacrifice result quality to improve speed. This is "
2866
  "issue."
2867
  msgstr ""
2868
 
2869
+ #: core/class-settings.php:132
2870
  msgctxt "admin settings"
2871
  msgid "Miscellaneous Settings"
2872
  msgstr ""
2873
 
2874
+ #: core/class-settings.php:136
2875
  msgctxt "admin settings"
2876
  msgid ""
2877
  "Check this if you are having trouble with BD, particularly when importing or "
2878
  "exporting CSV files."
2879
  msgstr ""
2880
 
2881
+ #: core/class-settings.php:139
2882
  msgctxt "admin settings"
2883
  msgid ""
2884
  "If this compatibility mode doesn't solve your issue, you may be experiencing "
2886
  "theme and plugin conflicts with Business Directory."
2887
  msgstr ""
2888
 
2889
+ #: core/class-settings.php:142
2890
  msgctxt "admin settings"
2891
  msgid "Enable AJAX compatibility mode?"
2892
  msgstr ""
2893
 
2894
+ #: core/class-settings.php:150 core/class-settings.php:651
2895
  msgctxt "admin settings"
2896
  msgid "Listings"
2897
  msgstr ""
2898
 
2899
+ #: core/class-settings.php:151 core/class-settings.php:298
2900
+ #: core/class-settings.php:584
2901
  msgctxt "admin settings"
2902
  msgid "General Settings"
2903
  msgstr ""
2904
 
2905
+ #: core/class-settings.php:153
2906
  msgctxt "admin settings"
2907
  msgid "Listings per page"
2908
  msgstr ""
2909
 
2910
+ #: core/class-settings.php:154
2911
  msgctxt "admin settings"
2912
  msgid ""
2913
  "Number of listings to show per page. Use a value of \"0\" to show all "
2914
  "listings."
2915
  msgstr ""
2916
 
2917
+ #: core/class-settings.php:156
2918
  msgctxt "admin settings"
2919
  msgid "Listing duration for no-fee sites (in days)"
2920
  msgstr ""
2921
 
2922
+ #: core/class-settings.php:157
2923
  msgctxt "admin settings"
2924
  msgid ""
2925
  "Use a value of \"0\" to keep a listing alive indefinitely or enter a number "
2926
  "less than 10 years (3650 days)."
2927
  msgstr ""
2928
 
2929
+ #: core/class-settings.php:163
2930
  msgctxt "admin settings"
2931
  msgid "Include listing contact form on listing pages?"
2932
  msgstr ""
2933
 
2934
+ #: core/class-settings.php:166
2935
  msgctxt "admin settings"
2936
  msgid ""
2937
  "Allows visitors to contact listing authors privately. Authors will receive "
2938
  "the messages via email."
2939
  msgstr ""
2940
 
2941
+ #: core/class-settings.php:169
2942
  msgctxt "admin settings"
2943
  msgid "Require login for using the contact form?"
2944
  msgstr ""
2945
 
2946
+ #: core/class-settings.php:175
2947
  msgctxt "admin settings"
2948
  msgid "Maximum number of contact form submits per day"
2949
  msgstr ""
2950
 
2951
+ #: core/class-settings.php:178
2952
  msgctxt "admin settings"
2953
  msgid ""
2954
  "Use this to prevent spamming of listing owners. 0 means unlimited submits "
2955
  "per day."
2956
  msgstr ""
2957
 
2958
+ #: core/class-settings.php:184
2959
  msgctxt "admin settings"
2960
  msgid "Include comment form on listing pages?"
2961
  msgstr ""
2962
 
2963
+ #: core/class-settings.php:187
2964
  msgctxt "admin settings"
2965
  msgid ""
2966
  "Allow visitors to discuss listings using the standard WordPress comment "
2967
  "form. Comments are public."
2968
  msgstr ""
2969
 
2970
+ #: core/class-settings.php:188
2971
  msgctxt "admin settings"
2972
  msgid "Show listings under categories on main page?"
2973
  msgstr ""
2974
 
2975
+ #: core/class-settings.php:189
2976
  msgctxt "admin settings"
2977
  msgid "Status of listings upon uninstalling plugin"
2978
  msgstr ""
2979
 
2980
+ #: core/class-settings.php:191
2981
  msgctxt "admin settings"
2982
  msgid "Status of deleted listings"
2983
  msgstr ""
2984
 
2985
+ #: core/class-settings.php:194
2986
  msgctxt "admin settings"
2987
  msgid "Listing Renewal"
2988
  msgstr ""
2989
 
2990
+ #: core/class-settings.php:195
2991
  msgctxt "admin settings"
2992
  msgid "Turn on listing renewal option?"
2993
  msgstr ""
2994
 
2995
+ #: core/class-settings.php:198
2996
  msgctxt "admin settings"
2997
  msgid "Allow recurring renewal payments?"
2998
  msgstr ""
2999
 
3000
+ #: core/class-settings.php:201
3001
  msgctxt "admin settings"
3002
  msgid ""
3003
  "Allow users to opt in for automatic renewal of their listings. The fee is "
3004
  "charged at the time the listing expires without user intervention."
3005
  msgstr ""
3006
 
3007
+ #: core/class-settings.php:205
3008
  msgctxt "admin settings"
3009
  msgid "Use recurring payments as the default payment method?"
3010
  msgstr ""
3011
 
3012
+ #: core/class-settings.php:208
3013
  msgctxt "admin settings"
3014
  msgid ""
3015
  "Enable automatic renewal without having users opt in during the submit "
3016
  "process."
3017
  msgstr ""
3018
 
3019
+ #: core/class-settings.php:213
3020
  msgctxt "admin settings"
3021
  msgid "Listing renewal e-mail threshold (in days)"
3022
  msgstr ""
3023
 
3024
+ #: core/class-settings.php:216
3025
  msgctxt "admin settings"
3026
  msgid ""
3027
  "Configure how many days before listing expiration is the renewal e-mail sent."
3028
  msgstr ""
3029
 
3030
+ #: core/class-settings.php:220
3031
  msgctxt "admin settings"
3032
  msgid ""
3033
  "Send expiration notices including a cancel links to auto-renewed listings?"
3034
  msgstr ""
3035
 
3036
+ #: core/class-settings.php:227
3037
  msgctxt "admin settings"
3038
  msgid "Remind listing owners of expired listings (past due)?"
3039
  msgstr ""
3040
 
3041
+ #: core/class-settings.php:232
3042
  msgctxt "admin settings"
3043
  msgid "Listing renewal reminder e-mail threshold (in days)"
3044
  msgstr ""
3045
 
3046
+ #: core/class-settings.php:235
3047
  msgctxt "admin settings"
3048
  msgid ""
3049
  "Configure how many days after the expiration of a listing an e-mail reminder "
3050
  "should be sent to the owner."
3051
  msgstr ""
3052
 
3053
+ #: core/class-settings.php:238
3054
  msgctxt "admin settings"
3055
  msgid "Post/Category Settings"
3056
  msgstr ""
3057
 
3058
+ #: core/class-settings.php:239
3059
  msgctxt "admin settings"
3060
  msgid "Default new post status"
3061
  msgstr ""
3062
 
3063
+ #: core/class-settings.php:242
3064
  msgctxt "admin settings"
3065
  msgid "Edit post status"
3066
  msgstr ""
3067
 
3068
+ #: core/class-settings.php:244
3069
  msgctxt "admin settings"
3070
  msgid "Order categories list by"
3071
  msgstr ""
3072
 
3073
+ #: core/class-settings.php:246
3074
  msgctxt "admin settings"
3075
  msgid "Name"
3076
  msgstr ""
3077
 
3078
+ #: core/class-settings.php:247
3079
  msgctxt "admin settings"
3080
  msgid "Slug"
3081
  msgstr ""
3082
 
3083
+ #: core/class-settings.php:248
3084
  msgctxt "admin settings"
3085
  msgid "Listing Count"
3086
  msgstr ""
3087
 
3088
+ #: core/class-settings.php:250
3089
  msgctxt "admin settings"
3090
  msgid "Sort order for categories"
3091
  msgstr ""
3092
 
3093
+ #: core/class-settings.php:251 core/class-settings.php:269
3094
  msgctxt "admin settings"
3095
  msgid "Ascending"
3096
  msgstr ""
3097
 
3098
+ #: core/class-settings.php:251 core/class-settings.php:269
3099
  msgctxt "admin settings"
3100
  msgid "Descending"
3101
  msgstr ""
3102
 
3103
+ #: core/class-settings.php:252
3104
  msgctxt "admin settings"
3105
  msgid "Show category post count?"
3106
  msgstr ""
3107
 
3108
+ #: core/class-settings.php:253
3109
  msgctxt "admin settings"
3110
  msgid "Hide empty categories?"
3111
  msgstr ""
3112
 
3113
+ #: core/class-settings.php:254
3114
  msgctxt "admin settings"
3115
  msgid "Show only parent categories in category list?"
3116
  msgstr ""
3117
 
3118
+ #: core/class-settings.php:256
3119
  msgctxt "admin settings"
3120
  msgid "Listings Sorting"
3121
  msgstr ""
3122
 
3123
+ #: core/class-settings.php:257
3124
  msgctxt "admin settings"
3125
  msgid "Order directory listings by"
3126
  msgstr ""
3127
 
3128
+ #: core/class-settings.php:259
3129
  msgctxt "admin settings"
3130
  msgid "Title"
3131
  msgstr ""
3132
 
3133
+ #: core/class-settings.php:260
3134
  msgctxt "admin settings"
3135
  msgid "Author"
3136
  msgstr ""
3137
 
3138
+ #: core/class-settings.php:261
3139
  msgctxt "admin settings"
3140
  msgid "Date posted"
3141
  msgstr ""
3142
 
3143
+ #: core/class-settings.php:262
3144
  msgctxt "admin settings"
3145
  msgid "Date last modified"
3146
  msgstr ""
3147
 
3148
+ #: core/class-settings.php:263
3149
  msgctxt "admin settings"
3150
  msgid "Random"
3151
  msgstr ""
3152
 
3153
+ #: core/class-settings.php:264
3154
  msgctxt "admin settings"
3155
  msgid "Paid first then free. Inside each group by date."
3156
  msgstr ""
3157
 
3158
+ #: core/class-settings.php:265
3159
  msgctxt "admin settings"
3160
  msgid "Paid first then free. Inside each group by title."
3161
  msgstr ""
3162
 
3163
+ #: core/class-settings.php:267
3164
  msgctxt "admin settings"
3165
  msgid "Sort directory listings by"
3166
  msgstr ""
3167
 
3168
+ #: core/class-settings.php:268
3169
  msgctxt "admin settings"
3170
  msgid "Ascending for ascending order A-Z, Descending for descending order Z-A"
3171
  msgstr ""
3172
 
3173
+ #: core/class-settings.php:273
3174
  msgctxt "admin settings"
3175
  msgid "Enable sort bar?"
3176
  msgstr ""
3177
 
3178
+ #: core/class-settings.php:278
3179
  msgctxt "admin settings"
3180
  msgid "Sortbar Fields"
3181
  msgstr ""
3182
 
3183
+ #: core/class-settings.php:287
3184
  msgctxt "admin settings"
3185
  msgid "Featured (Sticky) listing settings"
3186
  msgstr ""
3187
 
3188
+ #: core/class-settings.php:288
3189
  msgctxt "admin settings"
3190
  msgid "Offer sticky listings?"
3191
  msgstr ""
3192
 
3193
+ #: core/class-settings.php:289
3194
  msgctxt "admin settings"
3195
  msgid "Offer upgrades during submit process?"
3196
  msgstr ""
3197
 
3198
+ #: core/class-settings.php:290
3199
  msgctxt "admin settings"
3200
  msgid "Sticky listing price"
3201
  msgstr ""
3202
 
3203
+ #: core/class-settings.php:291
3204
  msgctxt "admin settings"
3205
  msgid "Sticky listing page description text"
3206
  msgstr ""
3207
 
3208
+ #: core/class-settings.php:292
3209
  msgctxt "admin settings"
3210
  msgid ""
3211
  "You can upgrade your listing to featured status. Featured listings will "
3212
  "always appear on top of regular listings."
3213
  msgstr ""
3214
 
3215
+ #: core/class-settings.php:297
3216
  msgctxt "admin settings"
3217
  msgid "E-Mail"
3218
  msgstr ""
3219
 
3220
+ #: core/class-settings.php:301
3221
  msgctxt "admin settings"
3222
  msgid "Display email address fields publicly?"
3223
  msgstr ""
3224
 
3225
+ #: core/class-settings.php:304
3226
  msgctxt "admin settings"
3227
  msgid ""
3228
  "Shows the email address of the listing owner to all web users. NOT "
3230
  "harvest it for future use."
3231
  msgstr ""
3232
 
3233
+ #: core/class-settings.php:307
3234
  msgctxt "admin settings"
3235
  msgid "How to determine the listing's email address?"
3236
  msgstr ""
3237
 
3238
+ #: core/class-settings.php:310
3239
  msgctxt "admin settings"
3240
  msgid ""
3241
  "This affects emails sent to listing owners via contact forms or when their "
3242
  "listings expire."
3243
  msgstr ""
3244
 
3245
+ #: core/class-settings.php:317
3246
  msgctxt "admin settings"
3247
  msgid "E-Mail Notifications"
3248
  msgstr ""
3249
 
3250
+ #: core/class-settings.php:320
3251
  msgctxt "admin settings"
3252
  msgid "Notify admin via e-mail when..."
3253
  msgstr ""
3254
 
3255
+ #: core/class-settings.php:324
3256
  msgctxt "admin settings"
3257
  msgid "A new listing is submitted."
3258
  msgstr ""
3259
 
3260
+ #: core/class-settings.php:325
3261
  msgctxt "admin settings"
3262
  msgid "A listing is edited."
3263
  msgstr ""
3264
 
3265
+ #: core/class-settings.php:326
3266
  msgctxt "admin settings"
3267
  msgid "A listing expires."
3268
  msgstr ""
3269
 
3270
+ #: core/class-settings.php:327
3271
  msgctxt "admin settings"
3272
  msgid "A contact message is sent to a listing's owner."
3273
  msgstr ""
3274
 
3275
+ #: core/class-settings.php:333
3276
  msgctxt "admin settings"
3277
  msgid "CC this e-mail address too"
3278
  msgstr ""
3279
 
3280
+ #: core/class-settings.php:339
3281
  msgctxt "admin settings"
3282
  msgid "Notify users via e-mail when..."
3283
  msgstr ""
3284
 
3285
+ #: core/class-settings.php:342
3286
  msgctxt "admin settings"
3287
  msgid "You can modify the text template used for most of these e-mails below."
3288
  msgstr ""
3289
 
3290
+ #: core/class-settings.php:343
3291
  msgctxt "admin settings"
3292
  msgid "Their listing is submitted."
3293
  msgstr ""
3294
 
3295
+ #: core/class-settings.php:344
3296
  msgctxt "admin settings"
3297
  msgid "Their listing is approved/published."
3298
  msgstr ""
3299
 
3300
+ #: core/class-settings.php:353
3301
  msgctxt "contact email"
3302
  msgid "You have received a reply from your listing at %s."
3303
  msgstr ""
3304
 
3305
+ #: core/class-settings.php:354
3306
  msgctxt "contact email"
3307
  msgid "Name: %s"
3308
  msgstr ""
3309
 
3310
+ #: core/class-settings.php:355
3311
  msgctxt "contact email"
3312
  msgid "E-Mail: %s"
3313
  msgstr ""
3314
 
3315
+ #: core/class-settings.php:356
3316
  msgctxt "contact email"
3317
  msgid "Message:"
3318
  msgstr ""
3319
 
3320
+ #: core/class-settings.php:358
3321
  msgctxt "contact email"
3322
  msgid "Time: %s"
3323
  msgstr ""
3324
 
3325
+ #: core/class-settings.php:360
3326
  msgctxt "admin settings"
3327
  msgid "E-Mail Templates"
3328
  msgstr ""
3329
 
3330
+ #: core/class-settings.php:363
3331
  msgctxt "admin settings"
3332
  msgid "Email confirmation message"
3333
  msgstr ""
3334
 
3335
+ #: core/class-settings.php:367
3336
  msgctxt "admin settings"
3337
  msgid "Sent after a listing has been submitted."
3338
  msgstr ""
3339
 
3340
+ #: core/class-settings.php:368 core/class-settings.php:376
3341
+ #: core/class-settings.php:417
3342
  msgctxt "admin settings"
3343
  msgid "Listing's title"
3344
  msgstr ""
3345
 
3346
+ #: core/class-settings.php:371
3347
  msgctxt "admin settings"
3348
  msgid "Listing published message"
3349
  msgstr ""
3350
 
3351
+ #: core/class-settings.php:374
3352
  msgctxt "admin settings"
3353
  msgid ""
3354
  "Your listing \"[listing]\" is now available at [listing-url] and can be "
3355
  "viewed by the public."
3356
  msgstr ""
3357
 
3358
+ #: core/class-settings.php:375
3359
  msgctxt "admin settings"
3360
  msgid "Sent when the listing has been published or approved by an admin."
3361
  msgstr ""
3362
 
3363
+ #: core/class-settings.php:377
3364
  msgctxt "admin settings"
3365
  msgid "Listing's URL"
3366
  msgstr ""
3367
 
3368
+ #: core/class-settings.php:381
3369
  msgctxt "admin settings"
3370
  msgid "Listing Contact Message"
3371
  msgstr ""
3372
 
3373
+ #: core/class-settings.php:385
3374
  msgctxt "admin settings"
3375
  msgid ""
3376
  "Sent to listing owners when someone uses the contact form on their listing "
3377
  "pages."
3378
  msgstr ""
3379
 
3380
+ #: core/class-settings.php:395
3381
  msgctxt "admin settings"
3382
  msgid "Payment related"
3383
  msgstr ""
3384
 
3385
+ #: core/class-settings.php:412
3386
  msgctxt "admin settings"
3387
  msgid "Payment abandoned reminder message"
3388
  msgstr ""
3389
 
3390
+ #: core/class-settings.php:416
3391
  msgctxt "admin settings"
3392
  msgid "Sent some time after a pending payment is abandoned by users."
3393
  msgstr ""
3394
 
3395
+ #: core/class-settings.php:418
3396
  msgctxt "admin settings"
3397
  msgid "Checkout URL link"
3398
  msgstr ""
3399
 
3400
+ #: core/class-settings.php:424
3401
  msgctxt "admin settings"
3402
  msgid "Renewal Reminders"
3403
  msgstr ""
3404
 
3405
+ #: core/class-settings.php:427
3406
  msgctxt "admin settings"
3407
  msgid ""
3408
  "This section refers only to the text of the renewal/expiration notices. You "
3409
  "can also <a>configure when the e-mails are sent</a>."
3410
  msgstr ""
3411
 
3412
+ #: core/class-settings.php:431
3413
  msgctxt "admin settings"
3414
  msgid "Pending expiration e-mail message"
3415
  msgstr ""
3416
 
3417
+ #: core/class-settings.php:435
3418
  msgctxt "settings"
3419
  msgid ""
3420
  "Sent some time before the listing expires. Applies to non-recurring renewals "
3421
  "only."
3422
  msgstr ""
3423
 
3424
+ #: core/class-settings.php:436 core/class-settings.php:449
3425
+ #: core/class-settings.php:462 core/class-settings.php:475
3426
+ #: core/class-settings.php:488
3427
  msgctxt "settings"
3428
  msgid "Listing's name (with link)"
3429
  msgstr ""
3430
 
3431
+ #: core/class-settings.php:437 core/class-settings.php:450
3432
+ #: core/class-settings.php:463 core/class-settings.php:476
3433
+ #: core/class-settings.php:489
3434
  msgctxt "settings"
3435
  msgid "Author's name"
3436
  msgstr ""
3437
 
3438
+ #: core/class-settings.php:438 core/class-settings.php:451
3439
+ #: core/class-settings.php:490
3440
  msgctxt "settings"
3441
  msgid "Expiration date"
3442
  msgstr ""
3443
 
3444
+ #: core/class-settings.php:439
3445
  msgctxt "settings"
3446
  msgid "Category that is going to expire"
3447
  msgstr ""
3448
 
3449
+ #: core/class-settings.php:440 core/class-settings.php:453
3450
+ #: core/class-settings.php:492
3451
  msgctxt "settings"
3452
  msgid "Link to renewal page"
3453
  msgstr ""
3454
 
3455
+ #: core/class-settings.php:441 core/class-settings.php:454
3456
+ #: core/class-settings.php:466 core/class-settings.php:479
3457
+ #: core/class-settings.php:493
3458
  msgctxt "settings"
3459
  msgid "Link to your site"
3460
  msgstr ""
3461
 
3462
+ #: core/class-settings.php:444
3463
  msgctxt "admin settings"
3464
  msgid "Listing Renewal e-mail message"
3465
  msgstr ""
3466
 
3467
+ #: core/class-settings.php:448
3468
  msgctxt "settings"
3469
  msgid ""
3470
  "Sent at the time of listing expiration. Applies to non-recurring renewals "
3471
  "only."
3472
  msgstr ""
3473
 
3474
+ #: core/class-settings.php:452 core/class-settings.php:491
3475
  msgctxt "settings"
3476
  msgid "Category that expired"
3477
  msgstr ""
3478
 
3479
+ #: core/class-settings.php:457
3480
  msgctxt "admin settings"
3481
  msgid "Listing auto-renewal reminder (recurring payments)"
3482
  msgstr ""
3483
 
3484
+ #: core/class-settings.php:461
3485
  msgctxt "settings"
3486
  msgid ""
3487
  "Sent some time before the listing is auto-renewed. Applies to recurring "
3488
  "renewals only."
3489
  msgstr ""
3490
 
3491
+ #: core/class-settings.php:464 core/class-settings.php:478
3492
  msgctxt "settings"
3493
  msgid "Renewal date"
3494
  msgstr ""
3495
 
3496
+ #: core/class-settings.php:465
3497
  msgctxt "settings"
3498
  msgid "Category that is going to be renewed"
3499
  msgstr ""
3500
 
3501
+ #: core/class-settings.php:467
3502
  msgctxt "settings"
3503
  msgid "Link to manage subscriptions"
3504
  msgstr ""
3505
 
3506
+ #: core/class-settings.php:470
3507
  msgctxt "admin settings"
3508
  msgid "Listing Renewal e-mail message (recurring payments)"
3509
  msgstr ""
3510
 
3511
+ #: core/class-settings.php:474
3512
  msgctxt "settings"
3513
  msgid ""
3514
  "Sent after the listing is auto-renewed. Applies to recurring renewals only."
3515
  msgstr ""
3516
 
3517
+ #: core/class-settings.php:477
3518
  msgctxt "settings"
3519
  msgid "Renewed category"
3520
  msgstr ""
3521
 
3522
+ #: core/class-settings.php:483
3523
  msgctxt "admin settings"
3524
  msgid "Renewal reminder e-mail message"
3525
  msgstr ""
3526
 
3527
+ #: core/class-settings.php:487
3528
  msgctxt "settings"
3529
  msgid ""
3530
  "Sent some time after listing expiration and when no renewal has occurred. "
3531
  "Applies to both recurring and non-recurring renewals."
3532
  msgstr ""
3533
 
3534
+ #: core/class-settings.php:497
3535
  msgctxt "admin settings"
3536
  msgid "Payment"
3537
  msgstr ""
3538
 
3539
+ #: core/class-settings.php:498
3540
  msgctxt "admin settings"
3541
  msgid "Payment Settings"
3542
  msgstr ""
3543
 
3544
+ #: core/class-settings.php:501
3545
  msgctxt "admin settings"
3546
  msgid "Turn On payments?"
3547
  msgstr ""
3548
 
3549
+ #: core/class-settings.php:503
3550
  msgctxt "admin settings"
3551
  msgid "Put payment gateways in test mode?"
3552
  msgstr ""
3553
 
3554
+ #: core/class-settings.php:508
3555
  msgctxt "admin settings"
3556
  msgid "Perform checkouts on the secure (HTTPS) version of your site?"
3557
  msgstr ""
3558
 
3559
+ #: core/class-settings.php:511
3560
  msgctxt "admin settings"
3561
  msgid ""
3562
  "Recommended for added security. For this to work you need to enable HTTPS on "
3563
  "your server and <a>obtain an SSL certificate</a>."
3564
  msgstr ""
3565
 
3566
+ #: core/class-settings.php:515
3567
  msgctxt "admin settings"
3568
  msgid "Currency Code"
3569
  msgstr ""
3570
 
3571
+ #: core/class-settings.php:517
3572
  msgctxt "admin settings"
3573
  msgid "Australian Dollar (AUD)"
3574
  msgstr ""
3575
 
3576
+ #: core/class-settings.php:518
3577
  msgctxt "admin settings"
3578
  msgid "Brazilian Real (BRL)"
3579
  msgstr ""
3580
 
3581
+ #: core/class-settings.php:519
3582
  msgctxt "admin settings"
3583
  msgid "Canadian Dollar (CAD)"
3584
  msgstr ""
3585
 
3586
+ #: core/class-settings.php:520
3587
  msgctxt "admin settings"
3588
  msgid "Czech Koruna (CZK)"
3589
  msgstr ""
3590
 
3591
+ #: core/class-settings.php:521
3592
  msgctxt "admin settings"
3593
  msgid "Danish Krone (DKK)"
3594
  msgstr ""
3595
 
3596
+ #: core/class-settings.php:522
3597
  msgctxt "admin settings"
3598
  msgid "Euro (EUR)"
3599
  msgstr ""
3600
 
3601
+ #: core/class-settings.php:523
3602
  msgctxt "admin settings"
3603
  msgid "Hong Kong Dollar (HKD)"
3604
  msgstr ""
3605
 
3606
+ #: core/class-settings.php:524
3607
  msgctxt "admin settings"
3608
  msgid "Hungarian Forint (HUF)"
3609
  msgstr ""
3610
 
3611
+ #: core/class-settings.php:525
3612
  msgctxt "admin settings"
3613
  msgid "Israeli New Shequel (ILS)"
3614
  msgstr ""
3615
 
3616
+ #: core/class-settings.php:526
3617
  msgctxt "admin settings"
3618
  msgid "Japanese Yen (JPY)"
3619
  msgstr ""
3620
 
3621
+ #: core/class-settings.php:527
3622
  msgctxt "admin settings"
3623
  msgid "Malasian Ringgit (MYR)"
3624
  msgstr ""
3625
 
3626
+ #: core/class-settings.php:528
3627
  msgctxt "admin settings"
3628
  msgid "Mexican Peso (MXN)"
3629
  msgstr ""
3630
 
3631
+ #: core/class-settings.php:529
3632
  msgctxt "admin settings"
3633
  msgid "Norwegian Krone (NOK)"
3634
  msgstr ""
3635
 
3636
+ #: core/class-settings.php:530
3637
  msgctxt "admin settings"
3638
  msgid "New Zealand Dollar (NZD)"
3639
  msgstr ""
3640
 
3641
+ #: core/class-settings.php:531
3642
  msgctxt "admin settings"
3643
  msgid "Philippine Peso (PHP)"
3644
  msgstr ""
3645
 
3646
+ #: core/class-settings.php:532
3647
  msgctxt "admin settings"
3648
  msgid "Polish Zloty (PLN)"
3649
  msgstr ""
3650
 
3651
+ #: core/class-settings.php:533
3652
  msgctxt "admin settings"
3653
  msgid "Pound Sterling (GBP)"
3654
  msgstr ""
3655
 
3656
+ #: core/class-settings.php:534
3657
  msgctxt "admin settings"
3658
  msgid "Singapore Dollar (SGD)"
3659
  msgstr ""
3660
 
3661
+ #: core/class-settings.php:535
3662
  msgctxt "admin settings"
3663
  msgid "Swedish Krona (SEK)"
3664
  msgstr ""
3665
 
3666
+ #: core/class-settings.php:536
3667
  msgctxt "admin settings"
3668
  msgid "Swiss Franc (CHF)"
3669
  msgstr ""
3670
 
3671
+ #: core/class-settings.php:537
3672
  msgctxt "admin settings"
3673
  msgid "Taiwan Dollar (TWD)"
3674
  msgstr ""
3675
 
3676
+ #: core/class-settings.php:538
3677
  msgctxt "admin settings"
3678
  msgid "Thai Baht (THB)"
3679
  msgstr ""
3680
 
3681
+ #: core/class-settings.php:539
3682
  msgctxt "admin settings"
3683
  msgid "Turkish Lira (TRY)"
3684
  msgstr ""
3685
 
3686
+ #: core/class-settings.php:540
3687
  msgctxt "admin settings"
3688
  msgid "U.S. Dollar (USD)"
3689
  msgstr ""
3690
 
3691
+ #: core/class-settings.php:544
3692
  msgctxt "admin settings"
3693
  msgid "Currency Symbol"
3694
  msgstr ""
3695
 
3696
+ #: core/class-settings.php:549
3697
  msgctxt "admin settings"
3698
  msgid "Currency symbol display"
3699
  msgstr ""
3700
 
3701
+ #: core/class-settings.php:553
3702
  msgctxt "admin settings"
3703
  msgid "Show currency symbol on the left"
3704
  msgstr ""
3705
 
3706
+ #: core/class-settings.php:554
3707
  msgctxt "admin settings"
3708
  msgid "Show currency symbol on the right"
3709
  msgstr ""
3710
 
3711
+ #: core/class-settings.php:555
3712
  msgctxt "admin settings"
3713
  msgid "Do not show currency symbol"
3714
  msgstr ""
3715
 
3716
+ #: core/class-settings.php:557
3717
  msgctxt "admin settings"
3718
  msgid "Thank you for payment message"
3719
  msgstr ""
3720
 
3721
+ #: core/class-settings.php:558
3722
  msgctxt "admin settings"
3723
  msgid ""
3724
  "Thank you for your payment. Your payment is being verified and your listing "
3725
  "reviewed. The verification and review process could take up to 48 hours."
3726
  msgstr ""
3727
 
3728
+ #: core/class-settings.php:563
3729
  msgctxt "admin settings"
3730
  msgid "Ask users to come back for abandoned payments?"
3731
  msgstr ""
3732
 
3733
+ #: core/class-settings.php:566
3734
  msgctxt "admin settings"
3735
  msgid ""
3736
  "An abandoned payment is when a user attempts to place a listing and gets to "
3739
  "the transaction. BD can remind them to come back and continue."
3740
  msgstr ""
3741
 
3742
+ #: core/class-settings.php:572
3743
  msgctxt "admin settings"
3744
  msgid "Listing abandonment threshold (hours)"
3745
  msgstr ""
3746
 
3747
+ #: core/class-settings.php:577
3748
  msgctxt "admin settings"
3749
  msgid ""
3750
  "Listings with pending payments are marked as abandoned after this time. You "
3751
  "can also <a>customize the e-mail</a> users receive."
3752
  msgstr ""
3753
 
3754
+ #: core/class-settings.php:583
3755
+ msgctxt "admin settings"
3756
+ msgid "Themes"
3757
+ msgstr ""
3758
+
3759
+ #: core/class-settings.php:588
3760
+ msgctxt "admin settings"
3761
+ msgid "Theme button style"
3762
+ msgstr ""
3763
+
3764
+ #: core/class-settings.php:592
3765
+ msgctxt "admin settings"
3766
+ msgid "Use the BD theme style for BD buttons"
3767
+ msgstr ""
3768
+
3769
+ #: core/class-settings.php:593
3770
+ msgctxt "admin settings"
3771
+ msgid "Use the WP theme style for BD buttons"
3772
+ msgstr ""
3773
+
3774
+ #: core/class-settings.php:599
3775
  msgctxt "admin settings"
3776
  msgid "Registration"
3777
  msgstr ""
3778
 
3779
+ #: core/class-settings.php:600
3780
+ msgid ""
3781
+ "We expect that a membership plugin supports the 'redirect_to' parameter for "
3782
+ "the URLs below to work. If the plugin does not support them, these settings "
3783
+ "will not function as expected. Please contact the membership plugin and ask "
3784
+ "them to support the WP standard 'redirect_to' query parameter."
3785
+ msgstr ""
3786
+
3787
+ #: core/class-settings.php:603
3788
  msgctxt "admin settings"
3789
  msgid "Registration Settings"
3790
  msgstr ""
3791
 
3792
+ #: core/class-settings.php:604
3793
  msgctxt "admin settings"
3794
  msgid "Require login to post listings?"
3795
  msgstr ""
3796
 
3797
+ #: core/class-settings.php:609
3798
+ msgctxt "admin settings"
3799
+ msgid "Login URL"
3800
+ msgstr ""
3801
+
3802
+ #: core/class-settings.php:612
3803
+ msgctxt "admin settings"
3804
+ msgid ""
3805
+ "URL of your membership plugin's login page. Only enter this if using a "
3806
+ "membership plugin or custom login page."
3807
+ msgstr ""
3808
+
3809
+ #: core/class-settings.php:617
3810
  msgctxt "admin settings"
3811
  msgid "Registration URL"
3812
  msgstr ""
3813
 
3814
+ #: core/class-settings.php:620
3815
  msgctxt "admin settings"
3816
  msgid ""
3817
  "URL of your membership plugin's registration page. Only enter this if using "
3818
  "a membership plugin or custom registration page."
3819
  msgstr ""
3820
 
3821
+ #: core/class-settings.php:624
3822
  msgctxt "admin settings"
3823
  msgid "Image"
3824
  msgstr ""
3825
 
3826
+ #: core/class-settings.php:625
3827
  msgctxt "admin settings"
3828
  msgid ""
3829
  "Any changes to these settings will affect new listings only. Existing "
3832
  "here."
3833
  msgstr ""
3834
 
3835
+ #: core/class-settings.php:626
3836
  msgctxt "admin settings"
3837
  msgid "Image Settings"
3838
  msgstr ""
3839
 
3840
+ #: core/class-settings.php:627
3841
  msgctxt "admin settings"
3842
  msgid "Allow images?"
3843
  msgstr ""
3844
 
3845
+ #: core/class-settings.php:629
3846
  msgctxt "admin settings"
3847
  msgid "Min Image File Size (KB)"
3848
  msgstr ""
3849
 
3850
+ #: core/class-settings.php:630
3851
  msgctxt "admin settings"
3852
  msgid "Max Image File Size (KB)"
3853
  msgstr ""
3854
 
3855
+ #: core/class-settings.php:632
3856
  msgctxt "admin settings"
3857
  msgid "Min image width (px)"
3858
  msgstr ""
3859
 
3860
+ #: core/class-settings.php:633
3861
  msgctxt "admin settings"
3862
  msgid "Min image height (px)"
3863
  msgstr ""
3864
 
3865
+ #: core/class-settings.php:635
3866
  msgctxt "admin settings"
3867
  msgid "Max image width (px)"
3868
  msgstr ""
3869
 
3870
+ #: core/class-settings.php:636
3871
  msgctxt "admin settings"
3872
  msgid "Max image height (px)"
3873
  msgstr ""
3874
 
3875
+ #: core/class-settings.php:638
3876
  msgctxt "admin settings"
3877
  msgid "Turn on thickbox/lightbox?"
3878
  msgstr ""
3879
 
3880
+ #: core/class-settings.php:638
3881
  msgctxt "admin settings"
3882
  msgid ""
3883
  "Uncheck if it conflicts with other elements or plugins installed on your site"
3884
  msgstr ""
3885
 
3886
+ #: core/class-settings.php:640
3887
  msgctxt "admin settings"
3888
  msgid "Thumbnails"
3889
  msgstr ""
3890
 
3891
+ #: core/class-settings.php:641
3892
  msgctxt "admin settings"
3893
  msgid "Thumbnail width (px)"
3894
  msgstr ""
3895
 
3896
+ #: core/class-settings.php:642
3897
  msgctxt "admin settings"
3898
  msgid "Thumbnail height (px)"
3899
  msgstr ""
3900
 
3901
+ #: core/class-settings.php:645
3902
  msgctxt "admin settings"
3903
  msgid "Crop thumbnails to exact dimensions?"
3904
  msgstr ""
3905
 
3906
+ #: core/class-settings.php:648
3907
  msgctxt "admin settings"
3908
  msgid ""
3909
  "When enabled images will match exactly the dimensions above but part of the "
3912
  "Depending on the uploaded images, thumbnails may have different heights."
3913
  msgstr ""
3914
 
3915
+ #: core/class-settings.php:654
3916
  msgctxt "admin settings"
3917
  msgid "Number of free images"
3918
  msgstr ""
3919
 
3920
+ #: core/class-settings.php:659
3921
  msgctxt "admin settings"
3922
  msgid ""
3923
  "For paid listing images, configure that by adding or editing a <a>Fee Plan</"
3924
  "a> instead of this setting, which is ignored for paid listings."
3925
  msgstr ""
3926
 
3927
+ #: core/class-settings.php:660
3928
  msgctxt "admin settings"
3929
  msgid "Use default picture for listings with no picture?"
3930
  msgstr ""
3931
 
3932
+ #: core/class-settings.php:661
3933
  msgctxt "admin settings"
3934
  msgid "Show Thumbnail on main listings page?"
3935
  msgstr ""
3936
 
3937
+ #: core/class-settings.php:717
3938
  msgctxt "admin settings"
3939
  msgid ""
3940
  "Could not copy the AJAX compatibility plugin \"%s\". Compatibility mode was "
3941
  "not activated."
3942
  msgstr ""
3943
 
3944
+ #: core/class-settings.php:725
3945
  msgctxt "admin settings"
3946
  msgid ""
3947
  "Could not activate AJAX Compatibility mode: the directory \"%s\" could not "
3948
  "be created."
3949
  msgstr ""
3950
 
3951
+ #: core/class-settings.php:734
3952
  msgctxt "admin settings"
3953
  msgid ""
3954
  "Could not remove the \"Business Directory Plugin - AJAX Compatibility Module"
3955
  "\". Please remove the file \"%s\" manually or deactivate the plugin."
3956
  msgstr ""
3957
 
3958
+ #: core/class-settings.php:1033
3959
  msgctxt "settings"
3960
  msgid "Deactivate License"
3961
  msgstr ""
3962
 
3963
+ #: core/class-settings.php:1035
3964
  msgctxt "settings"
3965
  msgid "Deactivating license..."
3966
  msgstr ""
3967
 
3968
+ #: core/class-settings.php:1038
3969
  msgctxt "settings"
3970
  msgid "Activate License"
3971
  msgstr ""
3972
 
3973
+ #: core/class-settings.php:1040
3974
  msgctxt "settings"
3975
  msgid "Activating license..."
3976
  msgstr ""
3977
 
3978
+ #: core/class-settings.php:1064
3979
  msgctxt "admin settings"
3980
  msgid "Valid placeholders: %s"
3981
  msgstr ""
3982
 
3983
+ #: core/class-settings.php:1098
3984
  msgctxt "settings email"
3985
  msgid "Click to edit e-mail"
3986
  msgstr ""
3987
 
3988
+ #: core/class-settings.php:1099
3989
  msgctxt "settings email"
3990
  msgid "Click to edit"
3991
  msgstr ""
3992
 
3993
+ #: core/class-settings.php:1112
3994
  msgctxt "settings email"
3995
  msgid "E-Mail Subject"
3996
  msgstr ""
3997
 
3998
+ #: core/class-settings.php:1123
3999
  msgctxt "settings email"
4000
  msgid "E-Mail Body"
4001
  msgstr ""
4002
 
4003
+ #: core/class-settings.php:1134
4004
  msgctxt "settings email"
4005
  msgid "You can use the following placeholders:"
4006
  msgstr ""
4007
 
4008
+ #: core/class-settings.php:1157
4009
  msgctxt "settings email"
4010
  msgid "Preview e-mail"
4011
  msgstr ""
4012
 
4013
+ #: core/class-settings.php:1158
4014
  msgctxt "settings email"
4015
  msgid "Cancel"
4016
  msgstr ""
4017
 
4018
+ #: core/class-settings.php:1159
4019
  msgctxt "settings email"
4020
  msgid "Save Changes"
4021
  msgstr ""
4022
 
4023
+ #: core/class-settings.php:1178
4024
  msgctxt "settings email"
4025
  msgid "Site title"
4026
  msgstr ""
4027
 
4028
+ #: core/class-settings.php:1181
4029
  msgctxt "settings email"
4030
  msgid "Site title (with link)"
4031
  msgstr ""
4032
 
4033
+ #: core/class-settings.php:1184
4034
  msgctxt "settings email"
4035
  msgid "Site address (with link)"
4036
  msgstr ""
4037
 
4038
+ #: core/class-settings.php:1187
4039
  msgctxt "settings email"
4040
  msgid "Directory URL (with link)"
4041
  msgstr ""
4042
 
4043
+ #: core/class-settings.php:1190
4044
  msgctxt "settings email"
4045
  msgid "Current date"
4046
  msgstr ""
4047
 
4048
+ #: core/class-settings.php:1193
4049
  msgctxt "settings email"
4050
  msgid "Current time"
4051
  msgstr ""
4441
  msgid "Transaction Key is missing."
4442
  msgstr ""
4443
 
4444
+ #: core/gateways-authorize-net.php:92
4445
  msgctxt "authorize-net"
4446
  msgid ""
4447
  "The payment gateway didn't accept your credit card or billing information. "
4448
  "The following reason was given: \"%s\"."
4449
  msgstr ""
4450
 
4451
+ #: core/gateways-authorize-net.php:96
4452
  msgctxt "authorize-net"
4453
  msgid ""
4454
  "Your payment is being held for review by the payment gateway. The following "
4455
  "reason was given: \"%s\"."
4456
  msgstr ""
4457
 
4458
+ #: core/gateways-authorize-net.php:99 core/gateways-authorize-net.php:122
4459
  msgctxt "authorize-net"
4460
  msgid "Payment was rejected. The following reason was given: \"%s\"."
4461
  msgstr ""
4462
 
4463
+ #: core/gateways-authorize-net.php:116
4464
+ msgctxt "authorize-net"
4465
+ msgid "Setup fee"
4466
+ msgstr ""
4467
+
4468
+ #: core/gateways-authorize-net.php:173
4469
  msgctxt "authorize-net"
4470
  msgid "Could not process payment."
4471
  msgstr ""
4575
  msgid "Destination dir \"%s\" is not writable."
4576
  msgstr ""
4577
 
4578
+ #: core/helpers/class-themes-updater.php:126
4579
+ msgctxt "themes"
4580
+ msgid "Updating theme..."
4581
+ msgstr ""
4582
+
4583
+ #: core/helpers/class-themes-updater.php:127
4584
+ msgctxt "themes"
4585
+ msgid "Theme updated."
4586
+ msgstr ""
4587
+
4588
+ #: core/helpers/class-themes-updater.php:129
4589
+ msgctxt "themes"
4590
+ msgid "New version available (<b>%s</b>). <a>Update now.</a>"
4591
+ msgstr ""
4592
+
4593
+ #: core/helpers/class-themes-updater.php:157
4594
+ msgctxt "themes"
4595
+ msgid "Could not update theme: %s"
4596
+ msgstr ""
4597
+
4598
+ #: core/helpers/class-themes-updater.php:163
4599
+ msgctxt "themes"
4600
+ msgid "Theme was updated sucessfully."
4601
+ msgstr ""
4602
+
4603
  #: core/installer.php:38
4604
  msgctxt "default category name"
4605
  msgid "General"
4606
  msgstr ""
4607
 
4608
+ #: core/installer.php:464
4609
  msgctxt "installer"
4610
  msgid ""
4611
  "<b>Business Directory Plugin - Regions Module</b> was disabled because it is "
4613
  "the Regions module."
4614
  msgstr ""
4615
 
4616
+ #: core/installer.php:530
4617
  msgctxt "installer"
4618
  msgid "Cleaning up listing fees information... %d/%d"
4619
  msgstr ""
4620
 
4621
+ #: core/installer.php:580
4622
  msgctxt "installer"
4623
  msgid "Migrating previous transactions to new Payments API... %d/%d"
4624
  msgstr ""
4625
 
4626
+ #: core/installer.php:609
4627
  msgctxt "installer"
4628
  msgid "Initial listing payment (BD < 3.4)"
4629
  msgstr ""
4630
 
4631
+ #: core/installer.php:620
4632
  msgctxt "installer"
4633
  msgid "Listing edit payment (BD < 3.4)"
4634
  msgstr ""
4635
 
4636
+ #: core/installer.php:641
4637
  msgctxt "installer"
4638
  msgid "Renewal fee \"%s\" for category \"%s\""
4639
  msgstr ""
4640
 
4641
+ #: core/installer.php:660
4642
  msgctxt "installer"
4643
  msgid "Listing upgrade to featured"
4644
  msgstr ""
4645
 
4646
+ #: core/installer.php:902
4647
  msgid "Business Directory - Manual Upgrade Required"
4648
  msgstr ""
4649
 
4650
+ #: core/installer.php:904
4651
  msgid ""
4652
  "Business Directory features are currently disabled because the plugin needs "
4653
  "to perform a manual upgrade before continuing."
4654
  msgstr ""
4655
 
4656
+ #: core/installer.php:906
4657
  msgid "Perform Manual Upgrade"
4658
  msgstr ""
4659
 
4660
+ #: core/installer.php:922 core/installer.php:923 core/installer.php:934
4661
  msgid "Business Directory - Manual Upgrade"
4662
  msgstr ""
4663
 
4664
+ #: core/installer.php:938
4665
  msgid ""
4666
  "Business Directory features are currently disabled because the plugin needs "
4667
  "to perform a manual upgrade before it can be used."
4668
  msgstr ""
4669
 
4670
+ #: core/installer.php:940
4671
  msgid "Click \"Start Upgrade\" and wait until the process finishes."
4672
  msgstr ""
4673
 
4674
+ #: core/installer.php:943
4675
  msgctxt "manual-upgrade"
4676
  msgid "Start Upgrade"
4677
  msgstr ""
4678
 
4679
+ #: core/installer.php:945
4680
  msgctxt "manual-upgrade"
4681
  msgid "Pause Upgrade"
4682
  msgstr ""
4683
 
4684
+ #: core/installer.php:951
4685
  msgctxt "manual-upgrade"
4686
  msgid ""
4687
  "The upgrade was sucessfully performed. Business Directory Plugin is now "
4688
  "available."
4689
  msgstr ""
4690
 
4691
+ #: core/installer.php:954
4692
  msgctxt "manual-upgrade"
4693
  msgid "Go to \"Directory Admin\""
4694
  msgstr ""
4713
  msgid "No license key provided"
4714
  msgstr ""
4715
 
 
 
 
 
 
 
 
 
 
 
4716
  #: core/licensing.php:169
4717
  msgctxt "licensing"
4718
  msgid "Deactivation failed"
4754
  msgid "Renew License Key"
4755
  msgstr ""
4756
 
 
 
 
 
 
 
 
 
 
 
4757
  #: core/licensing.php:348
4758
  msgctxt "licensing"
4759
  msgid "Could not deactivate license: %s."
4769
  msgid "Free Listing"
4770
  msgstr ""
4771
 
4772
+ #: core/payment.php:144
4773
  msgctxt "fees-api"
4774
  msgid "Fee label is required."
4775
  msgstr ""
4776
 
4777
+ #: core/payment.php:147
4778
  msgctxt "fees-api"
4779
  msgid "Fee amount must be a non-negative decimal number."
4780
  msgstr ""
4781
 
4782
+ #: core/payment.php:150 core/payment.php:153
4783
  msgctxt "fees-api"
4784
  msgid "Fee must apply to at least one category."
4785
  msgstr ""
4786
 
4787
+ #: core/payment.php:156
4788
  msgctxt "fees-api"
4789
  msgid "Fee allowed images must be a non-negative integer."
4790
  msgstr ""
4791
 
4792
+ #: core/payment.php:159
4793
  msgctxt "fees-api"
4794
  msgid "Fee listing run must be a non-negative integer."
4795
  msgstr ""
4796
 
4797
+ #: core/payment.php:164
4798
  msgctxt "fees-api"
4799
  msgid "Fee listing duration must be a number less than 10 years (3650 days)."
4800
  msgstr ""
4801
 
4802
+ #: core/payment.php:339
4803
  msgctxt "payments-api"
4804
  msgid ""
4805
  "You are offering featured listings but have payments turned off. Go to <a "
4808
  "disabled."
4809
  msgstr ""
4810
 
4811
+ #: core/payment.php:357
4812
  msgctxt "payments-api"
4813
  msgid ""
4814
  "The <b>%s</b> gateway is active but not properly configured. The gateway "
4816
  "Check the <a href=\"%s\">payment settings</a>."
4817
  msgstr ""
4818
 
4819
+ #: core/payment.php:367
4820
  msgctxt "admin"
4821
  msgid ""
4822
  "You have payments turned on but no gateway is active and properly "
4825
  "<i>Free Mode</i>."
4826
  msgstr ""
4827
 
4828
+ #: core/payment.php:371
4829
  msgid ""
4830
  "BD detected PayFast and another gateway were enabled. This setup is not "
4831
  "recommended due to PayFast supporting only ZAR and the other gateways not "
4832
  "supporting this currency."
4833
  msgstr ""
4834
 
4835
+ #: core/payment.php:375
4836
  msgid ""
4837
  "You have recurring renewal of listing fees enabled but the payment gateways "
4838
  "installed don't support recurring payments. Until a gateway that supports "
4840
  "disabled."
4841
  msgstr ""
4842
 
4843
+ #: core/payment.php:380
4844
  msgid ""
4845
  "Due to Google Wallet limitations only monthly (30 days) recurring fees are "
4846
  "supported by the gateway. All other fees will be charged as non-recurring."
4847
  msgstr ""
4848
 
4849
+ #: core/payment.php:413
4850
  msgctxt "payments-api"
4851
  msgid "Checkout"
4852
  msgstr ""
4853
 
4854
+ #: core/payment.php:414
4855
  msgctxt "payments-api"
4856
  msgid "Pay %1$s through %2$s"
4857
  msgstr ""
4858
 
4859
+ #: core/payment.php:421
4860
  msgctxt "payments-api"
4861
  msgid "Your transaction has been approved."
4862
  msgstr ""
4863
 
4864
+ #: core/payment.php:602
4865
  msgctxt "payments"
4866
  msgid "Payment Details"
4867
  msgstr ""
4868
 
4869
+ #: core/payment.php:629
4870
  msgctxt "checkout"
4871
  msgid "Payment Method"
4872
  msgstr ""
4873
 
4874
+ #: core/payment.php:658
4875
  msgctxt "payment"
4876
  msgid "Return to Directory."
4877
  msgstr ""
4878
 
4879
+ #: core/payment.php:664
4880
  msgctxt "payments"
4881
  msgid ""
4882
  "Your payment is being processed by the payment gateway. Please reload this "
4884
  "administrator."
4885
  msgstr ""
4886
 
4887
+ #: core/payment.php:667
4888
  msgctxt "payments"
4889
  msgid ""
4890
  "The payment has been rejected by the payment gateway. Please contact the "
4892
  "Method\" to select another payment method and try again."
4893
  msgstr ""
4894
 
4895
+ #: core/payment.php:668
4896
  msgctxt "payments"
4897
  msgid "Change Payment Method"
4898
  msgstr ""
4899
 
4900
+ #: core/payment.php:670
4901
  msgctxt "payments"
4902
  msgid ""
4903
  "The payment has been rejected by the payment gateway. Please contact the "
4904
  "site administrator if you think there is an error."
4905
  msgstr ""
4906
 
4907
+ #: core/payment.php:673
4908
  msgctxt "payments"
4909
  msgid "The payment has been canceled at your request."
4910
  msgstr ""
4911
 
4912
+ #: core/payment.php:769
4913
  msgctxt "admin"
4914
  msgid "Pending Abandonment"
4915
  msgstr ""
4916
 
4917
+ #: core/payment.php:774
4918
  msgctxt "admin"
4919
  msgid "Abandoned"
4920
  msgstr ""
4921
 
4922
  #: core/templates/listing-sticky-tag.tpl.php:3
4923
+ #: core/templates/listing-sticky-tag.tpl.php:4 core/templates-listings.php:60
4924
  msgctxt "templates"
4925
  msgid "Featured Listing"
4926
  msgstr ""
4927
 
4928
  #: core/templates/listings.tpl.php:6
4929
+ #: templates/businessdirectory-listings.tpl.php:27 templates/search.tpl.php:21
4930
  msgctxt "templates"
4931
  msgid "No listings found."
4932
  msgstr ""
4968
  msgid "(Reset)"
4969
  msgstr ""
4970
 
4971
+ #: core/themes.php:587
4972
  msgctxt "themes"
4973
  msgid "ZIP file is not a valid BD theme file."
4974
  msgstr ""
4975
 
4976
+ #: core/themes.php:593
4977
  msgctxt "themes"
4978
  msgid "Could not create themes directory."
4979
  msgstr ""
4980
 
4981
+ #: core/themes.php:601
4982
  msgctxt "themes"
4983
  msgid "Could not remove previous theme directory \"%s\"."
4984
  msgstr ""
4985
 
4986
+ #: core/themes.php:607
4987
  msgctxt "themes"
4988
  msgid "Could not move new theme into theme directory."
4989
  msgstr ""
4990
 
4991
+ #: core/utils.php:106
4992
  msgctxt "utils"
4993
  msgid ""
4994
  "POSTed data exceeds PHP config. maximum. See \"post_max_size\" directive."
4995
  msgstr ""
4996
 
4997
+ #: core/utils.php:159
4998
  msgctxt "utils"
4999
  msgid "File size (%s) exceeds maximum file size of %s"
5000
  msgstr ""
5001
 
5002
+ #: core/utils.php:167
5003
  msgctxt "utils"
5004
  msgid "File size (%s) is inferior to the required minimum file size of %s"
5005
  msgstr ""
5006
 
5007
+ #: core/utils.php:176 core/utils.php:183
5008
  msgctxt "utils"
5009
  msgid "File type \"%s\" is not allowed"
5010
  msgstr ""
5011
 
5012
+ #: core/utils.php:190
5013
  msgctxt "utils"
5014
  msgid "Unkown error while uploading file."
5015
  msgstr ""
5016
 
5017
+ #: core/utils.php:209
5018
  msgctxt "utils"
5019
  msgid "Uploaded file is not an image"
5020
  msgstr ""
5021
 
5022
+ #: core/utils.php:218
5023
  msgctxt "utils"
5024
  msgid "Image width (%s px) is inferior to minimum required width of %s px."
5025
  msgstr ""
5026
 
5027
+ #: core/utils.php:224
5028
  msgctxt "utils"
5029
  msgid "Image height (%s px) is inferior to minimum required height of %s px."
5030
  msgstr ""
5031
 
5032
+ #: core/utils.php:230
5033
  msgctxt "utils"
5034
  msgid "Image width (%s px) is greater than maximum allowed width of %s px."
5035
  msgstr ""
5036
 
5037
+ #: core/utils.php:236
5038
  msgctxt "utils"
5039
  msgid "Image height (%s px) is greater than maximum required height of %s px."
5040
  msgstr ""
5041
 
5042
+ #: core/utils.php:250
5043
  msgctxt "utils"
5044
  msgid "Error while uploading file"
5045
  msgstr ""
5288
  msgid "I agree to the Terms and Conditions"
5289
  msgstr ""
5290
 
5291
+ #: core/view-submit-listing.php:406
5292
  msgctxt "listings"
5293
  msgid "Fee \"%s\" for category \"%s\"%s"
5294
  msgstr ""
5295
 
5296
+ #: core/view-submit-listing.php:409
5297
  msgctxt "listings"
5298
  msgid "(recurring)"
5299
  msgstr ""
5300
 
5301
+ #: core/view-submit-listing.php:419 core/view-upgrade-listing.php:54
5302
  msgctxt "submit"
5303
  msgid "Listing upgrade to featured"
5304
  msgstr ""
5305
 
5306
+ #: core/view-submit-listing.php:452
5307
  msgctxt "submit_state"
5308
  msgid "Invalid submit state."
5309
  msgstr ""
5323
  msgid "Return to listing."
5324
  msgstr ""
5325
 
5326
+ #: core/views.php:30
5327
  msgid ""
5328
  "You need to create a page with the [businessdirectory] shortcode for the "
5329
  "Business Directory plugin to work correctly."
5330
  msgstr ""
5331
 
5332
+ #: core/views.php:32
5333
  msgid "The directory is temporarily disabled."
5334
  msgstr ""
5335
 
5336
+ #: core/views.php:190
5337
  msgctxt "preview"
5338
  msgid "This is just a preview. The listing has not been published yet."
5339
  msgstr ""
5340
 
5341
+ #: core/views.php:342
5342
  msgctxt "templates"
5343
  msgid "Listings tagged: %s"
5344
  msgstr ""
5345
 
5346
+ #: core/views.php:459
5347
  msgctxt "templates"
5348
  msgid ""
5349
  "There are no categories assigned to the business directory yet. You need to "
5353
  "categories to the business directory."
5354
  msgstr ""
5355
 
5356
+ #: core/views.php:461
5357
  msgctxt "templates"
5358
  msgid "There are currently no listings in the directory."
5359
  msgstr ""
5360
 
5361
+ #: core/views.php:479
5362
  msgctxt "templates"
5363
  msgid ""
5364
  "You have \"Hide Empty Categories\" on and some categories that don't have "
5745
  msgid "You do not currently have any listings in the directory."
5746
  msgstr ""
5747
 
5748
+ #: templates/manage-listings.tpl.php:11 templates/search.tpl.php:24
5749
  msgctxt "templates"
5750
  msgid "Return to directory"
5751
  msgstr ""
5952
  #: templates/renew-listing.tpl.php:22
5953
  #: templates/submit-listing/category-selection.tpl.php:8
5954
  #: templates/submit-listing/fee-selection.tpl.php:37
5955
+ #: templates/submit-listing/images.tpl.php:36
5956
  #: templates/submit-listing/listing-fields.tpl.php:34
5957
  msgctxt "templates"
5958
  msgid "Continue"
5968
  msgid "Do not renew my listing"
5969
  msgstr ""
5970
 
5971
+ #: templates/search-form.tpl.php:3
 
 
 
 
 
 
 
 
 
 
5972
  msgctxt "templates"
5973
  msgid "Find a listing"
5974
  msgstr ""
5975
 
5976
+ #: templates/search-form.tpl.php:14
5977
  msgctxt "search"
5978
  msgid "Clear"
5979
  msgstr ""
5980
 
5981
+ #: templates/search-form.tpl.php:15 templates/search.tpl.php:6
5982
+ msgctxt "search"
5983
+ msgid "Search"
5984
+ msgstr ""
5985
+
5986
+ #: templates/search.tpl.php:14
5987
  msgctxt "search"
5988
  msgid "Search Results"
5989
  msgstr ""
6097
  msgid "Image slots available:"
6098
  msgstr ""
6099
 
6100
+ #: templates/submit-listing/images-upload-form.tpl.php:50
6101
+ msgctxt "templates"
6102
+ msgid "Min. file size:"
6103
+ msgstr ""
6104
+
6105
+ #: templates/submit-listing/images-upload-form.tpl.php:56
6106
  msgctxt "templates"
6107
  msgid "Max. file size:"
6108
  msgstr ""
languages/WPBDM-es_ES.mo CHANGED
Binary file
languages/WPBDM-es_ES.po CHANGED
@@ -4,8 +4,8 @@ msgid ""
4
  msgstr ""
5
  "Project-Id-Version: Business Directory Plugin 3.6.9\n"
6
  "Report-Msgid-Bugs-To: http://wordpress.org/tag/business-directory-plugin\n"
7
- "POT-Creation-Date: 2015-10-13 15:01:21+00:00\n"
8
- "PO-Revision-Date: 2015-10-13 10:09-0500\n"
9
  "Last-Translator: BD Team <support@businessdirectoryplugin.com>\n"
10
  "Language-Team: BD Team <support@businessdirectoryplugin.com>\n"
11
  "Language: es_ES\n"
@@ -222,85 +222,85 @@ msgctxt "admin menu"
222
  msgid "Uninstall"
223
  msgstr "Desinstalar"
224
 
225
- #: admin/class-admin.php:404
226
  #: admin/templates/listing-metabox-categories.tpl.php:69
227
  msgctxt "admin infometabox"
228
  msgid "never"
229
  msgstr "nunca"
230
 
231
- #: admin/class-admin.php:486
232
  msgctxt "admin"
233
  msgid "The listing has been published."
234
  msgid_plural "The listings have been published."
235
  msgstr[0] "El listado ha sido publicado."
236
  msgstr[1] "Los listados han sido publicados."
237
 
238
- #: admin/class-admin.php:499
239
  msgctxt "admin"
240
  msgid "The listing status has been set as paid."
241
  msgid_plural "The listings status has been set as paid."
242
  msgstr[0] "El listado se ha marcado como pagado."
243
  msgstr[1] "Los listados se han marcado como pagados."
244
 
245
- #: admin/class-admin.php:511
246
  msgctxt "admin"
247
  msgid "The listing has been modified."
248
  msgid_plural "The listings have been modified."
249
  msgstr[0] "El listado ha sido modificado."
250
  msgstr[1] "Los listados han sido modificados."
251
 
252
- #: admin/class-admin.php:524
253
  msgctxt "admin"
254
  msgid "The listing has been upgraded."
255
  msgid_plural "The listings have been upgraded."
256
  msgstr[0] "El listado ha sido mejorado."
257
  msgstr[1] "Los listados han sido mejorados."
258
 
259
- #: admin/class-admin.php:536
260
  msgctxt "admin"
261
  msgid "The listing has been downgraded."
262
  msgid_plural "The listings have been downgraded."
263
  msgstr[0] "El listado ha sido degradado."
264
  msgstr[1] "Los listados han sido degradados."
265
 
266
- #: admin/class-admin.php:548
267
  msgctxt "admin"
268
  msgid "The transaction has been approved."
269
  msgstr "La transacción ha sido aprobada."
270
 
271
- #: admin/class-admin.php:556
272
  msgctxt "admin"
273
  msgid "The transaction has been rejected."
274
  msgstr "La transacción ha sido rechazada."
275
 
276
- #: admin/class-admin.php:562
277
  msgctxt "admin"
278
  msgid "The fee was successfully assigned."
279
  msgstr "La comisión se asignó satisfactoriamente."
280
 
281
- #: admin/class-admin.php:571
282
  msgctxt "admin"
283
  msgid "Listing was renewed."
284
  msgid_plural "Listings were renewed."
285
  msgstr[0] "El listado ha sido renovado."
286
  msgstr[1] "Los listados fueron renovados."
287
 
288
- #: admin/class-admin.php:578
289
  msgctxt "admin"
290
  msgid "Renewal email sent."
291
  msgstr "Mensaje de correo electrónico de renovación enviado."
292
 
293
- #: admin/class-admin.php:612
294
  msgctxt "admin category id"
295
  msgid "ID"
296
  msgstr "ID"
297
 
298
- #: admin/class-admin.php:614 admin/class-admin.php:620
299
  msgctxt "admin"
300
  msgid "Listing Count"
301
  msgstr "Conteo de Listados"
302
 
303
- #: admin/class-admin.php:716
304
  msgctxt "admin"
305
  msgid ""
306
  "<b>Business Directory Plugin</b> requires fields with the following "
@@ -309,7 +309,7 @@ msgstr ""
309
  "<b>Business Directory Plugin</b> requiere campos con las siguientes "
310
  "asociaciones para funcionar correctamente: <b>%s</b>."
311
 
312
- #: admin/class-admin.php:718
313
  msgctxt "admin"
314
  msgid ""
315
  "<b>Business Directory Plugin</b> requires a field with a <b>%s</b> "
@@ -318,7 +318,7 @@ msgstr ""
318
  "<b>Business Directory Plugin</b> requiere un campo con la asociación <b>%s</"
319
  "b> para funcionar correctamente."
320
 
321
- #: admin/class-admin.php:722
322
  msgctxt "admin"
323
  msgid ""
324
  "You can create these custom fields by yourself inside \"Manage Form Fields\" "
@@ -327,17 +327,17 @@ msgstr ""
327
  "Puede crear estos campos usted mismo en \"Administrar Campos de Formulario\" "
328
  "o puede dejar que Business Directory haga esto por usted automáticamente."
329
 
330
- #: admin/class-admin.php:726
331
  msgctxt "admin"
332
  msgid "Go to \"Manage Form Fields\""
333
  msgstr "Ir a \"Administrar Campos de Formulario\""
334
 
335
- #: admin/class-admin.php:729
336
  msgctxt "admin"
337
  msgid "Create these required fields for me"
338
  msgstr "Crear estos campos requeridos por mi"
339
 
340
- #: admin/class-admin.php:738
341
  msgctxt "admin"
342
  msgid ""
343
  "<b>Business Directory Plugin</b> requires a page with the "
@@ -346,7 +346,7 @@ msgstr ""
346
  "<b>Business Directory Plugin</b> requiere una página con el shortcode "
347
  "<tt>[businessdirectory]</tt> para funcionar adecuadamente."
348
 
349
- #: admin/class-admin.php:740
350
  msgctxt "admin"
351
  msgid ""
352
  "You can create this page by yourself or let Business Directory do this for "
@@ -355,27 +355,27 @@ msgstr ""
355
  "Puede crear esta página usted mismo o dejar que Business Directory lo haga "
356
  "por usted automáticamente."
357
 
358
- #: admin/class-admin.php:744
359
  msgctxt "admin"
360
  msgid "Create required pages for me"
361
  msgstr "Crear las páginas requeridas por mi"
362
 
363
- #: admin/class-admin.php:784
364
  msgctxt "admin compat"
365
  msgid "Installed: %s"
366
  msgstr "Instalado: %s"
367
 
368
- #: admin/class-admin.php:784
369
  msgctxt "admin compat"
370
  msgid "N/A"
371
  msgstr "N/A"
372
 
373
- #: admin/class-admin.php:787
374
  msgctxt "admin compat"
375
  msgid "Required: %s"
376
  msgstr "Requerido: %s"
377
 
378
- #: admin/class-admin.php:800
379
  msgctxt "admin compat"
380
  msgid ""
381
  "Business Directory has detected some incompatible premium module versions "
@@ -384,7 +384,7 @@ msgstr ""
384
  "Business Directory ha detectado algunas versiones incompatibles de módulos "
385
  "instaladas."
386
 
387
- #: admin/class-admin.php:802
388
  msgctxt "admin compat"
389
  msgid ""
390
  "Please upgrade to the required versions indicated below to make sure "
@@ -393,7 +393,7 @@ msgstr ""
393
  "Por favor actualice a las versiones requeridas indicadas abajo para "
394
  "asegurarse de que todo funcione correctamente."
395
 
396
- #: admin/class-admin.php:817
397
  msgctxt "admin"
398
  msgid ""
399
  "We noticed you want your Business Directory users to register before posting "
@@ -422,68 +422,96 @@ msgctxt "templates"
422
  msgid "There are no images currently attached to the listing."
423
  msgstr "No hay imágenes actualmente asociadas al listado."
424
 
425
- #: admin/class-themes-admin.php:27 admin/class-themes-admin.php:28
426
  msgctxt "themes"
427
  msgid "Directory Themes"
428
  msgstr ""
429
 
430
- #: admin/class-themes-admin.php:80
 
 
 
 
 
 
431
  msgctxt "themes"
432
  msgid "Could not change the active theme to \"%s\"."
433
  msgstr ""
434
 
435
- #: admin/class-themes-admin.php:124
436
  msgctxt "themes"
437
  msgid "Active theme changed to \"%s\"."
438
  msgstr ""
439
 
440
- #: admin/class-themes-admin.php:127
441
  msgctxt "themes"
442
  msgid ""
443
  "For better results, \"%s\" theme suggests the following form fields to be "
444
  "created."
445
  msgstr ""
446
 
447
- #: admin/class-themes-admin.php:134
448
  msgctxt "themes"
449
  msgid "Dismiss this warning"
450
  msgstr ""
451
 
452
- #: admin/class-themes-admin.php:137
453
  msgctxt "themes"
454
  msgid "Create suggested fields"
455
  msgstr ""
456
 
457
- #: admin/class-themes-admin.php:144
458
  msgctxt "themes"
459
  msgid "Suggested fields created successfully."
460
  msgstr ""
461
 
462
- #: admin/class-themes-admin.php:147
463
  msgctxt "themes"
464
  msgid "Theme installed successfully."
465
  msgstr ""
466
 
467
- #: admin/class-themes-admin.php:150
468
  msgctxt "themes"
469
  msgid "Theme was deleted sucessfully."
470
  msgstr ""
471
 
472
- #: admin/class-themes-admin.php:153
473
  msgctxt "themes"
474
  msgid "Could not delete theme directory. Check permissions."
475
  msgstr ""
476
 
477
- #: admin/class-themes-admin.php:179
478
  msgctxt "themes"
479
  msgid "Please upload a valid theme file."
480
  msgstr ""
481
 
482
- #: admin/class-themes-admin.php:186
483
  msgctxt "themes"
484
  msgid "Could not move \"%s\" to a temporary directory."
485
  msgstr ""
486
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
487
  #: admin/csv-export.php:136
488
  msgctxt "admin csv-export"
489
  msgid "Could not create a temporary directory for handling this CSV export."
@@ -1566,22 +1594,27 @@ msgctxt "fees admin"
1566
  msgid "Number of images allowed"
1567
  msgstr "Número de imágenes permitidas"
1568
 
1569
- #: admin/templates/fees-addoredit.tpl.php:105
 
 
 
 
 
1570
  msgctxt "fees admin"
1571
  msgid "Apply to category"
1572
  msgstr "Aplicar a categoría"
1573
 
1574
- #: admin/templates/fees-addoredit.tpl.php:109
1575
  msgctxt "fees admin"
1576
  msgid "* All Categories *"
1577
  msgstr "* Todas las Categorías *"
1578
 
1579
- #: admin/templates/fees-addoredit.tpl.php:129
1580
  msgctxt "fees admin"
1581
  msgid "Update Fee"
1582
  msgstr "Actualizar Comisión"
1583
 
1584
- #: admin/templates/fees-addoredit.tpl.php:131
1585
  msgctxt "fees admin"
1586
  msgid "Add Fee"
1587
  msgstr "Agregar Comisión"
@@ -1733,67 +1766,67 @@ msgctxt "form-fields admin"
1733
  msgid "No validation"
1734
  msgstr "Ninguna validación"
1735
 
1736
- #: admin/templates/form-fields-addoredit.tpl.php:112
1737
  msgctxt "form-fields admin"
1738
  msgid "Is field required?"
1739
  msgstr "Es este campo requerido?"
1740
 
1741
- #: admin/templates/form-fields-addoredit.tpl.php:118
1742
  msgctxt "form-fields admin"
1743
  msgid "This field is required."
1744
  msgstr "Este campo es requerido."
1745
 
1746
- #: admin/templates/form-fields-addoredit.tpl.php:126
1747
  msgctxt "form-fields admin"
1748
  msgid "Field display options"
1749
  msgstr "Opciones de presentación del Campo"
1750
 
1751
- #: admin/templates/form-fields-addoredit.tpl.php:130
1752
  msgctxt "form-fields admin"
1753
  msgid "Show this value in excerpt view?"
1754
  msgstr "Mostrar este valor en la vista de resumen?"
1755
 
1756
- #: admin/templates/form-fields-addoredit.tpl.php:136
1757
  msgctxt "form-fields admin"
1758
  msgid "Display this value in post excerpt view."
1759
  msgstr "Mostrar este valor en la vista de resumen de un listado."
1760
 
1761
- #: admin/templates/form-fields-addoredit.tpl.php:142
1762
  msgctxt "form-fields admin"
1763
  msgid "Show this value in listing view?"
1764
  msgstr "Mostrar este valor en la vista individual?"
1765
 
1766
- #: admin/templates/form-fields-addoredit.tpl.php:148
1767
  msgctxt "form-fields admin"
1768
  msgid "Display this value in the listing view."
1769
  msgstr "Mostrar este valor en la vista individual de un listado."
1770
 
1771
- #: admin/templates/form-fields-addoredit.tpl.php:154
1772
  msgctxt "form-fields admin"
1773
  msgid "Include this field in the search form?"
1774
  msgstr "Incluir este campo en el formulario de búsqueda?"
1775
 
1776
- #: admin/templates/form-fields-addoredit.tpl.php:160
1777
  msgctxt "form-fields admin"
1778
  msgid "Include this field in the search form."
1779
  msgstr "Incluir este campo en el formulario de búsqueda."
1780
 
1781
- #: admin/templates/form-fields-addoredit.tpl.php:166
1782
  msgctxt "form-fields admin"
1783
  msgid "Hide this field's label?"
1784
  msgstr "Ocultar el nombre de este campo?"
1785
 
1786
- #: admin/templates/form-fields-addoredit.tpl.php:172
1787
  msgctxt "form-fields admin"
1788
  msgid "Hide this field's label when displaying it."
1789
  msgstr "Ocultar el nombre de este campo cuando se esté mostrando."
1790
 
1791
- #: admin/templates/form-fields-addoredit.tpl.php:179
1792
  msgctxt "form-fields admin"
1793
  msgid "Update Field"
1794
  msgstr "Actualizar Campo"
1795
 
1796
- #: admin/templates/form-fields-addoredit.tpl.php:181
1797
  msgctxt "form-fields admin"
1798
  msgid "Add Field"
1799
  msgstr "Agregar Campo"
@@ -2343,21 +2376,25 @@ msgid "Enhanced Categories Module"
2343
  msgstr "Enhanced Categories Module"
2344
 
2345
  #: admin/templates/themes-delete-confirm.tpl.php:1
 
2346
  msgctxt "themes admin"
2347
- msgid "Delete theme"
2348
  msgstr ""
2349
 
2350
  #: admin/templates/themes-delete-confirm.tpl.php:3
 
2351
  msgctxt "themes admin"
2352
- msgid "Are you sure you want to delete the theme \"%s\"?"
2353
- msgstr ""
2354
 
2355
  #: admin/templates/themes-delete-confirm.tpl.php:12
 
2356
  msgctxt "themes admin"
2357
- msgid "Delete Theme"
2358
- msgstr ""
2359
 
2360
- #: admin/templates/themes-install.tpl.php:2 admin/templates/themes.tpl.php:3
 
2361
  msgctxt "themes"
2362
  msgid "Upload Directory Theme"
2363
  msgstr ""
@@ -2377,22 +2414,22 @@ msgctxt "themes"
2377
  msgid "Begin Upload"
2378
  msgstr ""
2379
 
2380
- #: admin/templates/themes.tpl.php:13
2381
  msgctxt "themes"
2382
  msgid "Active:"
2383
  msgstr ""
2384
 
2385
- #: admin/templates/themes.tpl.php:22
2386
  msgctxt "themes"
2387
  msgid "Activate"
2388
  msgstr ""
2389
 
2390
- #: admin/templates/themes.tpl.php:32
2391
  msgctxt "themes"
2392
  msgid "Version:"
2393
  msgstr ""
2394
 
2395
- #: admin/templates/themes.tpl.php:35
2396
  msgctxt "themes"
2397
  msgid "Author:"
2398
  msgstr ""
@@ -2505,100 +2542,100 @@ msgctxt "tracking"
2505
  msgid "Allow Tracking"
2506
  msgstr "Permitir Seguimiento"
2507
 
2508
- #: business-directory-plugin.php:676
2509
  msgctxt "admin plugins"
2510
  msgid "Settings"
2511
  msgstr "Configuración"
2512
 
2513
- #: business-directory-plugin.php:686
2514
  msgctxt "post type general name"
2515
  msgid "Directory"
2516
  msgstr "Directorio"
2517
 
2518
- #: business-directory-plugin.php:687
2519
  msgctxt "post type singular name"
2520
  msgid "Directory"
2521
  msgstr "Directorio"
2522
 
2523
- #: business-directory-plugin.php:688
2524
  msgctxt "listing"
2525
  msgid "Add New Listing"
2526
  msgstr "Agregar Nuevo Listado"
2527
 
2528
- #: business-directory-plugin.php:689
2529
  msgctxt "post type"
2530
  msgid "Add New Listing"
2531
  msgstr "Agregar Nuevo Listado"
2532
 
2533
- #: business-directory-plugin.php:690 core/compatibility/deprecated.php:255
2534
  msgid "Edit Listing"
2535
  msgstr "Editar Listado"
2536
 
2537
- #: business-directory-plugin.php:691
2538
  msgid "New Listing"
2539
  msgstr "Nuevo Listado"
2540
 
2541
- #: business-directory-plugin.php:692
2542
  msgid "View Listing"
2543
  msgstr "Ver Listado"
2544
 
2545
- #: business-directory-plugin.php:693
2546
  msgid "Search Listings"
2547
  msgstr "Buscar Listados"
2548
 
2549
- #: business-directory-plugin.php:694
2550
  msgid "No listings found"
2551
  msgstr "No se encontraron listados"
2552
 
2553
- #: business-directory-plugin.php:695
2554
  msgid "No listings found in trash"
2555
  msgstr "No se encontraron listados en la papelera"
2556
 
2557
- #: business-directory-plugin.php:717
2558
  msgid "Directory Categories"
2559
  msgstr "Categorías de Directorio"
2560
 
2561
- #: business-directory-plugin.php:830 business-directory-plugin.php:837
2562
  msgctxt "rss feed"
2563
  msgid "%s Feed"
2564
  msgstr "Feed %s"
2565
 
2566
- #: business-directory-plugin.php:1218
2567
  msgctxt "title"
2568
  msgid "Submit A Listing"
2569
  msgstr "Enviar Un Listado"
2570
 
2571
- #: business-directory-plugin.php:1228
2572
  msgctxt "title"
2573
  msgid "Find a Listing"
2574
  msgstr "Encontrar un listado"
2575
 
2576
- #: business-directory-plugin.php:1238
2577
  msgctxt "title"
2578
  msgid "View All Listings"
2579
  msgstr "Ver Listados"
2580
 
2581
- #: business-directory-plugin.php:1258
2582
  msgctxt "title"
2583
  msgid "Listings tagged: %s"
2584
  msgstr "Listados etiquetados: %s"
2585
 
2586
- #: core/class-csv-import.php:369
2587
  msgctxt "admin csv-import"
2588
  msgid "Could not create listing category \"%s\""
2589
  msgstr "No se pudo crear la categoría \"%s\""
2590
 
2591
- #: core/class-csv-import.php:513
2592
  msgctxt "admin csv-import"
2593
  msgid "Username \"%s\" does not exist"
2594
  msgstr "El usuario \"%s\" no existe"
2595
 
2596
- #: core/class-csv-import.php:545
2597
  msgctxt "admin csv-import"
2598
  msgid "Missing required field: %s"
2599
  msgstr "Falta campo requerido: %s"
2600
 
2601
- #: core/class-csv-import.php:565
2602
  msgctxt "admin csv-import"
2603
  msgid "Listing category \"%s\" does not exist"
2604
  msgstr "La categoría \"%s\" no existe"
@@ -2697,7 +2734,7 @@ msgctxt "listings-api"
2697
  msgid "Featured Listing"
2698
  msgstr "Listado Destacado"
2699
 
2700
- #: core/class-listing.php:287 core/class-listing.php:313
2701
  msgctxt "listing"
2702
  msgid "(Fee Unavailable)"
2703
  msgstr "(Comisión no disponible)"
@@ -2921,14 +2958,27 @@ msgctxt "admin settings"
2921
  msgid "Directory Search"
2922
  msgstr "Búsqueda"
2923
 
2924
- #: core/class-settings.php:95
2925
  msgctxt "admin settings"
2926
- msgid "Display search form when displaying search results?"
2927
- msgstr ""
2928
- "Mostrar el formulario de búsqueda cuando se muestran los resultados de la "
2929
- "búsqueda?"
2930
 
2931
- #: core/class-settings.php:102
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
2932
  msgctxt "admin settings"
2933
  msgid ""
2934
  "You have selected a textarea field to be included in quick searches. "
@@ -2939,7 +2989,7 @@ msgstr ""
2939
  "rápidas. Búsquedas que involucran este tipo de campos son costosas y pueden "
2940
  "resultar en timeouts o lentitud en general."
2941
 
2942
- #: core/class-settings.php:104
2943
  msgctxt "admin settings"
2944
  msgid ""
2945
  "Use Ctrl-Click to include multiple fields in the search. Choosing too many "
@@ -2949,17 +2999,17 @@ msgstr ""
2949
  "Utilice Ctrl-Click para incluír múltiples campos en la búsqueda. Elegir "
2950
  "muchos campos puede resultar en desempeño de búsquedas disminuído."
2951
 
2952
- #: core/class-settings.php:107
2953
  msgctxt "admin settings"
2954
  msgid "Quick search fields"
2955
  msgstr "Campos de Búsqueda Rápida"
2956
 
2957
- #: core/class-settings.php:115
2958
  msgctxt "admin settings"
2959
  msgid "Enable high performance searches?"
2960
  msgstr "Habilitar búsquedas de alto desempeño?"
2961
 
2962
- #: core/class-settings.php:118
2963
  msgctxt "admin settings"
2964
  msgid ""
2965
  "Enabling this makes BD sacrifice result quality to improve speed. This is "
@@ -2970,12 +3020,12 @@ msgstr ""
2970
  "mejorar la velocidad. Es útil cuando se está en planes de hospedaje "
2971
  "compartidos donde el desempeño de la base de datos es un problema."
2972
 
2973
- #: core/class-settings.php:123
2974
  msgctxt "admin settings"
2975
  msgid "Miscellaneous Settings"
2976
  msgstr "Configuraciones Varias"
2977
 
2978
- #: core/class-settings.php:127
2979
  msgctxt "admin settings"
2980
  msgid ""
2981
  "Check this if you are having trouble with BD, particularly when importing or "
@@ -2984,7 +3034,7 @@ msgstr ""
2984
  "Seleccione esta opción si está teniendo problemas con BD, particularmente al "
2985
  "importar o exportar archivos CSV."
2986
 
2987
- #: core/class-settings.php:130
2988
  msgctxt "admin settings"
2989
  msgid ""
2990
  "If this compatibility mode doesn't solve your issue, you may be experiencing "
@@ -2995,27 +3045,28 @@ msgstr ""
2995
  "sufriendo de un conflicto más serio. <a>Aquí hay un artículo</a> sobre cómo "
2996
  "revisar este tipo de conflictos con Business Directory."
2997
 
2998
- #: core/class-settings.php:133
2999
  msgctxt "admin settings"
3000
  msgid "Enable AJAX compatibility mode?"
3001
  msgstr "Habilitar modo de compatibilidad AJAX?"
3002
 
3003
- #: core/class-settings.php:141 core/class-settings.php:615
3004
  msgctxt "admin settings"
3005
  msgid "Listings"
3006
  msgstr "Listados"
3007
 
3008
- #: core/class-settings.php:142 core/class-settings.php:289
 
3009
  msgctxt "admin settings"
3010
  msgid "General Settings"
3011
  msgstr "Configuración General"
3012
 
3013
- #: core/class-settings.php:144
3014
  msgctxt "admin settings"
3015
  msgid "Listings per page"
3016
  msgstr "Listados por página"
3017
 
3018
- #: core/class-settings.php:145
3019
  msgctxt "admin settings"
3020
  msgid ""
3021
  "Number of listings to show per page. Use a value of \"0\" to show all "
@@ -3024,12 +3075,12 @@ msgstr ""
3024
  "Número de listados a mostrar por página. Utilice un valor de \"0\" para "
3025
  "mostrar todos los listados."
3026
 
3027
- #: core/class-settings.php:147
3028
  msgctxt "admin settings"
3029
  msgid "Listing duration for no-fee sites (in days)"
3030
  msgstr "Duración de Listado para sitios gratuitos (en días)"
3031
 
3032
- #: core/class-settings.php:148
3033
  msgctxt "admin settings"
3034
  msgid ""
3035
  "Use a value of \"0\" to keep a listing alive indefinitely or enter a number "
@@ -3038,12 +3089,12 @@ msgstr ""
3038
  "Utilice un valor de \"0\" para mantener los listados publicados "
3039
  "indefinidamente o ingrese un número menor a 10 años (3650 días)."
3040
 
3041
- #: core/class-settings.php:154
3042
  msgctxt "admin settings"
3043
  msgid "Include listing contact form on listing pages?"
3044
  msgstr "Incluir formulario de contacto en las páginas de los listados?"
3045
 
3046
- #: core/class-settings.php:157
3047
  msgctxt "admin settings"
3048
  msgid ""
3049
  "Allows visitors to contact listing authors privately. Authors will receive "
@@ -3052,17 +3103,17 @@ msgstr ""
3052
  "Permite a los visitantes contactar a los dueños de los listados de manera "
3053
  "privada. Los dueños recibirán mensajes vía correo electrónico."
3054
 
3055
- #: core/class-settings.php:160
3056
  msgctxt "admin settings"
3057
  msgid "Require login for using the contact form?"
3058
  msgstr "Requerir login para utilizar el formulario de contacto?"
3059
 
3060
- #: core/class-settings.php:166
3061
  msgctxt "admin settings"
3062
  msgid "Maximum number of contact form submits per day"
3063
  msgstr "Número máximo de contactos por día"
3064
 
3065
- #: core/class-settings.php:169
3066
  msgctxt "admin settings"
3067
  msgid ""
3068
  "Use this to prevent spamming of listing owners. 0 means unlimited submits "
@@ -3071,12 +3122,12 @@ msgstr ""
3071
  "Utilice esta opción para prevenir el SPAM a los dueños de los listados. 0 "
3072
  "significa ilimitados contactos por día."
3073
 
3074
- #: core/class-settings.php:175
3075
  msgctxt "admin settings"
3076
  msgid "Include comment form on listing pages?"
3077
  msgstr "Incluir formulario de comentarios en las páginas de los listados?"
3078
 
3079
- #: core/class-settings.php:178
3080
  msgctxt "admin settings"
3081
  msgid ""
3082
  "Allow visitors to discuss listings using the standard WordPress comment "
@@ -3086,37 +3137,37 @@ msgstr ""
3086
  "comentarios estándar de WordPress. Todos los comentarios (no SPAM) son "
3087
  "públicos."
3088
 
3089
- #: core/class-settings.php:179
3090
  msgctxt "admin settings"
3091
  msgid "Show listings under categories on main page?"
3092
  msgstr "Mostrar listados bajo las categorías en la página principal?"
3093
 
3094
- #: core/class-settings.php:180
3095
  msgctxt "admin settings"
3096
  msgid "Status of listings upon uninstalling plugin"
3097
  msgstr "Estado de los listados luego de desinstalado el plugin"
3098
 
3099
- #: core/class-settings.php:182
3100
  msgctxt "admin settings"
3101
  msgid "Status of deleted listings"
3102
  msgstr "Estado de los listados eliminados"
3103
 
3104
- #: core/class-settings.php:185
3105
  msgctxt "admin settings"
3106
  msgid "Listing Renewal"
3107
  msgstr "Renovación de Listados"
3108
 
3109
- #: core/class-settings.php:186
3110
  msgctxt "admin settings"
3111
  msgid "Turn on listing renewal option?"
3112
  msgstr "Habilitar la renovación de listados?"
3113
 
3114
- #: core/class-settings.php:189
3115
  msgctxt "admin settings"
3116
  msgid "Allow recurring renewal payments?"
3117
  msgstr "Permitir pagos recurrentes?"
3118
 
3119
- #: core/class-settings.php:192
3120
  msgctxt "admin settings"
3121
  msgid ""
3122
  "Allow users to opt in for automatic renewal of their listings. The fee is "
@@ -3126,12 +3177,12 @@ msgstr ""
3126
  "comisión será cobrada en el momento en el que el listado llegue a su "
3127
  "vencimiento, sin necesidad de intervención."
3128
 
3129
- #: core/class-settings.php:196
3130
  msgctxt "admin settings"
3131
  msgid "Use recurring payments as the default payment method?"
3132
  msgstr "Utilizar cobro recurrente como método de pago por defecto?"
3133
 
3134
- #: core/class-settings.php:199
3135
  msgctxt "admin settings"
3136
  msgid ""
3137
  "Enable automatic renewal without having users opt in during the submit "
@@ -3140,12 +3191,12 @@ msgstr ""
3140
  "Habilitar la renovación automática sin que los usuarios deban optar por ella "
3141
  "durante el proceso de envío del listado."
3142
 
3143
- #: core/class-settings.php:204
3144
  msgctxt "admin settings"
3145
  msgid "Listing renewal e-mail threshold (in days)"
3146
  msgstr "Rango de envío del correo electrónico de renovación (en días)"
3147
 
3148
- #: core/class-settings.php:207
3149
  msgctxt "admin settings"
3150
  msgid ""
3151
  "Configure how many days before listing expiration is the renewal e-mail sent."
@@ -3153,7 +3204,7 @@ msgstr ""
3153
  "Configure con cuántos días de anticipación debe informarse al usuario que su "
3154
  "listado está a punto de expirar."
3155
 
3156
- #: core/class-settings.php:211
3157
  msgctxt "admin settings"
3158
  msgid ""
3159
  "Send expiration notices including a cancel links to auto-renewed listings?"
@@ -3161,18 +3212,18 @@ msgstr ""
3161
  "Enviar notificaciones de expiración incluyendo enlaces para cancelar a los "
3162
  "listados auto-renovados?"
3163
 
3164
- #: core/class-settings.php:218
3165
  msgctxt "admin settings"
3166
  msgid "Remind listing owners of expired listings (past due)?"
3167
  msgstr ""
3168
  "Recordar a los dueños de listados expirados (después de su expiración)?"
3169
 
3170
- #: core/class-settings.php:223
3171
  msgctxt "admin settings"
3172
  msgid "Listing renewal reminder e-mail threshold (in days)"
3173
  msgstr "Rango de envío del recordatorio de renovación (en días)"
3174
 
3175
- #: core/class-settings.php:226
3176
  msgctxt "admin settings"
3177
  msgid ""
3178
  "Configure how many days after the expiration of a listing an e-mail reminder "
@@ -3181,164 +3232,164 @@ msgstr ""
3181
  "Configure con cuántos días después de la fecha de expiración de un listado "
3182
  "debe enviarse un recordatorio al dueño."
3183
 
3184
- #: core/class-settings.php:229
3185
  msgctxt "admin settings"
3186
  msgid "Post/Category Settings"
3187
  msgstr "Configuraciones de publicaciones/categorías"
3188
 
3189
- #: core/class-settings.php:230
3190
  msgctxt "admin settings"
3191
  msgid "Default new post status"
3192
  msgstr "Estado por defecto de nuevas publicaciones"
3193
 
3194
- #: core/class-settings.php:233
3195
  msgctxt "admin settings"
3196
  msgid "Edit post status"
3197
  msgstr "Estado tras edición de una publicación"
3198
 
3199
- #: core/class-settings.php:235
3200
  msgctxt "admin settings"
3201
  msgid "Order categories list by"
3202
  msgstr "Ordenar la lista de categorías por"
3203
 
3204
- #: core/class-settings.php:237
3205
  msgctxt "admin settings"
3206
  msgid "Name"
3207
  msgstr "Nombre"
3208
 
3209
- #: core/class-settings.php:238
3210
  msgctxt "admin settings"
3211
  msgid "Slug"
3212
  msgstr "Slug"
3213
 
3214
- #: core/class-settings.php:239
3215
  msgctxt "admin settings"
3216
  msgid "Listing Count"
3217
  msgstr "Conteo de Listados"
3218
 
3219
- #: core/class-settings.php:241
3220
  msgctxt "admin settings"
3221
  msgid "Sort order for categories"
3222
  msgstr "Orden de las categorías"
3223
 
3224
- #: core/class-settings.php:242 core/class-settings.php:260
3225
  msgctxt "admin settings"
3226
  msgid "Ascending"
3227
  msgstr "Ascendente"
3228
 
3229
- #: core/class-settings.php:242 core/class-settings.php:260
3230
  msgctxt "admin settings"
3231
  msgid "Descending"
3232
  msgstr "Descendente"
3233
 
3234
- #: core/class-settings.php:243
3235
  msgctxt "admin settings"
3236
  msgid "Show category post count?"
3237
  msgstr "Mostrar conteo de listados para cada categoría?"
3238
 
3239
- #: core/class-settings.php:244
3240
  msgctxt "admin settings"
3241
  msgid "Hide empty categories?"
3242
  msgstr "Ocultar categorías vacías?"
3243
 
3244
- #: core/class-settings.php:245
3245
  msgctxt "admin settings"
3246
  msgid "Show only parent categories in category list?"
3247
  msgstr ""
3248
  "Mostrar únicamente las categorías de primer nivel en la lista de categorías?"
3249
 
3250
- #: core/class-settings.php:247
3251
  msgctxt "admin settings"
3252
  msgid "Listings Sorting"
3253
  msgstr "Ordenamiento de Listados"
3254
 
3255
- #: core/class-settings.php:248
3256
  msgctxt "admin settings"
3257
  msgid "Order directory listings by"
3258
  msgstr "Ordenar los listados del Directorio por"
3259
 
3260
- #: core/class-settings.php:250
3261
  msgctxt "admin settings"
3262
  msgid "Title"
3263
  msgstr "Título"
3264
 
3265
- #: core/class-settings.php:251
3266
  msgctxt "admin settings"
3267
  msgid "Author"
3268
  msgstr "Autor"
3269
 
3270
- #: core/class-settings.php:252
3271
  msgctxt "admin settings"
3272
  msgid "Date posted"
3273
  msgstr "Fecha de publicación"
3274
 
3275
- #: core/class-settings.php:253
3276
  msgctxt "admin settings"
3277
  msgid "Date last modified"
3278
  msgstr "Fecha de última modificación"
3279
 
3280
- #: core/class-settings.php:254
3281
  msgctxt "admin settings"
3282
  msgid "Random"
3283
  msgstr "Aleatorio"
3284
 
3285
- #: core/class-settings.php:255
3286
  msgctxt "admin settings"
3287
  msgid "Paid first then free. Inside each group by date."
3288
  msgstr "Pagos primero, luego gratuitos. Dentro de cada grupo, por fecha."
3289
 
3290
- #: core/class-settings.php:256
3291
  msgctxt "admin settings"
3292
  msgid "Paid first then free. Inside each group by title."
3293
  msgstr "Pagos primero, luego gratuitos. Dentro de cada grupo por título."
3294
 
3295
- #: core/class-settings.php:258
3296
  msgctxt "admin settings"
3297
  msgid "Sort directory listings by"
3298
  msgstr "Orden de los listados"
3299
 
3300
- #: core/class-settings.php:259
3301
  msgctxt "admin settings"
3302
  msgid "Ascending for ascending order A-Z, Descending for descending order Z-A"
3303
  msgstr ""
3304
  "Ascendente para orden alfabético A-Z; Descendente para orden alfabético Z-A"
3305
 
3306
- #: core/class-settings.php:264
3307
  msgctxt "admin settings"
3308
  msgid "Enable sort bar?"
3309
  msgstr "Habilitar barra de ordenamiento?"
3310
 
3311
- #: core/class-settings.php:269
3312
  msgctxt "admin settings"
3313
  msgid "Sortbar Fields"
3314
  msgstr "Campos de \"barra de ordenamiento\""
3315
 
3316
- #: core/class-settings.php:278
3317
  msgctxt "admin settings"
3318
  msgid "Featured (Sticky) listing settings"
3319
  msgstr "Configuración de Listados Destacados"
3320
 
3321
- #: core/class-settings.php:279
3322
  msgctxt "admin settings"
3323
  msgid "Offer sticky listings?"
3324
  msgstr "Ofrecer listados destacados?"
3325
 
3326
- #: core/class-settings.php:280
3327
  msgctxt "admin settings"
3328
  msgid "Offer upgrades during submit process?"
3329
  msgstr "Ofrecer mejoras a destacado durante el proceso de envío?"
3330
 
3331
- #: core/class-settings.php:281
3332
  msgctxt "admin settings"
3333
  msgid "Sticky listing price"
3334
  msgstr "Precio de Listado Destacado"
3335
 
3336
- #: core/class-settings.php:282
3337
  msgctxt "admin settings"
3338
  msgid "Sticky listing page description text"
3339
  msgstr "Texto descriptivo para Listados Destacados"
3340
 
3341
- #: core/class-settings.php:283
3342
  msgctxt "admin settings"
3343
  msgid ""
3344
  "You can upgrade your listing to featured status. Featured listings will "
@@ -3347,17 +3398,17 @@ msgstr ""
3347
  "Puede actualizar su listado a Destacado. Los listados destacados aparecen "
3348
  "siempre encima de los listados regulares."
3349
 
3350
- #: core/class-settings.php:288
3351
  msgctxt "admin settings"
3352
  msgid "E-Mail"
3353
  msgstr "Correo Electrónico"
3354
 
3355
- #: core/class-settings.php:292
3356
  msgctxt "admin settings"
3357
  msgid "Display email address fields publicly?"
3358
  msgstr "Mostrar direcciones de correo electrónico públicamente?"
3359
 
3360
- #: core/class-settings.php:295
3361
  msgctxt "admin settings"
3362
  msgid ""
3363
  "Shows the email address of the listing owner to all web users. NOT "
@@ -3368,12 +3419,12 @@ msgstr ""
3368
  "a todos los usuarios. NO RECOMENDADO pues puede resultar en un aumento de "
3369
  "spam."
3370
 
3371
- #: core/class-settings.php:298
3372
  msgctxt "admin settings"
3373
  msgid "How to determine the listing's email address?"
3374
  msgstr "Cómo determinar el correo electrónico de un listado?"
3375
 
3376
- #: core/class-settings.php:301
3377
  msgctxt "admin settings"
3378
  msgid ""
3379
  "This affects emails sent to listing owners via contact forms or when their "
@@ -3382,115 +3433,115 @@ msgstr ""
3382
  "Esta configuración afecta cómo los dueños de los listados son contactados "
3383
  "cuando sus listados expiran o a través de los formularios de contacto."
3384
 
3385
- #: core/class-settings.php:308
3386
  msgctxt "admin settings"
3387
  msgid "E-Mail Notifications"
3388
  msgstr "Notificaciones de correo-e"
3389
 
3390
- #: core/class-settings.php:311
3391
  msgctxt "admin settings"
3392
  msgid "Notify admin via e-mail when..."
3393
  msgstr "Notificar al administrador cuando..."
3394
 
3395
- #: core/class-settings.php:315
3396
  msgctxt "admin settings"
3397
  msgid "A new listing is submitted."
3398
  msgstr "Un nuevo listado ha sido enviado."
3399
 
3400
- #: core/class-settings.php:316
3401
  msgctxt "admin settings"
3402
  msgid "A listing is edited."
3403
  msgstr "Un listado es editado."
3404
 
3405
- #: core/class-settings.php:317
3406
  msgctxt "admin settings"
3407
  msgid "A listing expires."
3408
  msgstr "Un listado expira."
3409
 
3410
- #: core/class-settings.php:318
3411
  msgctxt "admin settings"
3412
  msgid "A contact message is sent to a listing's owner."
3413
  msgstr "Un mensaje de contacto es enviado al dueño del listado."
3414
 
3415
- #: core/class-settings.php:324
3416
  msgctxt "admin settings"
3417
  msgid "CC this e-mail address too"
3418
  msgstr "Copiar a esta dirección de correo también"
3419
 
3420
- #: core/class-settings.php:330
3421
  msgctxt "admin settings"
3422
  msgid "Notify users via e-mail when..."
3423
  msgstr "Notificar usuarios vía correo-e cuando..."
3424
 
3425
- #: core/class-settings.php:333
3426
  msgctxt "admin settings"
3427
  msgid "You can modify the text template used for most of these e-mails below."
3428
  msgstr ""
3429
  "Puede modificar la plantilla de texto utilizada para la mayoría de estos "
3430
  "correos electrónicos abajo."
3431
 
3432
- #: core/class-settings.php:334
3433
  msgctxt "admin settings"
3434
  msgid "Their listing is submitted."
3435
  msgstr "Su listado ha sido recibido."
3436
 
3437
- #: core/class-settings.php:335
3438
  msgctxt "admin settings"
3439
  msgid "Their listing is approved/published."
3440
  msgstr "Su listado ha sido aprobado/publicado."
3441
 
3442
- #: core/class-settings.php:344
3443
  msgctxt "contact email"
3444
  msgid "You have received a reply from your listing at %s."
3445
  msgstr "Ha recibido una comunicación para su listado en %s."
3446
 
3447
- #: core/class-settings.php:345
3448
  msgctxt "contact email"
3449
  msgid "Name: %s"
3450
  msgstr "Nombre: %s"
3451
 
3452
- #: core/class-settings.php:346
3453
  msgctxt "contact email"
3454
  msgid "E-Mail: %s"
3455
  msgstr "Correo Electrónico: %s"
3456
 
3457
- #: core/class-settings.php:347
3458
  msgctxt "contact email"
3459
  msgid "Message:"
3460
  msgstr "Mensaje:"
3461
 
3462
- #: core/class-settings.php:349
3463
  msgctxt "contact email"
3464
  msgid "Time: %s"
3465
  msgstr "Hora: %s"
3466
 
3467
- #: core/class-settings.php:351
3468
  msgctxt "admin settings"
3469
  msgid "E-Mail Templates"
3470
  msgstr "Plantillas de Correo Electrónico"
3471
 
3472
- #: core/class-settings.php:354
3473
  msgctxt "admin settings"
3474
  msgid "Email confirmation message"
3475
  msgstr "Mensaje de Confirmación"
3476
 
3477
- #: core/class-settings.php:358
3478
  msgctxt "admin settings"
3479
  msgid "Sent after a listing has been submitted."
3480
  msgstr "Enviado luego de que el listado ha sido recibido."
3481
 
3482
- #: core/class-settings.php:359 core/class-settings.php:367
3483
- #: core/class-settings.php:408
3484
  msgctxt "admin settings"
3485
  msgid "Listing's title"
3486
  msgstr "Título del Listado"
3487
 
3488
- #: core/class-settings.php:362
3489
  msgctxt "admin settings"
3490
  msgid "Listing published message"
3491
  msgstr "Mensaje de listado publicado"
3492
 
3493
- #: core/class-settings.php:365
3494
  msgctxt "admin settings"
3495
  msgid ""
3496
  "Your listing \"[listing]\" is now available at [listing-url] and can be "
@@ -3499,23 +3550,23 @@ msgstr ""
3499
  "Su listado \"[listing]\" está ahora disponible en [listing-url] y puede ser "
3500
  "visto por el público."
3501
 
3502
- #: core/class-settings.php:366
3503
  msgctxt "admin settings"
3504
  msgid "Sent when the listing has been published or approved by an admin."
3505
  msgstr ""
3506
  "Enviado cuando el listado ha sido publicado o aprobado por un administrador."
3507
 
3508
- #: core/class-settings.php:368
3509
  msgctxt "admin settings"
3510
  msgid "Listing's URL"
3511
  msgstr "URL del listado"
3512
 
3513
- #: core/class-settings.php:372
3514
  msgctxt "admin settings"
3515
  msgid "Listing Contact Message"
3516
  msgstr "Mensaje de contacto"
3517
 
3518
- #: core/class-settings.php:376
3519
  msgctxt "admin settings"
3520
  msgid ""
3521
  "Sent to listing owners when someone uses the contact form on their listing "
@@ -3524,34 +3575,34 @@ msgstr ""
3524
  "Enviado a los dueños de listados cuando alguien utiliza el formulario de "
3525
  "contacto en sus páginas."
3526
 
3527
- #: core/class-settings.php:386
3528
  msgctxt "admin settings"
3529
  msgid "Payment related"
3530
  msgstr "Relativo al pago"
3531
 
3532
- #: core/class-settings.php:403
3533
  msgctxt "admin settings"
3534
  msgid "Payment abandoned reminder message"
3535
  msgstr "Recordatorio de pagos abandonados"
3536
 
3537
- #: core/class-settings.php:407
3538
  msgctxt "admin settings"
3539
  msgid "Sent some time after a pending payment is abandoned by users."
3540
  msgstr ""
3541
  "Enviado algún tiempo después de que un pago pendiente es abandonado por los "
3542
  "usuarios."
3543
 
3544
- #: core/class-settings.php:409
3545
  msgctxt "admin settings"
3546
  msgid "Checkout URL link"
3547
  msgstr "Link a la URL de pago"
3548
 
3549
- #: core/class-settings.php:415
3550
  msgctxt "admin settings"
3551
  msgid "Renewal Reminders"
3552
  msgstr "Recordatorios de Renovación"
3553
 
3554
- #: core/class-settings.php:418
3555
  msgctxt "admin settings"
3556
  msgid ""
3557
  "This section refers only to the text of the renewal/expiration notices. You "
@@ -3561,12 +3612,12 @@ msgstr ""
3561
  "renovación/expiración. También puede <a>configurar cuándo estos correos son "
3562
  "enviados</a>."
3563
 
3564
- #: core/class-settings.php:422
3565
  msgctxt "admin settings"
3566
  msgid "Pending expiration e-mail message"
3567
  msgstr "Mensaje correo electrónico sobre expiración pendiente"
3568
 
3569
- #: core/class-settings.php:426
3570
  msgctxt "settings"
3571
  msgid ""
3572
  "Sent some time before the listing expires. Applies to non-recurring renewals "
@@ -3575,50 +3626,50 @@ msgstr ""
3575
  "Enviado un tiempo antes de que el listado expire. Aplica para renovaciones "
3576
  "no recurrentes únicamente."
3577
 
3578
- #: core/class-settings.php:427 core/class-settings.php:440
3579
- #: core/class-settings.php:453 core/class-settings.php:466
3580
- #: core/class-settings.php:479
3581
  msgctxt "settings"
3582
  msgid "Listing's name (with link)"
3583
  msgstr "Título del listado (con enlace)"
3584
 
3585
- #: core/class-settings.php:428 core/class-settings.php:441
3586
- #: core/class-settings.php:454 core/class-settings.php:467
3587
- #: core/class-settings.php:480
3588
  msgctxt "settings"
3589
  msgid "Author's name"
3590
  msgstr "Autor del listado"
3591
 
3592
- #: core/class-settings.php:429 core/class-settings.php:442
3593
- #: core/class-settings.php:481
3594
  msgctxt "settings"
3595
  msgid "Expiration date"
3596
  msgstr "Fecha de expiración"
3597
 
3598
- #: core/class-settings.php:430
3599
  msgctxt "settings"
3600
  msgid "Category that is going to expire"
3601
  msgstr "Categoría que va a expirar"
3602
 
3603
- #: core/class-settings.php:431 core/class-settings.php:444
3604
- #: core/class-settings.php:483
3605
  msgctxt "settings"
3606
  msgid "Link to renewal page"
3607
  msgstr "Enlace a la página de renovación"
3608
 
3609
- #: core/class-settings.php:432 core/class-settings.php:445
3610
- #: core/class-settings.php:457 core/class-settings.php:470
3611
- #: core/class-settings.php:484
3612
  msgctxt "settings"
3613
  msgid "Link to your site"
3614
  msgstr "Enlace a su sitio"
3615
 
3616
- #: core/class-settings.php:435
3617
  msgctxt "admin settings"
3618
  msgid "Listing Renewal e-mail message"
3619
  msgstr "Mensaje de correo electrónico sobre Renovación del Listado"
3620
 
3621
- #: core/class-settings.php:439
3622
  msgctxt "settings"
3623
  msgid ""
3624
  "Sent at the time of listing expiration. Applies to non-recurring renewals "
@@ -3627,17 +3678,17 @@ msgstr ""
3627
  "Enviado al momento de expiración del listado. Aplica a renovaciones no "
3628
  "recurrentes únicamente."
3629
 
3630
- #: core/class-settings.php:443 core/class-settings.php:482
3631
  msgctxt "settings"
3632
  msgid "Category that expired"
3633
  msgstr "Categoría que expiró"
3634
 
3635
- #: core/class-settings.php:448
3636
  msgctxt "admin settings"
3637
  msgid "Listing auto-renewal reminder (recurring payments)"
3638
  msgstr "Recordatorio de auto-renovación del listado (pagos recurrentes)"
3639
 
3640
- #: core/class-settings.php:452
3641
  msgctxt "settings"
3642
  msgid ""
3643
  "Sent some time before the listing is auto-renewed. Applies to recurring "
@@ -3646,29 +3697,29 @@ msgstr ""
3646
  "Enviado algún tiempo antes de que el listado sea auto-renovado. Aplica a "
3647
  "renovaciones recurrentes únicamente."
3648
 
3649
- #: core/class-settings.php:455 core/class-settings.php:469
3650
  msgctxt "settings"
3651
  msgid "Renewal date"
3652
  msgstr "Fecha de renovación"
3653
 
3654
- #: core/class-settings.php:456
3655
  msgctxt "settings"
3656
  msgid "Category that is going to be renewed"
3657
  msgstr "Categoría que será renovada"
3658
 
3659
- #: core/class-settings.php:458
3660
  msgctxt "settings"
3661
  msgid "Link to manage subscriptions"
3662
  msgstr "Enlace a la página de administración de pagos recurrentes"
3663
 
3664
- #: core/class-settings.php:461
3665
  msgctxt "admin settings"
3666
  msgid "Listing Renewal e-mail message (recurring payments)"
3667
  msgstr ""
3668
  "Mensaje de correo electrónico sobre Renovación del Listado (para pago "
3669
  "automático)"
3670
 
3671
- #: core/class-settings.php:465
3672
  msgctxt "settings"
3673
  msgid ""
3674
  "Sent after the listing is auto-renewed. Applies to recurring renewals only."
@@ -3676,17 +3727,17 @@ msgstr ""
3676
  "Enviado luego de que el listado sea auto-renovado. Aplica a renovaciones "
3677
  "recurrentes únicamente."
3678
 
3679
- #: core/class-settings.php:468
3680
  msgctxt "settings"
3681
  msgid "Renewed category"
3682
  msgstr "Categoría renovada"
3683
 
3684
- #: core/class-settings.php:474
3685
  msgctxt "admin settings"
3686
  msgid "Renewal reminder e-mail message"
3687
  msgstr "Recordatorio por correo electrónico de renovación del listado"
3688
 
3689
- #: core/class-settings.php:478
3690
  msgctxt "settings"
3691
  msgid ""
3692
  "Sent some time after listing expiration and when no renewal has occurred. "
@@ -3695,32 +3746,32 @@ msgstr ""
3695
  "Enviado un tiempo después de que el listado expire y no haya sido renovado. "
3696
  "Aplica tanto a renovaciones recurrentes como no recurrentes."
3697
 
3698
- #: core/class-settings.php:488
3699
  msgctxt "admin settings"
3700
  msgid "Payment"
3701
  msgstr "Pago"
3702
 
3703
- #: core/class-settings.php:489
3704
  msgctxt "admin settings"
3705
  msgid "Payment Settings"
3706
  msgstr "Configuración de Pago"
3707
 
3708
- #: core/class-settings.php:492
3709
  msgctxt "admin settings"
3710
  msgid "Turn On payments?"
3711
  msgstr "Activar pagos?"
3712
 
3713
- #: core/class-settings.php:494
3714
  msgctxt "admin settings"
3715
  msgid "Put payment gateways in test mode?"
3716
  msgstr "Utilizar las pasarelas de pago en modo de prueba?"
3717
 
3718
- #: core/class-settings.php:499
3719
  msgctxt "admin settings"
3720
  msgid "Perform checkouts on the secure (HTTPS) version of your site?"
3721
  msgstr "Realizar pagos en la versión segura (HTTPS) de su sitio?"
3722
 
3723
- #: core/class-settings.php:502
3724
  msgctxt "admin settings"
3725
  msgid ""
3726
  "Recommended for added security. For this to work you need to enable HTTPS on "
@@ -3729,162 +3780,162 @@ msgstr ""
3729
  "Recomendado para seguridad extra. Para que funcione debe tener habilitado "
3730
  "HTTPS en su servidor y <a>obtener un certificado SSL</a>."
3731
 
3732
- #: core/class-settings.php:506
3733
  msgctxt "admin settings"
3734
  msgid "Currency Code"
3735
  msgstr "Código de Moneda"
3736
 
3737
- #: core/class-settings.php:508
3738
  msgctxt "admin settings"
3739
  msgid "Australian Dollar (AUD)"
3740
  msgstr "Dólar Australiano (AUD)"
3741
 
3742
- #: core/class-settings.php:509
3743
  msgctxt "admin settings"
3744
  msgid "Brazilian Real (BRL)"
3745
  msgstr "Real Brasilero (BRL)"
3746
 
3747
- #: core/class-settings.php:510
3748
  msgctxt "admin settings"
3749
  msgid "Canadian Dollar (CAD)"
3750
  msgstr "Dólar Canadiense (CAD)"
3751
 
3752
- #: core/class-settings.php:511
3753
  msgctxt "admin settings"
3754
  msgid "Czech Koruna (CZK)"
3755
  msgstr "Corona Checa (CZK)"
3756
 
3757
- #: core/class-settings.php:512
3758
  msgctxt "admin settings"
3759
  msgid "Danish Krone (DKK)"
3760
  msgstr "Corona Danesa (DKK)"
3761
 
3762
- #: core/class-settings.php:513
3763
  msgctxt "admin settings"
3764
  msgid "Euro (EUR)"
3765
  msgstr "Euro (EUR)"
3766
 
3767
- #: core/class-settings.php:514
3768
  msgctxt "admin settings"
3769
  msgid "Hong Kong Dollar (HKD)"
3770
  msgstr "Dólar de Hong Kong (HKD)"
3771
 
3772
- #: core/class-settings.php:515
3773
  msgctxt "admin settings"
3774
  msgid "Hungarian Forint (HUF)"
3775
  msgstr "Forinte Húngaro (HUF)"
3776
 
3777
- #: core/class-settings.php:516
3778
  msgctxt "admin settings"
3779
  msgid "Israeli New Shequel (ILS)"
3780
  msgstr "Nuevo Shékel Israelí (ILS)"
3781
 
3782
- #: core/class-settings.php:517
3783
  msgctxt "admin settings"
3784
  msgid "Japanese Yen (JPY)"
3785
  msgstr "Yen Japonés (JPY)"
3786
 
3787
- #: core/class-settings.php:518
3788
  msgctxt "admin settings"
3789
  msgid "Malasian Ringgit (MYR)"
3790
  msgstr "Ringgit de Malasia (MYR)"
3791
 
3792
- #: core/class-settings.php:519
3793
  msgctxt "admin settings"
3794
  msgid "Mexican Peso (MXN)"
3795
  msgstr "Peso Mexicano (MXN)"
3796
 
3797
- #: core/class-settings.php:520
3798
  msgctxt "admin settings"
3799
  msgid "Norwegian Krone (NOK)"
3800
  msgstr "Corona Noruega (NOK)"
3801
 
3802
- #: core/class-settings.php:521
3803
  msgctxt "admin settings"
3804
  msgid "New Zealand Dollar (NZD)"
3805
  msgstr "Dólar de Nueva Zelanda (NZD)"
3806
 
3807
- #: core/class-settings.php:522
3808
  msgctxt "admin settings"
3809
  msgid "Philippine Peso (PHP)"
3810
  msgstr "Peso Filipino (PHP)"
3811
 
3812
- #: core/class-settings.php:523
3813
  msgctxt "admin settings"
3814
  msgid "Polish Zloty (PLN)"
3815
  msgstr "Zloty Polaco (PLN)"
3816
 
3817
- #: core/class-settings.php:524
3818
  msgctxt "admin settings"
3819
  msgid "Pound Sterling (GBP)"
3820
  msgstr "Libra Esterlina (GBP)"
3821
 
3822
- #: core/class-settings.php:525
3823
  msgctxt "admin settings"
3824
  msgid "Singapore Dollar (SGD)"
3825
  msgstr "Dólar de Singapur (SGD)"
3826
 
3827
- #: core/class-settings.php:526
3828
  msgctxt "admin settings"
3829
  msgid "Swedish Krona (SEK)"
3830
  msgstr "Corona Sueca (SEK)"
3831
 
3832
- #: core/class-settings.php:527
3833
  msgctxt "admin settings"
3834
  msgid "Swiss Franc (CHF)"
3835
  msgstr "Franco Suizo (CHF)"
3836
 
3837
- #: core/class-settings.php:528
3838
  msgctxt "admin settings"
3839
  msgid "Taiwan Dollar (TWD)"
3840
  msgstr "Dólar de Taiwán (TWD)"
3841
 
3842
- #: core/class-settings.php:529
3843
  msgctxt "admin settings"
3844
  msgid "Thai Baht (THB)"
3845
  msgstr "Baht de Tailandia (THB)"
3846
 
3847
- #: core/class-settings.php:530
3848
  msgctxt "admin settings"
3849
  msgid "Turkish Lira (TRY)"
3850
  msgstr "Lira Turca (TRY)"
3851
 
3852
- #: core/class-settings.php:531
3853
  msgctxt "admin settings"
3854
  msgid "U.S. Dollar (USD)"
3855
  msgstr "Dólar Americano (USD)"
3856
 
3857
- #: core/class-settings.php:535
3858
  msgctxt "admin settings"
3859
  msgid "Currency Symbol"
3860
  msgstr "Símbolo de Moneda"
3861
 
3862
- #: core/class-settings.php:540
3863
  msgctxt "admin settings"
3864
  msgid "Currency symbol display"
3865
  msgstr "Presentación de símbolo de moneda"
3866
 
3867
- #: core/class-settings.php:544
3868
  msgctxt "admin settings"
3869
  msgid "Show currency symbol on the left"
3870
  msgstr "Mostrar el símbolo de moneda a la izquierda"
3871
 
3872
- #: core/class-settings.php:545
3873
  msgctxt "admin settings"
3874
  msgid "Show currency symbol on the right"
3875
  msgstr "Mostrar el símbolo de moneda a la derecha"
3876
 
3877
- #: core/class-settings.php:546
3878
  msgctxt "admin settings"
3879
  msgid "Do not show currency symbol"
3880
  msgstr "No mostrar el símbolo de moneda"
3881
 
3882
- #: core/class-settings.php:548
3883
  msgctxt "admin settings"
3884
  msgid "Thank you for payment message"
3885
  msgstr "Mensaje de agradecimiento por el pago"
3886
 
3887
- #: core/class-settings.php:549
3888
  msgctxt "admin settings"
3889
  msgid ""
3890
  "Thank you for your payment. Your payment is being verified and your listing "
@@ -3893,13 +3944,13 @@ msgstr ""
3893
  "Gracias por su pago. Su pago está siendo verificado y su listado revisado. "
3894
  "Este proceso puede tardar hasta 48 horas."
3895
 
3896
- #: core/class-settings.php:554
3897
  msgctxt "admin settings"
3898
  msgid "Ask users to come back for abandoned payments?"
3899
  msgstr ""
3900
  "Contactar a los usuarios para pedirles que regresen a pagar pagos pendientes?"
3901
 
3902
- #: core/class-settings.php:557
3903
  msgctxt "admin settings"
3904
  msgid ""
3905
  "An abandoned payment is when a user attempts to place a listing and gets to "
@@ -3912,12 +3963,12 @@ msgstr ""
3912
  "en listados que parece que fallaron cuando el usuario simplemente no "
3913
  "completó la transacción. BD puede recordarles para que efectúen el pago."
3914
 
3915
- #: core/class-settings.php:563
3916
  msgctxt "admin settings"
3917
  msgid "Listing abandonment threshold (hours)"
3918
  msgstr "Tiempo tras el cual el listado es considerado abandonado (en horas)"
3919
 
3920
- #: core/class-settings.php:568
3921
  msgctxt "admin settings"
3922
  msgid ""
3923
  "Listings with pending payments are marked as abandoned after this time. You "
@@ -3927,27 +3978,73 @@ msgstr ""
3927
  "tiempo. También puede <a>personalizar el correo-e</a> que los usuarios "
3928
  "reciben."
3929
 
3930
- #: core/class-settings.php:574
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
3931
  msgctxt "admin settings"
3932
  msgid "Registration"
3933
  msgstr "Registro"
3934
 
3935
- #: core/class-settings.php:575
 
 
 
 
 
 
 
 
 
 
 
3936
  msgctxt "admin settings"
3937
  msgid "Registration Settings"
3938
  msgstr "Configuración de Registro"
3939
 
3940
- #: core/class-settings.php:576
3941
  msgctxt "admin settings"
3942
  msgid "Require login to post listings?"
3943
  msgstr "Requerir login para publicar listados?"
3944
 
3945
- #: core/class-settings.php:581
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
3946
  msgctxt "admin settings"
3947
  msgid "Registration URL"
3948
  msgstr "URL de Registro"
3949
 
3950
- #: core/class-settings.php:584
3951
  msgctxt "admin settings"
3952
  msgid ""
3953
  "URL of your membership plugin's registration page. Only enter this if using "
@@ -3957,12 +4054,12 @@ msgstr ""
3957
  "información únicamente si utiliza un plugin de membresía o una página de "
3958
  "registro especial."
3959
 
3960
- #: core/class-settings.php:588
3961
  msgctxt "admin settings"
3962
  msgid "Image"
3963
  msgstr "Imágenes"
3964
 
3965
- #: core/class-settings.php:589
3966
  msgctxt "admin settings"
3967
  msgid ""
3968
  "Any changes to these settings will affect new listings only. Existing "
@@ -3975,52 +4072,52 @@ msgstr ""
3975
  "existentes, deberá subir de nuevo las imágenes necesarias luego de hacer los "
3976
  "cambios aquí."
3977
 
3978
- #: core/class-settings.php:590
3979
  msgctxt "admin settings"
3980
  msgid "Image Settings"
3981
  msgstr "Configuración de Imágenes"
3982
 
3983
- #: core/class-settings.php:591
3984
  msgctxt "admin settings"
3985
  msgid "Allow images?"
3986
  msgstr "Permitir imágenes?"
3987
 
3988
- #: core/class-settings.php:593
3989
  msgctxt "admin settings"
3990
  msgid "Min Image File Size (KB)"
3991
  msgstr "Tamaño mínimo de imagen (KB)"
3992
 
3993
- #: core/class-settings.php:594
3994
  msgctxt "admin settings"
3995
  msgid "Max Image File Size (KB)"
3996
  msgstr "Tamaño máximo de imagen (KB)"
3997
 
3998
- #: core/class-settings.php:596
3999
  msgctxt "admin settings"
4000
  msgid "Min image width (px)"
4001
  msgstr "Ancho mínimo de imagen (en px)"
4002
 
4003
- #: core/class-settings.php:597
4004
  msgctxt "admin settings"
4005
  msgid "Min image height (px)"
4006
  msgstr "Alto mínimo de imagen (en px)"
4007
 
4008
- #: core/class-settings.php:599
4009
  msgctxt "admin settings"
4010
  msgid "Max image width (px)"
4011
  msgstr "Ancho máximo de imagen (px)"
4012
 
4013
- #: core/class-settings.php:600
4014
  msgctxt "admin settings"
4015
  msgid "Max image height (px)"
4016
  msgstr "Alto máximo de imagen (px)"
4017
 
4018
- #: core/class-settings.php:602
4019
  msgctxt "admin settings"
4020
  msgid "Turn on thickbox/lightbox?"
4021
  msgstr "Activar Thickbox/Lightbox?"
4022
 
4023
- #: core/class-settings.php:602
4024
  msgctxt "admin settings"
4025
  msgid ""
4026
  "Uncheck if it conflicts with other elements or plugins installed on your site"
@@ -4028,27 +4125,27 @@ msgstr ""
4028
  "Desmarque si entra en conflicto con otros elementos o plugins instalados en "
4029
  "su sitio"
4030
 
4031
- #: core/class-settings.php:604
4032
  msgctxt "admin settings"
4033
  msgid "Thumbnails"
4034
  msgstr "Imágenes de previsualización"
4035
 
4036
- #: core/class-settings.php:605
4037
  msgctxt "admin settings"
4038
  msgid "Thumbnail width (px)"
4039
  msgstr "Ancho de thumbnail (px)"
4040
 
4041
- #: core/class-settings.php:606
4042
  msgctxt "admin settings"
4043
  msgid "Thumbnail height (px)"
4044
  msgstr "Alto de thumbnail (px)"
4045
 
4046
- #: core/class-settings.php:609
4047
  msgctxt "admin settings"
4048
  msgid "Crop thumbnails to exact dimensions?"
4049
  msgstr "Cortar imágenes de previsualización a las dimensiones exactas?"
4050
 
4051
- #: core/class-settings.php:612
4052
  msgctxt "admin settings"
4053
  msgid ""
4054
  "When enabled images will match exactly the dimensions above but part of the "
@@ -4062,12 +4159,12 @@ msgstr ""
4062
  "alto será ajustado proporcionalmente. Dependiendo de las imágenes que se "
4063
  "hayan utilizado, estas podrían tener diferentes alturas."
4064
 
4065
- #: core/class-settings.php:618
4066
  msgctxt "admin settings"
4067
  msgid "Number of free images"
4068
  msgstr "Número de imágenes gratuitas"
4069
 
4070
- #: core/class-settings.php:623
4071
  msgctxt "admin settings"
4072
  msgid ""
4073
  "For paid listing images, configure that by adding or editing a <a>Fee Plan</"
@@ -4076,17 +4173,17 @@ msgstr ""
4076
  "Configure las imágenes de listados pagos agregando o editando una "
4077
  "<a>comisión</a> pues este valor será ignorado para listados pagos."
4078
 
4079
- #: core/class-settings.php:624
4080
  msgctxt "admin settings"
4081
  msgid "Use default picture for listings with no picture?"
4082
  msgstr "Utilizar imagen por defecto en listados sin imagen?"
4083
 
4084
- #: core/class-settings.php:625
4085
  msgctxt "admin settings"
4086
  msgid "Show Thumbnail on main listings page?"
4087
  msgstr "Mostrar thumbnails en las páginas principales?"
4088
 
4089
- #: core/class-settings.php:681
4090
  msgctxt "admin settings"
4091
  msgid ""
4092
  "Could not copy the AJAX compatibility plugin \"%s\". Compatibility mode was "
@@ -4095,7 +4192,7 @@ msgstr ""
4095
  "No se pudo copiar el plugin de compatibilidad AJAX \"%s\". El modo de "
4096
  "compatibilidad no fue activado."
4097
 
4098
- #: core/class-settings.php:689
4099
  msgctxt "admin settings"
4100
  msgid ""
4101
  "Could not activate AJAX Compatibility mode: the directory \"%s\" could not "
@@ -4104,7 +4201,7 @@ msgstr ""
4104
  "No se pudo activar el modo de compatibilidad AJAX: el directorio \"%s\" no "
4105
  "pudo ser creado."
4106
 
4107
- #: core/class-settings.php:698
4108
  msgctxt "admin settings"
4109
  msgid ""
4110
  "Could not remove the \"Business Directory Plugin - AJAX Compatibility Module"
@@ -4113,97 +4210,97 @@ msgstr ""
4113
  "No se pudo remover \"Business Directory Plugin - AJAX Compatibility Module"
4114
  "\". Por favor elimine el archivo \"%s\" manualmente o desactive el plugin."
4115
 
4116
- #: core/class-settings.php:997
4117
  msgctxt "settings"
4118
  msgid "Deactivate License"
4119
  msgstr "Desactivar Licencia"
4120
 
4121
- #: core/class-settings.php:999
4122
  msgctxt "settings"
4123
  msgid "Deactivating license..."
4124
  msgstr "Desactivando licencia..."
4125
 
4126
- #: core/class-settings.php:1002
4127
  msgctxt "settings"
4128
  msgid "Activate License"
4129
  msgstr "Activar Licencia"
4130
 
4131
- #: core/class-settings.php:1004
4132
  msgctxt "settings"
4133
  msgid "Activating license..."
4134
  msgstr "Activando licencia..."
4135
 
4136
- #: core/class-settings.php:1028
4137
  msgctxt "admin settings"
4138
  msgid "Valid placeholders: %s"
4139
  msgstr "Comodines válidos: %s"
4140
 
4141
- #: core/class-settings.php:1062
4142
  msgctxt "settings email"
4143
  msgid "Click to edit e-mail"
4144
  msgstr "Click para editar el correo"
4145
 
4146
- #: core/class-settings.php:1063
4147
  msgctxt "settings email"
4148
  msgid "Click to edit"
4149
  msgstr "Click para editar"
4150
 
4151
- #: core/class-settings.php:1076
4152
  msgctxt "settings email"
4153
  msgid "E-Mail Subject"
4154
  msgstr "Título del correo"
4155
 
4156
- #: core/class-settings.php:1087
4157
  msgctxt "settings email"
4158
  msgid "E-Mail Body"
4159
  msgstr "Cuerpo del correo"
4160
 
4161
- #: core/class-settings.php:1098
4162
  msgctxt "settings email"
4163
  msgid "You can use the following placeholders:"
4164
  msgstr "Puede utilizar los siguientes comodines:"
4165
 
4166
- #: core/class-settings.php:1121
4167
  msgctxt "settings email"
4168
  msgid "Preview e-mail"
4169
  msgstr "Previsualizar correo"
4170
 
4171
- #: core/class-settings.php:1122
4172
  msgctxt "settings email"
4173
  msgid "Cancel"
4174
  msgstr "Cancelar"
4175
 
4176
- #: core/class-settings.php:1123
4177
  msgctxt "settings email"
4178
  msgid "Save Changes"
4179
  msgstr "Guardar Cambios"
4180
 
4181
- #: core/class-settings.php:1142
4182
  msgctxt "settings email"
4183
  msgid "Site title"
4184
  msgstr "Título del sitio"
4185
 
4186
- #: core/class-settings.php:1145
4187
  msgctxt "settings email"
4188
  msgid "Site title (with link)"
4189
  msgstr "Título del listado (con enlace)"
4190
 
4191
- #: core/class-settings.php:1148
4192
  msgctxt "settings email"
4193
  msgid "Site address (with link)"
4194
  msgstr "Dirección del listado (con enlace)"
4195
 
4196
- #: core/class-settings.php:1151
4197
  msgctxt "settings email"
4198
  msgid "Directory URL (with link)"
4199
  msgstr "URL del Directorio (con enlace)"
4200
 
4201
- #: core/class-settings.php:1154
4202
  msgctxt "settings email"
4203
  msgid "Current date"
4204
  msgstr "Fecha actual"
4205
 
4206
- #: core/class-settings.php:1157
4207
  msgctxt "settings email"
4208
  msgid "Current time"
4209
  msgstr "Hora actual"
@@ -4605,7 +4702,7 @@ msgctxt "authorize-net"
4605
  msgid "Transaction Key is missing."
4606
  msgstr "Falta la clave de transacciones."
4607
 
4608
- #: core/gateways-authorize-net.php:124
4609
  msgctxt "authorize-net"
4610
  msgid ""
4611
  "The payment gateway didn't accept your credit card or billing information. "
@@ -4614,7 +4711,7 @@ msgstr ""
4614
  "La pasarela de pago no aceptó su tarjeta de crédito o información de pago. "
4615
  "La razón dada fue \"%s\"."
4616
 
4617
- #: core/gateways-authorize-net.php:128
4618
  msgctxt "authorize-net"
4619
  msgid ""
4620
  "Your payment is being held for review by the payment gateway. The following "
@@ -4623,12 +4720,17 @@ msgstr ""
4623
  "Su pago está en proceso de verificación por la pasarela de pago. La razón "
4624
  "dada fue: \"%s\"."
4625
 
4626
- #: core/gateways-authorize-net.php:131
4627
  msgctxt "authorize-net"
4628
  msgid "Payment was rejected. The following reason was given: \"%s\"."
4629
  msgstr "El pago fue rechazado. La razón dada fue: \"%s\"."
4630
 
4631
- #: core/gateways-authorize-net.php:182
 
 
 
 
 
4632
  msgctxt "authorize-net"
4633
  msgid "Could not process payment."
4634
  msgstr "No se pudo procesar el pago."
@@ -4742,12 +4844,37 @@ msgctxt "fs helper"
4742
  msgid "Destination dir \"%s\" is not writable."
4743
  msgstr ""
4744
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
4745
  #: core/installer.php:38
4746
  msgctxt "default category name"
4747
  msgid "General"
4748
  msgstr "General"
4749
 
4750
- #: core/installer.php:462
4751
  msgctxt "installer"
4752
  msgid ""
4753
  "<b>Business Directory Plugin - Regions Module</b> was disabled because it is "
@@ -4758,41 +4885,41 @@ msgstr ""
4758
  "es incompatible con la versión actual de Business Directory. Por favor "
4759
  "actualice el módulode Regions."
4760
 
4761
- #: core/installer.php:528
4762
  msgctxt "installer"
4763
  msgid "Cleaning up listing fees information... %d/%d"
4764
  msgstr "Actualizando información de comisiones de listados... %d/%d"
4765
 
4766
- #: core/installer.php:578
4767
  msgctxt "installer"
4768
  msgid "Migrating previous transactions to new Payments API... %d/%d"
4769
  msgstr "Migrando transacciones anteriores a la nueva API de pagos... %d/%d"
4770
 
4771
- #: core/installer.php:607
4772
  msgctxt "installer"
4773
  msgid "Initial listing payment (BD < 3.4)"
4774
  msgstr "Pago inicial de listado (BD < 3.4)"
4775
 
4776
- #: core/installer.php:618
4777
  msgctxt "installer"
4778
  msgid "Listing edit payment (BD < 3.4)"
4779
  msgstr "Pago por edición de listado (BD < 3.4)"
4780
 
4781
- #: core/installer.php:639
4782
  msgctxt "installer"
4783
  msgid "Renewal fee \"%s\" for category \"%s\""
4784
  msgstr "Comisión de renovación \"%s\" para categoría \"%s\""
4785
 
4786
- #: core/installer.php:658
4787
  msgctxt "installer"
4788
  msgid "Listing upgrade to featured"
4789
  msgstr "Mejora a Destacado"
4790
 
4791
- #: core/installer.php:894
4792
  msgid "Business Directory - Manual Upgrade Required"
4793
  msgstr "Business Directory - Actualización Manual Requerida"
4794
 
4795
- #: core/installer.php:896
4796
  msgid ""
4797
  "Business Directory features are currently disabled because the plugin needs "
4798
  "to perform a manual upgrade before continuing."
@@ -4800,15 +4927,15 @@ msgstr ""
4800
  "Las características de Business Directory se encuentran deshabitadas pues es "
4801
  "necesario realizar una actualización manual antes de continuar."
4802
 
4803
- #: core/installer.php:898
4804
  msgid "Perform Manual Upgrade"
4805
  msgstr "Realizar Actualización Manual"
4806
 
4807
- #: core/installer.php:914 core/installer.php:915 core/installer.php:926
4808
  msgid "Business Directory - Manual Upgrade"
4809
  msgstr "Business Directory - Actualización Manual"
4810
 
4811
- #: core/installer.php:930
4812
  msgid ""
4813
  "Business Directory features are currently disabled because the plugin needs "
4814
  "to perform a manual upgrade before it can be used."
@@ -4817,23 +4944,23 @@ msgstr ""
4817
  "necesario realizar una actualización manual antes de que el plugin pueda ser "
4818
  "utilizado."
4819
 
4820
- #: core/installer.php:932
4821
  msgid "Click \"Start Upgrade\" and wait until the process finishes."
4822
  msgstr ""
4823
  "Haga clic en \"Iniciar Actualización\" y espere hasta que el proceso "
4824
  "finalice."
4825
 
4826
- #: core/installer.php:935
4827
  msgctxt "manual-upgrade"
4828
  msgid "Start Upgrade"
4829
  msgstr "Iniciar Actualización"
4830
 
4831
- #: core/installer.php:937
4832
  msgctxt "manual-upgrade"
4833
  msgid "Pause Upgrade"
4834
  msgstr "Detener Actualización"
4835
 
4836
- #: core/installer.php:943
4837
  msgctxt "manual-upgrade"
4838
  msgid ""
4839
  "The upgrade was sucessfully performed. Business Directory Plugin is now "
@@ -4842,7 +4969,7 @@ msgstr ""
4842
  "La actualización fue ejecutada con éxito. Business Directory Plugin ahora se "
4843
  "encienta disponible para su uso."
4844
 
4845
- #: core/installer.php:946
4846
  msgctxt "manual-upgrade"
4847
  msgid "Go to \"Directory Admin\""
4848
  msgstr "Ir a \"Administración del Directorio\""
@@ -4867,16 +4994,6 @@ msgctxt "licensing"
4867
  msgid "No license key provided"
4868
  msgstr "No se ingresó una licencia"
4869
 
4870
- #: core/licensing.php:127 core/licensing.php:159
4871
- msgctxt "licensing"
4872
- msgid "Could not contact licensing server"
4873
- msgstr "No se pudo contactar el servidor de licencias"
4874
-
4875
- #: core/licensing.php:132 core/licensing.php:166
4876
- msgctxt "licensing"
4877
- msgid "License key is invalid"
4878
- msgstr "La licencia es inválida"
4879
-
4880
  #: core/licensing.php:169
4881
  msgctxt "licensing"
4882
  msgid "Deactivation failed"
@@ -4924,16 +5041,6 @@ msgctxt "licensing"
4924
  msgid "Renew License Key"
4925
  msgstr "Renovar Clave de Licencia"
4926
 
4927
- #: core/licensing.php:330
4928
- msgctxt "licensing"
4929
- msgid "Could not activate license: %s."
4930
- msgstr "No se pudo activar la licencia: %s."
4931
-
4932
- #: core/licensing.php:332
4933
- msgctxt "licensing"
4934
- msgid "License activated"
4935
- msgstr "Licencia activada"
4936
-
4937
  #: core/licensing.php:348
4938
  msgctxt "licensing"
4939
  msgid "Could not deactivate license: %s."
@@ -4949,38 +5056,38 @@ msgctxt "fees-api"
4949
  msgid "Free Listing"
4950
  msgstr "Listado Gratuito"
4951
 
4952
- #: core/payment.php:135
4953
  msgctxt "fees-api"
4954
  msgid "Fee label is required."
4955
  msgstr "El nombre de la Comisión es requerido."
4956
 
4957
- #: core/payment.php:138
4958
  msgctxt "fees-api"
4959
  msgid "Fee amount must be a non-negative decimal number."
4960
  msgstr "El precio de la comisión de be ser un número decimal no negativo."
4961
 
4962
- #: core/payment.php:141 core/payment.php:144
4963
  msgctxt "fees-api"
4964
  msgid "Fee must apply to at least one category."
4965
  msgstr "La comisión debe aplicar al menos a una categoría."
4966
 
4967
- #: core/payment.php:147
4968
  msgctxt "fees-api"
4969
  msgid "Fee allowed images must be a non-negative integer."
4970
  msgstr "El número de imágenes permitidas por la comisión debe ser no negativo."
4971
 
4972
- #: core/payment.php:150
4973
  msgctxt "fees-api"
4974
  msgid "Fee listing run must be a non-negative integer."
4975
  msgstr "La Comisión de Listado debe ser un entero no negativo."
4976
 
4977
- #: core/payment.php:155
4978
  msgctxt "fees-api"
4979
  msgid "Fee listing duration must be a number less than 10 years (3650 days)."
4980
  msgstr ""
4981
  "La duración del listado debe ser un número menor a 10 años (3650 días)."
4982
 
4983
- #: core/payment.php:325
4984
  msgctxt "payments-api"
4985
  msgid ""
4986
  "You are offering featured listings but have payments turned off. Go to <a "
@@ -4993,7 +5100,7 @@ msgstr ""
4993
  "de pago. Hasta tanto la opción de <i>Mejorar a Destacado</i> estará "
4994
  "deshabilitada."
4995
 
4996
- #: core/payment.php:343
4997
  msgctxt "payments-api"
4998
  msgid ""
4999
  "The <b>%s</b> gateway is active but not properly configured. The gateway "
@@ -5005,7 +5112,7 @@ msgstr ""
5005
  "siguientes problemas: <b>%s</b>.<br/> Revise sus <a href=\"%s"
5006
  "\">configuraciones de pago</a>."
5007
 
5008
- #: core/payment.php:353
5009
  msgctxt "admin"
5010
  msgid ""
5011
  "You have payments turned on but no gateway is active and properly "
@@ -5018,7 +5125,7 @@ msgstr ""
5018
  "para cambiar las configuraciones de pago. Hasta tanto, el Directorio operará "
5019
  "en <i>Modo Gratuito</i>."
5020
 
5021
- #: core/payment.php:357
5022
  msgid ""
5023
  "BD detected PayFast and another gateway were enabled. This setup is not "
5024
  "recommended due to PayFast supporting only ZAR and the other gateways not "
@@ -5028,7 +5135,7 @@ msgstr ""
5028
  "habilitadas. Esta configuración no es recomendada pues PayFast únicamente "
5029
  "soporta la moneda ZAR y las demás pasarelas no la soportan."
5030
 
5031
- #: core/payment.php:361
5032
  msgid ""
5033
  "You have recurring renewal of listing fees enabled but the payment gateways "
5034
  "installed don't support recurring payments. Until a gateway that supports "
@@ -5040,7 +5147,7 @@ msgstr ""
5040
  "recurrentes. Hasta tanto una pasarela que soporte pagos recurrentes (como "
5041
  "PayPal) sea habilitada las renovaciones automáticas estarán deshabilitadas."
5042
 
5043
- #: core/payment.php:366
5044
  msgid ""
5045
  "Due to Google Wallet limitations only monthly (30 days) recurring fees are "
5046
  "supported by the gateway. All other fees will be charged as non-recurring."
@@ -5049,37 +5156,37 @@ msgstr ""
5049
  "mensualmente (30 días) están soportados por esta pasarela. Cualquier "
5050
  "comisión con otra duración será cobrada sin renovación automática."
5051
 
5052
- #: core/payment.php:399
5053
  msgctxt "payments-api"
5054
  msgid "Checkout"
5055
  msgstr "Pago"
5056
 
5057
- #: core/payment.php:400
5058
  msgctxt "payments-api"
5059
  msgid "Pay %1$s through %2$s"
5060
  msgstr "Pagar %1$s a través de %2$s"
5061
 
5062
- #: core/payment.php:407
5063
  msgctxt "payments-api"
5064
  msgid "Your transaction has been approved."
5065
  msgstr "Su transacción ha sido aprobada."
5066
 
5067
- #: core/payment.php:588
5068
  msgctxt "payments"
5069
  msgid "Payment Details"
5070
  msgstr "Detalles del Pago"
5071
 
5072
- #: core/payment.php:615
5073
  msgctxt "checkout"
5074
  msgid "Payment Method"
5075
  msgstr "Método de Pago"
5076
 
5077
- #: core/payment.php:644
5078
  msgctxt "payment"
5079
  msgid "Return to Directory."
5080
  msgstr "Regresar al Directorio."
5081
 
5082
- #: core/payment.php:650
5083
  msgctxt "payments"
5084
  msgid ""
5085
  "Your payment is being processed by the payment gateway. Please reload this "
@@ -5090,7 +5197,7 @@ msgstr ""
5090
  "esta página en un momento para ver el estado actualizado del mismo o "
5091
  "contacte al administrador del sitio."
5092
 
5093
- #: core/payment.php:653
5094
  msgctxt "payments"
5095
  msgid ""
5096
  "The payment has been rejected by the payment gateway. Please contact the "
@@ -5102,12 +5209,12 @@ msgstr ""
5102
  "\"Cambiar Método de Pago\" para seleccionar un método distinto de pago e "
5103
  "intentar nuevamente."
5104
 
5105
- #: core/payment.php:654
5106
  msgctxt "payments"
5107
  msgid "Change Payment Method"
5108
  msgstr "Cambiar Método de Pago"
5109
 
5110
- #: core/payment.php:656
5111
  msgctxt "payments"
5112
  msgid ""
5113
  "The payment has been rejected by the payment gateway. Please contact the "
@@ -5116,29 +5223,29 @@ msgstr ""
5116
  "El pago ha sido rechazado por la pasarela de pago. Por favor contacte el "
5117
  "administrador del sitio si cree que ha ocurrido un error."
5118
 
5119
- #: core/payment.php:659
5120
  msgctxt "payments"
5121
  msgid "The payment has been canceled at your request."
5122
  msgstr "La transacción ha sido cancelada por solicitud suya."
5123
 
5124
- #: core/payment.php:755
5125
  msgctxt "admin"
5126
  msgid "Pending Abandonment"
5127
  msgstr "Casi abandonado"
5128
 
5129
- #: core/payment.php:760
5130
  msgctxt "admin"
5131
  msgid "Abandoned"
5132
  msgstr "Abandonados"
5133
 
5134
  #: core/templates/listing-sticky-tag.tpl.php:3
5135
- #: core/templates/listing-sticky-tag.tpl.php:4 core/templates-listings.php:64
5136
  msgctxt "templates"
5137
  msgid "Featured Listing"
5138
  msgstr "Listado Destacado"
5139
 
5140
  #: core/templates/listings.tpl.php:6
5141
- #: templates/businessdirectory-listings.tpl.php:27 templates/search.tpl.php:41
5142
  msgctxt "templates"
5143
  msgid "No listings found."
5144
  msgstr "No se encontraron listados."
@@ -5180,27 +5287,27 @@ msgctxt "sort"
5180
  msgid "(Reset)"
5181
  msgstr "(Reestablecer)"
5182
 
5183
- #: core/themes.php:550
5184
  msgctxt "themes"
5185
  msgid "ZIP file is not a valid BD theme file."
5186
  msgstr ""
5187
 
5188
- #: core/themes.php:556
5189
  msgctxt "themes"
5190
  msgid "Could not create themes directory."
5191
  msgstr ""
5192
 
5193
- #: core/themes.php:564
5194
  msgctxt "themes"
5195
  msgid "Could not remove previous theme directory \"%s\"."
5196
  msgstr ""
5197
 
5198
- #: core/themes.php:570
5199
  msgctxt "themes"
5200
  msgid "Could not move new theme into theme directory."
5201
  msgstr ""
5202
 
5203
- #: core/utils.php:105
5204
  msgctxt "utils"
5205
  msgid ""
5206
  "POSTed data exceeds PHP config. maximum. See \"post_max_size\" directive."
@@ -5208,54 +5315,54 @@ msgstr ""
5208
  "Los datos enviados via POST superan el valor máximo configurado en PHP. "
5209
  "Revise la directiva \"post_max_size\" de su configuración."
5210
 
5211
- #: core/utils.php:158
5212
  msgctxt "utils"
5213
  msgid "File size (%s) exceeds maximum file size of %s"
5214
  msgstr "El tamaño de archivo (%s) excede el tamaño máximo permitido de %s"
5215
 
5216
- #: core/utils.php:166
5217
  msgctxt "utils"
5218
  msgid "File size (%s) is inferior to the required minimum file size of %s"
5219
  msgstr "El tamaño de archivo (%s) es inferior al tamaño mínimo requerido de %s"
5220
 
5221
- #: core/utils.php:175 core/utils.php:182
5222
  msgctxt "utils"
5223
  msgid "File type \"%s\" is not allowed"
5224
  msgstr "El tipo de archivo \"%s\" no está permitido"
5225
 
5226
- #: core/utils.php:189
5227
  msgctxt "utils"
5228
  msgid "Unkown error while uploading file."
5229
  msgstr "Error desconocido mientras se subía el archivo."
5230
 
5231
- #: core/utils.php:208
5232
  msgctxt "utils"
5233
  msgid "Uploaded file is not an image"
5234
  msgstr "El archivo subido no es una imagen"
5235
 
5236
- #: core/utils.php:217
5237
  msgctxt "utils"
5238
  msgid "Image width (%s px) is inferior to minimum required width of %s px."
5239
  msgstr ""
5240
  "El ancho de la imagen (%s px) es inferior al mínimo requerido de %s px."
5241
 
5242
- #: core/utils.php:223
5243
  msgctxt "utils"
5244
  msgid "Image height (%s px) is inferior to minimum required height of %s px."
5245
  msgstr "El alto de la imagen (%s px) es inferior al mínimo requerido de %s px."
5246
 
5247
- #: core/utils.php:229
5248
  msgctxt "utils"
5249
  msgid "Image width (%s px) is greater than maximum allowed width of %s px."
5250
  msgstr ""
5251
  "El ancho de la imagen (%s px) es superior al máximo permitido de %s px."
5252
 
5253
- #: core/utils.php:235
5254
  msgctxt "utils"
5255
  msgid "Image height (%s px) is greater than maximum required height of %s px."
5256
  msgstr "El alto de la imagen (%s px) es superior al máximo permitido de %s px."
5257
 
5258
- #: core/utils.php:249
5259
  msgctxt "utils"
5260
  msgid "Error while uploading file"
5261
  msgstr "Ocurrió un error mientras se subía el archivo"
@@ -5529,22 +5636,22 @@ msgctxt "templates"
5529
  msgid "I agree to the Terms and Conditions"
5530
  msgstr "Acepto los Términos y Condiciones"
5531
 
5532
- #: core/view-submit-listing.php:404
5533
  msgctxt "listings"
5534
  msgid "Fee \"%s\" for category \"%s\"%s"
5535
  msgstr "Comisión \"%s\" para categoría \"%s\"%s"
5536
 
5537
- #: core/view-submit-listing.php:407
5538
  msgctxt "listings"
5539
  msgid "(recurring)"
5540
  msgstr "(recurrente)"
5541
 
5542
- #: core/view-submit-listing.php:417 core/view-upgrade-listing.php:54
5543
  msgctxt "submit"
5544
  msgid "Listing upgrade to featured"
5545
  msgstr "Mejora a Destacado"
5546
 
5547
- #: core/view-submit-listing.php:450
5548
  msgctxt "submit_state"
5549
  msgid "Invalid submit state."
5550
  msgstr "Solicitud inválida."
@@ -5565,7 +5672,7 @@ msgctxt "templates"
5565
  msgid "Return to listing."
5566
  msgstr "Regresar al listado."
5567
 
5568
- #: core/views.php:28
5569
  msgid ""
5570
  "You need to create a page with the [businessdirectory] shortcode for the "
5571
  "Business Directory plugin to work correctly."
@@ -5573,22 +5680,22 @@ msgstr ""
5573
  "Debe crear una página con el shortcode [businessdirectory] para que el "
5574
  "Directorio de Negocios funcione correctamente."
5575
 
5576
- #: core/views.php:30
5577
  msgid "The directory is temporarily disabled."
5578
  msgstr "El Directorio está temporalmente deshabilitado."
5579
 
5580
- #: core/views.php:173
5581
  msgctxt "preview"
5582
  msgid "This is just a preview. The listing has not been published yet."
5583
  msgstr ""
5584
  "Esta es tan solo una previsualización. El listado no ha sido publicado aún."
5585
 
5586
- #: core/views.php:325
5587
  msgctxt "templates"
5588
  msgid "Listings tagged: %s"
5589
  msgstr "Listados etiquetados: %s"
5590
 
5591
- #: core/views.php:442
5592
  msgctxt "templates"
5593
  msgid ""
5594
  "There are no categories assigned to the business directory yet. You need to "
@@ -5603,12 +5710,12 @@ msgstr ""
5603
  "no pueden enviar listados en este momento. No pueden agregarse nuevos "
5604
  "listados hasta tanto haya categorías en el Directorio de Negocios."
5605
 
5606
- #: core/views.php:444
5607
  msgctxt "templates"
5608
  msgid "There are currently no listings in the directory."
5609
  msgstr "No hay listados en el Directorio."
5610
 
5611
- #: core/views.php:462
5612
  msgctxt "templates"
5613
  msgid ""
5614
  "You have \"Hide Empty Categories\" on and some categories that don't have "
@@ -6014,7 +6121,7 @@ msgctxt "templates"
6014
  msgid "You do not currently have any listings in the directory."
6015
  msgstr "Actualmente no tiene listados en el Directorio."
6016
 
6017
- #: templates/manage-listings.tpl.php:11 templates/search.tpl.php:44
6018
  msgctxt "templates"
6019
  msgid "Return to directory"
6020
  msgstr "Regresar al Directorio"
@@ -6229,7 +6336,7 @@ msgstr ""
6229
  #: templates/renew-listing.tpl.php:22
6230
  #: templates/submit-listing/category-selection.tpl.php:8
6231
  #: templates/submit-listing/fee-selection.tpl.php:37
6232
- #: templates/submit-listing/images.tpl.php:35
6233
  #: templates/submit-listing/listing-fields.tpl.php:34
6234
  msgctxt "templates"
6235
  msgid "Continue"
@@ -6245,27 +6352,22 @@ msgctxt "templates"
6245
  msgid "Do not renew my listing"
6246
  msgstr "No renovar mi listado"
6247
 
6248
- #: templates/search.tpl.php:8 templates/search.tpl.php:27
6249
- msgctxt "search"
6250
- msgid "Search"
6251
- msgstr "Buscar"
6252
-
6253
- #: templates/search.tpl.php:10
6254
- msgctxt "search"
6255
- msgid "Return to Advanced Search"
6256
- msgstr "Regresar a Búsqueda Avanzada"
6257
-
6258
- #: templates/search.tpl.php:15
6259
  msgctxt "templates"
6260
  msgid "Find a listing"
6261
  msgstr "Encontrar un listado"
6262
 
6263
- #: templates/search.tpl.php:26
6264
  msgctxt "search"
6265
  msgid "Clear"
6266
  msgstr "Limpiar"
6267
 
6268
- #: templates/search.tpl.php:34
 
 
 
 
 
6269
  msgctxt "search"
6270
  msgid "Search Results"
6271
  msgstr "Resultados de Búsqueda"
@@ -6384,7 +6486,12 @@ msgctxt "templates"
6384
  msgid "Image slots available:"
6385
  msgstr "Casillas de imagen disponibles:"
6386
 
6387
- #: templates/submit-listing/images-upload-form.tpl.php:49
 
 
 
 
 
6388
  msgctxt "templates"
6389
  msgid "Max. file size:"
6390
  msgstr "Tamaño máximo de archivo:"
@@ -6464,6 +6571,16 @@ msgstr "D. Rodenbaugh"
6464
  msgid "http://businessdirectoryplugin.com"
6465
  msgstr "http://businessdirectoryplugin.com"
6466
 
 
 
 
 
 
 
 
 
 
 
6467
  #~ msgctxt "admin transactions"
6468
  #~ msgid "transaction"
6469
  #~ msgstr "transacción"
@@ -6744,10 +6861,6 @@ msgstr "http://businessdirectoryplugin.com"
6744
  #~ msgid "Stripe Payment Gateway"
6745
  #~ msgstr "Pasarela de pago Stripe"
6746
 
6747
- #~ msgctxt "credits footer"
6748
- #~ msgid "Directory powered by %s"
6749
- #~ msgstr "El Directorio de Negocios corre gracias a %s"
6750
-
6751
  #~ msgctxt "admin settings"
6752
  #~ msgid "Give credit to plugin author?"
6753
  #~ msgstr "Dar crédito al autor del plugin?"
4
  msgstr ""
5
  "Project-Id-Version: Business Directory Plugin 3.6.9\n"
6
  "Report-Msgid-Bugs-To: http://wordpress.org/tag/business-directory-plugin\n"
7
+ "POT-Creation-Date: 2015-11-17 23:37:00+00:00\n"
8
+ "PO-Revision-Date: 2015-11-17 18:40-0500\n"
9
  "Last-Translator: BD Team <support@businessdirectoryplugin.com>\n"
10
  "Language-Team: BD Team <support@businessdirectoryplugin.com>\n"
11
  "Language: es_ES\n"
222
  msgid "Uninstall"
223
  msgstr "Desinstalar"
224
 
225
+ #: admin/class-admin.php:405
226
  #: admin/templates/listing-metabox-categories.tpl.php:69
227
  msgctxt "admin infometabox"
228
  msgid "never"
229
  msgstr "nunca"
230
 
231
+ #: admin/class-admin.php:487
232
  msgctxt "admin"
233
  msgid "The listing has been published."
234
  msgid_plural "The listings have been published."
235
  msgstr[0] "El listado ha sido publicado."
236
  msgstr[1] "Los listados han sido publicados."
237
 
238
+ #: admin/class-admin.php:500
239
  msgctxt "admin"
240
  msgid "The listing status has been set as paid."
241
  msgid_plural "The listings status has been set as paid."
242
  msgstr[0] "El listado se ha marcado como pagado."
243
  msgstr[1] "Los listados se han marcado como pagados."
244
 
245
+ #: admin/class-admin.php:512
246
  msgctxt "admin"
247
  msgid "The listing has been modified."
248
  msgid_plural "The listings have been modified."
249
  msgstr[0] "El listado ha sido modificado."
250
  msgstr[1] "Los listados han sido modificados."
251
 
252
+ #: admin/class-admin.php:525
253
  msgctxt "admin"
254
  msgid "The listing has been upgraded."
255
  msgid_plural "The listings have been upgraded."
256
  msgstr[0] "El listado ha sido mejorado."
257
  msgstr[1] "Los listados han sido mejorados."
258
 
259
+ #: admin/class-admin.php:537
260
  msgctxt "admin"
261
  msgid "The listing has been downgraded."
262
  msgid_plural "The listings have been downgraded."
263
  msgstr[0] "El listado ha sido degradado."
264
  msgstr[1] "Los listados han sido degradados."
265
 
266
+ #: admin/class-admin.php:549
267
  msgctxt "admin"
268
  msgid "The transaction has been approved."
269
  msgstr "La transacción ha sido aprobada."
270
 
271
+ #: admin/class-admin.php:557
272
  msgctxt "admin"
273
  msgid "The transaction has been rejected."
274
  msgstr "La transacción ha sido rechazada."
275
 
276
+ #: admin/class-admin.php:563
277
  msgctxt "admin"
278
  msgid "The fee was successfully assigned."
279
  msgstr "La comisión se asignó satisfactoriamente."
280
 
281
+ #: admin/class-admin.php:572
282
  msgctxt "admin"
283
  msgid "Listing was renewed."
284
  msgid_plural "Listings were renewed."
285
  msgstr[0] "El listado ha sido renovado."
286
  msgstr[1] "Los listados fueron renovados."
287
 
288
+ #: admin/class-admin.php:579
289
  msgctxt "admin"
290
  msgid "Renewal email sent."
291
  msgstr "Mensaje de correo electrónico de renovación enviado."
292
 
293
+ #: admin/class-admin.php:613
294
  msgctxt "admin category id"
295
  msgid "ID"
296
  msgstr "ID"
297
 
298
+ #: admin/class-admin.php:615 admin/class-admin.php:621
299
  msgctxt "admin"
300
  msgid "Listing Count"
301
  msgstr "Conteo de Listados"
302
 
303
+ #: admin/class-admin.php:717
304
  msgctxt "admin"
305
  msgid ""
306
  "<b>Business Directory Plugin</b> requires fields with the following "
309
  "<b>Business Directory Plugin</b> requiere campos con las siguientes "
310
  "asociaciones para funcionar correctamente: <b>%s</b>."
311
 
312
+ #: admin/class-admin.php:719
313
  msgctxt "admin"
314
  msgid ""
315
  "<b>Business Directory Plugin</b> requires a field with a <b>%s</b> "
318
  "<b>Business Directory Plugin</b> requiere un campo con la asociación <b>%s</"
319
  "b> para funcionar correctamente."
320
 
321
+ #: admin/class-admin.php:723
322
  msgctxt "admin"
323
  msgid ""
324
  "You can create these custom fields by yourself inside \"Manage Form Fields\" "
327
  "Puede crear estos campos usted mismo en \"Administrar Campos de Formulario\" "
328
  "o puede dejar que Business Directory haga esto por usted automáticamente."
329
 
330
+ #: admin/class-admin.php:727
331
  msgctxt "admin"
332
  msgid "Go to \"Manage Form Fields\""
333
  msgstr "Ir a \"Administrar Campos de Formulario\""
334
 
335
+ #: admin/class-admin.php:730
336
  msgctxt "admin"
337
  msgid "Create these required fields for me"
338
  msgstr "Crear estos campos requeridos por mi"
339
 
340
+ #: admin/class-admin.php:739
341
  msgctxt "admin"
342
  msgid ""
343
  "<b>Business Directory Plugin</b> requires a page with the "
346
  "<b>Business Directory Plugin</b> requiere una página con el shortcode "
347
  "<tt>[businessdirectory]</tt> para funcionar adecuadamente."
348
 
349
+ #: admin/class-admin.php:741
350
  msgctxt "admin"
351
  msgid ""
352
  "You can create this page by yourself or let Business Directory do this for "
355
  "Puede crear esta página usted mismo o dejar que Business Directory lo haga "
356
  "por usted automáticamente."
357
 
358
+ #: admin/class-admin.php:745
359
  msgctxt "admin"
360
  msgid "Create required pages for me"
361
  msgstr "Crear las páginas requeridas por mi"
362
 
363
+ #: admin/class-admin.php:785
364
  msgctxt "admin compat"
365
  msgid "Installed: %s"
366
  msgstr "Instalado: %s"
367
 
368
+ #: admin/class-admin.php:785
369
  msgctxt "admin compat"
370
  msgid "N/A"
371
  msgstr "N/A"
372
 
373
+ #: admin/class-admin.php:788
374
  msgctxt "admin compat"
375
  msgid "Required: %s"
376
  msgstr "Requerido: %s"
377
 
378
+ #: admin/class-admin.php:801
379
  msgctxt "admin compat"
380
  msgid ""
381
  "Business Directory has detected some incompatible premium module versions "
384
  "Business Directory ha detectado algunas versiones incompatibles de módulos "
385
  "instaladas."
386
 
387
+ #: admin/class-admin.php:803
388
  msgctxt "admin compat"
389
  msgid ""
390
  "Please upgrade to the required versions indicated below to make sure "
393
  "Por favor actualice a las versiones requeridas indicadas abajo para "
394
  "asegurarse de que todo funcione correctamente."
395
 
396
+ #: admin/class-admin.php:818
397
  msgctxt "admin"
398
  msgid ""
399
  "We noticed you want your Business Directory users to register before posting "
422
  msgid "There are no images currently attached to the listing."
423
  msgstr "No hay imágenes actualmente asociadas al listado."
424
 
425
+ #: admin/class-themes-admin.php:41
426
  msgctxt "themes"
427
  msgid "Directory Themes"
428
  msgstr ""
429
 
430
+ #: admin/class-themes-admin.php:42
431
+ #, fuzzy
432
+ msgctxt "themes"
433
+ msgid "Directory Themes %s"
434
+ msgstr "El Directorio de Negocios corre gracias a %s"
435
+
436
+ #: admin/class-themes-admin.php:97
437
  msgctxt "themes"
438
  msgid "Could not change the active theme to \"%s\"."
439
  msgstr ""
440
 
441
+ #: admin/class-themes-admin.php:144
442
  msgctxt "themes"
443
  msgid "Active theme changed to \"%s\"."
444
  msgstr ""
445
 
446
+ #: admin/class-themes-admin.php:147
447
  msgctxt "themes"
448
  msgid ""
449
  "For better results, \"%s\" theme suggests the following form fields to be "
450
  "created."
451
  msgstr ""
452
 
453
+ #: admin/class-themes-admin.php:154
454
  msgctxt "themes"
455
  msgid "Dismiss this warning"
456
  msgstr ""
457
 
458
+ #: admin/class-themes-admin.php:157
459
  msgctxt "themes"
460
  msgid "Create suggested fields"
461
  msgstr ""
462
 
463
+ #: admin/class-themes-admin.php:164
464
  msgctxt "themes"
465
  msgid "Suggested fields created successfully."
466
  msgstr ""
467
 
468
+ #: admin/class-themes-admin.php:167
469
  msgctxt "themes"
470
  msgid "Theme installed successfully."
471
  msgstr ""
472
 
473
+ #: admin/class-themes-admin.php:170
474
  msgctxt "themes"
475
  msgid "Theme was deleted sucessfully."
476
  msgstr ""
477
 
478
+ #: admin/class-themes-admin.php:173
479
  msgctxt "themes"
480
  msgid "Could not delete theme directory. Check permissions."
481
  msgstr ""
482
 
483
+ #: admin/class-themes-admin.php:199
484
  msgctxt "themes"
485
  msgid "Please upload a valid theme file."
486
  msgstr ""
487
 
488
+ #: admin/class-themes-admin.php:206
489
  msgctxt "themes"
490
  msgid "Could not move \"%s\" to a temporary directory."
491
  msgstr ""
492
 
493
+ #: admin/class-themes-admin.php:307 core/licensing.php:127
494
+ #: core/licensing.php:159
495
+ msgctxt "licensing"
496
+ msgid "Could not contact licensing server"
497
+ msgstr "No se pudo contactar el servidor de licencias"
498
+
499
+ #: admin/class-themes-admin.php:313 core/licensing.php:132
500
+ #: core/licensing.php:166
501
+ msgctxt "licensing"
502
+ msgid "License key is invalid"
503
+ msgstr "La licencia es inválida"
504
+
505
+ #: admin/class-themes-admin.php:318 core/licensing.php:330
506
+ msgctxt "licensing"
507
+ msgid "Could not activate license: %s."
508
+ msgstr "No se pudo activar la licencia: %s."
509
+
510
+ #: admin/class-themes-admin.php:331 core/licensing.php:332
511
+ msgctxt "licensing"
512
+ msgid "License activated"
513
+ msgstr "Licencia activada"
514
+
515
  #: admin/csv-export.php:136
516
  msgctxt "admin csv-export"
517
  msgid "Could not create a temporary directory for handling this CSV export."
1594
  msgid "Number of images allowed"
1595
  msgstr "Número de imágenes permitidas"
1596
 
1597
+ #: admin/templates/fees-addoredit.tpl.php:101
1598
+ msgctxt "fees admin"
1599
+ msgid "Is sticky?"
1600
+ msgstr "Es destacado?"
1601
+
1602
+ #: admin/templates/fees-addoredit.tpl.php:116
1603
  msgctxt "fees admin"
1604
  msgid "Apply to category"
1605
  msgstr "Aplicar a categoría"
1606
 
1607
+ #: admin/templates/fees-addoredit.tpl.php:120
1608
  msgctxt "fees admin"
1609
  msgid "* All Categories *"
1610
  msgstr "* Todas las Categorías *"
1611
 
1612
+ #: admin/templates/fees-addoredit.tpl.php:140
1613
  msgctxt "fees admin"
1614
  msgid "Update Fee"
1615
  msgstr "Actualizar Comisión"
1616
 
1617
+ #: admin/templates/fees-addoredit.tpl.php:142
1618
  msgctxt "fees admin"
1619
  msgid "Add Fee"
1620
  msgstr "Agregar Comisión"
1766
  msgid "No validation"
1767
  msgstr "Ninguna validación"
1768
 
1769
+ #: admin/templates/form-fields-addoredit.tpl.php:115
1770
  msgctxt "form-fields admin"
1771
  msgid "Is field required?"
1772
  msgstr "Es este campo requerido?"
1773
 
1774
+ #: admin/templates/form-fields-addoredit.tpl.php:121
1775
  msgctxt "form-fields admin"
1776
  msgid "This field is required."
1777
  msgstr "Este campo es requerido."
1778
 
1779
+ #: admin/templates/form-fields-addoredit.tpl.php:129
1780
  msgctxt "form-fields admin"
1781
  msgid "Field display options"
1782
  msgstr "Opciones de presentación del Campo"
1783
 
1784
+ #: admin/templates/form-fields-addoredit.tpl.php:133
1785
  msgctxt "form-fields admin"
1786
  msgid "Show this value in excerpt view?"
1787
  msgstr "Mostrar este valor en la vista de resumen?"
1788
 
1789
+ #: admin/templates/form-fields-addoredit.tpl.php:139
1790
  msgctxt "form-fields admin"
1791
  msgid "Display this value in post excerpt view."
1792
  msgstr "Mostrar este valor en la vista de resumen de un listado."
1793
 
1794
+ #: admin/templates/form-fields-addoredit.tpl.php:145
1795
  msgctxt "form-fields admin"
1796
  msgid "Show this value in listing view?"
1797
  msgstr "Mostrar este valor en la vista individual?"
1798
 
1799
+ #: admin/templates/form-fields-addoredit.tpl.php:151
1800
  msgctxt "form-fields admin"
1801
  msgid "Display this value in the listing view."
1802
  msgstr "Mostrar este valor en la vista individual de un listado."
1803
 
1804
+ #: admin/templates/form-fields-addoredit.tpl.php:157
1805
  msgctxt "form-fields admin"
1806
  msgid "Include this field in the search form?"
1807
  msgstr "Incluir este campo en el formulario de búsqueda?"
1808
 
1809
+ #: admin/templates/form-fields-addoredit.tpl.php:163
1810
  msgctxt "form-fields admin"
1811
  msgid "Include this field in the search form."
1812
  msgstr "Incluir este campo en el formulario de búsqueda."
1813
 
1814
+ #: admin/templates/form-fields-addoredit.tpl.php:169
1815
  msgctxt "form-fields admin"
1816
  msgid "Hide this field's label?"
1817
  msgstr "Ocultar el nombre de este campo?"
1818
 
1819
+ #: admin/templates/form-fields-addoredit.tpl.php:175
1820
  msgctxt "form-fields admin"
1821
  msgid "Hide this field's label when displaying it."
1822
  msgstr "Ocultar el nombre de este campo cuando se esté mostrando."
1823
 
1824
+ #: admin/templates/form-fields-addoredit.tpl.php:182
1825
  msgctxt "form-fields admin"
1826
  msgid "Update Field"
1827
  msgstr "Actualizar Campo"
1828
 
1829
+ #: admin/templates/form-fields-addoredit.tpl.php:184
1830
  msgctxt "form-fields admin"
1831
  msgid "Add Field"
1832
  msgstr "Agregar Campo"
2376
  msgstr "Enhanced Categories Module"
2377
 
2378
  #: admin/templates/themes-delete-confirm.tpl.php:1
2379
+ #: admin/templates/themes-delete-confirm.tpl.php:13
2380
  msgctxt "themes admin"
2381
+ msgid "Delete Directory Theme"
2382
  msgstr ""
2383
 
2384
  #: admin/templates/themes-delete-confirm.tpl.php:3
2385
+ #, fuzzy
2386
  msgctxt "themes admin"
2387
+ msgid "Are you sure you want to delete the directory theme \"%s\"?"
2388
+ msgstr "Está seguro de que desea eliminar la comisión \"%s\"?"
2389
 
2390
  #: admin/templates/themes-delete-confirm.tpl.php:12
2391
+ #, fuzzy
2392
  msgctxt "themes admin"
2393
+ msgid "Cancel"
2394
+ msgstr "Cancelar"
2395
 
2396
+ #: admin/templates/themes-install.tpl.php:2
2397
+ #: admin/templates/themes-licenses.tpl.php:3 admin/templates/themes.tpl.php:3
2398
  msgctxt "themes"
2399
  msgid "Upload Directory Theme"
2400
  msgstr ""
2414
  msgid "Begin Upload"
2415
  msgstr ""
2416
 
2417
+ #: admin/templates/themes-item.tpl.php:3
2418
  msgctxt "themes"
2419
  msgid "Active:"
2420
  msgstr ""
2421
 
2422
+ #: admin/templates/themes-item.tpl.php:12
2423
  msgctxt "themes"
2424
  msgid "Activate"
2425
  msgstr ""
2426
 
2427
+ #: admin/templates/themes-item.tpl.php:29
2428
  msgctxt "themes"
2429
  msgid "Version:"
2430
  msgstr ""
2431
 
2432
+ #: admin/templates/themes-item.tpl.php:32
2433
  msgctxt "themes"
2434
  msgid "Author:"
2435
  msgstr ""
2542
  msgid "Allow Tracking"
2543
  msgstr "Permitir Seguimiento"
2544
 
2545
+ #: business-directory-plugin.php:701
2546
  msgctxt "admin plugins"
2547
  msgid "Settings"
2548
  msgstr "Configuración"
2549
 
2550
+ #: business-directory-plugin.php:711
2551
  msgctxt "post type general name"
2552
  msgid "Directory"
2553
  msgstr "Directorio"
2554
 
2555
+ #: business-directory-plugin.php:712
2556
  msgctxt "post type singular name"
2557
  msgid "Directory"
2558
  msgstr "Directorio"
2559
 
2560
+ #: business-directory-plugin.php:713
2561
  msgctxt "listing"
2562
  msgid "Add New Listing"
2563
  msgstr "Agregar Nuevo Listado"
2564
 
2565
+ #: business-directory-plugin.php:714
2566
  msgctxt "post type"
2567
  msgid "Add New Listing"
2568
  msgstr "Agregar Nuevo Listado"
2569
 
2570
+ #: business-directory-plugin.php:715 core/compatibility/deprecated.php:255
2571
  msgid "Edit Listing"
2572
  msgstr "Editar Listado"
2573
 
2574
+ #: business-directory-plugin.php:716
2575
  msgid "New Listing"
2576
  msgstr "Nuevo Listado"
2577
 
2578
+ #: business-directory-plugin.php:717
2579
  msgid "View Listing"
2580
  msgstr "Ver Listado"
2581
 
2582
+ #: business-directory-plugin.php:718
2583
  msgid "Search Listings"
2584
  msgstr "Buscar Listados"
2585
 
2586
+ #: business-directory-plugin.php:719
2587
  msgid "No listings found"
2588
  msgstr "No se encontraron listados"
2589
 
2590
+ #: business-directory-plugin.php:720
2591
  msgid "No listings found in trash"
2592
  msgstr "No se encontraron listados en la papelera"
2593
 
2594
+ #: business-directory-plugin.php:742
2595
  msgid "Directory Categories"
2596
  msgstr "Categorías de Directorio"
2597
 
2598
+ #: business-directory-plugin.php:855 business-directory-plugin.php:862
2599
  msgctxt "rss feed"
2600
  msgid "%s Feed"
2601
  msgstr "Feed %s"
2602
 
2603
+ #: business-directory-plugin.php:1266
2604
  msgctxt "title"
2605
  msgid "Submit A Listing"
2606
  msgstr "Enviar Un Listado"
2607
 
2608
+ #: business-directory-plugin.php:1276
2609
  msgctxt "title"
2610
  msgid "Find a Listing"
2611
  msgstr "Encontrar un listado"
2612
 
2613
+ #: business-directory-plugin.php:1286
2614
  msgctxt "title"
2615
  msgid "View All Listings"
2616
  msgstr "Ver Listados"
2617
 
2618
+ #: business-directory-plugin.php:1306
2619
  msgctxt "title"
2620
  msgid "Listings tagged: %s"
2621
  msgstr "Listados etiquetados: %s"
2622
 
2623
+ #: core/class-csv-import.php:371
2624
  msgctxt "admin csv-import"
2625
  msgid "Could not create listing category \"%s\""
2626
  msgstr "No se pudo crear la categoría \"%s\""
2627
 
2628
+ #: core/class-csv-import.php:515
2629
  msgctxt "admin csv-import"
2630
  msgid "Username \"%s\" does not exist"
2631
  msgstr "El usuario \"%s\" no existe"
2632
 
2633
+ #: core/class-csv-import.php:547
2634
  msgctxt "admin csv-import"
2635
  msgid "Missing required field: %s"
2636
  msgstr "Falta campo requerido: %s"
2637
 
2638
+ #: core/class-csv-import.php:567
2639
  msgctxt "admin csv-import"
2640
  msgid "Listing category \"%s\" does not exist"
2641
  msgstr "La categoría \"%s\" no existe"
2734
  msgid "Featured Listing"
2735
  msgstr "Listado Destacado"
2736
 
2737
+ #: core/class-listing.php:297 core/class-listing.php:323
2738
  msgctxt "listing"
2739
  msgid "(Fee Unavailable)"
2740
  msgstr "(Comisión no disponible)"
2958
  msgid "Directory Search"
2959
  msgstr "Búsqueda"
2960
 
2961
+ #: core/class-settings.php:100
2962
  msgctxt "admin settings"
2963
+ msgid "Search form display"
2964
+ msgstr "Presentación del formulario de búsqueda"
 
 
2965
 
2966
+ #: core/class-settings.php:104
2967
+ msgctxt "admin settings"
2968
+ msgid "Above results"
2969
+ msgstr "Encima de los resultados"
2970
+
2971
+ #: core/class-settings.php:105
2972
+ msgctxt "admin settings"
2973
+ msgid "Below results"
2974
+ msgstr "Debajo de los resultados"
2975
+
2976
+ #: core/class-settings.php:106
2977
+ msgctxt "admin settings"
2978
+ msgid "Don't show with results"
2979
+ msgstr "No mostrar con los resultados"
2980
+
2981
+ #: core/class-settings.php:111
2982
  msgctxt "admin settings"
2983
  msgid ""
2984
  "You have selected a textarea field to be included in quick searches. "
2989
  "rápidas. Búsquedas que involucran este tipo de campos son costosas y pueden "
2990
  "resultar en timeouts o lentitud en general."
2991
 
2992
+ #: core/class-settings.php:113
2993
  msgctxt "admin settings"
2994
  msgid ""
2995
  "Use Ctrl-Click to include multiple fields in the search. Choosing too many "
2999
  "Utilice Ctrl-Click para incluír múltiples campos en la búsqueda. Elegir "
3000
  "muchos campos puede resultar en desempeño de búsquedas disminuído."
3001
 
3002
+ #: core/class-settings.php:116
3003
  msgctxt "admin settings"
3004
  msgid "Quick search fields"
3005
  msgstr "Campos de Búsqueda Rápida"
3006
 
3007
+ #: core/class-settings.php:124
3008
  msgctxt "admin settings"
3009
  msgid "Enable high performance searches?"
3010
  msgstr "Habilitar búsquedas de alto desempeño?"
3011
 
3012
+ #: core/class-settings.php:127
3013
  msgctxt "admin settings"
3014
  msgid ""
3015
  "Enabling this makes BD sacrifice result quality to improve speed. This is "
3020
  "mejorar la velocidad. Es útil cuando se está en planes de hospedaje "
3021
  "compartidos donde el desempeño de la base de datos es un problema."
3022
 
3023
+ #: core/class-settings.php:132
3024
  msgctxt "admin settings"
3025
  msgid "Miscellaneous Settings"
3026
  msgstr "Configuraciones Varias"
3027
 
3028
+ #: core/class-settings.php:136
3029
  msgctxt "admin settings"
3030
  msgid ""
3031
  "Check this if you are having trouble with BD, particularly when importing or "
3034
  "Seleccione esta opción si está teniendo problemas con BD, particularmente al "
3035
  "importar o exportar archivos CSV."
3036
 
3037
+ #: core/class-settings.php:139
3038
  msgctxt "admin settings"
3039
  msgid ""
3040
  "If this compatibility mode doesn't solve your issue, you may be experiencing "
3045
  "sufriendo de un conflicto más serio. <a>Aquí hay un artículo</a> sobre cómo "
3046
  "revisar este tipo de conflictos con Business Directory."
3047
 
3048
+ #: core/class-settings.php:142
3049
  msgctxt "admin settings"
3050
  msgid "Enable AJAX compatibility mode?"
3051
  msgstr "Habilitar modo de compatibilidad AJAX?"
3052
 
3053
+ #: core/class-settings.php:150 core/class-settings.php:651
3054
  msgctxt "admin settings"
3055
  msgid "Listings"
3056
  msgstr "Listados"
3057
 
3058
+ #: core/class-settings.php:151 core/class-settings.php:298
3059
+ #: core/class-settings.php:584
3060
  msgctxt "admin settings"
3061
  msgid "General Settings"
3062
  msgstr "Configuración General"
3063
 
3064
+ #: core/class-settings.php:153
3065
  msgctxt "admin settings"
3066
  msgid "Listings per page"
3067
  msgstr "Listados por página"
3068
 
3069
+ #: core/class-settings.php:154
3070
  msgctxt "admin settings"
3071
  msgid ""
3072
  "Number of listings to show per page. Use a value of \"0\" to show all "
3075
  "Número de listados a mostrar por página. Utilice un valor de \"0\" para "
3076
  "mostrar todos los listados."
3077
 
3078
+ #: core/class-settings.php:156
3079
  msgctxt "admin settings"
3080
  msgid "Listing duration for no-fee sites (in days)"
3081
  msgstr "Duración de Listado para sitios gratuitos (en días)"
3082
 
3083
+ #: core/class-settings.php:157
3084
  msgctxt "admin settings"
3085
  msgid ""
3086
  "Use a value of \"0\" to keep a listing alive indefinitely or enter a number "
3089
  "Utilice un valor de \"0\" para mantener los listados publicados "
3090
  "indefinidamente o ingrese un número menor a 10 años (3650 días)."
3091
 
3092
+ #: core/class-settings.php:163
3093
  msgctxt "admin settings"
3094
  msgid "Include listing contact form on listing pages?"
3095
  msgstr "Incluir formulario de contacto en las páginas de los listados?"
3096
 
3097
+ #: core/class-settings.php:166
3098
  msgctxt "admin settings"
3099
  msgid ""
3100
  "Allows visitors to contact listing authors privately. Authors will receive "
3103
  "Permite a los visitantes contactar a los dueños de los listados de manera "
3104
  "privada. Los dueños recibirán mensajes vía correo electrónico."
3105
 
3106
+ #: core/class-settings.php:169
3107
  msgctxt "admin settings"
3108
  msgid "Require login for using the contact form?"
3109
  msgstr "Requerir login para utilizar el formulario de contacto?"
3110
 
3111
+ #: core/class-settings.php:175
3112
  msgctxt "admin settings"
3113
  msgid "Maximum number of contact form submits per day"
3114
  msgstr "Número máximo de contactos por día"
3115
 
3116
+ #: core/class-settings.php:178
3117
  msgctxt "admin settings"
3118
  msgid ""
3119
  "Use this to prevent spamming of listing owners. 0 means unlimited submits "
3122
  "Utilice esta opción para prevenir el SPAM a los dueños de los listados. 0 "
3123
  "significa ilimitados contactos por día."
3124
 
3125
+ #: core/class-settings.php:184
3126
  msgctxt "admin settings"
3127
  msgid "Include comment form on listing pages?"
3128
  msgstr "Incluir formulario de comentarios en las páginas de los listados?"
3129
 
3130
+ #: core/class-settings.php:187
3131
  msgctxt "admin settings"
3132
  msgid ""
3133
  "Allow visitors to discuss listings using the standard WordPress comment "
3137
  "comentarios estándar de WordPress. Todos los comentarios (no SPAM) son "
3138
  "públicos."
3139
 
3140
+ #: core/class-settings.php:188
3141
  msgctxt "admin settings"
3142
  msgid "Show listings under categories on main page?"
3143
  msgstr "Mostrar listados bajo las categorías en la página principal?"
3144
 
3145
+ #: core/class-settings.php:189
3146
  msgctxt "admin settings"
3147
  msgid "Status of listings upon uninstalling plugin"
3148
  msgstr "Estado de los listados luego de desinstalado el plugin"
3149
 
3150
+ #: core/class-settings.php:191
3151
  msgctxt "admin settings"
3152
  msgid "Status of deleted listings"
3153
  msgstr "Estado de los listados eliminados"
3154
 
3155
+ #: core/class-settings.php:194
3156
  msgctxt "admin settings"
3157
  msgid "Listing Renewal"
3158
  msgstr "Renovación de Listados"
3159
 
3160
+ #: core/class-settings.php:195
3161
  msgctxt "admin settings"
3162
  msgid "Turn on listing renewal option?"
3163
  msgstr "Habilitar la renovación de listados?"
3164
 
3165
+ #: core/class-settings.php:198
3166
  msgctxt "admin settings"
3167
  msgid "Allow recurring renewal payments?"
3168
  msgstr "Permitir pagos recurrentes?"
3169
 
3170
+ #: core/class-settings.php:201
3171
  msgctxt "admin settings"
3172
  msgid ""
3173
  "Allow users to opt in for automatic renewal of their listings. The fee is "
3177
  "comisión será cobrada en el momento en el que el listado llegue a su "
3178
  "vencimiento, sin necesidad de intervención."
3179
 
3180
+ #: core/class-settings.php:205
3181
  msgctxt "admin settings"
3182
  msgid "Use recurring payments as the default payment method?"
3183
  msgstr "Utilizar cobro recurrente como método de pago por defecto?"
3184
 
3185
+ #: core/class-settings.php:208
3186
  msgctxt "admin settings"
3187
  msgid ""
3188
  "Enable automatic renewal without having users opt in during the submit "
3191
  "Habilitar la renovación automática sin que los usuarios deban optar por ella "
3192
  "durante el proceso de envío del listado."
3193
 
3194
+ #: core/class-settings.php:213
3195
  msgctxt "admin settings"
3196
  msgid "Listing renewal e-mail threshold (in days)"
3197
  msgstr "Rango de envío del correo electrónico de renovación (en días)"
3198
 
3199
+ #: core/class-settings.php:216
3200
  msgctxt "admin settings"
3201
  msgid ""
3202
  "Configure how many days before listing expiration is the renewal e-mail sent."
3204
  "Configure con cuántos días de anticipación debe informarse al usuario que su "
3205
  "listado está a punto de expirar."
3206
 
3207
+ #: core/class-settings.php:220
3208
  msgctxt "admin settings"
3209
  msgid ""
3210
  "Send expiration notices including a cancel links to auto-renewed listings?"
3212
  "Enviar notificaciones de expiración incluyendo enlaces para cancelar a los "
3213
  "listados auto-renovados?"
3214
 
3215
+ #: core/class-settings.php:227
3216
  msgctxt "admin settings"
3217
  msgid "Remind listing owners of expired listings (past due)?"
3218
  msgstr ""
3219
  "Recordar a los dueños de listados expirados (después de su expiración)?"
3220
 
3221
+ #: core/class-settings.php:232
3222
  msgctxt "admin settings"
3223
  msgid "Listing renewal reminder e-mail threshold (in days)"
3224
  msgstr "Rango de envío del recordatorio de renovación (en días)"
3225
 
3226
+ #: core/class-settings.php:235
3227
  msgctxt "admin settings"
3228
  msgid ""
3229
  "Configure how many days after the expiration of a listing an e-mail reminder "
3232
  "Configure con cuántos días después de la fecha de expiración de un listado "
3233
  "debe enviarse un recordatorio al dueño."
3234
 
3235
+ #: core/class-settings.php:238
3236
  msgctxt "admin settings"
3237
  msgid "Post/Category Settings"
3238
  msgstr "Configuraciones de publicaciones/categorías"
3239
 
3240
+ #: core/class-settings.php:239
3241
  msgctxt "admin settings"
3242
  msgid "Default new post status"
3243
  msgstr "Estado por defecto de nuevas publicaciones"
3244
 
3245
+ #: core/class-settings.php:242
3246
  msgctxt "admin settings"
3247
  msgid "Edit post status"
3248
  msgstr "Estado tras edición de una publicación"
3249
 
3250
+ #: core/class-settings.php:244
3251
  msgctxt "admin settings"
3252
  msgid "Order categories list by"
3253
  msgstr "Ordenar la lista de categorías por"
3254
 
3255
+ #: core/class-settings.php:246
3256
  msgctxt "admin settings"
3257
  msgid "Name"
3258
  msgstr "Nombre"
3259
 
3260
+ #: core/class-settings.php:247
3261
  msgctxt "admin settings"
3262
  msgid "Slug"
3263
  msgstr "Slug"
3264
 
3265
+ #: core/class-settings.php:248
3266
  msgctxt "admin settings"
3267
  msgid "Listing Count"
3268
  msgstr "Conteo de Listados"
3269
 
3270
+ #: core/class-settings.php:250
3271
  msgctxt "admin settings"
3272
  msgid "Sort order for categories"
3273
  msgstr "Orden de las categorías"
3274
 
3275
+ #: core/class-settings.php:251 core/class-settings.php:269
3276
  msgctxt "admin settings"
3277
  msgid "Ascending"
3278
  msgstr "Ascendente"
3279
 
3280
+ #: core/class-settings.php:251 core/class-settings.php:269
3281
  msgctxt "admin settings"
3282
  msgid "Descending"
3283
  msgstr "Descendente"
3284
 
3285
+ #: core/class-settings.php:252
3286
  msgctxt "admin settings"
3287
  msgid "Show category post count?"
3288
  msgstr "Mostrar conteo de listados para cada categoría?"
3289
 
3290
+ #: core/class-settings.php:253
3291
  msgctxt "admin settings"
3292
  msgid "Hide empty categories?"
3293
  msgstr "Ocultar categorías vacías?"
3294
 
3295
+ #: core/class-settings.php:254
3296
  msgctxt "admin settings"
3297
  msgid "Show only parent categories in category list?"
3298
  msgstr ""
3299
  "Mostrar únicamente las categorías de primer nivel en la lista de categorías?"
3300
 
3301
+ #: core/class-settings.php:256
3302
  msgctxt "admin settings"
3303
  msgid "Listings Sorting"
3304
  msgstr "Ordenamiento de Listados"
3305
 
3306
+ #: core/class-settings.php:257
3307
  msgctxt "admin settings"
3308
  msgid "Order directory listings by"
3309
  msgstr "Ordenar los listados del Directorio por"
3310
 
3311
+ #: core/class-settings.php:259
3312
  msgctxt "admin settings"
3313
  msgid "Title"
3314
  msgstr "Título"
3315
 
3316
+ #: core/class-settings.php:260
3317
  msgctxt "admin settings"
3318
  msgid "Author"
3319
  msgstr "Autor"
3320
 
3321
+ #: core/class-settings.php:261
3322
  msgctxt "admin settings"
3323
  msgid "Date posted"
3324
  msgstr "Fecha de publicación"
3325
 
3326
+ #: core/class-settings.php:262
3327
  msgctxt "admin settings"
3328
  msgid "Date last modified"
3329
  msgstr "Fecha de última modificación"
3330
 
3331
+ #: core/class-settings.php:263
3332
  msgctxt "admin settings"
3333
  msgid "Random"
3334
  msgstr "Aleatorio"
3335
 
3336
+ #: core/class-settings.php:264
3337
  msgctxt "admin settings"
3338
  msgid "Paid first then free. Inside each group by date."
3339
  msgstr "Pagos primero, luego gratuitos. Dentro de cada grupo, por fecha."
3340
 
3341
+ #: core/class-settings.php:265
3342
  msgctxt "admin settings"
3343
  msgid "Paid first then free. Inside each group by title."
3344
  msgstr "Pagos primero, luego gratuitos. Dentro de cada grupo por título."
3345
 
3346
+ #: core/class-settings.php:267
3347
  msgctxt "admin settings"
3348
  msgid "Sort directory listings by"
3349
  msgstr "Orden de los listados"
3350
 
3351
+ #: core/class-settings.php:268
3352
  msgctxt "admin settings"
3353
  msgid "Ascending for ascending order A-Z, Descending for descending order Z-A"
3354
  msgstr ""
3355
  "Ascendente para orden alfabético A-Z; Descendente para orden alfabético Z-A"
3356
 
3357
+ #: core/class-settings.php:273
3358
  msgctxt "admin settings"
3359
  msgid "Enable sort bar?"
3360
  msgstr "Habilitar barra de ordenamiento?"
3361
 
3362
+ #: core/class-settings.php:278
3363
  msgctxt "admin settings"
3364
  msgid "Sortbar Fields"
3365
  msgstr "Campos de \"barra de ordenamiento\""
3366
 
3367
+ #: core/class-settings.php:287
3368
  msgctxt "admin settings"
3369
  msgid "Featured (Sticky) listing settings"
3370
  msgstr "Configuración de Listados Destacados"
3371
 
3372
+ #: core/class-settings.php:288
3373
  msgctxt "admin settings"
3374
  msgid "Offer sticky listings?"
3375
  msgstr "Ofrecer listados destacados?"
3376
 
3377
+ #: core/class-settings.php:289
3378
  msgctxt "admin settings"
3379
  msgid "Offer upgrades during submit process?"
3380
  msgstr "Ofrecer mejoras a destacado durante el proceso de envío?"
3381
 
3382
+ #: core/class-settings.php:290
3383
  msgctxt "admin settings"
3384
  msgid "Sticky listing price"
3385
  msgstr "Precio de Listado Destacado"
3386
 
3387
+ #: core/class-settings.php:291
3388
  msgctxt "admin settings"
3389
  msgid "Sticky listing page description text"
3390
  msgstr "Texto descriptivo para Listados Destacados"
3391
 
3392
+ #: core/class-settings.php:292
3393
  msgctxt "admin settings"
3394
  msgid ""
3395
  "You can upgrade your listing to featured status. Featured listings will "
3398
  "Puede actualizar su listado a Destacado. Los listados destacados aparecen "
3399
  "siempre encima de los listados regulares."
3400
 
3401
+ #: core/class-settings.php:297
3402
  msgctxt "admin settings"
3403
  msgid "E-Mail"
3404
  msgstr "Correo Electrónico"
3405
 
3406
+ #: core/class-settings.php:301
3407
  msgctxt "admin settings"
3408
  msgid "Display email address fields publicly?"
3409
  msgstr "Mostrar direcciones de correo electrónico públicamente?"
3410
 
3411
+ #: core/class-settings.php:304
3412
  msgctxt "admin settings"
3413
  msgid ""
3414
  "Shows the email address of the listing owner to all web users. NOT "
3419
  "a todos los usuarios. NO RECOMENDADO pues puede resultar en un aumento de "
3420
  "spam."
3421
 
3422
+ #: core/class-settings.php:307
3423
  msgctxt "admin settings"
3424
  msgid "How to determine the listing's email address?"
3425
  msgstr "Cómo determinar el correo electrónico de un listado?"
3426
 
3427
+ #: core/class-settings.php:310
3428
  msgctxt "admin settings"
3429
  msgid ""
3430
  "This affects emails sent to listing owners via contact forms or when their "
3433
  "Esta configuración afecta cómo los dueños de los listados son contactados "
3434
  "cuando sus listados expiran o a través de los formularios de contacto."
3435
 
3436
+ #: core/class-settings.php:317
3437
  msgctxt "admin settings"
3438
  msgid "E-Mail Notifications"
3439
  msgstr "Notificaciones de correo-e"
3440
 
3441
+ #: core/class-settings.php:320
3442
  msgctxt "admin settings"
3443
  msgid "Notify admin via e-mail when..."
3444
  msgstr "Notificar al administrador cuando..."
3445
 
3446
+ #: core/class-settings.php:324
3447
  msgctxt "admin settings"
3448
  msgid "A new listing is submitted."
3449
  msgstr "Un nuevo listado ha sido enviado."
3450
 
3451
+ #: core/class-settings.php:325
3452
  msgctxt "admin settings"
3453
  msgid "A listing is edited."
3454
  msgstr "Un listado es editado."
3455
 
3456
+ #: core/class-settings.php:326
3457
  msgctxt "admin settings"
3458
  msgid "A listing expires."
3459
  msgstr "Un listado expira."
3460
 
3461
+ #: core/class-settings.php:327
3462
  msgctxt "admin settings"
3463
  msgid "A contact message is sent to a listing's owner."
3464
  msgstr "Un mensaje de contacto es enviado al dueño del listado."
3465
 
3466
+ #: core/class-settings.php:333
3467
  msgctxt "admin settings"
3468
  msgid "CC this e-mail address too"
3469
  msgstr "Copiar a esta dirección de correo también"
3470
 
3471
+ #: core/class-settings.php:339
3472
  msgctxt "admin settings"
3473
  msgid "Notify users via e-mail when..."
3474
  msgstr "Notificar usuarios vía correo-e cuando..."
3475
 
3476
+ #: core/class-settings.php:342
3477
  msgctxt "admin settings"
3478
  msgid "You can modify the text template used for most of these e-mails below."
3479
  msgstr ""
3480
  "Puede modificar la plantilla de texto utilizada para la mayoría de estos "
3481
  "correos electrónicos abajo."
3482
 
3483
+ #: core/class-settings.php:343
3484
  msgctxt "admin settings"
3485
  msgid "Their listing is submitted."
3486
  msgstr "Su listado ha sido recibido."
3487
 
3488
+ #: core/class-settings.php:344
3489
  msgctxt "admin settings"
3490
  msgid "Their listing is approved/published."
3491
  msgstr "Su listado ha sido aprobado/publicado."
3492
 
3493
+ #: core/class-settings.php:353
3494
  msgctxt "contact email"
3495
  msgid "You have received a reply from your listing at %s."
3496
  msgstr "Ha recibido una comunicación para su listado en %s."
3497
 
3498
+ #: core/class-settings.php:354
3499
  msgctxt "contact email"
3500
  msgid "Name: %s"
3501
  msgstr "Nombre: %s"
3502
 
3503
+ #: core/class-settings.php:355
3504
  msgctxt "contact email"
3505
  msgid "E-Mail: %s"
3506
  msgstr "Correo Electrónico: %s"
3507
 
3508
+ #: core/class-settings.php:356
3509
  msgctxt "contact email"
3510
  msgid "Message:"
3511
  msgstr "Mensaje:"
3512
 
3513
+ #: core/class-settings.php:358
3514
  msgctxt "contact email"
3515
  msgid "Time: %s"
3516
  msgstr "Hora: %s"
3517
 
3518
+ #: core/class-settings.php:360
3519
  msgctxt "admin settings"
3520
  msgid "E-Mail Templates"
3521
  msgstr "Plantillas de Correo Electrónico"
3522
 
3523
+ #: core/class-settings.php:363
3524
  msgctxt "admin settings"
3525
  msgid "Email confirmation message"
3526
  msgstr "Mensaje de Confirmación"
3527
 
3528
+ #: core/class-settings.php:367
3529
  msgctxt "admin settings"
3530
  msgid "Sent after a listing has been submitted."
3531
  msgstr "Enviado luego de que el listado ha sido recibido."
3532
 
3533
+ #: core/class-settings.php:368 core/class-settings.php:376
3534
+ #: core/class-settings.php:417
3535
  msgctxt "admin settings"
3536
  msgid "Listing's title"
3537
  msgstr "Título del Listado"
3538
 
3539
+ #: core/class-settings.php:371
3540
  msgctxt "admin settings"
3541
  msgid "Listing published message"
3542
  msgstr "Mensaje de listado publicado"
3543
 
3544
+ #: core/class-settings.php:374
3545
  msgctxt "admin settings"
3546
  msgid ""
3547
  "Your listing \"[listing]\" is now available at [listing-url] and can be "
3550
  "Su listado \"[listing]\" está ahora disponible en [listing-url] y puede ser "
3551
  "visto por el público."
3552
 
3553
+ #: core/class-settings.php:375
3554
  msgctxt "admin settings"
3555
  msgid "Sent when the listing has been published or approved by an admin."
3556
  msgstr ""
3557
  "Enviado cuando el listado ha sido publicado o aprobado por un administrador."
3558
 
3559
+ #: core/class-settings.php:377
3560
  msgctxt "admin settings"
3561
  msgid "Listing's URL"
3562
  msgstr "URL del listado"
3563
 
3564
+ #: core/class-settings.php:381
3565
  msgctxt "admin settings"
3566
  msgid "Listing Contact Message"
3567
  msgstr "Mensaje de contacto"
3568
 
3569
+ #: core/class-settings.php:385
3570
  msgctxt "admin settings"
3571
  msgid ""
3572
  "Sent to listing owners when someone uses the contact form on their listing "
3575
  "Enviado a los dueños de listados cuando alguien utiliza el formulario de "
3576
  "contacto en sus páginas."
3577
 
3578
+ #: core/class-settings.php:395
3579
  msgctxt "admin settings"
3580
  msgid "Payment related"
3581
  msgstr "Relativo al pago"
3582
 
3583
+ #: core/class-settings.php:412
3584
  msgctxt "admin settings"
3585
  msgid "Payment abandoned reminder message"
3586
  msgstr "Recordatorio de pagos abandonados"
3587
 
3588
+ #: core/class-settings.php:416
3589
  msgctxt "admin settings"
3590
  msgid "Sent some time after a pending payment is abandoned by users."
3591
  msgstr ""
3592
  "Enviado algún tiempo después de que un pago pendiente es abandonado por los "
3593
  "usuarios."
3594
 
3595
+ #: core/class-settings.php:418
3596
  msgctxt "admin settings"
3597
  msgid "Checkout URL link"
3598
  msgstr "Link a la URL de pago"
3599
 
3600
+ #: core/class-settings.php:424
3601
  msgctxt "admin settings"
3602
  msgid "Renewal Reminders"
3603
  msgstr "Recordatorios de Renovación"
3604
 
3605
+ #: core/class-settings.php:427
3606
  msgctxt "admin settings"
3607
  msgid ""
3608
  "This section refers only to the text of the renewal/expiration notices. You "
3612
  "renovación/expiración. También puede <a>configurar cuándo estos correos son "
3613
  "enviados</a>."
3614
 
3615
+ #: core/class-settings.php:431
3616
  msgctxt "admin settings"
3617
  msgid "Pending expiration e-mail message"
3618
  msgstr "Mensaje correo electrónico sobre expiración pendiente"
3619
 
3620
+ #: core/class-settings.php:435
3621
  msgctxt "settings"
3622
  msgid ""
3623
  "Sent some time before the listing expires. Applies to non-recurring renewals "
3626
  "Enviado un tiempo antes de que el listado expire. Aplica para renovaciones "
3627
  "no recurrentes únicamente."
3628
 
3629
+ #: core/class-settings.php:436 core/class-settings.php:449
3630
+ #: core/class-settings.php:462 core/class-settings.php:475
3631
+ #: core/class-settings.php:488
3632
  msgctxt "settings"
3633
  msgid "Listing's name (with link)"
3634
  msgstr "Título del listado (con enlace)"
3635
 
3636
+ #: core/class-settings.php:437 core/class-settings.php:450
3637
+ #: core/class-settings.php:463 core/class-settings.php:476
3638
+ #: core/class-settings.php:489
3639
  msgctxt "settings"
3640
  msgid "Author's name"
3641
  msgstr "Autor del listado"
3642
 
3643
+ #: core/class-settings.php:438 core/class-settings.php:451
3644
+ #: core/class-settings.php:490
3645
  msgctxt "settings"
3646
  msgid "Expiration date"
3647
  msgstr "Fecha de expiración"
3648
 
3649
+ #: core/class-settings.php:439
3650
  msgctxt "settings"
3651
  msgid "Category that is going to expire"
3652
  msgstr "Categoría que va a expirar"
3653
 
3654
+ #: core/class-settings.php:440 core/class-settings.php:453
3655
+ #: core/class-settings.php:492
3656
  msgctxt "settings"
3657
  msgid "Link to renewal page"
3658
  msgstr "Enlace a la página de renovación"
3659
 
3660
+ #: core/class-settings.php:441 core/class-settings.php:454
3661
+ #: core/class-settings.php:466 core/class-settings.php:479
3662
+ #: core/class-settings.php:493
3663
  msgctxt "settings"
3664
  msgid "Link to your site"
3665
  msgstr "Enlace a su sitio"
3666
 
3667
+ #: core/class-settings.php:444
3668
  msgctxt "admin settings"
3669
  msgid "Listing Renewal e-mail message"
3670
  msgstr "Mensaje de correo electrónico sobre Renovación del Listado"
3671
 
3672
+ #: core/class-settings.php:448
3673
  msgctxt "settings"
3674
  msgid ""
3675
  "Sent at the time of listing expiration. Applies to non-recurring renewals "
3678
  "Enviado al momento de expiración del listado. Aplica a renovaciones no "
3679
  "recurrentes únicamente."
3680
 
3681
+ #: core/class-settings.php:452 core/class-settings.php:491
3682
  msgctxt "settings"
3683
  msgid "Category that expired"
3684
  msgstr "Categoría que expiró"
3685
 
3686
+ #: core/class-settings.php:457
3687
  msgctxt "admin settings"
3688
  msgid "Listing auto-renewal reminder (recurring payments)"
3689
  msgstr "Recordatorio de auto-renovación del listado (pagos recurrentes)"
3690
 
3691
+ #: core/class-settings.php:461
3692
  msgctxt "settings"
3693
  msgid ""
3694
  "Sent some time before the listing is auto-renewed. Applies to recurring "
3697
  "Enviado algún tiempo antes de que el listado sea auto-renovado. Aplica a "
3698
  "renovaciones recurrentes únicamente."
3699
 
3700
+ #: core/class-settings.php:464 core/class-settings.php:478
3701
  msgctxt "settings"
3702
  msgid "Renewal date"
3703
  msgstr "Fecha de renovación"
3704
 
3705
+ #: core/class-settings.php:465
3706
  msgctxt "settings"
3707
  msgid "Category that is going to be renewed"
3708
  msgstr "Categoría que será renovada"
3709
 
3710
+ #: core/class-settings.php:467
3711
  msgctxt "settings"
3712
  msgid "Link to manage subscriptions"
3713
  msgstr "Enlace a la página de administración de pagos recurrentes"
3714
 
3715
+ #: core/class-settings.php:470
3716
  msgctxt "admin settings"
3717
  msgid "Listing Renewal e-mail message (recurring payments)"
3718
  msgstr ""
3719
  "Mensaje de correo electrónico sobre Renovación del Listado (para pago "
3720
  "automático)"
3721
 
3722
+ #: core/class-settings.php:474
3723
  msgctxt "settings"
3724
  msgid ""
3725
  "Sent after the listing is auto-renewed. Applies to recurring renewals only."
3727
  "Enviado luego de que el listado sea auto-renovado. Aplica a renovaciones "
3728
  "recurrentes únicamente."
3729
 
3730
+ #: core/class-settings.php:477
3731
  msgctxt "settings"
3732
  msgid "Renewed category"
3733
  msgstr "Categoría renovada"
3734
 
3735
+ #: core/class-settings.php:483
3736
  msgctxt "admin settings"
3737
  msgid "Renewal reminder e-mail message"
3738
  msgstr "Recordatorio por correo electrónico de renovación del listado"
3739
 
3740
+ #: core/class-settings.php:487
3741
  msgctxt "settings"
3742
  msgid ""
3743
  "Sent some time after listing expiration and when no renewal has occurred. "
3746
  "Enviado un tiempo después de que el listado expire y no haya sido renovado. "
3747
  "Aplica tanto a renovaciones recurrentes como no recurrentes."
3748
 
3749
+ #: core/class-settings.php:497
3750
  msgctxt "admin settings"
3751
  msgid "Payment"
3752
  msgstr "Pago"
3753
 
3754
+ #: core/class-settings.php:498
3755
  msgctxt "admin settings"
3756
  msgid "Payment Settings"
3757
  msgstr "Configuración de Pago"
3758
 
3759
+ #: core/class-settings.php:501
3760
  msgctxt "admin settings"
3761
  msgid "Turn On payments?"
3762
  msgstr "Activar pagos?"
3763
 
3764
+ #: core/class-settings.php:503
3765
  msgctxt "admin settings"
3766
  msgid "Put payment gateways in test mode?"
3767
  msgstr "Utilizar las pasarelas de pago en modo de prueba?"
3768
 
3769
+ #: core/class-settings.php:508
3770
  msgctxt "admin settings"
3771
  msgid "Perform checkouts on the secure (HTTPS) version of your site?"
3772
  msgstr "Realizar pagos en la versión segura (HTTPS) de su sitio?"
3773
 
3774
+ #: core/class-settings.php:511
3775
  msgctxt "admin settings"
3776
  msgid ""
3777
  "Recommended for added security. For this to work you need to enable HTTPS on "
3780
  "Recomendado para seguridad extra. Para que funcione debe tener habilitado "
3781
  "HTTPS en su servidor y <a>obtener un certificado SSL</a>."
3782
 
3783
+ #: core/class-settings.php:515
3784
  msgctxt "admin settings"
3785
  msgid "Currency Code"
3786
  msgstr "Código de Moneda"
3787
 
3788
+ #: core/class-settings.php:517
3789
  msgctxt "admin settings"
3790
  msgid "Australian Dollar (AUD)"
3791
  msgstr "Dólar Australiano (AUD)"
3792
 
3793
+ #: core/class-settings.php:518
3794
  msgctxt "admin settings"
3795
  msgid "Brazilian Real (BRL)"
3796
  msgstr "Real Brasilero (BRL)"
3797
 
3798
+ #: core/class-settings.php:519
3799
  msgctxt "admin settings"
3800
  msgid "Canadian Dollar (CAD)"
3801
  msgstr "Dólar Canadiense (CAD)"
3802
 
3803
+ #: core/class-settings.php:520
3804
  msgctxt "admin settings"
3805
  msgid "Czech Koruna (CZK)"
3806
  msgstr "Corona Checa (CZK)"
3807
 
3808
+ #: core/class-settings.php:521
3809
  msgctxt "admin settings"
3810
  msgid "Danish Krone (DKK)"
3811
  msgstr "Corona Danesa (DKK)"
3812
 
3813
+ #: core/class-settings.php:522
3814
  msgctxt "admin settings"
3815
  msgid "Euro (EUR)"
3816
  msgstr "Euro (EUR)"
3817
 
3818
+ #: core/class-settings.php:523
3819
  msgctxt "admin settings"
3820
  msgid "Hong Kong Dollar (HKD)"
3821
  msgstr "Dólar de Hong Kong (HKD)"
3822
 
3823
+ #: core/class-settings.php:524
3824
  msgctxt "admin settings"
3825
  msgid "Hungarian Forint (HUF)"
3826
  msgstr "Forinte Húngaro (HUF)"
3827
 
3828
+ #: core/class-settings.php:525
3829
  msgctxt "admin settings"
3830
  msgid "Israeli New Shequel (ILS)"
3831
  msgstr "Nuevo Shékel Israelí (ILS)"
3832
 
3833
+ #: core/class-settings.php:526
3834
  msgctxt "admin settings"
3835
  msgid "Japanese Yen (JPY)"
3836
  msgstr "Yen Japonés (JPY)"
3837
 
3838
+ #: core/class-settings.php:527
3839
  msgctxt "admin settings"
3840
  msgid "Malasian Ringgit (MYR)"
3841
  msgstr "Ringgit de Malasia (MYR)"
3842
 
3843
+ #: core/class-settings.php:528
3844
  msgctxt "admin settings"
3845
  msgid "Mexican Peso (MXN)"
3846
  msgstr "Peso Mexicano (MXN)"
3847
 
3848
+ #: core/class-settings.php:529
3849
  msgctxt "admin settings"
3850
  msgid "Norwegian Krone (NOK)"
3851
  msgstr "Corona Noruega (NOK)"
3852
 
3853
+ #: core/class-settings.php:530
3854
  msgctxt "admin settings"
3855
  msgid "New Zealand Dollar (NZD)"
3856
  msgstr "Dólar de Nueva Zelanda (NZD)"
3857
 
3858
+ #: core/class-settings.php:531
3859
  msgctxt "admin settings"
3860
  msgid "Philippine Peso (PHP)"
3861
  msgstr "Peso Filipino (PHP)"
3862
 
3863
+ #: core/class-settings.php:532
3864
  msgctxt "admin settings"
3865
  msgid "Polish Zloty (PLN)"
3866
  msgstr "Zloty Polaco (PLN)"
3867
 
3868
+ #: core/class-settings.php:533
3869
  msgctxt "admin settings"
3870
  msgid "Pound Sterling (GBP)"
3871
  msgstr "Libra Esterlina (GBP)"
3872
 
3873
+ #: core/class-settings.php:534
3874
  msgctxt "admin settings"
3875
  msgid "Singapore Dollar (SGD)"
3876
  msgstr "Dólar de Singapur (SGD)"
3877
 
3878
+ #: core/class-settings.php:535
3879
  msgctxt "admin settings"
3880
  msgid "Swedish Krona (SEK)"
3881
  msgstr "Corona Sueca (SEK)"
3882
 
3883
+ #: core/class-settings.php:536
3884
  msgctxt "admin settings"
3885
  msgid "Swiss Franc (CHF)"
3886
  msgstr "Franco Suizo (CHF)"
3887
 
3888
+ #: core/class-settings.php:537
3889
  msgctxt "admin settings"
3890
  msgid "Taiwan Dollar (TWD)"
3891
  msgstr "Dólar de Taiwán (TWD)"
3892
 
3893
+ #: core/class-settings.php:538
3894
  msgctxt "admin settings"
3895
  msgid "Thai Baht (THB)"
3896
  msgstr "Baht de Tailandia (THB)"
3897
 
3898
+ #: core/class-settings.php:539
3899
  msgctxt "admin settings"
3900
  msgid "Turkish Lira (TRY)"
3901
  msgstr "Lira Turca (TRY)"
3902
 
3903
+ #: core/class-settings.php:540
3904
  msgctxt "admin settings"
3905
  msgid "U.S. Dollar (USD)"
3906
  msgstr "Dólar Americano (USD)"
3907
 
3908
+ #: core/class-settings.php:544
3909
  msgctxt "admin settings"
3910
  msgid "Currency Symbol"
3911
  msgstr "Símbolo de Moneda"
3912
 
3913
+ #: core/class-settings.php:549
3914
  msgctxt "admin settings"
3915
  msgid "Currency symbol display"
3916
  msgstr "Presentación de símbolo de moneda"
3917
 
3918
+ #: core/class-settings.php:553
3919
  msgctxt "admin settings"
3920
  msgid "Show currency symbol on the left"
3921
  msgstr "Mostrar el símbolo de moneda a la izquierda"
3922
 
3923
+ #: core/class-settings.php:554
3924
  msgctxt "admin settings"
3925
  msgid "Show currency symbol on the right"
3926
  msgstr "Mostrar el símbolo de moneda a la derecha"
3927
 
3928
+ #: core/class-settings.php:555
3929
  msgctxt "admin settings"
3930
  msgid "Do not show currency symbol"
3931
  msgstr "No mostrar el símbolo de moneda"
3932
 
3933
+ #: core/class-settings.php:557
3934
  msgctxt "admin settings"
3935
  msgid "Thank you for payment message"
3936
  msgstr "Mensaje de agradecimiento por el pago"
3937
 
3938
+ #: core/class-settings.php:558
3939
  msgctxt "admin settings"
3940
  msgid ""
3941
  "Thank you for your payment. Your payment is being verified and your listing "
3944
  "Gracias por su pago. Su pago está siendo verificado y su listado revisado. "
3945
  "Este proceso puede tardar hasta 48 horas."
3946
 
3947
+ #: core/class-settings.php:563
3948
  msgctxt "admin settings"
3949
  msgid "Ask users to come back for abandoned payments?"
3950
  msgstr ""
3951
  "Contactar a los usuarios para pedirles que regresen a pagar pagos pendientes?"
3952
 
3953
+ #: core/class-settings.php:566
3954
  msgctxt "admin settings"
3955
  msgid ""
3956
  "An abandoned payment is when a user attempts to place a listing and gets to "
3963
  "en listados que parece que fallaron cuando el usuario simplemente no "
3964
  "completó la transacción. BD puede recordarles para que efectúen el pago."
3965
 
3966
+ #: core/class-settings.php:572
3967
  msgctxt "admin settings"
3968
  msgid "Listing abandonment threshold (hours)"
3969
  msgstr "Tiempo tras el cual el listado es considerado abandonado (en horas)"
3970
 
3971
+ #: core/class-settings.php:577
3972
  msgctxt "admin settings"
3973
  msgid ""
3974
  "Listings with pending payments are marked as abandoned after this time. You "
3978
  "tiempo. También puede <a>personalizar el correo-e</a> que los usuarios "
3979
  "reciben."
3980
 
3981
+ #: core/class-settings.php:583
3982
+ msgctxt "admin settings"
3983
+ msgid "Themes"
3984
+ msgstr ""
3985
+
3986
+ #: core/class-settings.php:588
3987
+ msgctxt "admin settings"
3988
+ msgid "Theme button style"
3989
+ msgstr ""
3990
+
3991
+ #: core/class-settings.php:592
3992
+ msgctxt "admin settings"
3993
+ msgid "Use the BD theme style for BD buttons"
3994
+ msgstr ""
3995
+
3996
+ #: core/class-settings.php:593
3997
+ msgctxt "admin settings"
3998
+ msgid "Use the WP theme style for BD buttons"
3999
+ msgstr ""
4000
+
4001
+ #: core/class-settings.php:599
4002
  msgctxt "admin settings"
4003
  msgid "Registration"
4004
  msgstr "Registro"
4005
 
4006
+ #: core/class-settings.php:600
4007
+ msgid ""
4008
+ "We expect that a membership plugin supports the 'redirect_to' parameter for "
4009
+ "the URLs below to work. If the plugin does not support them, these settings "
4010
+ "will not function as expected. Please contact the membership plugin and ask "
4011
+ "them to support the WP standard 'redirect_to' query parameter."
4012
+ msgstr ""
4013
+ "Esperamos que el plugin de membresía soporte el parámetro 'redirect_to' para "
4014
+ "que las URLs de abajo funcionen. Si el plugin no lo soporta, estas "
4015
+ "configuraciones no funcionarán como es esperado."
4016
+
4017
+ #: core/class-settings.php:603
4018
  msgctxt "admin settings"
4019
  msgid "Registration Settings"
4020
  msgstr "Configuración de Registro"
4021
 
4022
+ #: core/class-settings.php:604
4023
  msgctxt "admin settings"
4024
  msgid "Require login to post listings?"
4025
  msgstr "Requerir login para publicar listados?"
4026
 
4027
+ #: core/class-settings.php:609
4028
+ msgctxt "admin settings"
4029
+ msgid "Login URL"
4030
+ msgstr "URL de login"
4031
+
4032
+ #: core/class-settings.php:612
4033
+ msgctxt "admin settings"
4034
+ msgid ""
4035
+ "URL of your membership plugin's login page. Only enter this if using a "
4036
+ "membership plugin or custom login page."
4037
+ msgstr ""
4038
+ "URL para la página de login de su plugin de membresía. Ingrese esta "
4039
+ "información únicamente si utiliza un plugin de membresía o una página de "
4040
+ "login especial."
4041
+
4042
+ #: core/class-settings.php:617
4043
  msgctxt "admin settings"
4044
  msgid "Registration URL"
4045
  msgstr "URL de Registro"
4046
 
4047
+ #: core/class-settings.php:620
4048
  msgctxt "admin settings"
4049
  msgid ""
4050
  "URL of your membership plugin's registration page. Only enter this if using "
4054
  "información únicamente si utiliza un plugin de membresía o una página de "
4055
  "registro especial."
4056
 
4057
+ #: core/class-settings.php:624
4058
  msgctxt "admin settings"
4059
  msgid "Image"
4060
  msgstr "Imágenes"
4061
 
4062
+ #: core/class-settings.php:625
4063
  msgctxt "admin settings"
4064
  msgid ""
4065
  "Any changes to these settings will affect new listings only. Existing "
4072
  "existentes, deberá subir de nuevo las imágenes necesarias luego de hacer los "
4073
  "cambios aquí."
4074
 
4075
+ #: core/class-settings.php:626
4076
  msgctxt "admin settings"
4077
  msgid "Image Settings"
4078
  msgstr "Configuración de Imágenes"
4079
 
4080
+ #: core/class-settings.php:627
4081
  msgctxt "admin settings"
4082
  msgid "Allow images?"
4083
  msgstr "Permitir imágenes?"
4084
 
4085
+ #: core/class-settings.php:629
4086
  msgctxt "admin settings"
4087
  msgid "Min Image File Size (KB)"
4088
  msgstr "Tamaño mínimo de imagen (KB)"
4089
 
4090
+ #: core/class-settings.php:630
4091
  msgctxt "admin settings"
4092
  msgid "Max Image File Size (KB)"
4093
  msgstr "Tamaño máximo de imagen (KB)"
4094
 
4095
+ #: core/class-settings.php:632
4096
  msgctxt "admin settings"
4097
  msgid "Min image width (px)"
4098
  msgstr "Ancho mínimo de imagen (en px)"
4099
 
4100
+ #: core/class-settings.php:633
4101
  msgctxt "admin settings"
4102
  msgid "Min image height (px)"
4103
  msgstr "Alto mínimo de imagen (en px)"
4104
 
4105
+ #: core/class-settings.php:635
4106
  msgctxt "admin settings"
4107
  msgid "Max image width (px)"
4108
  msgstr "Ancho máximo de imagen (px)"
4109
 
4110
+ #: core/class-settings.php:636
4111
  msgctxt "admin settings"
4112
  msgid "Max image height (px)"
4113
  msgstr "Alto máximo de imagen (px)"
4114
 
4115
+ #: core/class-settings.php:638
4116
  msgctxt "admin settings"
4117
  msgid "Turn on thickbox/lightbox?"
4118
  msgstr "Activar Thickbox/Lightbox?"
4119
 
4120
+ #: core/class-settings.php:638
4121
  msgctxt "admin settings"
4122
  msgid ""
4123
  "Uncheck if it conflicts with other elements or plugins installed on your site"
4125
  "Desmarque si entra en conflicto con otros elementos o plugins instalados en "
4126
  "su sitio"
4127
 
4128
+ #: core/class-settings.php:640
4129
  msgctxt "admin settings"
4130
  msgid "Thumbnails"
4131
  msgstr "Imágenes de previsualización"
4132
 
4133
+ #: core/class-settings.php:641
4134
  msgctxt "admin settings"
4135
  msgid "Thumbnail width (px)"
4136
  msgstr "Ancho de thumbnail (px)"
4137
 
4138
+ #: core/class-settings.php:642
4139
  msgctxt "admin settings"
4140
  msgid "Thumbnail height (px)"
4141
  msgstr "Alto de thumbnail (px)"
4142
 
4143
+ #: core/class-settings.php:645
4144
  msgctxt "admin settings"
4145
  msgid "Crop thumbnails to exact dimensions?"
4146
  msgstr "Cortar imágenes de previsualización a las dimensiones exactas?"
4147
 
4148
+ #: core/class-settings.php:648
4149
  msgctxt "admin settings"
4150
  msgid ""
4151
  "When enabled images will match exactly the dimensions above but part of the "
4159
  "alto será ajustado proporcionalmente. Dependiendo de las imágenes que se "
4160
  "hayan utilizado, estas podrían tener diferentes alturas."
4161
 
4162
+ #: core/class-settings.php:654
4163
  msgctxt "admin settings"
4164
  msgid "Number of free images"
4165
  msgstr "Número de imágenes gratuitas"
4166
 
4167
+ #: core/class-settings.php:659
4168
  msgctxt "admin settings"
4169
  msgid ""
4170
  "For paid listing images, configure that by adding or editing a <a>Fee Plan</"
4173
  "Configure las imágenes de listados pagos agregando o editando una "
4174
  "<a>comisión</a> pues este valor será ignorado para listados pagos."
4175
 
4176
+ #: core/class-settings.php:660
4177
  msgctxt "admin settings"
4178
  msgid "Use default picture for listings with no picture?"
4179
  msgstr "Utilizar imagen por defecto en listados sin imagen?"
4180
 
4181
+ #: core/class-settings.php:661
4182
  msgctxt "admin settings"
4183
  msgid "Show Thumbnail on main listings page?"
4184
  msgstr "Mostrar thumbnails en las páginas principales?"
4185
 
4186
+ #: core/class-settings.php:717
4187
  msgctxt "admin settings"
4188
  msgid ""
4189
  "Could not copy the AJAX compatibility plugin \"%s\". Compatibility mode was "
4192
  "No se pudo copiar el plugin de compatibilidad AJAX \"%s\". El modo de "
4193
  "compatibilidad no fue activado."
4194
 
4195
+ #: core/class-settings.php:725
4196
  msgctxt "admin settings"
4197
  msgid ""
4198
  "Could not activate AJAX Compatibility mode: the directory \"%s\" could not "
4201
  "No se pudo activar el modo de compatibilidad AJAX: el directorio \"%s\" no "
4202
  "pudo ser creado."
4203
 
4204
+ #: core/class-settings.php:734
4205
  msgctxt "admin settings"
4206
  msgid ""
4207
  "Could not remove the \"Business Directory Plugin - AJAX Compatibility Module"
4210
  "No se pudo remover \"Business Directory Plugin - AJAX Compatibility Module"
4211
  "\". Por favor elimine el archivo \"%s\" manualmente o desactive el plugin."
4212
 
4213
+ #: core/class-settings.php:1033
4214
  msgctxt "settings"
4215
  msgid "Deactivate License"
4216
  msgstr "Desactivar Licencia"
4217
 
4218
+ #: core/class-settings.php:1035
4219
  msgctxt "settings"
4220
  msgid "Deactivating license..."
4221
  msgstr "Desactivando licencia..."
4222
 
4223
+ #: core/class-settings.php:1038
4224
  msgctxt "settings"
4225
  msgid "Activate License"
4226
  msgstr "Activar Licencia"
4227
 
4228
+ #: core/class-settings.php:1040
4229
  msgctxt "settings"
4230
  msgid "Activating license..."
4231
  msgstr "Activando licencia..."
4232
 
4233
+ #: core/class-settings.php:1064
4234
  msgctxt "admin settings"
4235
  msgid "Valid placeholders: %s"
4236
  msgstr "Comodines válidos: %s"
4237
 
4238
+ #: core/class-settings.php:1098
4239
  msgctxt "settings email"
4240
  msgid "Click to edit e-mail"
4241
  msgstr "Click para editar el correo"
4242
 
4243
+ #: core/class-settings.php:1099
4244
  msgctxt "settings email"
4245
  msgid "Click to edit"
4246
  msgstr "Click para editar"
4247
 
4248
+ #: core/class-settings.php:1112
4249
  msgctxt "settings email"
4250
  msgid "E-Mail Subject"
4251
  msgstr "Título del correo"
4252
 
4253
+ #: core/class-settings.php:1123
4254
  msgctxt "settings email"
4255
  msgid "E-Mail Body"
4256
  msgstr "Cuerpo del correo"
4257
 
4258
+ #: core/class-settings.php:1134
4259
  msgctxt "settings email"
4260
  msgid "You can use the following placeholders:"
4261
  msgstr "Puede utilizar los siguientes comodines:"
4262
 
4263
+ #: core/class-settings.php:1157
4264
  msgctxt "settings email"
4265
  msgid "Preview e-mail"
4266
  msgstr "Previsualizar correo"
4267
 
4268
+ #: core/class-settings.php:1158
4269
  msgctxt "settings email"
4270
  msgid "Cancel"
4271
  msgstr "Cancelar"
4272
 
4273
+ #: core/class-settings.php:1159
4274
  msgctxt "settings email"
4275
  msgid "Save Changes"
4276
  msgstr "Guardar Cambios"
4277
 
4278
+ #: core/class-settings.php:1178
4279
  msgctxt "settings email"
4280
  msgid "Site title"
4281
  msgstr "Título del sitio"
4282
 
4283
+ #: core/class-settings.php:1181
4284
  msgctxt "settings email"
4285
  msgid "Site title (with link)"
4286
  msgstr "Título del listado (con enlace)"
4287
 
4288
+ #: core/class-settings.php:1184
4289
  msgctxt "settings email"
4290
  msgid "Site address (with link)"
4291
  msgstr "Dirección del listado (con enlace)"
4292
 
4293
+ #: core/class-settings.php:1187
4294
  msgctxt "settings email"
4295
  msgid "Directory URL (with link)"
4296
  msgstr "URL del Directorio (con enlace)"
4297
 
4298
+ #: core/class-settings.php:1190
4299
  msgctxt "settings email"
4300
  msgid "Current date"
4301
  msgstr "Fecha actual"
4302
 
4303
+ #: core/class-settings.php:1193
4304
  msgctxt "settings email"
4305
  msgid "Current time"
4306
  msgstr "Hora actual"
4702
  msgid "Transaction Key is missing."
4703
  msgstr "Falta la clave de transacciones."
4704
 
4705
+ #: core/gateways-authorize-net.php:92
4706
  msgctxt "authorize-net"
4707
  msgid ""
4708
  "The payment gateway didn't accept your credit card or billing information. "
4711
  "La pasarela de pago no aceptó su tarjeta de crédito o información de pago. "
4712
  "La razón dada fue \"%s\"."
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 "
4720
  "Su pago está en proceso de verificación por la pasarela de pago. La razón "
4721
  "dada fue: \"%s\"."
4722
 
4723
+ #: core/gateways-authorize-net.php:99 core/gateways-authorize-net.php:122
4724
  msgctxt "authorize-net"
4725
  msgid "Payment was rejected. The following reason was given: \"%s\"."
4726
  msgstr "El pago fue rechazado. La razón dada fue: \"%s\"."
4727
 
4728
+ #: core/gateways-authorize-net.php:116
4729
+ msgctxt "authorize-net"
4730
+ msgid "Setup fee"
4731
+ msgstr "Comisión de configuración"
4732
+
4733
+ #: core/gateways-authorize-net.php:173
4734
  msgctxt "authorize-net"
4735
  msgid "Could not process payment."
4736
  msgstr "No se pudo procesar el pago."
4844
  msgid "Destination dir \"%s\" is not writable."
4845
  msgstr ""
4846
 
4847
+ #: core/helpers/class-themes-updater.php:126
4848
+ msgctxt "themes"
4849
+ msgid "Updating theme..."
4850
+ msgstr ""
4851
+
4852
+ #: core/helpers/class-themes-updater.php:127
4853
+ msgctxt "themes"
4854
+ msgid "Theme updated."
4855
+ msgstr ""
4856
+
4857
+ #: core/helpers/class-themes-updater.php:129
4858
+ msgctxt "themes"
4859
+ msgid "New version available (<b>%s</b>). <a>Update now.</a>"
4860
+ msgstr ""
4861
+
4862
+ #: core/helpers/class-themes-updater.php:157
4863
+ msgctxt "themes"
4864
+ msgid "Could not update theme: %s"
4865
+ msgstr ""
4866
+
4867
+ #: core/helpers/class-themes-updater.php:163
4868
+ msgctxt "themes"
4869
+ msgid "Theme was updated sucessfully."
4870
+ msgstr ""
4871
+
4872
  #: core/installer.php:38
4873
  msgctxt "default category name"
4874
  msgid "General"
4875
  msgstr "General"
4876
 
4877
+ #: core/installer.php:464
4878
  msgctxt "installer"
4879
  msgid ""
4880
  "<b>Business Directory Plugin - Regions Module</b> was disabled because it is "
4885
  "es incompatible con la versión actual de Business Directory. Por favor "
4886
  "actualice el módulode Regions."
4887
 
4888
+ #: core/installer.php:530
4889
  msgctxt "installer"
4890
  msgid "Cleaning up listing fees information... %d/%d"
4891
  msgstr "Actualizando información de comisiones de listados... %d/%d"
4892
 
4893
+ #: core/installer.php:580
4894
  msgctxt "installer"
4895
  msgid "Migrating previous transactions to new Payments API... %d/%d"
4896
  msgstr "Migrando transacciones anteriores a la nueva API de pagos... %d/%d"
4897
 
4898
+ #: core/installer.php:609
4899
  msgctxt "installer"
4900
  msgid "Initial listing payment (BD < 3.4)"
4901
  msgstr "Pago inicial de listado (BD < 3.4)"
4902
 
4903
+ #: core/installer.php:620
4904
  msgctxt "installer"
4905
  msgid "Listing edit payment (BD < 3.4)"
4906
  msgstr "Pago por edición de listado (BD < 3.4)"
4907
 
4908
+ #: core/installer.php:641
4909
  msgctxt "installer"
4910
  msgid "Renewal fee \"%s\" for category \"%s\""
4911
  msgstr "Comisión de renovación \"%s\" para categoría \"%s\""
4912
 
4913
+ #: core/installer.php:660
4914
  msgctxt "installer"
4915
  msgid "Listing upgrade to featured"
4916
  msgstr "Mejora a Destacado"
4917
 
4918
+ #: core/installer.php:902
4919
  msgid "Business Directory - Manual Upgrade Required"
4920
  msgstr "Business Directory - Actualización Manual Requerida"
4921
 
4922
+ #: core/installer.php:904
4923
  msgid ""
4924
  "Business Directory features are currently disabled because the plugin needs "
4925
  "to perform a manual upgrade before continuing."
4927
  "Las características de Business Directory se encuentran deshabitadas pues es "
4928
  "necesario realizar una actualización manual antes de continuar."
4929
 
4930
+ #: core/installer.php:906
4931
  msgid "Perform Manual Upgrade"
4932
  msgstr "Realizar Actualización Manual"
4933
 
4934
+ #: core/installer.php:922 core/installer.php:923 core/installer.php:934
4935
  msgid "Business Directory - Manual Upgrade"
4936
  msgstr "Business Directory - Actualización Manual"
4937
 
4938
+ #: core/installer.php:938
4939
  msgid ""
4940
  "Business Directory features are currently disabled because the plugin needs "
4941
  "to perform a manual upgrade before it can be used."
4944
  "necesario realizar una actualización manual antes de que el plugin pueda ser "
4945
  "utilizado."
4946
 
4947
+ #: core/installer.php:940
4948
  msgid "Click \"Start Upgrade\" and wait until the process finishes."
4949
  msgstr ""
4950
  "Haga clic en \"Iniciar Actualización\" y espere hasta que el proceso "
4951
  "finalice."
4952
 
4953
+ #: core/installer.php:943
4954
  msgctxt "manual-upgrade"
4955
  msgid "Start Upgrade"
4956
  msgstr "Iniciar Actualización"
4957
 
4958
+ #: core/installer.php:945
4959
  msgctxt "manual-upgrade"
4960
  msgid "Pause Upgrade"
4961
  msgstr "Detener Actualización"
4962
 
4963
+ #: core/installer.php:951
4964
  msgctxt "manual-upgrade"
4965
  msgid ""
4966
  "The upgrade was sucessfully performed. Business Directory Plugin is now "
4969
  "La actualización fue ejecutada con éxito. Business Directory Plugin ahora se "
4970
  "encienta disponible para su uso."
4971
 
4972
+ #: core/installer.php:954
4973
  msgctxt "manual-upgrade"
4974
  msgid "Go to \"Directory Admin\""
4975
  msgstr "Ir a \"Administración del Directorio\""
4994
  msgid "No license key provided"
4995
  msgstr "No se ingresó una licencia"
4996
 
 
 
 
 
 
 
 
 
 
 
4997
  #: core/licensing.php:169
4998
  msgctxt "licensing"
4999
  msgid "Deactivation failed"
5041
  msgid "Renew License Key"
5042
  msgstr "Renovar Clave de Licencia"
5043
 
 
 
 
 
 
 
 
 
 
 
5044
  #: core/licensing.php:348
5045
  msgctxt "licensing"
5046
  msgid "Could not deactivate license: %s."
5056
  msgid "Free Listing"
5057
  msgstr "Listado Gratuito"
5058
 
5059
+ #: core/payment.php:144
5060
  msgctxt "fees-api"
5061
  msgid "Fee label is required."
5062
  msgstr "El nombre de la Comisión es requerido."
5063
 
5064
+ #: core/payment.php:147
5065
  msgctxt "fees-api"
5066
  msgid "Fee amount must be a non-negative decimal number."
5067
  msgstr "El precio de la comisión de be ser un número decimal no negativo."
5068
 
5069
+ #: core/payment.php:150 core/payment.php:153
5070
  msgctxt "fees-api"
5071
  msgid "Fee must apply to at least one category."
5072
  msgstr "La comisión debe aplicar al menos a una categoría."
5073
 
5074
+ #: core/payment.php:156
5075
  msgctxt "fees-api"
5076
  msgid "Fee allowed images must be a non-negative integer."
5077
  msgstr "El número de imágenes permitidas por la comisión debe ser no negativo."
5078
 
5079
+ #: core/payment.php:159
5080
  msgctxt "fees-api"
5081
  msgid "Fee listing run must be a non-negative integer."
5082
  msgstr "La Comisión de Listado debe ser un entero no negativo."
5083
 
5084
+ #: core/payment.php:164
5085
  msgctxt "fees-api"
5086
  msgid "Fee listing duration must be a number less than 10 years (3650 days)."
5087
  msgstr ""
5088
  "La duración del listado debe ser un número menor a 10 años (3650 días)."
5089
 
5090
+ #: core/payment.php:339
5091
  msgctxt "payments-api"
5092
  msgid ""
5093
  "You are offering featured listings but have payments turned off. Go to <a "
5100
  "de pago. Hasta tanto la opción de <i>Mejorar a Destacado</i> estará "
5101
  "deshabilitada."
5102
 
5103
+ #: core/payment.php:357
5104
  msgctxt "payments-api"
5105
  msgid ""
5106
  "The <b>%s</b> gateway is active but not properly configured. The gateway "
5112
  "siguientes problemas: <b>%s</b>.<br/> Revise sus <a href=\"%s"
5113
  "\">configuraciones de pago</a>."
5114
 
5115
+ #: core/payment.php:367
5116
  msgctxt "admin"
5117
  msgid ""
5118
  "You have payments turned on but no gateway is active and properly "
5125
  "para cambiar las configuraciones de pago. Hasta tanto, el Directorio operará "
5126
  "en <i>Modo Gratuito</i>."
5127
 
5128
+ #: core/payment.php:371
5129
  msgid ""
5130
  "BD detected PayFast and another gateway were enabled. This setup is not "
5131
  "recommended due to PayFast supporting only ZAR and the other gateways not "
5135
  "habilitadas. Esta configuración no es recomendada pues PayFast únicamente "
5136
  "soporta la moneda ZAR y las demás pasarelas no la soportan."
5137
 
5138
+ #: core/payment.php:375
5139
  msgid ""
5140
  "You have recurring renewal of listing fees enabled but the payment gateways "
5141
  "installed don't support recurring payments. Until a gateway that supports "
5147
  "recurrentes. Hasta tanto una pasarela que soporte pagos recurrentes (como "
5148
  "PayPal) sea habilitada las renovaciones automáticas estarán deshabilitadas."
5149
 
5150
+ #: core/payment.php:380
5151
  msgid ""
5152
  "Due to Google Wallet limitations only monthly (30 days) recurring fees are "
5153
  "supported by the gateway. All other fees will be charged as non-recurring."
5156
  "mensualmente (30 días) están soportados por esta pasarela. Cualquier "
5157
  "comisión con otra duración será cobrada sin renovación automática."
5158
 
5159
+ #: core/payment.php:413
5160
  msgctxt "payments-api"
5161
  msgid "Checkout"
5162
  msgstr "Pago"
5163
 
5164
+ #: core/payment.php:414
5165
  msgctxt "payments-api"
5166
  msgid "Pay %1$s through %2$s"
5167
  msgstr "Pagar %1$s a través de %2$s"
5168
 
5169
+ #: core/payment.php:421
5170
  msgctxt "payments-api"
5171
  msgid "Your transaction has been approved."
5172
  msgstr "Su transacción ha sido aprobada."
5173
 
5174
+ #: core/payment.php:602
5175
  msgctxt "payments"
5176
  msgid "Payment Details"
5177
  msgstr "Detalles del Pago"
5178
 
5179
+ #: core/payment.php:629
5180
  msgctxt "checkout"
5181
  msgid "Payment Method"
5182
  msgstr "Método de Pago"
5183
 
5184
+ #: core/payment.php:658
5185
  msgctxt "payment"
5186
  msgid "Return to Directory."
5187
  msgstr "Regresar al Directorio."
5188
 
5189
+ #: core/payment.php:664
5190
  msgctxt "payments"
5191
  msgid ""
5192
  "Your payment is being processed by the payment gateway. Please reload this "
5197
  "esta página en un momento para ver el estado actualizado del mismo o "
5198
  "contacte al administrador del sitio."
5199
 
5200
+ #: core/payment.php:667
5201
  msgctxt "payments"
5202
  msgid ""
5203
  "The payment has been rejected by the payment gateway. Please contact the "
5209
  "\"Cambiar Método de Pago\" para seleccionar un método distinto de pago e "
5210
  "intentar nuevamente."
5211
 
5212
+ #: core/payment.php:668
5213
  msgctxt "payments"
5214
  msgid "Change Payment Method"
5215
  msgstr "Cambiar Método de Pago"
5216
 
5217
+ #: core/payment.php:670
5218
  msgctxt "payments"
5219
  msgid ""
5220
  "The payment has been rejected by the payment gateway. Please contact the "
5223
  "El pago ha sido rechazado por la pasarela de pago. Por favor contacte el "
5224
  "administrador del sitio si cree que ha ocurrido un error."
5225
 
5226
+ #: core/payment.php:673
5227
  msgctxt "payments"
5228
  msgid "The payment has been canceled at your request."
5229
  msgstr "La transacción ha sido cancelada por solicitud suya."
5230
 
5231
+ #: core/payment.php:769
5232
  msgctxt "admin"
5233
  msgid "Pending Abandonment"
5234
  msgstr "Casi abandonado"
5235
 
5236
+ #: core/payment.php:774
5237
  msgctxt "admin"
5238
  msgid "Abandoned"
5239
  msgstr "Abandonados"
5240
 
5241
  #: core/templates/listing-sticky-tag.tpl.php:3
5242
+ #: core/templates/listing-sticky-tag.tpl.php:4 core/templates-listings.php:60
5243
  msgctxt "templates"
5244
  msgid "Featured Listing"
5245
  msgstr "Listado Destacado"
5246
 
5247
  #: core/templates/listings.tpl.php:6
5248
+ #: templates/businessdirectory-listings.tpl.php:27 templates/search.tpl.php:21
5249
  msgctxt "templates"
5250
  msgid "No listings found."
5251
  msgstr "No se encontraron listados."
5287
  msgid "(Reset)"
5288
  msgstr "(Reestablecer)"
5289
 
5290
+ #: core/themes.php:587
5291
  msgctxt "themes"
5292
  msgid "ZIP file is not a valid BD theme file."
5293
  msgstr ""
5294
 
5295
+ #: core/themes.php:593
5296
  msgctxt "themes"
5297
  msgid "Could not create themes directory."
5298
  msgstr ""
5299
 
5300
+ #: core/themes.php:601
5301
  msgctxt "themes"
5302
  msgid "Could not remove previous theme directory \"%s\"."
5303
  msgstr ""
5304
 
5305
+ #: core/themes.php:607
5306
  msgctxt "themes"
5307
  msgid "Could not move new theme into theme directory."
5308
  msgstr ""
5309
 
5310
+ #: core/utils.php:106
5311
  msgctxt "utils"
5312
  msgid ""
5313
  "POSTed data exceeds PHP config. maximum. See \"post_max_size\" directive."
5315
  "Los datos enviados via POST superan el valor máximo configurado en PHP. "
5316
  "Revise la directiva \"post_max_size\" de su configuración."
5317
 
5318
+ #: core/utils.php:159
5319
  msgctxt "utils"
5320
  msgid "File size (%s) exceeds maximum file size of %s"
5321
  msgstr "El tamaño de archivo (%s) excede el tamaño máximo permitido de %s"
5322
 
5323
+ #: core/utils.php:167
5324
  msgctxt "utils"
5325
  msgid "File size (%s) is inferior to the required minimum file size of %s"
5326
  msgstr "El tamaño de archivo (%s) es inferior al tamaño mínimo requerido de %s"
5327
 
5328
+ #: core/utils.php:176 core/utils.php:183
5329
  msgctxt "utils"
5330
  msgid "File type \"%s\" is not allowed"
5331
  msgstr "El tipo de archivo \"%s\" no está permitido"
5332
 
5333
+ #: core/utils.php:190
5334
  msgctxt "utils"
5335
  msgid "Unkown error while uploading file."
5336
  msgstr "Error desconocido mientras se subía el archivo."
5337
 
5338
+ #: core/utils.php:209
5339
  msgctxt "utils"
5340
  msgid "Uploaded file is not an image"
5341
  msgstr "El archivo subido no es una imagen"
5342
 
5343
+ #: core/utils.php:218
5344
  msgctxt "utils"
5345
  msgid "Image width (%s px) is inferior to minimum required width of %s px."
5346
  msgstr ""
5347
  "El ancho de la imagen (%s px) es inferior al mínimo requerido de %s px."
5348
 
5349
+ #: core/utils.php:224
5350
  msgctxt "utils"
5351
  msgid "Image height (%s px) is inferior to minimum required height of %s px."
5352
  msgstr "El alto de la imagen (%s px) es inferior al mínimo requerido de %s px."
5353
 
5354
+ #: core/utils.php:230
5355
  msgctxt "utils"
5356
  msgid "Image width (%s px) is greater than maximum allowed width of %s px."
5357
  msgstr ""
5358
  "El ancho de la imagen (%s px) es superior al máximo permitido de %s px."
5359
 
5360
+ #: core/utils.php:236
5361
  msgctxt "utils"
5362
  msgid "Image height (%s px) is greater than maximum required height of %s px."
5363
  msgstr "El alto de la imagen (%s px) es superior al máximo permitido de %s px."
5364
 
5365
+ #: core/utils.php:250
5366
  msgctxt "utils"
5367
  msgid "Error while uploading file"
5368
  msgstr "Ocurrió un error mientras se subía el archivo"
5636
  msgid "I agree to the Terms and Conditions"
5637
  msgstr "Acepto los Términos y Condiciones"
5638
 
5639
+ #: core/view-submit-listing.php:406
5640
  msgctxt "listings"
5641
  msgid "Fee \"%s\" for category \"%s\"%s"
5642
  msgstr "Comisión \"%s\" para categoría \"%s\"%s"
5643
 
5644
+ #: core/view-submit-listing.php:409
5645
  msgctxt "listings"
5646
  msgid "(recurring)"
5647
  msgstr "(recurrente)"
5648
 
5649
+ #: core/view-submit-listing.php:419 core/view-upgrade-listing.php:54
5650
  msgctxt "submit"
5651
  msgid "Listing upgrade to featured"
5652
  msgstr "Mejora a Destacado"
5653
 
5654
+ #: core/view-submit-listing.php:452
5655
  msgctxt "submit_state"
5656
  msgid "Invalid submit state."
5657
  msgstr "Solicitud inválida."
5672
  msgid "Return to listing."
5673
  msgstr "Regresar al listado."
5674
 
5675
+ #: core/views.php:30
5676
  msgid ""
5677
  "You need to create a page with the [businessdirectory] shortcode for the "
5678
  "Business Directory plugin to work correctly."
5680
  "Debe crear una página con el shortcode [businessdirectory] para que el "
5681
  "Directorio de Negocios funcione correctamente."
5682
 
5683
+ #: core/views.php:32
5684
  msgid "The directory is temporarily disabled."
5685
  msgstr "El Directorio está temporalmente deshabilitado."
5686
 
5687
+ #: core/views.php:190
5688
  msgctxt "preview"
5689
  msgid "This is just a preview. The listing has not been published yet."
5690
  msgstr ""
5691
  "Esta es tan solo una previsualización. El listado no ha sido publicado aún."
5692
 
5693
+ #: core/views.php:342
5694
  msgctxt "templates"
5695
  msgid "Listings tagged: %s"
5696
  msgstr "Listados etiquetados: %s"
5697
 
5698
+ #: core/views.php:459
5699
  msgctxt "templates"
5700
  msgid ""
5701
  "There are no categories assigned to the business directory yet. You need to "
5710
  "no pueden enviar listados en este momento. No pueden agregarse nuevos "
5711
  "listados hasta tanto haya categorías en el Directorio de Negocios."
5712
 
5713
+ #: core/views.php:461
5714
  msgctxt "templates"
5715
  msgid "There are currently no listings in the directory."
5716
  msgstr "No hay listados en el Directorio."
5717
 
5718
+ #: core/views.php:479
5719
  msgctxt "templates"
5720
  msgid ""
5721
  "You have \"Hide Empty Categories\" on and some categories that don't have "
6121
  msgid "You do not currently have any listings in the directory."
6122
  msgstr "Actualmente no tiene listados en el Directorio."
6123
 
6124
+ #: templates/manage-listings.tpl.php:11 templates/search.tpl.php:24
6125
  msgctxt "templates"
6126
  msgid "Return to directory"
6127
  msgstr "Regresar al Directorio"
6336
  #: templates/renew-listing.tpl.php:22
6337
  #: templates/submit-listing/category-selection.tpl.php:8
6338
  #: templates/submit-listing/fee-selection.tpl.php:37
6339
+ #: templates/submit-listing/images.tpl.php:36
6340
  #: templates/submit-listing/listing-fields.tpl.php:34
6341
  msgctxt "templates"
6342
  msgid "Continue"
6352
  msgid "Do not renew my listing"
6353
  msgstr "No renovar mi listado"
6354
 
6355
+ #: templates/search-form.tpl.php:3
 
 
 
 
 
 
 
 
 
 
6356
  msgctxt "templates"
6357
  msgid "Find a listing"
6358
  msgstr "Encontrar un listado"
6359
 
6360
+ #: templates/search-form.tpl.php:14
6361
  msgctxt "search"
6362
  msgid "Clear"
6363
  msgstr "Limpiar"
6364
 
6365
+ #: templates/search-form.tpl.php:15 templates/search.tpl.php:6
6366
+ msgctxt "search"
6367
+ msgid "Search"
6368
+ msgstr "Buscar"
6369
+
6370
+ #: templates/search.tpl.php:14
6371
  msgctxt "search"
6372
  msgid "Search Results"
6373
  msgstr "Resultados de Búsqueda"
6486
  msgid "Image slots available:"
6487
  msgstr "Casillas de imagen disponibles:"
6488
 
6489
+ #: templates/submit-listing/images-upload-form.tpl.php:50
6490
+ msgctxt "templates"
6491
+ msgid "Min. file size:"
6492
+ msgstr "Tamaño min. de archivo:"
6493
+
6494
+ #: templates/submit-listing/images-upload-form.tpl.php:56
6495
  msgctxt "templates"
6496
  msgid "Max. file size:"
6497
  msgstr "Tamaño máximo de archivo:"
6571
  msgid "http://businessdirectoryplugin.com"
6572
  msgstr "http://businessdirectoryplugin.com"
6573
 
6574
+ #~ msgctxt "admin settings"
6575
+ #~ msgid "Display search form when displaying search results?"
6576
+ #~ msgstr ""
6577
+ #~ "Mostrar el formulario de búsqueda cuando se muestran los resultados de la "
6578
+ #~ "búsqueda?"
6579
+
6580
+ #~ msgctxt "search"
6581
+ #~ msgid "Return to Advanced Search"
6582
+ #~ msgstr "Regresar a Búsqueda Avanzada"
6583
+
6584
  #~ msgctxt "admin transactions"
6585
  #~ msgid "transaction"
6586
  #~ msgstr "transacción"
6861
  #~ msgid "Stripe Payment Gateway"
6862
  #~ msgstr "Pasarela de pago Stripe"
6863
 
 
 
 
 
6864
  #~ msgctxt "admin settings"
6865
  #~ msgid "Give credit to plugin author?"
6866
  #~ msgstr "Dar crédito al autor del plugin?"
languages/WPBDM-fr_FR.mo CHANGED
Binary file
languages/WPBDM-fr_FR.po CHANGED
@@ -1,29 +1,29 @@
1
- # Copyright (C) 2013
2
- # This file is distributed under the same license as the package.
3
  msgid ""
4
  msgstr ""
5
  "Project-Id-Version: Business Directory Plugin 3.6\n"
6
  "Report-Msgid-Bugs-To: http://wordpress.org/tag/business-directory-plugin\n"
7
- "POT-Creation-Date: 2015-10-13 15:01:21+00:00\n"
8
- "PO-Revision-Date: 2015-06-23 09:45-0500\n"
9
  "Last-Translator: BD Team <support@businessdirectoryplugin.com>\n"
10
  "Language-Team: BD Team <support@businessdirectoryplugin.com>\n"
11
  "Language: fr\n"
12
  "MIME-Version: 1.0\n"
13
  "Content-Type: text/plain; charset=UTF-8\n"
14
  "Content-Transfer-Encoding: 8bit\n"
15
- "X-Generator: Poedit 1.8.1\n"
16
  "Plural-Forms: nplurals=2; plural=(n > 1);\n"
17
  "X-Poedit-SourceCharset: UTF-8\n"
18
 
19
  #: admin/class-admin-listings.php:24
20
  msgid "Listing Information"
21
- msgstr "Information de l'annonce"
22
 
23
  #: admin/class-admin-listings.php:31
24
  msgctxt "admin"
25
  msgid "Listing Fields / Images"
26
- msgstr "Champs des annonces/Images "
27
 
28
  #: admin/class-admin-listings.php:42
29
  msgctxt "admin"
@@ -115,7 +115,7 @@ msgid ""
115
  "a FREE premium module just for signing up."
116
  msgstr ""
117
  "Découvrez comment créer un annuaire professionnel convaincant à partir de "
118
- "zéro dans ce cours (GRATUIT) en 5 parties (envoyé via e-mails). Obtenez un "
119
  "module premium GRATUIT juste après votre inscription."
120
 
121
  #: admin/class-admin.php:123
@@ -127,7 +127,7 @@ msgstr "Adresse e-mail:"
127
  msgctxt "drip pointer"
128
  msgid "Want to know the Secrets of Building an Awesome Business Directory?"
129
  msgstr ""
130
- "Vous voule connaitre les secrets de constructions d'un superbe annuaire "
131
  "professionnel?"
132
 
133
  #: admin/class-admin.php:131
@@ -152,10 +152,9 @@ msgstr ""
152
  "Vous êtes prêt. Visitez votre nouvelle page <a>Annuaire Professionnel</a>"
153
 
154
  #: admin/class-admin.php:182
155
- #, fuzzy
156
  msgctxt "drip pointer"
157
  msgid "Invalid e-mail address."
158
- msgstr "Statut de renouvellement invalide."
159
 
160
  #: admin/class-admin.php:213
161
  msgctxt "admin menu"
@@ -190,7 +189,7 @@ msgstr "Gestion des champs"
190
  #: admin/class-admin.php:244 admin/class-admin.php:245
191
  msgctxt "admin menu"
192
  msgid "Listings"
193
- msgstr "Listages"
194
 
195
  #: admin/class-admin.php:259 admin/class-admin.php:260
196
  msgctxt "admin menu"
@@ -222,94 +221,94 @@ msgctxt "admin menu"
222
  msgid "Uninstall"
223
  msgstr "Désinstaller"
224
 
225
- #: admin/class-admin.php:404
226
  #: admin/templates/listing-metabox-categories.tpl.php:69
227
  msgctxt "admin infometabox"
228
  msgid "never"
229
  msgstr "jamais"
230
 
231
- #: admin/class-admin.php:486
232
  msgctxt "admin"
233
  msgid "The listing has been published."
234
  msgid_plural "The listings have been published."
235
- msgstr[0] "L'annonce a été publiée."
236
  msgstr[1] "Les annonces ont été publiées."
237
 
238
- #: admin/class-admin.php:499
239
  msgctxt "admin"
240
  msgid "The listing status has been set as paid."
241
  msgid_plural "The listings status has been set as paid."
242
  msgstr[0] "Le statut de l'annonce a été défini comme étant payée."
243
  msgstr[1] "Le statut des annocnes a été défini comme étant payées."
244
 
245
- #: admin/class-admin.php:511
246
  msgctxt "admin"
247
  msgid "The listing has been modified."
248
  msgid_plural "The listings have been modified."
249
- msgstr[0] "L'annonce a été modifiée."
250
  msgstr[1] "Les annonces ont été modifiées."
251
 
252
- #: admin/class-admin.php:524
253
  msgctxt "admin"
254
  msgid "The listing has been upgraded."
255
  msgid_plural "The listings have been upgraded."
256
  msgstr[0] "L'annonce a été mise à jour."
257
  msgstr[1] "Les annonces ont été mise à jour."
258
 
259
- #: admin/class-admin.php:536
260
  msgctxt "admin"
261
  msgid "The listing has been downgraded."
262
  msgid_plural "The listings have been downgraded."
263
  msgstr[0] "L'annonce a été rétrogradée."
264
  msgstr[1] "Les annonces ont été rétrogradées."
265
 
266
- #: admin/class-admin.php:548
267
  msgctxt "admin"
268
  msgid "The transaction has been approved."
269
  msgstr "La transaction a été approuvée."
270
 
271
- #: admin/class-admin.php:556
272
  msgctxt "admin"
273
  msgid "The transaction has been rejected."
274
  msgstr "La transaction a été rejetée."
275
 
276
- #: admin/class-admin.php:562
277
  msgctxt "admin"
278
  msgid "The fee was successfully assigned."
279
  msgstr "Les frais ont bien été assignés."
280
 
281
- #: admin/class-admin.php:571
282
  msgctxt "admin"
283
  msgid "Listing was renewed."
284
  msgid_plural "Listings were renewed."
285
  msgstr[0] "L'annonce a été renouvelée."
286
  msgstr[1] "Les annonces ont été renouvelées."
287
 
288
- #: admin/class-admin.php:578
289
  msgctxt "admin"
290
  msgid "Renewal email sent."
291
- msgstr "Renouveller l'envoie de mail."
292
 
293
- #: admin/class-admin.php:612
294
  msgctxt "admin category id"
295
  msgid "ID"
296
  msgstr "ID"
297
 
298
- #: admin/class-admin.php:614 admin/class-admin.php:620
299
  msgctxt "admin"
300
  msgid "Listing Count"
301
- msgstr "Compteur d'annonce"
302
 
303
- #: admin/class-admin.php:716
304
  msgctxt "admin"
305
  msgid ""
306
  "<b>Business Directory Plugin</b> requires fields with the following "
307
  "associations in order to work correctly: <b>%s</b>."
308
  msgstr ""
309
  "<b>Plugin d'Annuaire Professionnel</b> requiert des champs avec les "
310
- "associations suivantes en ordre pour marcher correctement: <b>%s</b>"
311
 
312
- #: admin/class-admin.php:718
313
  msgctxt "admin"
314
  msgid ""
315
  "<b>Business Directory Plugin</b> requires a field with a <b>%s</b> "
@@ -318,7 +317,7 @@ msgstr ""
318
  "<b>Plugin d'Annuaire Professionnel</b> requiert un champ avec un <b>%s</b> "
319
  "association en ordre pour marcher correctement."
320
 
321
- #: admin/class-admin.php:722
322
  msgctxt "admin"
323
  msgid ""
324
  "You can create these custom fields by yourself inside \"Manage Form Fields\" "
@@ -327,17 +326,17 @@ msgstr ""
327
  "Vous pouvez créer ces champs personnalisés pas vous-mêmes dans \"Gestion des "
328
  "Champs\" ou laissez le plugin le faire pour vous automatiquement."
329
 
330
- #: admin/class-admin.php:726
331
  msgctxt "admin"
332
  msgid "Go to \"Manage Form Fields\""
333
  msgstr "Aller à \"Gestion des Champs\""
334
 
335
- #: admin/class-admin.php:729
336
  msgctxt "admin"
337
  msgid "Create these required fields for me"
338
- msgstr "Créer ces champs requis pour moi"
339
 
340
- #: admin/class-admin.php:738
341
  msgctxt "admin"
342
  msgid ""
343
  "<b>Business Directory Plugin</b> requires a page with the "
@@ -346,7 +345,7 @@ msgstr ""
346
  "<b>Business Directory Plugin</b> requiert une page avec le code "
347
  "d'activation <tt>[businessdirectory]</tt> pour marcher correctement."
348
 
349
- #: admin/class-admin.php:740
350
  msgctxt "admin"
351
  msgid ""
352
  "You can create this page by yourself or let Business Directory do this for "
@@ -355,27 +354,27 @@ msgstr ""
355
  "Vous pouvez créer cette page par vous-mêmes ou laisser le plugin la faire "
356
  "pour vous automatiquement."
357
 
358
- #: admin/class-admin.php:744
359
  msgctxt "admin"
360
  msgid "Create required pages for me"
361
  msgstr "Créer les pages requises pour moi."
362
 
363
- #: admin/class-admin.php:784
364
  msgctxt "admin compat"
365
  msgid "Installed: %s"
366
  msgstr "Installé: %s"
367
 
368
- #: admin/class-admin.php:784
369
  msgctxt "admin compat"
370
  msgid "N/A"
371
  msgstr "N/A"
372
 
373
- #: admin/class-admin.php:787
374
  msgctxt "admin compat"
375
  msgid "Required: %s"
376
  msgstr "Requis: %s"
377
 
378
- #: admin/class-admin.php:800
379
  msgctxt "admin compat"
380
  msgid ""
381
  "Business Directory has detected some incompatible premium module versions "
@@ -384,16 +383,16 @@ msgstr ""
384
  "Le plugin a détecté une/des modules incomptatible de la version premium "
385
  "installé."
386
 
387
- #: admin/class-admin.php:802
388
  msgctxt "admin compat"
389
  msgid ""
390
  "Please upgrade to the required versions indicated below to make sure "
391
  "everything functions properly."
392
  msgstr ""
393
- "Veuillez mettre à jour vers la version requise, indiqué ci-dessous, pour "
394
  "assurer le bon fonctionnement des fonctions. "
395
 
396
- #: admin/class-admin.php:817
397
  msgctxt "admin"
398
  msgid ""
399
  "We noticed you want your Business Directory users to register before posting "
@@ -422,75 +421,95 @@ msgctxt "templates"
422
  msgid "There are no images currently attached to the listing."
423
  msgstr "Il n'y a aucune images attaché à cette annonce."
424
 
425
- #: admin/class-themes-admin.php:27 admin/class-themes-admin.php:28
426
- #, fuzzy
427
  msgctxt "themes"
428
  msgid "Directory Themes"
429
- msgstr "Catégories de l'aannuaire"
430
 
431
- #: admin/class-themes-admin.php:80
432
  #, fuzzy
433
  msgctxt "themes"
 
 
 
 
 
434
  msgid "Could not change the active theme to \"%s\"."
435
- msgstr "Vous ne pouvez pas créer cette catégorie d'annonce \"%s\""
436
 
437
- #: admin/class-themes-admin.php:124
438
  msgctxt "themes"
439
  msgid "Active theme changed to \"%s\"."
440
  msgstr ""
441
 
442
- #: admin/class-themes-admin.php:127
443
  msgctxt "themes"
444
  msgid ""
445
  "For better results, \"%s\" theme suggests the following form fields to be "
446
  "created."
447
  msgstr ""
448
 
449
- #: admin/class-themes-admin.php:134
450
  msgctxt "themes"
451
  msgid "Dismiss this warning"
452
  msgstr ""
453
 
454
- #: admin/class-themes-admin.php:137
455
- #, fuzzy
456
  msgctxt "themes"
457
  msgid "Create suggested fields"
458
- msgstr "Créer ces champs requis pour moi"
459
 
460
- #: admin/class-themes-admin.php:144
461
- #, fuzzy
462
  msgctxt "themes"
463
  msgid "Suggested fields created successfully."
464
- msgstr "Champs requis créés avec succés."
465
 
466
- #: admin/class-themes-admin.php:147
467
- #, fuzzy
468
  msgctxt "themes"
469
  msgid "Theme installed successfully."
470
- msgstr "Champs requis créés avec succés."
471
 
472
- #: admin/class-themes-admin.php:150
473
- #, fuzzy
474
  msgctxt "themes"
475
  msgid "Theme was deleted sucessfully."
476
- msgstr "L'importation s'est déroulée sans accroc."
477
 
478
- #: admin/class-themes-admin.php:153
479
  msgctxt "themes"
480
  msgid "Could not delete theme directory. Check permissions."
481
  msgstr ""
482
 
483
- #: admin/class-themes-admin.php:179
484
- #, fuzzy
485
  msgctxt "themes"
486
  msgid "Please upload a valid theme file."
487
- msgstr "Veuillez entrer un email valide."
488
 
489
- #: admin/class-themes-admin.php:186
490
- #, fuzzy
491
  msgctxt "themes"
492
  msgid "Could not move \"%s\" to a temporary directory."
493
- msgstr "Impossible de créer le répertoire wpbdp-CSV-exportations."
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
494
 
495
  #: admin/csv-export.php:136
496
  msgctxt "admin csv-export"
@@ -537,9 +556,9 @@ msgid ""
537
  "not seem to be writable. Please consult with your host."
538
  msgstr ""
539
  "Un répertoire temporaire valide avec les permissions d'écriture est "
540
- "nécessaire pour les importations CSV pour fonctionner correctement. Votre "
541
- "serveur utilise \"%s\", mais cette voie ne semble pas être accessible en "
542
- "écriture. Veuillez consulter le serveur hôte."
543
 
544
  #: admin/csv-import.php:275
545
  msgctxt "admin csv-import"
@@ -697,7 +716,7 @@ msgstr "Ordre"
697
  #: admin/form-fields.php:18
698
  msgctxt "form-fields admin"
699
  msgid "Label / Association"
700
- msgstr "Etiquette / Assoociation"
701
 
702
  #: admin/form-fields.php:19
703
  msgctxt "form-fields admin"
@@ -799,66 +818,57 @@ msgstr "Champ effacé."
799
  #: admin/form-fields.php:278
800
  msgctxt "form-fields admin"
801
  msgid "Required fields created successfully."
802
- msgstr "Champs requis créés avec succés."
803
 
804
  #: admin/form-fields.php:286
805
- #, fuzzy
806
  msgctxt "form-fields admin"
807
  msgid "Title"
808
  msgstr "Titre"
809
 
810
  #: admin/form-fields.php:287
811
- #, fuzzy
812
  msgctxt "form-fields admin"
813
  msgid "Category"
814
- msgstr "Catégories"
815
 
816
  #: admin/form-fields.php:288
817
- #, fuzzy
818
  msgctxt "form-fields admin"
819
  msgid "Excerpt"
820
- msgstr "En extrait"
821
 
822
  #: admin/form-fields.php:289
823
- #, fuzzy
824
  msgctxt "form-fields admin"
825
  msgid "Content"
826
- msgstr "Contenu du message"
827
 
828
  #: admin/form-fields.php:290
829
- #, fuzzy
830
  msgctxt "form-fields admin"
831
  msgid "Tags"
832
- msgstr "Identifiant Mots clés"
833
 
834
  #: admin/form-fields.php:291
835
- #, fuzzy
836
  msgctxt "form-fields admin"
837
  msgid "Address"
838
- msgstr "Adresse e-mail:"
839
 
840
  #: admin/form-fields.php:292
841
  msgctxt "form-fields admin"
842
  msgid "ZIP Code"
843
- msgstr ""
844
 
845
  #: admin/form-fields.php:293
846
- #, fuzzy
847
  msgctxt "form-fields admin"
848
  msgid "FAX Number"
849
- msgstr "Numéro de carte"
850
 
851
  #: admin/form-fields.php:294
852
- #, fuzzy
853
  msgctxt "form-fields admin"
854
  msgid "Phone Number"
855
- msgstr "Numéro de téléphone de l'entreprise"
856
 
857
  #: admin/form-fields.php:295
858
- #, fuzzy
859
  msgctxt "form-fields admin"
860
  msgid "Ratings Field"
861
- msgstr "Champs d'annonce"
862
 
863
  #: admin/form-fields.php:296
864
  msgctxt "form-fields admin"
@@ -868,13 +878,12 @@ msgstr ""
868
  #: admin/form-fields.php:297
869
  msgctxt "form-fields admin"
870
  msgid "Website"
871
- msgstr ""
872
 
873
  #: admin/form-fields.php:318
874
- #, fuzzy
875
  msgctxt "form-fields admin"
876
  msgid "Tags updated."
877
- msgstr "Paramètres mis à jour."
878
 
879
  #: admin/listing-metabox.php:11
880
  msgctxt "admin"
@@ -909,7 +918,7 @@ msgstr "Statut du paiement"
909
  #: admin/listing-metabox.php:50
910
  msgctxt "admin infometabox"
911
  msgid "Featured (Sticky) Status"
912
- msgstr "Statut sélectionné (Post-it)"
913
 
914
  #: admin/listing-metabox.php:58
915
  msgctxt "admin metabox"
@@ -987,7 +996,7 @@ msgstr "Exportation des paramètres"
987
  #: admin/templates/csv-export.tpl.php:37
988
  msgctxt "admin csv-export"
989
  msgid "Which listings to export?"
990
- msgstr "Quels Listages à exporter?"
991
 
992
  #: admin/templates/csv-export.tpl.php:41
993
  msgctxt "admin csv-export"
@@ -1020,18 +1029,18 @@ msgid ""
1020
  "When checked, instead of just a CSV file a ZIP file will be generated with "
1021
  "both a CSV file and listing images."
1022
  msgstr ""
1023
- "Quand vérifié, au lieu de seulement générer un fichier CSV, un fichier ZIP "
1024
- "sera généré avec une partie fichier CSV et une partie images de l'annonce."
1025
 
1026
  #: admin/templates/csv-export.tpl.php:62
1027
  msgctxt "admin csv-export"
1028
  msgid "Additional metadata to export:"
1029
- msgstr "Métadonnées additionnel à l'exportation:"
1030
 
1031
  #: admin/templates/csv-export.tpl.php:67
1032
  msgctxt "admin csv-export"
1033
  msgid "Include unique IDs for each listing (sequence_id column)."
1034
- msgstr "Inclure des ID's uniques pour chaques annonces (colonne sequence_id)."
1035
 
1036
  #: admin/templates/csv-export.tpl.php:69
1037
  msgctxt "admin csv-export"
@@ -1039,7 +1048,7 @@ msgid ""
1039
  "If you plan to re-import the listings into BD and don't want new ones "
1040
  "created, select this option!"
1041
  msgstr ""
1042
- "Si vous prévoyez de réimporter les annonces dans la base de donnée et ne "
1043
  "souhaitez pas en créer de nouvelles, sélectionnez cette option!"
1044
 
1045
  #: admin/templates/csv-export.tpl.php:75
@@ -1090,7 +1099,7 @@ msgstr "Séparateur de catégorie"
1090
  #: admin/templates/csv-export.tpl.php:128
1091
  msgctxt "admin csv-export"
1092
  msgid "Export Listings"
1093
- msgstr "Listages d'exportation"
1094
 
1095
  #: admin/templates/csv-export.tpl.php:134
1096
  msgctxt "admin csv-export"
@@ -1222,7 +1231,7 @@ msgstr "Fichiers"
1222
  #: admin/templates/csv-import-progress.tpl.php:37
1223
  msgctxt "admin csv-import"
1224
  msgid "Rows in file"
1225
- msgstr "Rangées dans le fichier"
1226
 
1227
  #: admin/templates/csv-import-progress.tpl.php:40
1228
  msgctxt "admin csv-import"
@@ -1233,8 +1242,7 @@ msgstr "Progression"
1233
  msgctxt "admin csv-import"
1234
  msgid "Import has not started. Click \"Start Import\" to begin."
1235
  msgstr ""
1236
- "L'importation n'a pas commencé. Cliquez sur \"Commencer l'importation\" pour "
1237
- "débuter."
1238
 
1239
  #: admin/templates/csv-import-progress.tpl.php:45
1240
  msgctxt "admin csv-import"
@@ -1407,12 +1415,12 @@ msgstr "Génération d'erreurs quand une catégorie n'est pas trouvée"
1407
  #: admin/templates/csv-import.tpl.php:171
1408
  msgctxt "admin csv-import"
1409
  msgid "Assign listings to a user?"
1410
- msgstr "Assigner des Listages à un utilisateur?"
1411
 
1412
  #: admin/templates/csv-import.tpl.php:177
1413
  msgctxt "admin csv-import"
1414
  msgid "Assign listings to a user."
1415
- msgstr "Assigner des Listages à un utilisateur."
1416
 
1417
  #: admin/templates/csv-import.tpl.php:182
1418
  msgctxt "admin csv-import"
@@ -1450,7 +1458,7 @@ msgstr "Tester l'importation"
1450
  #: admin/templates/csv-import.tpl.php:210
1451
  msgctxt "admin csv-import"
1452
  msgid "Import Listings"
1453
- msgstr "Importaation des Listages "
1454
 
1455
  #: admin/templates/csv-import.tpl.php:218
1456
  msgctxt "admin csv-import"
@@ -1584,22 +1592,27 @@ msgctxt "fees admin"
1584
  msgid "Number of images allowed"
1585
  msgstr "Nombre d'images autorisées"
1586
 
1587
- #: admin/templates/fees-addoredit.tpl.php:105
 
 
 
 
 
1588
  msgctxt "fees admin"
1589
  msgid "Apply to category"
1590
  msgstr "Appliquer à la catégorie"
1591
 
1592
- #: admin/templates/fees-addoredit.tpl.php:109
1593
  msgctxt "fees admin"
1594
  msgid "* All Categories *"
1595
  msgstr "Toutes Catégories"
1596
 
1597
- #: admin/templates/fees-addoredit.tpl.php:129
1598
  msgctxt "fees admin"
1599
  msgid "Update Fee"
1600
  msgstr "Mettre à jour les Frais"
1601
 
1602
- #: admin/templates/fees-addoredit.tpl.php:131
1603
  msgctxt "fees admin"
1604
  msgid "Add Fee"
1605
  msgstr "Ajouter des Frais"
@@ -1753,67 +1766,67 @@ msgctxt "form-fields admin"
1753
  msgid "No validation"
1754
  msgstr "Pas de validation"
1755
 
1756
- #: admin/templates/form-fields-addoredit.tpl.php:112
1757
  msgctxt "form-fields admin"
1758
  msgid "Is field required?"
1759
  msgstr "Ce champ est-il requis?"
1760
 
1761
- #: admin/templates/form-fields-addoredit.tpl.php:118
1762
  msgctxt "form-fields admin"
1763
  msgid "This field is required."
1764
  msgstr "Ce champ est requis"
1765
 
1766
- #: admin/templates/form-fields-addoredit.tpl.php:126
1767
  msgctxt "form-fields admin"
1768
  msgid "Field display options"
1769
  msgstr "Champ d'options d'affichage"
1770
 
1771
- #: admin/templates/form-fields-addoredit.tpl.php:130
1772
  msgctxt "form-fields admin"
1773
  msgid "Show this value in excerpt view?"
1774
  msgstr "Montrer un extrait de cette valeur?"
1775
 
1776
- #: admin/templates/form-fields-addoredit.tpl.php:136
1777
  msgctxt "form-fields admin"
1778
  msgid "Display this value in post excerpt view."
1779
- msgstr "Afficher dans un message un extrait de cette valeur."
1780
 
1781
- #: admin/templates/form-fields-addoredit.tpl.php:142
1782
  msgctxt "form-fields admin"
1783
  msgid "Show this value in listing view?"
1784
  msgstr "Montrer cette valeur dans la vue de l'annonce?"
1785
 
1786
- #: admin/templates/form-fields-addoredit.tpl.php:148
1787
  msgctxt "form-fields admin"
1788
  msgid "Display this value in the listing view."
1789
- msgstr "Afficher cette valeur dans la vue de l'annonce."
1790
 
1791
- #: admin/templates/form-fields-addoredit.tpl.php:154
1792
  msgctxt "form-fields admin"
1793
  msgid "Include this field in the search form?"
1794
  msgstr "Inclure ce champ dans la recherche de formulaire?"
1795
 
1796
- #: admin/templates/form-fields-addoredit.tpl.php:160
1797
  msgctxt "form-fields admin"
1798
  msgid "Include this field in the search form."
1799
  msgstr "Inclure ce champ dans la recherche de formulaire."
1800
 
1801
- #: admin/templates/form-fields-addoredit.tpl.php:166
1802
  msgctxt "form-fields admin"
1803
  msgid "Hide this field's label?"
1804
  msgstr "Cacher l'étiquette de ce champ?"
1805
 
1806
- #: admin/templates/form-fields-addoredit.tpl.php:172
1807
  msgctxt "form-fields admin"
1808
  msgid "Hide this field's label when displaying it."
1809
  msgstr "Cacher l'étiquette de ce champ lorsqu'il est aaffiché."
1810
 
1811
- #: admin/templates/form-fields-addoredit.tpl.php:179
1812
  msgctxt "form-fields admin"
1813
  msgid "Update Field"
1814
  msgstr "Mettre à jour le champ"
1815
 
1816
- #: admin/templates/form-fields-addoredit.tpl.php:181
1817
  msgctxt "form-fields admin"
1818
  msgid "Add Field"
1819
  msgstr "Ajouter un champ"
@@ -1834,10 +1847,9 @@ msgid "Delete Field"
1834
  msgstr "Effacer le champ"
1835
 
1836
  #: admin/templates/form-fields-tags.tpl.php:5
1837
- #, fuzzy
1838
  msgctxt "form-fields admin"
1839
  msgid "-- None --"
1840
- msgstr "-- Choisisez en un --"
1841
 
1842
  #: admin/templates/form-fields-tags.tpl.php:14
1843
  msgctxt "form-fields admin"
@@ -1845,10 +1857,9 @@ msgid "Theme Tags"
1845
  msgstr ""
1846
 
1847
  #: admin/templates/form-fields-tags.tpl.php:21
1848
- #, fuzzy
1849
  msgctxt "form-fields admin"
1850
  msgid "Field Tag"
1851
- msgstr "Type de champ"
1852
 
1853
  #: admin/templates/form-fields-tags.tpl.php:22
1854
  #, fuzzy
@@ -1867,10 +1878,9 @@ msgid "Preview Form"
1867
  msgstr "Formulaire précédent"
1868
 
1869
  #: admin/templates/form-fields.tpl.php:7
1870
- #, fuzzy
1871
  msgctxt "form-fields admin"
1872
  msgid "Manage Theme Tags"
1873
- msgstr "Gestion des frais"
1874
 
1875
  #: admin/templates/form-fields.tpl.php:13
1876
  msgctxt "form-fields admin"
@@ -1890,7 +1900,7 @@ msgstr ""
1890
  "Veuillez voir la <a>Documentation de champs de formulaire</a> pour plus de "
1891
  "détails."
1892
 
1893
- #. #-#-#-#-# WPBDM.pot (Business Directory Plugin 3.6.9) #-#-#-#-#
1894
  #. Plugin Name of the plugin/theme
1895
  #: admin/templates/header.tpl.php:4
1896
  msgid "Business Directory Plugin"
@@ -1952,7 +1962,7 @@ msgstr "Installation/Paramétrage des frais"
1952
 
1953
  #: admin/templates/home.tpl.php:37
1954
  msgid "Featured Listings Pending Upgrade"
1955
- msgstr "Annonces sélectionnée en attente de mise à jour"
1956
 
1957
  #: admin/templates/home.tpl.php:44
1958
  msgid "Manage Paid Listings"
@@ -1973,7 +1983,7 @@ msgstr ""
1973
  #: admin/templates/listing-change-fee.tpl.php:11
1974
  msgctxt "admin listing fee"
1975
  msgid "Current"
1976
- msgstr "Actuelle"
1977
 
1978
  #: admin/templates/listing-change-fee.tpl.php:14
1979
  msgctxt "admin listing fee"
@@ -1990,7 +2000,7 @@ msgstr[1] "%d images"
1990
  #: admin/templates/listing-change-fee.tpl.php:23
1991
  msgctxt "admin infometabox"
1992
  msgid "Listing never expires"
1993
- msgstr "Les annonces n'expire jamais"
1994
 
1995
  #: admin/templates/listing-change-fee.tpl.php:25
1996
  msgctxt "admin infometabox"
@@ -2003,8 +2013,8 @@ msgstr[1] "%d jours"
2003
  msgctxt "admin infometabox"
2004
  msgid "No categories on this listing. Please add one to associate fees."
2005
  msgstr ""
2006
- "Aucune catégorie sur cette annonce. Veuillez en ajouter une afin d'y "
2007
- "associer undes honoraires."
2008
 
2009
  #: admin/templates/listing-metabox-categories.tpl.php:29
2010
  msgctxt "admin infometabox"
@@ -2079,7 +2089,7 @@ msgstr "Montrer le lien de renouvellement"
2079
  #: admin/templates/listing-metabox-categories.tpl.php:99
2080
  msgctxt "admin infometabox"
2081
  msgid "Send renewal e-mail to user"
2082
- msgstr "Envoyer un maail à l'utilisateur"
2083
 
2084
  #: admin/templates/listing-metabox-categories.tpl.php:107
2085
  msgctxt "admin infometabox"
@@ -2089,17 +2099,17 @@ msgstr "Renouveller manuellement"
2089
  #: admin/templates/listing-metabox-categories.tpl.php:107
2090
  msgctxt "admin infometabox"
2091
  msgid "Change fee..."
2092
- msgstr "Changer les honoraires"
2093
 
2094
  #: admin/templates/listing-metabox-categories.tpl.php:115
2095
  msgctxt "admin infometabox"
2096
  msgid "Remove category"
2097
- msgstr "Retirer la catégorie"
2098
 
2099
  #: admin/templates/listing-metabox-fees.tpl.php:1
2100
  msgctxt "admin infometabox"
2101
  msgid "Fee Information"
2102
- msgstr "Information des frais"
2103
 
2104
  #: admin/templates/listing-metabox-fees.tpl.php:3
2105
  msgctxt "admin infometabox"
@@ -2178,7 +2188,7 @@ msgstr ""
2178
  #: admin/templates/listing-metabox-transactions.tpl.php:16
2179
  msgctxt "listing metabox"
2180
  msgid "There are no transactions associated to this listing."
2181
- msgstr "Il n'y a aucune transaction associé à cette annonce."
2182
 
2183
  #: admin/templates/payment-details.tpl.php:7
2184
  msgctxt "admin payments"
@@ -2247,10 +2257,9 @@ msgstr ""
2247
  "perdus. </ b>"
2248
 
2249
  #: admin/templates/sidebar.tpl.php:3
2250
- #, fuzzy
2251
  msgctxt "admin sidebar"
2252
  msgid "Discount Codes Module"
2253
- msgstr "Module de régions"
2254
 
2255
  #: admin/templates/sidebar.tpl.php:4
2256
  msgctxt "admin sidebar"
@@ -2377,24 +2386,26 @@ msgid "Enhanced Categories Module"
2377
  msgstr "Module d'amélioration des catégories"
2378
 
2379
  #: admin/templates/themes-delete-confirm.tpl.php:1
 
2380
  #, fuzzy
2381
  msgctxt "themes admin"
2382
- msgid "Delete theme"
2383
- msgstr "Effacer les Frais"
2384
 
2385
  #: admin/templates/themes-delete-confirm.tpl.php:3
2386
  #, fuzzy
2387
  msgctxt "themes admin"
2388
- msgid "Are you sure you want to delete the theme \"%s\"?"
2389
- msgstr "Etes-vous sûr de vouloir effacer le \"%s\" Frais?"
2390
 
2391
  #: admin/templates/themes-delete-confirm.tpl.php:12
2392
  #, fuzzy
2393
  msgctxt "themes admin"
2394
- msgid "Delete Theme"
2395
- msgstr "Effacer les Frais"
2396
 
2397
- #: admin/templates/themes-install.tpl.php:2 admin/templates/themes.tpl.php:3
 
2398
  msgctxt "themes"
2399
  msgid "Upload Directory Theme"
2400
  msgstr ""
@@ -2414,24 +2425,22 @@ msgctxt "themes"
2414
  msgid "Begin Upload"
2415
  msgstr ""
2416
 
2417
- #: admin/templates/themes.tpl.php:13
2418
- #, fuzzy
2419
  msgctxt "themes"
2420
  msgid "Active:"
2421
- msgstr "Actives seulement"
2422
 
2423
- #: admin/templates/themes.tpl.php:22
2424
- #, fuzzy
2425
  msgctxt "themes"
2426
  msgid "Activate"
2427
- msgstr "Activer la license"
2428
 
2429
- #: admin/templates/themes.tpl.php:32
2430
  msgctxt "themes"
2431
  msgid "Version:"
2432
  msgstr ""
2433
 
2434
- #: admin/templates/themes.tpl.php:35
2435
  #, fuzzy
2436
  msgctxt "themes"
2437
  msgid "Author:"
@@ -2545,100 +2554,100 @@ msgctxt "tracking"
2545
  msgid "Allow Tracking"
2546
  msgstr "Autoriser l'analyse"
2547
 
2548
- #: business-directory-plugin.php:676
2549
  msgctxt "admin plugins"
2550
  msgid "Settings"
2551
  msgstr "Paramètres"
2552
 
2553
- #: business-directory-plugin.php:686
2554
  msgctxt "post type general name"
2555
  msgid "Directory"
2556
  msgstr "Annuaire"
2557
 
2558
- #: business-directory-plugin.php:687
2559
  msgctxt "post type singular name"
2560
  msgid "Directory"
2561
  msgstr "Annuaire"
2562
 
2563
- #: business-directory-plugin.php:688
2564
  msgctxt "listing"
2565
  msgid "Add New Listing"
2566
  msgstr "Ajouter une nouvelle annonce"
2567
 
2568
- #: business-directory-plugin.php:689
2569
  msgctxt "post type"
2570
  msgid "Add New Listing"
2571
  msgstr "Ajouter une nouvelle annonce"
2572
 
2573
- #: business-directory-plugin.php:690 core/compatibility/deprecated.php:255
2574
  msgid "Edit Listing"
2575
  msgstr "Editer l'annonce"
2576
 
2577
- #: business-directory-plugin.php:691
2578
  msgid "New Listing"
2579
  msgstr "Nouvelle annonce"
2580
 
2581
- #: business-directory-plugin.php:692
2582
  msgid "View Listing"
2583
  msgstr "Voir l'annonce"
2584
 
2585
- #: business-directory-plugin.php:693
2586
  msgid "Search Listings"
2587
- msgstr "Chercher les annonces"
2588
 
2589
- #: business-directory-plugin.php:694
2590
  msgid "No listings found"
2591
- msgstr "Aucunes annonces trouvées"
2592
 
2593
- #: business-directory-plugin.php:695
2594
  msgid "No listings found in trash"
2595
  msgstr "Aucunes annonces trouvées dans la corbeille"
2596
 
2597
- #: business-directory-plugin.php:717
2598
  msgid "Directory Categories"
2599
  msgstr "Catégories de l'aannuaire"
2600
 
2601
- #: business-directory-plugin.php:830 business-directory-plugin.php:837
2602
  msgctxt "rss feed"
2603
  msgid "%s Feed"
2604
  msgstr "%s diffusion"
2605
 
2606
- #: business-directory-plugin.php:1218
2607
  msgctxt "title"
2608
  msgid "Submit A Listing"
2609
  msgstr "Soumettre une annonce"
2610
 
2611
- #: business-directory-plugin.php:1228
2612
  msgctxt "title"
2613
  msgid "Find a Listing"
2614
  msgstr "trouver une annonce"
2615
 
2616
- #: business-directory-plugin.php:1238
2617
  msgctxt "title"
2618
  msgid "View All Listings"
2619
  msgstr "Voir toutes les annonces"
2620
 
2621
- #: business-directory-plugin.php:1258
2622
  msgctxt "title"
2623
  msgid "Listings tagged: %s"
2624
  msgstr "Annonces marquées: %s"
2625
 
2626
- #: core/class-csv-import.php:369
2627
  msgctxt "admin csv-import"
2628
  msgid "Could not create listing category \"%s\""
2629
  msgstr "Vous ne pouvez pas créer cette catégorie d'annonce \"%s\""
2630
 
2631
- #: core/class-csv-import.php:513
2632
  msgctxt "admin csv-import"
2633
  msgid "Username \"%s\" does not exist"
2634
  msgstr "Le nom d'utilisateur \"%s\" n'existe pas"
2635
 
2636
- #: core/class-csv-import.php:545
2637
  msgctxt "admin csv-import"
2638
  msgid "Missing required field: %s"
2639
  msgstr "Absence d'un champ requis: %s"
2640
 
2641
- #: core/class-csv-import.php:565
2642
  msgctxt "admin csv-import"
2643
  msgid "Listing category \"%s\" does not exist"
2644
  msgstr "La catégorie d'annonce \"%s\" n'existe pas"
@@ -2736,7 +2745,7 @@ msgctxt "listings-api"
2736
  msgid "Featured Listing"
2737
  msgstr "Annonce sélectionnée"
2738
 
2739
- #: core/class-listing.php:287 core/class-listing.php:313
2740
  msgctxt "listing"
2741
  msgid "(Fee Unavailable)"
2742
  msgstr "(Coûts Non disponible)"
@@ -2895,7 +2904,7 @@ msgstr "Utiliser CAPTCHA pour le formulaire de contact"
2895
  #: core/class-settings.php:56
2896
  msgctxt "admin settings"
2897
  msgid "Use reCAPTCHA for listing submits"
2898
- msgstr "Utiliser CAPTCHA pour la soumission d'annonce"
2899
 
2900
  #: core/class-settings.php:59
2901
  msgctxt "admin settings"
@@ -2921,7 +2930,8 @@ msgstr "Termes et conditions"
2921
  msgctxt "admin settings"
2922
  msgid "Display and require user agreement to Terms and Conditions"
2923
  msgstr ""
2924
- "Affiche et nécessite l'accord de l'utilisateur avec les Termes et Conditions"
 
2925
 
2926
  #: core/class-settings.php:79
2927
  msgctxt "admin settings"
@@ -2941,7 +2951,7 @@ msgstr "Option d'affichage d'annuaire"
2941
  #: core/class-settings.php:84
2942
  msgctxt "admin settings"
2943
  msgid "Show the \"Submit listing\" button."
2944
- msgstr "Montrer le boutton \"Soumettre annonce\"."
2945
 
2946
  #: core/class-settings.php:85
2947
  msgctxt "admin settings"
@@ -2963,14 +2973,27 @@ msgctxt "admin settings"
2963
  msgid "Directory Search"
2964
  msgstr "Recherche dans l'annuaire"
2965
 
2966
- #: core/class-settings.php:95
2967
  msgctxt "admin settings"
2968
- msgid "Display search form when displaying search results?"
2969
  msgstr ""
2970
- "Afficher un formulaire de recherche lors de l'affichage des résultats de "
2971
- "recherche?"
2972
 
2973
- #: core/class-settings.php:102
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
2974
  msgctxt "admin settings"
2975
  msgid ""
2976
  "You have selected a textarea field to be included in quick searches. "
@@ -2981,7 +3004,7 @@ msgstr ""
2981
  "rapides. Les recherches portant sur ces domaines sont très coûteuses et "
2982
  "pourraient entraîner des dépassements de délais et / ou lenteur générale."
2983
 
2984
- #: core/class-settings.php:104
2985
  msgctxt "admin settings"
2986
  msgid ""
2987
  "Use Ctrl-Click to include multiple fields in the search. Choosing too many "
@@ -2992,17 +3015,17 @@ msgstr ""
2992
  "trop de champs pour l'inclusion dans Recherche rapide peut entraîner des "
2993
  "performances de recherche plus lentes."
2994
 
2995
- #: core/class-settings.php:107
2996
  msgctxt "admin settings"
2997
  msgid "Quick search fields"
2998
  msgstr "Champ de recherche rapide"
2999
 
3000
- #: core/class-settings.php:115
3001
  msgctxt "admin settings"
3002
  msgid "Enable high performance searches?"
3003
  msgstr "Activer les recherches de hautes performance?"
3004
 
3005
- #: core/class-settings.php:118
3006
  msgctxt "admin settings"
3007
  msgid ""
3008
  "Enabling this makes BD sacrifice result quality to improve speed. This is "
@@ -3014,12 +3037,12 @@ msgstr ""
3014
  "sur les plans d'hébergement partagé, où la performance de base de données "
3015
  "est un problème."
3016
 
3017
- #: core/class-settings.php:123
3018
  msgctxt "admin settings"
3019
  msgid "Miscellaneous Settings"
3020
  msgstr "Paramètres divers"
3021
 
3022
- #: core/class-settings.php:127
3023
  msgctxt "admin settings"
3024
  msgid ""
3025
  "Check this if you are having trouble with BD, particularly when importing or "
@@ -3028,7 +3051,7 @@ msgstr ""
3028
  "Cochez cette case si vous rencontrez des problèmes avec le plugin, en "
3029
  "particulier lors de l'importation ou de l'exportation de fichiers CSV."
3030
 
3031
- #: core/class-settings.php:130
3032
  msgctxt "admin settings"
3033
  msgid ""
3034
  "If this compatibility mode doesn't solve your issue, you may be experiencing "
@@ -3039,41 +3062,42 @@ msgstr ""
3039
  "confronté à un conflit plus grave. <a> Voici un article </a> sur la façon de "
3040
  "tester les conflits liés aux thème et/ou aux plugins avec le plugin."
3041
 
3042
- #: core/class-settings.php:133
3043
  msgctxt "admin settings"
3044
  msgid "Enable AJAX compatibility mode?"
3045
  msgstr "Activer le mode de comptabilité AJAX?"
3046
 
3047
- #: core/class-settings.php:141 core/class-settings.php:615
3048
  msgctxt "admin settings"
3049
  msgid "Listings"
3050
  msgstr "Annonces"
3051
 
3052
- #: core/class-settings.php:142 core/class-settings.php:289
 
3053
  msgctxt "admin settings"
3054
  msgid "General Settings"
3055
  msgstr "Paramètres généraux"
3056
 
3057
- #: core/class-settings.php:144
3058
  msgctxt "admin settings"
3059
  msgid "Listings per page"
3060
  msgstr "Annonces par pages"
3061
 
3062
- #: core/class-settings.php:145
3063
  msgctxt "admin settings"
3064
  msgid ""
3065
  "Number of listings to show per page. Use a value of \"0\" to show all "
3066
  "listings."
3067
  msgstr ""
3068
- "Nombre d'annonces à afficher par page. Utilisez une valeur de \"0 \" pour "
3069
- "afficher toutes les annonces."
3070
 
3071
- #: core/class-settings.php:147
3072
  msgctxt "admin settings"
3073
  msgid "Listing duration for no-fee sites (in days)"
3074
  msgstr "Durée des annonces pour les sites sans honoraires(en jours)"
3075
 
3076
- #: core/class-settings.php:148
3077
  msgctxt "admin settings"
3078
  msgid ""
3079
  "Use a value of \"0\" to keep a listing alive indefinitely or enter a number "
@@ -3082,13 +3106,13 @@ msgstr ""
3082
  "Utilisez une valeur de \"0 \" afin de garder une annonce indéfiniment ou "
3083
  "entrez un numéro de moins de 10 ans (3650 jours)."
3084
 
3085
- #: core/class-settings.php:154
3086
  msgctxt "admin settings"
3087
  msgid "Include listing contact form on listing pages?"
3088
  msgstr ""
3089
  "Inclure les annonces de formulaire de contact sur les pages d'annonces?"
3090
 
3091
- #: core/class-settings.php:157
3092
  msgctxt "admin settings"
3093
  msgid ""
3094
  "Allows visitors to contact listing authors privately. Authors will receive "
@@ -3097,17 +3121,17 @@ msgstr ""
3097
  "Permets aux visiteurs de contacter les auteurs d'annonces de façon privé. "
3098
  "Les auteurs recevront les messages par e-mail."
3099
 
3100
- #: core/class-settings.php:160
3101
  msgctxt "admin settings"
3102
  msgid "Require login for using the contact form?"
3103
  msgstr "Exiger une connexion pour utiliser le formulaire de contact?"
3104
 
3105
- #: core/class-settings.php:166
3106
  msgctxt "admin settings"
3107
  msgid "Maximum number of contact form submits per day"
3108
  msgstr "Nombre maximum de formulaire de contact soumis par jour"
3109
 
3110
- #: core/class-settings.php:169
3111
  msgctxt "admin settings"
3112
  msgid ""
3113
  "Use this to prevent spamming of listing owners. 0 means unlimited submits "
@@ -3116,12 +3140,12 @@ msgstr ""
3116
  "Utilisez ceci pour prévenir les annonces contenant des spams. 0 siginifie un "
3117
  "nombre de soumission illimité par jour."
3118
 
3119
- #: core/class-settings.php:175
3120
  msgctxt "admin settings"
3121
  msgid "Include comment form on listing pages?"
3122
  msgstr "Inclure les formulaire de commentaires dans pages annonces?"
3123
 
3124
- #: core/class-settings.php:178
3125
  msgctxt "admin settings"
3126
  msgid ""
3127
  "Allow visitors to discuss listings using the standard WordPress comment "
@@ -3130,37 +3154,37 @@ msgstr ""
3130
  "Permettre aux visiteurs de discuter des annonces en utilisant le formulaire "
3131
  "de commentaire standard WordPress. Les commentaires sont visibles par tous."
3132
 
3133
- #: core/class-settings.php:179
3134
  msgctxt "admin settings"
3135
  msgid "Show listings under categories on main page?"
3136
  msgstr "Voir les annonces catégorisées sur la page principale?"
3137
 
3138
- #: core/class-settings.php:180
3139
  msgctxt "admin settings"
3140
  msgid "Status of listings upon uninstalling plugin"
3141
  msgstr "Statut des annonces dès la désinstallation du plugin"
3142
 
3143
- #: core/class-settings.php:182
3144
  msgctxt "admin settings"
3145
  msgid "Status of deleted listings"
3146
  msgstr "Statut des annonces effacés"
3147
 
3148
- #: core/class-settings.php:185
3149
  msgctxt "admin settings"
3150
  msgid "Listing Renewal"
3151
  msgstr "Renouvellement des annonces"
3152
 
3153
- #: core/class-settings.php:186
3154
  msgctxt "admin settings"
3155
  msgid "Turn on listing renewal option?"
3156
  msgstr "Activer l'option renouvellement des annonces?"
3157
 
3158
- #: core/class-settings.php:189
3159
  msgctxt "admin settings"
3160
  msgid "Allow recurring renewal payments?"
3161
  msgstr "Autoriser les paiements récurrents de renouvellement?"
3162
 
3163
- #: core/class-settings.php:192
3164
  msgctxt "admin settings"
3165
  msgid ""
3166
  "Allow users to opt in for automatic renewal of their listings. The fee is "
@@ -3170,13 +3194,13 @@ msgstr ""
3170
  "leurs annonces. La redevance est perçue au moment de l'inscription et expire "
3171
  "sans intervention de l'utilisateur."
3172
 
3173
- #: core/class-settings.php:196
3174
  msgctxt "admin settings"
3175
  msgid "Use recurring payments as the default payment method?"
3176
  msgstr ""
3177
  "Utiliser les paiements récurrents comme méthode de paiement par défaut?"
3178
 
3179
- #: core/class-settings.php:199
3180
  msgctxt "admin settings"
3181
  msgid ""
3182
  "Enable automatic renewal without having users opt in during the submit "
@@ -3185,12 +3209,12 @@ msgstr ""
3185
  "Activer le renouvellement automatique sans avoir à avertir les utilisateurs "
3186
  "lors du processus de soumission."
3187
 
3188
- #: core/class-settings.php:204
3189
  msgctxt "admin settings"
3190
  msgid "Listing renewal e-mail threshold (in days)"
3191
  msgstr "Seuil de renouvellement des annonces par e-mail (en jours)"
3192
 
3193
- #: core/class-settings.php:207
3194
  msgctxt "admin settings"
3195
  msgid ""
3196
  "Configure how many days before listing expiration is the renewal e-mail sent."
@@ -3198,7 +3222,7 @@ msgstr ""
3198
  "Configurer le nombre de jours avant l'expiration des annonces doit se "
3199
  "dérouler le renouvellement d'envoie d'e-mail."
3200
 
3201
- #: core/class-settings.php:211
3202
  msgctxt "admin settings"
3203
  msgid ""
3204
  "Send expiration notices including a cancel links to auto-renewed listings?"
@@ -3206,19 +3230,19 @@ msgstr ""
3206
  "Envoyer des avis d'expiration y compris un lien d'annulation vers le "
3207
  "renouvellement automatique des annonces?"
3208
 
3209
- #: core/class-settings.php:218
3210
  msgctxt "admin settings"
3211
  msgid "Remind listing owners of expired listings (past due)?"
3212
  msgstr ""
3213
  "Rappeler les propriétaires des annonces lorsque ces dernières arrives à "
3214
  "expiration (en souffrance)?"
3215
 
3216
- #: core/class-settings.php:223
3217
  msgctxt "admin settings"
3218
  msgid "Listing renewal reminder e-mail threshold (in days)"
3219
  msgstr "Seuil du renouvellement des rappels e-mail des annonces (en jours)"
3220
 
3221
- #: core/class-settings.php:226
3222
  msgctxt "admin settings"
3223
  msgid ""
3224
  "Configure how many days after the expiration of a listing an e-mail reminder "
@@ -3227,164 +3251,164 @@ msgstr ""
3227
  "Configurer le nombre de jours après l'expiration d'une annonces d'un rappel "
3228
  "avant qu'un e-mail soit envoyé au propriétaire."
3229
 
3230
- #: core/class-settings.php:229
3231
  msgctxt "admin settings"
3232
  msgid "Post/Category Settings"
3233
  msgstr "Paramètres de Messages/Catégories"
3234
 
3235
- #: core/class-settings.php:230
3236
  msgctxt "admin settings"
3237
  msgid "Default new post status"
3238
  msgstr "Statut du nouveau message par défaut"
3239
 
3240
- #: core/class-settings.php:233
3241
  msgctxt "admin settings"
3242
  msgid "Edit post status"
3243
  msgstr "Editer le statut du message"
3244
 
3245
- #: core/class-settings.php:235
3246
  msgctxt "admin settings"
3247
  msgid "Order categories list by"
3248
  msgstr "Ordonner les catégories des annonces par"
3249
 
3250
- #: core/class-settings.php:237
3251
  msgctxt "admin settings"
3252
  msgid "Name"
3253
  msgstr "Nom"
3254
 
3255
- #: core/class-settings.php:238
3256
  msgctxt "admin settings"
3257
  msgid "Slug"
3258
  msgstr "Identifiant"
3259
 
3260
- #: core/class-settings.php:239
3261
  msgctxt "admin settings"
3262
  msgid "Listing Count"
3263
  msgstr "Compteur d'annonce"
3264
 
3265
- #: core/class-settings.php:241
3266
  msgctxt "admin settings"
3267
  msgid "Sort order for categories"
3268
  msgstr "Ordre de tri pour les catégories"
3269
 
3270
- #: core/class-settings.php:242 core/class-settings.php:260
3271
  msgctxt "admin settings"
3272
  msgid "Ascending"
3273
  msgstr "Ascendant"
3274
 
3275
- #: core/class-settings.php:242 core/class-settings.php:260
3276
  msgctxt "admin settings"
3277
  msgid "Descending"
3278
  msgstr "Descendant"
3279
 
3280
- #: core/class-settings.php:243
3281
  msgctxt "admin settings"
3282
  msgid "Show category post count?"
3283
  msgstr "Montrer les catégories par messages postés?"
3284
 
3285
- #: core/class-settings.php:244
3286
  msgctxt "admin settings"
3287
  msgid "Hide empty categories?"
3288
  msgstr "Cacher les catégories vides?"
3289
 
3290
- #: core/class-settings.php:245
3291
  msgctxt "admin settings"
3292
  msgid "Show only parent categories in category list?"
3293
  msgstr ""
3294
  "Montrer seulement les catégories parentes dans la liste des catégories?"
3295
 
3296
- #: core/class-settings.php:247
3297
  msgctxt "admin settings"
3298
  msgid "Listings Sorting"
3299
  msgstr "Tri des annonces"
3300
 
3301
- #: core/class-settings.php:248
3302
  msgctxt "admin settings"
3303
  msgid "Order directory listings by"
3304
  msgstr "Ordonner les annonces de l'annuaire par"
3305
 
3306
- #: core/class-settings.php:250
3307
  msgctxt "admin settings"
3308
  msgid "Title"
3309
  msgstr "Titre"
3310
 
3311
- #: core/class-settings.php:251
3312
  msgctxt "admin settings"
3313
  msgid "Author"
3314
  msgstr "Auteur"
3315
 
3316
- #: core/class-settings.php:252
3317
  msgctxt "admin settings"
3318
  msgid "Date posted"
3319
  msgstr "Date d'ajout"
3320
 
3321
- #: core/class-settings.php:253
3322
  msgctxt "admin settings"
3323
  msgid "Date last modified"
3324
  msgstr "Date de dernière modification"
3325
 
3326
- #: core/class-settings.php:254
3327
  msgctxt "admin settings"
3328
  msgid "Random"
3329
  msgstr "Aléatoire"
3330
 
3331
- #: core/class-settings.php:255
3332
  msgctxt "admin settings"
3333
  msgid "Paid first then free. Inside each group by date."
3334
  msgstr ""
3335
 
3336
- #: core/class-settings.php:256
3337
  msgctxt "admin settings"
3338
  msgid "Paid first then free. Inside each group by title."
3339
  msgstr ""
3340
 
3341
- #: core/class-settings.php:258
3342
  msgctxt "admin settings"
3343
  msgid "Sort directory listings by"
3344
  msgstr "Trier les annonces de l'annuaire par"
3345
 
3346
- #: core/class-settings.php:259
3347
  msgctxt "admin settings"
3348
  msgid "Ascending for ascending order A-Z, Descending for descending order Z-A"
3349
  msgstr ""
3350
  "Ascendant pour un classement de A à Z, Descendant pour un classement de Z à A"
3351
 
3352
- #: core/class-settings.php:264
3353
  msgctxt "admin settings"
3354
  msgid "Enable sort bar?"
3355
  msgstr "Activer la barre de tri?"
3356
 
3357
- #: core/class-settings.php:269
3358
  msgctxt "admin settings"
3359
  msgid "Sortbar Fields"
3360
  msgstr "Champs de la barre de tri"
3361
 
3362
- #: core/class-settings.php:278
3363
  msgctxt "admin settings"
3364
  msgid "Featured (Sticky) listing settings"
3365
  msgstr "Paramètres sélectionnés (Post-it) des annonces"
3366
 
3367
- #: core/class-settings.php:279
3368
  msgctxt "admin settings"
3369
  msgid "Offer sticky listings?"
3370
  msgstr "Proposer des annonces par Post-it?"
3371
 
3372
- #: core/class-settings.php:280
3373
  msgctxt "admin settings"
3374
  msgid "Offer upgrades during submit process?"
3375
  msgstr "Proposer des améliorations durant le processus de soumission?"
3376
 
3377
- #: core/class-settings.php:281
3378
  msgctxt "admin settings"
3379
  msgid "Sticky listing price"
3380
  msgstr "Prix des annonces en Post-it"
3381
 
3382
- #: core/class-settings.php:282
3383
  msgctxt "admin settings"
3384
  msgid "Sticky listing page description text"
3385
  msgstr "Texte de description de la page annonce en Post-it"
3386
 
3387
- #: core/class-settings.php:283
3388
  msgctxt "admin settings"
3389
  msgid ""
3390
  "You can upgrade your listing to featured status. Featured listings will "
@@ -3394,33 +3418,33 @@ msgstr ""
3394
  "annonces ainsi traitées vont toujours apparaître avant les annonces "
3395
  "courantes."
3396
 
3397
- #: core/class-settings.php:288
3398
  msgctxt "admin settings"
3399
  msgid "E-Mail"
3400
  msgstr "E-Mail"
3401
 
3402
- #: core/class-settings.php:292
3403
  msgctxt "admin settings"
3404
  msgid "Display email address fields publicly?"
3405
  msgstr "Affichage des champs d'adresses e-mail au public?"
3406
 
3407
- #: core/class-settings.php:295
3408
  msgctxt "admin settings"
3409
  msgid ""
3410
  "Shows the email address of the listing owner to all web users. NOT "
3411
  "RECOMMENDED as this increases spam to the address and allows spam bots to "
3412
  "harvest it for future use."
3413
  msgstr ""
3414
- "Affiche l'adresse email du propriétaire de l'annonce à tous les utilisateurs "
3415
- "du Web. PAS RECOMMANDE car cela augmente le spam à l'adresse en question et "
3416
- "permet aux spam bots de la récolter pour une utilisation future."
3417
 
3418
- #: core/class-settings.php:298
3419
  msgctxt "admin settings"
3420
  msgid "How to determine the listing's email address?"
3421
  msgstr "Comment définir l'adresse e-mail de l'annonce?"
3422
 
3423
- #: core/class-settings.php:301
3424
  msgctxt "admin settings"
3425
  msgid ""
3426
  "This affects emails sent to listing owners via contact forms or when their "
@@ -3429,115 +3453,115 @@ msgstr ""
3429
  "Cela affecte l'envoie des emails aux propriétaires des annonces via le "
3430
  "formulaire de contact ou quand leurs annonces expirent."
3431
 
3432
- #: core/class-settings.php:308
3433
  msgctxt "admin settings"
3434
  msgid "E-Mail Notifications"
3435
  msgstr "Notification mail"
3436
 
3437
- #: core/class-settings.php:311
3438
  msgctxt "admin settings"
3439
  msgid "Notify admin via e-mail when..."
3440
  msgstr "Prévenir l'administrateur via courriel quand..."
3441
 
3442
- #: core/class-settings.php:315
3443
  msgctxt "admin settings"
3444
  msgid "A new listing is submitted."
3445
  msgstr "Une nouvelle annonce a été soumise."
3446
 
3447
- #: core/class-settings.php:316
3448
  msgctxt "admin settings"
3449
  msgid "A listing is edited."
3450
  msgstr "Une annonce est édité."
3451
 
3452
- #: core/class-settings.php:317
3453
  msgctxt "admin settings"
3454
  msgid "A listing expires."
3455
  msgstr "Une annonce expire."
3456
 
3457
- #: core/class-settings.php:318
3458
  msgctxt "admin settings"
3459
  msgid "A contact message is sent to a listing's owner."
3460
  msgstr "Un message de contact est envoyé a un propriétaire d'annonce."
3461
 
3462
- #: core/class-settings.php:324
3463
  msgctxt "admin settings"
3464
  msgid "CC this e-mail address too"
3465
  msgstr "CC cette adresse mail aussi"
3466
 
3467
- #: core/class-settings.php:330
3468
  msgctxt "admin settings"
3469
  msgid "Notify users via e-mail when..."
3470
  msgstr "Prévenir les utilisateurs via courriel quand..."
3471
 
3472
- #: core/class-settings.php:333
3473
  msgctxt "admin settings"
3474
  msgid "You can modify the text template used for most of these e-mails below."
3475
  msgstr ""
3476
  "Vous pouvez modifier le modèle de texte utilisé pour la plupart de ces e-"
3477
  "mails ci-dessous."
3478
 
3479
- #: core/class-settings.php:334
3480
  msgctxt "admin settings"
3481
  msgid "Their listing is submitted."
3482
  msgstr "Leur annonce est soumise."
3483
 
3484
- #: core/class-settings.php:335
3485
  msgctxt "admin settings"
3486
  msgid "Their listing is approved/published."
3487
  msgstr "Leur annonce est approuvée/publiée"
3488
 
3489
- #: core/class-settings.php:344
3490
  msgctxt "contact email"
3491
  msgid "You have received a reply from your listing at %s."
3492
  msgstr "Vous avez reçu une réponse à votre annonce de %s."
3493
 
3494
- #: core/class-settings.php:345
3495
  msgctxt "contact email"
3496
  msgid "Name: %s"
3497
  msgstr "Nom: %s"
3498
 
3499
- #: core/class-settings.php:346
3500
  msgctxt "contact email"
3501
  msgid "E-Mail: %s"
3502
  msgstr "E-Mail: %s"
3503
 
3504
- #: core/class-settings.php:347
3505
  msgctxt "contact email"
3506
  msgid "Message:"
3507
  msgstr "Message:"
3508
 
3509
- #: core/class-settings.php:349
3510
  msgctxt "contact email"
3511
  msgid "Time: %s"
3512
  msgstr "Date: %s"
3513
 
3514
- #: core/class-settings.php:351
3515
  msgctxt "admin settings"
3516
  msgid "E-Mail Templates"
3517
  msgstr "Template d'E-Mail"
3518
 
3519
- #: core/class-settings.php:354
3520
  msgctxt "admin settings"
3521
  msgid "Email confirmation message"
3522
  msgstr "Message de confirmation par E-Mail"
3523
 
3524
- #: core/class-settings.php:358
3525
  msgctxt "admin settings"
3526
  msgid "Sent after a listing has been submitted."
3527
  msgstr "Envoyer après qu'une annonce ait été soumise"
3528
 
3529
- #: core/class-settings.php:359 core/class-settings.php:367
3530
- #: core/class-settings.php:408
3531
  msgctxt "admin settings"
3532
  msgid "Listing's title"
3533
  msgstr "Titre de l'annonce"
3534
 
3535
- #: core/class-settings.php:362
3536
  msgctxt "admin settings"
3537
  msgid "Listing published message"
3538
  msgstr "Message publié de l'annonce"
3539
 
3540
- #: core/class-settings.php:365
3541
  msgctxt "admin settings"
3542
  msgid ""
3543
  "Your listing \"[listing]\" is now available at [listing-url] and can be "
@@ -3546,23 +3570,23 @@ msgstr ""
3546
  "Votre annonce \"[listing]\" est maintenant disponible à [listing-url] et "
3547
  "elle peut être vu par tout le monde."
3548
 
3549
- #: core/class-settings.php:366
3550
  msgctxt "admin settings"
3551
  msgid "Sent when the listing has been published or approved by an admin."
3552
  msgstr ""
3553
  "Envoyé lorsque l'annonce a été publiée ou approuvée par un administrateur."
3554
 
3555
- #: core/class-settings.php:368
3556
  msgctxt "admin settings"
3557
  msgid "Listing's URL"
3558
  msgstr "Url de l'annonce"
3559
 
3560
- #: core/class-settings.php:372
3561
  msgctxt "admin settings"
3562
  msgid "Listing Contact Message"
3563
- msgstr "Listage des messages de contact"
3564
 
3565
- #: core/class-settings.php:376
3566
  msgctxt "admin settings"
3567
  msgid ""
3568
  "Sent to listing owners when someone uses the contact form on their listing "
@@ -3571,34 +3595,34 @@ msgstr ""
3571
  "Envoyer aux propriétaires des annonces quand quelqu'un utilise le formulaire "
3572
  "de contact sur leurs pages d'annonces."
3573
 
3574
- #: core/class-settings.php:386
3575
  msgctxt "admin settings"
3576
  msgid "Payment related"
3577
  msgstr "Paiement lié"
3578
 
3579
- #: core/class-settings.php:403
3580
  msgctxt "admin settings"
3581
  msgid "Payment abandoned reminder message"
3582
  msgstr "Paiement abandonné, message de rappel"
3583
 
3584
- #: core/class-settings.php:407
3585
  msgctxt "admin settings"
3586
  msgid "Sent some time after a pending payment is abandoned by users."
3587
  msgstr ""
3588
  "Envoyer après un certain temps lorsqu'un paiement en attente est abandonné "
3589
  "par les utilisateurs."
3590
 
3591
- #: core/class-settings.php:409
3592
  msgctxt "admin settings"
3593
  msgid "Checkout URL link"
3594
  msgstr "Vérificateur de lien URL"
3595
 
3596
- #: core/class-settings.php:415
3597
  msgctxt "admin settings"
3598
  msgid "Renewal Reminders"
3599
  msgstr "Renouveller les rappels"
3600
 
3601
- #: core/class-settings.php:418
3602
  msgctxt "admin settings"
3603
  msgid ""
3604
  "This section refers only to the text of the renewal/expiration notices. You "
@@ -3608,12 +3632,12 @@ msgstr ""
3608
  "d'expiration. Vous pouvez également configurer <a> quand les e-mails seront "
3609
  "envoyés </a>."
3610
 
3611
- #: core/class-settings.php:422
3612
  msgctxt "admin settings"
3613
  msgid "Pending expiration e-mail message"
3614
  msgstr "Expiration imminente du mail"
3615
 
3616
- #: core/class-settings.php:426
3617
  msgctxt "settings"
3618
  msgid ""
3619
  "Sent some time before the listing expires. Applies to non-recurring renewals "
@@ -3622,50 +3646,50 @@ msgstr ""
3622
  "Envoyé quelque temps avant l'expiration de l'annonce. Valable seulement pour "
3623
  "les renouvellements non-récurrents."
3624
 
3625
- #: core/class-settings.php:427 core/class-settings.php:440
3626
- #: core/class-settings.php:453 core/class-settings.php:466
3627
- #: core/class-settings.php:479
3628
  msgctxt "settings"
3629
  msgid "Listing's name (with link)"
3630
  msgstr "Nom de l'annonce (avec lien)"
3631
 
3632
- #: core/class-settings.php:428 core/class-settings.php:441
3633
- #: core/class-settings.php:454 core/class-settings.php:467
3634
- #: core/class-settings.php:480
3635
  msgctxt "settings"
3636
  msgid "Author's name"
3637
  msgstr "Nom de l'auteur"
3638
 
3639
- #: core/class-settings.php:429 core/class-settings.php:442
3640
- #: core/class-settings.php:481
3641
  msgctxt "settings"
3642
  msgid "Expiration date"
3643
  msgstr "Date d'expiration"
3644
 
3645
- #: core/class-settings.php:430
3646
  msgctxt "settings"
3647
  msgid "Category that is going to expire"
3648
  msgstr "Catégorier qui va expirer"
3649
 
3650
- #: core/class-settings.php:431 core/class-settings.php:444
3651
- #: core/class-settings.php:483
3652
  msgctxt "settings"
3653
  msgid "Link to renewal page"
3654
  msgstr "Lien pour renouveller la page"
3655
 
3656
- #: core/class-settings.php:432 core/class-settings.php:445
3657
- #: core/class-settings.php:457 core/class-settings.php:470
3658
- #: core/class-settings.php:484
3659
  msgctxt "settings"
3660
  msgid "Link to your site"
3661
  msgstr "Lien vers votre site"
3662
 
3663
- #: core/class-settings.php:435
3664
  msgctxt "admin settings"
3665
  msgid "Listing Renewal e-mail message"
3666
  msgstr "Message mail de renouvellement d'annonce"
3667
 
3668
- #: core/class-settings.php:439
3669
  msgctxt "settings"
3670
  msgid ""
3671
  "Sent at the time of listing expiration. Applies to non-recurring renewals "
@@ -3674,17 +3698,17 @@ msgstr ""
3674
  "Envoyé au moment de l'expiration de l'annonce. Seulement valable pour les "
3675
  "renouvellements non-récurrents."
3676
 
3677
- #: core/class-settings.php:443 core/class-settings.php:482
3678
  msgctxt "settings"
3679
  msgid "Category that expired"
3680
  msgstr "Catégories qui ont expiré"
3681
 
3682
- #: core/class-settings.php:448
3683
  msgctxt "admin settings"
3684
  msgid "Listing auto-renewal reminder (recurring payments)"
3685
  msgstr "Rappel d'auto-renouvellement des annonces (paiements récurrents)"
3686
 
3687
- #: core/class-settings.php:452
3688
  msgctxt "settings"
3689
  msgid ""
3690
  "Sent some time before the listing is auto-renewed. Applies to recurring "
@@ -3693,27 +3717,27 @@ msgstr ""
3693
  "Envoyé un certain temps avant que l'annonce est auto-renouvellement. Valable "
3694
  "pour les renouvellements périodiques seulement."
3695
 
3696
- #: core/class-settings.php:455 core/class-settings.php:469
3697
  msgctxt "settings"
3698
  msgid "Renewal date"
3699
  msgstr "Date de renouvellement"
3700
 
3701
- #: core/class-settings.php:456
3702
  msgctxt "settings"
3703
  msgid "Category that is going to be renewed"
3704
  msgstr "Catégories qui vont être renouvelées"
3705
 
3706
- #: core/class-settings.php:458
3707
  msgctxt "settings"
3708
  msgid "Link to manage subscriptions"
3709
  msgstr "Lien pour gérer les abonnements"
3710
 
3711
- #: core/class-settings.php:461
3712
  msgctxt "admin settings"
3713
  msgid "Listing Renewal e-mail message (recurring payments)"
3714
  msgstr "Renouvellement des annonces par mail (paiements récurrents)"
3715
 
3716
- #: core/class-settings.php:465
3717
  msgctxt "settings"
3718
  msgid ""
3719
  "Sent after the listing is auto-renewed. Applies to recurring renewals only."
@@ -3721,17 +3745,17 @@ msgstr ""
3721
  "Envoyé dès que les annonces se soient auto-renouvellées. Appliqué aux "
3722
  "paiements récurrents seulement."
3723
 
3724
- #: core/class-settings.php:468
3725
  msgctxt "settings"
3726
  msgid "Renewed category"
3727
  msgstr "Catégories renouvellées"
3728
 
3729
- #: core/class-settings.php:474
3730
  msgctxt "admin settings"
3731
  msgid "Renewal reminder e-mail message"
3732
  msgstr "Rennouveller le rappel par mail"
3733
 
3734
- #: core/class-settings.php:478
3735
  msgctxt "settings"
3736
  msgid ""
3737
  "Sent some time after listing expiration and when no renewal has occurred. "
@@ -3741,33 +3765,33 @@ msgstr ""
3741
  "renouvellement n'a pas eu lieu. Valable pour deux renouvellements récurrents "
3742
  "et non récurrents."
3743
 
3744
- #: core/class-settings.php:488
3745
  msgctxt "admin settings"
3746
  msgid "Payment"
3747
  msgstr "Paiement"
3748
 
3749
- #: core/class-settings.php:489
3750
  msgctxt "admin settings"
3751
  msgid "Payment Settings"
3752
  msgstr "Paramètres de paiement"
3753
 
3754
- #: core/class-settings.php:492
3755
  msgctxt "admin settings"
3756
  msgid "Turn On payments?"
3757
  msgstr "Activer les paiements?"
3758
 
3759
- #: core/class-settings.php:494
3760
  msgctxt "admin settings"
3761
  msgid "Put payment gateways in test mode?"
3762
  msgstr "Passer les passerelles de paiement en mode test?"
3763
 
3764
- #: core/class-settings.php:499
3765
  msgctxt "admin settings"
3766
  msgid "Perform checkouts on the secure (HTTPS) version of your site?"
3767
  msgstr ""
3768
  "Effectuer la vérification sur la version sécurisée (HTTPS) de votre site?"
3769
 
3770
- #: core/class-settings.php:502
3771
  msgctxt "admin settings"
3772
  msgid ""
3773
  "Recommended for added security. For this to work you need to enable HTTPS on "
@@ -3776,165 +3800,163 @@ msgstr ""
3776
  "Recommandé pour une sécurité accrue. Pour que cela fonctionne, vous devez "
3777
  "activer HTTPS sur votre serveur et <a> obtenir un certificat SSL </a>."
3778
 
3779
- #: core/class-settings.php:506
3780
  msgctxt "admin settings"
3781
  msgid "Currency Code"
3782
  msgstr "Code de devise"
3783
 
3784
- #: core/class-settings.php:508
3785
  msgctxt "admin settings"
3786
  msgid "Australian Dollar (AUD)"
3787
  msgstr "Dollar Australien (AUD)"
3788
 
3789
- #: core/class-settings.php:509
3790
  msgctxt "admin settings"
3791
  msgid "Brazilian Real (BRL)"
3792
  msgstr "Real Brésilien (BRL)"
3793
 
3794
- #: core/class-settings.php:510
3795
  msgctxt "admin settings"
3796
  msgid "Canadian Dollar (CAD)"
3797
  msgstr "Dollar Canadien (CAD)"
3798
 
3799
- #: core/class-settings.php:511
3800
  msgctxt "admin settings"
3801
  msgid "Czech Koruna (CZK)"
3802
  msgstr "Couronne Tchèque (CZK)"
3803
 
3804
- #: core/class-settings.php:512
3805
  msgctxt "admin settings"
3806
  msgid "Danish Krone (DKK)"
3807
  msgstr "Couronne Danoise (DKK)"
3808
 
3809
- #: core/class-settings.php:513
3810
  msgctxt "admin settings"
3811
  msgid "Euro (EUR)"
3812
  msgstr "Euro (EUR)"
3813
 
3814
- #: core/class-settings.php:514
3815
  msgctxt "admin settings"
3816
  msgid "Hong Kong Dollar (HKD)"
3817
  msgstr "Dollar de Hong Kong(HKD)"
3818
 
3819
- #: core/class-settings.php:515
3820
  msgctxt "admin settings"
3821
  msgid "Hungarian Forint (HUF)"
3822
  msgstr "Forint Hongrois (HUF)"
3823
 
3824
- #: core/class-settings.php:516
3825
  msgctxt "admin settings"
3826
  msgid "Israeli New Shequel (ILS)"
3827
  msgstr "Nouveau Shequel Israélien (ILS)"
3828
 
3829
- #: core/class-settings.php:517
3830
  msgctxt "admin settings"
3831
  msgid "Japanese Yen (JPY)"
3832
  msgstr "Yen Japonais (JPY)"
3833
 
3834
- #: core/class-settings.php:518
3835
  msgctxt "admin settings"
3836
  msgid "Malasian Ringgit (MYR)"
3837
  msgstr "Ringgit Malaisien (MYR)"
3838
 
3839
- #: core/class-settings.php:519
3840
  msgctxt "admin settings"
3841
  msgid "Mexican Peso (MXN)"
3842
  msgstr "Peso Mexicain (MXN)"
3843
 
3844
- #: core/class-settings.php:520
3845
  msgctxt "admin settings"
3846
  msgid "Norwegian Krone (NOK)"
3847
  msgstr "Couronne Norvégienne (NOK)"
3848
 
3849
- #: core/class-settings.php:521
3850
  msgctxt "admin settings"
3851
  msgid "New Zealand Dollar (NZD)"
3852
  msgstr "Dollar Néo-Zélandais (NZD)"
3853
 
3854
- #: core/class-settings.php:522
3855
  msgctxt "admin settings"
3856
  msgid "Philippine Peso (PHP)"
3857
  msgstr "Peso Phillipin (PHP)"
3858
 
3859
- #: core/class-settings.php:523
3860
  msgctxt "admin settings"
3861
  msgid "Polish Zloty (PLN)"
3862
  msgstr "Zloty Polonais (PLN)"
3863
 
3864
- #: core/class-settings.php:524
3865
  msgctxt "admin settings"
3866
  msgid "Pound Sterling (GBP)"
3867
  msgstr "Livre Sterling (GBP)"
3868
 
3869
- #: core/class-settings.php:525
3870
  msgctxt "admin settings"
3871
  msgid "Singapore Dollar (SGD)"
3872
  msgstr "Dollar Singaporien (SGD)"
3873
 
3874
- #: core/class-settings.php:526
3875
  msgctxt "admin settings"
3876
  msgid "Swedish Krona (SEK)"
3877
  msgstr "Couronne Suédoise (SEK)"
3878
 
3879
- #: core/class-settings.php:527
3880
  msgctxt "admin settings"
3881
  msgid "Swiss Franc (CHF)"
3882
  msgstr "Franc Suisse (CHF)"
3883
 
3884
- #: core/class-settings.php:528
3885
  msgctxt "admin settings"
3886
  msgid "Taiwan Dollar (TWD)"
3887
  msgstr "Dollar Taiwanais (TWD)"
3888
 
3889
- #: core/class-settings.php:529
3890
  msgctxt "admin settings"
3891
  msgid "Thai Baht (THB)"
3892
  msgstr "Baht Thaïlandais"
3893
 
3894
- #: core/class-settings.php:530
3895
  msgctxt "admin settings"
3896
  msgid "Turkish Lira (TRY)"
3897
  msgstr "Livre Turque (TRY)"
3898
 
3899
- #: core/class-settings.php:531
3900
  #, fuzzy
3901
  msgctxt "admin settings"
3902
  msgid "U.S. Dollar (USD)"
3903
  msgstr "Dollar U.S. "
3904
 
3905
- #: core/class-settings.php:535
3906
  msgctxt "admin settings"
3907
  msgid "Currency Symbol"
3908
- msgstr "Symbole actuel"
3909
 
3910
- #: core/class-settings.php:540
3911
- #, fuzzy
3912
  msgctxt "admin settings"
3913
  msgid "Currency symbol display"
3914
- msgstr "Symbole actuel"
3915
 
3916
- #: core/class-settings.php:544
3917
  msgctxt "admin settings"
3918
  msgid "Show currency symbol on the left"
3919
  msgstr ""
3920
 
3921
- #: core/class-settings.php:545
3922
  msgctxt "admin settings"
3923
  msgid "Show currency symbol on the right"
3924
  msgstr ""
3925
 
3926
- #: core/class-settings.php:546
3927
- #, fuzzy
3928
  msgctxt "admin settings"
3929
  msgid "Do not show currency symbol"
3930
- msgstr "Symbole actuel"
3931
 
3932
- #: core/class-settings.php:548
3933
  msgctxt "admin settings"
3934
  msgid "Thank you for payment message"
3935
  msgstr "Merci pour le message de paiement"
3936
 
3937
- #: core/class-settings.php:549
3938
  msgctxt "admin settings"
3939
  msgid ""
3940
  "Thank you for your payment. Your payment is being verified and your listing "
@@ -3944,12 +3966,12 @@ msgstr ""
3944
  "votre annonce en revue. Le processus de vérification et d'examen peut "
3945
  "prendre jusqu'à 48 heures."
3946
 
3947
- #: core/class-settings.php:554
3948
  msgctxt "admin settings"
3949
  msgid "Ask users to come back for abandoned payments?"
3950
  msgstr "Demandez aux utilisateurs de revenir pour les paiements abandonnés?"
3951
 
3952
- #: core/class-settings.php:557
3953
  msgctxt "admin settings"
3954
  msgid ""
3955
  "An abandoned payment is when a user attempts to place a listing and gets to "
@@ -3963,12 +3985,12 @@ msgstr ""
3963
  "l'utilisateur n'a tout simplement pas compléter la transaction. Le plugin "
3964
  "peut peut rappeler les auteurs pour continuer la publication de leur annonce."
3965
 
3966
- #: core/class-settings.php:563
3967
  msgctxt "admin settings"
3968
  msgid "Listing abandonment threshold (hours)"
3969
  msgstr "Seuil d'abandon de l'annonce (heurs)"
3970
 
3971
- #: core/class-settings.php:568
3972
  msgctxt "admin settings"
3973
  msgid ""
3974
  "Listings with pending payments are marked as abandoned after this time. You "
@@ -3978,27 +4000,72 @@ msgstr ""
3978
  "cette heure. Vous pouvez également personnaliser <a> l'e-mail </a> que les "
3979
  "utilisateurs reçoivent."
3980
 
3981
- #: core/class-settings.php:574
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
3982
  msgctxt "admin settings"
3983
  msgid "Registration"
3984
  msgstr "Enregistrement"
3985
 
3986
- #: core/class-settings.php:575
 
 
 
 
 
 
 
 
3987
  msgctxt "admin settings"
3988
  msgid "Registration Settings"
3989
  msgstr "Paramètres d'enregistrement"
3990
 
3991
- #: core/class-settings.php:576
3992
  msgctxt "admin settings"
3993
  msgid "Require login to post listings?"
3994
  msgstr "Connexion obligatoire pour poster une annonce?"
3995
 
3996
- #: core/class-settings.php:581
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
3997
  msgctxt "admin settings"
3998
  msgid "Registration URL"
3999
  msgstr "URL d'enregistrement"
4000
 
4001
- #: core/class-settings.php:584
4002
  msgctxt "admin settings"
4003
  msgid ""
4004
  "URL of your membership plugin's registration page. Only enter this if using "
@@ -4008,12 +4075,12 @@ msgstr ""
4008
  "ceci si vous utilisez la page d'inscription du plugin d'adhésion ou une page "
4009
  "personnalisée."
4010
 
4011
- #: core/class-settings.php:588
4012
  msgctxt "admin settings"
4013
  msgid "Image"
4014
  msgstr "Image"
4015
 
4016
- #: core/class-settings.php:589
4017
  msgctxt "admin settings"
4018
  msgid ""
4019
  "Any changes to these settings will affect new listings only. Existing "
@@ -4027,52 +4094,52 @@ msgstr ""
4027
  "télécharger l'image (s) sur cette annonce, après avoir cfait les "
4028
  "modifications voulue."
4029
 
4030
- #: core/class-settings.php:590
4031
  msgctxt "admin settings"
4032
  msgid "Image Settings"
4033
  msgstr "Paraamètres des images"
4034
 
4035
- #: core/class-settings.php:591
4036
  msgctxt "admin settings"
4037
  msgid "Allow images?"
4038
  msgstr "Autoriser les images?"
4039
 
4040
- #: core/class-settings.php:593
4041
  msgctxt "admin settings"
4042
  msgid "Min Image File Size (KB)"
4043
  msgstr "Taille minnimal des fichiers images (KB)"
4044
 
4045
- #: core/class-settings.php:594
4046
  msgctxt "admin settings"
4047
  msgid "Max Image File Size (KB)"
4048
  msgstr "Taille maximal des fichiers images (KB)"
4049
 
4050
- #: core/class-settings.php:596
4051
  msgctxt "admin settings"
4052
  msgid "Min image width (px)"
4053
  msgstr "Largeur minnimal des images (px)"
4054
 
4055
- #: core/class-settings.php:597
4056
  msgctxt "admin settings"
4057
  msgid "Min image height (px)"
4058
  msgstr "Hauteur minnimal des images (px)"
4059
 
4060
- #: core/class-settings.php:599
4061
  msgctxt "admin settings"
4062
  msgid "Max image width (px)"
4063
  msgstr "Largeur maximal des images (px)"
4064
 
4065
- #: core/class-settings.php:600
4066
  msgctxt "admin settings"
4067
  msgid "Max image height (px)"
4068
  msgstr "Hauteur maximal des images (px)"
4069
 
4070
- #: core/class-settings.php:602
4071
  msgctxt "admin settings"
4072
  msgid "Turn on thickbox/lightbox?"
4073
  msgstr "Activer thickbox/lightbox?"
4074
 
4075
- #: core/class-settings.php:602
4076
  msgctxt "admin settings"
4077
  msgid ""
4078
  "Uncheck if it conflicts with other elements or plugins installed on your site"
@@ -4080,27 +4147,27 @@ msgstr ""
4080
  "Décochez si vela entre en conflit avec d'autres éléments ou plugins "
4081
  "installés sur votre site"
4082
 
4083
- #: core/class-settings.php:604
4084
  msgctxt "admin settings"
4085
  msgid "Thumbnails"
4086
  msgstr "Miniatures"
4087
 
4088
- #: core/class-settings.php:605
4089
  msgctxt "admin settings"
4090
  msgid "Thumbnail width (px)"
4091
  msgstr "Largeur des miniatures (en pixel)"
4092
 
4093
- #: core/class-settings.php:606
4094
  msgctxt "admin settings"
4095
  msgid "Thumbnail height (px)"
4096
  msgstr "Hauteur des miniatures (en pixel)"
4097
 
4098
- #: core/class-settings.php:609
4099
  msgctxt "admin settings"
4100
  msgid "Crop thumbnails to exact dimensions?"
4101
  msgstr "Recadrer les miniatures aux dimensions exacts?"
4102
 
4103
- #: core/class-settings.php:612
4104
  msgctxt "admin settings"
4105
  msgid ""
4106
  "When enabled images will match exactly the dimensions above but part of the "
@@ -4115,12 +4182,12 @@ msgstr ""
4115
  "proportionnellement. Selon les images téléchargées, les miniatures peuvent "
4116
  "avoir différentes hauteurs."
4117
 
4118
- #: core/class-settings.php:618
4119
  msgctxt "admin settings"
4120
  msgid "Number of free images"
4121
  msgstr "Nombre d'images gratuites"
4122
 
4123
- #: core/class-settings.php:623
4124
  msgctxt "admin settings"
4125
  msgid ""
4126
  "For paid listing images, configure that by adding or editing a <a>Fee Plan</"
@@ -4130,17 +4197,17 @@ msgstr ""
4130
  "ou modification d'un <a>plan de frais</a> au lieu de ce paramètre, qui est "
4131
  "ignoré pour les annonces payées."
4132
 
4133
- #: core/class-settings.php:624
4134
  msgctxt "admin settings"
4135
  msgid "Use default picture for listings with no picture?"
4136
  msgstr "Utiliser l'image par défault pour les annonces sans images?"
4137
 
4138
- #: core/class-settings.php:625
4139
  msgctxt "admin settings"
4140
  msgid "Show Thumbnail on main listings page?"
4141
  msgstr "Montrer les miniatures sur page principale des annonces?"
4142
 
4143
- #: core/class-settings.php:681
4144
  msgctxt "admin settings"
4145
  msgid ""
4146
  "Could not copy the AJAX compatibility plugin \"%s\". Compatibility mode was "
@@ -4149,7 +4216,7 @@ msgstr ""
4149
  "Impossible de copier le plugin de compatibilité AJAX \"% s\". Le mode de "
4150
  "compatibilité n'a pas été activée."
4151
 
4152
- #: core/class-settings.php:689
4153
  msgctxt "admin settings"
4154
  msgid ""
4155
  "Could not activate AJAX Compatibility mode: the directory \"%s\" could not "
@@ -4158,7 +4225,7 @@ msgstr ""
4158
  "Impossible d'activer le mode de compatibilité AJAX: le répertoire \"% s \" "
4159
  "ne peux pas être créé."
4160
 
4161
- #: core/class-settings.php:698
4162
  msgctxt "admin settings"
4163
  msgid ""
4164
  "Could not remove the \"Business Directory Plugin - AJAX Compatibility Module"
@@ -4167,109 +4234,107 @@ msgstr ""
4167
  "Impossible de supprimer le \"Module de comptabilité AJAX du plugin \". "
4168
  "Veuillezt supprimer le fichier \"% s \" manuellement ou désactiver le plugin."
4169
 
4170
- #: core/class-settings.php:997
4171
  msgctxt "settings"
4172
  msgid "Deactivate License"
4173
  msgstr "Désactiver la license"
4174
 
4175
- #: core/class-settings.php:999
4176
  msgctxt "settings"
4177
  msgid "Deactivating license..."
4178
  msgstr "Désactivation de la license..."
4179
 
4180
- #: core/class-settings.php:1002
4181
  msgctxt "settings"
4182
  msgid "Activate License"
4183
  msgstr "Activer la license"
4184
 
4185
- #: core/class-settings.php:1004
4186
  msgctxt "settings"
4187
  msgid "Activating license..."
4188
  msgstr "Activation de la license"
4189
 
4190
- #: core/class-settings.php:1028
4191
  msgctxt "admin settings"
4192
  msgid "Valid placeholders: %s"
4193
  msgstr "Espaces réservés valides:% s"
4194
 
4195
- #: core/class-settings.php:1062
4196
  msgctxt "settings email"
4197
  msgid "Click to edit e-mail"
4198
  msgstr "Cliquer pour éditer l'e-mail"
4199
 
4200
- #: core/class-settings.php:1063
4201
  msgctxt "settings email"
4202
  msgid "Click to edit"
4203
  msgstr "Cliquer pour éditer"
4204
 
4205
- #: core/class-settings.php:1076
4206
  msgctxt "settings email"
4207
  msgid "E-Mail Subject"
4208
  msgstr "Sujet de l'e-mail"
4209
 
4210
- #: core/class-settings.php:1087
4211
  msgctxt "settings email"
4212
  msgid "E-Mail Body"
4213
  msgstr "Corps de l'e-mail"
4214
 
4215
- #: core/class-settings.php:1098
4216
  msgctxt "settings email"
4217
  msgid "You can use the following placeholders:"
4218
  msgstr "Vous pouvez utiliser les paramètres suivantes:"
4219
 
4220
- #: core/class-settings.php:1121
4221
  msgctxt "settings email"
4222
  msgid "Preview e-mail"
4223
  msgstr "E-mail précédents"
4224
 
4225
- #: core/class-settings.php:1122
4226
  msgctxt "settings email"
4227
  msgid "Cancel"
4228
  msgstr "Annuler"
4229
 
4230
- #: core/class-settings.php:1123
4231
  msgctxt "settings email"
4232
  msgid "Save Changes"
4233
  msgstr "Sauvegarder les changements"
4234
 
4235
- #: core/class-settings.php:1142
4236
  msgctxt "settings email"
4237
  msgid "Site title"
4238
  msgstr "Titre du site"
4239
 
4240
- #: core/class-settings.php:1145
4241
  msgctxt "settings email"
4242
  msgid "Site title (with link)"
4243
  msgstr "Titre du site (avec lien)"
4244
 
4245
- #: core/class-settings.php:1148
4246
  msgctxt "settings email"
4247
  msgid "Site address (with link)"
4248
  msgstr "Adresse du site (avec lien)"
4249
 
4250
- #: core/class-settings.php:1151
4251
  msgctxt "settings email"
4252
  msgid "Directory URL (with link)"
4253
  msgstr "Annuaire des URL (avec lien)"
4254
 
4255
- #: core/class-settings.php:1154
4256
  msgctxt "settings email"
4257
  msgid "Current date"
4258
  msgstr "Date actuelle"
4259
 
4260
- #: core/class-settings.php:1157
4261
  msgctxt "settings email"
4262
  msgid "Current time"
4263
  msgstr "Heure actuelle"
4264
 
4265
  #: core/compatibility/class-navxt-integration.php:159
4266
- #, fuzzy
4267
  msgctxt "navxt"
4268
  msgid "Submit Listing"
4269
  msgstr "Soumettre l'annonce"
4270
 
4271
  #: core/compatibility/class-navxt-integration.php:163
4272
- #, fuzzy
4273
  msgctxt "navxt"
4274
  msgid "Edit Listing"
4275
  msgstr "Editer l'annonce"
@@ -4298,7 +4363,7 @@ msgstr "Mettre à jour l'annonce"
4298
 
4299
  #: core/compatibility/deprecated.php:214 core/templates-ui.php:183
4300
  msgid "Submit A Listing"
4301
- msgstr "Soumettre l'annonce"
4302
 
4303
  #: core/compatibility/deprecated.php:227 core/templates-ui.php:192
4304
  msgid "View Listings"
@@ -4333,35 +4398,31 @@ msgstr ""
4333
  #: core/fieldtypes/class-fieldtypes-select.php:162
4334
  msgctxt "form-fields admin"
4335
  msgid "Field list of options is required."
4336
- msgstr "Liste des champs d'options est nécessaire."
4337
 
4338
  #: core/fieldtypes/class-fieldtypes-date.php:9
4339
- #, fuzzy
4340
  msgctxt "form-fields api"
4341
  msgid "Date Field"
4342
- msgstr "Mettre à jour le champ"
4343
 
4344
  #: core/fieldtypes/class-fieldtypes-date.php:32
4345
  msgid "%s (ex. %s)"
4346
  msgstr ""
4347
 
4348
  #: core/fieldtypes/class-fieldtypes-date.php:36
4349
- #, fuzzy
4350
  msgctxt "form-fields api"
4351
  msgid "Date Format"
4352
- msgstr "Date d'ajout"
4353
 
4354
  #: core/fieldtypes/class-fieldtypes-date.php:61
4355
- #, fuzzy
4356
  msgctxt "date field"
4357
  msgid "%s must be in the format %s."
4358
- msgstr "%s est invalide. "
4359
 
4360
  #: core/fieldtypes/class-fieldtypes-date.php:64
4361
- #, fuzzy
4362
  msgctxt "date field"
4363
  msgid "%s must be a valid date."
4364
- msgstr "%s doit être un nombre"
4365
 
4366
  #: core/fieldtypes/class-fieldtypes-facebook.php:6
4367
  msgctxt "form-fields api"
@@ -4417,7 +4478,7 @@ msgstr "-- Choisissez les conditions --"
4417
  #: core/fieldtypes/class-fieldtypes-select.php:99
4418
  msgctxt "form-fields-api category-select"
4419
  msgid "-- Choose One --"
4420
- msgstr "-- Choisisez en un --"
4421
 
4422
  #: core/fieldtypes/class-fieldtypes-select.php:145
4423
  msgctxt "form-fields admin"
@@ -4451,7 +4512,7 @@ msgstr ""
4451
  #: core/fieldtypes/class-fieldtypes-textarea.php:44
4452
  msgctxt "form-fields admin"
4453
  msgid "Apply \"the_content\" filter before displaying this field?"
4454
- msgstr "Appliquer le filtre \"the_content \" avant d'afficher ce champ?"
4455
 
4456
  #: core/fieldtypes/class-fieldtypes-textfield.php:5
4457
  msgctxt "form-fields api"
@@ -4542,7 +4603,7 @@ msgstr "Brève description de l'entreprise"
4542
 
4543
  #: core/form-fields.php:309
4544
  msgid "Long Business Description"
4545
- msgstr "Descrption exhaustive de l'entreprise"
4546
 
4547
  #: core/form-fields.php:311
4548
  msgid "Business Website Address"
@@ -4565,13 +4626,12 @@ msgid "Business Tags"
4565
  msgstr "Mots clés de l'entreprise"
4566
 
4567
  #: core/form-fields.php:321
4568
- #, fuzzy
4569
  msgid "Business Address"
4570
- msgstr "Adresse du site de l'entreprise"
4571
 
4572
  #: core/form-fields.php:323
4573
  msgid "ZIP Code"
4574
- msgstr ""
4575
 
4576
  #: core/form-fields.php:446
4577
  msgctxt "form-fields-api"
@@ -4629,16 +4689,14 @@ msgid "%s must be a number."
4629
  msgstr "%s doit être un nombre"
4630
 
4631
  #: core/form-fields.php:532
4632
- #, fuzzy
4633
  msgctxt "form-fields-api validation"
4634
  msgid "%s must be in the format %s."
4635
- msgstr "%s est invalide. "
4636
 
4637
  #: core/form-fields.php:567
4638
- #, fuzzy
4639
  msgctxt "form-fields-api validation"
4640
  msgid "%s must be a valid date."
4641
- msgstr "%s doit être un nombre"
4642
 
4643
  #: core/form-fields.php:578
4644
  msgctxt "form-fields-api validation"
@@ -4667,7 +4725,7 @@ msgctxt "authorize-net"
4667
  msgid "Transaction Key is missing."
4668
  msgstr "La clé de transaction est manquante"
4669
 
4670
- #: core/gateways-authorize-net.php:124
4671
  msgctxt "authorize-net"
4672
  msgid ""
4673
  "The payment gateway didn't accept your credit card or billing information. "
@@ -4676,7 +4734,7 @@ msgstr ""
4676
  "Le support de paiement n'a pas accepté votre carte de crédit ou vos "
4677
  "informations de facturation. La raison est la suivante: \"%s \"."
4678
 
4679
- #: core/gateways-authorize-net.php:128
4680
  msgctxt "authorize-net"
4681
  msgid ""
4682
  "Your payment is being held for review by the payment gateway. The following "
@@ -4685,12 +4743,18 @@ msgstr ""
4685
  "Votre paiement est en attente et examiné par le support de paiement. La "
4686
  "raison est la suivante: \"%s \"."
4687
 
4688
- #: core/gateways-authorize-net.php:131
4689
  msgctxt "authorize-net"
4690
  msgid "Payment was rejected. The following reason was given: \"%s\"."
4691
  msgstr "Votre paiement a été rejetée. La raison est la suivante: \"%s \"."
4692
 
4693
- #: core/gateways-authorize-net.php:182
 
 
 
 
 
 
4694
  msgctxt "authorize-net"
4695
  msgid "Could not process payment."
4696
  msgstr "Impossible de procéder au paiement."
@@ -4713,7 +4777,7 @@ msgstr "Nouveau statut"
4713
  #: core/gateways-dummy.php:41
4714
  msgctxt "dummy gateway"
4715
  msgid "Completed"
4716
- msgstr "Complété"
4717
 
4718
  #: core/gateways-dummy.php:43
4719
  msgctxt "dummy gateway"
@@ -4768,12 +4832,12 @@ msgstr "Vendeur secret"
4768
  #: core/gateways-googlewallet.php:105
4769
  msgctxt "google-wallet"
4770
  msgid "Seller ID is missing."
4771
- msgstr "Identifiant de vendeur est manquant."
4772
 
4773
  #: core/gateways-googlewallet.php:108
4774
  msgctxt "google-wallet"
4775
  msgid "Seller Secret is missing."
4776
- msgstr "Le vendeur secret est maanquant"
4777
 
4778
  #: core/gateways-googlewallet.php:137
4779
  msgctxt "google-wallet"
@@ -4800,17 +4864,44 @@ msgid "The transaction has been canceled at user's request."
4800
  msgstr "La transaction a été annulée à la demande de l'utilisateur."
4801
 
4802
  #: core/helpers/class-fs.php:112
4803
- #, fuzzy
4804
  msgctxt "fs helper"
4805
  msgid "Destination dir \"%s\" is not writable."
4806
- msgstr "La catégorie d'annonce \"%s\" n'existe pas"
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
4807
 
4808
  #: core/installer.php:38
4809
  msgctxt "default category name"
4810
  msgid "General"
4811
  msgstr "Général"
4812
 
4813
- #: core/installer.php:462
4814
  msgctxt "installer"
4815
  msgid ""
4816
  "<b>Business Directory Plugin - Regions Module</b> was disabled because it is "
@@ -4821,43 +4912,43 @@ msgstr ""
4821
  "est incompatible avec la version actuelle du plugin. Veuillez mettre à jour "
4822
  "le module."
4823
 
4824
- #: core/installer.php:528
4825
  msgctxt "installer"
4826
  msgid "Cleaning up listing fees information... %d/%d"
4827
  msgstr "Nettoyage des informations sur les droits d'inscription ... %d/%d"
4828
 
4829
- #: core/installer.php:578
4830
  msgctxt "installer"
4831
  msgid "Migrating previous transactions to new Payments API... %d/%d"
4832
  msgstr ""
4833
  "Migration des transactions antérieures vers de nouveaux paiements API ... %d/"
4834
  "%d"
4835
 
4836
- #: core/installer.php:607
4837
  msgctxt "installer"
4838
  msgid "Initial listing payment (BD < 3.4)"
4839
  msgstr "Annonce de paiement initial (BD<3.4)"
4840
 
4841
- #: core/installer.php:618
4842
  msgctxt "installer"
4843
  msgid "Listing edit payment (BD < 3.4)"
4844
  msgstr "Edition de l'annonce de paiement (BD<3.4)"
4845
 
4846
- #: core/installer.php:639
4847
  msgctxt "installer"
4848
  msgid "Renewal fee \"%s\" for category \"%s\""
4849
  msgstr "Renouvellement des frais \"%s\" pour la catégorie \"%s\""
4850
 
4851
- #: core/installer.php:658
4852
  msgctxt "installer"
4853
  msgid "Listing upgrade to featured"
4854
  msgstr "Mise à jour des annonces vers prioritaire"
4855
 
4856
- #: core/installer.php:894
4857
  msgid "Business Directory - Manual Upgrade Required"
4858
  msgstr "Business Directory - Mise à jour manuelle requise"
4859
 
4860
- #: core/installer.php:896
4861
  msgid ""
4862
  "Business Directory features are currently disabled because the plugin needs "
4863
  "to perform a manual upgrade before continuing."
@@ -4866,15 +4957,15 @@ msgstr ""
4866
  "désactivés car le plugin a besoin d'effectuer une mise à jour manuelle avant "
4867
  "de poursuivre."
4868
 
4869
- #: core/installer.php:898
4870
  msgid "Perform Manual Upgrade"
4871
  msgstr "Effectuer la mise à jour manuelle"
4872
 
4873
- #: core/installer.php:914 core/installer.php:915 core/installer.php:926
4874
  msgid "Business Directory - Manual Upgrade"
4875
  msgstr "Business Directory - Mise à jour manuelle"
4876
 
4877
- #: core/installer.php:930
4878
  msgid ""
4879
  "Business Directory features are currently disabled because the plugin needs "
4880
  "to perform a manual upgrade before it can be used."
@@ -4883,23 +4974,23 @@ msgstr ""
4883
  "désactivées car le plugin a besoin d'effectuer une mise à jour manuelle afin "
4884
  "d'être pleinement utilisable."
4885
 
4886
- #: core/installer.php:932
4887
  msgid "Click \"Start Upgrade\" and wait until the process finishes."
4888
  msgstr ""
4889
  "Cliquez sur \"Commencer la mise à jour\" et patientez jusqu'à la fin du "
4890
  "processus."
4891
 
4892
- #: core/installer.php:935
4893
  msgctxt "manual-upgrade"
4894
  msgid "Start Upgrade"
4895
  msgstr "Commencer la mise à jour"
4896
 
4897
- #: core/installer.php:937
4898
  msgctxt "manual-upgrade"
4899
  msgid "Pause Upgrade"
4900
  msgstr "Mettre en pause la mise à jour"
4901
 
4902
- #: core/installer.php:943
4903
  msgctxt "manual-upgrade"
4904
  msgid ""
4905
  "The upgrade was sucessfully performed. Business Directory Plugin is now "
@@ -4908,7 +4999,7 @@ msgstr ""
4908
  "La mise à jour s'est bien effectué. Le plugin Business Directory est "
4909
  "maintenant disponible et fonctionnel."
4910
 
4911
- #: core/installer.php:946
4912
  msgctxt "manual-upgrade"
4913
  msgid "Go to \"Directory Admin\""
4914
  msgstr "Aller à \"Administrateur de l'annuaire\""
@@ -4933,16 +5024,6 @@ msgctxt "licensing"
4933
  msgid "No license key provided"
4934
  msgstr "Aucune clé de licence fournie"
4935
 
4936
- #: core/licensing.php:127 core/licensing.php:159
4937
- msgctxt "licensing"
4938
- msgid "Could not contact licensing server"
4939
- msgstr "Impossible de contacter le serveur de licences"
4940
-
4941
- #: core/licensing.php:132 core/licensing.php:166
4942
- msgctxt "licensing"
4943
- msgid "License key is invalid"
4944
- msgstr "La clé de licence est invalide"
4945
-
4946
  #: core/licensing.php:169
4947
  msgctxt "licensing"
4948
  msgid "Deactivation failed"
@@ -4990,16 +5071,6 @@ msgctxt "licensing"
4990
  msgid "Renew License Key"
4991
  msgstr "Renouveller la clé de licence"
4992
 
4993
- #: core/licensing.php:330
4994
- msgctxt "licensing"
4995
- msgid "Could not activate license: %s."
4996
- msgstr "Impossible d'activer la licence: %s."
4997
-
4998
- #: core/licensing.php:332
4999
- msgctxt "licensing"
5000
- msgid "License activated"
5001
- msgstr "Licence activé"
5002
-
5003
  #: core/licensing.php:348
5004
  msgctxt "licensing"
5005
  msgid "Could not deactivate license: %s."
@@ -5015,39 +5086,39 @@ msgctxt "fees-api"
5015
  msgid "Free Listing"
5016
  msgstr "Annonce gratuite"
5017
 
5018
- #: core/payment.php:135
5019
  msgctxt "fees-api"
5020
  msgid "Fee label is required."
5021
  msgstr "Une étiquette de frais est requise."
5022
 
5023
- #: core/payment.php:138
5024
  msgctxt "fees-api"
5025
  msgid "Fee amount must be a non-negative decimal number."
5026
  msgstr "Le montant des frais doit être un nombre décimal non-négatif."
5027
 
5028
- #: core/payment.php:141 core/payment.php:144
5029
  msgctxt "fees-api"
5030
  msgid "Fee must apply to at least one category."
5031
  msgstr "Fee doit être appliqué à au moins une catégorie."
5032
 
5033
- #: core/payment.php:147
5034
  msgctxt "fees-api"
5035
  msgid "Fee allowed images must be a non-negative integer."
5036
  msgstr "Les frais autorisé doivent être un entier non négatif."
5037
 
5038
- #: core/payment.php:150
5039
  msgctxt "fees-api"
5040
  msgid "Fee listing run must be a non-negative integer."
5041
  msgstr "Les frais d'annonce doivent être un entier non-négatif."
5042
 
5043
- #: core/payment.php:155
5044
  msgctxt "fees-api"
5045
  msgid "Fee listing duration must be a number less than 10 years (3650 days)."
5046
  msgstr ""
5047
  "La durée des frais d'annonce doit être un nombre inférieur à 10 ans (3650 "
5048
  "jours)."
5049
 
5050
- #: core/payment.php:325
5051
  msgctxt "payments-api"
5052
  msgid ""
5053
  "You are offering featured listings but have payments turned off. Go to <a "
@@ -5060,7 +5131,7 @@ msgstr ""
5060
  "paramètres de paiement. Jusqu'à ce que vous effectuiez les modifications "
5061
  "voulues, l'option <i> Mise à niveau en vedette </ i>sera désactivée."
5062
 
5063
- #: core/payment.php:343
5064
  msgctxt "payments-api"
5065
  msgid ""
5066
  "The <b>%s</b> gateway is active but not properly configured. The gateway "
@@ -5072,7 +5143,7 @@ msgstr ""
5072
  "soient fixés: <b>%s </b>. <br/> Vérifiez les <a href=\"%s\"> paramètres de "
5073
  "paiement </a>."
5074
 
5075
- #: core/payment.php:353
5076
  msgctxt "admin"
5077
  msgid ""
5078
  "You have payments turned on but no gateway is active and properly "
@@ -5085,7 +5156,7 @@ msgstr ""
5085
  "Paiement </a> pour modifier les paramètres de paiement. Jusqu'à ce que vous "
5086
  "modifiez cela, le répertoire fonctionnera en <i> Mode libre </ i>."
5087
 
5088
- #: core/payment.php:357
5089
  msgid ""
5090
  "BD detected PayFast and another gateway were enabled. This setup is not "
5091
  "recommended due to PayFast supporting only ZAR and the other gateways not "
@@ -5095,7 +5166,7 @@ msgstr ""
5095
  "Cette configuration est déconseillée étant donné que PayFast supporte la "
5096
  "devise ZAR (Rand sud-africain) et pas les autres passerelles."
5097
 
5098
- #: core/payment.php:361
5099
  msgid ""
5100
  "You have recurring renewal of listing fees enabled but the payment gateways "
5101
  "installed don't support recurring payments. Until a gateway that supports "
@@ -5108,7 +5179,7 @@ msgstr ""
5108
  "récurrents (comme PayPal) soit activé, les renouvellements automatiques "
5109
  "seront désactivées."
5110
 
5111
- #: core/payment.php:366
5112
  msgid ""
5113
  "Due to Google Wallet limitations only monthly (30 days) recurring fees are "
5114
  "supported by the gateway. All other fees will be charged as non-recurring."
@@ -5117,37 +5188,37 @@ msgstr ""
5117
  "récurrents sont pris en charge par la passerelle. Tous les autres frais "
5118
  "seront facturés comme non récurrents."
5119
 
5120
- #: core/payment.php:399
5121
  msgctxt "payments-api"
5122
  msgid "Checkout"
5123
  msgstr "Vérification"
5124
 
5125
- #: core/payment.php:400
5126
  msgctxt "payments-api"
5127
  msgid "Pay %1$s through %2$s"
5128
  msgstr "Payez %1$s par %2$s"
5129
 
5130
- #: core/payment.php:407
5131
  msgctxt "payments-api"
5132
  msgid "Your transaction has been approved."
5133
  msgstr "Votre traansaction a été aapprouvée."
5134
 
5135
- #: core/payment.php:588
5136
  msgctxt "payments"
5137
  msgid "Payment Details"
5138
  msgstr "Détails de paiement"
5139
 
5140
- #: core/payment.php:615
5141
  msgctxt "checkout"
5142
  msgid "Payment Method"
5143
  msgstr "Méthode de paiement"
5144
 
5145
- #: core/payment.php:644
5146
  msgctxt "payment"
5147
  msgid "Return to Directory."
5148
  msgstr "Retourner vers l'annuaire."
5149
 
5150
- #: core/payment.php:650
5151
  msgctxt "payments"
5152
  msgid ""
5153
  "Your payment is being processed by the payment gateway. Please reload this "
@@ -5158,7 +5229,7 @@ msgstr ""
5158
  "Veuillez recharger cette page dans un instant pour voir si la situation a "
5159
  "changé ou contactez l'administrateur du site."
5160
 
5161
- #: core/payment.php:653
5162
  msgctxt "payments"
5163
  msgid ""
5164
  "The payment has been rejected by the payment gateway. Please contact the "
@@ -5170,12 +5241,12 @@ msgstr ""
5170
  "\"Changer de Paiement \" pour sélectionner une autre méthode de paiement et "
5171
  "essayez à nouveau."
5172
 
5173
- #: core/payment.php:654
5174
  msgctxt "payments"
5175
  msgid "Change Payment Method"
5176
  msgstr "Changer la méthode de paiement"
5177
 
5178
- #: core/payment.php:656
5179
  msgctxt "payments"
5180
  msgid ""
5181
  "The payment has been rejected by the payment gateway. Please contact the "
@@ -5184,29 +5255,29 @@ msgstr ""
5184
  "Le paiement a été rejeté par la passerelle de paiement. Veuillez contacter "
5185
  "l'administrateur du site si vous pensez qu'il y a une erreur."
5186
 
5187
- #: core/payment.php:659
5188
  msgctxt "payments"
5189
  msgid "The payment has been canceled at your request."
5190
  msgstr "Le paiement a été annulé à votre demande."
5191
 
5192
- #: core/payment.php:755
5193
  msgctxt "admin"
5194
  msgid "Pending Abandonment"
5195
  msgstr "Abandon en cours"
5196
 
5197
- #: core/payment.php:760
5198
  msgctxt "admin"
5199
  msgid "Abandoned"
5200
  msgstr "Abandonné"
5201
 
5202
  #: core/templates/listing-sticky-tag.tpl.php:3
5203
- #: core/templates/listing-sticky-tag.tpl.php:4 core/templates-listings.php:64
5204
  msgctxt "templates"
5205
  msgid "Featured Listing"
5206
  msgstr "Annonce sélectionnée"
5207
 
5208
  #: core/templates/listings.tpl.php:6
5209
- #: templates/businessdirectory-listings.tpl.php:27 templates/search.tpl.php:41
5210
  msgctxt "templates"
5211
  msgid "No listings found."
5212
  msgstr "Aucune annonce trouvée."
@@ -5248,31 +5319,27 @@ msgctxt "sort"
5248
  msgid "(Reset)"
5249
  msgstr "(Réinitialiser)"
5250
 
5251
- #: core/themes.php:550
5252
- #, fuzzy
5253
  msgctxt "themes"
5254
  msgid "ZIP file is not a valid BD theme file."
5255
- msgstr "Veuillez entrer un email valide."
5256
 
5257
- #: core/themes.php:556
5258
- #, fuzzy
5259
  msgctxt "themes"
5260
  msgid "Could not create themes directory."
5261
- msgstr "Impossible de créer le répertoire wpbdp-CSV-exportations."
5262
 
5263
- #: core/themes.php:564
5264
- #, fuzzy
5265
  msgctxt "themes"
5266
  msgid "Could not remove previous theme directory \"%s\"."
5267
- msgstr "Vous ne pouvez pas créer cette catégorie d'annonce \"%s\""
5268
 
5269
- #: core/themes.php:570
5270
- #, fuzzy
5271
  msgctxt "themes"
5272
  msgid "Could not move new theme into theme directory."
5273
- msgstr "Vous ne possédez pas actuellement aucune annonce dans l'annuaire."
5274
 
5275
- #: core/utils.php:105
5276
  msgctxt "utils"
5277
  msgid ""
5278
  "POSTed data exceeds PHP config. maximum. See \"post_max_size\" directive."
@@ -5280,62 +5347,62 @@ msgstr ""
5280
  "Les données affichées dépassent les configurations maximale permisent par "
5281
  "PHP. Voir les directive \"post_max_size\"."
5282
 
5283
- #: core/utils.php:158
5284
  msgctxt "utils"
5285
  msgid "File size (%s) exceeds maximum file size of %s"
5286
  msgstr "La taille du fichier (%s) excède la taille maximale permise de %s"
5287
 
5288
- #: core/utils.php:166
5289
  msgctxt "utils"
5290
  msgid "File size (%s) is inferior to the required minimum file size of %s"
5291
  msgstr ""
5292
- "La taille du fichier (%s) est inférieur au minnimum de taille de fichier "
5293
  "requise de %s"
5294
 
5295
- #: core/utils.php:175 core/utils.php:182
5296
  msgctxt "utils"
5297
  msgid "File type \"%s\" is not allowed"
5298
  msgstr "Le type de fichier \"%s\" n'est pas autorisé"
5299
 
5300
- #: core/utils.php:189
5301
  msgctxt "utils"
5302
  msgid "Unkown error while uploading file."
5303
  msgstr "Une erreur inconnu est survenu lors de l'upload du fichier."
5304
 
5305
- #: core/utils.php:208
5306
  msgctxt "utils"
5307
  msgid "Uploaded file is not an image"
5308
  msgstr "Le fichier transféré n'est pas une image"
5309
 
5310
- #: core/utils.php:217
5311
  msgctxt "utils"
5312
  msgid "Image width (%s px) is inferior to minimum required width of %s px."
5313
  msgstr ""
5314
- "La largeur de l'image (%s px) est inférieur à la largeur minnimum requise de "
5315
  "%s px."
5316
 
5317
- #: core/utils.php:223
5318
  msgctxt "utils"
5319
  msgid "Image height (%s px) is inferior to minimum required height of %s px."
5320
  msgstr ""
5321
- "La hauteur de l'image (%s px) est inférieur à la hauteur minnimum requise de "
5322
  "%s px."
5323
 
5324
- #: core/utils.php:229
5325
  msgctxt "utils"
5326
  msgid "Image width (%s px) is greater than maximum allowed width of %s px."
5327
  msgstr ""
5328
  "La largeur de l'image (%s px) est supérieur à la largeur maximum requise de "
5329
  "%s px."
5330
 
5331
- #: core/utils.php:235
5332
  msgctxt "utils"
5333
  msgid "Image height (%s px) is greater than maximum required height of %s px."
5334
  msgstr ""
5335
- "La hauteur de l'image (%s px) est supérieur à la hauteur maximum requise de "
5336
  "%s px."
5337
 
5338
- #: core/utils.php:249
5339
  msgctxt "utils"
5340
  msgid "Error while uploading file"
5341
  msgstr "Erreur durant l'upload du fichier"
@@ -5511,7 +5578,7 @@ msgstr ""
5511
  #: core/view-renew-listing.php:94
5512
  msgctxt "renewal"
5513
  msgid "Current Fee Details"
5514
- msgstr "Détails des frais sélectionné"
5515
 
5516
  #: core/view-renew-listing.php:96
5517
  msgctxt "renewal"
@@ -5614,22 +5681,22 @@ msgctxt "templates"
5614
  msgid "I agree to the Terms and Conditions"
5615
  msgstr "Je suis en accord avec les Termes et Condiditons"
5616
 
5617
- #: core/view-submit-listing.php:404
5618
  msgctxt "listings"
5619
  msgid "Fee \"%s\" for category \"%s\"%s"
5620
  msgstr "Frais \"%s\" pour la catégorie \"%s\"%s"
5621
 
5622
- #: core/view-submit-listing.php:407
5623
  msgctxt "listings"
5624
  msgid "(recurring)"
5625
  msgstr "(récurrant)"
5626
 
5627
- #: core/view-submit-listing.php:417 core/view-upgrade-listing.php:54
5628
  msgctxt "submit"
5629
  msgid "Listing upgrade to featured"
5630
  msgstr "Mise à jour de l'annonce vers prioritaire"
5631
 
5632
- #: core/view-submit-listing.php:450
5633
  msgctxt "submit_state"
5634
  msgid "Invalid submit state."
5635
  msgstr "Etat de soumission invalide"
@@ -5651,7 +5718,7 @@ msgctxt "templates"
5651
  msgid "Return to listing."
5652
  msgstr "Retourner vers l'annonce."
5653
 
5654
- #: core/views.php:28
5655
  msgid ""
5656
  "You need to create a page with the [businessdirectory] shortcode for the "
5657
  "Business Directory plugin to work correctly."
@@ -5659,23 +5726,23 @@ msgstr ""
5659
  "Vous devez créer une page avec le shortcode [businessdirectory] pour que le "
5660
  "plugin Business Directory fonctionne correctement."
5661
 
5662
- #: core/views.php:30
5663
  msgid "The directory is temporarily disabled."
5664
  msgstr "L'annuaire est temporairement désactivé."
5665
 
5666
- #: core/views.php:173
5667
  msgctxt "preview"
5668
  msgid "This is just a preview. The listing has not been published yet."
5669
  msgstr ""
5670
  "Il s'agit seulement d'une pré-visualisation. L'annonce n'a pas encore été "
5671
  "publié."
5672
 
5673
- #: core/views.php:325
5674
  msgctxt "templates"
5675
  msgid "Listings tagged: %s"
5676
  msgstr "Annonces étiquettées: %s"
5677
 
5678
- #: core/views.php:442
5679
  msgctxt "templates"
5680
  msgid ""
5681
  "There are no categories assigned to the business directory yet. You need to "
@@ -5691,12 +5758,12 @@ msgstr ""
5691
  "Les annonces ne peuvent pas être ajoutés tant que vous n'avez pas attribuer "
5692
  "des catégories à l'annuaire professionnel."
5693
 
5694
- #: core/views.php:444
5695
  msgctxt "templates"
5696
  msgid "There are currently no listings in the directory."
5697
  msgstr "Il n'y a actuellement aucune annonce dans l'annuaire."
5698
 
5699
- #: core/views.php:462
5700
  msgctxt "templates"
5701
  msgid ""
5702
  "You have \"Hide Empty Categories\" on and some categories that don't have "
@@ -5717,7 +5784,7 @@ msgstr "Business DIrectory - Annonces prioritaires"
5717
  msgctxt "widgets"
5718
  msgid "Displays a list of the featured/sticky listings in the directory."
5719
  msgstr ""
5720
- "Affiche une liste des annonces prioritaires/récurrentes dans l'annuaire."
5721
 
5722
  #: core/widget-featured-listings.php:14
5723
  msgctxt "widgets"
@@ -5727,7 +5794,7 @@ msgstr "Annonces prioritaires."
5727
  #: core/widget-featured-listings.php:23
5728
  msgctxt "widgets"
5729
  msgid "Display listings in random order"
5730
- msgstr "Afficher les annonces de façon aléatoire"
5731
 
5732
  #: core/widget-latest-listings.php:11
5733
  msgctxt "widgets"
@@ -5738,7 +5805,7 @@ msgstr "Business Directory - Dernières annonces"
5738
  msgctxt "widgets"
5739
  msgid "Displays a list of the latest listings in the Business Directory."
5740
  msgstr ""
5741
- "Afficher une liste des dernières annonces dans l'annuaire professionnel."
5742
 
5743
  #: core/widget-latest-listings.php:14
5744
  msgctxt "widgets"
@@ -5753,7 +5820,8 @@ msgstr "Business Directory - Annonces aléatoires"
5753
  #: core/widget-random-listings.php:12
5754
  msgctxt "widgets"
5755
  msgid "Displays a list of random listings from the Business Directory."
5756
- msgstr "Afficher une liste d'annonces aléatoires de l'annuaire professionnel."
 
5757
 
5758
  #: core/widget-random-listings.php:14
5759
  msgctxt "widgets"
@@ -5769,8 +5837,8 @@ msgstr "Business Directory - Recherche"
5769
  msgctxt "widgets"
5770
  msgid "Displays a search form to look for Business Directory listings."
5771
  msgstr ""
5772
- "Afficher un formulaire de recherche pour rechercher les annonces de Business "
5773
- "Directory."
5774
 
5775
  #: core/widget-search.php:18
5776
  msgctxt "widgets"
@@ -5800,7 +5868,7 @@ msgstr "Champ de recherche (mode avancé)"
5800
  #: core/widget-search.php:50
5801
  msgctxt "widgets"
5802
  msgid "Display the following fields in the form."
5803
- msgstr "Afficher les champs suivant dans le formulaire."
5804
 
5805
  #: core/widget-search.php:102
5806
  msgctxt "widgets"
@@ -5986,7 +6054,7 @@ msgstr "Êtes-vous sûr de vouloir faire ça?"
5986
  #: templates/delete-listing-confirm.tpl.php:24
5987
  msgctxt "delete listing"
5988
  msgid "No. Take me back to the directory."
5989
- msgstr "Non, redirigez moi vers l'annuaire."
5990
 
5991
  #: templates/delete-listing-confirm.tpl.php:25
5992
  msgctxt "delete listing"
@@ -6106,7 +6174,7 @@ msgctxt "templates"
6106
  msgid "You do not currently have any listings in the directory."
6107
  msgstr "Vous ne possédez pas actuellement aucune annonce dans l'annuaire."
6108
 
6109
- #: templates/manage-listings.tpl.php:11 templates/search.tpl.php:44
6110
  msgctxt "templates"
6111
  msgid "Return to directory"
6112
  msgstr "Retourner vers l'annuaire"
@@ -6323,7 +6391,7 @@ msgstr ""
6323
  #: templates/renew-listing.tpl.php:22
6324
  #: templates/submit-listing/category-selection.tpl.php:8
6325
  #: templates/submit-listing/fee-selection.tpl.php:37
6326
- #: templates/submit-listing/images.tpl.php:35
6327
  #: templates/submit-listing/listing-fields.tpl.php:34
6328
  msgctxt "templates"
6329
  msgid "Continue"
@@ -6339,27 +6407,22 @@ msgctxt "templates"
6339
  msgid "Do not renew my listing"
6340
  msgstr "Ne pas renouveller mon annonce"
6341
 
6342
- #: templates/search.tpl.php:8 templates/search.tpl.php:27
6343
- msgctxt "search"
6344
- msgid "Search"
6345
- msgstr "Rechercher"
6346
-
6347
- #: templates/search.tpl.php:10
6348
- msgctxt "search"
6349
- msgid "Return to Advanced Search"
6350
- msgstr "Retourner vers la recherche avancée"
6351
-
6352
- #: templates/search.tpl.php:15
6353
  msgctxt "templates"
6354
  msgid "Find a listing"
6355
  msgstr "Trouver une annonce"
6356
 
6357
- #: templates/search.tpl.php:26
6358
  msgctxt "search"
6359
  msgid "Clear"
6360
  msgstr "Effacer"
6361
 
6362
- #: templates/search.tpl.php:34
 
 
 
 
 
6363
  msgctxt "search"
6364
  msgid "Search Results"
6365
  msgstr "Résultats de la recherche"
@@ -6397,7 +6460,7 @@ msgstr "Retourner vers l'annuaire."
6397
  #: templates/submit-listing/extra-sections.tpl.php:1
6398
  msgctxt "templates"
6399
  msgid "Additional Information"
6400
- msgstr "Information additionel"
6401
 
6402
  #: templates/submit-listing/extra-sections.tpl.php:6
6403
  msgctxt "templates"
@@ -6435,22 +6498,22 @@ msgstr "Effacer l'image"
6435
  #: templates/submit-listing/images-single.tpl.php:16
6436
  msgctxt "templates"
6437
  msgid "Set this image as the listing thumbnail."
6438
- msgstr "Faire de cette image comme étant la minniature de l'annonce."
6439
 
6440
  #: templates/submit-listing/images-upload-form.tpl.php:17
6441
  msgctxt "templates"
6442
  msgid "Upload Images"
6443
- msgstr "Uploader les images"
6444
 
6445
  #: templates/submit-listing/images-upload-form.tpl.php:22
6446
  msgctxt "templates"
6447
  msgid "Drop files here"
6448
- msgstr "Déposer des fichiers ici"
6449
 
6450
  #: templates/submit-listing/images-upload-form.tpl.php:23
6451
  msgctxt "templates image upload"
6452
  msgid "or"
6453
- msgstr ""
6454
 
6455
  #: templates/submit-listing/images-upload-form.tpl.php:26
6456
  msgctxt "templates"
@@ -6460,7 +6523,7 @@ msgstr "Sélectionner des images depuis votre ordinateur"
6460
  #: templates/submit-listing/images-upload-form.tpl.php:32
6461
  msgctxt "templates"
6462
  msgid "Uploading %s file(s)... Please wait."
6463
- msgstr "Upload du/des fichier(s) à %s ... Veuillez patienter."
6464
 
6465
  #: templates/submit-listing/images-upload-form.tpl.php:36
6466
  msgctxt "templates"
@@ -6469,16 +6532,22 @@ msgid ""
6469
  "you are done, or \"Delete Image\" to upload a new image in place of a "
6470
  "current one."
6471
  msgstr ""
6472
- "Vos emplacements d'image sont actuellements pleins. Vous pouvez cliquer sur "
6473
- "\"Continuer\" si vous avez fini, ou \"Remplacer l'Image\" pour remplacer une "
6474
- "ancienne image par une nouvelle."
6475
 
6476
  #: templates/submit-listing/images-upload-form.tpl.php:44
6477
  msgctxt "templates"
6478
  msgid "Image slots available:"
6479
- msgstr "EMplacements d'image disponibles:"
6480
 
6481
- #: templates/submit-listing/images-upload-form.tpl.php:49
 
 
 
 
 
 
6482
  msgctxt "templates"
6483
  msgid "Max. file size:"
6484
  msgstr "Taille maximale des fichiers:"
@@ -6494,13 +6563,13 @@ msgid ""
6494
  "There is an image pending upload. Would you still like to continue without "
6495
  "saving the image?"
6496
  msgstr ""
6497
- "Il ya une image en attente d'upload. Souhaitez-vous toujours continuer sans "
6498
- "sauvegarder l'image?"
6499
 
6500
  #: templates/submit-listing/images.tpl.php:13
6501
  msgctxt "templates"
6502
  msgid "There are no images currently attached to your listing."
6503
- msgstr "Il n'y a aucune image actuellement attaché à votre annonce."
6504
 
6505
  #: templates/submit-listing/listing-fields.tpl.php:1
6506
  msgctxt "templates"
@@ -6513,10 +6582,9 @@ msgid "* Indicates required fields."
6513
  msgstr "* indique que le champ est requis."
6514
 
6515
  #: themes/default/templates/excerpt_content.tpl.php:13
6516
- #, fuzzy
6517
  msgctxt "themes/default"
6518
  msgid "Address"
6519
- msgstr "Adresse e-mail:"
6520
 
6521
  #: vendors/edd/EDD_SL_Plugin_Updater.php:178
6522
  msgid ""
@@ -6533,11 +6601,11 @@ msgstr ""
6533
 
6534
  #: vendors/edd/EDD_SL_Plugin_Updater.php:325
6535
  msgid "You do not have permission to install plugin updates"
6536
- msgstr ""
6537
 
6538
  #: vendors/edd/EDD_SL_Plugin_Updater.php:325
6539
  msgid "Error"
6540
- msgstr ""
6541
 
6542
  #. Plugin URI of the plugin/theme
6543
  msgid "http://www.businessdirectoryplugin.com"
@@ -6559,6 +6627,24 @@ msgstr "D. Rodenbaugh"
6559
  msgid "http://businessdirectoryplugin.com"
6560
  msgstr "http://businessdirectoryplugin.com"
6561
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
6562
  #~ msgctxt "admin transactions"
6563
  #~ msgid "transaction"
6564
  #~ msgstr "transaction"
1
+ # Copyright (C) 2013
2
+ # This file is distributed under the same license as the package.
3
  msgid ""
4
  msgstr ""
5
  "Project-Id-Version: Business Directory Plugin 3.6\n"
6
  "Report-Msgid-Bugs-To: http://wordpress.org/tag/business-directory-plugin\n"
7
+ "POT-Creation-Date: 2015-11-17 23:37:00+00:00\n"
8
+ "PO-Revision-Date: 2015-11-04 11:52+0100\n"
9
  "Last-Translator: BD Team <support@businessdirectoryplugin.com>\n"
10
  "Language-Team: BD Team <support@businessdirectoryplugin.com>\n"
11
  "Language: fr\n"
12
  "MIME-Version: 1.0\n"
13
  "Content-Type: text/plain; charset=UTF-8\n"
14
  "Content-Transfer-Encoding: 8bit\n"
15
+ "X-Generator: Poedit 1.8.6\n"
16
  "Plural-Forms: nplurals=2; plural=(n > 1);\n"
17
  "X-Poedit-SourceCharset: UTF-8\n"
18
 
19
  #: admin/class-admin-listings.php:24
20
  msgid "Listing Information"
21
+ msgstr "Information sur l'annonce"
22
 
23
  #: admin/class-admin-listings.php:31
24
  msgctxt "admin"
25
  msgid "Listing Fields / Images"
26
+ msgstr "Champs des annonces / Images "
27
 
28
  #: admin/class-admin-listings.php:42
29
  msgctxt "admin"
115
  "a FREE premium module just for signing up."
116
  msgstr ""
117
  "Découvrez comment créer un annuaire professionnel convaincant à partir de "
118
+ "zéro dans ce cours (GRATUIT) en 5 parties (envoyé via e-mail). Obtenez un "
119
  "module premium GRATUIT juste après votre inscription."
120
 
121
  #: admin/class-admin.php:123
127
  msgctxt "drip pointer"
128
  msgid "Want to know the Secrets of Building an Awesome Business Directory?"
129
  msgstr ""
130
+ "Voulez-vous connaître les secrets de la création d'un superbe annuaire "
131
  "professionnel?"
132
 
133
  #: admin/class-admin.php:131
152
  "Vous êtes prêt. Visitez votre nouvelle page <a>Annuaire Professionnel</a>"
153
 
154
  #: admin/class-admin.php:182
 
155
  msgctxt "drip pointer"
156
  msgid "Invalid e-mail address."
157
+ msgstr "Adresse e-mail non valide"
158
 
159
  #: admin/class-admin.php:213
160
  msgctxt "admin menu"
189
  #: admin/class-admin.php:244 admin/class-admin.php:245
190
  msgctxt "admin menu"
191
  msgid "Listings"
192
+ msgstr "Listes"
193
 
194
  #: admin/class-admin.php:259 admin/class-admin.php:260
195
  msgctxt "admin menu"
221
  msgid "Uninstall"
222
  msgstr "Désinstaller"
223
 
224
+ #: admin/class-admin.php:405
225
  #: admin/templates/listing-metabox-categories.tpl.php:69
226
  msgctxt "admin infometabox"
227
  msgid "never"
228
  msgstr "jamais"
229
 
230
+ #: admin/class-admin.php:487
231
  msgctxt "admin"
232
  msgid "The listing has been published."
233
  msgid_plural "The listings have been published."
234
+ msgstr[0] "La annonce a été publiée."
235
  msgstr[1] "Les annonces ont été publiées."
236
 
237
+ #: admin/class-admin.php:500
238
  msgctxt "admin"
239
  msgid "The listing status has been set as paid."
240
  msgid_plural "The listings status has been set as paid."
241
  msgstr[0] "Le statut de l'annonce a été défini comme étant payée."
242
  msgstr[1] "Le statut des annocnes a été défini comme étant payées."
243
 
244
+ #: admin/class-admin.php:512
245
  msgctxt "admin"
246
  msgid "The listing has been modified."
247
  msgid_plural "The listings have been modified."
248
+ msgstr[0] "l'annonce a été modifiée."
249
  msgstr[1] "Les annonces ont été modifiées."
250
 
251
+ #: admin/class-admin.php:525
252
  msgctxt "admin"
253
  msgid "The listing has been upgraded."
254
  msgid_plural "The listings have been upgraded."
255
  msgstr[0] "L'annonce a été mise à jour."
256
  msgstr[1] "Les annonces ont été mise à jour."
257
 
258
+ #: admin/class-admin.php:537
259
  msgctxt "admin"
260
  msgid "The listing has been downgraded."
261
  msgid_plural "The listings have been downgraded."
262
  msgstr[0] "L'annonce a été rétrogradée."
263
  msgstr[1] "Les annonces ont été rétrogradées."
264
 
265
+ #: admin/class-admin.php:549
266
  msgctxt "admin"
267
  msgid "The transaction has been approved."
268
  msgstr "La transaction a été approuvée."
269
 
270
+ #: admin/class-admin.php:557
271
  msgctxt "admin"
272
  msgid "The transaction has been rejected."
273
  msgstr "La transaction a été rejetée."
274
 
275
+ #: admin/class-admin.php:563
276
  msgctxt "admin"
277
  msgid "The fee was successfully assigned."
278
  msgstr "Les frais ont bien été assignés."
279
 
280
+ #: admin/class-admin.php:572
281
  msgctxt "admin"
282
  msgid "Listing was renewed."
283
  msgid_plural "Listings were renewed."
284
  msgstr[0] "L'annonce a été renouvelée."
285
  msgstr[1] "Les annonces ont été renouvelées."
286
 
287
+ #: admin/class-admin.php:579
288
  msgctxt "admin"
289
  msgid "Renewal email sent."
290
+ msgstr "Email de renouvellement envoyé"
291
 
292
+ #: admin/class-admin.php:613
293
  msgctxt "admin category id"
294
  msgid "ID"
295
  msgstr "ID"
296
 
297
+ #: admin/class-admin.php:615 admin/class-admin.php:621
298
  msgctxt "admin"
299
  msgid "Listing Count"
300
+ msgstr "Compteur d'annonces"
301
 
302
+ #: admin/class-admin.php:717
303
  msgctxt "admin"
304
  msgid ""
305
  "<b>Business Directory Plugin</b> requires fields with the following "
306
  "associations in order to work correctly: <b>%s</b>."
307
  msgstr ""
308
  "<b>Plugin d'Annuaire Professionnel</b> requiert des champs avec les "
309
+ "associations suivantes pour marcher correctement: <b>%s</b>"
310
 
311
+ #: admin/class-admin.php:719
312
  msgctxt "admin"
313
  msgid ""
314
  "<b>Business Directory Plugin</b> requires a field with a <b>%s</b> "
317
  "<b>Plugin d'Annuaire Professionnel</b> requiert un champ avec un <b>%s</b> "
318
  "association en ordre pour marcher correctement."
319
 
320
+ #: admin/class-admin.php:723
321
  msgctxt "admin"
322
  msgid ""
323
  "You can create these custom fields by yourself inside \"Manage Form Fields\" "
326
  "Vous pouvez créer ces champs personnalisés pas vous-mêmes dans \"Gestion des "
327
  "Champs\" ou laissez le plugin le faire pour vous automatiquement."
328
 
329
+ #: admin/class-admin.php:727
330
  msgctxt "admin"
331
  msgid "Go to \"Manage Form Fields\""
332
  msgstr "Aller à \"Gestion des Champs\""
333
 
334
+ #: admin/class-admin.php:730
335
  msgctxt "admin"
336
  msgid "Create these required fields for me"
337
+ msgstr "Créer ces champs obligatoires pour moi"
338
 
339
+ #: admin/class-admin.php:739
340
  msgctxt "admin"
341
  msgid ""
342
  "<b>Business Directory Plugin</b> requires a page with the "
345
  "<b>Business Directory Plugin</b> requiert une page avec le code "
346
  "d'activation <tt>[businessdirectory]</tt> pour marcher correctement."
347
 
348
+ #: admin/class-admin.php:741
349
  msgctxt "admin"
350
  msgid ""
351
  "You can create this page by yourself or let Business Directory do this for "
354
  "Vous pouvez créer cette page par vous-mêmes ou laisser le plugin la faire "
355
  "pour vous automatiquement."
356
 
357
+ #: admin/class-admin.php:745
358
  msgctxt "admin"
359
  msgid "Create required pages for me"
360
  msgstr "Créer les pages requises pour moi."
361
 
362
+ #: admin/class-admin.php:785
363
  msgctxt "admin compat"
364
  msgid "Installed: %s"
365
  msgstr "Installé: %s"
366
 
367
+ #: admin/class-admin.php:785
368
  msgctxt "admin compat"
369
  msgid "N/A"
370
  msgstr "N/A"
371
 
372
+ #: admin/class-admin.php:788
373
  msgctxt "admin compat"
374
  msgid "Required: %s"
375
  msgstr "Requis: %s"
376
 
377
+ #: admin/class-admin.php:801
378
  msgctxt "admin compat"
379
  msgid ""
380
  "Business Directory has detected some incompatible premium module versions "
383
  "Le plugin a détecté une/des modules incomptatible de la version premium "
384
  "installé."
385
 
386
+ #: admin/class-admin.php:803
387
  msgctxt "admin compat"
388
  msgid ""
389
  "Please upgrade to the required versions indicated below to make sure "
390
  "everything functions properly."
391
  msgstr ""
392
+ "Veuillez mettre à jour vers la version requise, indiquée ci-dessous, pour "
393
  "assurer le bon fonctionnement des fonctions. "
394
 
395
+ #: admin/class-admin.php:818
396
  msgctxt "admin"
397
  msgid ""
398
  "We noticed you want your Business Directory users to register before posting "
421
  msgid "There are no images currently attached to the listing."
422
  msgstr "Il n'y a aucune images attaché à cette annonce."
423
 
424
+ #: admin/class-themes-admin.php:41
 
425
  msgctxt "themes"
426
  msgid "Directory Themes"
427
+ msgstr "Catégories de l'annuaire"
428
 
429
+ #: admin/class-themes-admin.php:42
430
  #, fuzzy
431
  msgctxt "themes"
432
+ msgid "Directory Themes %s"
433
+ msgstr "Catégories de l'annuaire"
434
+
435
+ #: admin/class-themes-admin.php:97
436
+ msgctxt "themes"
437
  msgid "Could not change the active theme to \"%s\"."
438
+ msgstr "Vous ne pouvez pas changer le thème actif pour \"%s\""
439
 
440
+ #: admin/class-themes-admin.php:144
441
  msgctxt "themes"
442
  msgid "Active theme changed to \"%s\"."
443
  msgstr ""
444
 
445
+ #: admin/class-themes-admin.php:147
446
  msgctxt "themes"
447
  msgid ""
448
  "For better results, \"%s\" theme suggests the following form fields to be "
449
  "created."
450
  msgstr ""
451
 
452
+ #: admin/class-themes-admin.php:154
453
  msgctxt "themes"
454
  msgid "Dismiss this warning"
455
  msgstr ""
456
 
457
+ #: admin/class-themes-admin.php:157
 
458
  msgctxt "themes"
459
  msgid "Create suggested fields"
460
+ msgstr "Créer ces champs"
461
 
462
+ #: admin/class-themes-admin.php:164
 
463
  msgctxt "themes"
464
  msgid "Suggested fields created successfully."
465
+ msgstr "Champs créés avec succès."
466
 
467
+ #: admin/class-themes-admin.php:167
 
468
  msgctxt "themes"
469
  msgid "Theme installed successfully."
470
+ msgstr "Thème installé avec succès"
471
 
472
+ #: admin/class-themes-admin.php:170
 
473
  msgctxt "themes"
474
  msgid "Theme was deleted sucessfully."
475
+ msgstr "Le thème a été supprimé"
476
 
477
+ #: admin/class-themes-admin.php:173
478
  msgctxt "themes"
479
  msgid "Could not delete theme directory. Check permissions."
480
  msgstr ""
481
 
482
+ #: admin/class-themes-admin.php:199
 
483
  msgctxt "themes"
484
  msgid "Please upload a valid theme file."
485
+ msgstr "Veuillez télécharger un fichier de thème valide"
486
 
487
+ #: admin/class-themes-admin.php:206
 
488
  msgctxt "themes"
489
  msgid "Could not move \"%s\" to a temporary directory."
490
+ msgstr "Impossible de déplacer \"%s\" vers un dossier temporaire"
491
+
492
+ #: admin/class-themes-admin.php:307 core/licensing.php:127
493
+ #: core/licensing.php:159
494
+ msgctxt "licensing"
495
+ msgid "Could not contact licensing server"
496
+ msgstr "Impossible de contacter le serveur de licences"
497
+
498
+ #: admin/class-themes-admin.php:313 core/licensing.php:132
499
+ #: core/licensing.php:166
500
+ msgctxt "licensing"
501
+ msgid "License key is invalid"
502
+ msgstr "La clé de licence est invalide"
503
+
504
+ #: admin/class-themes-admin.php:318 core/licensing.php:330
505
+ msgctxt "licensing"
506
+ msgid "Could not activate license: %s."
507
+ msgstr "Impossible d'activer la licence: %s."
508
+
509
+ #: admin/class-themes-admin.php:331 core/licensing.php:332
510
+ msgctxt "licensing"
511
+ msgid "License activated"
512
+ msgstr "Licence activé"
513
 
514
  #: admin/csv-export.php:136
515
  msgctxt "admin csv-export"
556
  "not seem to be writable. Please consult with your host."
557
  msgstr ""
558
  "Un répertoire temporaire valide avec les permissions d'écriture est "
559
+ "nécessaire pour que les importations CSV pour fonctionnentcorrectement. "
560
+ "Votre serveur utilise \"%s\", mais ce chemin ne semble pas être accessible "
561
+ "en écriture. Veuillez consulter votre administrateur d'hébergement."
562
 
563
  #: admin/csv-import.php:275
564
  msgctxt "admin csv-import"
716
  #: admin/form-fields.php:18
717
  msgctxt "form-fields admin"
718
  msgid "Label / Association"
719
+ msgstr "Etiquette / Association"
720
 
721
  #: admin/form-fields.php:19
722
  msgctxt "form-fields admin"
818
  #: admin/form-fields.php:278
819
  msgctxt "form-fields admin"
820
  msgid "Required fields created successfully."
821
+ msgstr "Champs requis créés avec succès."
822
 
823
  #: admin/form-fields.php:286
 
824
  msgctxt "form-fields admin"
825
  msgid "Title"
826
  msgstr "Titre"
827
 
828
  #: admin/form-fields.php:287
 
829
  msgctxt "form-fields admin"
830
  msgid "Category"
831
+ msgstr "Catégorie"
832
 
833
  #: admin/form-fields.php:288
 
834
  msgctxt "form-fields admin"
835
  msgid "Excerpt"
836
+ msgstr "Extrait"
837
 
838
  #: admin/form-fields.php:289
 
839
  msgctxt "form-fields admin"
840
  msgid "Content"
841
+ msgstr "Contenu"
842
 
843
  #: admin/form-fields.php:290
 
844
  msgctxt "form-fields admin"
845
  msgid "Tags"
846
+ msgstr "Étiquettes (tags)"
847
 
848
  #: admin/form-fields.php:291
 
849
  msgctxt "form-fields admin"
850
  msgid "Address"
851
+ msgstr "Adresse"
852
 
853
  #: admin/form-fields.php:292
854
  msgctxt "form-fields admin"
855
  msgid "ZIP Code"
856
+ msgstr "Code Postal"
857
 
858
  #: admin/form-fields.php:293
 
859
  msgctxt "form-fields admin"
860
  msgid "FAX Number"
861
+ msgstr "Numéro de fax"
862
 
863
  #: admin/form-fields.php:294
 
864
  msgctxt "form-fields admin"
865
  msgid "Phone Number"
866
+ msgstr "Numéro de téléphone"
867
 
868
  #: admin/form-fields.php:295
 
869
  msgctxt "form-fields admin"
870
  msgid "Ratings Field"
871
+ msgstr "Champs d'évaluation"
872
 
873
  #: admin/form-fields.php:296
874
  msgctxt "form-fields admin"
878
  #: admin/form-fields.php:297
879
  msgctxt "form-fields admin"
880
  msgid "Website"
881
+ msgstr "Site Internet"
882
 
883
  #: admin/form-fields.php:318
 
884
  msgctxt "form-fields admin"
885
  msgid "Tags updated."
886
+ msgstr "Étiquettes mises à jour."
887
 
888
  #: admin/listing-metabox.php:11
889
  msgctxt "admin"
918
  #: admin/listing-metabox.php:50
919
  msgctxt "admin infometabox"
920
  msgid "Featured (Sticky) Status"
921
+ msgstr "Statut \"Sélectionné\" (Post-it)"
922
 
923
  #: admin/listing-metabox.php:58
924
  msgctxt "admin metabox"
996
  #: admin/templates/csv-export.tpl.php:37
997
  msgctxt "admin csv-export"
998
  msgid "Which listings to export?"
999
+ msgstr "Quelles listes exporter?"
1000
 
1001
  #: admin/templates/csv-export.tpl.php:41
1002
  msgctxt "admin csv-export"
1029
  "When checked, instead of just a CSV file a ZIP file will be generated with "
1030
  "both a CSV file and listing images."
1031
  msgstr ""
1032
+ "Lorsque c'est coché un fichier ZIP sera généré avec la partie CSV et les "
1033
+ "fichiers d'image"
1034
 
1035
  #: admin/templates/csv-export.tpl.php:62
1036
  msgctxt "admin csv-export"
1037
  msgid "Additional metadata to export:"
1038
+ msgstr "Métadonnées complémentaires à exporter"
1039
 
1040
  #: admin/templates/csv-export.tpl.php:67
1041
  msgctxt "admin csv-export"
1042
  msgid "Include unique IDs for each listing (sequence_id column)."
1043
+ msgstr "Inclure des ID's uniques pour chaque annonces (champ sequence_id)."
1044
 
1045
  #: admin/templates/csv-export.tpl.php:69
1046
  msgctxt "admin csv-export"
1048
  "If you plan to re-import the listings into BD and don't want new ones "
1049
  "created, select this option!"
1050
  msgstr ""
1051
+ "Si vous prévoyez de ré-importer les annonces dans la base de donnée et ne "
1052
  "souhaitez pas en créer de nouvelles, sélectionnez cette option!"
1053
 
1054
  #: admin/templates/csv-export.tpl.php:75
1099
  #: admin/templates/csv-export.tpl.php:128
1100
  msgctxt "admin csv-export"
1101
  msgid "Export Listings"
1102
+ msgstr "Listes d'exportation"
1103
 
1104
  #: admin/templates/csv-export.tpl.php:134
1105
  msgctxt "admin csv-export"
1231
  #: admin/templates/csv-import-progress.tpl.php:37
1232
  msgctxt "admin csv-import"
1233
  msgid "Rows in file"
1234
+ msgstr "Lignes dans le fichier"
1235
 
1236
  #: admin/templates/csv-import-progress.tpl.php:40
1237
  msgctxt "admin csv-import"
1242
  msgctxt "admin csv-import"
1243
  msgid "Import has not started. Click \"Start Import\" to begin."
1244
  msgstr ""
1245
+ "L'importation n'a pas commencé. Cliquez sur \"Commencer l'importation\"."
 
1246
 
1247
  #: admin/templates/csv-import-progress.tpl.php:45
1248
  msgctxt "admin csv-import"
1415
  #: admin/templates/csv-import.tpl.php:171
1416
  msgctxt "admin csv-import"
1417
  msgid "Assign listings to a user?"
1418
+ msgstr "Assigner des listes à un utilisateur?"
1419
 
1420
  #: admin/templates/csv-import.tpl.php:177
1421
  msgctxt "admin csv-import"
1422
  msgid "Assign listings to a user."
1423
+ msgstr "Assigner des listes à un utilisateur."
1424
 
1425
  #: admin/templates/csv-import.tpl.php:182
1426
  msgctxt "admin csv-import"
1458
  #: admin/templates/csv-import.tpl.php:210
1459
  msgctxt "admin csv-import"
1460
  msgid "Import Listings"
1461
+ msgstr "Importation des listes"
1462
 
1463
  #: admin/templates/csv-import.tpl.php:218
1464
  msgctxt "admin csv-import"
1592
  msgid "Number of images allowed"
1593
  msgstr "Nombre d'images autorisées"
1594
 
1595
+ #: admin/templates/fees-addoredit.tpl.php:101
1596
+ msgctxt "fees admin"
1597
+ msgid "Is sticky?"
1598
+ msgstr ""
1599
+
1600
+ #: admin/templates/fees-addoredit.tpl.php:116
1601
  msgctxt "fees admin"
1602
  msgid "Apply to category"
1603
  msgstr "Appliquer à la catégorie"
1604
 
1605
+ #: admin/templates/fees-addoredit.tpl.php:120
1606
  msgctxt "fees admin"
1607
  msgid "* All Categories *"
1608
  msgstr "Toutes Catégories"
1609
 
1610
+ #: admin/templates/fees-addoredit.tpl.php:140
1611
  msgctxt "fees admin"
1612
  msgid "Update Fee"
1613
  msgstr "Mettre à jour les Frais"
1614
 
1615
+ #: admin/templates/fees-addoredit.tpl.php:142
1616
  msgctxt "fees admin"
1617
  msgid "Add Fee"
1618
  msgstr "Ajouter des Frais"
1766
  msgid "No validation"
1767
  msgstr "Pas de validation"
1768
 
1769
+ #: admin/templates/form-fields-addoredit.tpl.php:115
1770
  msgctxt "form-fields admin"
1771
  msgid "Is field required?"
1772
  msgstr "Ce champ est-il requis?"
1773
 
1774
+ #: admin/templates/form-fields-addoredit.tpl.php:121
1775
  msgctxt "form-fields admin"
1776
  msgid "This field is required."
1777
  msgstr "Ce champ est requis"
1778
 
1779
+ #: admin/templates/form-fields-addoredit.tpl.php:129
1780
  msgctxt "form-fields admin"
1781
  msgid "Field display options"
1782
  msgstr "Champ d'options d'affichage"
1783
 
1784
+ #: admin/templates/form-fields-addoredit.tpl.php:133
1785
  msgctxt "form-fields admin"
1786
  msgid "Show this value in excerpt view?"
1787
  msgstr "Montrer un extrait de cette valeur?"
1788
 
1789
+ #: admin/templates/form-fields-addoredit.tpl.php:139
1790
  msgctxt "form-fields admin"
1791
  msgid "Display this value in post excerpt view."
1792
+ msgstr "Afannoncer dans un message un extrait de cette valeur."
1793
 
1794
+ #: admin/templates/form-fields-addoredit.tpl.php:145
1795
  msgctxt "form-fields admin"
1796
  msgid "Show this value in listing view?"
1797
  msgstr "Montrer cette valeur dans la vue de l'annonce?"
1798
 
1799
+ #: admin/templates/form-fields-addoredit.tpl.php:151
1800
  msgctxt "form-fields admin"
1801
  msgid "Display this value in the listing view."
1802
+ msgstr "Afannoncer cette valeur dans la vue de l'annonce."
1803
 
1804
+ #: admin/templates/form-fields-addoredit.tpl.php:157
1805
  msgctxt "form-fields admin"
1806
  msgid "Include this field in the search form?"
1807
  msgstr "Inclure ce champ dans la recherche de formulaire?"
1808
 
1809
+ #: admin/templates/form-fields-addoredit.tpl.php:163
1810
  msgctxt "form-fields admin"
1811
  msgid "Include this field in the search form."
1812
  msgstr "Inclure ce champ dans la recherche de formulaire."
1813
 
1814
+ #: admin/templates/form-fields-addoredit.tpl.php:169
1815
  msgctxt "form-fields admin"
1816
  msgid "Hide this field's label?"
1817
  msgstr "Cacher l'étiquette de ce champ?"
1818
 
1819
+ #: admin/templates/form-fields-addoredit.tpl.php:175
1820
  msgctxt "form-fields admin"
1821
  msgid "Hide this field's label when displaying it."
1822
  msgstr "Cacher l'étiquette de ce champ lorsqu'il est aaffiché."
1823
 
1824
+ #: admin/templates/form-fields-addoredit.tpl.php:182
1825
  msgctxt "form-fields admin"
1826
  msgid "Update Field"
1827
  msgstr "Mettre à jour le champ"
1828
 
1829
+ #: admin/templates/form-fields-addoredit.tpl.php:184
1830
  msgctxt "form-fields admin"
1831
  msgid "Add Field"
1832
  msgstr "Ajouter un champ"
1847
  msgstr "Effacer le champ"
1848
 
1849
  #: admin/templates/form-fields-tags.tpl.php:5
 
1850
  msgctxt "form-fields admin"
1851
  msgid "-- None --"
1852
+ msgstr "-- Choisissez --"
1853
 
1854
  #: admin/templates/form-fields-tags.tpl.php:14
1855
  msgctxt "form-fields admin"
1857
  msgstr ""
1858
 
1859
  #: admin/templates/form-fields-tags.tpl.php:21
 
1860
  msgctxt "form-fields admin"
1861
  msgid "Field Tag"
1862
+ msgstr "Identifiant du champ"
1863
 
1864
  #: admin/templates/form-fields-tags.tpl.php:22
1865
  #, fuzzy
1878
  msgstr "Formulaire précédent"
1879
 
1880
  #: admin/templates/form-fields.tpl.php:7
 
1881
  msgctxt "form-fields admin"
1882
  msgid "Manage Theme Tags"
1883
+ msgstr "Gestion des étiquettes du thème"
1884
 
1885
  #: admin/templates/form-fields.tpl.php:13
1886
  msgctxt "form-fields admin"
1900
  "Veuillez voir la <a>Documentation de champs de formulaire</a> pour plus de "
1901
  "détails."
1902
 
1903
+ #. #-#-#-#-# WPBDM.pot (Business Directory Plugin 3.6.10) #-#-#-#-#
1904
  #. Plugin Name of the plugin/theme
1905
  #: admin/templates/header.tpl.php:4
1906
  msgid "Business Directory Plugin"
1962
 
1963
  #: admin/templates/home.tpl.php:37
1964
  msgid "Featured Listings Pending Upgrade"
1965
+ msgstr "Annonces sélectionnées en attente de mise à jour"
1966
 
1967
  #: admin/templates/home.tpl.php:44
1968
  msgid "Manage Paid Listings"
1983
  #: admin/templates/listing-change-fee.tpl.php:11
1984
  msgctxt "admin listing fee"
1985
  msgid "Current"
1986
+ msgstr "Actuel"
1987
 
1988
  #: admin/templates/listing-change-fee.tpl.php:14
1989
  msgctxt "admin listing fee"
2000
  #: admin/templates/listing-change-fee.tpl.php:23
2001
  msgctxt "admin infometabox"
2002
  msgid "Listing never expires"
2003
+ msgstr "L'annonce n'expire jamais"
2004
 
2005
  #: admin/templates/listing-change-fee.tpl.php:25
2006
  msgctxt "admin infometabox"
2013
  msgctxt "admin infometabox"
2014
  msgid "No categories on this listing. Please add one to associate fees."
2015
  msgstr ""
2016
+ "Aucune catégorie affectée à cette annonce. Veuillez en ajouter une afin d'y "
2017
+ "associer des frais de publication."
2018
 
2019
  #: admin/templates/listing-metabox-categories.tpl.php:29
2020
  msgctxt "admin infometabox"
2089
  #: admin/templates/listing-metabox-categories.tpl.php:99
2090
  msgctxt "admin infometabox"
2091
  msgid "Send renewal e-mail to user"
2092
+ msgstr "Envoyer un e-mailà l'utilisateur"
2093
 
2094
  #: admin/templates/listing-metabox-categories.tpl.php:107
2095
  msgctxt "admin infometabox"
2099
  #: admin/templates/listing-metabox-categories.tpl.php:107
2100
  msgctxt "admin infometabox"
2101
  msgid "Change fee..."
2102
+ msgstr "Changer les frais..."
2103
 
2104
  #: admin/templates/listing-metabox-categories.tpl.php:115
2105
  msgctxt "admin infometabox"
2106
  msgid "Remove category"
2107
+ msgstr "Supprimer la catégorie"
2108
 
2109
  #: admin/templates/listing-metabox-fees.tpl.php:1
2110
  msgctxt "admin infometabox"
2111
  msgid "Fee Information"
2112
+ msgstr "Information concernant les frais"
2113
 
2114
  #: admin/templates/listing-metabox-fees.tpl.php:3
2115
  msgctxt "admin infometabox"
2188
  #: admin/templates/listing-metabox-transactions.tpl.php:16
2189
  msgctxt "listing metabox"
2190
  msgid "There are no transactions associated to this listing."
2191
+ msgstr "Il n'y a aucune transaction associée à cette annonce."
2192
 
2193
  #: admin/templates/payment-details.tpl.php:7
2194
  msgctxt "admin payments"
2257
  "perdus. </ b>"
2258
 
2259
  #: admin/templates/sidebar.tpl.php:3
 
2260
  msgctxt "admin sidebar"
2261
  msgid "Discount Codes Module"
2262
+ msgstr "Module de réductions"
2263
 
2264
  #: admin/templates/sidebar.tpl.php:4
2265
  msgctxt "admin sidebar"
2386
  msgstr "Module d'amélioration des catégories"
2387
 
2388
  #: admin/templates/themes-delete-confirm.tpl.php:1
2389
+ #: admin/templates/themes-delete-confirm.tpl.php:13
2390
  #, fuzzy
2391
  msgctxt "themes admin"
2392
+ msgid "Delete Directory Theme"
2393
+ msgstr "Catégories de l'annuaire"
2394
 
2395
  #: admin/templates/themes-delete-confirm.tpl.php:3
2396
  #, fuzzy
2397
  msgctxt "themes admin"
2398
+ msgid "Are you sure you want to delete the directory theme \"%s\"?"
2399
+ msgstr "Etes-vous sûr de vouloir effacer le \"%s\" thème ?"
2400
 
2401
  #: admin/templates/themes-delete-confirm.tpl.php:12
2402
  #, fuzzy
2403
  msgctxt "themes admin"
2404
+ msgid "Cancel"
2405
+ msgstr "Annuler"
2406
 
2407
+ #: admin/templates/themes-install.tpl.php:2
2408
+ #: admin/templates/themes-licenses.tpl.php:3 admin/templates/themes.tpl.php:3
2409
  msgctxt "themes"
2410
  msgid "Upload Directory Theme"
2411
  msgstr ""
2425
  msgid "Begin Upload"
2426
  msgstr ""
2427
 
2428
+ #: admin/templates/themes-item.tpl.php:3
 
2429
  msgctxt "themes"
2430
  msgid "Active:"
2431
+ msgstr "Actif"
2432
 
2433
+ #: admin/templates/themes-item.tpl.php:12
 
2434
  msgctxt "themes"
2435
  msgid "Activate"
2436
+ msgstr "Activer"
2437
 
2438
+ #: admin/templates/themes-item.tpl.php:29
2439
  msgctxt "themes"
2440
  msgid "Version:"
2441
  msgstr ""
2442
 
2443
+ #: admin/templates/themes-item.tpl.php:32
2444
  #, fuzzy
2445
  msgctxt "themes"
2446
  msgid "Author:"
2554
  msgid "Allow Tracking"
2555
  msgstr "Autoriser l'analyse"
2556
 
2557
+ #: business-directory-plugin.php:701
2558
  msgctxt "admin plugins"
2559
  msgid "Settings"
2560
  msgstr "Paramètres"
2561
 
2562
+ #: business-directory-plugin.php:711
2563
  msgctxt "post type general name"
2564
  msgid "Directory"
2565
  msgstr "Annuaire"
2566
 
2567
+ #: business-directory-plugin.php:712
2568
  msgctxt "post type singular name"
2569
  msgid "Directory"
2570
  msgstr "Annuaire"
2571
 
2572
+ #: business-directory-plugin.php:713
2573
  msgctxt "listing"
2574
  msgid "Add New Listing"
2575
  msgstr "Ajouter une nouvelle annonce"
2576
 
2577
+ #: business-directory-plugin.php:714
2578
  msgctxt "post type"
2579
  msgid "Add New Listing"
2580
  msgstr "Ajouter une nouvelle annonce"
2581
 
2582
+ #: business-directory-plugin.php:715 core/compatibility/deprecated.php:255
2583
  msgid "Edit Listing"
2584
  msgstr "Editer l'annonce"
2585
 
2586
+ #: business-directory-plugin.php:716
2587
  msgid "New Listing"
2588
  msgstr "Nouvelle annonce"
2589
 
2590
+ #: business-directory-plugin.php:717
2591
  msgid "View Listing"
2592
  msgstr "Voir l'annonce"
2593
 
2594
+ #: business-directory-plugin.php:718
2595
  msgid "Search Listings"
2596
+ msgstr "Rechercher"
2597
 
2598
+ #: business-directory-plugin.php:719
2599
  msgid "No listings found"
2600
+ msgstr "Aucune annonce trouvée"
2601
 
2602
+ #: business-directory-plugin.php:720
2603
  msgid "No listings found in trash"
2604
  msgstr "Aucunes annonces trouvées dans la corbeille"
2605
 
2606
+ #: business-directory-plugin.php:742
2607
  msgid "Directory Categories"
2608
  msgstr "Catégories de l'aannuaire"
2609
 
2610
+ #: business-directory-plugin.php:855 business-directory-plugin.php:862
2611
  msgctxt "rss feed"
2612
  msgid "%s Feed"
2613
  msgstr "%s diffusion"
2614
 
2615
+ #: business-directory-plugin.php:1266
2616
  msgctxt "title"
2617
  msgid "Submit A Listing"
2618
  msgstr "Soumettre une annonce"
2619
 
2620
+ #: business-directory-plugin.php:1276
2621
  msgctxt "title"
2622
  msgid "Find a Listing"
2623
  msgstr "trouver une annonce"
2624
 
2625
+ #: business-directory-plugin.php:1286
2626
  msgctxt "title"
2627
  msgid "View All Listings"
2628
  msgstr "Voir toutes les annonces"
2629
 
2630
+ #: business-directory-plugin.php:1306
2631
  msgctxt "title"
2632
  msgid "Listings tagged: %s"
2633
  msgstr "Annonces marquées: %s"
2634
 
2635
+ #: core/class-csv-import.php:371
2636
  msgctxt "admin csv-import"
2637
  msgid "Could not create listing category \"%s\""
2638
  msgstr "Vous ne pouvez pas créer cette catégorie d'annonce \"%s\""
2639
 
2640
+ #: core/class-csv-import.php:515
2641
  msgctxt "admin csv-import"
2642
  msgid "Username \"%s\" does not exist"
2643
  msgstr "Le nom d'utilisateur \"%s\" n'existe pas"
2644
 
2645
+ #: core/class-csv-import.php:547
2646
  msgctxt "admin csv-import"
2647
  msgid "Missing required field: %s"
2648
  msgstr "Absence d'un champ requis: %s"
2649
 
2650
+ #: core/class-csv-import.php:567
2651
  msgctxt "admin csv-import"
2652
  msgid "Listing category \"%s\" does not exist"
2653
  msgstr "La catégorie d'annonce \"%s\" n'existe pas"
2745
  msgid "Featured Listing"
2746
  msgstr "Annonce sélectionnée"
2747
 
2748
+ #: core/class-listing.php:297 core/class-listing.php:323
2749
  msgctxt "listing"
2750
  msgid "(Fee Unavailable)"
2751
  msgstr "(Coûts Non disponible)"
2904
  #: core/class-settings.php:56
2905
  msgctxt "admin settings"
2906
  msgid "Use reCAPTCHA for listing submits"
2907
+ msgstr "Utiliser CAPTCHA pour la soumission de annonce"
2908
 
2909
  #: core/class-settings.php:59
2910
  msgctxt "admin settings"
2930
  msgctxt "admin settings"
2931
  msgid "Display and require user agreement to Terms and Conditions"
2932
  msgstr ""
2933
+ "Afannonce et nécessite l'accord de l'utilisateur avec les Termes et "
2934
+ "Conditions"
2935
 
2936
  #: core/class-settings.php:79
2937
  msgctxt "admin settings"
2951
  #: core/class-settings.php:84
2952
  msgctxt "admin settings"
2953
  msgid "Show the \"Submit listing\" button."
2954
+ msgstr "Montrer le bouton \"Soumettre une annonce\"."
2955
 
2956
  #: core/class-settings.php:85
2957
  msgctxt "admin settings"
2973
  msgid "Directory Search"
2974
  msgstr "Recherche dans l'annuaire"
2975
 
2976
+ #: core/class-settings.php:100
2977
  msgctxt "admin settings"
2978
+ msgid "Search form display"
2979
  msgstr ""
 
 
2980
 
2981
+ #: core/class-settings.php:104
2982
+ msgctxt "admin settings"
2983
+ msgid "Above results"
2984
+ msgstr ""
2985
+
2986
+ #: core/class-settings.php:105
2987
+ msgctxt "admin settings"
2988
+ msgid "Below results"
2989
+ msgstr ""
2990
+
2991
+ #: core/class-settings.php:106
2992
+ msgctxt "admin settings"
2993
+ msgid "Don't show with results"
2994
+ msgstr ""
2995
+
2996
+ #: core/class-settings.php:111
2997
  msgctxt "admin settings"
2998
  msgid ""
2999
  "You have selected a textarea field to be included in quick searches. "
3004
  "rapides. Les recherches portant sur ces domaines sont très coûteuses et "
3005
  "pourraient entraîner des dépassements de délais et / ou lenteur générale."
3006
 
3007
+ #: core/class-settings.php:113
3008
  msgctxt "admin settings"
3009
  msgid ""
3010
  "Use Ctrl-Click to include multiple fields in the search. Choosing too many "
3015
  "trop de champs pour l'inclusion dans Recherche rapide peut entraîner des "
3016
  "performances de recherche plus lentes."
3017
 
3018
+ #: core/class-settings.php:116
3019
  msgctxt "admin settings"
3020
  msgid "Quick search fields"
3021
  msgstr "Champ de recherche rapide"
3022
 
3023
+ #: core/class-settings.php:124
3024
  msgctxt "admin settings"
3025
  msgid "Enable high performance searches?"
3026
  msgstr "Activer les recherches de hautes performance?"
3027
 
3028
+ #: core/class-settings.php:127
3029
  msgctxt "admin settings"
3030
  msgid ""
3031
  "Enabling this makes BD sacrifice result quality to improve speed. This is "
3037
  "sur les plans d'hébergement partagé, où la performance de base de données "
3038
  "est un problème."
3039
 
3040
+ #: core/class-settings.php:132
3041
  msgctxt "admin settings"
3042
  msgid "Miscellaneous Settings"
3043
  msgstr "Paramètres divers"
3044
 
3045
+ #: core/class-settings.php:136
3046
  msgctxt "admin settings"
3047
  msgid ""
3048
  "Check this if you are having trouble with BD, particularly when importing or "
3051
  "Cochez cette case si vous rencontrez des problèmes avec le plugin, en "
3052
  "particulier lors de l'importation ou de l'exportation de fichiers CSV."
3053
 
3054
+ #: core/class-settings.php:139
3055
  msgctxt "admin settings"
3056
  msgid ""
3057
  "If this compatibility mode doesn't solve your issue, you may be experiencing "
3062
  "confronté à un conflit plus grave. <a> Voici un article </a> sur la façon de "
3063
  "tester les conflits liés aux thème et/ou aux plugins avec le plugin."
3064
 
3065
+ #: core/class-settings.php:142
3066
  msgctxt "admin settings"
3067
  msgid "Enable AJAX compatibility mode?"
3068
  msgstr "Activer le mode de comptabilité AJAX?"
3069
 
3070
+ #: core/class-settings.php:150 core/class-settings.php:651
3071
  msgctxt "admin settings"
3072
  msgid "Listings"
3073
  msgstr "Annonces"
3074
 
3075
+ #: core/class-settings.php:151 core/class-settings.php:298
3076
+ #: core/class-settings.php:584
3077
  msgctxt "admin settings"
3078
  msgid "General Settings"
3079
  msgstr "Paramètres généraux"
3080
 
3081
+ #: core/class-settings.php:153
3082
  msgctxt "admin settings"
3083
  msgid "Listings per page"
3084
  msgstr "Annonces par pages"
3085
 
3086
+ #: core/class-settings.php:154
3087
  msgctxt "admin settings"
3088
  msgid ""
3089
  "Number of listings to show per page. Use a value of \"0\" to show all "
3090
  "listings."
3091
  msgstr ""
3092
+ "Nombre d'annonces à afannoncer par page. Utilisez une valeur de \"0 \" pour "
3093
+ "afannoncer toutes les annonces."
3094
 
3095
+ #: core/class-settings.php:156
3096
  msgctxt "admin settings"
3097
  msgid "Listing duration for no-fee sites (in days)"
3098
  msgstr "Durée des annonces pour les sites sans honoraires(en jours)"
3099
 
3100
+ #: core/class-settings.php:157
3101
  msgctxt "admin settings"
3102
  msgid ""
3103
  "Use a value of \"0\" to keep a listing alive indefinitely or enter a number "
3106
  "Utilisez une valeur de \"0 \" afin de garder une annonce indéfiniment ou "
3107
  "entrez un numéro de moins de 10 ans (3650 jours)."
3108
 
3109
+ #: core/class-settings.php:163
3110
  msgctxt "admin settings"
3111
  msgid "Include listing contact form on listing pages?"
3112
  msgstr ""
3113
  "Inclure les annonces de formulaire de contact sur les pages d'annonces?"
3114
 
3115
+ #: core/class-settings.php:166
3116
  msgctxt "admin settings"
3117
  msgid ""
3118
  "Allows visitors to contact listing authors privately. Authors will receive "
3121
  "Permets aux visiteurs de contacter les auteurs d'annonces de façon privé. "
3122
  "Les auteurs recevront les messages par e-mail."
3123
 
3124
+ #: core/class-settings.php:169
3125
  msgctxt "admin settings"
3126
  msgid "Require login for using the contact form?"
3127
  msgstr "Exiger une connexion pour utiliser le formulaire de contact?"
3128
 
3129
+ #: core/class-settings.php:175
3130
  msgctxt "admin settings"
3131
  msgid "Maximum number of contact form submits per day"
3132
  msgstr "Nombre maximum de formulaire de contact soumis par jour"
3133
 
3134
+ #: core/class-settings.php:178
3135
  msgctxt "admin settings"
3136
  msgid ""
3137
  "Use this to prevent spamming of listing owners. 0 means unlimited submits "
3140
  "Utilisez ceci pour prévenir les annonces contenant des spams. 0 siginifie un "
3141
  "nombre de soumission illimité par jour."
3142
 
3143
+ #: core/class-settings.php:184
3144
  msgctxt "admin settings"
3145
  msgid "Include comment form on listing pages?"
3146
  msgstr "Inclure les formulaire de commentaires dans pages annonces?"
3147
 
3148
+ #: core/class-settings.php:187
3149
  msgctxt "admin settings"
3150
  msgid ""
3151
  "Allow visitors to discuss listings using the standard WordPress comment "
3154
  "Permettre aux visiteurs de discuter des annonces en utilisant le formulaire "
3155
  "de commentaire standard WordPress. Les commentaires sont visibles par tous."
3156
 
3157
+ #: core/class-settings.php:188
3158
  msgctxt "admin settings"
3159
  msgid "Show listings under categories on main page?"
3160
  msgstr "Voir les annonces catégorisées sur la page principale?"
3161
 
3162
+ #: core/class-settings.php:189
3163
  msgctxt "admin settings"
3164
  msgid "Status of listings upon uninstalling plugin"
3165
  msgstr "Statut des annonces dès la désinstallation du plugin"
3166
 
3167
+ #: core/class-settings.php:191
3168
  msgctxt "admin settings"
3169
  msgid "Status of deleted listings"
3170
  msgstr "Statut des annonces effacés"
3171
 
3172
+ #: core/class-settings.php:194
3173
  msgctxt "admin settings"
3174
  msgid "Listing Renewal"
3175
  msgstr "Renouvellement des annonces"
3176
 
3177
+ #: core/class-settings.php:195
3178
  msgctxt "admin settings"
3179
  msgid "Turn on listing renewal option?"
3180
  msgstr "Activer l'option renouvellement des annonces?"
3181
 
3182
+ #: core/class-settings.php:198
3183
  msgctxt "admin settings"
3184
  msgid "Allow recurring renewal payments?"
3185
  msgstr "Autoriser les paiements récurrents de renouvellement?"
3186
 
3187
+ #: core/class-settings.php:201
3188
  msgctxt "admin settings"
3189
  msgid ""
3190
  "Allow users to opt in for automatic renewal of their listings. The fee is "
3194
  "leurs annonces. La redevance est perçue au moment de l'inscription et expire "
3195
  "sans intervention de l'utilisateur."
3196
 
3197
+ #: core/class-settings.php:205
3198
  msgctxt "admin settings"
3199
  msgid "Use recurring payments as the default payment method?"
3200
  msgstr ""
3201
  "Utiliser les paiements récurrents comme méthode de paiement par défaut?"
3202
 
3203
+ #: core/class-settings.php:208
3204
  msgctxt "admin settings"
3205
  msgid ""
3206
  "Enable automatic renewal without having users opt in during the submit "
3209
  "Activer le renouvellement automatique sans avoir à avertir les utilisateurs "
3210
  "lors du processus de soumission."
3211
 
3212
+ #: core/class-settings.php:213
3213
  msgctxt "admin settings"
3214
  msgid "Listing renewal e-mail threshold (in days)"
3215
  msgstr "Seuil de renouvellement des annonces par e-mail (en jours)"
3216
 
3217
+ #: core/class-settings.php:216
3218
  msgctxt "admin settings"
3219
  msgid ""
3220
  "Configure how many days before listing expiration is the renewal e-mail sent."
3222
  "Configurer le nombre de jours avant l'expiration des annonces doit se "
3223
  "dérouler le renouvellement d'envoie d'e-mail."
3224
 
3225
+ #: core/class-settings.php:220
3226
  msgctxt "admin settings"
3227
  msgid ""
3228
  "Send expiration notices including a cancel links to auto-renewed listings?"
3230
  "Envoyer des avis d'expiration y compris un lien d'annulation vers le "
3231
  "renouvellement automatique des annonces?"
3232
 
3233
+ #: core/class-settings.php:227
3234
  msgctxt "admin settings"
3235
  msgid "Remind listing owners of expired listings (past due)?"
3236
  msgstr ""
3237
  "Rappeler les propriétaires des annonces lorsque ces dernières arrives à "
3238
  "expiration (en souffrance)?"
3239
 
3240
+ #: core/class-settings.php:232
3241
  msgctxt "admin settings"
3242
  msgid "Listing renewal reminder e-mail threshold (in days)"
3243
  msgstr "Seuil du renouvellement des rappels e-mail des annonces (en jours)"
3244
 
3245
+ #: core/class-settings.php:235
3246
  msgctxt "admin settings"
3247
  msgid ""
3248
  "Configure how many days after the expiration of a listing an e-mail reminder "
3251
  "Configurer le nombre de jours après l'expiration d'une annonces d'un rappel "
3252
  "avant qu'un e-mail soit envoyé au propriétaire."
3253
 
3254
+ #: core/class-settings.php:238
3255
  msgctxt "admin settings"
3256
  msgid "Post/Category Settings"
3257
  msgstr "Paramètres de Messages/Catégories"
3258
 
3259
+ #: core/class-settings.php:239
3260
  msgctxt "admin settings"
3261
  msgid "Default new post status"
3262
  msgstr "Statut du nouveau message par défaut"
3263
 
3264
+ #: core/class-settings.php:242
3265
  msgctxt "admin settings"
3266
  msgid "Edit post status"
3267
  msgstr "Editer le statut du message"
3268
 
3269
+ #: core/class-settings.php:244
3270
  msgctxt "admin settings"
3271
  msgid "Order categories list by"
3272
  msgstr "Ordonner les catégories des annonces par"
3273
 
3274
+ #: core/class-settings.php:246
3275
  msgctxt "admin settings"
3276
  msgid "Name"
3277
  msgstr "Nom"
3278
 
3279
+ #: core/class-settings.php:247
3280
  msgctxt "admin settings"
3281
  msgid "Slug"
3282
  msgstr "Identifiant"
3283
 
3284
+ #: core/class-settings.php:248
3285
  msgctxt "admin settings"
3286
  msgid "Listing Count"
3287
  msgstr "Compteur d'annonce"
3288
 
3289
+ #: core/class-settings.php:250
3290
  msgctxt "admin settings"
3291
  msgid "Sort order for categories"
3292
  msgstr "Ordre de tri pour les catégories"
3293
 
3294
+ #: core/class-settings.php:251 core/class-settings.php:269
3295
  msgctxt "admin settings"
3296
  msgid "Ascending"
3297
  msgstr "Ascendant"
3298
 
3299
+ #: core/class-settings.php:251 core/class-settings.php:269
3300
  msgctxt "admin settings"
3301
  msgid "Descending"
3302
  msgstr "Descendant"
3303
 
3304
+ #: core/class-settings.php:252
3305
  msgctxt "admin settings"
3306
  msgid "Show category post count?"
3307
  msgstr "Montrer les catégories par messages postés?"
3308
 
3309
+ #: core/class-settings.php:253
3310
  msgctxt "admin settings"
3311
  msgid "Hide empty categories?"
3312
  msgstr "Cacher les catégories vides?"
3313
 
3314
+ #: core/class-settings.php:254
3315
  msgctxt "admin settings"
3316
  msgid "Show only parent categories in category list?"
3317
  msgstr ""
3318
  "Montrer seulement les catégories parentes dans la liste des catégories?"
3319
 
3320
+ #: core/class-settings.php:256
3321
  msgctxt "admin settings"
3322
  msgid "Listings Sorting"
3323
  msgstr "Tri des annonces"
3324
 
3325
+ #: core/class-settings.php:257
3326
  msgctxt "admin settings"
3327
  msgid "Order directory listings by"
3328
  msgstr "Ordonner les annonces de l'annuaire par"
3329
 
3330
+ #: core/class-settings.php:259
3331
  msgctxt "admin settings"
3332
  msgid "Title"
3333
  msgstr "Titre"
3334
 
3335
+ #: core/class-settings.php:260
3336
  msgctxt "admin settings"
3337
  msgid "Author"
3338
  msgstr "Auteur"
3339
 
3340
+ #: core/class-settings.php:261
3341
  msgctxt "admin settings"
3342
  msgid "Date posted"
3343
  msgstr "Date d'ajout"
3344
 
3345
+ #: core/class-settings.php:262
3346
  msgctxt "admin settings"
3347
  msgid "Date last modified"
3348
  msgstr "Date de dernière modification"
3349
 
3350
+ #: core/class-settings.php:263
3351
  msgctxt "admin settings"
3352
  msgid "Random"
3353
  msgstr "Aléatoire"
3354
 
3355
+ #: core/class-settings.php:264
3356
  msgctxt "admin settings"
3357
  msgid "Paid first then free. Inside each group by date."
3358
  msgstr ""
3359
 
3360
+ #: core/class-settings.php:265
3361
  msgctxt "admin settings"
3362
  msgid "Paid first then free. Inside each group by title."
3363
  msgstr ""
3364
 
3365
+ #: core/class-settings.php:267
3366
  msgctxt "admin settings"
3367
  msgid "Sort directory listings by"
3368
  msgstr "Trier les annonces de l'annuaire par"
3369
 
3370
+ #: core/class-settings.php:268
3371
  msgctxt "admin settings"
3372
  msgid "Ascending for ascending order A-Z, Descending for descending order Z-A"
3373
  msgstr ""
3374
  "Ascendant pour un classement de A à Z, Descendant pour un classement de Z à A"
3375
 
3376
+ #: core/class-settings.php:273
3377
  msgctxt "admin settings"
3378
  msgid "Enable sort bar?"
3379
  msgstr "Activer la barre de tri?"
3380
 
3381
+ #: core/class-settings.php:278
3382
  msgctxt "admin settings"
3383
  msgid "Sortbar Fields"
3384
  msgstr "Champs de la barre de tri"
3385
 
3386
+ #: core/class-settings.php:287
3387
  msgctxt "admin settings"
3388
  msgid "Featured (Sticky) listing settings"
3389
  msgstr "Paramètres sélectionnés (Post-it) des annonces"
3390
 
3391
+ #: core/class-settings.php:288
3392
  msgctxt "admin settings"
3393
  msgid "Offer sticky listings?"
3394
  msgstr "Proposer des annonces par Post-it?"
3395
 
3396
+ #: core/class-settings.php:289
3397
  msgctxt "admin settings"
3398
  msgid "Offer upgrades during submit process?"
3399
  msgstr "Proposer des améliorations durant le processus de soumission?"
3400
 
3401
+ #: core/class-settings.php:290
3402
  msgctxt "admin settings"
3403
  msgid "Sticky listing price"
3404
  msgstr "Prix des annonces en Post-it"
3405
 
3406
+ #: core/class-settings.php:291
3407
  msgctxt "admin settings"
3408
  msgid "Sticky listing page description text"
3409
  msgstr "Texte de description de la page annonce en Post-it"
3410
 
3411
+ #: core/class-settings.php:292
3412
  msgctxt "admin settings"
3413
  msgid ""
3414
  "You can upgrade your listing to featured status. Featured listings will "
3418
  "annonces ainsi traitées vont toujours apparaître avant les annonces "
3419
  "courantes."
3420
 
3421
+ #: core/class-settings.php:297
3422
  msgctxt "admin settings"
3423
  msgid "E-Mail"
3424
  msgstr "E-Mail"
3425
 
3426
+ #: core/class-settings.php:301
3427
  msgctxt "admin settings"
3428
  msgid "Display email address fields publicly?"
3429
  msgstr "Affichage des champs d'adresses e-mail au public?"
3430
 
3431
+ #: core/class-settings.php:304
3432
  msgctxt "admin settings"
3433
  msgid ""
3434
  "Shows the email address of the listing owner to all web users. NOT "
3435
  "RECOMMENDED as this increases spam to the address and allows spam bots to "
3436
  "harvest it for future use."
3437
  msgstr ""
3438
+ "Afannonce l'adresse email du propriétaire de l'annonce à tous les "
3439
+ "utilisateurs du Web. PAS RECOMMANDE car cela augmente le spam à l'adresse en "
3440
+ "question et permet aux spam bots de la récolter pour une utilisation future."
3441
 
3442
+ #: core/class-settings.php:307
3443
  msgctxt "admin settings"
3444
  msgid "How to determine the listing's email address?"
3445
  msgstr "Comment définir l'adresse e-mail de l'annonce?"
3446
 
3447
+ #: core/class-settings.php:310
3448
  msgctxt "admin settings"
3449
  msgid ""
3450
  "This affects emails sent to listing owners via contact forms or when their "
3453
  "Cela affecte l'envoie des emails aux propriétaires des annonces via le "
3454
  "formulaire de contact ou quand leurs annonces expirent."
3455
 
3456
+ #: core/class-settings.php:317
3457
  msgctxt "admin settings"
3458
  msgid "E-Mail Notifications"
3459
  msgstr "Notification mail"
3460
 
3461
+ #: core/class-settings.php:320
3462
  msgctxt "admin settings"
3463
  msgid "Notify admin via e-mail when..."
3464
  msgstr "Prévenir l'administrateur via courriel quand..."
3465
 
3466
+ #: core/class-settings.php:324
3467
  msgctxt "admin settings"
3468
  msgid "A new listing is submitted."
3469
  msgstr "Une nouvelle annonce a été soumise."
3470
 
3471
+ #: core/class-settings.php:325
3472
  msgctxt "admin settings"
3473
  msgid "A listing is edited."
3474
  msgstr "Une annonce est édité."
3475
 
3476
+ #: core/class-settings.php:326
3477
  msgctxt "admin settings"
3478
  msgid "A listing expires."
3479
  msgstr "Une annonce expire."
3480
 
3481
+ #: core/class-settings.php:327
3482
  msgctxt "admin settings"
3483
  msgid "A contact message is sent to a listing's owner."
3484
  msgstr "Un message de contact est envoyé a un propriétaire d'annonce."
3485
 
3486
+ #: core/class-settings.php:333
3487
  msgctxt "admin settings"
3488
  msgid "CC this e-mail address too"
3489
  msgstr "CC cette adresse mail aussi"
3490
 
3491
+ #: core/class-settings.php:339
3492
  msgctxt "admin settings"
3493
  msgid "Notify users via e-mail when..."
3494
  msgstr "Prévenir les utilisateurs via courriel quand..."
3495
 
3496
+ #: core/class-settings.php:342
3497
  msgctxt "admin settings"
3498
  msgid "You can modify the text template used for most of these e-mails below."
3499
  msgstr ""
3500
  "Vous pouvez modifier le modèle de texte utilisé pour la plupart de ces e-"
3501
  "mails ci-dessous."
3502
 
3503
+ #: core/class-settings.php:343
3504
  msgctxt "admin settings"
3505
  msgid "Their listing is submitted."
3506
  msgstr "Leur annonce est soumise."
3507
 
3508
+ #: core/class-settings.php:344
3509
  msgctxt "admin settings"
3510
  msgid "Their listing is approved/published."
3511
  msgstr "Leur annonce est approuvée/publiée"
3512
 
3513
+ #: core/class-settings.php:353
3514
  msgctxt "contact email"
3515
  msgid "You have received a reply from your listing at %s."
3516
  msgstr "Vous avez reçu une réponse à votre annonce de %s."
3517
 
3518
+ #: core/class-settings.php:354
3519
  msgctxt "contact email"
3520
  msgid "Name: %s"
3521
  msgstr "Nom: %s"
3522
 
3523
+ #: core/class-settings.php:355
3524
  msgctxt "contact email"
3525
  msgid "E-Mail: %s"
3526
  msgstr "E-Mail: %s"
3527
 
3528
+ #: core/class-settings.php:356
3529
  msgctxt "contact email"
3530
  msgid "Message:"
3531
  msgstr "Message:"
3532
 
3533
+ #: core/class-settings.php:358
3534
  msgctxt "contact email"
3535
  msgid "Time: %s"
3536
  msgstr "Date: %s"
3537
 
3538
+ #: core/class-settings.php:360
3539
  msgctxt "admin settings"
3540
  msgid "E-Mail Templates"
3541
  msgstr "Template d'E-Mail"
3542
 
3543
+ #: core/class-settings.php:363
3544
  msgctxt "admin settings"
3545
  msgid "Email confirmation message"
3546
  msgstr "Message de confirmation par E-Mail"
3547
 
3548
+ #: core/class-settings.php:367
3549
  msgctxt "admin settings"
3550
  msgid "Sent after a listing has been submitted."
3551
  msgstr "Envoyer après qu'une annonce ait été soumise"
3552
 
3553
+ #: core/class-settings.php:368 core/class-settings.php:376
3554
+ #: core/class-settings.php:417
3555
  msgctxt "admin settings"
3556
  msgid "Listing's title"
3557
  msgstr "Titre de l'annonce"
3558
 
3559
+ #: core/class-settings.php:371
3560
  msgctxt "admin settings"
3561
  msgid "Listing published message"
3562
  msgstr "Message publié de l'annonce"
3563
 
3564
+ #: core/class-settings.php:374
3565
  msgctxt "admin settings"
3566
  msgid ""
3567
  "Your listing \"[listing]\" is now available at [listing-url] and can be "
3570
  "Votre annonce \"[listing]\" est maintenant disponible à [listing-url] et "
3571
  "elle peut être vu par tout le monde."
3572
 
3573
+ #: core/class-settings.php:375
3574
  msgctxt "admin settings"
3575
  msgid "Sent when the listing has been published or approved by an admin."
3576
  msgstr ""
3577
  "Envoyé lorsque l'annonce a été publiée ou approuvée par un administrateur."
3578
 
3579
+ #: core/class-settings.php:377
3580
  msgctxt "admin settings"
3581
  msgid "Listing's URL"
3582
  msgstr "Url de l'annonce"
3583
 
3584
+ #: core/class-settings.php:381
3585
  msgctxt "admin settings"
3586
  msgid "Listing Contact Message"
3587
+ msgstr "Lister des messages de contact"
3588
 
3589
+ #: core/class-settings.php:385
3590
  msgctxt "admin settings"
3591
  msgid ""
3592
  "Sent to listing owners when someone uses the contact form on their listing "
3595
  "Envoyer aux propriétaires des annonces quand quelqu'un utilise le formulaire "
3596
  "de contact sur leurs pages d'annonces."
3597
 
3598
+ #: core/class-settings.php:395
3599
  msgctxt "admin settings"
3600
  msgid "Payment related"
3601
  msgstr "Paiement lié"
3602
 
3603
+ #: core/class-settings.php:412
3604
  msgctxt "admin settings"
3605
  msgid "Payment abandoned reminder message"
3606
  msgstr "Paiement abandonné, message de rappel"
3607
 
3608
+ #: core/class-settings.php:416
3609
  msgctxt "admin settings"
3610
  msgid "Sent some time after a pending payment is abandoned by users."
3611
  msgstr ""
3612
  "Envoyer après un certain temps lorsqu'un paiement en attente est abandonné "
3613
  "par les utilisateurs."
3614
 
3615
+ #: core/class-settings.php:418
3616
  msgctxt "admin settings"
3617
  msgid "Checkout URL link"
3618
  msgstr "Vérificateur de lien URL"
3619
 
3620
+ #: core/class-settings.php:424
3621
  msgctxt "admin settings"
3622
  msgid "Renewal Reminders"
3623
  msgstr "Renouveller les rappels"
3624
 
3625
+ #: core/class-settings.php:427
3626
  msgctxt "admin settings"
3627
  msgid ""
3628
  "This section refers only to the text of the renewal/expiration notices. You "
3632
  "d'expiration. Vous pouvez également configurer <a> quand les e-mails seront "
3633
  "envoyés </a>."
3634
 
3635
+ #: core/class-settings.php:431
3636
  msgctxt "admin settings"
3637
  msgid "Pending expiration e-mail message"
3638
  msgstr "Expiration imminente du mail"
3639
 
3640
+ #: core/class-settings.php:435
3641
  msgctxt "settings"
3642
  msgid ""
3643
  "Sent some time before the listing expires. Applies to non-recurring renewals "
3646
  "Envoyé quelque temps avant l'expiration de l'annonce. Valable seulement pour "
3647
  "les renouvellements non-récurrents."
3648
 
3649
+ #: core/class-settings.php:436 core/class-settings.php:449
3650
+ #: core/class-settings.php:462 core/class-settings.php:475
3651
+ #: core/class-settings.php:488
3652
  msgctxt "settings"
3653
  msgid "Listing's name (with link)"
3654
  msgstr "Nom de l'annonce (avec lien)"
3655
 
3656
+ #: core/class-settings.php:437 core/class-settings.php:450
3657
+ #: core/class-settings.php:463 core/class-settings.php:476
3658
+ #: core/class-settings.php:489
3659
  msgctxt "settings"
3660
  msgid "Author's name"
3661
  msgstr "Nom de l'auteur"
3662
 
3663
+ #: core/class-settings.php:438 core/class-settings.php:451
3664
+ #: core/class-settings.php:490
3665
  msgctxt "settings"
3666
  msgid "Expiration date"
3667
  msgstr "Date d'expiration"
3668
 
3669
+ #: core/class-settings.php:439
3670
  msgctxt "settings"
3671
  msgid "Category that is going to expire"
3672
  msgstr "Catégorier qui va expirer"
3673
 
3674
+ #: core/class-settings.php:440 core/class-settings.php:453
3675
+ #: core/class-settings.php:492
3676
  msgctxt "settings"
3677
  msgid "Link to renewal page"
3678
  msgstr "Lien pour renouveller la page"
3679
 
3680
+ #: core/class-settings.php:441 core/class-settings.php:454
3681
+ #: core/class-settings.php:466 core/class-settings.php:479
3682
+ #: core/class-settings.php:493
3683
  msgctxt "settings"
3684
  msgid "Link to your site"
3685
  msgstr "Lien vers votre site"
3686
 
3687
+ #: core/class-settings.php:444
3688
  msgctxt "admin settings"
3689
  msgid "Listing Renewal e-mail message"
3690
  msgstr "Message mail de renouvellement d'annonce"
3691
 
3692
+ #: core/class-settings.php:448
3693
  msgctxt "settings"
3694
  msgid ""
3695
  "Sent at the time of listing expiration. Applies to non-recurring renewals "
3698
  "Envoyé au moment de l'expiration de l'annonce. Seulement valable pour les "
3699
  "renouvellements non-récurrents."
3700
 
3701
+ #: core/class-settings.php:452 core/class-settings.php:491
3702
  msgctxt "settings"
3703
  msgid "Category that expired"
3704
  msgstr "Catégories qui ont expiré"
3705
 
3706
+ #: core/class-settings.php:457
3707
  msgctxt "admin settings"
3708
  msgid "Listing auto-renewal reminder (recurring payments)"
3709
  msgstr "Rappel d'auto-renouvellement des annonces (paiements récurrents)"
3710
 
3711
+ #: core/class-settings.php:461
3712
  msgctxt "settings"
3713
  msgid ""
3714
  "Sent some time before the listing is auto-renewed. Applies to recurring "
3717
  "Envoyé un certain temps avant que l'annonce est auto-renouvellement. Valable "
3718
  "pour les renouvellements périodiques seulement."
3719
 
3720
+ #: core/class-settings.php:464 core/class-settings.php:478
3721
  msgctxt "settings"
3722
  msgid "Renewal date"
3723
  msgstr "Date de renouvellement"
3724
 
3725
+ #: core/class-settings.php:465
3726
  msgctxt "settings"
3727
  msgid "Category that is going to be renewed"
3728
  msgstr "Catégories qui vont être renouvelées"
3729
 
3730
+ #: core/class-settings.php:467
3731
  msgctxt "settings"
3732
  msgid "Link to manage subscriptions"
3733
  msgstr "Lien pour gérer les abonnements"
3734
 
3735
+ #: core/class-settings.php:470
3736
  msgctxt "admin settings"
3737
  msgid "Listing Renewal e-mail message (recurring payments)"
3738
  msgstr "Renouvellement des annonces par mail (paiements récurrents)"
3739
 
3740
+ #: core/class-settings.php:474
3741
  msgctxt "settings"
3742
  msgid ""
3743
  "Sent after the listing is auto-renewed. Applies to recurring renewals only."
3745
  "Envoyé dès que les annonces se soient auto-renouvellées. Appliqué aux "
3746
  "paiements récurrents seulement."
3747
 
3748
+ #: core/class-settings.php:477
3749
  msgctxt "settings"
3750
  msgid "Renewed category"
3751
  msgstr "Catégories renouvellées"
3752
 
3753
+ #: core/class-settings.php:483
3754
  msgctxt "admin settings"
3755
  msgid "Renewal reminder e-mail message"
3756
  msgstr "Rennouveller le rappel par mail"
3757
 
3758
+ #: core/class-settings.php:487
3759
  msgctxt "settings"
3760
  msgid ""
3761
  "Sent some time after listing expiration and when no renewal has occurred. "
3765
  "renouvellement n'a pas eu lieu. Valable pour deux renouvellements récurrents "
3766
  "et non récurrents."
3767
 
3768
+ #: core/class-settings.php:497
3769
  msgctxt "admin settings"
3770
  msgid "Payment"
3771
  msgstr "Paiement"
3772
 
3773
+ #: core/class-settings.php:498
3774
  msgctxt "admin settings"
3775
  msgid "Payment Settings"
3776
  msgstr "Paramètres de paiement"
3777
 
3778
+ #: core/class-settings.php:501
3779
  msgctxt "admin settings"
3780
  msgid "Turn On payments?"
3781
  msgstr "Activer les paiements?"
3782
 
3783
+ #: core/class-settings.php:503
3784
  msgctxt "admin settings"
3785
  msgid "Put payment gateways in test mode?"
3786
  msgstr "Passer les passerelles de paiement en mode test?"
3787
 
3788
+ #: core/class-settings.php:508
3789
  msgctxt "admin settings"
3790
  msgid "Perform checkouts on the secure (HTTPS) version of your site?"
3791
  msgstr ""
3792
  "Effectuer la vérification sur la version sécurisée (HTTPS) de votre site?"
3793
 
3794
+ #: core/class-settings.php:511
3795
  msgctxt "admin settings"
3796
  msgid ""
3797
  "Recommended for added security. For this to work you need to enable HTTPS on "
3800
  "Recommandé pour une sécurité accrue. Pour que cela fonctionne, vous devez "
3801
  "activer HTTPS sur votre serveur et <a> obtenir un certificat SSL </a>."
3802
 
3803
+ #: core/class-settings.php:515
3804
  msgctxt "admin settings"
3805
  msgid "Currency Code"
3806
  msgstr "Code de devise"
3807
 
3808
+ #: core/class-settings.php:517
3809
  msgctxt "admin settings"
3810
  msgid "Australian Dollar (AUD)"
3811
  msgstr "Dollar Australien (AUD)"
3812
 
3813
+ #: core/class-settings.php:518
3814
  msgctxt "admin settings"
3815
  msgid "Brazilian Real (BRL)"
3816
  msgstr "Real Brésilien (BRL)"
3817
 
3818
+ #: core/class-settings.php:519
3819
  msgctxt "admin settings"
3820
  msgid "Canadian Dollar (CAD)"
3821
  msgstr "Dollar Canadien (CAD)"
3822
 
3823
+ #: core/class-settings.php:520
3824
  msgctxt "admin settings"
3825
  msgid "Czech Koruna (CZK)"
3826
  msgstr "Couronne Tchèque (CZK)"
3827
 
3828
+ #: core/class-settings.php:521
3829
  msgctxt "admin settings"
3830
  msgid "Danish Krone (DKK)"
3831
  msgstr "Couronne Danoise (DKK)"
3832
 
3833
+ #: core/class-settings.php:522
3834
  msgctxt "admin settings"
3835
  msgid "Euro (EUR)"
3836
  msgstr "Euro (EUR)"
3837
 
3838
+ #: core/class-settings.php:523
3839
  msgctxt "admin settings"
3840
  msgid "Hong Kong Dollar (HKD)"
3841
  msgstr "Dollar de Hong Kong(HKD)"
3842
 
3843
+ #: core/class-settings.php:524
3844
  msgctxt "admin settings"
3845
  msgid "Hungarian Forint (HUF)"
3846
  msgstr "Forint Hongrois (HUF)"
3847
 
3848
+ #: core/class-settings.php:525
3849
  msgctxt "admin settings"
3850
  msgid "Israeli New Shequel (ILS)"
3851
  msgstr "Nouveau Shequel Israélien (ILS)"
3852
 
3853
+ #: core/class-settings.php:526
3854
  msgctxt "admin settings"
3855
  msgid "Japanese Yen (JPY)"
3856
  msgstr "Yen Japonais (JPY)"
3857
 
3858
+ #: core/class-settings.php:527
3859
  msgctxt "admin settings"
3860
  msgid "Malasian Ringgit (MYR)"
3861
  msgstr "Ringgit Malaisien (MYR)"
3862
 
3863
+ #: core/class-settings.php:528
3864
  msgctxt "admin settings"
3865
  msgid "Mexican Peso (MXN)"
3866
  msgstr "Peso Mexicain (MXN)"
3867
 
3868
+ #: core/class-settings.php:529
3869
  msgctxt "admin settings"
3870
  msgid "Norwegian Krone (NOK)"
3871
  msgstr "Couronne Norvégienne (NOK)"
3872
 
3873
+ #: core/class-settings.php:530
3874
  msgctxt "admin settings"
3875
  msgid "New Zealand Dollar (NZD)"
3876
  msgstr "Dollar Néo-Zélandais (NZD)"
3877
 
3878
+ #: core/class-settings.php:531
3879
  msgctxt "admin settings"
3880
  msgid "Philippine Peso (PHP)"
3881
  msgstr "Peso Phillipin (PHP)"
3882
 
3883
+ #: core/class-settings.php:532
3884
  msgctxt "admin settings"
3885
  msgid "Polish Zloty (PLN)"
3886
  msgstr "Zloty Polonais (PLN)"
3887
 
3888
+ #: core/class-settings.php:533
3889
  msgctxt "admin settings"
3890
  msgid "Pound Sterling (GBP)"
3891
  msgstr "Livre Sterling (GBP)"
3892
 
3893
+ #: core/class-settings.php:534
3894
  msgctxt "admin settings"
3895
  msgid "Singapore Dollar (SGD)"
3896
  msgstr "Dollar Singaporien (SGD)"
3897
 
3898
+ #: core/class-settings.php:535
3899
  msgctxt "admin settings"
3900
  msgid "Swedish Krona (SEK)"
3901
  msgstr "Couronne Suédoise (SEK)"
3902
 
3903
+ #: core/class-settings.php:536
3904
  msgctxt "admin settings"
3905
  msgid "Swiss Franc (CHF)"
3906
  msgstr "Franc Suisse (CHF)"
3907
 
3908
+ #: core/class-settings.php:537
3909
  msgctxt "admin settings"
3910
  msgid "Taiwan Dollar (TWD)"
3911
  msgstr "Dollar Taiwanais (TWD)"
3912
 
3913
+ #: core/class-settings.php:538
3914
  msgctxt "admin settings"
3915
  msgid "Thai Baht (THB)"
3916
  msgstr "Baht Thaïlandais"
3917
 
3918
+ #: core/class-settings.php:539
3919
  msgctxt "admin settings"
3920
  msgid "Turkish Lira (TRY)"
3921
  msgstr "Livre Turque (TRY)"
3922
 
3923
+ #: core/class-settings.php:540
3924
  #, fuzzy
3925
  msgctxt "admin settings"
3926
  msgid "U.S. Dollar (USD)"
3927
  msgstr "Dollar U.S. "
3928
 
3929
+ #: core/class-settings.php:544
3930
  msgctxt "admin settings"
3931
  msgid "Currency Symbol"
3932
+ msgstr "Devise"
3933
 
3934
+ #: core/class-settings.php:549
 
3935
  msgctxt "admin settings"
3936
  msgid "Currency symbol display"
3937
+ msgstr "Affichage de la devise"
3938
 
3939
+ #: core/class-settings.php:553
3940
  msgctxt "admin settings"
3941
  msgid "Show currency symbol on the left"
3942
  msgstr ""
3943
 
3944
+ #: core/class-settings.php:554
3945
  msgctxt "admin settings"
3946
  msgid "Show currency symbol on the right"
3947
  msgstr ""
3948
 
3949
+ #: core/class-settings.php:555
 
3950
  msgctxt "admin settings"
3951
  msgid "Do not show currency symbol"
3952
+ msgstr "Ne pas montrer la devise"
3953
 
3954
+ #: core/class-settings.php:557
3955
  msgctxt "admin settings"
3956
  msgid "Thank you for payment message"
3957
  msgstr "Merci pour le message de paiement"
3958
 
3959
+ #: core/class-settings.php:558
3960
  msgctxt "admin settings"
3961
  msgid ""
3962
  "Thank you for your payment. Your payment is being verified and your listing "
3966
  "votre annonce en revue. Le processus de vérification et d'examen peut "
3967
  "prendre jusqu'à 48 heures."
3968
 
3969
+ #: core/class-settings.php:563
3970
  msgctxt "admin settings"
3971
  msgid "Ask users to come back for abandoned payments?"
3972
  msgstr "Demandez aux utilisateurs de revenir pour les paiements abandonnés?"
3973
 
3974
+ #: core/class-settings.php:566
3975
  msgctxt "admin settings"
3976
  msgid ""
3977
  "An abandoned payment is when a user attempts to place a listing and gets to "
3985
  "l'utilisateur n'a tout simplement pas compléter la transaction. Le plugin "
3986
  "peut peut rappeler les auteurs pour continuer la publication de leur annonce."
3987
 
3988
+ #: core/class-settings.php:572
3989
  msgctxt "admin settings"
3990
  msgid "Listing abandonment threshold (hours)"
3991
  msgstr "Seuil d'abandon de l'annonce (heurs)"
3992
 
3993
+ #: core/class-settings.php:577
3994
  msgctxt "admin settings"
3995
  msgid ""
3996
  "Listings with pending payments are marked as abandoned after this time. You "
4000
  "cette heure. Vous pouvez également personnaliser <a> l'e-mail </a> que les "
4001
  "utilisateurs reçoivent."
4002
 
4003
+ #: core/class-settings.php:583
4004
+ msgctxt "admin settings"
4005
+ msgid "Themes"
4006
+ msgstr ""
4007
+
4008
+ #: core/class-settings.php:588
4009
+ msgctxt "admin settings"
4010
+ msgid "Theme button style"
4011
+ msgstr ""
4012
+
4013
+ #: core/class-settings.php:592
4014
+ msgctxt "admin settings"
4015
+ msgid "Use the BD theme style for BD buttons"
4016
+ msgstr ""
4017
+
4018
+ #: core/class-settings.php:593
4019
+ msgctxt "admin settings"
4020
+ msgid "Use the WP theme style for BD buttons"
4021
+ msgstr ""
4022
+
4023
+ #: core/class-settings.php:599
4024
  msgctxt "admin settings"
4025
  msgid "Registration"
4026
  msgstr "Enregistrement"
4027
 
4028
+ #: core/class-settings.php:600
4029
+ msgid ""
4030
+ "We expect that a membership plugin supports the 'redirect_to' parameter for "
4031
+ "the URLs below to work. If the plugin does not support them, these settings "
4032
+ "will not function as expected. Please contact the membership plugin and ask "
4033
+ "them to support the WP standard 'redirect_to' query parameter."
4034
+ msgstr ""
4035
+
4036
+ #: core/class-settings.php:603
4037
  msgctxt "admin settings"
4038
  msgid "Registration Settings"
4039
  msgstr "Paramètres d'enregistrement"
4040
 
4041
+ #: core/class-settings.php:604
4042
  msgctxt "admin settings"
4043
  msgid "Require login to post listings?"
4044
  msgstr "Connexion obligatoire pour poster une annonce?"
4045
 
4046
+ #: core/class-settings.php:609
4047
+ #, fuzzy
4048
+ msgctxt "admin settings"
4049
+ msgid "Login URL"
4050
+ msgstr "Connexion"
4051
+
4052
+ #: core/class-settings.php:612
4053
+ #, fuzzy
4054
+ msgctxt "admin settings"
4055
+ msgid ""
4056
+ "URL of your membership plugin's login page. Only enter this if using a "
4057
+ "membership plugin or custom login page."
4058
+ msgstr ""
4059
+ "URL de la page d'inscription de votre plugin adhésion. Saisissez uniquement "
4060
+ "ceci si vous utilisez la page d'inscription du plugin d'adhésion ou une page "
4061
+ "personnalisée."
4062
+
4063
+ #: core/class-settings.php:617
4064
  msgctxt "admin settings"
4065
  msgid "Registration URL"
4066
  msgstr "URL d'enregistrement"
4067
 
4068
+ #: core/class-settings.php:620
4069
  msgctxt "admin settings"
4070
  msgid ""
4071
  "URL of your membership plugin's registration page. Only enter this if using "
4075
  "ceci si vous utilisez la page d'inscription du plugin d'adhésion ou une page "
4076
  "personnalisée."
4077
 
4078
+ #: core/class-settings.php:624
4079
  msgctxt "admin settings"
4080
  msgid "Image"
4081
  msgstr "Image"
4082
 
4083
+ #: core/class-settings.php:625
4084
  msgctxt "admin settings"
4085
  msgid ""
4086
  "Any changes to these settings will affect new listings only. Existing "
4094
  "télécharger l'image (s) sur cette annonce, après avoir cfait les "
4095
  "modifications voulue."
4096
 
4097
+ #: core/class-settings.php:626
4098
  msgctxt "admin settings"
4099
  msgid "Image Settings"
4100
  msgstr "Paraamètres des images"
4101
 
4102
+ #: core/class-settings.php:627
4103
  msgctxt "admin settings"
4104
  msgid "Allow images?"
4105
  msgstr "Autoriser les images?"
4106
 
4107
+ #: core/class-settings.php:629
4108
  msgctxt "admin settings"
4109
  msgid "Min Image File Size (KB)"
4110
  msgstr "Taille minnimal des fichiers images (KB)"
4111
 
4112
+ #: core/class-settings.php:630
4113
  msgctxt "admin settings"
4114
  msgid "Max Image File Size (KB)"
4115
  msgstr "Taille maximal des fichiers images (KB)"
4116
 
4117
+ #: core/class-settings.php:632
4118
  msgctxt "admin settings"
4119
  msgid "Min image width (px)"
4120
  msgstr "Largeur minnimal des images (px)"
4121
 
4122
+ #: core/class-settings.php:633
4123
  msgctxt "admin settings"
4124
  msgid "Min image height (px)"
4125
  msgstr "Hauteur minnimal des images (px)"
4126
 
4127
+ #: core/class-settings.php:635
4128
  msgctxt "admin settings"
4129
  msgid "Max image width (px)"
4130
  msgstr "Largeur maximal des images (px)"
4131
 
4132
+ #: core/class-settings.php:636
4133
  msgctxt "admin settings"
4134
  msgid "Max image height (px)"
4135
  msgstr "Hauteur maximal des images (px)"
4136
 
4137
+ #: core/class-settings.php:638
4138
  msgctxt "admin settings"
4139
  msgid "Turn on thickbox/lightbox?"
4140
  msgstr "Activer thickbox/lightbox?"
4141
 
4142
+ #: core/class-settings.php:638
4143
  msgctxt "admin settings"
4144
  msgid ""
4145
  "Uncheck if it conflicts with other elements or plugins installed on your site"
4147
  "Décochez si vela entre en conflit avec d'autres éléments ou plugins "
4148
  "installés sur votre site"
4149
 
4150
+ #: core/class-settings.php:640
4151
  msgctxt "admin settings"
4152
  msgid "Thumbnails"
4153
  msgstr "Miniatures"
4154
 
4155
+ #: core/class-settings.php:641
4156
  msgctxt "admin settings"
4157
  msgid "Thumbnail width (px)"
4158
  msgstr "Largeur des miniatures (en pixel)"
4159
 
4160
+ #: core/class-settings.php:642
4161
  msgctxt "admin settings"
4162
  msgid "Thumbnail height (px)"
4163
  msgstr "Hauteur des miniatures (en pixel)"
4164
 
4165
+ #: core/class-settings.php:645
4166
  msgctxt "admin settings"
4167
  msgid "Crop thumbnails to exact dimensions?"
4168
  msgstr "Recadrer les miniatures aux dimensions exacts?"
4169
 
4170
+ #: core/class-settings.php:648
4171
  msgctxt "admin settings"
4172
  msgid ""
4173
  "When enabled images will match exactly the dimensions above but part of the "
4182
  "proportionnellement. Selon les images téléchargées, les miniatures peuvent "
4183
  "avoir différentes hauteurs."
4184
 
4185
+ #: core/class-settings.php:654
4186
  msgctxt "admin settings"
4187
  msgid "Number of free images"
4188
  msgstr "Nombre d'images gratuites"
4189
 
4190
+ #: core/class-settings.php:659
4191
  msgctxt "admin settings"
4192
  msgid ""
4193
  "For paid listing images, configure that by adding or editing a <a>Fee Plan</"
4197
  "ou modification d'un <a>plan de frais</a> au lieu de ce paramètre, qui est "
4198
  "ignoré pour les annonces payées."
4199
 
4200
+ #: core/class-settings.php:660
4201
  msgctxt "admin settings"
4202
  msgid "Use default picture for listings with no picture?"
4203
  msgstr "Utiliser l'image par défault pour les annonces sans images?"
4204
 
4205
+ #: core/class-settings.php:661
4206
  msgctxt "admin settings"
4207
  msgid "Show Thumbnail on main listings page?"
4208
  msgstr "Montrer les miniatures sur page principale des annonces?"
4209
 
4210
+ #: core/class-settings.php:717
4211
  msgctxt "admin settings"
4212
  msgid ""
4213
  "Could not copy the AJAX compatibility plugin \"%s\". Compatibility mode was "
4216
  "Impossible de copier le plugin de compatibilité AJAX \"% s\". Le mode de "
4217
  "compatibilité n'a pas été activée."
4218
 
4219
+ #: core/class-settings.php:725
4220
  msgctxt "admin settings"
4221
  msgid ""
4222
  "Could not activate AJAX Compatibility mode: the directory \"%s\" could not "
4225
  "Impossible d'activer le mode de compatibilité AJAX: le répertoire \"% s \" "
4226
  "ne peux pas être créé."
4227
 
4228
+ #: core/class-settings.php:734
4229
  msgctxt "admin settings"
4230
  msgid ""
4231
  "Could not remove the \"Business Directory Plugin - AJAX Compatibility Module"
4234
  "Impossible de supprimer le \"Module de comptabilité AJAX du plugin \". "
4235
  "Veuillezt supprimer le fichier \"% s \" manuellement ou désactiver le plugin."
4236
 
4237
+ #: core/class-settings.php:1033
4238
  msgctxt "settings"
4239
  msgid "Deactivate License"
4240
  msgstr "Désactiver la license"
4241
 
4242
+ #: core/class-settings.php:1035
4243
  msgctxt "settings"
4244
  msgid "Deactivating license..."
4245
  msgstr "Désactivation de la license..."
4246
 
4247
+ #: core/class-settings.php:1038
4248
  msgctxt "settings"
4249
  msgid "Activate License"
4250
  msgstr "Activer la license"
4251
 
4252
+ #: core/class-settings.php:1040
4253
  msgctxt "settings"
4254
  msgid "Activating license..."
4255
  msgstr "Activation de la license"
4256
 
4257
+ #: core/class-settings.php:1064
4258
  msgctxt "admin settings"
4259
  msgid "Valid placeholders: %s"
4260
  msgstr "Espaces réservés valides:% s"
4261
 
4262
+ #: core/class-settings.php:1098
4263
  msgctxt "settings email"
4264
  msgid "Click to edit e-mail"
4265
  msgstr "Cliquer pour éditer l'e-mail"
4266
 
4267
+ #: core/class-settings.php:1099
4268
  msgctxt "settings email"
4269
  msgid "Click to edit"
4270
  msgstr "Cliquer pour éditer"
4271
 
4272
+ #: core/class-settings.php:1112
4273
  msgctxt "settings email"
4274
  msgid "E-Mail Subject"
4275
  msgstr "Sujet de l'e-mail"
4276
 
4277
+ #: core/class-settings.php:1123
4278
  msgctxt "settings email"
4279
  msgid "E-Mail Body"
4280
  msgstr "Corps de l'e-mail"
4281
 
4282
+ #: core/class-settings.php:1134
4283
  msgctxt "settings email"
4284
  msgid "You can use the following placeholders:"
4285
  msgstr "Vous pouvez utiliser les paramètres suivantes:"
4286
 
4287
+ #: core/class-settings.php:1157
4288
  msgctxt "settings email"
4289
  msgid "Preview e-mail"
4290
  msgstr "E-mail précédents"
4291
 
4292
+ #: core/class-settings.php:1158
4293
  msgctxt "settings email"
4294
  msgid "Cancel"
4295
  msgstr "Annuler"
4296
 
4297
+ #: core/class-settings.php:1159
4298
  msgctxt "settings email"
4299
  msgid "Save Changes"
4300
  msgstr "Sauvegarder les changements"
4301
 
4302
+ #: core/class-settings.php:1178
4303
  msgctxt "settings email"
4304
  msgid "Site title"
4305
  msgstr "Titre du site"
4306
 
4307
+ #: core/class-settings.php:1181
4308
  msgctxt "settings email"
4309
  msgid "Site title (with link)"
4310
  msgstr "Titre du site (avec lien)"
4311
 
4312
+ #: core/class-settings.php:1184
4313
  msgctxt "settings email"
4314
  msgid "Site address (with link)"
4315
  msgstr "Adresse du site (avec lien)"
4316
 
4317
+ #: core/class-settings.php:1187
4318
  msgctxt "settings email"
4319
  msgid "Directory URL (with link)"
4320
  msgstr "Annuaire des URL (avec lien)"
4321
 
4322
+ #: core/class-settings.php:1190
4323
  msgctxt "settings email"
4324
  msgid "Current date"
4325
  msgstr "Date actuelle"
4326
 
4327
+ #: core/class-settings.php:1193
4328
  msgctxt "settings email"
4329
  msgid "Current time"
4330
  msgstr "Heure actuelle"
4331
 
4332
  #: core/compatibility/class-navxt-integration.php:159
 
4333
  msgctxt "navxt"
4334
  msgid "Submit Listing"
4335
  msgstr "Soumettre l'annonce"
4336
 
4337
  #: core/compatibility/class-navxt-integration.php:163
 
4338
  msgctxt "navxt"
4339
  msgid "Edit Listing"
4340
  msgstr "Editer l'annonce"
4363
 
4364
  #: core/compatibility/deprecated.php:214 core/templates-ui.php:183
4365
  msgid "Submit A Listing"
4366
+ msgstr "Soumettre une annonce"
4367
 
4368
  #: core/compatibility/deprecated.php:227 core/templates-ui.php:192
4369
  msgid "View Listings"
4398
  #: core/fieldtypes/class-fieldtypes-select.php:162
4399
  msgctxt "form-fields admin"
4400
  msgid "Field list of options is required."
4401
+ msgstr "La liste des options est obligatoire"
4402
 
4403
  #: core/fieldtypes/class-fieldtypes-date.php:9
 
4404
  msgctxt "form-fields api"
4405
  msgid "Date Field"
4406
+ msgstr "Champ Date"
4407
 
4408
  #: core/fieldtypes/class-fieldtypes-date.php:32
4409
  msgid "%s (ex. %s)"
4410
  msgstr ""
4411
 
4412
  #: core/fieldtypes/class-fieldtypes-date.php:36
 
4413
  msgctxt "form-fields api"
4414
  msgid "Date Format"
4415
+ msgstr "Format de la date"
4416
 
4417
  #: core/fieldtypes/class-fieldtypes-date.php:61
 
4418
  msgctxt "date field"
4419
  msgid "%s must be in the format %s."
4420
+ msgstr "%s doit être au format %s."
4421
 
4422
  #: core/fieldtypes/class-fieldtypes-date.php:64
 
4423
  msgctxt "date field"
4424
  msgid "%s must be a valid date."
4425
+ msgstr "%s doit être une date valide"
4426
 
4427
  #: core/fieldtypes/class-fieldtypes-facebook.php:6
4428
  msgctxt "form-fields api"
4478
  #: core/fieldtypes/class-fieldtypes-select.php:99
4479
  msgctxt "form-fields-api category-select"
4480
  msgid "-- Choose One --"
4481
+ msgstr "-- Choisissez --"
4482
 
4483
  #: core/fieldtypes/class-fieldtypes-select.php:145
4484
  msgctxt "form-fields admin"
4512
  #: core/fieldtypes/class-fieldtypes-textarea.php:44
4513
  msgctxt "form-fields admin"
4514
  msgid "Apply \"the_content\" filter before displaying this field?"
4515
+ msgstr "Appliquer le filtre \"the_content \" avant d'afannoncer ce champ?"
4516
 
4517
  #: core/fieldtypes/class-fieldtypes-textfield.php:5
4518
  msgctxt "form-fields api"
4603
 
4604
  #: core/form-fields.php:309
4605
  msgid "Long Business Description"
4606
+ msgstr "Description complète de l'entreprise"
4607
 
4608
  #: core/form-fields.php:311
4609
  msgid "Business Website Address"
4626
  msgstr "Mots clés de l'entreprise"
4627
 
4628
  #: core/form-fields.php:321
 
4629
  msgid "Business Address"
4630
+ msgstr "Adresse"
4631
 
4632
  #: core/form-fields.php:323
4633
  msgid "ZIP Code"
4634
+ msgstr "Code postal"
4635
 
4636
  #: core/form-fields.php:446
4637
  msgctxt "form-fields-api"
4689
  msgstr "%s doit être un nombre"
4690
 
4691
  #: core/form-fields.php:532
 
4692
  msgctxt "form-fields-api validation"
4693
  msgid "%s must be in the format %s."
4694
+ msgstr "%s doit être au format %s."
4695
 
4696
  #: core/form-fields.php:567
 
4697
  msgctxt "form-fields-api validation"
4698
  msgid "%s must be a valid date."
4699
+ msgstr "%s doit être une date valide"
4700
 
4701
  #: core/form-fields.php:578
4702
  msgctxt "form-fields-api validation"
4725
  msgid "Transaction Key is missing."
4726
  msgstr "La clé de transaction est manquante"
4727
 
4728
+ #: core/gateways-authorize-net.php:92
4729
  msgctxt "authorize-net"
4730
  msgid ""
4731
  "The payment gateway didn't accept your credit card or billing information. "
4734
  "Le support de paiement n'a pas accepté votre carte de crédit ou vos "
4735
  "informations de facturation. La raison est la suivante: \"%s \"."
4736
 
4737
+ #: core/gateways-authorize-net.php:96
4738
  msgctxt "authorize-net"
4739
  msgid ""
4740
  "Your payment is being held for review by the payment gateway. The following "
4743
  "Votre paiement est en attente et examiné par le support de paiement. La "
4744
  "raison est la suivante: \"%s \"."
4745
 
4746
+ #: core/gateways-authorize-net.php:99 core/gateways-authorize-net.php:122
4747
  msgctxt "authorize-net"
4748
  msgid "Payment was rejected. The following reason was given: \"%s\"."
4749
  msgstr "Votre paiement a été rejetée. La raison est la suivante: \"%s \"."
4750
 
4751
+ #: core/gateways-authorize-net.php:116
4752
+ #, fuzzy
4753
+ msgctxt "authorize-net"
4754
+ msgid "Setup fee"
4755
+ msgstr "Installation/Paramétrage des frais"
4756
+
4757
+ #: core/gateways-authorize-net.php:173
4758
  msgctxt "authorize-net"
4759
  msgid "Could not process payment."
4760
  msgstr "Impossible de procéder au paiement."
4777
  #: core/gateways-dummy.php:41
4778
  msgctxt "dummy gateway"
4779
  msgid "Completed"
4780
+ msgstr "Terminé"
4781
 
4782
  #: core/gateways-dummy.php:43
4783
  msgctxt "dummy gateway"
4832
  #: core/gateways-googlewallet.php:105
4833
  msgctxt "google-wallet"
4834
  msgid "Seller ID is missing."
4835
+ msgstr "L'identifiant du vendeur manque."
4836
 
4837
  #: core/gateways-googlewallet.php:108
4838
  msgctxt "google-wallet"
4839
  msgid "Seller Secret is missing."
4840
+ msgstr "Le clé secrète du vendeur manque"
4841
 
4842
  #: core/gateways-googlewallet.php:137
4843
  msgctxt "google-wallet"
4864
  msgstr "La transaction a été annulée à la demande de l'utilisateur."
4865
 
4866
  #: core/helpers/class-fs.php:112
 
4867
  msgctxt "fs helper"
4868
  msgid "Destination dir \"%s\" is not writable."
4869
+ msgstr "Le dossier \"%s\" n'est pas accessible en écriture"
4870
+
4871
+ #: core/helpers/class-themes-updater.php:126
4872
+ msgctxt "themes"
4873
+ msgid "Updating theme..."
4874
+ msgstr ""
4875
+
4876
+ #: core/helpers/class-themes-updater.php:127
4877
+ #, fuzzy
4878
+ msgctxt "themes"
4879
+ msgid "Theme updated."
4880
+ msgstr "Frais mis à jour"
4881
+
4882
+ #: core/helpers/class-themes-updater.php:129
4883
+ msgctxt "themes"
4884
+ msgid "New version available (<b>%s</b>). <a>Update now.</a>"
4885
+ msgstr ""
4886
+
4887
+ #: core/helpers/class-themes-updater.php:157
4888
+ #, fuzzy
4889
+ msgctxt "themes"
4890
+ msgid "Could not update theme: %s"
4891
+ msgstr "Impossible de désactiver la licence: %s."
4892
+
4893
+ #: core/helpers/class-themes-updater.php:163
4894
+ #, fuzzy
4895
+ msgctxt "themes"
4896
+ msgid "Theme was updated sucessfully."
4897
+ msgstr "Le thème a été supprimé"
4898
 
4899
  #: core/installer.php:38
4900
  msgctxt "default category name"
4901
  msgid "General"
4902
  msgstr "Général"
4903
 
4904
+ #: core/installer.php:464
4905
  msgctxt "installer"
4906
  msgid ""
4907
  "<b>Business Directory Plugin - Regions Module</b> was disabled because it is "
4912
  "est incompatible avec la version actuelle du plugin. Veuillez mettre à jour "
4913
  "le module."
4914
 
4915
+ #: core/installer.php:530
4916
  msgctxt "installer"
4917
  msgid "Cleaning up listing fees information... %d/%d"
4918
  msgstr "Nettoyage des informations sur les droits d'inscription ... %d/%d"
4919
 
4920
+ #: core/installer.php:580
4921
  msgctxt "installer"
4922
  msgid "Migrating previous transactions to new Payments API... %d/%d"
4923
  msgstr ""
4924
  "Migration des transactions antérieures vers de nouveaux paiements API ... %d/"
4925
  "%d"
4926
 
4927
+ #: core/installer.php:609
4928
  msgctxt "installer"
4929
  msgid "Initial listing payment (BD < 3.4)"
4930
  msgstr "Annonce de paiement initial (BD<3.4)"
4931
 
4932
+ #: core/installer.php:620
4933
  msgctxt "installer"
4934
  msgid "Listing edit payment (BD < 3.4)"
4935
  msgstr "Edition de l'annonce de paiement (BD<3.4)"
4936
 
4937
+ #: core/installer.php:641
4938
  msgctxt "installer"
4939
  msgid "Renewal fee \"%s\" for category \"%s\""
4940
  msgstr "Renouvellement des frais \"%s\" pour la catégorie \"%s\""
4941
 
4942
+ #: core/installer.php:660
4943
  msgctxt "installer"
4944
  msgid "Listing upgrade to featured"
4945
  msgstr "Mise à jour des annonces vers prioritaire"
4946
 
4947
+ #: core/installer.php:902
4948
  msgid "Business Directory - Manual Upgrade Required"
4949
  msgstr "Business Directory - Mise à jour manuelle requise"
4950
 
4951
+ #: core/installer.php:904
4952
  msgid ""
4953
  "Business Directory features are currently disabled because the plugin needs "
4954
  "to perform a manual upgrade before continuing."
4957
  "désactivés car le plugin a besoin d'effectuer une mise à jour manuelle avant "
4958
  "de poursuivre."
4959
 
4960
+ #: core/installer.php:906
4961
  msgid "Perform Manual Upgrade"
4962
  msgstr "Effectuer la mise à jour manuelle"
4963
 
4964
+ #: core/installer.php:922 core/installer.php:923 core/installer.php:934
4965
  msgid "Business Directory - Manual Upgrade"
4966
  msgstr "Business Directory - Mise à jour manuelle"
4967
 
4968
+ #: core/installer.php:938
4969
  msgid ""
4970
  "Business Directory features are currently disabled because the plugin needs "
4971
  "to perform a manual upgrade before it can be used."
4974
  "désactivées car le plugin a besoin d'effectuer une mise à jour manuelle afin "
4975
  "d'être pleinement utilisable."
4976
 
4977
+ #: core/installer.php:940
4978
  msgid "Click \"Start Upgrade\" and wait until the process finishes."
4979
  msgstr ""
4980
  "Cliquez sur \"Commencer la mise à jour\" et patientez jusqu'à la fin du "
4981
  "processus."
4982
 
4983
+ #: core/installer.php:943
4984
  msgctxt "manual-upgrade"
4985
  msgid "Start Upgrade"
4986
  msgstr "Commencer la mise à jour"
4987
 
4988
+ #: core/installer.php:945
4989
  msgctxt "manual-upgrade"
4990
  msgid "Pause Upgrade"
4991
  msgstr "Mettre en pause la mise à jour"
4992
 
4993
+ #: core/installer.php:951
4994
  msgctxt "manual-upgrade"
4995
  msgid ""
4996
  "The upgrade was sucessfully performed. Business Directory Plugin is now "
4999
  "La mise à jour s'est bien effectué. Le plugin Business Directory est "
5000
  "maintenant disponible et fonctionnel."
5001
 
5002
+ #: core/installer.php:954
5003
  msgctxt "manual-upgrade"
5004
  msgid "Go to \"Directory Admin\""
5005
  msgstr "Aller à \"Administrateur de l'annuaire\""
5024
  msgid "No license key provided"
5025
  msgstr "Aucune clé de licence fournie"
5026
 
 
 
 
 
 
 
 
 
 
 
5027
  #: core/licensing.php:169
5028
  msgctxt "licensing"
5029
  msgid "Deactivation failed"
5071
  msgid "Renew License Key"
5072
  msgstr "Renouveller la clé de licence"
5073
 
 
 
 
 
 
 
 
 
 
 
5074
  #: core/licensing.php:348
5075
  msgctxt "licensing"
5076
  msgid "Could not deactivate license: %s."
5086
  msgid "Free Listing"
5087
  msgstr "Annonce gratuite"
5088
 
5089
+ #: core/payment.php:144
5090
  msgctxt "fees-api"
5091
  msgid "Fee label is required."
5092
  msgstr "Une étiquette de frais est requise."
5093
 
5094
+ #: core/payment.php:147
5095
  msgctxt "fees-api"
5096
  msgid "Fee amount must be a non-negative decimal number."
5097
  msgstr "Le montant des frais doit être un nombre décimal non-négatif."
5098
 
5099
+ #: core/payment.php:150 core/payment.php:153
5100
  msgctxt "fees-api"
5101
  msgid "Fee must apply to at least one category."
5102
  msgstr "Fee doit être appliqué à au moins une catégorie."
5103
 
5104
+ #: core/payment.php:156
5105
  msgctxt "fees-api"
5106
  msgid "Fee allowed images must be a non-negative integer."
5107
  msgstr "Les frais autorisé doivent être un entier non négatif."
5108
 
5109
+ #: core/payment.php:159
5110
  msgctxt "fees-api"
5111
  msgid "Fee listing run must be a non-negative integer."
5112
  msgstr "Les frais d'annonce doivent être un entier non-négatif."
5113
 
5114
+ #: core/payment.php:164
5115
  msgctxt "fees-api"
5116
  msgid "Fee listing duration must be a number less than 10 years (3650 days)."
5117
  msgstr ""
5118
  "La durée des frais d'annonce doit être un nombre inférieur à 10 ans (3650 "
5119
  "jours)."
5120
 
5121
+ #: core/payment.php:339
5122
  msgctxt "payments-api"
5123
  msgid ""
5124
  "You are offering featured listings but have payments turned off. Go to <a "
5131
  "paramètres de paiement. Jusqu'à ce que vous effectuiez les modifications "
5132
  "voulues, l'option <i> Mise à niveau en vedette </ i>sera désactivée."
5133
 
5134
+ #: core/payment.php:357
5135
  msgctxt "payments-api"
5136
  msgid ""
5137
  "The <b>%s</b> gateway is active but not properly configured. The gateway "
5143
  "soient fixés: <b>%s </b>. <br/> Vérifiez les <a href=\"%s\"> paramètres de "
5144
  "paiement </a>."
5145
 
5146
+ #: core/payment.php:367
5147
  msgctxt "admin"
5148
  msgid ""
5149
  "You have payments turned on but no gateway is active and properly "
5156
  "Paiement </a> pour modifier les paramètres de paiement. Jusqu'à ce que vous "
5157
  "modifiez cela, le répertoire fonctionnera en <i> Mode libre </ i>."
5158
 
5159
+ #: core/payment.php:371
5160
  msgid ""
5161
  "BD detected PayFast and another gateway were enabled. This setup is not "
5162
  "recommended due to PayFast supporting only ZAR and the other gateways not "
5166
  "Cette configuration est déconseillée étant donné que PayFast supporte la "
5167
  "devise ZAR (Rand sud-africain) et pas les autres passerelles."
5168
 
5169
+ #: core/payment.php:375
5170
  msgid ""
5171
  "You have recurring renewal of listing fees enabled but the payment gateways "
5172
  "installed don't support recurring payments. Until a gateway that supports "
5179
  "récurrents (comme PayPal) soit activé, les renouvellements automatiques "
5180
  "seront désactivées."
5181
 
5182
+ #: core/payment.php:380
5183
  msgid ""
5184
  "Due to Google Wallet limitations only monthly (30 days) recurring fees are "
5185
  "supported by the gateway. All other fees will be charged as non-recurring."
5188
  "récurrents sont pris en charge par la passerelle. Tous les autres frais "
5189
  "seront facturés comme non récurrents."
5190
 
5191
+ #: core/payment.php:413
5192
  msgctxt "payments-api"
5193
  msgid "Checkout"
5194
  msgstr "Vérification"
5195
 
5196
+ #: core/payment.php:414
5197
  msgctxt "payments-api"
5198
  msgid "Pay %1$s through %2$s"
5199
  msgstr "Payez %1$s par %2$s"
5200
 
5201
+ #: core/payment.php:421
5202
  msgctxt "payments-api"
5203
  msgid "Your transaction has been approved."
5204
  msgstr "Votre traansaction a été aapprouvée."
5205
 
5206
+ #: core/payment.php:602
5207
  msgctxt "payments"
5208
  msgid "Payment Details"
5209
  msgstr "Détails de paiement"
5210
 
5211
+ #: core/payment.php:629
5212
  msgctxt "checkout"
5213
  msgid "Payment Method"
5214
  msgstr "Méthode de paiement"
5215
 
5216
+ #: core/payment.php:658
5217
  msgctxt "payment"
5218
  msgid "Return to Directory."
5219
  msgstr "Retourner vers l'annuaire."
5220
 
5221
+ #: core/payment.php:664
5222
  msgctxt "payments"
5223
  msgid ""
5224
  "Your payment is being processed by the payment gateway. Please reload this "
5229
  "Veuillez recharger cette page dans un instant pour voir si la situation a "
5230
  "changé ou contactez l'administrateur du site."
5231
 
5232
+ #: core/payment.php:667
5233
  msgctxt "payments"
5234
  msgid ""
5235
  "The payment has been rejected by the payment gateway. Please contact the "
5241
  "\"Changer de Paiement \" pour sélectionner une autre méthode de paiement et "
5242
  "essayez à nouveau."
5243
 
5244
+ #: core/payment.php:668
5245
  msgctxt "payments"
5246
  msgid "Change Payment Method"
5247
  msgstr "Changer la méthode de paiement"
5248
 
5249
+ #: core/payment.php:670
5250
  msgctxt "payments"
5251
  msgid ""
5252
  "The payment has been rejected by the payment gateway. Please contact the "
5255
  "Le paiement a été rejeté par la passerelle de paiement. Veuillez contacter "
5256
  "l'administrateur du site si vous pensez qu'il y a une erreur."
5257
 
5258
+ #: core/payment.php:673
5259
  msgctxt "payments"
5260
  msgid "The payment has been canceled at your request."
5261
  msgstr "Le paiement a été annulé à votre demande."
5262
 
5263
+ #: core/payment.php:769
5264
  msgctxt "admin"
5265
  msgid "Pending Abandonment"
5266
  msgstr "Abandon en cours"
5267
 
5268
+ #: core/payment.php:774
5269
  msgctxt "admin"
5270
  msgid "Abandoned"
5271
  msgstr "Abandonné"
5272
 
5273
  #: core/templates/listing-sticky-tag.tpl.php:3
5274
+ #: core/templates/listing-sticky-tag.tpl.php:4 core/templates-listings.php:60
5275
  msgctxt "templates"
5276
  msgid "Featured Listing"
5277
  msgstr "Annonce sélectionnée"
5278
 
5279
  #: core/templates/listings.tpl.php:6
5280
+ #: templates/businessdirectory-listings.tpl.php:27 templates/search.tpl.php:21
5281
  msgctxt "templates"
5282
  msgid "No listings found."
5283
  msgstr "Aucune annonce trouvée."
5319
  msgid "(Reset)"
5320
  msgstr "(Réinitialiser)"
5321
 
5322
+ #: core/themes.php:587
 
5323
  msgctxt "themes"
5324
  msgid "ZIP file is not a valid BD theme file."
5325
+ msgstr "Le fichier ZIP n'est pas un fichier de thème valide"
5326
 
5327
+ #: core/themes.php:593
 
5328
  msgctxt "themes"
5329
  msgid "Could not create themes directory."
5330
+ msgstr "Impossible de créer le répertoire de thèmes"
5331
 
5332
+ #: core/themes.php:601
 
5333
  msgctxt "themes"
5334
  msgid "Could not remove previous theme directory \"%s\"."
5335
+ msgstr "Impossible de supprimer le dossier de thème précédent \"%s\"."
5336
 
5337
+ #: core/themes.php:607
 
5338
  msgctxt "themes"
5339
  msgid "Could not move new theme into theme directory."
5340
+ msgstr "Impossible de déplacer le nouveau thème dans le dossier à thèmes"
5341
 
5342
+ #: core/utils.php:106
5343
  msgctxt "utils"
5344
  msgid ""
5345
  "POSTed data exceeds PHP config. maximum. See \"post_max_size\" directive."
5347
  "Les données affichées dépassent les configurations maximale permisent par "
5348
  "PHP. Voir les directive \"post_max_size\"."
5349
 
5350
+ #: core/utils.php:159
5351
  msgctxt "utils"
5352
  msgid "File size (%s) exceeds maximum file size of %s"
5353
  msgstr "La taille du fichier (%s) excède la taille maximale permise de %s"
5354
 
5355
+ #: core/utils.php:167
5356
  msgctxt "utils"
5357
  msgid "File size (%s) is inferior to the required minimum file size of %s"
5358
  msgstr ""
5359
+ "La taille du fichier (%s) est inférieur au minimum de taille de fichier "
5360
  "requise de %s"
5361
 
5362
+ #: core/utils.php:176 core/utils.php:183
5363
  msgctxt "utils"
5364
  msgid "File type \"%s\" is not allowed"
5365
  msgstr "Le type de fichier \"%s\" n'est pas autorisé"
5366
 
5367
+ #: core/utils.php:190
5368
  msgctxt "utils"
5369
  msgid "Unkown error while uploading file."
5370
  msgstr "Une erreur inconnu est survenu lors de l'upload du fichier."
5371
 
5372
+ #: core/utils.php:209
5373
  msgctxt "utils"
5374
  msgid "Uploaded file is not an image"
5375
  msgstr "Le fichier transféré n'est pas une image"
5376
 
5377
+ #: core/utils.php:218
5378
  msgctxt "utils"
5379
  msgid "Image width (%s px) is inferior to minimum required width of %s px."
5380
  msgstr ""
5381
+ "La largeur de l'image (%s px) est inférieur à la largeur minimum requise de "
5382
  "%s px."
5383
 
5384
+ #: core/utils.php:224
5385
  msgctxt "utils"
5386
  msgid "Image height (%s px) is inferior to minimum required height of %s px."
5387
  msgstr ""
5388
+ "La hauteur de l'image (%s px) est inférieur à la hauteur minimum requise de "
5389
  "%s px."
5390
 
5391
+ #: core/utils.php:230
5392
  msgctxt "utils"
5393
  msgid "Image width (%s px) is greater than maximum allowed width of %s px."
5394
  msgstr ""
5395
  "La largeur de l'image (%s px) est supérieur à la largeur maximum requise de "
5396
  "%s px."
5397
 
5398
+ #: core/utils.php:236
5399
  msgctxt "utils"
5400
  msgid "Image height (%s px) is greater than maximum required height of %s px."
5401
  msgstr ""
5402
+ "La hauteur de l'image (%s px) est supérieure à la hauteur maximum requise de "
5403
  "%s px."
5404
 
5405
+ #: core/utils.php:250
5406
  msgctxt "utils"
5407
  msgid "Error while uploading file"
5408
  msgstr "Erreur durant l'upload du fichier"
5578
  #: core/view-renew-listing.php:94
5579
  msgctxt "renewal"
5580
  msgid "Current Fee Details"
5581
+ msgstr "Détails des frais sélectionnés"
5582
 
5583
  #: core/view-renew-listing.php:96
5584
  msgctxt "renewal"
5681
  msgid "I agree to the Terms and Conditions"
5682
  msgstr "Je suis en accord avec les Termes et Condiditons"
5683
 
5684
+ #: core/view-submit-listing.php:406
5685
  msgctxt "listings"
5686
  msgid "Fee \"%s\" for category \"%s\"%s"
5687
  msgstr "Frais \"%s\" pour la catégorie \"%s\"%s"
5688
 
5689
+ #: core/view-submit-listing.php:409
5690
  msgctxt "listings"
5691
  msgid "(recurring)"
5692
  msgstr "(récurrant)"
5693
 
5694
+ #: core/view-submit-listing.php:419 core/view-upgrade-listing.php:54
5695
  msgctxt "submit"
5696
  msgid "Listing upgrade to featured"
5697
  msgstr "Mise à jour de l'annonce vers prioritaire"
5698
 
5699
+ #: core/view-submit-listing.php:452
5700
  msgctxt "submit_state"
5701
  msgid "Invalid submit state."
5702
  msgstr "Etat de soumission invalide"
5718
  msgid "Return to listing."
5719
  msgstr "Retourner vers l'annonce."
5720
 
5721
+ #: core/views.php:30
5722
  msgid ""
5723
  "You need to create a page with the [businessdirectory] shortcode for the "
5724
  "Business Directory plugin to work correctly."
5726
  "Vous devez créer une page avec le shortcode [businessdirectory] pour que le "
5727
  "plugin Business Directory fonctionne correctement."
5728
 
5729
+ #: core/views.php:32
5730
  msgid "The directory is temporarily disabled."
5731
  msgstr "L'annuaire est temporairement désactivé."
5732
 
5733
+ #: core/views.php:190
5734
  msgctxt "preview"
5735
  msgid "This is just a preview. The listing has not been published yet."
5736
  msgstr ""
5737
  "Il s'agit seulement d'une pré-visualisation. L'annonce n'a pas encore été "
5738
  "publié."
5739
 
5740
+ #: core/views.php:342
5741
  msgctxt "templates"
5742
  msgid "Listings tagged: %s"
5743
  msgstr "Annonces étiquettées: %s"
5744
 
5745
+ #: core/views.php:459
5746
  msgctxt "templates"
5747
  msgid ""
5748
  "There are no categories assigned to the business directory yet. You need to "
5758
  "Les annonces ne peuvent pas être ajoutés tant que vous n'avez pas attribuer "
5759
  "des catégories à l'annuaire professionnel."
5760
 
5761
+ #: core/views.php:461
5762
  msgctxt "templates"
5763
  msgid "There are currently no listings in the directory."
5764
  msgstr "Il n'y a actuellement aucune annonce dans l'annuaire."
5765
 
5766
+ #: core/views.php:479
5767
  msgctxt "templates"
5768
  msgid ""
5769
  "You have \"Hide Empty Categories\" on and some categories that don't have "
5784
  msgctxt "widgets"
5785
  msgid "Displays a list of the featured/sticky listings in the directory."
5786
  msgstr ""
5787
+ "Afannonce une liste des annonces prioritaires/récurrentes dans l'annuaire."
5788
 
5789
  #: core/widget-featured-listings.php:14
5790
  msgctxt "widgets"
5794
  #: core/widget-featured-listings.php:23
5795
  msgctxt "widgets"
5796
  msgid "Display listings in random order"
5797
+ msgstr "Afannoncer les annonces de façon aléatoire"
5798
 
5799
  #: core/widget-latest-listings.php:11
5800
  msgctxt "widgets"
5805
  msgctxt "widgets"
5806
  msgid "Displays a list of the latest listings in the Business Directory."
5807
  msgstr ""
5808
+ "Afannoncer une liste des dernières annonces dans l'annuaire professionnel."
5809
 
5810
  #: core/widget-latest-listings.php:14
5811
  msgctxt "widgets"
5820
  #: core/widget-random-listings.php:12
5821
  msgctxt "widgets"
5822
  msgid "Displays a list of random listings from the Business Directory."
5823
+ msgstr ""
5824
+ "Afannoncer une liste d'annonces aléatoires de l'annuaire professionnel."
5825
 
5826
  #: core/widget-random-listings.php:14
5827
  msgctxt "widgets"
5837
  msgctxt "widgets"
5838
  msgid "Displays a search form to look for Business Directory listings."
5839
  msgstr ""
5840
+ "Afannoncer un formulaire de recherche pour rechercher les annonces de "
5841
+ "Business Directory."
5842
 
5843
  #: core/widget-search.php:18
5844
  msgctxt "widgets"
5868
  #: core/widget-search.php:50
5869
  msgctxt "widgets"
5870
  msgid "Display the following fields in the form."
5871
+ msgstr "Afannoncer les champs suivant dans le formulaire."
5872
 
5873
  #: core/widget-search.php:102
5874
  msgctxt "widgets"
6054
  #: templates/delete-listing-confirm.tpl.php:24
6055
  msgctxt "delete listing"
6056
  msgid "No. Take me back to the directory."
6057
+ msgstr "Non, redirigez-moi vers l'annuaire."
6058
 
6059
  #: templates/delete-listing-confirm.tpl.php:25
6060
  msgctxt "delete listing"
6174
  msgid "You do not currently have any listings in the directory."
6175
  msgstr "Vous ne possédez pas actuellement aucune annonce dans l'annuaire."
6176
 
6177
+ #: templates/manage-listings.tpl.php:11 templates/search.tpl.php:24
6178
  msgctxt "templates"
6179
  msgid "Return to directory"
6180
  msgstr "Retourner vers l'annuaire"
6391
  #: templates/renew-listing.tpl.php:22
6392
  #: templates/submit-listing/category-selection.tpl.php:8
6393
  #: templates/submit-listing/fee-selection.tpl.php:37
6394
+ #: templates/submit-listing/images.tpl.php:36
6395
  #: templates/submit-listing/listing-fields.tpl.php:34
6396
  msgctxt "templates"
6397
  msgid "Continue"
6407
  msgid "Do not renew my listing"
6408
  msgstr "Ne pas renouveller mon annonce"
6409
 
6410
+ #: templates/search-form.tpl.php:3
 
 
 
 
 
 
 
 
 
 
6411
  msgctxt "templates"
6412
  msgid "Find a listing"
6413
  msgstr "Trouver une annonce"
6414
 
6415
+ #: templates/search-form.tpl.php:14
6416
  msgctxt "search"
6417
  msgid "Clear"
6418
  msgstr "Effacer"
6419
 
6420
+ #: templates/search-form.tpl.php:15 templates/search.tpl.php:6
6421
+ msgctxt "search"
6422
+ msgid "Search"
6423
+ msgstr "Rechercher"
6424
+
6425
+ #: templates/search.tpl.php:14
6426
  msgctxt "search"
6427
  msgid "Search Results"
6428
  msgstr "Résultats de la recherche"
6460
  #: templates/submit-listing/extra-sections.tpl.php:1
6461
  msgctxt "templates"
6462
  msgid "Additional Information"
6463
+ msgstr "Information complémentaire"
6464
 
6465
  #: templates/submit-listing/extra-sections.tpl.php:6
6466
  msgctxt "templates"
6498
  #: templates/submit-listing/images-single.tpl.php:16
6499
  msgctxt "templates"
6500
  msgid "Set this image as the listing thumbnail."
6501
+ msgstr "Utiliser cette image comme miniature"
6502
 
6503
  #: templates/submit-listing/images-upload-form.tpl.php:17
6504
  msgctxt "templates"
6505
  msgid "Upload Images"
6506
+ msgstr "Télécharger les images"
6507
 
6508
  #: templates/submit-listing/images-upload-form.tpl.php:22
6509
  msgctxt "templates"
6510
  msgid "Drop files here"
6511
+ msgstr "Déposer vos fichiers ici"
6512
 
6513
  #: templates/submit-listing/images-upload-form.tpl.php:23
6514
  msgctxt "templates image upload"
6515
  msgid "or"
6516
+ msgstr "ou"
6517
 
6518
  #: templates/submit-listing/images-upload-form.tpl.php:26
6519
  msgctxt "templates"
6523
  #: templates/submit-listing/images-upload-form.tpl.php:32
6524
  msgctxt "templates"
6525
  msgid "Uploading %s file(s)... Please wait."
6526
+ msgstr "Téléchargement du/des fichier(s) à %s ... Veuillez patienter."
6527
 
6528
  #: templates/submit-listing/images-upload-form.tpl.php:36
6529
  msgctxt "templates"
6532
  "you are done, or \"Delete Image\" to upload a new image in place of a "
6533
  "current one."
6534
  msgstr ""
6535
+ "Vos emplacements d'image sont actuellement pleins. Vous pouvez cliquer sur "
6536
+ "\"Continuer\" si vous avez fini, ou \"Remplacer l'image\" pour remplacer "
6537
+ "l'actuelle."
6538
 
6539
  #: templates/submit-listing/images-upload-form.tpl.php:44
6540
  msgctxt "templates"
6541
  msgid "Image slots available:"
6542
+ msgstr "Emplacements d'image disponibles:"
6543
 
6544
+ #: templates/submit-listing/images-upload-form.tpl.php:50
6545
+ #, fuzzy
6546
+ msgctxt "templates"
6547
+ msgid "Min. file size:"
6548
+ msgstr "Taille maximale des fichiers:"
6549
+
6550
+ #: templates/submit-listing/images-upload-form.tpl.php:56
6551
  msgctxt "templates"
6552
  msgid "Max. file size:"
6553
  msgstr "Taille maximale des fichiers:"
6563
  "There is an image pending upload. Would you still like to continue without "
6564
  "saving the image?"
6565
  msgstr ""
6566
+ "Il y a une image en attente de téléchargement. Continuer sans sauvegarder "
6567
+ "l'image?"
6568
 
6569
  #: templates/submit-listing/images.tpl.php:13
6570
  msgctxt "templates"
6571
  msgid "There are no images currently attached to your listing."
6572
+ msgstr "Il n'y a aucune image actuellement rattachée à votre annonce."
6573
 
6574
  #: templates/submit-listing/listing-fields.tpl.php:1
6575
  msgctxt "templates"
6582
  msgstr "* indique que le champ est requis."
6583
 
6584
  #: themes/default/templates/excerpt_content.tpl.php:13
 
6585
  msgctxt "themes/default"
6586
  msgid "Address"
6587
+ msgstr "Adresse"
6588
 
6589
  #: vendors/edd/EDD_SL_Plugin_Updater.php:178
6590
  msgid ""
6601
 
6602
  #: vendors/edd/EDD_SL_Plugin_Updater.php:325
6603
  msgid "You do not have permission to install plugin updates"
6604
+ msgstr "Vous n'avez pas la permission d'installer des mises à jour du plugin"
6605
 
6606
  #: vendors/edd/EDD_SL_Plugin_Updater.php:325
6607
  msgid "Error"
6608
+ msgstr "Erreur"
6609
 
6610
  #. Plugin URI of the plugin/theme
6611
  msgid "http://www.businessdirectoryplugin.com"
6627
  msgid "http://businessdirectoryplugin.com"
6628
  msgstr "http://businessdirectoryplugin.com"
6629
 
6630
+ #~ msgctxt "themes admin"
6631
+ #~ msgid "Delete theme"
6632
+ #~ msgstr "Effacer les thème"
6633
+
6634
+ #~ msgctxt "themes admin"
6635
+ #~ msgid "Delete Theme"
6636
+ #~ msgstr "Effacer le thème"
6637
+
6638
+ #~ msgctxt "admin settings"
6639
+ #~ msgid "Display search form when displaying search results?"
6640
+ #~ msgstr ""
6641
+ #~ "Afannoncer un formulaire de recherche lors de l'affichage des résultats "
6642
+ #~ "de recherche?"
6643
+
6644
+ #~ msgctxt "search"
6645
+ #~ msgid "Return to Advanced Search"
6646
+ #~ msgstr "Retourner à la recherche avancée"
6647
+
6648
  #~ msgctxt "admin transactions"
6649
  #~ msgid "transaction"
6650
  #~ msgstr "transaction"
languages/WPBDM.pot CHANGED
@@ -1,16 +1,19 @@
1
  # Copyright (C) 2015 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.6.9\n"
6
  "Report-Msgid-Bugs-To: http://wordpress.org/tag/business-directory-plugin\n"
7
- "POT-Creation-Date: 2015-10-13 15:01:21+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: 2015-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:24
16
  msgid "Listing Information"
@@ -106,9 +109,9 @@ msgstr ""
106
  #: admin/class-admin.php:121
107
  msgctxt "drip pointer"
108
  msgid ""
109
- "Find out how to create a compelling, thriving business directory from "
110
- "scratch in this ridiculously actionable (and FREE) 5-part email course. Get "
111
- "a FREE premium module just for signing up."
112
  msgstr ""
113
 
114
  #: admin/class-admin.php:123
@@ -211,169 +214,167 @@ msgctxt "admin menu"
211
  msgid "Uninstall"
212
  msgstr ""
213
 
214
- #: admin/class-admin.php:404
215
- #: admin/templates/listing-metabox-categories.tpl.php:69
216
  msgctxt "admin infometabox"
217
  msgid "never"
218
  msgstr ""
219
 
220
- #: admin/class-admin.php:486
221
  msgctxt "admin"
222
  msgid "The listing has been published."
223
  msgid_plural "The listings have been published."
224
  msgstr[0] ""
225
  msgstr[1] ""
226
 
227
- #: admin/class-admin.php:499
228
  msgctxt "admin"
229
  msgid "The listing status has been set as paid."
230
  msgid_plural "The listings status has been set as paid."
231
  msgstr[0] ""
232
  msgstr[1] ""
233
 
234
- #: admin/class-admin.php:511
235
  msgctxt "admin"
236
  msgid "The listing has been modified."
237
  msgid_plural "The listings have been modified."
238
  msgstr[0] ""
239
  msgstr[1] ""
240
 
241
- #: admin/class-admin.php:524
242
  msgctxt "admin"
243
  msgid "The listing has been upgraded."
244
  msgid_plural "The listings have been upgraded."
245
  msgstr[0] ""
246
  msgstr[1] ""
247
 
248
- #: admin/class-admin.php:536
249
  msgctxt "admin"
250
  msgid "The listing has been downgraded."
251
  msgid_plural "The listings have been downgraded."
252
  msgstr[0] ""
253
  msgstr[1] ""
254
 
255
- #: admin/class-admin.php:548
256
  msgctxt "admin"
257
  msgid "The transaction has been approved."
258
  msgstr ""
259
 
260
- #: admin/class-admin.php:556
261
  msgctxt "admin"
262
  msgid "The transaction has been rejected."
263
  msgstr ""
264
 
265
- #: admin/class-admin.php:562
266
  msgctxt "admin"
267
  msgid "The fee was successfully assigned."
268
  msgstr ""
269
 
270
- #: admin/class-admin.php:571
271
  msgctxt "admin"
272
  msgid "Listing was renewed."
273
  msgid_plural "Listings were renewed."
274
  msgstr[0] ""
275
  msgstr[1] ""
276
 
277
- #: admin/class-admin.php:578
278
  msgctxt "admin"
279
  msgid "Renewal email sent."
280
  msgstr ""
281
 
282
- #: admin/class-admin.php:612
283
  msgctxt "admin category id"
284
  msgid "ID"
285
  msgstr ""
286
 
287
- #: admin/class-admin.php:614 admin/class-admin.php:620
288
  msgctxt "admin"
289
  msgid "Listing Count"
290
  msgstr ""
291
 
292
- #: admin/class-admin.php:716
293
  msgctxt "admin"
294
  msgid ""
295
- "<b>Business Directory Plugin</b> requires fields with the following "
296
- "associations in order to work correctly: <b>%s</b>."
297
  msgstr ""
298
 
299
- #: admin/class-admin.php:718
300
  msgctxt "admin"
301
  msgid ""
302
- "<b>Business Directory Plugin</b> requires a field with a <b>%s</b> "
303
- "association in order to work correctly."
304
  msgstr ""
305
 
306
- #: admin/class-admin.php:722
307
  msgctxt "admin"
308
  msgid ""
309
- "You can create these custom fields by yourself inside \"Manage Form Fields\" "
310
- "or let Business Directory do this for you automatically."
311
  msgstr ""
312
 
313
- #: admin/class-admin.php:726
314
  msgctxt "admin"
315
  msgid "Go to \"Manage Form Fields\""
316
  msgstr ""
317
 
318
- #: admin/class-admin.php:729
319
  msgctxt "admin"
320
  msgid "Create these required fields for me"
321
  msgstr ""
322
 
323
- #: admin/class-admin.php:738
324
  msgctxt "admin"
325
  msgid ""
326
- "<b>Business Directory Plugin</b> requires a page with the "
327
- "<tt>[businessdirectory]</tt> shortcode to function properly."
328
  msgstr ""
329
 
330
- #: admin/class-admin.php:740
331
  msgctxt "admin"
332
  msgid ""
333
- "You can create this page by yourself or let Business Directory do this for "
334
- "you automatically."
335
  msgstr ""
336
 
337
- #: admin/class-admin.php:744
338
  msgctxt "admin"
339
  msgid "Create required pages for me"
340
  msgstr ""
341
 
342
- #: admin/class-admin.php:784
343
  msgctxt "admin compat"
344
  msgid "Installed: %s"
345
  msgstr ""
346
 
347
- #: admin/class-admin.php:784
348
  msgctxt "admin compat"
349
  msgid "N/A"
350
  msgstr ""
351
 
352
- #: admin/class-admin.php:787
353
  msgctxt "admin compat"
354
  msgid "Required: %s"
355
  msgstr ""
356
 
357
- #: admin/class-admin.php:800
358
  msgctxt "admin compat"
359
  msgid ""
360
- "Business Directory has detected some incompatible premium module versions "
361
- "installed."
362
  msgstr ""
363
 
364
- #: admin/class-admin.php:802
365
  msgctxt "admin compat"
366
  msgid ""
367
- "Please upgrade to the required versions indicated below to make sure "
368
- "everything functions properly."
369
  msgstr ""
370
 
371
- #: admin/class-admin.php:817
372
  msgctxt "admin"
373
  msgid ""
374
- "We noticed you want your Business Directory users to register before posting "
375
- "listings, but Registration for your site is currently disabled. Go [here] "
376
- "and check \"Anyone can register\" to make sure BD works properly."
377
  msgstr ""
378
 
379
  #: admin/class-listing-fields-metabox.php:21
@@ -381,8 +382,7 @@ msgctxt "admin"
381
  msgid "Listing Fields"
382
  msgstr ""
383
 
384
- #: admin/class-listing-fields-metabox.php:40
385
- #: templates/submit-listing/images.tpl.php:12
386
  msgctxt "templates"
387
  msgid "Current Images"
388
  msgstr ""
@@ -392,68 +392,91 @@ msgctxt "templates"
392
  msgid "There are no images currently attached to the listing."
393
  msgstr ""
394
 
395
- #: admin/class-themes-admin.php:27 admin/class-themes-admin.php:28
396
  msgctxt "themes"
397
  msgid "Directory Themes"
398
  msgstr ""
399
 
400
- #: admin/class-themes-admin.php:80
 
 
 
 
 
401
  msgctxt "themes"
402
  msgid "Could not change the active theme to \"%s\"."
403
  msgstr ""
404
 
405
- #: admin/class-themes-admin.php:124
406
  msgctxt "themes"
407
  msgid "Active theme changed to \"%s\"."
408
  msgstr ""
409
 
410
- #: admin/class-themes-admin.php:127
411
  msgctxt "themes"
412
- msgid ""
413
- "For better results, \"%s\" theme suggests the following form fields to be "
414
- "created."
415
  msgstr ""
416
 
417
- #: admin/class-themes-admin.php:134
418
  msgctxt "themes"
419
  msgid "Dismiss this warning"
420
  msgstr ""
421
 
422
- #: admin/class-themes-admin.php:137
423
  msgctxt "themes"
424
  msgid "Create suggested fields"
425
  msgstr ""
426
 
427
- #: admin/class-themes-admin.php:144
428
  msgctxt "themes"
429
  msgid "Suggested fields created successfully."
430
  msgstr ""
431
 
432
- #: admin/class-themes-admin.php:147
433
  msgctxt "themes"
434
  msgid "Theme installed successfully."
435
  msgstr ""
436
 
437
- #: admin/class-themes-admin.php:150
438
  msgctxt "themes"
439
  msgid "Theme was deleted sucessfully."
440
  msgstr ""
441
 
442
- #: admin/class-themes-admin.php:153
443
  msgctxt "themes"
444
  msgid "Could not delete theme directory. Check permissions."
445
  msgstr ""
446
 
447
- #: admin/class-themes-admin.php:179
448
  msgctxt "themes"
449
  msgid "Please upload a valid theme file."
450
  msgstr ""
451
 
452
- #: admin/class-themes-admin.php:186
453
  msgctxt "themes"
454
  msgid "Could not move \"%s\" to a temporary directory."
455
  msgstr ""
456
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
457
  #: admin/csv-export.php:136
458
  msgctxt "admin csv-export"
459
  msgid "Could not create a temporary directory for handling this CSV export."
@@ -491,9 +514,9 @@ msgstr ""
491
 
492
  #: admin/csv-import.php:241
493
  msgid ""
494
- "A valid temporary directory with write permissions is required for CSV "
495
- "imports to function properly. Your server is using \"%s\" but this path does "
496
- "not seem to be writable. Please consult with your host."
497
  msgstr ""
498
 
499
  #: admin/csv-import.php:275
@@ -514,8 +537,8 @@ msgstr ""
514
  #: admin/csv-import.php:315
515
  msgctxt "admin csv-import"
516
  msgid ""
517
- "An error was detected while validating the CSV file for import. Please fix "
518
- "this before proceeding."
519
  msgstr ""
520
 
521
  #: admin/csv-import.php:324
@@ -710,9 +733,9 @@ msgstr ""
710
  #: admin/form-fields.php:174
711
  msgctxt "formfields-preview"
712
  msgid ""
713
- "This is a preview of the form as it will appear during \"Submit a Listing\". "
714
- "The users may not see all fields from \"Manage Form Fields\" because you "
715
- "have \"Featured Levels\" active and this is showing the base level."
716
  msgstr ""
717
 
718
  #: admin/form-fields.php:180
@@ -733,10 +756,10 @@ msgstr ""
733
  #: admin/form-fields.php:228
734
  msgctxt "form-fields admin"
735
  msgid ""
736
- "<b>Important</b>: Since the \"<a>Display email address fields publicly?</a>"
737
- "\" setting is disabled, display settings below will not be honored and this "
738
- "field will not be displayed on the frontend. If you want e-mail addresses to "
739
- "show on the frontend, you can <a>enable public display of e-mails</a>."
740
  msgstr ""
741
 
742
  #: admin/form-fields.php:262
@@ -891,18 +914,17 @@ msgstr ""
891
  #: admin/templates/csv-export.tpl.php:9
892
  msgctxt "admin csv-export"
893
  msgid ""
894
- "An unknown error occurred during the export. Please make sure you have "
895
- "enough free disk space and memory available to PHP. Check your error logs "
896
- "for details."
897
  msgstr ""
898
 
899
  #: admin/templates/csv-export.tpl.php:18
900
  msgctxt "admin csv-export"
901
  msgid ""
902
- "Please note that the export process is a resource intensive task. If your "
903
- "export does not succeed try disabling other plugins first and/or increasing "
904
- "the values of the 'memory_limit' and 'max_execution_time' directives in your "
905
- "server's php.ini configuration file."
906
  msgstr ""
907
 
908
  #: admin/templates/csv-export.tpl.php:30
@@ -948,8 +970,8 @@ msgstr ""
948
  #: admin/templates/csv-export.tpl.php:56
949
  msgctxt "admin csv-export"
950
  msgid ""
951
- "When checked, instead of just a CSV file a ZIP file will be generated with "
952
- "both a CSV file and listing images."
953
  msgstr ""
954
 
955
  #: admin/templates/csv-export.tpl.php:62
@@ -965,8 +987,8 @@ msgstr ""
965
  #: admin/templates/csv-export.tpl.php:69
966
  msgctxt "admin csv-export"
967
  msgid ""
968
- "If you plan to re-import the listings into BD and don't want new ones "
969
- "created, select this option!"
970
  msgstr ""
971
 
972
  #: admin/templates/csv-export.tpl.php:75
@@ -996,10 +1018,8 @@ msgstr ""
996
 
997
  #: admin/templates/csv-export.tpl.php:94 admin/templates/csv-export.tpl.php:105
998
  #: admin/templates/csv-export.tpl.php:116 admin/templates/csv-import.tpl.php:43
999
- #: admin/templates/csv-import.tpl.php:109
1000
- #: admin/templates/csv-import.tpl.php:120
1001
- #: admin/templates/csv-import.tpl.php:131
1002
- #: admin/templates/csv-import.tpl.php:158
1003
  msgctxt "admin forms"
1004
  msgid "required"
1005
  msgstr ""
@@ -1027,8 +1047,8 @@ msgstr ""
1027
  #: admin/templates/csv-export.tpl.php:135
1028
  msgctxt "admin csv-export"
1029
  msgid ""
1030
- "Your export file is being prepared. Please <u>do not leave</u> this page "
1031
- "until the export finishes."
1032
  msgstr ""
1033
 
1034
  #: admin/templates/csv-export.tpl.php:138
@@ -1053,9 +1073,7 @@ msgstr ""
1053
 
1054
  #: admin/templates/csv-export.tpl.php:153
1055
  msgctxt "admin csv-export"
1056
- msgid ""
1057
- "Your export file has been successfully created and it is now ready for "
1058
- "download."
1059
  msgstr ""
1060
 
1061
  #: admin/templates/csv-export.tpl.php:156
@@ -1066,8 +1084,8 @@ msgstr ""
1066
  #: admin/templates/csv-export.tpl.php:162
1067
  msgctxt "admin csv-export"
1068
  msgid ""
1069
- "Click \"Cleanup\" once the file has been downloaded in order to remove all "
1070
- "temporary data created by Business Directory during the export process."
1071
  msgstr ""
1072
 
1073
  #: admin/templates/csv-export.tpl.php:163
@@ -1098,9 +1116,9 @@ msgstr ""
1098
  #: admin/templates/csv-import-progress.tpl.php:10
1099
  msgctxt "admin csv-import"
1100
  msgid ""
1101
- "A fatal error occurred during the import. If connection wasn't lost during "
1102
- "the import, please make sure that you have enough free disk space and memory "
1103
- "available to PHP. Check your error logs for details."
1104
  msgstr ""
1105
 
1106
  #: admin/templates/csv-import-progress.tpl.php:14
@@ -1236,8 +1254,8 @@ msgstr ""
1236
  #: admin/templates/csv-import.tpl.php:29
1237
  msgctxt "admin csv-import"
1238
  msgid ""
1239
- "We strongly recommend reading our <a>CSV import documentation</a> first to "
1240
- "help you do things in the right order."
1241
  msgstr ""
1242
 
1243
  #: admin/templates/csv-import.tpl.php:38
@@ -1332,8 +1350,7 @@ msgstr ""
1332
 
1333
  #: admin/templates/csv-import.tpl.php:193
1334
  msgctxt "admin csv-import"
1335
- msgid ""
1336
- "This user will be used if the username column is not present in the CSV file."
1337
  msgstr ""
1338
 
1339
  #: admin/templates/csv-import.tpl.php:198
@@ -1359,10 +1376,9 @@ msgstr ""
1359
  #: admin/templates/csv-import.tpl.php:218
1360
  msgctxt "admin csv-import"
1361
  msgid ""
1362
- "The following are the valid header names to be used in the CSV file. "
1363
- "Multivalued fields (such as category or tags) can appear multiple times in "
1364
- "the file. Click <a href=\"%s\">\"See an example CSV import file\"</a> to see "
1365
- "how an import file should look like."
1366
  msgstr ""
1367
 
1368
  #: admin/templates/csv-import.tpl.php:225
@@ -1402,29 +1418,27 @@ msgstr ""
1402
 
1403
  #: admin/templates/csv-import.tpl.php:265
1404
  msgctxt "admin csv-import"
1405
- msgid ""
1406
- "Internal Sequence ID used to allow listing updates from external sources."
1407
  msgstr ""
1408
 
1409
  #: admin/templates/csv-import.tpl.php:272
1410
  msgctxt "admin csv-import"
1411
  msgid ""
1412
- "Date of listing expiration formatted as YYYY-MM-DD. Use this column when "
1413
- "adding or updating listings from external sources."
1414
  msgstr ""
1415
 
1416
  #: admin/templates/debug-info.tpl.php:5
1417
  msgctxt "debug-info"
1418
  msgid ""
1419
- "The following information can help BD developers debug possible problems "
1420
- "with your setup."
1421
  msgstr ""
1422
 
1423
  #: admin/templates/debug-info.tpl.php:6
1424
  msgctxt "debug-info"
1425
  msgid ""
1426
- "The debug information does not contain personal or sensitive information "
1427
- "such as passwords or private keys."
1428
  msgstr ""
1429
 
1430
  #: admin/templates/debug-info.tpl.php:9
@@ -1472,22 +1486,27 @@ msgctxt "fees admin"
1472
  msgid "Number of images allowed"
1473
  msgstr ""
1474
 
1475
- #: admin/templates/fees-addoredit.tpl.php:105
 
 
 
 
 
1476
  msgctxt "fees admin"
1477
  msgid "Apply to category"
1478
  msgstr ""
1479
 
1480
- #: admin/templates/fees-addoredit.tpl.php:109
1481
  msgctxt "fees admin"
1482
  msgid "* All Categories *"
1483
  msgstr ""
1484
 
1485
- #: admin/templates/fees-addoredit.tpl.php:129
1486
  msgctxt "fees admin"
1487
  msgid "Update Fee"
1488
  msgstr ""
1489
 
1490
- #: admin/templates/fees-addoredit.tpl.php:131
1491
  msgctxt "fees admin"
1492
  msgid "Add Fee"
1493
  msgstr ""
@@ -1520,8 +1539,8 @@ msgstr ""
1520
  #: admin/templates/fees.tpl.php:13
1521
  msgctxt "fees admin"
1522
  msgid ""
1523
- "To manage fees you need to go to the <a>Manage Options - Payment</a> page "
1524
- "and check the box next to 'Turn On Payments' under 'Payment Settings'."
1525
  msgstr ""
1526
 
1527
  #: admin/templates/fees.tpl.php:22
@@ -1567,11 +1586,10 @@ msgstr ""
1567
  #: admin/templates/fees.tpl.php:61
1568
  msgctxt "admin templates"
1569
  msgid ""
1570
- "It does not appear you have any of the payment gateway modules enabled. "
1571
- "Either <a>enable the default Authorize.net gateway</a> with your account "
1572
- "info, or purchase a different payment gateway module in order to charge a "
1573
- "fee for listings. To purchase additional payment gateways use the buttons "
1574
- "below or visit %s."
1575
  msgstr ""
1576
 
1577
  #: admin/templates/fees.tpl.php:77
@@ -1581,9 +1599,7 @@ msgstr ""
1581
 
1582
  #: admin/templates/fees.tpl.php:82
1583
  msgctxt "admin templates"
1584
- msgid ""
1585
- "You can buy the <a>%s</a> to add <a>%s</a> as a payment option for your "
1586
- "users."
1587
  msgstr ""
1588
 
1589
  #: admin/templates/form-fields-addoredit.tpl.php:1
@@ -1631,67 +1647,67 @@ msgctxt "form-fields admin"
1631
  msgid "No validation"
1632
  msgstr ""
1633
 
1634
- #: admin/templates/form-fields-addoredit.tpl.php:112
1635
  msgctxt "form-fields admin"
1636
  msgid "Is field required?"
1637
  msgstr ""
1638
 
1639
- #: admin/templates/form-fields-addoredit.tpl.php:118
1640
  msgctxt "form-fields admin"
1641
  msgid "This field is required."
1642
  msgstr ""
1643
 
1644
- #: admin/templates/form-fields-addoredit.tpl.php:126
1645
  msgctxt "form-fields admin"
1646
  msgid "Field display options"
1647
  msgstr ""
1648
 
1649
- #: admin/templates/form-fields-addoredit.tpl.php:130
1650
  msgctxt "form-fields admin"
1651
  msgid "Show this value in excerpt view?"
1652
  msgstr ""
1653
 
1654
- #: admin/templates/form-fields-addoredit.tpl.php:136
1655
  msgctxt "form-fields admin"
1656
  msgid "Display this value in post excerpt view."
1657
  msgstr ""
1658
 
1659
- #: admin/templates/form-fields-addoredit.tpl.php:142
1660
  msgctxt "form-fields admin"
1661
  msgid "Show this value in listing view?"
1662
  msgstr ""
1663
 
1664
- #: admin/templates/form-fields-addoredit.tpl.php:148
1665
  msgctxt "form-fields admin"
1666
  msgid "Display this value in the listing view."
1667
  msgstr ""
1668
 
1669
- #: admin/templates/form-fields-addoredit.tpl.php:154
1670
  msgctxt "form-fields admin"
1671
  msgid "Include this field in the search form?"
1672
  msgstr ""
1673
 
1674
- #: admin/templates/form-fields-addoredit.tpl.php:160
1675
  msgctxt "form-fields admin"
1676
  msgid "Include this field in the search form."
1677
  msgstr ""
1678
 
1679
- #: admin/templates/form-fields-addoredit.tpl.php:166
1680
  msgctxt "form-fields admin"
1681
  msgid "Hide this field's label?"
1682
  msgstr ""
1683
 
1684
- #: admin/templates/form-fields-addoredit.tpl.php:172
1685
  msgctxt "form-fields admin"
1686
  msgid "Hide this field's label when displaying it."
1687
  msgstr ""
1688
 
1689
- #: admin/templates/form-fields-addoredit.tpl.php:179
1690
  msgctxt "form-fields admin"
1691
  msgid "Update Field"
1692
  msgstr ""
1693
 
1694
- #: admin/templates/form-fields-addoredit.tpl.php:181
1695
  msgctxt "form-fields admin"
1696
  msgid "Add Field"
1697
  msgstr ""
@@ -1749,9 +1765,8 @@ msgstr ""
1749
  #: admin/templates/form-fields.tpl.php:13
1750
  msgctxt "form-fields admin"
1751
  msgid ""
1752
- "Here, you can create new fields for your listings, edit or delete existing "
1753
- "ones, change the order and visibility of the fields as well as configure "
1754
- "special options for them."
1755
  msgstr ""
1756
 
1757
  #: admin/templates/form-fields.tpl.php:19
@@ -1759,7 +1774,6 @@ msgctxt "form-fields admin"
1759
  msgid "Please see the <a>Form Fields documentation</a> for more details."
1760
  msgstr ""
1761
 
1762
- #. #-#-#-#-# WPBDM.pot (Business Directory Plugin 3.6.9) #-#-#-#-#
1763
  #. Plugin Name of the plugin/theme
1764
  #: admin/templates/header.tpl.php:4
1765
  msgid "Business Directory Plugin"
@@ -1773,29 +1787,29 @@ msgstr ""
1773
  #: admin/templates/home.tpl.php:5
1774
  msgctxt "admin home"
1775
  msgid ""
1776
- "Thanks for choosing us. There's a lot you probably want to get done, so "
1777
- "let's jump right in!"
1778
  msgstr ""
1779
 
1780
  #: admin/templates/home.tpl.php:11
1781
  msgctxt "admin home"
1782
  msgid ""
1783
- "Our complete documentation is <a>here</a> which we encourage you to use "
1784
- "while setting things up."
1785
  msgstr ""
1786
 
1787
  #: admin/templates/home.tpl.php:14
1788
  msgctxt "admin home"
1789
  msgid ""
1790
- "We have some quick-start scenarios that you will find useful regarding setup "
1791
- "and configuration <a>here</a>."
1792
  msgstr ""
1793
 
1794
  #: admin/templates/home.tpl.php:18
1795
  msgctxt "admin home"
1796
  msgid ""
1797
- "If you have questions, please post a comment on <a>support forum</a> and "
1798
- "we'll answer it within 24 hours most days."
1799
  msgstr ""
1800
 
1801
  #: admin/templates/home.tpl.php:25
@@ -1979,9 +1993,7 @@ msgstr ""
1979
 
1980
  #: admin/templates/listing-metabox-fees.tpl.php:12
1981
  msgctxt "admin infometabox"
1982
- msgid ""
1983
- "Note: In Free mode, the fee plans will always be set to \"Free Listing\" "
1984
- "below."
1985
  msgstr ""
1986
 
1987
  #: admin/templates/listing-metabox-fees.tpl.php:22
@@ -2089,8 +2101,8 @@ msgstr ""
2089
 
2090
  #: admin/templates/settings.tpl.php:36
2091
  msgid ""
2092
- "Use this option if you want to go back to the original factory settings for "
2093
- "BD. <b>Please note that all of your existing settings will be lost.</b>"
2094
  msgstr ""
2095
 
2096
  #: admin/templates/sidebar.tpl.php:3
@@ -2219,21 +2231,23 @@ msgid "Enhanced Categories Module"
2219
  msgstr ""
2220
 
2221
  #: admin/templates/themes-delete-confirm.tpl.php:1
 
2222
  msgctxt "themes admin"
2223
- msgid "Delete theme"
2224
  msgstr ""
2225
 
2226
  #: admin/templates/themes-delete-confirm.tpl.php:3
2227
  msgctxt "themes admin"
2228
- msgid "Are you sure you want to delete the theme \"%s\"?"
2229
  msgstr ""
2230
 
2231
  #: admin/templates/themes-delete-confirm.tpl.php:12
2232
  msgctxt "themes admin"
2233
- msgid "Delete Theme"
2234
  msgstr ""
2235
 
2236
- #: admin/templates/themes-install.tpl.php:2 admin/templates/themes.tpl.php:3
 
2237
  msgctxt "themes"
2238
  msgid "Upload Directory Theme"
2239
  msgstr ""
@@ -2253,22 +2267,22 @@ msgctxt "themes"
2253
  msgid "Begin Upload"
2254
  msgstr ""
2255
 
2256
- #: admin/templates/themes.tpl.php:13
2257
  msgctxt "themes"
2258
  msgid "Active:"
2259
  msgstr ""
2260
 
2261
- #: admin/templates/themes.tpl.php:22
2262
  msgctxt "themes"
2263
  msgid "Activate"
2264
  msgstr ""
2265
 
2266
- #: admin/templates/themes.tpl.php:32
2267
  msgctxt "themes"
2268
  msgid "Version:"
2269
  msgstr ""
2270
 
2271
- #: admin/templates/themes.tpl.php:35
2272
  msgctxt "themes"
2273
  msgid "Author:"
2274
  msgstr ""
@@ -2306,9 +2320,8 @@ msgstr ""
2306
  #: admin/templates/uninstall-capture-form.tpl.php:16
2307
  msgctxt "uninstall"
2308
  msgid ""
2309
- "We're sorry to see you leave. Could you take 10 seconds and answer one "
2310
- "question for us to help us make the product better for everyone in the "
2311
- "future?"
2312
  msgstr ""
2313
 
2314
  #: admin/templates/uninstall-capture-form.tpl.php:19
@@ -2354,9 +2367,8 @@ msgstr ""
2354
  #: admin/tracking.php:190
2355
  msgctxt "tracking"
2356
  msgid ""
2357
- "Can Business Directory keep track of your theme, plugins, and other non-"
2358
- "personal, non-identifying information to help us in testing the plugin for "
2359
- "future releases?"
2360
  msgstr ""
2361
 
2362
  #: admin/tracking.php:192
@@ -2374,100 +2386,100 @@ msgctxt "tracking"
2374
  msgid "Allow Tracking"
2375
  msgstr ""
2376
 
2377
- #: business-directory-plugin.php:676
2378
  msgctxt "admin plugins"
2379
  msgid "Settings"
2380
  msgstr ""
2381
 
2382
- #: business-directory-plugin.php:686
2383
  msgctxt "post type general name"
2384
  msgid "Directory"
2385
  msgstr ""
2386
 
2387
- #: business-directory-plugin.php:687
2388
  msgctxt "post type singular name"
2389
  msgid "Directory"
2390
  msgstr ""
2391
 
2392
- #: business-directory-plugin.php:688
2393
  msgctxt "listing"
2394
  msgid "Add New Listing"
2395
  msgstr ""
2396
 
2397
- #: business-directory-plugin.php:689
2398
  msgctxt "post type"
2399
  msgid "Add New Listing"
2400
  msgstr ""
2401
 
2402
- #: business-directory-plugin.php:690 core/compatibility/deprecated.php:255
2403
  msgid "Edit Listing"
2404
  msgstr ""
2405
 
2406
- #: business-directory-plugin.php:691
2407
  msgid "New Listing"
2408
  msgstr ""
2409
 
2410
- #: business-directory-plugin.php:692
2411
  msgid "View Listing"
2412
  msgstr ""
2413
 
2414
- #: business-directory-plugin.php:693
2415
  msgid "Search Listings"
2416
  msgstr ""
2417
 
2418
- #: business-directory-plugin.php:694
2419
  msgid "No listings found"
2420
  msgstr ""
2421
 
2422
- #: business-directory-plugin.php:695
2423
  msgid "No listings found in trash"
2424
  msgstr ""
2425
 
2426
- #: business-directory-plugin.php:717
2427
  msgid "Directory Categories"
2428
  msgstr ""
2429
 
2430
- #: business-directory-plugin.php:830 business-directory-plugin.php:837
2431
  msgctxt "rss feed"
2432
  msgid "%s Feed"
2433
  msgstr ""
2434
 
2435
- #: business-directory-plugin.php:1218
2436
  msgctxt "title"
2437
  msgid "Submit A Listing"
2438
  msgstr ""
2439
 
2440
- #: business-directory-plugin.php:1228
2441
  msgctxt "title"
2442
  msgid "Find a Listing"
2443
  msgstr ""
2444
 
2445
- #: business-directory-plugin.php:1238
2446
  msgctxt "title"
2447
  msgid "View All Listings"
2448
  msgstr ""
2449
 
2450
- #: business-directory-plugin.php:1258
2451
  msgctxt "title"
2452
  msgid "Listings tagged: %s"
2453
  msgstr ""
2454
 
2455
- #: core/class-csv-import.php:369
2456
  msgctxt "admin csv-import"
2457
  msgid "Could not create listing category \"%s\""
2458
  msgstr ""
2459
 
2460
- #: core/class-csv-import.php:513
2461
  msgctxt "admin csv-import"
2462
  msgid "Username \"%s\" does not exist"
2463
  msgstr ""
2464
 
2465
- #: core/class-csv-import.php:545
2466
  msgctxt "admin csv-import"
2467
  msgid "Missing required field: %s"
2468
  msgstr ""
2469
 
2470
- #: core/class-csv-import.php:565
2471
  msgctxt "admin csv-import"
2472
  msgid "Listing category \"%s\" does not exist"
2473
  msgstr ""
@@ -2490,8 +2502,7 @@ msgstr ""
2490
  #: core/class-form-field.php:480
2491
  msgctxt "form-fields-api"
2492
  msgid ""
2493
- "There can only be one field with association \"%s\". Please select another "
2494
- "association."
2495
  msgstr ""
2496
 
2497
  #: core/class-form-field.php:490
@@ -2506,9 +2517,7 @@ msgstr ""
2506
 
2507
  #: core/class-form-field.php:536
2508
  msgctxt "form-fields api"
2509
- msgid ""
2510
- "This form field can't be deleted because it is required for the plugin to "
2511
- "work."
2512
  msgstr ""
2513
 
2514
  #: core/class-form-field.php:548
@@ -2561,7 +2570,7 @@ msgctxt "listings-api"
2561
  msgid "Featured Listing"
2562
  msgstr ""
2563
 
2564
- #: core/class-listing.php:287 core/class-listing.php:313
2565
  msgctxt "listing"
2566
  msgid "(Fee Unavailable)"
2567
  msgstr ""
@@ -2639,8 +2648,8 @@ msgstr ""
2639
  #: core/class-settings.php:29
2640
  msgctxt "admin settings"
2641
  msgid ""
2642
- "Allow BD to anonymously collect information about your installed plugins, "
2643
- "themes and WP version?"
2644
  msgstr ""
2645
 
2646
  #: core/class-settings.php:34
@@ -2665,8 +2674,7 @@ msgstr ""
2665
 
2666
  #: core/class-settings.php:39
2667
  msgctxt "admin settings"
2668
- msgid ""
2669
- "The slug can't be in use by another term. Avoid \"category\", for instance."
2670
  msgstr ""
2671
 
2672
  #: core/class-settings.php:40
@@ -2687,9 +2695,8 @@ msgstr ""
2687
  #: core/class-settings.php:46
2688
  msgctxt "admin settings"
2689
  msgid ""
2690
- "Prior to 3.5.1, we included the ID in the listing URL, like \"/business-"
2691
- "directory/1809/listing-title\". Check this setting to remove the ID for "
2692
- "better SEO."
2693
  msgstr ""
2694
 
2695
  #: core/class-settings.php:50
@@ -2740,8 +2747,8 @@ msgstr ""
2740
  #: core/class-settings.php:79
2741
  msgctxt "admin settings"
2742
  msgid ""
2743
- "Enter text or a URL starting with http. If you use a URL, the Terms and "
2744
- "Conditions text will be replaced by a link to the appropiate page."
2745
  msgstr ""
2746
 
2747
  #: core/class-settings.php:83
@@ -2774,1184 +2781,1210 @@ msgctxt "admin settings"
2774
  msgid "Directory Search"
2775
  msgstr ""
2776
 
2777
- #: core/class-settings.php:95
 
 
 
 
 
 
 
 
 
 
2778
  msgctxt "admin settings"
2779
- msgid "Display search form when displaying search results?"
2780
  msgstr ""
2781
 
2782
- #: core/class-settings.php:102
 
 
 
 
 
2783
  msgctxt "admin settings"
2784
  msgid ""
2785
- "You have selected a textarea field to be included in quick searches. "
2786
- "Searches involving those fields are very expensive and could result in "
2787
- "timeouts and/or general slowness."
2788
  msgstr ""
2789
 
2790
- #: core/class-settings.php:104
2791
  msgctxt "admin settings"
2792
  msgid ""
2793
- "Use Ctrl-Click to include multiple fields in the search. Choosing too many "
2794
- "fields for inclusion into Quick Search can result in very slow search "
2795
- "performance."
2796
  msgstr ""
2797
 
2798
- #: core/class-settings.php:107
2799
  msgctxt "admin settings"
2800
  msgid "Quick search fields"
2801
  msgstr ""
2802
 
2803
- #: core/class-settings.php:115
2804
  msgctxt "admin settings"
2805
  msgid "Enable high performance searches?"
2806
  msgstr ""
2807
 
2808
- #: core/class-settings.php:118
2809
  msgctxt "admin settings"
2810
  msgid ""
2811
- "Enabling this makes BD sacrifice result quality to improve speed. This is "
2812
- "helpful if you're on shared hosting plans, where database performance is an "
2813
- "issue."
2814
  msgstr ""
2815
 
2816
- #: core/class-settings.php:123
2817
  msgctxt "admin settings"
2818
  msgid "Miscellaneous Settings"
2819
  msgstr ""
2820
 
2821
- #: core/class-settings.php:127
2822
  msgctxt "admin settings"
2823
  msgid ""
2824
- "Check this if you are having trouble with BD, particularly when importing or "
2825
- "exporting CSV files."
2826
  msgstr ""
2827
 
2828
- #: core/class-settings.php:130
2829
  msgctxt "admin settings"
2830
  msgid ""
2831
- "If this compatibility mode doesn't solve your issue, you may be experiencing "
2832
- "a more serious conflict. <a>Here is an article</a> about how to test for "
2833
- "theme and plugin conflicts with Business Directory."
2834
  msgstr ""
2835
 
2836
- #: core/class-settings.php:133
2837
  msgctxt "admin settings"
2838
  msgid "Enable AJAX compatibility mode?"
2839
  msgstr ""
2840
 
2841
- #: core/class-settings.php:141 core/class-settings.php:615
2842
  msgctxt "admin settings"
2843
  msgid "Listings"
2844
  msgstr ""
2845
 
2846
- #: core/class-settings.php:142 core/class-settings.php:289
2847
  msgctxt "admin settings"
2848
  msgid "General Settings"
2849
  msgstr ""
2850
 
2851
- #: core/class-settings.php:144
2852
  msgctxt "admin settings"
2853
  msgid "Listings per page"
2854
  msgstr ""
2855
 
2856
- #: core/class-settings.php:145
2857
  msgctxt "admin settings"
2858
- msgid ""
2859
- "Number of listings to show per page. Use a value of \"0\" to show all "
2860
- "listings."
2861
  msgstr ""
2862
 
2863
- #: core/class-settings.php:147
2864
  msgctxt "admin settings"
2865
  msgid "Listing duration for no-fee sites (in days)"
2866
  msgstr ""
2867
 
2868
- #: core/class-settings.php:148
2869
  msgctxt "admin settings"
2870
  msgid ""
2871
- "Use a value of \"0\" to keep a listing alive indefinitely or enter a number "
2872
- "less than 10 years (3650 days)."
2873
  msgstr ""
2874
 
2875
- #: core/class-settings.php:154
2876
  msgctxt "admin settings"
2877
  msgid "Include listing contact form on listing pages?"
2878
  msgstr ""
2879
 
2880
- #: core/class-settings.php:157
2881
  msgctxt "admin settings"
2882
  msgid ""
2883
- "Allows visitors to contact listing authors privately. Authors will receive "
2884
- "the messages via email."
2885
  msgstr ""
2886
 
2887
- #: core/class-settings.php:160
2888
  msgctxt "admin settings"
2889
  msgid "Require login for using the contact form?"
2890
  msgstr ""
2891
 
2892
- #: core/class-settings.php:166
2893
  msgctxt "admin settings"
2894
  msgid "Maximum number of contact form submits per day"
2895
  msgstr ""
2896
 
2897
- #: core/class-settings.php:169
2898
  msgctxt "admin settings"
2899
- msgid ""
2900
- "Use this to prevent spamming of listing owners. 0 means unlimited submits "
2901
- "per day."
2902
  msgstr ""
2903
 
2904
- #: core/class-settings.php:175
2905
  msgctxt "admin settings"
2906
  msgid "Include comment form on listing pages?"
2907
  msgstr ""
2908
 
2909
- #: core/class-settings.php:178
2910
  msgctxt "admin settings"
2911
  msgid ""
2912
- "Allow visitors to discuss listings using the standard WordPress comment "
2913
- "form. Comments are public."
2914
  msgstr ""
2915
 
2916
- #: core/class-settings.php:179
2917
  msgctxt "admin settings"
2918
  msgid "Show listings under categories on main page?"
2919
  msgstr ""
2920
 
2921
- #: core/class-settings.php:180
2922
  msgctxt "admin settings"
2923
  msgid "Status of listings upon uninstalling plugin"
2924
  msgstr ""
2925
 
2926
- #: core/class-settings.php:182
2927
  msgctxt "admin settings"
2928
  msgid "Status of deleted listings"
2929
  msgstr ""
2930
 
2931
- #: core/class-settings.php:185
2932
  msgctxt "admin settings"
2933
  msgid "Listing Renewal"
2934
  msgstr ""
2935
 
2936
- #: core/class-settings.php:186
2937
  msgctxt "admin settings"
2938
  msgid "Turn on listing renewal option?"
2939
  msgstr ""
2940
 
2941
- #: core/class-settings.php:189
2942
  msgctxt "admin settings"
2943
  msgid "Allow recurring renewal payments?"
2944
  msgstr ""
2945
 
2946
- #: core/class-settings.php:192
2947
  msgctxt "admin settings"
2948
  msgid ""
2949
- "Allow users to opt in for automatic renewal of their listings. The fee is "
2950
- "charged at the time the listing expires without user intervention."
2951
  msgstr ""
2952
 
2953
- #: core/class-settings.php:196
2954
  msgctxt "admin settings"
2955
  msgid "Use recurring payments as the default payment method?"
2956
  msgstr ""
2957
 
2958
- #: core/class-settings.php:199
2959
  msgctxt "admin settings"
2960
- msgid ""
2961
- "Enable automatic renewal without having users opt in during the submit "
2962
- "process."
2963
  msgstr ""
2964
 
2965
- #: core/class-settings.php:204
2966
  msgctxt "admin settings"
2967
  msgid "Listing renewal e-mail threshold (in days)"
2968
  msgstr ""
2969
 
2970
- #: core/class-settings.php:207
2971
  msgctxt "admin settings"
2972
- msgid ""
2973
- "Configure how many days before listing expiration is the renewal e-mail sent."
2974
  msgstr ""
2975
 
2976
- #: core/class-settings.php:211
2977
  msgctxt "admin settings"
2978
- msgid ""
2979
- "Send expiration notices including a cancel links to auto-renewed listings?"
2980
  msgstr ""
2981
 
2982
- #: core/class-settings.php:218
2983
  msgctxt "admin settings"
2984
  msgid "Remind listing owners of expired listings (past due)?"
2985
  msgstr ""
2986
 
2987
- #: core/class-settings.php:223
2988
  msgctxt "admin settings"
2989
  msgid "Listing renewal reminder e-mail threshold (in days)"
2990
  msgstr ""
2991
 
2992
- #: core/class-settings.php:226
2993
  msgctxt "admin settings"
2994
  msgid ""
2995
- "Configure how many days after the expiration of a listing an e-mail reminder "
2996
- "should be sent to the owner."
2997
  msgstr ""
2998
 
2999
- #: core/class-settings.php:229
3000
  msgctxt "admin settings"
3001
  msgid "Post/Category Settings"
3002
  msgstr ""
3003
 
3004
- #: core/class-settings.php:230
3005
  msgctxt "admin settings"
3006
  msgid "Default new post status"
3007
  msgstr ""
3008
 
3009
- #: core/class-settings.php:233
3010
  msgctxt "admin settings"
3011
  msgid "Edit post status"
3012
  msgstr ""
3013
 
3014
- #: core/class-settings.php:235
3015
  msgctxt "admin settings"
3016
  msgid "Order categories list by"
3017
  msgstr ""
3018
 
3019
- #: core/class-settings.php:237
3020
  msgctxt "admin settings"
3021
  msgid "Name"
3022
  msgstr ""
3023
 
3024
- #: core/class-settings.php:238
3025
  msgctxt "admin settings"
3026
  msgid "Slug"
3027
  msgstr ""
3028
 
3029
- #: core/class-settings.php:239
3030
  msgctxt "admin settings"
3031
  msgid "Listing Count"
3032
  msgstr ""
3033
 
3034
- #: core/class-settings.php:241
3035
  msgctxt "admin settings"
3036
  msgid "Sort order for categories"
3037
  msgstr ""
3038
 
3039
- #: core/class-settings.php:242 core/class-settings.php:260
3040
  msgctxt "admin settings"
3041
  msgid "Ascending"
3042
  msgstr ""
3043
 
3044
- #: core/class-settings.php:242 core/class-settings.php:260
3045
  msgctxt "admin settings"
3046
  msgid "Descending"
3047
  msgstr ""
3048
 
3049
- #: core/class-settings.php:243
3050
  msgctxt "admin settings"
3051
  msgid "Show category post count?"
3052
  msgstr ""
3053
 
3054
- #: core/class-settings.php:244
3055
  msgctxt "admin settings"
3056
  msgid "Hide empty categories?"
3057
  msgstr ""
3058
 
3059
- #: core/class-settings.php:245
3060
  msgctxt "admin settings"
3061
  msgid "Show only parent categories in category list?"
3062
  msgstr ""
3063
 
3064
- #: core/class-settings.php:247
3065
  msgctxt "admin settings"
3066
  msgid "Listings Sorting"
3067
  msgstr ""
3068
 
3069
- #: core/class-settings.php:248
3070
  msgctxt "admin settings"
3071
  msgid "Order directory listings by"
3072
  msgstr ""
3073
 
3074
- #: core/class-settings.php:250
3075
  msgctxt "admin settings"
3076
  msgid "Title"
3077
  msgstr ""
3078
 
3079
- #: core/class-settings.php:251
3080
  msgctxt "admin settings"
3081
  msgid "Author"
3082
  msgstr ""
3083
 
3084
- #: core/class-settings.php:252
3085
  msgctxt "admin settings"
3086
  msgid "Date posted"
3087
  msgstr ""
3088
 
3089
- #: core/class-settings.php:253
3090
  msgctxt "admin settings"
3091
  msgid "Date last modified"
3092
  msgstr ""
3093
 
3094
- #: core/class-settings.php:254
3095
  msgctxt "admin settings"
3096
  msgid "Random"
3097
  msgstr ""
3098
 
3099
- #: core/class-settings.php:255
3100
  msgctxt "admin settings"
3101
  msgid "Paid first then free. Inside each group by date."
3102
  msgstr ""
3103
 
3104
- #: core/class-settings.php:256
3105
  msgctxt "admin settings"
3106
  msgid "Paid first then free. Inside each group by title."
3107
  msgstr ""
3108
 
3109
- #: core/class-settings.php:258
3110
  msgctxt "admin settings"
3111
  msgid "Sort directory listings by"
3112
  msgstr ""
3113
 
3114
- #: core/class-settings.php:259
3115
  msgctxt "admin settings"
3116
  msgid "Ascending for ascending order A-Z, Descending for descending order Z-A"
3117
  msgstr ""
3118
 
3119
- #: core/class-settings.php:264
3120
  msgctxt "admin settings"
3121
  msgid "Enable sort bar?"
3122
  msgstr ""
3123
 
3124
- #: core/class-settings.php:269
3125
  msgctxt "admin settings"
3126
  msgid "Sortbar Fields"
3127
  msgstr ""
3128
 
3129
- #: core/class-settings.php:278
3130
  msgctxt "admin settings"
3131
  msgid "Featured (Sticky) listing settings"
3132
  msgstr ""
3133
 
3134
- #: core/class-settings.php:279
3135
  msgctxt "admin settings"
3136
  msgid "Offer sticky listings?"
3137
  msgstr ""
3138
 
3139
- #: core/class-settings.php:280
3140
  msgctxt "admin settings"
3141
  msgid "Offer upgrades during submit process?"
3142
  msgstr ""
3143
 
3144
- #: core/class-settings.php:281
3145
  msgctxt "admin settings"
3146
  msgid "Sticky listing price"
3147
  msgstr ""
3148
 
3149
- #: core/class-settings.php:282
3150
  msgctxt "admin settings"
3151
  msgid "Sticky listing page description text"
3152
  msgstr ""
3153
 
3154
- #: core/class-settings.php:283
3155
  msgctxt "admin settings"
3156
  msgid ""
3157
- "You can upgrade your listing to featured status. Featured listings will "
3158
- "always appear on top of regular listings."
3159
  msgstr ""
3160
 
3161
- #: core/class-settings.php:288
3162
  msgctxt "admin settings"
3163
  msgid "E-Mail"
3164
  msgstr ""
3165
 
3166
- #: core/class-settings.php:292
3167
  msgctxt "admin settings"
3168
  msgid "Display email address fields publicly?"
3169
  msgstr ""
3170
 
3171
- #: core/class-settings.php:295
3172
  msgctxt "admin settings"
3173
  msgid ""
3174
- "Shows the email address of the listing owner to all web users. NOT "
3175
- "RECOMMENDED as this increases spam to the address and allows spam bots to "
3176
- "harvest it for future use."
3177
  msgstr ""
3178
 
3179
- #: core/class-settings.php:298
3180
  msgctxt "admin settings"
3181
  msgid "How to determine the listing's email address?"
3182
  msgstr ""
3183
 
3184
- #: core/class-settings.php:301
3185
  msgctxt "admin settings"
3186
  msgid ""
3187
- "This affects emails sent to listing owners via contact forms or when their "
3188
- "listings expire."
3189
  msgstr ""
3190
 
3191
- #: core/class-settings.php:308
3192
  msgctxt "admin settings"
3193
  msgid "E-Mail Notifications"
3194
  msgstr ""
3195
 
3196
- #: core/class-settings.php:311
3197
  msgctxt "admin settings"
3198
  msgid "Notify admin via e-mail when..."
3199
  msgstr ""
3200
 
3201
- #: core/class-settings.php:315
3202
  msgctxt "admin settings"
3203
  msgid "A new listing is submitted."
3204
  msgstr ""
3205
 
3206
- #: core/class-settings.php:316
3207
  msgctxt "admin settings"
3208
  msgid "A listing is edited."
3209
  msgstr ""
3210
 
3211
- #: core/class-settings.php:317
3212
  msgctxt "admin settings"
3213
  msgid "A listing expires."
3214
  msgstr ""
3215
 
3216
- #: core/class-settings.php:318
3217
  msgctxt "admin settings"
3218
  msgid "A contact message is sent to a listing's owner."
3219
  msgstr ""
3220
 
3221
- #: core/class-settings.php:324
3222
  msgctxt "admin settings"
3223
  msgid "CC this e-mail address too"
3224
  msgstr ""
3225
 
3226
- #: core/class-settings.php:330
3227
  msgctxt "admin settings"
3228
  msgid "Notify users via e-mail when..."
3229
  msgstr ""
3230
 
3231
- #: core/class-settings.php:333
3232
  msgctxt "admin settings"
3233
  msgid "You can modify the text template used for most of these e-mails below."
3234
  msgstr ""
3235
 
3236
- #: core/class-settings.php:334
3237
  msgctxt "admin settings"
3238
  msgid "Their listing is submitted."
3239
  msgstr ""
3240
 
3241
- #: core/class-settings.php:335
3242
  msgctxt "admin settings"
3243
  msgid "Their listing is approved/published."
3244
  msgstr ""
3245
 
3246
- #: core/class-settings.php:344
3247
  msgctxt "contact email"
3248
  msgid "You have received a reply from your listing at %s."
3249
  msgstr ""
3250
 
3251
- #: core/class-settings.php:345
3252
  msgctxt "contact email"
3253
  msgid "Name: %s"
3254
  msgstr ""
3255
 
3256
- #: core/class-settings.php:346
3257
  msgctxt "contact email"
3258
  msgid "E-Mail: %s"
3259
  msgstr ""
3260
 
3261
- #: core/class-settings.php:347
3262
  msgctxt "contact email"
3263
  msgid "Message:"
3264
  msgstr ""
3265
 
3266
- #: core/class-settings.php:349
3267
  msgctxt "contact email"
3268
  msgid "Time: %s"
3269
  msgstr ""
3270
 
3271
- #: core/class-settings.php:351
3272
  msgctxt "admin settings"
3273
  msgid "E-Mail Templates"
3274
  msgstr ""
3275
 
3276
- #: core/class-settings.php:354
3277
  msgctxt "admin settings"
3278
  msgid "Email confirmation message"
3279
  msgstr ""
3280
 
3281
- #: core/class-settings.php:358
3282
  msgctxt "admin settings"
3283
  msgid "Sent after a listing has been submitted."
3284
  msgstr ""
3285
 
3286
- #: core/class-settings.php:359 core/class-settings.php:367
3287
- #: core/class-settings.php:408
3288
  msgctxt "admin settings"
3289
  msgid "Listing's title"
3290
  msgstr ""
3291
 
3292
- #: core/class-settings.php:362
3293
  msgctxt "admin settings"
3294
  msgid "Listing published message"
3295
  msgstr ""
3296
 
3297
- #: core/class-settings.php:365
3298
  msgctxt "admin settings"
3299
  msgid ""
3300
- "Your listing \"[listing]\" is now available at [listing-url] and can be "
3301
- "viewed by the public."
3302
  msgstr ""
3303
 
3304
- #: core/class-settings.php:366
3305
  msgctxt "admin settings"
3306
  msgid "Sent when the listing has been published or approved by an admin."
3307
  msgstr ""
3308
 
3309
- #: core/class-settings.php:368
3310
  msgctxt "admin settings"
3311
  msgid "Listing's URL"
3312
  msgstr ""
3313
 
3314
- #: core/class-settings.php:372
3315
  msgctxt "admin settings"
3316
  msgid "Listing Contact Message"
3317
  msgstr ""
3318
 
3319
- #: core/class-settings.php:376
3320
  msgctxt "admin settings"
3321
- msgid ""
3322
- "Sent to listing owners when someone uses the contact form on their listing "
3323
- "pages."
3324
  msgstr ""
3325
 
3326
- #: core/class-settings.php:386
3327
  msgctxt "admin settings"
3328
  msgid "Payment related"
3329
  msgstr ""
3330
 
3331
- #: core/class-settings.php:403
3332
  msgctxt "admin settings"
3333
  msgid "Payment abandoned reminder message"
3334
  msgstr ""
3335
 
3336
- #: core/class-settings.php:407
3337
  msgctxt "admin settings"
3338
  msgid "Sent some time after a pending payment is abandoned by users."
3339
  msgstr ""
3340
 
3341
- #: core/class-settings.php:409
3342
  msgctxt "admin settings"
3343
  msgid "Checkout URL link"
3344
  msgstr ""
3345
 
3346
- #: core/class-settings.php:415
3347
  msgctxt "admin settings"
3348
  msgid "Renewal Reminders"
3349
  msgstr ""
3350
 
3351
- #: core/class-settings.php:418
3352
  msgctxt "admin settings"
3353
  msgid ""
3354
- "This section refers only to the text of the renewal/expiration notices. You "
3355
- "can also <a>configure when the e-mails are sent</a>."
3356
  msgstr ""
3357
 
3358
- #: core/class-settings.php:422
3359
  msgctxt "admin settings"
3360
  msgid "Pending expiration e-mail message"
3361
  msgstr ""
3362
 
3363
- #: core/class-settings.php:426
3364
  msgctxt "settings"
3365
- msgid ""
3366
- "Sent some time before the listing expires. Applies to non-recurring renewals "
3367
- "only."
3368
  msgstr ""
3369
 
3370
- #: core/class-settings.php:427 core/class-settings.php:440
3371
- #: core/class-settings.php:453 core/class-settings.php:466
3372
- #: core/class-settings.php:479
3373
  msgctxt "settings"
3374
  msgid "Listing's name (with link)"
3375
  msgstr ""
3376
 
3377
- #: core/class-settings.php:428 core/class-settings.php:441
3378
- #: core/class-settings.php:454 core/class-settings.php:467
3379
- #: core/class-settings.php:480
3380
  msgctxt "settings"
3381
  msgid "Author's name"
3382
  msgstr ""
3383
 
3384
- #: core/class-settings.php:429 core/class-settings.php:442
3385
- #: core/class-settings.php:481
3386
  msgctxt "settings"
3387
  msgid "Expiration date"
3388
  msgstr ""
3389
 
3390
- #: core/class-settings.php:430
3391
  msgctxt "settings"
3392
  msgid "Category that is going to expire"
3393
  msgstr ""
3394
 
3395
- #: core/class-settings.php:431 core/class-settings.php:444
3396
- #: core/class-settings.php:483
3397
  msgctxt "settings"
3398
  msgid "Link to renewal page"
3399
  msgstr ""
3400
 
3401
- #: core/class-settings.php:432 core/class-settings.php:445
3402
- #: core/class-settings.php:457 core/class-settings.php:470
3403
- #: core/class-settings.php:484
3404
  msgctxt "settings"
3405
  msgid "Link to your site"
3406
  msgstr ""
3407
 
3408
- #: core/class-settings.php:435
3409
  msgctxt "admin settings"
3410
  msgid "Listing Renewal e-mail message"
3411
  msgstr ""
3412
 
3413
- #: core/class-settings.php:439
3414
  msgctxt "settings"
3415
- msgid ""
3416
- "Sent at the time of listing expiration. Applies to non-recurring renewals "
3417
- "only."
3418
  msgstr ""
3419
 
3420
- #: core/class-settings.php:443 core/class-settings.php:482
3421
  msgctxt "settings"
3422
  msgid "Category that expired"
3423
  msgstr ""
3424
 
3425
- #: core/class-settings.php:448
3426
  msgctxt "admin settings"
3427
  msgid "Listing auto-renewal reminder (recurring payments)"
3428
  msgstr ""
3429
 
3430
- #: core/class-settings.php:452
3431
  msgctxt "settings"
3432
  msgid ""
3433
- "Sent some time before the listing is auto-renewed. Applies to recurring "
3434
- "renewals only."
3435
  msgstr ""
3436
 
3437
- #: core/class-settings.php:455 core/class-settings.php:469
3438
  msgctxt "settings"
3439
  msgid "Renewal date"
3440
  msgstr ""
3441
 
3442
- #: core/class-settings.php:456
3443
  msgctxt "settings"
3444
  msgid "Category that is going to be renewed"
3445
  msgstr ""
3446
 
3447
- #: core/class-settings.php:458
3448
  msgctxt "settings"
3449
  msgid "Link to manage subscriptions"
3450
  msgstr ""
3451
 
3452
- #: core/class-settings.php:461
3453
  msgctxt "admin settings"
3454
  msgid "Listing Renewal e-mail message (recurring payments)"
3455
  msgstr ""
3456
 
3457
- #: core/class-settings.php:465
3458
  msgctxt "settings"
3459
- msgid ""
3460
- "Sent after the listing is auto-renewed. Applies to recurring renewals only."
3461
  msgstr ""
3462
 
3463
- #: core/class-settings.php:468
3464
  msgctxt "settings"
3465
  msgid "Renewed category"
3466
  msgstr ""
3467
 
3468
- #: core/class-settings.php:474
3469
  msgctxt "admin settings"
3470
  msgid "Renewal reminder e-mail message"
3471
  msgstr ""
3472
 
3473
- #: core/class-settings.php:478
3474
  msgctxt "settings"
3475
  msgid ""
3476
- "Sent some time after listing expiration and when no renewal has occurred. "
3477
- "Applies to both recurring and non-recurring renewals."
3478
  msgstr ""
3479
 
3480
- #: core/class-settings.php:488
3481
  msgctxt "admin settings"
3482
  msgid "Payment"
3483
  msgstr ""
3484
 
3485
- #: core/class-settings.php:489
3486
  msgctxt "admin settings"
3487
  msgid "Payment Settings"
3488
  msgstr ""
3489
 
3490
- #: core/class-settings.php:492
3491
  msgctxt "admin settings"
3492
  msgid "Turn On payments?"
3493
  msgstr ""
3494
 
3495
- #: core/class-settings.php:494
3496
  msgctxt "admin settings"
3497
  msgid "Put payment gateways in test mode?"
3498
  msgstr ""
3499
 
3500
- #: core/class-settings.php:499
3501
  msgctxt "admin settings"
3502
  msgid "Perform checkouts on the secure (HTTPS) version of your site?"
3503
  msgstr ""
3504
 
3505
- #: core/class-settings.php:502
3506
  msgctxt "admin settings"
3507
  msgid ""
3508
- "Recommended for added security. For this to work you need to enable HTTPS on "
3509
- "your server and <a>obtain an SSL certificate</a>."
3510
  msgstr ""
3511
 
3512
- #: core/class-settings.php:506
3513
  msgctxt "admin settings"
3514
  msgid "Currency Code"
3515
  msgstr ""
3516
 
3517
- #: core/class-settings.php:508
3518
  msgctxt "admin settings"
3519
  msgid "Australian Dollar (AUD)"
3520
  msgstr ""
3521
 
3522
- #: core/class-settings.php:509
3523
  msgctxt "admin settings"
3524
  msgid "Brazilian Real (BRL)"
3525
  msgstr ""
3526
 
3527
- #: core/class-settings.php:510
3528
  msgctxt "admin settings"
3529
  msgid "Canadian Dollar (CAD)"
3530
  msgstr ""
3531
 
3532
- #: core/class-settings.php:511
3533
  msgctxt "admin settings"
3534
  msgid "Czech Koruna (CZK)"
3535
  msgstr ""
3536
 
3537
- #: core/class-settings.php:512
3538
  msgctxt "admin settings"
3539
  msgid "Danish Krone (DKK)"
3540
  msgstr ""
3541
 
3542
- #: core/class-settings.php:513
3543
  msgctxt "admin settings"
3544
  msgid "Euro (EUR)"
3545
  msgstr ""
3546
 
3547
- #: core/class-settings.php:514
3548
  msgctxt "admin settings"
3549
  msgid "Hong Kong Dollar (HKD)"
3550
  msgstr ""
3551
 
3552
- #: core/class-settings.php:515
3553
  msgctxt "admin settings"
3554
  msgid "Hungarian Forint (HUF)"
3555
  msgstr ""
3556
 
3557
- #: core/class-settings.php:516
3558
  msgctxt "admin settings"
3559
  msgid "Israeli New Shequel (ILS)"
3560
  msgstr ""
3561
 
3562
- #: core/class-settings.php:517
3563
  msgctxt "admin settings"
3564
  msgid "Japanese Yen (JPY)"
3565
  msgstr ""
3566
 
3567
- #: core/class-settings.php:518
3568
  msgctxt "admin settings"
3569
  msgid "Malasian Ringgit (MYR)"
3570
  msgstr ""
3571
 
3572
- #: core/class-settings.php:519
3573
  msgctxt "admin settings"
3574
  msgid "Mexican Peso (MXN)"
3575
  msgstr ""
3576
 
3577
- #: core/class-settings.php:520
3578
  msgctxt "admin settings"
3579
  msgid "Norwegian Krone (NOK)"
3580
  msgstr ""
3581
 
3582
- #: core/class-settings.php:521
3583
  msgctxt "admin settings"
3584
  msgid "New Zealand Dollar (NZD)"
3585
  msgstr ""
3586
 
3587
- #: core/class-settings.php:522
3588
  msgctxt "admin settings"
3589
  msgid "Philippine Peso (PHP)"
3590
  msgstr ""
3591
 
3592
- #: core/class-settings.php:523
3593
  msgctxt "admin settings"
3594
  msgid "Polish Zloty (PLN)"
3595
  msgstr ""
3596
 
3597
- #: core/class-settings.php:524
3598
  msgctxt "admin settings"
3599
  msgid "Pound Sterling (GBP)"
3600
  msgstr ""
3601
 
3602
- #: core/class-settings.php:525
3603
  msgctxt "admin settings"
3604
  msgid "Singapore Dollar (SGD)"
3605
  msgstr ""
3606
 
3607
- #: core/class-settings.php:526
3608
  msgctxt "admin settings"
3609
  msgid "Swedish Krona (SEK)"
3610
  msgstr ""
3611
 
3612
- #: core/class-settings.php:527
3613
  msgctxt "admin settings"
3614
  msgid "Swiss Franc (CHF)"
3615
  msgstr ""
3616
 
3617
- #: core/class-settings.php:528
3618
  msgctxt "admin settings"
3619
  msgid "Taiwan Dollar (TWD)"
3620
  msgstr ""
3621
 
3622
- #: core/class-settings.php:529
3623
  msgctxt "admin settings"
3624
  msgid "Thai Baht (THB)"
3625
  msgstr ""
3626
 
3627
- #: core/class-settings.php:530
3628
  msgctxt "admin settings"
3629
  msgid "Turkish Lira (TRY)"
3630
  msgstr ""
3631
 
3632
- #: core/class-settings.php:531
3633
  msgctxt "admin settings"
3634
  msgid "U.S. Dollar (USD)"
3635
  msgstr ""
3636
 
3637
- #: core/class-settings.php:535
3638
  msgctxt "admin settings"
3639
  msgid "Currency Symbol"
3640
  msgstr ""
3641
 
3642
- #: core/class-settings.php:540
3643
  msgctxt "admin settings"
3644
  msgid "Currency symbol display"
3645
  msgstr ""
3646
 
3647
- #: core/class-settings.php:544
3648
  msgctxt "admin settings"
3649
  msgid "Show currency symbol on the left"
3650
  msgstr ""
3651
 
3652
- #: core/class-settings.php:545
3653
  msgctxt "admin settings"
3654
  msgid "Show currency symbol on the right"
3655
  msgstr ""
3656
 
3657
- #: core/class-settings.php:546
3658
  msgctxt "admin settings"
3659
  msgid "Do not show currency symbol"
3660
  msgstr ""
3661
 
3662
- #: core/class-settings.php:548
3663
  msgctxt "admin settings"
3664
  msgid "Thank you for payment message"
3665
  msgstr ""
3666
 
3667
- #: core/class-settings.php:549
3668
  msgctxt "admin settings"
3669
  msgid ""
3670
- "Thank you for your payment. Your payment is being verified and your listing "
3671
- "reviewed. The verification and review process could take up to 48 hours."
3672
  msgstr ""
3673
 
3674
- #: core/class-settings.php:554
3675
  msgctxt "admin settings"
3676
  msgid "Ask users to come back for abandoned payments?"
3677
  msgstr ""
3678
 
3679
- #: core/class-settings.php:557
3680
  msgctxt "admin settings"
3681
  msgid ""
3682
- "An abandoned payment is when a user attempts to place a listing and gets to "
3683
- "the end, but fails to complete their payment for the listing. This results "
3684
- "in listings that look like they failed, when the user simply didn't complete "
3685
- "the transaction. BD can remind them to come back and continue."
3686
  msgstr ""
3687
 
3688
- #: core/class-settings.php:563
3689
  msgctxt "admin settings"
3690
  msgid "Listing abandonment threshold (hours)"
3691
  msgstr ""
3692
 
3693
- #: core/class-settings.php:568
3694
  msgctxt "admin settings"
3695
  msgid ""
3696
- "Listings with pending payments are marked as abandoned after this time. You "
3697
- "can also <a>customize the e-mail</a> users receive."
 
 
 
 
 
 
 
 
 
 
3698
  msgstr ""
3699
 
3700
- #: core/class-settings.php:574
 
 
 
 
 
 
 
 
 
 
3701
  msgctxt "admin settings"
3702
  msgid "Registration"
3703
  msgstr ""
3704
 
3705
- #: core/class-settings.php:575
 
 
 
 
 
 
 
 
3706
  msgctxt "admin settings"
3707
  msgid "Registration Settings"
3708
  msgstr ""
3709
 
3710
- #: core/class-settings.php:576
3711
  msgctxt "admin settings"
3712
  msgid "Require login to post listings?"
3713
  msgstr ""
3714
 
3715
- #: core/class-settings.php:581
 
 
 
 
 
 
 
 
 
 
 
 
3716
  msgctxt "admin settings"
3717
  msgid "Registration URL"
3718
  msgstr ""
3719
 
3720
- #: core/class-settings.php:584
3721
  msgctxt "admin settings"
3722
  msgid ""
3723
- "URL of your membership plugin's registration page. Only enter this if using "
3724
- "a membership plugin or custom registration page."
3725
  msgstr ""
3726
 
3727
- #: core/class-settings.php:588
3728
  msgctxt "admin settings"
3729
  msgid "Image"
3730
  msgstr ""
3731
 
3732
- #: core/class-settings.php:589
3733
  msgctxt "admin settings"
3734
  msgid ""
3735
- "Any changes to these settings will affect new listings only. Existing "
3736
- "listings will not be affected. If you wish to change existing listings, you "
3737
- "will need to re-upload the image(s) on that listing after changing things "
3738
- "here."
3739
  msgstr ""
3740
 
3741
- #: core/class-settings.php:590
3742
  msgctxt "admin settings"
3743
  msgid "Image Settings"
3744
  msgstr ""
3745
 
3746
- #: core/class-settings.php:591
3747
  msgctxt "admin settings"
3748
  msgid "Allow images?"
3749
  msgstr ""
3750
 
3751
- #: core/class-settings.php:593
3752
  msgctxt "admin settings"
3753
  msgid "Min Image File Size (KB)"
3754
  msgstr ""
3755
 
3756
- #: core/class-settings.php:594
3757
  msgctxt "admin settings"
3758
  msgid "Max Image File Size (KB)"
3759
  msgstr ""
3760
 
3761
- #: core/class-settings.php:596
3762
  msgctxt "admin settings"
3763
  msgid "Min image width (px)"
3764
  msgstr ""
3765
 
3766
- #: core/class-settings.php:597
3767
  msgctxt "admin settings"
3768
  msgid "Min image height (px)"
3769
  msgstr ""
3770
 
3771
- #: core/class-settings.php:599
3772
  msgctxt "admin settings"
3773
  msgid "Max image width (px)"
3774
  msgstr ""
3775
 
3776
- #: core/class-settings.php:600
3777
  msgctxt "admin settings"
3778
  msgid "Max image height (px)"
3779
  msgstr ""
3780
 
3781
- #: core/class-settings.php:602
3782
  msgctxt "admin settings"
3783
  msgid "Turn on thickbox/lightbox?"
3784
  msgstr ""
3785
 
3786
- #: core/class-settings.php:602
3787
  msgctxt "admin settings"
3788
- msgid ""
3789
- "Uncheck if it conflicts with other elements or plugins installed on your site"
3790
  msgstr ""
3791
 
3792
- #: core/class-settings.php:604
3793
  msgctxt "admin settings"
3794
  msgid "Thumbnails"
3795
  msgstr ""
3796
 
3797
- #: core/class-settings.php:605
3798
  msgctxt "admin settings"
3799
  msgid "Thumbnail width (px)"
3800
  msgstr ""
3801
 
3802
- #: core/class-settings.php:606
3803
  msgctxt "admin settings"
3804
  msgid "Thumbnail height (px)"
3805
  msgstr ""
3806
 
3807
- #: core/class-settings.php:609
3808
  msgctxt "admin settings"
3809
  msgid "Crop thumbnails to exact dimensions?"
3810
  msgstr ""
3811
 
3812
- #: core/class-settings.php:612
3813
  msgctxt "admin settings"
3814
  msgid ""
3815
- "When enabled images will match exactly the dimensions above but part of the "
3816
- "image may be cropped out. If disabled, image thumbnails will be resized to "
3817
- "match the specified width and their height will be adjusted proportionally. "
3818
- "Depending on the uploaded images, thumbnails may have different heights."
3819
  msgstr ""
3820
 
3821
- #: core/class-settings.php:618
3822
  msgctxt "admin settings"
3823
  msgid "Number of free images"
3824
  msgstr ""
3825
 
3826
- #: core/class-settings.php:623
3827
  msgctxt "admin settings"
3828
  msgid ""
3829
- "For paid listing images, configure that by adding or editing a <a>Fee Plan</"
3830
- "a> instead of this setting, which is ignored for paid listings."
3831
  msgstr ""
3832
 
3833
- #: core/class-settings.php:624
3834
  msgctxt "admin settings"
3835
  msgid "Use default picture for listings with no picture?"
3836
  msgstr ""
3837
 
3838
- #: core/class-settings.php:625
3839
  msgctxt "admin settings"
3840
  msgid "Show Thumbnail on main listings page?"
3841
  msgstr ""
3842
 
3843
- #: core/class-settings.php:681
3844
  msgctxt "admin settings"
3845
  msgid ""
3846
- "Could not copy the AJAX compatibility plugin \"%s\". Compatibility mode was "
3847
- "not activated."
3848
  msgstr ""
3849
 
3850
- #: core/class-settings.php:689
3851
  msgctxt "admin settings"
3852
  msgid ""
3853
- "Could not activate AJAX Compatibility mode: the directory \"%s\" could not "
3854
- "be created."
3855
  msgstr ""
3856
 
3857
- #: core/class-settings.php:698
3858
  msgctxt "admin settings"
3859
  msgid ""
3860
- "Could not remove the \"Business Directory Plugin - AJAX Compatibility Module"
3861
- "\". Please remove the file \"%s\" manually or deactivate the plugin."
3862
  msgstr ""
3863
 
3864
- #: core/class-settings.php:997
3865
  msgctxt "settings"
3866
  msgid "Deactivate License"
3867
  msgstr ""
3868
 
3869
- #: core/class-settings.php:999
3870
  msgctxt "settings"
3871
  msgid "Deactivating license..."
3872
  msgstr ""
3873
 
3874
- #: core/class-settings.php:1002
3875
  msgctxt "settings"
3876
  msgid "Activate License"
3877
  msgstr ""
3878
 
3879
- #: core/class-settings.php:1004
3880
  msgctxt "settings"
3881
  msgid "Activating license..."
3882
  msgstr ""
3883
 
3884
- #: core/class-settings.php:1028
3885
  msgctxt "admin settings"
3886
  msgid "Valid placeholders: %s"
3887
  msgstr ""
3888
 
3889
- #: core/class-settings.php:1062
3890
  msgctxt "settings email"
3891
  msgid "Click to edit e-mail"
3892
  msgstr ""
3893
 
3894
- #: core/class-settings.php:1063
3895
  msgctxt "settings email"
3896
  msgid "Click to edit"
3897
  msgstr ""
3898
 
3899
- #: core/class-settings.php:1076
3900
  msgctxt "settings email"
3901
  msgid "E-Mail Subject"
3902
  msgstr ""
3903
 
3904
- #: core/class-settings.php:1087
3905
  msgctxt "settings email"
3906
  msgid "E-Mail Body"
3907
  msgstr ""
3908
 
3909
- #: core/class-settings.php:1098
3910
  msgctxt "settings email"
3911
  msgid "You can use the following placeholders:"
3912
  msgstr ""
3913
 
3914
- #: core/class-settings.php:1121
3915
  msgctxt "settings email"
3916
  msgid "Preview e-mail"
3917
  msgstr ""
3918
 
3919
- #: core/class-settings.php:1122
3920
  msgctxt "settings email"
3921
  msgid "Cancel"
3922
  msgstr ""
3923
 
3924
- #: core/class-settings.php:1123
3925
  msgctxt "settings email"
3926
  msgid "Save Changes"
3927
  msgstr ""
3928
 
3929
- #: core/class-settings.php:1142
3930
  msgctxt "settings email"
3931
  msgid "Site title"
3932
  msgstr ""
3933
 
3934
- #: core/class-settings.php:1145
3935
  msgctxt "settings email"
3936
  msgid "Site title (with link)"
3937
  msgstr ""
3938
 
3939
- #: core/class-settings.php:1148
3940
  msgctxt "settings email"
3941
  msgid "Site address (with link)"
3942
  msgstr ""
3943
 
3944
- #: core/class-settings.php:1151
3945
  msgctxt "settings email"
3946
  msgid "Directory URL (with link)"
3947
  msgstr ""
3948
 
3949
- #: core/class-settings.php:1154
3950
  msgctxt "settings email"
3951
  msgid "Current date"
3952
  msgstr ""
3953
 
3954
- #: core/class-settings.php:1157
3955
  msgctxt "settings email"
3956
  msgid "Current time"
3957
  msgstr ""
@@ -4127,8 +4160,8 @@ msgstr ""
4127
  #: core/fieldtypes/class-fieldtypes-textarea.php:43
4128
  msgctxt "form-fields admin"
4129
  msgid ""
4130
- "<b>Advanced users only!</b> Unless you've been told to change this, don't "
4131
- "switch it unless you know what you're doing."
4132
  msgstr ""
4133
 
4134
  #: core/fieldtypes/class-fieldtypes-textarea.php:44
@@ -4347,26 +4380,31 @@ msgctxt "authorize-net"
4347
  msgid "Transaction Key is missing."
4348
  msgstr ""
4349
 
4350
- #: core/gateways-authorize-net.php:124
4351
  msgctxt "authorize-net"
4352
  msgid ""
4353
- "The payment gateway didn't accept your credit card or billing information. "
4354
- "The following reason was given: \"%s\"."
4355
  msgstr ""
4356
 
4357
- #: core/gateways-authorize-net.php:128
4358
  msgctxt "authorize-net"
4359
  msgid ""
4360
- "Your payment is being held for review by the payment gateway. The following "
4361
- "reason was given: \"%s\"."
4362
  msgstr ""
4363
 
4364
- #: core/gateways-authorize-net.php:131
4365
  msgctxt "authorize-net"
4366
  msgid "Payment was rejected. The following reason was given: \"%s\"."
4367
  msgstr ""
4368
 
4369
- #: core/gateways-authorize-net.php:182
 
 
 
 
 
4370
  msgctxt "authorize-net"
4371
  msgid "Could not process payment."
4372
  msgstr ""
@@ -4418,8 +4456,8 @@ msgstr ""
4418
  #: core/gateways-googlewallet.php:68
4419
  msgctxt "google-wallet"
4420
  msgid ""
4421
- "For recurring payments to work you need to <a>specify a postback URL</a> in "
4422
- "your Google Wallet settings."
4423
  msgstr ""
4424
 
4425
  #: core/gateways-googlewallet.php:69
@@ -4457,8 +4495,8 @@ msgstr ""
4457
  #: core/gateways-googlewallet.php:233
4458
  msgctxt "google-wallet"
4459
  msgid ""
4460
- "Payment was rejected because internal data does not look like a valid Google "
4461
- "Wallet transaction."
4462
  msgstr ""
4463
 
4464
  #: core/gateways-googlewallet.php:248
@@ -4476,95 +4514,118 @@ msgctxt "fs helper"
4476
  msgid "Destination dir \"%s\" is not writable."
4477
  msgstr ""
4478
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
4479
  #: core/installer.php:38
4480
  msgctxt "default category name"
4481
  msgid "General"
4482
  msgstr ""
4483
 
4484
- #: core/installer.php:462
4485
  msgctxt "installer"
4486
  msgid ""
4487
  "<b>Business Directory Plugin - Regions Module</b> was disabled because it is "
4488
- "incompatible with the current version of Business Directory. Please update "
4489
- "the Regions module."
4490
  msgstr ""
4491
 
4492
- #: core/installer.php:528
4493
  msgctxt "installer"
4494
  msgid "Cleaning up listing fees information... %d/%d"
4495
  msgstr ""
4496
 
4497
- #: core/installer.php:578
4498
  msgctxt "installer"
4499
  msgid "Migrating previous transactions to new Payments API... %d/%d"
4500
  msgstr ""
4501
 
4502
- #: core/installer.php:607
4503
  msgctxt "installer"
4504
  msgid "Initial listing payment (BD < 3.4)"
4505
  msgstr ""
4506
 
4507
- #: core/installer.php:618
4508
  msgctxt "installer"
4509
  msgid "Listing edit payment (BD < 3.4)"
4510
  msgstr ""
4511
 
4512
- #: core/installer.php:639
4513
  msgctxt "installer"
4514
  msgid "Renewal fee \"%s\" for category \"%s\""
4515
  msgstr ""
4516
 
4517
- #: core/installer.php:658
4518
  msgctxt "installer"
4519
  msgid "Listing upgrade to featured"
4520
  msgstr ""
4521
 
4522
- #: core/installer.php:894
4523
  msgid "Business Directory - Manual Upgrade Required"
4524
  msgstr ""
4525
 
4526
- #: core/installer.php:896
4527
  msgid ""
4528
- "Business Directory features are currently disabled because the plugin needs "
4529
- "to perform a manual upgrade before continuing."
4530
  msgstr ""
4531
 
4532
- #: core/installer.php:898
4533
  msgid "Perform Manual Upgrade"
4534
  msgstr ""
4535
 
4536
- #: core/installer.php:914 core/installer.php:915 core/installer.php:926
4537
  msgid "Business Directory - Manual Upgrade"
4538
  msgstr ""
4539
 
4540
- #: core/installer.php:930
4541
  msgid ""
4542
- "Business Directory features are currently disabled because the plugin needs "
4543
- "to perform a manual upgrade before it can be used."
4544
  msgstr ""
4545
 
4546
- #: core/installer.php:932
4547
  msgid "Click \"Start Upgrade\" and wait until the process finishes."
4548
  msgstr ""
4549
 
4550
- #: core/installer.php:935
4551
  msgctxt "manual-upgrade"
4552
  msgid "Start Upgrade"
4553
  msgstr ""
4554
 
4555
- #: core/installer.php:937
4556
  msgctxt "manual-upgrade"
4557
  msgid "Pause Upgrade"
4558
  msgstr ""
4559
 
4560
- #: core/installer.php:943
4561
  msgctxt "manual-upgrade"
4562
- msgid ""
4563
- "The upgrade was sucessfully performed. Business Directory Plugin is now "
4564
- "available."
4565
  msgstr ""
4566
 
4567
- #: core/installer.php:946
4568
  msgctxt "manual-upgrade"
4569
  msgid "Go to \"Directory Admin\""
4570
  msgstr ""
@@ -4589,16 +4650,6 @@ msgctxt "licensing"
4589
  msgid "No license key provided"
4590
  msgstr ""
4591
 
4592
- #: core/licensing.php:127 core/licensing.php:159
4593
- msgctxt "licensing"
4594
- msgid "Could not contact licensing server"
4595
- msgstr ""
4596
-
4597
- #: core/licensing.php:132 core/licensing.php:166
4598
- msgctxt "licensing"
4599
- msgid "License key is invalid"
4600
- msgstr ""
4601
-
4602
  #: core/licensing.php:169
4603
  msgctxt "licensing"
4604
  msgid "Deactivation failed"
@@ -4612,9 +4663,8 @@ msgstr ""
4612
  #: core/licensing.php:233
4613
  msgctxt "licensing"
4614
  msgid ""
4615
- "The following premium modules will not work until a valid license key is "
4616
- "provided. Go to <a>Manage Options - Licenses</a> to enter your license "
4617
- "information."
4618
  msgstr ""
4619
 
4620
  #: core/licensing.php:254
@@ -4625,9 +4675,9 @@ msgstr ""
4625
  #: core/licensing.php:255
4626
  msgctxt "licensing"
4627
  msgid ""
4628
- "The license key for <span class=\"module-name\">%s %s</span> has expired. "
4629
- "The module will continue to work but you will not receive any more updates "
4630
- "until the license is renewed."
4631
  msgstr ""
4632
 
4633
  #: core/licensing.php:259
@@ -4640,16 +4690,6 @@ msgctxt "licensing"
4640
  msgid "Renew License Key"
4641
  msgstr ""
4642
 
4643
- #: core/licensing.php:330
4644
- msgctxt "licensing"
4645
- msgid "Could not activate license: %s."
4646
- msgstr ""
4647
-
4648
- #: core/licensing.php:332
4649
- msgctxt "licensing"
4650
- msgid "License activated"
4651
- msgstr ""
4652
-
4653
  #: core/licensing.php:348
4654
  msgctxt "licensing"
4655
  msgid "Could not deactivate license: %s."
@@ -4665,176 +4705,169 @@ msgctxt "fees-api"
4665
  msgid "Free Listing"
4666
  msgstr ""
4667
 
4668
- #: core/payment.php:135
4669
  msgctxt "fees-api"
4670
  msgid "Fee label is required."
4671
  msgstr ""
4672
 
4673
- #: core/payment.php:138
4674
  msgctxt "fees-api"
4675
  msgid "Fee amount must be a non-negative decimal number."
4676
  msgstr ""
4677
 
4678
- #: core/payment.php:141 core/payment.php:144
4679
  msgctxt "fees-api"
4680
  msgid "Fee must apply to at least one category."
4681
  msgstr ""
4682
 
4683
- #: core/payment.php:147
4684
  msgctxt "fees-api"
4685
  msgid "Fee allowed images must be a non-negative integer."
4686
  msgstr ""
4687
 
4688
- #: core/payment.php:150
4689
  msgctxt "fees-api"
4690
  msgid "Fee listing run must be a non-negative integer."
4691
  msgstr ""
4692
 
4693
- #: core/payment.php:155
4694
  msgctxt "fees-api"
4695
  msgid "Fee listing duration must be a number less than 10 years (3650 days)."
4696
  msgstr ""
4697
 
4698
- #: core/payment.php:325
4699
  msgctxt "payments-api"
4700
  msgid ""
4701
- "You are offering featured listings but have payments turned off. Go to <a "
4702
- "href=\"%s\">Manage Options - Payment</a> to change the payment settings. "
4703
- "Until you change this, the <i>Upgrade to Featured</i> option will be "
4704
- "disabled."
4705
  msgstr ""
4706
 
4707
- #: core/payment.php:343
4708
  msgctxt "payments-api"
4709
  msgid ""
4710
- "The <b>%s</b> gateway is active but not properly configured. The gateway "
4711
- "won't be available until the following problems are fixed: <b>%s</b>. <br/> "
4712
- "Check the <a href=\"%s\">payment settings</a>."
4713
  msgstr ""
4714
 
4715
- #: core/payment.php:353
4716
  msgctxt "admin"
4717
  msgid ""
4718
- "You have payments turned on but no gateway is active and properly "
4719
- "configured. Go to <a href=\"%s\">Manage Options - Payment</a> to change the "
4720
- "payment settings. Until you change this, the directory will operate in "
4721
- "<i>Free Mode</i>."
4722
  msgstr ""
4723
 
4724
- #: core/payment.php:357
4725
  msgid ""
4726
- "BD detected PayFast and another gateway were enabled. This setup is not "
4727
- "recommended due to PayFast supporting only ZAR and the other gateways not "
4728
- "supporting this currency."
4729
  msgstr ""
4730
 
4731
- #: core/payment.php:361
4732
  msgid ""
4733
- "You have recurring renewal of listing fees enabled but the payment gateways "
4734
- "installed don't support recurring payments. Until a gateway that supports "
4735
- "recurring payments (such as PayPal) is enabled automatic renewals will be "
4736
- "disabled."
4737
  msgstr ""
4738
 
4739
- #: core/payment.php:366
4740
  msgid ""
4741
- "Due to Google Wallet limitations only monthly (30 days) recurring fees are "
4742
- "supported by the gateway. All other fees will be charged as non-recurring."
4743
  msgstr ""
4744
 
4745
- #: core/payment.php:399
4746
  msgctxt "payments-api"
4747
  msgid "Checkout"
4748
  msgstr ""
4749
 
4750
- #: core/payment.php:400
4751
  msgctxt "payments-api"
4752
  msgid "Pay %1$s through %2$s"
4753
  msgstr ""
4754
 
4755
- #: core/payment.php:407
4756
  msgctxt "payments-api"
4757
  msgid "Your transaction has been approved."
4758
  msgstr ""
4759
 
4760
- #: core/payment.php:588
4761
  msgctxt "payments"
4762
  msgid "Payment Details"
4763
  msgstr ""
4764
 
4765
- #: core/payment.php:615
4766
  msgctxt "checkout"
4767
  msgid "Payment Method"
4768
  msgstr ""
4769
 
4770
- #: core/payment.php:644
4771
  msgctxt "payment"
4772
  msgid "Return to Directory."
4773
  msgstr ""
4774
 
4775
- #: core/payment.php:650
4776
  msgctxt "payments"
4777
  msgid ""
4778
- "Your payment is being processed by the payment gateway. Please reload this "
4779
- "page in a moment to see if the status has changed or contact the site "
4780
- "administrator."
4781
  msgstr ""
4782
 
4783
- #: core/payment.php:653
4784
  msgctxt "payments"
4785
  msgid ""
4786
- "The payment has been rejected by the payment gateway. Please contact the "
4787
- "site administrator if you think there is an error or click \"Change Payment "
4788
- "Method\" to select another payment method and try again."
4789
  msgstr ""
4790
 
4791
- #: core/payment.php:654
4792
  msgctxt "payments"
4793
  msgid "Change Payment Method"
4794
  msgstr ""
4795
 
4796
- #: core/payment.php:656
4797
  msgctxt "payments"
4798
  msgid ""
4799
- "The payment has been rejected by the payment gateway. Please contact the "
4800
- "site administrator if you think there is an error."
4801
  msgstr ""
4802
 
4803
- #: core/payment.php:659
4804
  msgctxt "payments"
4805
  msgid "The payment has been canceled at your request."
4806
  msgstr ""
4807
 
4808
- #: core/payment.php:755
4809
  msgctxt "admin"
4810
  msgid "Pending Abandonment"
4811
  msgstr ""
4812
 
4813
- #: core/payment.php:760
4814
  msgctxt "admin"
4815
  msgid "Abandoned"
4816
  msgstr ""
4817
 
4818
- #: core/templates/listing-sticky-tag.tpl.php:3
4819
- #: core/templates/listing-sticky-tag.tpl.php:4 core/templates-listings.php:64
4820
  msgctxt "templates"
4821
  msgid "Featured Listing"
4822
  msgstr ""
4823
 
4824
- #: core/templates/listings.tpl.php:6
4825
- #: templates/businessdirectory-listings.tpl.php:27 templates/search.tpl.php:41
4826
  msgctxt "templates"
4827
  msgid "No listings found."
4828
  msgstr ""
4829
 
4830
- #: core/templates/listings.tpl.php:17
4831
- #: templates/businessdirectory-listings.tpl.php:38
4832
  msgctxt "templates"
4833
  msgid "&laquo; Previous "
4834
  msgstr ""
4835
 
4836
- #: core/templates/listings.tpl.php:18
4837
- #: templates/businessdirectory-listings.tpl.php:39
4838
  msgctxt "templates"
4839
  msgid "Next &raquo;"
4840
  msgstr ""
@@ -4864,78 +4897,77 @@ msgctxt "sort"
4864
  msgid "(Reset)"
4865
  msgstr ""
4866
 
4867
- #: core/themes.php:550
4868
  msgctxt "themes"
4869
  msgid "ZIP file is not a valid BD theme file."
4870
  msgstr ""
4871
 
4872
- #: core/themes.php:556
4873
  msgctxt "themes"
4874
  msgid "Could not create themes directory."
4875
  msgstr ""
4876
 
4877
- #: core/themes.php:564
4878
  msgctxt "themes"
4879
  msgid "Could not remove previous theme directory \"%s\"."
4880
  msgstr ""
4881
 
4882
- #: core/themes.php:570
4883
  msgctxt "themes"
4884
  msgid "Could not move new theme into theme directory."
4885
  msgstr ""
4886
 
4887
- #: core/utils.php:105
4888
  msgctxt "utils"
4889
- msgid ""
4890
- "POSTed data exceeds PHP config. maximum. See \"post_max_size\" directive."
4891
  msgstr ""
4892
 
4893
- #: core/utils.php:158
4894
  msgctxt "utils"
4895
  msgid "File size (%s) exceeds maximum file size of %s"
4896
  msgstr ""
4897
 
4898
- #: core/utils.php:166
4899
  msgctxt "utils"
4900
  msgid "File size (%s) is inferior to the required minimum file size of %s"
4901
  msgstr ""
4902
 
4903
- #: core/utils.php:175 core/utils.php:182
4904
  msgctxt "utils"
4905
  msgid "File type \"%s\" is not allowed"
4906
  msgstr ""
4907
 
4908
- #: core/utils.php:189
4909
  msgctxt "utils"
4910
  msgid "Unkown error while uploading file."
4911
  msgstr ""
4912
 
4913
- #: core/utils.php:208
4914
  msgctxt "utils"
4915
  msgid "Uploaded file is not an image"
4916
  msgstr ""
4917
 
4918
- #: core/utils.php:217
4919
  msgctxt "utils"
4920
  msgid "Image width (%s px) is inferior to minimum required width of %s px."
4921
  msgstr ""
4922
 
4923
- #: core/utils.php:223
4924
  msgctxt "utils"
4925
  msgid "Image height (%s px) is inferior to minimum required height of %s px."
4926
  msgstr ""
4927
 
4928
- #: core/utils.php:229
4929
  msgctxt "utils"
4930
  msgid "Image width (%s px) is greater than maximum allowed width of %s px."
4931
  msgstr ""
4932
 
4933
- #: core/utils.php:235
4934
  msgctxt "utils"
4935
  msgid "Image height (%s px) is greater than maximum required height of %s px."
4936
  msgstr ""
4937
 
4938
- #: core/utils.php:249
4939
  msgctxt "utils"
4940
  msgid "Error while uploading file"
4941
  msgstr ""
@@ -4953,15 +4985,15 @@ msgstr ""
4953
  #: core/view-checkout.php:103
4954
  msgctxt "checkout"
4955
  msgid ""
4956
- "Payments are not allowed on the non-secure version of this site. Please "
4957
- "<a>continue to the secure server to proceed with your payment</a>."
4958
  msgstr ""
4959
 
4960
  #: core/view-checkout.php:118
4961
  msgctxt "checkout"
4962
  msgid ""
4963
- "Your payment is being verified. This usually takes a few minutes but can "
4964
- "take up to 24 hours."
4965
  msgstr ""
4966
 
4967
  #: core/view-checkout.php:126 core/view-checkout.php:147
@@ -5061,8 +5093,8 @@ msgstr ""
5061
  #: core/view-renew-listing.php:21
5062
  msgctxt "renewal"
5063
  msgid ""
5064
- "Your renewal ID is invalid. Please use the URL you were given on the renewal "
5065
- "e-mail message."
5066
  msgstr ""
5067
 
5068
  #: core/view-renew-listing.php:47
@@ -5088,8 +5120,8 @@ msgstr ""
5088
  #: core/view-renew-listing.php:92
5089
  msgctxt "renew"
5090
  msgid ""
5091
- "Because you are on a recurring fee plan you don't have to renew your listing "
5092
- "right now as this will be handled automatically when renewal comes."
5093
  msgstr ""
5094
 
5095
  #: core/view-renew-listing.php:94
@@ -5110,27 +5142,25 @@ msgstr ""
5110
  #: core/view-renew-listing.php:102
5111
  msgctxt "renew"
5112
  msgid ""
5113
- "However, if you want to cancel your subscription you can do that on this "
5114
- "page. When the renewal time comes you'll be able to change your settings "
5115
- "again."
5116
  msgstr ""
5117
 
5118
  #: core/view-submit-listing.php:29
5119
  msgctxt "templates"
5120
  msgid ""
5121
- "There are no categories assigned to the business directory yet. You need to "
5122
- "assign some categories to the business directory. Only admins can see this "
5123
- "message. Regular users are seeing a message that they cannot add their "
5124
- "listing at this time. Listings cannot be added until you assign categories "
5125
- "to the business directory."
5126
  msgstr ""
5127
 
5128
  #: core/view-submit-listing.php:31
5129
  msgctxt "templates"
5130
  msgid ""
5131
- "Your listing cannot be added at this time. Please try again later. If this "
5132
- "is not the first time you see this warning, please ask the site "
5133
- "administrator to set up one or more categories inside the Directory."
5134
  msgstr ""
5135
 
5136
  #: core/view-submit-listing.php:43
@@ -5150,8 +5180,7 @@ msgstr ""
5150
 
5151
  #: core/view-submit-listing.php:65
5152
  msgctxt "templates"
5153
- msgid ""
5154
- "You are logged in as an administrator. Any payment steps will be skipped."
5155
  msgstr ""
5156
 
5157
  #: core/view-submit-listing.php:199
@@ -5184,22 +5213,22 @@ msgctxt "templates"
5184
  msgid "I agree to the Terms and Conditions"
5185
  msgstr ""
5186
 
5187
- #: core/view-submit-listing.php:404
5188
  msgctxt "listings"
5189
  msgid "Fee \"%s\" for category \"%s\"%s"
5190
  msgstr ""
5191
 
5192
- #: core/view-submit-listing.php:407
5193
  msgctxt "listings"
5194
  msgid "(recurring)"
5195
  msgstr ""
5196
 
5197
- #: core/view-submit-listing.php:417 core/view-upgrade-listing.php:54
5198
  msgctxt "submit"
5199
  msgid "Listing upgrade to featured"
5200
  msgstr ""
5201
 
5202
- #: core/view-submit-listing.php:450
5203
  msgctxt "submit_state"
5204
  msgid "Invalid submit state."
5205
  msgstr ""
@@ -5219,47 +5248,46 @@ msgctxt "templates"
5219
  msgid "Return to listing."
5220
  msgstr ""
5221
 
5222
- #: core/views.php:28
5223
  msgid ""
5224
- "You need to create a page with the [businessdirectory] shortcode for the "
5225
- "Business Directory plugin to work correctly."
5226
  msgstr ""
5227
 
5228
- #: core/views.php:30
5229
  msgid "The directory is temporarily disabled."
5230
  msgstr ""
5231
 
5232
- #: core/views.php:173
5233
  msgctxt "preview"
5234
  msgid "This is just a preview. The listing has not been published yet."
5235
  msgstr ""
5236
 
5237
- #: core/views.php:325
5238
  msgctxt "templates"
5239
  msgid "Listings tagged: %s"
5240
  msgstr ""
5241
 
5242
- #: core/views.php:442
5243
  msgctxt "templates"
5244
  msgid ""
5245
- "There are no categories assigned to the business directory yet. You need to "
5246
- "assign some categories to the business directory. Only admins can see this "
5247
- "message. Regular users are seeing a message that there are currently no "
5248
- "listings in the directory. Listings cannot be added until you assign "
5249
- "categories to the business directory."
5250
  msgstr ""
5251
 
5252
- #: core/views.php:444
5253
  msgctxt "templates"
5254
  msgid "There are currently no listings in the directory."
5255
  msgstr ""
5256
 
5257
- #: core/views.php:462
5258
  msgctxt "templates"
5259
  msgid ""
5260
- "You have \"Hide Empty Categories\" on and some categories that don't have "
5261
- "listings in them. That means they won't show up on the front end of your "
5262
- "site. If you didn't want that, click <a>here</a> to change the setting."
5263
  msgstr ""
5264
 
5265
  #: core/widget-featured-listings.php:11
@@ -5505,16 +5533,15 @@ msgstr ""
5505
  #: templates/delete-listing-confirm.tpl.php:7
5506
  msgctxt "delete listing"
5507
  msgid ""
5508
- "Your listing is associated to a recurring payment. If you don't cancel the "
5509
- "recurring payment before deleting the listing, you might be charged for "
5510
- "additional periods even though your listing won't be available."
5511
  msgstr ""
5512
 
5513
  #: templates/delete-listing-confirm.tpl.php:12
5514
  msgctxt "delete listing"
5515
  msgid ""
5516
- "Please visit <a>Manage recurring payments</a> to review your current "
5517
- "recurring payments."
5518
  msgstr ""
5519
 
5520
  #: templates/delete-listing-confirm.tpl.php:18
@@ -5540,42 +5567,35 @@ msgstr ""
5540
  #: templates/email/listing-added.tpl.php:2
5541
  msgctxt "emails"
5542
  msgid ""
5543
- "A new listing has been submitted to the directory. Listing details can be "
5544
- "found below."
5545
  msgstr ""
5546
 
5547
- #: templates/email/listing-added.tpl.php:7
5548
- #: templates/email/listing-edited.tpl.php:7
5549
  msgctxt "notify email"
5550
  msgid "ID"
5551
  msgstr ""
5552
 
5553
- #: templates/email/listing-added.tpl.php:10
5554
- #: templates/email/listing-edited.tpl.php:10
5555
  msgctxt "notify email"
5556
  msgid "Title"
5557
  msgstr ""
5558
 
5559
- #: templates/email/listing-added.tpl.php:13
5560
- #: templates/email/listing-edited.tpl.php:13
5561
  msgctxt "notify email"
5562
  msgid "URL"
5563
  msgstr ""
5564
 
5565
- #: templates/email/listing-added.tpl.php:13
5566
- #: templates/email/listing-edited.tpl.php:13
5567
  msgctxt "notify email"
5568
  msgid "(not published yet)"
5569
  msgstr ""
5570
 
5571
- #: templates/email/listing-added.tpl.php:16
5572
- #: templates/email/listing-edited.tpl.php:16
5573
  msgctxt "notify email"
5574
  msgid "Categories"
5575
  msgstr ""
5576
 
5577
- #: templates/email/listing-added.tpl.php:19
5578
- #: templates/email/listing-edited.tpl.php:19
5579
  msgctxt "notify email"
5580
  msgid "Posted By"
5581
  msgstr ""
@@ -5583,8 +5603,7 @@ msgstr ""
5583
  #: templates/email/listing-edited.tpl.php:2
5584
  msgctxt "emails"
5585
  msgid ""
5586
- "A listing in the directory has been edited recently. Listing details can be "
5587
- "found below."
5588
  msgstr ""
5589
 
5590
  #: templates/listing-contactform.tpl.php:9
@@ -5595,8 +5614,8 @@ msgstr ""
5595
  #: templates/listing-contactform.tpl.php:18
5596
  msgctxt "templates"
5597
  msgid ""
5598
- "You are currently logged in as %s. Your message will be sent using your "
5599
- "logged in contact email."
5600
  msgstr ""
5601
 
5602
  #: templates/listing-contactform.tpl.php:23
@@ -5632,8 +5651,8 @@ msgstr ""
5632
  #: templates/manage-listings.tpl.php:6
5633
  msgctxt "templates"
5634
  msgid ""
5635
- "Your current listings are shown below. To edit a listing click the edit "
5636
- "button. To delete a listing click the delete button."
5637
  msgstr ""
5638
 
5639
  #: templates/manage-listings.tpl.php:9
@@ -5641,7 +5660,7 @@ msgctxt "templates"
5641
  msgid "You do not currently have any listings in the directory."
5642
  msgstr ""
5643
 
5644
- #: templates/manage-listings.tpl.php:11 templates/search.tpl.php:44
5645
  msgctxt "templates"
5646
  msgid "Return to directory"
5647
  msgstr ""
@@ -5743,8 +5762,7 @@ msgid_plural "%d days"
5743
  msgstr[0] ""
5744
  msgstr[1] ""
5745
 
5746
- #: templates/parts/listing-buttons.tpl.php:4
5747
- #: templates/parts/listing-buttons.tpl.php:18
5748
  #: templates/parts/listing-buttons.tpl.php:22
5749
  msgctxt "templates"
5750
  msgid "Edit"
@@ -5755,15 +5773,13 @@ msgctxt "templates"
5755
  msgid "Upgrade Listing"
5756
  msgstr ""
5757
 
5758
- #: templates/parts/listing-buttons.tpl.php:10
5759
- #: templates/parts/listing-buttons.tpl.php:19
5760
  #: templates/parts/listing-buttons.tpl.php:23
5761
  msgctxt "templates"
5762
  msgid "Delete"
5763
  msgstr ""
5764
 
5765
- #: templates/parts/listing-buttons.tpl.php:10
5766
- #: templates/parts/listing-buttons.tpl.php:23
5767
  msgctxt "templates"
5768
  msgid "Are you sure you wish to delete this listing?"
5769
  msgstr ""
@@ -5772,8 +5788,7 @@ msgstr ""
5772
  msgid "← Back to Directory"
5773
  msgstr ""
5774
 
5775
- #: templates/parts/listing-buttons.tpl.php:17
5776
- #: templates/parts/listing-buttons.tpl.php:21
5777
  msgctxt "templates"
5778
  msgid "View"
5779
  msgstr ""
@@ -5781,9 +5796,9 @@ msgstr ""
5781
  #: templates/parts/login-required.tpl.php:5
5782
  msgctxt "templates"
5783
  msgid ""
5784
- "You are not currently logged in. Please login or register first. When "
5785
- "registering, you will receive an activation email. Be sure to check your "
5786
- "spam if you don't see it in your email within 60 minutes."
5787
  msgstr ""
5788
 
5789
  #: templates/parts/login-required.tpl.php:10
@@ -5833,22 +5848,18 @@ msgstr ""
5833
 
5834
  #: templates/renew-listing.tpl.php:10
5835
  msgctxt "templates"
5836
- msgid ""
5837
- "You are about to renew your listing \"%s\" publication inside category \"%s"
5838
- "\"."
5839
  msgstr ""
5840
 
5841
  #: templates/renew-listing.tpl.php:15
5842
  msgctxt "WPBDM"
5843
  msgid ""
5844
- "Please select a fee option or click \"Do not renew my listing\" to cancel "
5845
- "your renewal."
5846
  msgstr ""
5847
 
5848
- #: templates/renew-listing.tpl.php:22
5849
- #: templates/submit-listing/category-selection.tpl.php:8
5850
  #: templates/submit-listing/fee-selection.tpl.php:37
5851
- #: templates/submit-listing/images.tpl.php:35
5852
  #: templates/submit-listing/listing-fields.tpl.php:34
5853
  msgctxt "templates"
5854
  msgid "Continue"
@@ -5864,27 +5875,22 @@ msgctxt "templates"
5864
  msgid "Do not renew my listing"
5865
  msgstr ""
5866
 
5867
- #: templates/search.tpl.php:8 templates/search.tpl.php:27
5868
- msgctxt "search"
5869
- msgid "Search"
5870
- msgstr ""
5871
-
5872
- #: templates/search.tpl.php:10
5873
- msgctxt "search"
5874
- msgid "Return to Advanced Search"
5875
- msgstr ""
5876
-
5877
- #: templates/search.tpl.php:15
5878
  msgctxt "templates"
5879
  msgid "Find a listing"
5880
  msgstr ""
5881
 
5882
- #: templates/search.tpl.php:26
5883
  msgctxt "search"
5884
  msgid "Clear"
5885
  msgstr ""
5886
 
5887
- #: templates/search.tpl.php:34
 
 
 
 
 
5888
  msgctxt "search"
5889
  msgid "Search Results"
5890
  msgstr ""
@@ -5946,8 +5952,7 @@ msgstr ""
5946
 
5947
  #: templates/submit-listing/fee-selection.tpl.php:31
5948
  msgctxt "submit"
5949
- msgid ""
5950
- "Would you like to make your fee renew automatically at the end of the period?"
5951
  msgstr ""
5952
 
5953
  #: templates/submit-listing/images-single.tpl.php:9
@@ -5988,9 +5993,8 @@ msgstr ""
5988
  #: templates/submit-listing/images-upload-form.tpl.php:36
5989
  msgctxt "templates"
5990
  msgid ""
5991
- "Your image slots are all full at this time. You may click \"Continue\" if "
5992
- "you are done, or \"Delete Image\" to upload a new image in place of a "
5993
- "current one."
5994
  msgstr ""
5995
 
5996
  #: templates/submit-listing/images-upload-form.tpl.php:44
@@ -5998,7 +6002,12 @@ msgctxt "templates"
5998
  msgid "Image slots available:"
5999
  msgstr ""
6000
 
6001
- #: templates/submit-listing/images-upload-form.tpl.php:49
 
 
 
 
 
6002
  msgctxt "templates"
6003
  msgid "Max. file size:"
6004
  msgstr ""
@@ -6011,8 +6020,8 @@ msgstr ""
6011
  #: templates/submit-listing/images.tpl.php:7
6012
  msgctxt "templates"
6013
  msgid ""
6014
- "There is an image pending upload. Would you still like to continue without "
6015
- "saving the image?"
6016
  msgstr ""
6017
 
6018
  #: templates/submit-listing/images.tpl.php:13
@@ -6037,15 +6046,14 @@ msgstr ""
6037
 
6038
  #: vendors/edd/EDD_SL_Plugin_Updater.php:178
6039
  msgid ""
6040
- "There is a new version of %1$s available. <a target=\"_blank\" class="
6041
- "\"thickbox\" href=\"%2$s\">View version %3$s details</a>."
6042
  msgstr ""
6043
 
6044
  #: vendors/edd/EDD_SL_Plugin_Updater.php:185
6045
  msgid ""
6046
- "There is a new version of %1$s available. <a target=\"_blank\" class="
6047
- "\"thickbox\" href=\"%2$s\">View version %3$s details</a> or <a href=\"%4$s"
6048
- "\">update now</a>."
6049
  msgstr ""
6050
 
6051
  #: vendors/edd/EDD_SL_Plugin_Updater.php:325
@@ -6062,8 +6070,8 @@ msgstr ""
6062
 
6063
  #. Description of the plugin/theme
6064
  msgid ""
6065
- "Provides the ability to maintain a free or paid business directory on your "
6066
- "WordPress powered site."
6067
  msgstr ""
6068
 
6069
  #. Author of the plugin/theme
1
  # Copyright (C) 2015 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.10\n"
7
  "Report-Msgid-Bugs-To: http://wordpress.org/tag/business-directory-plugin\n"
8
+ "POT-Creation-Date: 2015-11-17 18:38-0500\n"
9
  "MIME-Version: 1.0\n"
10
  "Content-Type: text/plain; charset=UTF-8\n"
11
  "Content-Transfer-Encoding: 8bit\n"
12
  "PO-Revision-Date: 2015-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
+ "X-Poedit-SourceCharset: UTF-8\n"
17
 
18
  #: admin/class-admin-listings.php:24
19
  msgid "Listing Information"
109
  #: admin/class-admin.php:121
110
  msgctxt "drip pointer"
111
  msgid ""
112
+ "Find out how to create a compelling, thriving business directory from scratch in this "
113
+ "ridiculously actionable (and FREE) 5-part email course. Get a FREE premium module just "
114
+ "for signing up."
115
  msgstr ""
116
 
117
  #: admin/class-admin.php:123
214
  msgid "Uninstall"
215
  msgstr ""
216
 
217
+ #: admin/class-admin.php:405 admin/templates/listing-metabox-categories.tpl.php:69
 
218
  msgctxt "admin infometabox"
219
  msgid "never"
220
  msgstr ""
221
 
222
+ #: admin/class-admin.php:487
223
  msgctxt "admin"
224
  msgid "The listing has been published."
225
  msgid_plural "The listings have been published."
226
  msgstr[0] ""
227
  msgstr[1] ""
228
 
229
+ #: admin/class-admin.php:500
230
  msgctxt "admin"
231
  msgid "The listing status has been set as paid."
232
  msgid_plural "The listings status has been set as paid."
233
  msgstr[0] ""
234
  msgstr[1] ""
235
 
236
+ #: admin/class-admin.php:512
237
  msgctxt "admin"
238
  msgid "The listing has been modified."
239
  msgid_plural "The listings have been modified."
240
  msgstr[0] ""
241
  msgstr[1] ""
242
 
243
+ #: admin/class-admin.php:525
244
  msgctxt "admin"
245
  msgid "The listing has been upgraded."
246
  msgid_plural "The listings have been upgraded."
247
  msgstr[0] ""
248
  msgstr[1] ""
249
 
250
+ #: admin/class-admin.php:537
251
  msgctxt "admin"
252
  msgid "The listing has been downgraded."
253
  msgid_plural "The listings have been downgraded."
254
  msgstr[0] ""
255
  msgstr[1] ""
256
 
257
+ #: admin/class-admin.php:549
258
  msgctxt "admin"
259
  msgid "The transaction has been approved."
260
  msgstr ""
261
 
262
+ #: admin/class-admin.php:557
263
  msgctxt "admin"
264
  msgid "The transaction has been rejected."
265
  msgstr ""
266
 
267
+ #: admin/class-admin.php:563
268
  msgctxt "admin"
269
  msgid "The fee was successfully assigned."
270
  msgstr ""
271
 
272
+ #: admin/class-admin.php:572
273
  msgctxt "admin"
274
  msgid "Listing was renewed."
275
  msgid_plural "Listings were renewed."
276
  msgstr[0] ""
277
  msgstr[1] ""
278
 
279
+ #: admin/class-admin.php:579
280
  msgctxt "admin"
281
  msgid "Renewal email sent."
282
  msgstr ""
283
 
284
+ #: admin/class-admin.php:613
285
  msgctxt "admin category id"
286
  msgid "ID"
287
  msgstr ""
288
 
289
+ #: admin/class-admin.php:615 admin/class-admin.php:621
290
  msgctxt "admin"
291
  msgid "Listing Count"
292
  msgstr ""
293
 
294
+ #: admin/class-admin.php:717
295
  msgctxt "admin"
296
  msgid ""
297
+ "<b>Business Directory Plugin</b> requires fields with the following associations in "
298
+ "order to work correctly: <b>%s</b>."
299
  msgstr ""
300
 
301
+ #: admin/class-admin.php:719
302
  msgctxt "admin"
303
  msgid ""
304
+ "<b>Business Directory Plugin</b> requires a field with a <b>%s</b> association in order "
305
+ "to work correctly."
306
  msgstr ""
307
 
308
+ #: admin/class-admin.php:723
309
  msgctxt "admin"
310
  msgid ""
311
+ "You can create these custom fields by yourself inside \"Manage Form Fields\" or let "
312
+ "Business Directory do this for you automatically."
313
  msgstr ""
314
 
315
+ #: admin/class-admin.php:727
316
  msgctxt "admin"
317
  msgid "Go to \"Manage Form Fields\""
318
  msgstr ""
319
 
320
+ #: admin/class-admin.php:730
321
  msgctxt "admin"
322
  msgid "Create these required fields for me"
323
  msgstr ""
324
 
325
+ #: admin/class-admin.php:739
326
  msgctxt "admin"
327
  msgid ""
328
+ "<b>Business Directory Plugin</b> requires a page with the <tt>[businessdirectory]</tt> "
329
+ "shortcode to function properly."
330
  msgstr ""
331
 
332
+ #: admin/class-admin.php:741
333
  msgctxt "admin"
334
  msgid ""
335
+ "You can create this page by yourself or let Business Directory do this for you "
336
+ "automatically."
337
  msgstr ""
338
 
339
+ #: admin/class-admin.php:745
340
  msgctxt "admin"
341
  msgid "Create required pages for me"
342
  msgstr ""
343
 
344
+ #: admin/class-admin.php:785
345
  msgctxt "admin compat"
346
  msgid "Installed: %s"
347
  msgstr ""
348
 
349
+ #: admin/class-admin.php:785
350
  msgctxt "admin compat"
351
  msgid "N/A"
352
  msgstr ""
353
 
354
+ #: admin/class-admin.php:788
355
  msgctxt "admin compat"
356
  msgid "Required: %s"
357
  msgstr ""
358
 
359
+ #: admin/class-admin.php:801
360
  msgctxt "admin compat"
361
  msgid ""
362
+ "Business Directory has detected some incompatible premium module versions installed."
 
363
  msgstr ""
364
 
365
+ #: admin/class-admin.php:803
366
  msgctxt "admin compat"
367
  msgid ""
368
+ "Please upgrade to the required versions indicated below to make sure everything "
369
+ "functions properly."
370
  msgstr ""
371
 
372
+ #: admin/class-admin.php:818
373
  msgctxt "admin"
374
  msgid ""
375
+ "We noticed you want your Business Directory users to register before posting listings, "
376
+ "but Registration for your site is currently disabled. Go [here] and check \"Anyone can "
377
+ "register\" to make sure BD works properly."
378
  msgstr ""
379
 
380
  #: admin/class-listing-fields-metabox.php:21
382
  msgid "Listing Fields"
383
  msgstr ""
384
 
385
+ #: admin/class-listing-fields-metabox.php:40 templates/submit-listing/images.tpl.php:12
 
386
  msgctxt "templates"
387
  msgid "Current Images"
388
  msgstr ""
392
  msgid "There are no images currently attached to the listing."
393
  msgstr ""
394
 
395
+ #: admin/class-themes-admin.php:41
396
  msgctxt "themes"
397
  msgid "Directory Themes"
398
  msgstr ""
399
 
400
+ #: admin/class-themes-admin.php:42
401
+ msgctxt "themes"
402
+ msgid "Directory Themes %s"
403
+ msgstr ""
404
+
405
+ #: admin/class-themes-admin.php:97
406
  msgctxt "themes"
407
  msgid "Could not change the active theme to \"%s\"."
408
  msgstr ""
409
 
410
+ #: admin/class-themes-admin.php:144
411
  msgctxt "themes"
412
  msgid "Active theme changed to \"%s\"."
413
  msgstr ""
414
 
415
+ #: admin/class-themes-admin.php:147
416
  msgctxt "themes"
417
+ msgid "For better results, \"%s\" theme suggests the following form fields to be created."
 
 
418
  msgstr ""
419
 
420
+ #: admin/class-themes-admin.php:154
421
  msgctxt "themes"
422
  msgid "Dismiss this warning"
423
  msgstr ""
424
 
425
+ #: admin/class-themes-admin.php:157
426
  msgctxt "themes"
427
  msgid "Create suggested fields"
428
  msgstr ""
429
 
430
+ #: admin/class-themes-admin.php:164
431
  msgctxt "themes"
432
  msgid "Suggested fields created successfully."
433
  msgstr ""
434
 
435
+ #: admin/class-themes-admin.php:167
436
  msgctxt "themes"
437
  msgid "Theme installed successfully."
438
  msgstr ""
439
 
440
+ #: admin/class-themes-admin.php:170
441
  msgctxt "themes"
442
  msgid "Theme was deleted sucessfully."
443
  msgstr ""
444
 
445
+ #: admin/class-themes-admin.php:173
446
  msgctxt "themes"
447
  msgid "Could not delete theme directory. Check permissions."
448
  msgstr ""
449
 
450
+ #: admin/class-themes-admin.php:199
451
  msgctxt "themes"
452
  msgid "Please upload a valid theme file."
453
  msgstr ""
454
 
455
+ #: admin/class-themes-admin.php:206
456
  msgctxt "themes"
457
  msgid "Could not move \"%s\" to a temporary directory."
458
  msgstr ""
459
 
460
+ #: admin/class-themes-admin.php:307 core/licensing.php:127 core/licensing.php:159
461
+ msgctxt "licensing"
462
+ msgid "Could not contact licensing server"
463
+ msgstr ""
464
+
465
+ #: admin/class-themes-admin.php:313 core/licensing.php:132 core/licensing.php:166
466
+ msgctxt "licensing"
467
+ msgid "License key is invalid"
468
+ msgstr ""
469
+
470
+ #: admin/class-themes-admin.php:318 core/licensing.php:330
471
+ msgctxt "licensing"
472
+ msgid "Could not activate license: %s."
473
+ msgstr ""
474
+
475
+ #: admin/class-themes-admin.php:331 core/licensing.php:332
476
+ msgctxt "licensing"
477
+ msgid "License activated"
478
+ msgstr ""
479
+
480
  #: admin/csv-export.php:136
481
  msgctxt "admin csv-export"
482
  msgid "Could not create a temporary directory for handling this CSV export."
514
 
515
  #: admin/csv-import.php:241
516
  msgid ""
517
+ "A valid temporary directory with write permissions is required for CSV imports to "
518
+ "function properly. Your server is using \"%s\" but this path does not seem to be "
519
+ "writable. Please consult with your host."
520
  msgstr ""
521
 
522
  #: admin/csv-import.php:275
537
  #: admin/csv-import.php:315
538
  msgctxt "admin csv-import"
539
  msgid ""
540
+ "An error was detected while validating the CSV file for import. Please fix this before "
541
+ "proceeding."
542
  msgstr ""
543
 
544
  #: admin/csv-import.php:324
733
  #: admin/form-fields.php:174
734
  msgctxt "formfields-preview"
735
  msgid ""
736
+ "This is a preview of the form as it will appear during \"Submit a Listing\". The users "
737
+ "may not see all fields from \"Manage Form Fields\" because you have \"Featured Levels\" "
738
+ "active and this is showing the base level."
739
  msgstr ""
740
 
741
  #: admin/form-fields.php:180
756
  #: admin/form-fields.php:228
757
  msgctxt "form-fields admin"
758
  msgid ""
759
+ "<b>Important</b>: Since the \"<a>Display email address fields publicly?</a>\" setting is "
760
+ "disabled, display settings below will not be honored and this field will not be "
761
+ "displayed on the frontend. If you want e-mail addresses to show on the frontend, you can "
762
+ "<a>enable public display of e-mails</a>."
763
  msgstr ""
764
 
765
  #: admin/form-fields.php:262
914
  #: admin/templates/csv-export.tpl.php:9
915
  msgctxt "admin csv-export"
916
  msgid ""
917
+ "An unknown error occurred during the export. Please make sure you have enough free disk "
918
+ "space and memory available to PHP. Check your error logs for details."
 
919
  msgstr ""
920
 
921
  #: admin/templates/csv-export.tpl.php:18
922
  msgctxt "admin csv-export"
923
  msgid ""
924
+ "Please note that the export process is a resource intensive task. If your export does "
925
+ "not succeed try disabling other plugins first and/or increasing the values of the "
926
+ "'memory_limit' and 'max_execution_time' directives in your server's php.ini "
927
+ "configuration file."
928
  msgstr ""
929
 
930
  #: admin/templates/csv-export.tpl.php:30
970
  #: admin/templates/csv-export.tpl.php:56
971
  msgctxt "admin csv-export"
972
  msgid ""
973
+ "When checked, instead of just a CSV file a ZIP file will be generated with both a CSV "
974
+ "file and listing images."
975
  msgstr ""
976
 
977
  #: admin/templates/csv-export.tpl.php:62
987
  #: admin/templates/csv-export.tpl.php:69
988
  msgctxt "admin csv-export"
989
  msgid ""
990
+ "If you plan to re-import the listings into BD and don't want new ones created, select "
991
+ "this option!"
992
  msgstr ""
993
 
994
  #: admin/templates/csv-export.tpl.php:75
1018
 
1019
  #: admin/templates/csv-export.tpl.php:94 admin/templates/csv-export.tpl.php:105
1020
  #: admin/templates/csv-export.tpl.php:116 admin/templates/csv-import.tpl.php:43
1021
+ #: admin/templates/csv-import.tpl.php:109 admin/templates/csv-import.tpl.php:120
1022
+ #: admin/templates/csv-import.tpl.php:131 admin/templates/csv-import.tpl.php:158
 
 
1023
  msgctxt "admin forms"
1024
  msgid "required"
1025
  msgstr ""
1047
  #: admin/templates/csv-export.tpl.php:135
1048
  msgctxt "admin csv-export"
1049
  msgid ""
1050
+ "Your export file is being prepared. Please <u>do not leave</u> this page until the "
1051
+ "export finishes."
1052
  msgstr ""
1053
 
1054
  #: admin/templates/csv-export.tpl.php:138
1073
 
1074
  #: admin/templates/csv-export.tpl.php:153
1075
  msgctxt "admin csv-export"
1076
+ msgid "Your export file has been successfully created and it is now ready for download."
 
 
1077
  msgstr ""
1078
 
1079
  #: admin/templates/csv-export.tpl.php:156
1084
  #: admin/templates/csv-export.tpl.php:162
1085
  msgctxt "admin csv-export"
1086
  msgid ""
1087
+ "Click \"Cleanup\" once the file has been downloaded in order to remove all temporary "
1088
+ "data created by Business Directory during the export process."
1089
  msgstr ""
1090
 
1091
  #: admin/templates/csv-export.tpl.php:163
1116
  #: admin/templates/csv-import-progress.tpl.php:10
1117
  msgctxt "admin csv-import"
1118
  msgid ""
1119
+ "A fatal error occurred during the import. If connection wasn't lost during the import, "
1120
+ "please make sure that you have enough free disk space and memory available to PHP. Check "
1121
+ "your error logs for details."
1122
  msgstr ""
1123
 
1124
  #: admin/templates/csv-import-progress.tpl.php:14
1254
  #: admin/templates/csv-import.tpl.php:29
1255
  msgctxt "admin csv-import"
1256
  msgid ""
1257
+ "We strongly recommend reading our <a>CSV import documentation</a> first to help you do "
1258
+ "things in the right order."
1259
  msgstr ""
1260
 
1261
  #: admin/templates/csv-import.tpl.php:38
1350
 
1351
  #: admin/templates/csv-import.tpl.php:193
1352
  msgctxt "admin csv-import"
1353
+ msgid "This user will be used if the username column is not present in the CSV file."
 
1354
  msgstr ""
1355
 
1356
  #: admin/templates/csv-import.tpl.php:198
1376
  #: admin/templates/csv-import.tpl.php:218
1377
  msgctxt "admin csv-import"
1378
  msgid ""
1379
+ "The following are the valid header names to be used in the CSV file. Multivalued fields "
1380
+ "(such as category or tags) can appear multiple times in the file. Click <a href=\"%s\">"
1381
+ "\"See an example CSV import file\"</a> to see how an import file should look like."
 
1382
  msgstr ""
1383
 
1384
  #: admin/templates/csv-import.tpl.php:225
1418
 
1419
  #: admin/templates/csv-import.tpl.php:265
1420
  msgctxt "admin csv-import"
1421
+ msgid "Internal Sequence ID used to allow listing updates from external sources."
 
1422
  msgstr ""
1423
 
1424
  #: admin/templates/csv-import.tpl.php:272
1425
  msgctxt "admin csv-import"
1426
  msgid ""
1427
+ "Date of listing expiration formatted as YYYY-MM-DD. Use this column when adding or "
1428
+ "updating listings from external sources."
1429
  msgstr ""
1430
 
1431
  #: admin/templates/debug-info.tpl.php:5
1432
  msgctxt "debug-info"
1433
  msgid ""
1434
+ "The following information can help BD developers debug possible problems with your setup."
 
1435
  msgstr ""
1436
 
1437
  #: admin/templates/debug-info.tpl.php:6
1438
  msgctxt "debug-info"
1439
  msgid ""
1440
+ "The debug information does not contain personal or sensitive information such as "
1441
+ "passwords or private keys."
1442
  msgstr ""
1443
 
1444
  #: admin/templates/debug-info.tpl.php:9
1486
  msgid "Number of images allowed"
1487
  msgstr ""
1488
 
1489
+ #: admin/templates/fees-addoredit.tpl.php:101
1490
+ msgctxt "fees admin"
1491
+ msgid "Is sticky?"
1492
+ msgstr ""
1493
+
1494
+ #: admin/templates/fees-addoredit.tpl.php:116
1495
  msgctxt "fees admin"
1496
  msgid "Apply to category"
1497
  msgstr ""
1498
 
1499
+ #: admin/templates/fees-addoredit.tpl.php:120
1500
  msgctxt "fees admin"
1501
  msgid "* All Categories *"
1502
  msgstr ""
1503
 
1504
+ #: admin/templates/fees-addoredit.tpl.php:140
1505
  msgctxt "fees admin"
1506
  msgid "Update Fee"
1507
  msgstr ""
1508
 
1509
+ #: admin/templates/fees-addoredit.tpl.php:142
1510
  msgctxt "fees admin"
1511
  msgid "Add Fee"
1512
  msgstr ""
1539
  #: admin/templates/fees.tpl.php:13
1540
  msgctxt "fees admin"
1541
  msgid ""
1542
+ "To manage fees you need to go to the <a>Manage Options - Payment</a> page and check the "
1543
+ "box next to 'Turn On Payments' under 'Payment Settings'."
1544
  msgstr ""
1545
 
1546
  #: admin/templates/fees.tpl.php:22
1586
  #: admin/templates/fees.tpl.php:61
1587
  msgctxt "admin templates"
1588
  msgid ""
1589
+ "It does not appear you have any of the payment gateway modules enabled. Either <a>enable "
1590
+ "the default Authorize.net gateway</a> with your account info, or purchase a different "
1591
+ "payment gateway module in order to charge a fee for listings. To purchase additional "
1592
+ "payment gateways use the buttons below or visit %s."
 
1593
  msgstr ""
1594
 
1595
  #: admin/templates/fees.tpl.php:77
1599
 
1600
  #: admin/templates/fees.tpl.php:82
1601
  msgctxt "admin templates"
1602
+ msgid "You can buy the <a>%s</a> to add <a>%s</a> as a payment option for your users."
 
 
1603
  msgstr ""
1604
 
1605
  #: admin/templates/form-fields-addoredit.tpl.php:1
1647
  msgid "No validation"
1648
  msgstr ""
1649
 
1650
+ #: admin/templates/form-fields-addoredit.tpl.php:115
1651
  msgctxt "form-fields admin"
1652
  msgid "Is field required?"
1653
  msgstr ""
1654
 
1655
+ #: admin/templates/form-fields-addoredit.tpl.php:121
1656
  msgctxt "form-fields admin"
1657
  msgid "This field is required."
1658
  msgstr ""
1659
 
1660
+ #: admin/templates/form-fields-addoredit.tpl.php:129
1661
  msgctxt "form-fields admin"
1662
  msgid "Field display options"
1663
  msgstr ""
1664
 
1665
+ #: admin/templates/form-fields-addoredit.tpl.php:133
1666
  msgctxt "form-fields admin"
1667
  msgid "Show this value in excerpt view?"
1668
  msgstr ""
1669
 
1670
+ #: admin/templates/form-fields-addoredit.tpl.php:139
1671
  msgctxt "form-fields admin"
1672
  msgid "Display this value in post excerpt view."
1673
  msgstr ""
1674
 
1675
+ #: admin/templates/form-fields-addoredit.tpl.php:145
1676
  msgctxt "form-fields admin"
1677
  msgid "Show this value in listing view?"
1678
  msgstr ""
1679
 
1680
+ #: admin/templates/form-fields-addoredit.tpl.php:151
1681
  msgctxt "form-fields admin"
1682
  msgid "Display this value in the listing view."
1683
  msgstr ""
1684
 
1685
+ #: admin/templates/form-fields-addoredit.tpl.php:157
1686
  msgctxt "form-fields admin"
1687
  msgid "Include this field in the search form?"
1688
  msgstr ""
1689
 
1690
+ #: admin/templates/form-fields-addoredit.tpl.php:163
1691
  msgctxt "form-fields admin"
1692
  msgid "Include this field in the search form."
1693
  msgstr ""
1694
 
1695
+ #: admin/templates/form-fields-addoredit.tpl.php:169
1696
  msgctxt "form-fields admin"
1697
  msgid "Hide this field's label?"
1698
  msgstr ""
1699
 
1700
+ #: admin/templates/form-fields-addoredit.tpl.php:175
1701
  msgctxt "form-fields admin"
1702
  msgid "Hide this field's label when displaying it."
1703
  msgstr ""
1704
 
1705
+ #: admin/templates/form-fields-addoredit.tpl.php:182
1706
  msgctxt "form-fields admin"
1707
  msgid "Update Field"
1708
  msgstr ""
1709
 
1710
+ #: admin/templates/form-fields-addoredit.tpl.php:184
1711
  msgctxt "form-fields admin"
1712
  msgid "Add Field"
1713
  msgstr ""
1765
  #: admin/templates/form-fields.tpl.php:13
1766
  msgctxt "form-fields admin"
1767
  msgid ""
1768
+ "Here, you can create new fields for your listings, edit or delete existing ones, change "
1769
+ "the order and visibility of the fields as well as configure special options for them."
 
1770
  msgstr ""
1771
 
1772
  #: admin/templates/form-fields.tpl.php:19
1774
  msgid "Please see the <a>Form Fields documentation</a> for more details."
1775
  msgstr ""
1776
 
 
1777
  #. Plugin Name of the plugin/theme
1778
  #: admin/templates/header.tpl.php:4
1779
  msgid "Business Directory Plugin"
1787
  #: admin/templates/home.tpl.php:5
1788
  msgctxt "admin home"
1789
  msgid ""
1790
+ "Thanks for choosing us. There's a lot you probably want to get done, so let's jump "
1791
+ "right in!"
1792
  msgstr ""
1793
 
1794
  #: admin/templates/home.tpl.php:11
1795
  msgctxt "admin home"
1796
  msgid ""
1797
+ "Our complete documentation is <a>here</a> which we encourage you to use while setting "
1798
+ "things up."
1799
  msgstr ""
1800
 
1801
  #: admin/templates/home.tpl.php:14
1802
  msgctxt "admin home"
1803
  msgid ""
1804
+ "We have some quick-start scenarios that you will find useful regarding setup and "
1805
+ "configuration <a>here</a>."
1806
  msgstr ""
1807
 
1808
  #: admin/templates/home.tpl.php:18
1809
  msgctxt "admin home"
1810
  msgid ""
1811
+ "If you have questions, please post a comment on <a>support forum</a> and we'll answer it "
1812
+ "within 24 hours most days."
1813
  msgstr ""
1814
 
1815
  #: admin/templates/home.tpl.php:25
1993
 
1994
  #: admin/templates/listing-metabox-fees.tpl.php:12
1995
  msgctxt "admin infometabox"
1996
+ msgid "Note: In Free mode, the fee plans will always be set to \"Free Listing\" below."
 
 
1997
  msgstr ""
1998
 
1999
  #: admin/templates/listing-metabox-fees.tpl.php:22
2101
 
2102
  #: admin/templates/settings.tpl.php:36
2103
  msgid ""
2104
+ "Use this option if you want to go back to the original factory settings for BD. "
2105
+ "<b>Please note that all of your existing settings will be lost.</b>"
2106
  msgstr ""
2107
 
2108
  #: admin/templates/sidebar.tpl.php:3
2231
  msgstr ""
2232
 
2233
  #: admin/templates/themes-delete-confirm.tpl.php:1
2234
+ #: admin/templates/themes-delete-confirm.tpl.php:13
2235
  msgctxt "themes admin"
2236
+ msgid "Delete Directory Theme"
2237
  msgstr ""
2238
 
2239
  #: admin/templates/themes-delete-confirm.tpl.php:3
2240
  msgctxt "themes admin"
2241
+ msgid "Are you sure you want to delete the directory theme \"%s\"?"
2242
  msgstr ""
2243
 
2244
  #: admin/templates/themes-delete-confirm.tpl.php:12
2245
  msgctxt "themes admin"
2246
+ msgid "Cancel"
2247
  msgstr ""
2248
 
2249
+ #: admin/templates/themes-install.tpl.php:2 admin/templates/themes-licenses.tpl.php:3
2250
+ #: admin/templates/themes.tpl.php:3
2251
  msgctxt "themes"
2252
  msgid "Upload Directory Theme"
2253
  msgstr ""
2267
  msgid "Begin Upload"
2268
  msgstr ""
2269
 
2270
+ #: admin/templates/themes-item.tpl.php:3
2271
  msgctxt "themes"
2272
  msgid "Active:"
2273
  msgstr ""
2274
 
2275
+ #: admin/templates/themes-item.tpl.php:12
2276
  msgctxt "themes"
2277
  msgid "Activate"
2278
  msgstr ""
2279
 
2280
+ #: admin/templates/themes-item.tpl.php:29
2281
  msgctxt "themes"
2282
  msgid "Version:"
2283
  msgstr ""
2284
 
2285
+ #: admin/templates/themes-item.tpl.php:32
2286
  msgctxt "themes"
2287
  msgid "Author:"
2288
  msgstr ""
2320
  #: admin/templates/uninstall-capture-form.tpl.php:16
2321
  msgctxt "uninstall"
2322
  msgid ""
2323
+ "We're sorry to see you leave. Could you take 10 seconds and answer one question for us "
2324
+ "to help us make the product better for everyone in the future?"
 
2325
  msgstr ""
2326
 
2327
  #: admin/templates/uninstall-capture-form.tpl.php:19
2367
  #: admin/tracking.php:190
2368
  msgctxt "tracking"
2369
  msgid ""
2370
+ "Can Business Directory keep track of your theme, plugins, and other non-personal, non-"
2371
+ "identifying information to help us in testing the plugin for future releases?"
 
2372
  msgstr ""
2373
 
2374
  #: admin/tracking.php:192
2386
  msgid "Allow Tracking"
2387
  msgstr ""
2388
 
2389
+ #: business-directory-plugin.php:701
2390
  msgctxt "admin plugins"
2391
  msgid "Settings"
2392
  msgstr ""
2393
 
2394
+ #: business-directory-plugin.php:711
2395
  msgctxt "post type general name"
2396
  msgid "Directory"
2397
  msgstr ""
2398
 
2399
+ #: business-directory-plugin.php:712
2400
  msgctxt "post type singular name"
2401
  msgid "Directory"
2402
  msgstr ""
2403
 
2404
+ #: business-directory-plugin.php:713
2405
  msgctxt "listing"
2406
  msgid "Add New Listing"
2407
  msgstr ""
2408
 
2409
+ #: business-directory-plugin.php:714
2410
  msgctxt "post type"
2411
  msgid "Add New Listing"
2412
  msgstr ""
2413
 
2414
+ #: business-directory-plugin.php:715 core/compatibility/deprecated.php:255
2415
  msgid "Edit Listing"
2416
  msgstr ""
2417
 
2418
+ #: business-directory-plugin.php:716
2419
  msgid "New Listing"
2420
  msgstr ""
2421
 
2422
+ #: business-directory-plugin.php:717
2423
  msgid "View Listing"
2424
  msgstr ""
2425
 
2426
+ #: business-directory-plugin.php:718
2427
  msgid "Search Listings"
2428
  msgstr ""
2429
 
2430
+ #: business-directory-plugin.php:719
2431
  msgid "No listings found"
2432
  msgstr ""
2433
 
2434
+ #: business-directory-plugin.php:720
2435
  msgid "No listings found in trash"
2436
  msgstr ""
2437
 
2438
+ #: business-directory-plugin.php:742
2439
  msgid "Directory Categories"
2440
  msgstr ""
2441
 
2442
+ #: business-directory-plugin.php:855 business-directory-plugin.php:862
2443
  msgctxt "rss feed"
2444
  msgid "%s Feed"
2445
  msgstr ""
2446
 
2447
+ #: business-directory-plugin.php:1266
2448
  msgctxt "title"
2449
  msgid "Submit A Listing"
2450
  msgstr ""
2451
 
2452
+ #: business-directory-plugin.php:1276
2453
  msgctxt "title"
2454
  msgid "Find a Listing"
2455
  msgstr ""
2456
 
2457
+ #: business-directory-plugin.php:1286
2458
  msgctxt "title"
2459
  msgid "View All Listings"
2460
  msgstr ""
2461
 
2462
+ #: business-directory-plugin.php:1306
2463
  msgctxt "title"
2464
  msgid "Listings tagged: %s"
2465
  msgstr ""
2466
 
2467
+ #: core/class-csv-import.php:371
2468
  msgctxt "admin csv-import"
2469
  msgid "Could not create listing category \"%s\""
2470
  msgstr ""
2471
 
2472
+ #: core/class-csv-import.php:515
2473
  msgctxt "admin csv-import"
2474
  msgid "Username \"%s\" does not exist"
2475
  msgstr ""
2476
 
2477
+ #: core/class-csv-import.php:547
2478
  msgctxt "admin csv-import"
2479
  msgid "Missing required field: %s"
2480
  msgstr ""
2481
 
2482
+ #: core/class-csv-import.php:567
2483
  msgctxt "admin csv-import"
2484
  msgid "Listing category \"%s\" does not exist"
2485
  msgstr ""
2502
  #: core/class-form-field.php:480
2503
  msgctxt "form-fields-api"
2504
  msgid ""
2505
+ "There can only be one field with association \"%s\". Please select another association."
 
2506
  msgstr ""
2507
 
2508
  #: core/class-form-field.php:490
2517
 
2518
  #: core/class-form-field.php:536
2519
  msgctxt "form-fields api"
2520
+ msgid "This form field can't be deleted because it is required for the plugin to work."
 
 
2521
  msgstr ""
2522
 
2523
  #: core/class-form-field.php:548
2570
  msgid "Featured Listing"
2571
  msgstr ""
2572
 
2573
+ #: core/class-listing.php:297 core/class-listing.php:323
2574
  msgctxt "listing"
2575
  msgid "(Fee Unavailable)"
2576
  msgstr ""
2648
  #: core/class-settings.php:29
2649
  msgctxt "admin settings"
2650
  msgid ""
2651
+ "Allow BD to anonymously collect information about your installed plugins, themes and WP "
2652
+ "version?"
2653
  msgstr ""
2654
 
2655
  #: core/class-settings.php:34
2674
 
2675
  #: core/class-settings.php:39
2676
  msgctxt "admin settings"
2677
+ msgid "The slug can't be in use by another term. Avoid \"category\", for instance."
 
2678
  msgstr ""
2679
 
2680
  #: core/class-settings.php:40
2695
  #: core/class-settings.php:46
2696
  msgctxt "admin settings"
2697
  msgid ""
2698
+ "Prior to 3.5.1, we included the ID in the listing URL, like \"/business-directory/1809/"
2699
+ "listing-title\". Check this setting to remove the ID for better SEO."
 
2700
  msgstr ""
2701
 
2702
  #: core/class-settings.php:50
2747
  #: core/class-settings.php:79
2748
  msgctxt "admin settings"
2749
  msgid ""
2750
+ "Enter text or a URL starting with http. If you use a URL, the Terms and Conditions text "
2751
+ "will be replaced by a link to the appropiate page."
2752
  msgstr ""
2753
 
2754
  #: core/class-settings.php:83
2781
  msgid "Directory Search"
2782
  msgstr ""
2783
 
2784
+ #: core/class-settings.php:100
2785
+ msgctxt "admin settings"
2786
+ msgid "Search form display"
2787
+ msgstr ""
2788
+
2789
+ #: core/class-settings.php:104
2790
+ msgctxt "admin settings"
2791
+ msgid "Above results"
2792
+ msgstr ""
2793
+
2794
+ #: core/class-settings.php:105
2795
  msgctxt "admin settings"
2796
+ msgid "Below results"
2797
  msgstr ""
2798
 
2799
+ #: core/class-settings.php:106
2800
+ msgctxt "admin settings"
2801
+ msgid "Don't show with results"
2802
+ msgstr ""
2803
+
2804
+ #: core/class-settings.php:111
2805
  msgctxt "admin settings"
2806
  msgid ""
2807
+ "You have selected a textarea field to be included in quick searches. Searches involving "
2808
+ "those fields are very expensive and could result in timeouts and/or general slowness."
 
2809
  msgstr ""
2810
 
2811
+ #: core/class-settings.php:113
2812
  msgctxt "admin settings"
2813
  msgid ""
2814
+ "Use Ctrl-Click to include multiple fields in the search. Choosing too many fields for "
2815
+ "inclusion into Quick Search can result in very slow search performance."
 
2816
  msgstr ""
2817
 
2818
+ #: core/class-settings.php:116
2819
  msgctxt "admin settings"
2820
  msgid "Quick search fields"
2821
  msgstr ""
2822
 
2823
+ #: core/class-settings.php:124
2824
  msgctxt "admin settings"
2825
  msgid "Enable high performance searches?"
2826
  msgstr ""
2827
 
2828
+ #: core/class-settings.php:127
2829
  msgctxt "admin settings"
2830
  msgid ""
2831
+ "Enabling this makes BD sacrifice result quality to improve speed. This is helpful if "
2832
+ "you're on shared hosting plans, where database performance is an issue."
 
2833
  msgstr ""
2834
 
2835
+ #: core/class-settings.php:132
2836
  msgctxt "admin settings"
2837
  msgid "Miscellaneous Settings"
2838
  msgstr ""
2839
 
2840
+ #: core/class-settings.php:136
2841
  msgctxt "admin settings"
2842
  msgid ""
2843
+ "Check this if you are having trouble with BD, particularly when importing or exporting "
2844
+ "CSV files."
2845
  msgstr ""
2846
 
2847
+ #: core/class-settings.php:139
2848
  msgctxt "admin settings"
2849
  msgid ""
2850
+ "If this compatibility mode doesn't solve your issue, you may be experiencing a more "
2851
+ "serious conflict. <a>Here is an article</a> about how to test for theme and plugin "
2852
+ "conflicts with Business Directory."
2853
  msgstr ""
2854
 
2855
+ #: core/class-settings.php:142
2856
  msgctxt "admin settings"
2857
  msgid "Enable AJAX compatibility mode?"
2858
  msgstr ""
2859
 
2860
+ #: core/class-settings.php:150 core/class-settings.php:651
2861
  msgctxt "admin settings"
2862
  msgid "Listings"
2863
  msgstr ""
2864
 
2865
+ #: core/class-settings.php:151 core/class-settings.php:298 core/class-settings.php:584
2866
  msgctxt "admin settings"
2867
  msgid "General Settings"
2868
  msgstr ""
2869
 
2870
+ #: core/class-settings.php:153
2871
  msgctxt "admin settings"
2872
  msgid "Listings per page"
2873
  msgstr ""
2874
 
2875
+ #: core/class-settings.php:154
2876
  msgctxt "admin settings"
2877
+ msgid "Number of listings to show per page. Use a value of \"0\" to show all listings."
 
 
2878
  msgstr ""
2879
 
2880
+ #: core/class-settings.php:156
2881
  msgctxt "admin settings"
2882
  msgid "Listing duration for no-fee sites (in days)"
2883
  msgstr ""
2884
 
2885
+ #: core/class-settings.php:157
2886
  msgctxt "admin settings"
2887
  msgid ""
2888
+ "Use a value of \"0\" to keep a listing alive indefinitely or enter a number less than 10 "
2889
+ "years (3650 days)."
2890
  msgstr ""
2891
 
2892
+ #: core/class-settings.php:163
2893
  msgctxt "admin settings"
2894
  msgid "Include listing contact form on listing pages?"
2895
  msgstr ""
2896
 
2897
+ #: core/class-settings.php:166
2898
  msgctxt "admin settings"
2899
  msgid ""
2900
+ "Allows visitors to contact listing authors privately. Authors will receive the messages "
2901
+ "via email."
2902
  msgstr ""
2903
 
2904
+ #: core/class-settings.php:169
2905
  msgctxt "admin settings"
2906
  msgid "Require login for using the contact form?"
2907
  msgstr ""
2908
 
2909
+ #: core/class-settings.php:175
2910
  msgctxt "admin settings"
2911
  msgid "Maximum number of contact form submits per day"
2912
  msgstr ""
2913
 
2914
+ #: core/class-settings.php:178
2915
  msgctxt "admin settings"
2916
+ msgid "Use this to prevent spamming of listing owners. 0 means unlimited submits per day."
 
 
2917
  msgstr ""
2918
 
2919
+ #: core/class-settings.php:184
2920
  msgctxt "admin settings"
2921
  msgid "Include comment form on listing pages?"
2922
  msgstr ""
2923
 
2924
+ #: core/class-settings.php:187
2925
  msgctxt "admin settings"
2926
  msgid ""
2927
+ "Allow visitors to discuss listings using the standard WordPress comment form. Comments "
2928
+ "are public."
2929
  msgstr ""
2930
 
2931
+ #: core/class-settings.php:188
2932
  msgctxt "admin settings"
2933
  msgid "Show listings under categories on main page?"
2934
  msgstr ""
2935
 
2936
+ #: core/class-settings.php:189
2937
  msgctxt "admin settings"
2938
  msgid "Status of listings upon uninstalling plugin"
2939
  msgstr ""
2940
 
2941
+ #: core/class-settings.php:191
2942
  msgctxt "admin settings"
2943
  msgid "Status of deleted listings"
2944
  msgstr ""
2945
 
2946
+ #: core/class-settings.php:194
2947
  msgctxt "admin settings"
2948
  msgid "Listing Renewal"
2949
  msgstr ""
2950
 
2951
+ #: core/class-settings.php:195
2952
  msgctxt "admin settings"
2953
  msgid "Turn on listing renewal option?"
2954
  msgstr ""
2955
 
2956
+ #: core/class-settings.php:198
2957
  msgctxt "admin settings"
2958
  msgid "Allow recurring renewal payments?"
2959
  msgstr ""
2960
 
2961
+ #: core/class-settings.php:201
2962
  msgctxt "admin settings"
2963
  msgid ""
2964
+ "Allow users to opt in for automatic renewal of their listings. The fee is charged at the "
2965
+ "time the listing expires without user intervention."
2966
  msgstr ""
2967
 
2968
+ #: core/class-settings.php:205
2969
  msgctxt "admin settings"
2970
  msgid "Use recurring payments as the default payment method?"
2971
  msgstr ""
2972
 
2973
+ #: core/class-settings.php:208
2974
  msgctxt "admin settings"
2975
+ msgid "Enable automatic renewal without having users opt in during the submit process."
 
 
2976
  msgstr ""
2977
 
2978
+ #: core/class-settings.php:213
2979
  msgctxt "admin settings"
2980
  msgid "Listing renewal e-mail threshold (in days)"
2981
  msgstr ""
2982
 
2983
+ #: core/class-settings.php:216
2984
  msgctxt "admin settings"
2985
+ msgid "Configure how many days before listing expiration is the renewal e-mail sent."
 
2986
  msgstr ""
2987
 
2988
+ #: core/class-settings.php:220
2989
  msgctxt "admin settings"
2990
+ msgid "Send expiration notices including a cancel links to auto-renewed listings?"
 
2991
  msgstr ""
2992
 
2993
+ #: core/class-settings.php:227
2994
  msgctxt "admin settings"
2995
  msgid "Remind listing owners of expired listings (past due)?"
2996
  msgstr ""
2997
 
2998
+ #: core/class-settings.php:232
2999
  msgctxt "admin settings"
3000
  msgid "Listing renewal reminder e-mail threshold (in days)"
3001
  msgstr ""
3002
 
3003
+ #: core/class-settings.php:235
3004
  msgctxt "admin settings"
3005
  msgid ""
3006
+ "Configure how many days after the expiration of a listing an e-mail reminder should be "
3007
+ "sent to the owner."
3008
  msgstr ""
3009
 
3010
+ #: core/class-settings.php:238
3011
  msgctxt "admin settings"
3012
  msgid "Post/Category Settings"
3013
  msgstr ""
3014
 
3015
+ #: core/class-settings.php:239
3016
  msgctxt "admin settings"
3017
  msgid "Default new post status"
3018
  msgstr ""
3019
 
3020
+ #: core/class-settings.php:242
3021
  msgctxt "admin settings"
3022
  msgid "Edit post status"
3023
  msgstr ""
3024
 
3025
+ #: core/class-settings.php:244
3026
  msgctxt "admin settings"
3027
  msgid "Order categories list by"
3028
  msgstr ""
3029
 
3030
+ #: core/class-settings.php:246
3031
  msgctxt "admin settings"
3032
  msgid "Name"
3033
  msgstr ""
3034
 
3035
+ #: core/class-settings.php:247
3036
  msgctxt "admin settings"
3037
  msgid "Slug"
3038
  msgstr ""
3039
 
3040
+ #: core/class-settings.php:248
3041
  msgctxt "admin settings"
3042
  msgid "Listing Count"
3043
  msgstr ""
3044
 
3045
+ #: core/class-settings.php:250
3046
  msgctxt "admin settings"
3047
  msgid "Sort order for categories"
3048
  msgstr ""
3049
 
3050
+ #: core/class-settings.php:251 core/class-settings.php:269
3051
  msgctxt "admin settings"
3052
  msgid "Ascending"
3053
  msgstr ""
3054
 
3055
+ #: core/class-settings.php:251 core/class-settings.php:269
3056
  msgctxt "admin settings"
3057
  msgid "Descending"
3058
  msgstr ""
3059
 
3060
+ #: core/class-settings.php:252
3061
  msgctxt "admin settings"
3062
  msgid "Show category post count?"
3063
  msgstr ""
3064
 
3065
+ #: core/class-settings.php:253
3066
  msgctxt "admin settings"
3067
  msgid "Hide empty categories?"
3068
  msgstr ""
3069
 
3070
+ #: core/class-settings.php:254
3071
  msgctxt "admin settings"
3072
  msgid "Show only parent categories in category list?"
3073
  msgstr ""
3074
 
3075
+ #: core/class-settings.php:256
3076
  msgctxt "admin settings"
3077
  msgid "Listings Sorting"
3078
  msgstr ""
3079
 
3080
+ #: core/class-settings.php:257
3081
  msgctxt "admin settings"
3082
  msgid "Order directory listings by"
3083
  msgstr ""
3084
 
3085
+ #: core/class-settings.php:259
3086
  msgctxt "admin settings"
3087
  msgid "Title"
3088
  msgstr ""
3089
 
3090
+ #: core/class-settings.php:260
3091
  msgctxt "admin settings"
3092
  msgid "Author"
3093
  msgstr ""
3094
 
3095
+ #: core/class-settings.php:261
3096
  msgctxt "admin settings"
3097
  msgid "Date posted"
3098
  msgstr ""
3099
 
3100
+ #: core/class-settings.php:262
3101
  msgctxt "admin settings"
3102
  msgid "Date last modified"
3103
  msgstr ""
3104
 
3105
+ #: core/class-settings.php:263
3106
  msgctxt "admin settings"
3107
  msgid "Random"
3108
  msgstr ""
3109
 
3110
+ #: core/class-settings.php:264
3111
  msgctxt "admin settings"
3112
  msgid "Paid first then free. Inside each group by date."
3113
  msgstr ""
3114
 
3115
+ #: core/class-settings.php:265
3116
  msgctxt "admin settings"
3117
  msgid "Paid first then free. Inside each group by title."
3118
  msgstr ""
3119
 
3120
+ #: core/class-settings.php:267
3121
  msgctxt "admin settings"
3122
  msgid "Sort directory listings by"
3123
  msgstr ""
3124
 
3125
+ #: core/class-settings.php:268
3126
  msgctxt "admin settings"
3127
  msgid "Ascending for ascending order A-Z, Descending for descending order Z-A"
3128
  msgstr ""
3129
 
3130
+ #: core/class-settings.php:273
3131
  msgctxt "admin settings"
3132
  msgid "Enable sort bar?"
3133
  msgstr ""
3134
 
3135
+ #: core/class-settings.php:278
3136
  msgctxt "admin settings"
3137
  msgid "Sortbar Fields"
3138
  msgstr ""
3139
 
3140
+ #: core/class-settings.php:287
3141
  msgctxt "admin settings"
3142
  msgid "Featured (Sticky) listing settings"
3143
  msgstr ""
3144
 
3145
+ #: core/class-settings.php:288
3146
  msgctxt "admin settings"
3147
  msgid "Offer sticky listings?"
3148
  msgstr ""
3149
 
3150
+ #: core/class-settings.php:289
3151
  msgctxt "admin settings"
3152
  msgid "Offer upgrades during submit process?"
3153
  msgstr ""
3154
 
3155
+ #: core/class-settings.php:290
3156
  msgctxt "admin settings"
3157
  msgid "Sticky listing price"
3158
  msgstr ""
3159
 
3160
+ #: core/class-settings.php:291
3161
  msgctxt "admin settings"
3162
  msgid "Sticky listing page description text"
3163
  msgstr ""
3164
 
3165
+ #: core/class-settings.php:292
3166
  msgctxt "admin settings"
3167
  msgid ""
3168
+ "You can upgrade your listing to featured status. Featured listings will always appear on "
3169
+ "top of regular listings."
3170
  msgstr ""
3171
 
3172
+ #: core/class-settings.php:297
3173
  msgctxt "admin settings"
3174
  msgid "E-Mail"
3175
  msgstr ""
3176
 
3177
+ #: core/class-settings.php:301
3178
  msgctxt "admin settings"
3179
  msgid "Display email address fields publicly?"
3180
  msgstr ""
3181
 
3182
+ #: core/class-settings.php:304
3183
  msgctxt "admin settings"
3184
  msgid ""
3185
+ "Shows the email address of the listing owner to all web users. NOT RECOMMENDED as this "
3186
+ "increases spam to the address and allows spam bots to harvest it for future use."
 
3187
  msgstr ""
3188
 
3189
+ #: core/class-settings.php:307
3190
  msgctxt "admin settings"
3191
  msgid "How to determine the listing's email address?"
3192
  msgstr ""
3193
 
3194
+ #: core/class-settings.php:310
3195
  msgctxt "admin settings"
3196
  msgid ""
3197
+ "This affects emails sent to listing owners via contact forms or when their listings "
3198
+ "expire."
3199
  msgstr ""
3200
 
3201
+ #: core/class-settings.php:317
3202
  msgctxt "admin settings"
3203
  msgid "E-Mail Notifications"
3204
  msgstr ""
3205
 
3206
+ #: core/class-settings.php:320
3207
  msgctxt "admin settings"
3208
  msgid "Notify admin via e-mail when..."
3209
  msgstr ""
3210
 
3211
+ #: core/class-settings.php:324
3212
  msgctxt "admin settings"
3213
  msgid "A new listing is submitted."
3214
  msgstr ""
3215
 
3216
+ #: core/class-settings.php:325
3217
  msgctxt "admin settings"
3218
  msgid "A listing is edited."
3219
  msgstr ""
3220
 
3221
+ #: core/class-settings.php:326
3222
  msgctxt "admin settings"
3223
  msgid "A listing expires."
3224
  msgstr ""
3225
 
3226
+ #: core/class-settings.php:327
3227
  msgctxt "admin settings"
3228
  msgid "A contact message is sent to a listing's owner."
3229
  msgstr ""
3230
 
3231
+ #: core/class-settings.php:333
3232
  msgctxt "admin settings"
3233
  msgid "CC this e-mail address too"
3234
  msgstr ""
3235
 
3236
+ #: core/class-settings.php:339
3237
  msgctxt "admin settings"
3238
  msgid "Notify users via e-mail when..."
3239
  msgstr ""
3240
 
3241
+ #: core/class-settings.php:342
3242
  msgctxt "admin settings"
3243
  msgid "You can modify the text template used for most of these e-mails below."
3244
  msgstr ""
3245
 
3246
+ #: core/class-settings.php:343
3247
  msgctxt "admin settings"
3248
  msgid "Their listing is submitted."
3249
  msgstr ""
3250
 
3251
+ #: core/class-settings.php:344
3252
  msgctxt "admin settings"
3253
  msgid "Their listing is approved/published."
3254
  msgstr ""
3255
 
3256
+ #: core/class-settings.php:353
3257
  msgctxt "contact email"
3258
  msgid "You have received a reply from your listing at %s."
3259
  msgstr ""
3260
 
3261
+ #: core/class-settings.php:354
3262
  msgctxt "contact email"
3263
  msgid "Name: %s"
3264
  msgstr ""
3265
 
3266
+ #: core/class-settings.php:355
3267
  msgctxt "contact email"
3268
  msgid "E-Mail: %s"
3269
  msgstr ""
3270
 
3271
+ #: core/class-settings.php:356
3272
  msgctxt "contact email"
3273
  msgid "Message:"
3274
  msgstr ""
3275
 
3276
+ #: core/class-settings.php:358
3277
  msgctxt "contact email"
3278
  msgid "Time: %s"
3279
  msgstr ""
3280
 
3281
+ #: core/class-settings.php:360
3282
  msgctxt "admin settings"
3283
  msgid "E-Mail Templates"
3284
  msgstr ""
3285
 
3286
+ #: core/class-settings.php:363
3287
  msgctxt "admin settings"
3288
  msgid "Email confirmation message"
3289
  msgstr ""
3290
 
3291
+ #: core/class-settings.php:367
3292
  msgctxt "admin settings"
3293
  msgid "Sent after a listing has been submitted."
3294
  msgstr ""
3295
 
3296
+ #: core/class-settings.php:368 core/class-settings.php:376 core/class-settings.php:417
 
3297
  msgctxt "admin settings"
3298
  msgid "Listing's title"
3299
  msgstr ""
3300
 
3301
+ #: core/class-settings.php:371
3302
  msgctxt "admin settings"
3303
  msgid "Listing published message"
3304
  msgstr ""
3305
 
3306
+ #: core/class-settings.php:374
3307
  msgctxt "admin settings"
3308
  msgid ""
3309
+ "Your listing \"[listing]\" is now available at [listing-url] and can be viewed by the "
3310
+ "public."
3311
  msgstr ""
3312
 
3313
+ #: core/class-settings.php:375
3314
  msgctxt "admin settings"
3315
  msgid "Sent when the listing has been published or approved by an admin."
3316
  msgstr ""
3317
 
3318
+ #: core/class-settings.php:377
3319
  msgctxt "admin settings"
3320
  msgid "Listing's URL"
3321
  msgstr ""
3322
 
3323
+ #: core/class-settings.php:381
3324
  msgctxt "admin settings"
3325
  msgid "Listing Contact Message"
3326
  msgstr ""
3327
 
3328
+ #: core/class-settings.php:385
3329
  msgctxt "admin settings"
3330
+ msgid "Sent to listing owners when someone uses the contact form on their listing pages."
 
 
3331
  msgstr ""
3332
 
3333
+ #: core/class-settings.php:395
3334
  msgctxt "admin settings"
3335
  msgid "Payment related"
3336
  msgstr ""
3337
 
3338
+ #: core/class-settings.php:412
3339
  msgctxt "admin settings"
3340
  msgid "Payment abandoned reminder message"
3341
  msgstr ""
3342
 
3343
+ #: core/class-settings.php:416
3344
  msgctxt "admin settings"
3345
  msgid "Sent some time after a pending payment is abandoned by users."
3346
  msgstr ""
3347
 
3348
+ #: core/class-settings.php:418
3349
  msgctxt "admin settings"
3350
  msgid "Checkout URL link"
3351
  msgstr ""
3352
 
3353
+ #: core/class-settings.php:424
3354
  msgctxt "admin settings"
3355
  msgid "Renewal Reminders"
3356
  msgstr ""
3357
 
3358
+ #: core/class-settings.php:427
3359
  msgctxt "admin settings"
3360
  msgid ""
3361
+ "This section refers only to the text of the renewal/expiration notices. You can also "
3362
+ "<a>configure when the e-mails are sent</a>."
3363
  msgstr ""
3364
 
3365
+ #: core/class-settings.php:431
3366
  msgctxt "admin settings"
3367
  msgid "Pending expiration e-mail message"
3368
  msgstr ""
3369
 
3370
+ #: core/class-settings.php:435
3371
  msgctxt "settings"
3372
+ msgid "Sent some time before the listing expires. Applies to non-recurring renewals only."
 
 
3373
  msgstr ""
3374
 
3375
+ #: core/class-settings.php:436 core/class-settings.php:449 core/class-settings.php:462
3376
+ #: core/class-settings.php:475 core/class-settings.php:488
 
3377
  msgctxt "settings"
3378
  msgid "Listing's name (with link)"
3379
  msgstr ""
3380
 
3381
+ #: core/class-settings.php:437 core/class-settings.php:450 core/class-settings.php:463
3382
+ #: core/class-settings.php:476 core/class-settings.php:489
 
3383
  msgctxt "settings"
3384
  msgid "Author's name"
3385
  msgstr ""
3386
 
3387
+ #: core/class-settings.php:438 core/class-settings.php:451 core/class-settings.php:490
 
3388
  msgctxt "settings"
3389
  msgid "Expiration date"
3390
  msgstr ""
3391
 
3392
+ #: core/class-settings.php:439
3393
  msgctxt "settings"
3394
  msgid "Category that is going to expire"
3395
  msgstr ""
3396
 
3397
+ #: core/class-settings.php:440 core/class-settings.php:453 core/class-settings.php:492
 
3398
  msgctxt "settings"
3399
  msgid "Link to renewal page"
3400
  msgstr ""
3401
 
3402
+ #: core/class-settings.php:441 core/class-settings.php:454 core/class-settings.php:466
3403
+ #: core/class-settings.php:479 core/class-settings.php:493
 
3404
  msgctxt "settings"
3405
  msgid "Link to your site"
3406
  msgstr ""
3407
 
3408
+ #: core/class-settings.php:444
3409
  msgctxt "admin settings"
3410
  msgid "Listing Renewal e-mail message"
3411
  msgstr ""
3412
 
3413
+ #: core/class-settings.php:448
3414
  msgctxt "settings"
3415
+ msgid "Sent at the time of listing expiration. Applies to non-recurring renewals only."
 
 
3416
  msgstr ""
3417
 
3418
+ #: core/class-settings.php:452 core/class-settings.php:491
3419
  msgctxt "settings"
3420
  msgid "Category that expired"
3421
  msgstr ""
3422
 
3423
+ #: core/class-settings.php:457
3424
  msgctxt "admin settings"
3425
  msgid "Listing auto-renewal reminder (recurring payments)"
3426
  msgstr ""
3427
 
3428
+ #: core/class-settings.php:461
3429
  msgctxt "settings"
3430
  msgid ""
3431
+ "Sent some time before the listing is auto-renewed. Applies to recurring renewals only."
 
3432
  msgstr ""
3433
 
3434
+ #: core/class-settings.php:464 core/class-settings.php:478
3435
  msgctxt "settings"
3436
  msgid "Renewal date"
3437
  msgstr ""
3438
 
3439
+ #: core/class-settings.php:465
3440
  msgctxt "settings"
3441
  msgid "Category that is going to be renewed"
3442
  msgstr ""
3443
 
3444
+ #: core/class-settings.php:467
3445
  msgctxt "settings"
3446
  msgid "Link to manage subscriptions"
3447
  msgstr ""
3448
 
3449
+ #: core/class-settings.php:470
3450
  msgctxt "admin settings"
3451
  msgid "Listing Renewal e-mail message (recurring payments)"
3452
  msgstr ""
3453
 
3454
+ #: core/class-settings.php:474
3455
  msgctxt "settings"
3456
+ msgid "Sent after the listing is auto-renewed. Applies to recurring renewals only."
 
3457
  msgstr ""
3458
 
3459
+ #: core/class-settings.php:477
3460
  msgctxt "settings"
3461
  msgid "Renewed category"
3462
  msgstr ""
3463
 
3464
+ #: core/class-settings.php:483
3465
  msgctxt "admin settings"
3466
  msgid "Renewal reminder e-mail message"
3467
  msgstr ""
3468
 
3469
+ #: core/class-settings.php:487
3470
  msgctxt "settings"
3471
  msgid ""
3472
+ "Sent some time after listing expiration and when no renewal has occurred. Applies to "
3473
+ "both recurring and non-recurring renewals."
3474
  msgstr ""
3475
 
3476
+ #: core/class-settings.php:497
3477
  msgctxt "admin settings"
3478
  msgid "Payment"
3479
  msgstr ""
3480
 
3481
+ #: core/class-settings.php:498
3482
  msgctxt "admin settings"
3483
  msgid "Payment Settings"
3484
  msgstr ""
3485
 
3486
+ #: core/class-settings.php:501
3487
  msgctxt "admin settings"
3488
  msgid "Turn On payments?"
3489
  msgstr ""
3490
 
3491
+ #: core/class-settings.php:503
3492
  msgctxt "admin settings"
3493
  msgid "Put payment gateways in test mode?"
3494
  msgstr ""
3495
 
3496
+ #: core/class-settings.php:508
3497
  msgctxt "admin settings"
3498
  msgid "Perform checkouts on the secure (HTTPS) version of your site?"
3499
  msgstr ""
3500
 
3501
+ #: core/class-settings.php:511
3502
  msgctxt "admin settings"
3503
  msgid ""
3504
+ "Recommended for added security. For this to work you need to enable HTTPS on your server "
3505
+ "and <a>obtain an SSL certificate</a>."
3506
  msgstr ""
3507
 
3508
+ #: core/class-settings.php:515
3509
  msgctxt "admin settings"
3510
  msgid "Currency Code"
3511
  msgstr ""
3512
 
3513
+ #: core/class-settings.php:517
3514
  msgctxt "admin settings"
3515
  msgid "Australian Dollar (AUD)"
3516
  msgstr ""
3517
 
3518
+ #: core/class-settings.php:518
3519
  msgctxt "admin settings"
3520
  msgid "Brazilian Real (BRL)"
3521
  msgstr ""
3522
 
3523
+ #: core/class-settings.php:519
3524
  msgctxt "admin settings"
3525
  msgid "Canadian Dollar (CAD)"
3526
  msgstr ""
3527
 
3528
+ #: core/class-settings.php:520
3529
  msgctxt "admin settings"
3530
  msgid "Czech Koruna (CZK)"
3531
  msgstr ""
3532
 
3533
+ #: core/class-settings.php:521
3534
  msgctxt "admin settings"
3535
  msgid "Danish Krone (DKK)"
3536
  msgstr ""
3537
 
3538
+ #: core/class-settings.php:522
3539
  msgctxt "admin settings"
3540
  msgid "Euro (EUR)"
3541
  msgstr ""
3542
 
3543
+ #: core/class-settings.php:523
3544
  msgctxt "admin settings"
3545
  msgid "Hong Kong Dollar (HKD)"
3546
  msgstr ""
3547
 
3548
+ #: core/class-settings.php:524
3549
  msgctxt "admin settings"
3550
  msgid "Hungarian Forint (HUF)"
3551
  msgstr ""
3552
 
3553
+ #: core/class-settings.php:525
3554
  msgctxt "admin settings"
3555
  msgid "Israeli New Shequel (ILS)"
3556
  msgstr ""
3557
 
3558
+ #: core/class-settings.php:526
3559
  msgctxt "admin settings"
3560
  msgid "Japanese Yen (JPY)"
3561
  msgstr ""
3562
 
3563
+ #: core/class-settings.php:527
3564
  msgctxt "admin settings"
3565
  msgid "Malasian Ringgit (MYR)"
3566
  msgstr ""
3567
 
3568
+ #: core/class-settings.php:528
3569
  msgctxt "admin settings"
3570
  msgid "Mexican Peso (MXN)"
3571
  msgstr ""
3572
 
3573
+ #: core/class-settings.php:529
3574
  msgctxt "admin settings"
3575
  msgid "Norwegian Krone (NOK)"
3576
  msgstr ""
3577
 
3578
+ #: core/class-settings.php:530
3579
  msgctxt "admin settings"
3580
  msgid "New Zealand Dollar (NZD)"
3581
  msgstr ""
3582
 
3583
+ #: core/class-settings.php:531
3584
  msgctxt "admin settings"
3585
  msgid "Philippine Peso (PHP)"
3586
  msgstr ""
3587
 
3588
+ #: core/class-settings.php:532
3589
  msgctxt "admin settings"
3590
  msgid "Polish Zloty (PLN)"
3591
  msgstr ""
3592
 
3593
+ #: core/class-settings.php:533
3594
  msgctxt "admin settings"
3595
  msgid "Pound Sterling (GBP)"
3596
  msgstr ""
3597
 
3598
+ #: core/class-settings.php:534
3599
  msgctxt "admin settings"
3600
  msgid "Singapore Dollar (SGD)"
3601
  msgstr ""
3602
 
3603
+ #: core/class-settings.php:535
3604
  msgctxt "admin settings"
3605
  msgid "Swedish Krona (SEK)"
3606
  msgstr ""
3607
 
3608
+ #: core/class-settings.php:536
3609
  msgctxt "admin settings"
3610
  msgid "Swiss Franc (CHF)"
3611
  msgstr ""
3612
 
3613
+ #: core/class-settings.php:537
3614
  msgctxt "admin settings"
3615
  msgid "Taiwan Dollar (TWD)"
3616
  msgstr ""
3617
 
3618
+ #: core/class-settings.php:538
3619
  msgctxt "admin settings"
3620
  msgid "Thai Baht (THB)"
3621
  msgstr ""
3622
 
3623
+ #: core/class-settings.php:539
3624
  msgctxt "admin settings"
3625
  msgid "Turkish Lira (TRY)"
3626
  msgstr ""
3627
 
3628
+ #: core/class-settings.php:540
3629
  msgctxt "admin settings"
3630
  msgid "U.S. Dollar (USD)"
3631
  msgstr ""
3632
 
3633
+ #: core/class-settings.php:544
3634
  msgctxt "admin settings"
3635
  msgid "Currency Symbol"
3636
  msgstr ""
3637
 
3638
+ #: core/class-settings.php:549
3639
  msgctxt "admin settings"
3640
  msgid "Currency symbol display"
3641
  msgstr ""
3642
 
3643
+ #: core/class-settings.php:553
3644
  msgctxt "admin settings"
3645
  msgid "Show currency symbol on the left"
3646
  msgstr ""
3647
 
3648
+ #: core/class-settings.php:554
3649
  msgctxt "admin settings"
3650
  msgid "Show currency symbol on the right"
3651
  msgstr ""
3652
 
3653
+ #: core/class-settings.php:555
3654
  msgctxt "admin settings"
3655
  msgid "Do not show currency symbol"
3656
  msgstr ""
3657
 
3658
+ #: core/class-settings.php:557
3659
  msgctxt "admin settings"
3660
  msgid "Thank you for payment message"
3661
  msgstr ""
3662
 
3663
+ #: core/class-settings.php:558
3664
  msgctxt "admin settings"
3665
  msgid ""
3666
+ "Thank you for your payment. Your payment is being verified and your listing reviewed. "
3667
+ "The verification and review process could take up to 48 hours."
3668
  msgstr ""
3669
 
3670
+ #: core/class-settings.php:563
3671
  msgctxt "admin settings"
3672
  msgid "Ask users to come back for abandoned payments?"
3673
  msgstr ""
3674
 
3675
+ #: core/class-settings.php:566
3676
  msgctxt "admin settings"
3677
  msgid ""
3678
+ "An abandoned payment is when a user attempts to place a listing and gets to the end, but "
3679
+ "fails to complete their payment for the listing. This results in listings that look like "
3680
+ "they failed, when the user simply didn't complete the transaction. BD can remind them "
3681
+ "to come back and continue."
3682
  msgstr ""
3683
 
3684
+ #: core/class-settings.php:572
3685
  msgctxt "admin settings"
3686
  msgid "Listing abandonment threshold (hours)"
3687
  msgstr ""
3688
 
3689
+ #: core/class-settings.php:577
3690
  msgctxt "admin settings"
3691
  msgid ""
3692
+ "Listings with pending payments are marked as abandoned after this time. You can also "
3693
+ "<a>customize the e-mail</a> users receive."
3694
+ msgstr ""
3695
+
3696
+ #: core/class-settings.php:583
3697
+ msgctxt "admin settings"
3698
+ msgid "Themes"
3699
+ msgstr ""
3700
+
3701
+ #: core/class-settings.php:588
3702
+ msgctxt "admin settings"
3703
+ msgid "Theme button style"
3704
  msgstr ""
3705
 
3706
+ #: core/class-settings.php:592
3707
+ msgctxt "admin settings"
3708
+ msgid "Use the BD theme style for BD buttons"
3709
+ msgstr ""
3710
+
3711
+ #: core/class-settings.php:593
3712
+ msgctxt "admin settings"
3713
+ msgid "Use the WP theme style for BD buttons"
3714
+ msgstr ""
3715
+
3716
+ #: core/class-settings.php:599
3717
  msgctxt "admin settings"
3718
  msgid "Registration"
3719
  msgstr ""
3720
 
3721
+ #: core/class-settings.php:600
3722
+ msgid ""
3723
+ "We expect that a membership plugin supports the 'redirect_to' parameter for the URLs "
3724
+ "below to work. If the plugin does not support them, these settings will not function as "
3725
+ "expected. Please contact the membership plugin and ask them to support the WP standard "
3726
+ "'redirect_to' query parameter."
3727
+ msgstr ""
3728
+
3729
+ #: core/class-settings.php:603
3730
  msgctxt "admin settings"
3731
  msgid "Registration Settings"
3732
  msgstr ""
3733
 
3734
+ #: core/class-settings.php:604
3735
  msgctxt "admin settings"
3736
  msgid "Require login to post listings?"
3737
  msgstr ""
3738
 
3739
+ #: core/class-settings.php:609
3740
+ msgctxt "admin settings"
3741
+ msgid "Login URL"
3742
+ msgstr ""
3743
+
3744
+ #: core/class-settings.php:612
3745
+ msgctxt "admin settings"
3746
+ msgid ""
3747
+ "URL of your membership plugin's login page. Only enter this if using a membership "
3748
+ "plugin or custom login page."
3749
+ msgstr ""
3750
+
3751
+ #: core/class-settings.php:617
3752
  msgctxt "admin settings"
3753
  msgid "Registration URL"
3754
  msgstr ""
3755
 
3756
+ #: core/class-settings.php:620
3757
  msgctxt "admin settings"
3758
  msgid ""
3759
+ "URL of your membership plugin's registration page. Only enter this if using a "
3760
+ "membership plugin or custom registration page."
3761
  msgstr ""
3762
 
3763
+ #: core/class-settings.php:624
3764
  msgctxt "admin settings"
3765
  msgid "Image"
3766
  msgstr ""
3767
 
3768
+ #: core/class-settings.php:625
3769
  msgctxt "admin settings"
3770
  msgid ""
3771
+ "Any changes to these settings will affect new listings only. Existing listings will not "
3772
+ "be affected. If you wish to change existing listings, you will need to re-upload the "
3773
+ "image(s) on that listing after changing things here."
 
3774
  msgstr ""
3775
 
3776
+ #: core/class-settings.php:626
3777
  msgctxt "admin settings"
3778
  msgid "Image Settings"
3779
  msgstr ""
3780
 
3781
+ #: core/class-settings.php:627
3782
  msgctxt "admin settings"
3783
  msgid "Allow images?"
3784
  msgstr ""
3785
 
3786
+ #: core/class-settings.php:629
3787
  msgctxt "admin settings"
3788
  msgid "Min Image File Size (KB)"
3789
  msgstr ""
3790
 
3791
+ #: core/class-settings.php:630
3792
  msgctxt "admin settings"
3793
  msgid "Max Image File Size (KB)"
3794
  msgstr ""
3795
 
3796
+ #: core/class-settings.php:632
3797
  msgctxt "admin settings"
3798
  msgid "Min image width (px)"
3799
  msgstr ""
3800
 
3801
+ #: core/class-settings.php:633
3802
  msgctxt "admin settings"
3803
  msgid "Min image height (px)"
3804
  msgstr ""
3805
 
3806
+ #: core/class-settings.php:635
3807
  msgctxt "admin settings"
3808
  msgid "Max image width (px)"
3809
  msgstr ""
3810
 
3811
+ #: core/class-settings.php:636
3812
  msgctxt "admin settings"
3813
  msgid "Max image height (px)"
3814
  msgstr ""
3815
 
3816
+ #: core/class-settings.php:638
3817
  msgctxt "admin settings"
3818
  msgid "Turn on thickbox/lightbox?"
3819
  msgstr ""
3820
 
3821
+ #: core/class-settings.php:638
3822
  msgctxt "admin settings"
3823
+ msgid "Uncheck if it conflicts with other elements or plugins installed on your site"
 
3824
  msgstr ""
3825
 
3826
+ #: core/class-settings.php:640
3827
  msgctxt "admin settings"
3828
  msgid "Thumbnails"
3829
  msgstr ""
3830
 
3831
+ #: core/class-settings.php:641
3832
  msgctxt "admin settings"
3833
  msgid "Thumbnail width (px)"
3834
  msgstr ""
3835
 
3836
+ #: core/class-settings.php:642
3837
  msgctxt "admin settings"
3838
  msgid "Thumbnail height (px)"
3839
  msgstr ""
3840
 
3841
+ #: core/class-settings.php:645
3842
  msgctxt "admin settings"
3843
  msgid "Crop thumbnails to exact dimensions?"
3844
  msgstr ""
3845
 
3846
+ #: core/class-settings.php:648
3847
  msgctxt "admin settings"
3848
  msgid ""
3849
+ "When enabled images will match exactly the dimensions above but part of the image may be "
3850
+ "cropped out. If disabled, image thumbnails will be resized to match the specified width "
3851
+ "and their height will be adjusted proportionally. Depending on the uploaded images, "
3852
+ "thumbnails may have different heights."
3853
  msgstr ""
3854
 
3855
+ #: core/class-settings.php:654
3856
  msgctxt "admin settings"
3857
  msgid "Number of free images"
3858
  msgstr ""
3859
 
3860
+ #: core/class-settings.php:659
3861
  msgctxt "admin settings"
3862
  msgid ""
3863
+ "For paid listing images, configure that by adding or editing a <a>Fee Plan</a> instead "
3864
+ "of this setting, which is ignored for paid listings."
3865
  msgstr ""
3866
 
3867
+ #: core/class-settings.php:660
3868
  msgctxt "admin settings"
3869
  msgid "Use default picture for listings with no picture?"
3870
  msgstr ""
3871
 
3872
+ #: core/class-settings.php:661
3873
  msgctxt "admin settings"
3874
  msgid "Show Thumbnail on main listings page?"
3875
  msgstr ""
3876
 
3877
+ #: core/class-settings.php:717
3878
  msgctxt "admin settings"
3879
  msgid ""
3880
+ "Could not copy the AJAX compatibility plugin \"%s\". Compatibility mode was not "
3881
+ "activated."
3882
  msgstr ""
3883
 
3884
+ #: core/class-settings.php:725
3885
  msgctxt "admin settings"
3886
  msgid ""
3887
+ "Could not activate AJAX Compatibility mode: the directory \"%s\" could not be created."
 
3888
  msgstr ""
3889
 
3890
+ #: core/class-settings.php:734
3891
  msgctxt "admin settings"
3892
  msgid ""
3893
+ "Could not remove the \"Business Directory Plugin - AJAX Compatibility Module\". Please "
3894
+ "remove the file \"%s\" manually or deactivate the plugin."
3895
  msgstr ""
3896
 
3897
+ #: core/class-settings.php:1033
3898
  msgctxt "settings"
3899
  msgid "Deactivate License"
3900
  msgstr ""
3901
 
3902
+ #: core/class-settings.php:1035
3903
  msgctxt "settings"
3904
  msgid "Deactivating license..."
3905
  msgstr ""
3906
 
3907
+ #: core/class-settings.php:1038
3908
  msgctxt "settings"
3909
  msgid "Activate License"
3910
  msgstr ""
3911
 
3912
+ #: core/class-settings.php:1040
3913
  msgctxt "settings"
3914
  msgid "Activating license..."
3915
  msgstr ""
3916
 
3917
+ #: core/class-settings.php:1064
3918
  msgctxt "admin settings"
3919
  msgid "Valid placeholders: %s"
3920
  msgstr ""
3921
 
3922
+ #: core/class-settings.php:1098
3923
  msgctxt "settings email"
3924
  msgid "Click to edit e-mail"
3925
  msgstr ""
3926
 
3927
+ #: core/class-settings.php:1099
3928
  msgctxt "settings email"
3929
  msgid "Click to edit"
3930
  msgstr ""
3931
 
3932
+ #: core/class-settings.php:1112
3933
  msgctxt "settings email"
3934
  msgid "E-Mail Subject"
3935
  msgstr ""
3936
 
3937
+ #: core/class-settings.php:1123
3938
  msgctxt "settings email"
3939
  msgid "E-Mail Body"
3940
  msgstr ""
3941
 
3942
+ #: core/class-settings.php:1134
3943
  msgctxt "settings email"
3944
  msgid "You can use the following placeholders:"
3945
  msgstr ""
3946
 
3947
+ #: core/class-settings.php:1157
3948
  msgctxt "settings email"
3949
  msgid "Preview e-mail"
3950
  msgstr ""
3951
 
3952
+ #: core/class-settings.php:1158
3953
  msgctxt "settings email"
3954
  msgid "Cancel"
3955
  msgstr ""
3956
 
3957
+ #: core/class-settings.php:1159
3958
  msgctxt "settings email"
3959
  msgid "Save Changes"
3960
  msgstr ""
3961
 
3962
+ #: core/class-settings.php:1178
3963
  msgctxt "settings email"
3964
  msgid "Site title"
3965
  msgstr ""
3966
 
3967
+ #: core/class-settings.php:1181
3968
  msgctxt "settings email"
3969
  msgid "Site title (with link)"
3970
  msgstr ""
3971
 
3972
+ #: core/class-settings.php:1184
3973
  msgctxt "settings email"
3974
  msgid "Site address (with link)"
3975
  msgstr ""
3976
 
3977
+ #: core/class-settings.php:1187
3978
  msgctxt "settings email"
3979
  msgid "Directory URL (with link)"
3980
  msgstr ""
3981
 
3982
+ #: core/class-settings.php:1190
3983
  msgctxt "settings email"
3984
  msgid "Current date"
3985
  msgstr ""
3986
 
3987
+ #: core/class-settings.php:1193
3988
  msgctxt "settings email"
3989
  msgid "Current time"
3990
  msgstr ""
4160
  #: core/fieldtypes/class-fieldtypes-textarea.php:43
4161
  msgctxt "form-fields admin"
4162
  msgid ""
4163
+ "<b>Advanced users only!</b> Unless you've been told to change this, don't switch it "
4164
+ "unless you know what you're doing."
4165
  msgstr ""
4166
 
4167
  #: core/fieldtypes/class-fieldtypes-textarea.php:44
4380
  msgid "Transaction Key is missing."
4381
  msgstr ""
4382
 
4383
+ #: core/gateways-authorize-net.php:92
4384
  msgctxt "authorize-net"
4385
  msgid ""
4386
+ "The payment gateway didn't accept your credit card or billing information. The following "
4387
+ "reason was given: \"%s\"."
4388
  msgstr ""
4389
 
4390
+ #: core/gateways-authorize-net.php:96
4391
  msgctxt "authorize-net"
4392
  msgid ""
4393
+ "Your payment is being held for review by the payment gateway. The following reason was "
4394
+ "given: \"%s\"."
4395
  msgstr ""
4396
 
4397
+ #: core/gateways-authorize-net.php:99 core/gateways-authorize-net.php:122
4398
  msgctxt "authorize-net"
4399
  msgid "Payment was rejected. The following reason was given: \"%s\"."
4400
  msgstr ""
4401
 
4402
+ #: core/gateways-authorize-net.php:116
4403
+ msgctxt "authorize-net"
4404
+ msgid "Setup fee"
4405
+ msgstr ""
4406
+
4407
+ #: core/gateways-authorize-net.php:173
4408
  msgctxt "authorize-net"
4409
  msgid "Could not process payment."
4410
  msgstr ""
4456
  #: core/gateways-googlewallet.php:68
4457
  msgctxt "google-wallet"
4458
  msgid ""
4459
+ "For recurring payments to work you need to <a>specify a postback URL</a> in your Google "
4460
+ "Wallet settings."
4461
  msgstr ""
4462
 
4463
  #: core/gateways-googlewallet.php:69
4495
  #: core/gateways-googlewallet.php:233
4496
  msgctxt "google-wallet"
4497
  msgid ""
4498
+ "Payment was rejected because internal data does not look like a valid Google Wallet "
4499
+ "transaction."
4500
  msgstr ""
4501
 
4502
  #: core/gateways-googlewallet.php:248
4514
  msgid "Destination dir \"%s\" is not writable."
4515
  msgstr ""
4516
 
4517
+ #: core/helpers/class-themes-updater.php:126
4518
+ msgctxt "themes"
4519
+ msgid "Updating theme..."
4520
+ msgstr ""
4521
+
4522
+ #: core/helpers/class-themes-updater.php:127
4523
+ msgctxt "themes"
4524
+ msgid "Theme updated."
4525
+ msgstr ""
4526
+
4527
+ #: core/helpers/class-themes-updater.php:129
4528
+ msgctxt "themes"
4529
+ msgid "New version available (<b>%s</b>). <a>Update now.</a>"
4530
+ msgstr ""
4531
+
4532
+ #: core/helpers/class-themes-updater.php:157
4533
+ msgctxt "themes"
4534
+ msgid "Could not update theme: %s"
4535
+ msgstr ""
4536
+
4537
+ #: core/helpers/class-themes-updater.php:163
4538
+ msgctxt "themes"
4539
+ msgid "Theme was updated sucessfully."
4540
+ msgstr ""
4541
+
4542
  #: core/installer.php:38
4543
  msgctxt "default category name"
4544
  msgid "General"
4545
  msgstr ""
4546
 
4547
+ #: core/installer.php:464
4548
  msgctxt "installer"
4549
  msgid ""
4550
  "<b>Business Directory Plugin - Regions Module</b> was disabled because it is "
4551
+ "incompatible with the current version of Business Directory. Please update the Regions "
4552
+ "module."
4553
  msgstr ""
4554
 
4555
+ #: core/installer.php:530
4556
  msgctxt "installer"
4557
  msgid "Cleaning up listing fees information... %d/%d"
4558
  msgstr ""
4559
 
4560
+ #: core/installer.php:580
4561
  msgctxt "installer"
4562
  msgid "Migrating previous transactions to new Payments API... %d/%d"
4563
  msgstr ""
4564
 
4565
+ #: core/installer.php:609
4566
  msgctxt "installer"
4567
  msgid "Initial listing payment (BD < 3.4)"
4568
  msgstr ""
4569
 
4570
+ #: core/installer.php:620
4571
  msgctxt "installer"
4572
  msgid "Listing edit payment (BD < 3.4)"
4573
  msgstr ""
4574
 
4575
+ #: core/installer.php:641
4576
  msgctxt "installer"
4577
  msgid "Renewal fee \"%s\" for category \"%s\""
4578
  msgstr ""
4579
 
4580
+ #: core/installer.php:660
4581
  msgctxt "installer"
4582
  msgid "Listing upgrade to featured"
4583
  msgstr ""
4584
 
4585
+ #: core/installer.php:902
4586
  msgid "Business Directory - Manual Upgrade Required"
4587
  msgstr ""
4588
 
4589
+ #: core/installer.php:904
4590
  msgid ""
4591
+ "Business Directory features are currently disabled because the plugin needs to perform a "
4592
+ "manual upgrade before continuing."
4593
  msgstr ""
4594
 
4595
+ #: core/installer.php:906
4596
  msgid "Perform Manual Upgrade"
4597
  msgstr ""
4598
 
4599
+ #: core/installer.php:922 core/installer.php:923 core/installer.php:934
4600
  msgid "Business Directory - Manual Upgrade"
4601
  msgstr ""
4602
 
4603
+ #: core/installer.php:938
4604
  msgid ""
4605
+ "Business Directory features are currently disabled because the plugin needs to perform a "
4606
+ "manual upgrade before it can be used."
4607
  msgstr ""
4608
 
4609
+ #: core/installer.php:940
4610
  msgid "Click \"Start Upgrade\" and wait until the process finishes."
4611
  msgstr ""
4612
 
4613
+ #: core/installer.php:943
4614
  msgctxt "manual-upgrade"
4615
  msgid "Start Upgrade"
4616
  msgstr ""
4617
 
4618
+ #: core/installer.php:945
4619
  msgctxt "manual-upgrade"
4620
  msgid "Pause Upgrade"
4621
  msgstr ""
4622
 
4623
+ #: core/installer.php:951
4624
  msgctxt "manual-upgrade"
4625
+ msgid "The upgrade was sucessfully performed. Business Directory Plugin is now available."
 
 
4626
  msgstr ""
4627
 
4628
+ #: core/installer.php:954
4629
  msgctxt "manual-upgrade"
4630
  msgid "Go to \"Directory Admin\""
4631
  msgstr ""
4650
  msgid "No license key provided"
4651
  msgstr ""
4652
 
 
 
 
 
 
 
 
 
 
 
4653
  #: core/licensing.php:169
4654
  msgctxt "licensing"
4655
  msgid "Deactivation failed"
4663
  #: core/licensing.php:233
4664
  msgctxt "licensing"
4665
  msgid ""
4666
+ "The following premium modules will not work until a valid license key is provided. Go to "
4667
+ "<a>Manage Options - Licenses</a> to enter your license information."
 
4668
  msgstr ""
4669
 
4670
  #: core/licensing.php:254
4675
  #: core/licensing.php:255
4676
  msgctxt "licensing"
4677
  msgid ""
4678
+ "The license key for <span class=\"module-name\">%s %s</span> has expired. The module "
4679
+ "will continue to work but you will not receive any more updates until the license is "
4680
+ "renewed."
4681
  msgstr ""
4682
 
4683
  #: core/licensing.php:259
4690
  msgid "Renew License Key"
4691
  msgstr ""
4692
 
 
 
 
 
 
 
 
 
 
 
4693
  #: core/licensing.php:348
4694
  msgctxt "licensing"
4695
  msgid "Could not deactivate license: %s."
4705
  msgid "Free Listing"
4706
  msgstr ""
4707
 
4708
+ #: core/payment.php:144
4709
  msgctxt "fees-api"
4710
  msgid "Fee label is required."
4711
  msgstr ""
4712
 
4713
+ #: core/payment.php:147
4714
  msgctxt "fees-api"
4715
  msgid "Fee amount must be a non-negative decimal number."
4716
  msgstr ""
4717
 
4718
+ #: core/payment.php:150 core/payment.php:153
4719
  msgctxt "fees-api"
4720
  msgid "Fee must apply to at least one category."
4721
  msgstr ""
4722
 
4723
+ #: core/payment.php:156
4724
  msgctxt "fees-api"
4725
  msgid "Fee allowed images must be a non-negative integer."
4726
  msgstr ""
4727
 
4728
+ #: core/payment.php:159
4729
  msgctxt "fees-api"
4730
  msgid "Fee listing run must be a non-negative integer."
4731
  msgstr ""
4732
 
4733
+ #: core/payment.php:164
4734
  msgctxt "fees-api"
4735
  msgid "Fee listing duration must be a number less than 10 years (3650 days)."
4736
  msgstr ""
4737
 
4738
+ #: core/payment.php:339
4739
  msgctxt "payments-api"
4740
  msgid ""
4741
+ "You are offering featured listings but have payments turned off. Go to <a href=\"%s"
4742
+ "\">Manage Options - Payment</a> to change the payment settings. Until you change this, "
4743
+ "the <i>Upgrade to Featured</i> option will be disabled."
 
4744
  msgstr ""
4745
 
4746
+ #: core/payment.php:357
4747
  msgctxt "payments-api"
4748
  msgid ""
4749
+ "The <b>%s</b> gateway is active but not properly configured. The gateway won't be "
4750
+ "available until the following problems are fixed: <b>%s</b>. <br/> Check the <a href=\"%s"
4751
+ "\">payment settings</a>."
4752
  msgstr ""
4753
 
4754
+ #: core/payment.php:367
4755
  msgctxt "admin"
4756
  msgid ""
4757
+ "You have payments turned on but no gateway is active and properly configured. Go to <a "
4758
+ "href=\"%s\">Manage Options - Payment</a> to change the payment settings. Until you "
4759
+ "change this, the directory will operate in <i>Free Mode</i>."
 
4760
  msgstr ""
4761
 
4762
+ #: core/payment.php:371
4763
  msgid ""
4764
+ "BD detected PayFast and another gateway were enabled. This setup is not recommended due "
4765
+ "to PayFast supporting only ZAR and the other gateways not supporting this currency."
 
4766
  msgstr ""
4767
 
4768
+ #: core/payment.php:375
4769
  msgid ""
4770
+ "You have recurring renewal of listing fees enabled but the payment gateways installed "
4771
+ "don't support recurring payments. Until a gateway that supports recurring payments (such "
4772
+ "as PayPal) is enabled automatic renewals will be disabled."
 
4773
  msgstr ""
4774
 
4775
+ #: core/payment.php:380
4776
  msgid ""
4777
+ "Due to Google Wallet limitations only monthly (30 days) recurring fees are supported by "
4778
+ "the gateway. All other fees will be charged as non-recurring."
4779
  msgstr ""
4780
 
4781
+ #: core/payment.php:413
4782
  msgctxt "payments-api"
4783
  msgid "Checkout"
4784
  msgstr ""
4785
 
4786
+ #: core/payment.php:414
4787
  msgctxt "payments-api"
4788
  msgid "Pay %1$s through %2$s"
4789
  msgstr ""
4790
 
4791
+ #: core/payment.php:421
4792
  msgctxt "payments-api"
4793
  msgid "Your transaction has been approved."
4794
  msgstr ""
4795
 
4796
+ #: core/payment.php:602
4797
  msgctxt "payments"
4798
  msgid "Payment Details"
4799
  msgstr ""
4800
 
4801
+ #: core/payment.php:629
4802
  msgctxt "checkout"
4803
  msgid "Payment Method"
4804
  msgstr ""
4805
 
4806
+ #: core/payment.php:658
4807
  msgctxt "payment"
4808
  msgid "Return to Directory."
4809
  msgstr ""
4810
 
4811
+ #: core/payment.php:664
4812
  msgctxt "payments"
4813
  msgid ""
4814
+ "Your payment is being processed by the payment gateway. Please reload this page in a "
4815
+ "moment to see if the status has changed or contact the site administrator."
 
4816
  msgstr ""
4817
 
4818
+ #: core/payment.php:667
4819
  msgctxt "payments"
4820
  msgid ""
4821
+ "The payment has been rejected by the payment gateway. Please contact the site "
4822
+ "administrator if you think there is an error or click \"Change Payment Method\" to "
4823
+ "select another payment method and try again."
4824
  msgstr ""
4825
 
4826
+ #: core/payment.php:668
4827
  msgctxt "payments"
4828
  msgid "Change Payment Method"
4829
  msgstr ""
4830
 
4831
+ #: core/payment.php:670
4832
  msgctxt "payments"
4833
  msgid ""
4834
+ "The payment has been rejected by the payment gateway. Please contact the site "
4835
+ "administrator if you think there is an error."
4836
  msgstr ""
4837
 
4838
+ #: core/payment.php:673
4839
  msgctxt "payments"
4840
  msgid "The payment has been canceled at your request."
4841
  msgstr ""
4842
 
4843
+ #: core/payment.php:769
4844
  msgctxt "admin"
4845
  msgid "Pending Abandonment"
4846
  msgstr ""
4847
 
4848
+ #: core/payment.php:774
4849
  msgctxt "admin"
4850
  msgid "Abandoned"
4851
  msgstr ""
4852
 
4853
+ #: core/templates/listing-sticky-tag.tpl.php:3 core/templates/listing-sticky-tag.tpl.php:4
4854
+ #: core/templates-listings.php:60
4855
  msgctxt "templates"
4856
  msgid "Featured Listing"
4857
  msgstr ""
4858
 
4859
+ #: core/templates/listings.tpl.php:6 templates/businessdirectory-listings.tpl.php:27
4860
+ #: templates/search.tpl.php:21
4861
  msgctxt "templates"
4862
  msgid "No listings found."
4863
  msgstr ""
4864
 
4865
+ #: core/templates/listings.tpl.php:17 templates/businessdirectory-listings.tpl.php:38
 
4866
  msgctxt "templates"
4867
  msgid "&laquo; Previous "
4868
  msgstr ""
4869
 
4870
+ #: core/templates/listings.tpl.php:18 templates/businessdirectory-listings.tpl.php:39
 
4871
  msgctxt "templates"
4872
  msgid "Next &raquo;"
4873
  msgstr ""
4897
  msgid "(Reset)"
4898
  msgstr ""
4899
 
4900
+ #: core/themes.php:587
4901
  msgctxt "themes"
4902
  msgid "ZIP file is not a valid BD theme file."
4903
  msgstr ""
4904
 
4905
+ #: core/themes.php:593
4906
  msgctxt "themes"
4907
  msgid "Could not create themes directory."
4908
  msgstr ""
4909
 
4910
+ #: core/themes.php:601
4911
  msgctxt "themes"
4912
  msgid "Could not remove previous theme directory \"%s\"."
4913
  msgstr ""
4914
 
4915
+ #: core/themes.php:607
4916
  msgctxt "themes"
4917
  msgid "Could not move new theme into theme directory."
4918
  msgstr ""
4919
 
4920
+ #: core/utils.php:106
4921
  msgctxt "utils"
4922
+ msgid "POSTed data exceeds PHP config. maximum. See \"post_max_size\" directive."
 
4923
  msgstr ""
4924
 
4925
+ #: core/utils.php:159
4926
  msgctxt "utils"
4927
  msgid "File size (%s) exceeds maximum file size of %s"
4928
  msgstr ""
4929
 
4930
+ #: core/utils.php:167
4931
  msgctxt "utils"
4932
  msgid "File size (%s) is inferior to the required minimum file size of %s"
4933
  msgstr ""
4934
 
4935
+ #: core/utils.php:176 core/utils.php:183
4936
  msgctxt "utils"
4937
  msgid "File type \"%s\" is not allowed"
4938
  msgstr ""
4939
 
4940
+ #: core/utils.php:190
4941
  msgctxt "utils"
4942
  msgid "Unkown error while uploading file."
4943
  msgstr ""
4944
 
4945
+ #: core/utils.php:209
4946
  msgctxt "utils"
4947
  msgid "Uploaded file is not an image"
4948
  msgstr ""
4949
 
4950
+ #: core/utils.php:218
4951
  msgctxt "utils"
4952
  msgid "Image width (%s px) is inferior to minimum required width of %s px."
4953
  msgstr ""
4954
 
4955
+ #: core/utils.php:224
4956
  msgctxt "utils"
4957
  msgid "Image height (%s px) is inferior to minimum required height of %s px."
4958
  msgstr ""
4959
 
4960
+ #: core/utils.php:230
4961
  msgctxt "utils"
4962
  msgid "Image width (%s px) is greater than maximum allowed width of %s px."
4963
  msgstr ""
4964
 
4965
+ #: core/utils.php:236
4966
  msgctxt "utils"
4967
  msgid "Image height (%s px) is greater than maximum required height of %s px."
4968
  msgstr ""
4969
 
4970
+ #: core/utils.php:250
4971
  msgctxt "utils"
4972
  msgid "Error while uploading file"
4973
  msgstr ""
4985
  #: core/view-checkout.php:103
4986
  msgctxt "checkout"
4987
  msgid ""
4988
+ "Payments are not allowed on the non-secure version of this site. Please <a>continue to "
4989
+ "the secure server to proceed with your payment</a>."
4990
  msgstr ""
4991
 
4992
  #: core/view-checkout.php:118
4993
  msgctxt "checkout"
4994
  msgid ""
4995
+ "Your payment is being verified. This usually takes a few minutes but can take up to 24 "
4996
+ "hours."
4997
  msgstr ""
4998
 
4999
  #: core/view-checkout.php:126 core/view-checkout.php:147
5093
  #: core/view-renew-listing.php:21
5094
  msgctxt "renewal"
5095
  msgid ""
5096
+ "Your renewal ID is invalid. Please use the URL you were given on the renewal e-mail "
5097
+ "message."
5098
  msgstr ""
5099
 
5100
  #: core/view-renew-listing.php:47
5120
  #: core/view-renew-listing.php:92
5121
  msgctxt "renew"
5122
  msgid ""
5123
+ "Because you are on a recurring fee plan you don't have to renew your listing right now "
5124
+ "as this will be handled automatically when renewal comes."
5125
  msgstr ""
5126
 
5127
  #: core/view-renew-listing.php:94
5142
  #: core/view-renew-listing.php:102
5143
  msgctxt "renew"
5144
  msgid ""
5145
+ "However, if you want to cancel your subscription you can do that on this page. When the "
5146
+ "renewal time comes you'll be able to change your settings again."
 
5147
  msgstr ""
5148
 
5149
  #: core/view-submit-listing.php:29
5150
  msgctxt "templates"
5151
  msgid ""
5152
+ "There are no categories assigned to the business directory yet. You need to assign some "
5153
+ "categories to the business directory. Only admins can see this message. Regular users "
5154
+ "are seeing a message that they cannot add their listing at this time. Listings cannot be "
5155
+ "added until you assign categories to the business directory."
 
5156
  msgstr ""
5157
 
5158
  #: core/view-submit-listing.php:31
5159
  msgctxt "templates"
5160
  msgid ""
5161
+ "Your listing cannot be added at this time. Please try again later. If this is not the "
5162
+ "first time you see this warning, please ask the site administrator to set up one or more "
5163
+ "categories inside the Directory."
5164
  msgstr ""
5165
 
5166
  #: core/view-submit-listing.php:43
5180
 
5181
  #: core/view-submit-listing.php:65
5182
  msgctxt "templates"
5183
+ msgid "You are logged in as an administrator. Any payment steps will be skipped."
 
5184
  msgstr ""
5185
 
5186
  #: core/view-submit-listing.php:199
5213
  msgid "I agree to the Terms and Conditions"
5214
  msgstr ""
5215
 
5216
+ #: core/view-submit-listing.php:406
5217
  msgctxt "listings"
5218
  msgid "Fee \"%s\" for category \"%s\"%s"
5219
  msgstr ""
5220
 
5221
+ #: core/view-submit-listing.php:409
5222
  msgctxt "listings"
5223
  msgid "(recurring)"
5224
  msgstr ""
5225
 
5226
+ #: core/view-submit-listing.php:419 core/view-upgrade-listing.php:54
5227
  msgctxt "submit"
5228
  msgid "Listing upgrade to featured"
5229
  msgstr ""
5230
 
5231
+ #: core/view-submit-listing.php:452
5232
  msgctxt "submit_state"
5233
  msgid "Invalid submit state."
5234
  msgstr ""
5248
  msgid "Return to listing."
5249
  msgstr ""
5250
 
5251
+ #: core/views.php:30
5252
  msgid ""
5253
+ "You need to create a page with the [businessdirectory] shortcode for the Business "
5254
+ "Directory plugin to work correctly."
5255
  msgstr ""
5256
 
5257
+ #: core/views.php:32
5258
  msgid "The directory is temporarily disabled."
5259
  msgstr ""
5260
 
5261
+ #: core/views.php:190
5262
  msgctxt "preview"
5263
  msgid "This is just a preview. The listing has not been published yet."
5264
  msgstr ""
5265
 
5266
+ #: core/views.php:342
5267
  msgctxt "templates"
5268
  msgid "Listings tagged: %s"
5269
  msgstr ""
5270
 
5271
+ #: core/views.php:459
5272
  msgctxt "templates"
5273
  msgid ""
5274
+ "There are no categories assigned to the business directory yet. You need to assign some "
5275
+ "categories to the business directory. Only admins can see this message. Regular users "
5276
+ "are seeing a message that there are currently no listings in the directory. Listings "
5277
+ "cannot be added until you assign categories to the business directory."
 
5278
  msgstr ""
5279
 
5280
+ #: core/views.php:461
5281
  msgctxt "templates"
5282
  msgid "There are currently no listings in the directory."
5283
  msgstr ""
5284
 
5285
+ #: core/views.php:479
5286
  msgctxt "templates"
5287
  msgid ""
5288
+ "You have \"Hide Empty Categories\" on and some categories that don't have listings in "
5289
+ "them. That means they won't show up on the front end of your site. If you didn't want "
5290
+ "that, click <a>here</a> to change the setting."
5291
  msgstr ""
5292
 
5293
  #: core/widget-featured-listings.php:11
5533
  #: templates/delete-listing-confirm.tpl.php:7
5534
  msgctxt "delete listing"
5535
  msgid ""
5536
+ "Your listing is associated to a recurring payment. If you don't cancel the recurring "
5537
+ "payment before deleting the listing, you might be charged for additional periods even "
5538
+ "though your listing won't be available."
5539
  msgstr ""
5540
 
5541
  #: templates/delete-listing-confirm.tpl.php:12
5542
  msgctxt "delete listing"
5543
  msgid ""
5544
+ "Please visit <a>Manage recurring payments</a> to review your current recurring payments."
 
5545
  msgstr ""
5546
 
5547
  #: templates/delete-listing-confirm.tpl.php:18
5567
  #: templates/email/listing-added.tpl.php:2
5568
  msgctxt "emails"
5569
  msgid ""
5570
+ "A new listing has been submitted to the directory. Listing details can be found below."
 
5571
  msgstr ""
5572
 
5573
+ #: templates/email/listing-added.tpl.php:7 templates/email/listing-edited.tpl.php:7
 
5574
  msgctxt "notify email"
5575
  msgid "ID"
5576
  msgstr ""
5577
 
5578
+ #: templates/email/listing-added.tpl.php:10 templates/email/listing-edited.tpl.php:10
 
5579
  msgctxt "notify email"
5580
  msgid "Title"
5581
  msgstr ""
5582
 
5583
+ #: templates/email/listing-added.tpl.php:13 templates/email/listing-edited.tpl.php:13
 
5584
  msgctxt "notify email"
5585
  msgid "URL"
5586
  msgstr ""
5587
 
5588
+ #: templates/email/listing-added.tpl.php:13 templates/email/listing-edited.tpl.php:13
 
5589
  msgctxt "notify email"
5590
  msgid "(not published yet)"
5591
  msgstr ""
5592
 
5593
+ #: templates/email/listing-added.tpl.php:16 templates/email/listing-edited.tpl.php:16
 
5594
  msgctxt "notify email"
5595
  msgid "Categories"
5596
  msgstr ""
5597
 
5598
+ #: templates/email/listing-added.tpl.php:19 templates/email/listing-edited.tpl.php:19
 
5599
  msgctxt "notify email"
5600
  msgid "Posted By"
5601
  msgstr ""
5603
  #: templates/email/listing-edited.tpl.php:2
5604
  msgctxt "emails"
5605
  msgid ""
5606
+ "A listing in the directory has been edited recently. Listing details can be found below."
 
5607
  msgstr ""
5608
 
5609
  #: templates/listing-contactform.tpl.php:9
5614
  #: templates/listing-contactform.tpl.php:18
5615
  msgctxt "templates"
5616
  msgid ""
5617
+ "You are currently logged in as %s. Your message will be sent using your logged in "
5618
+ "contact email."
5619
  msgstr ""
5620
 
5621
  #: templates/listing-contactform.tpl.php:23
5651
  #: templates/manage-listings.tpl.php:6
5652
  msgctxt "templates"
5653
  msgid ""
5654
+ "Your current listings are shown below. To edit a listing click the edit button. To "
5655
+ "delete a listing click the delete button."
5656
  msgstr ""
5657
 
5658
  #: templates/manage-listings.tpl.php:9
5660
  msgid "You do not currently have any listings in the directory."
5661
  msgstr ""
5662
 
5663
+ #: templates/manage-listings.tpl.php:11 templates/search.tpl.php:24
5664
  msgctxt "templates"
5665
  msgid "Return to directory"
5666
  msgstr ""
5762
  msgstr[0] ""
5763
  msgstr[1] ""
5764
 
5765
+ #: templates/parts/listing-buttons.tpl.php:4 templates/parts/listing-buttons.tpl.php:18
 
5766
  #: templates/parts/listing-buttons.tpl.php:22
5767
  msgctxt "templates"
5768
  msgid "Edit"
5773
  msgid "Upgrade Listing"
5774
  msgstr ""
5775
 
5776
+ #: templates/parts/listing-buttons.tpl.php:10 templates/parts/listing-buttons.tpl.php:19
 
5777
  #: templates/parts/listing-buttons.tpl.php:23
5778
  msgctxt "templates"
5779
  msgid "Delete"
5780
  msgstr ""
5781
 
5782
+ #: templates/parts/listing-buttons.tpl.php:10 templates/parts/listing-buttons.tpl.php:23
 
5783
  msgctxt "templates"
5784
  msgid "Are you sure you wish to delete this listing?"
5785
  msgstr ""
5788
  msgid "← Back to Directory"
5789
  msgstr ""
5790
 
5791
+ #: templates/parts/listing-buttons.tpl.php:17 templates/parts/listing-buttons.tpl.php:21
 
5792
  msgctxt "templates"
5793
  msgid "View"
5794
  msgstr ""
5796
  #: templates/parts/login-required.tpl.php:5
5797
  msgctxt "templates"
5798
  msgid ""
5799
+ "You are not currently logged in. Please login or register first. When registering, you "
5800
+ "will receive an activation email. Be sure to check your spam if you don't see it in your "
5801
+ "email within 60 minutes."
5802
  msgstr ""
5803
 
5804
  #: templates/parts/login-required.tpl.php:10
5848
 
5849
  #: templates/renew-listing.tpl.php:10
5850
  msgctxt "templates"
5851
+ msgid "You are about to renew your listing \"%s\" publication inside category \"%s\"."
 
 
5852
  msgstr ""
5853
 
5854
  #: templates/renew-listing.tpl.php:15
5855
  msgctxt "WPBDM"
5856
  msgid ""
5857
+ "Please select a fee option or click \"Do not renew my listing\" to cancel your renewal."
 
5858
  msgstr ""
5859
 
5860
+ #: templates/renew-listing.tpl.php:22 templates/submit-listing/category-selection.tpl.php:8
 
5861
  #: templates/submit-listing/fee-selection.tpl.php:37
5862
+ #: templates/submit-listing/images.tpl.php:36
5863
  #: templates/submit-listing/listing-fields.tpl.php:34
5864
  msgctxt "templates"
5865
  msgid "Continue"
5875
  msgid "Do not renew my listing"
5876
  msgstr ""
5877
 
5878
+ #: templates/search-form.tpl.php:3
 
 
 
 
 
 
 
 
 
 
5879
  msgctxt "templates"
5880
  msgid "Find a listing"
5881
  msgstr ""
5882
 
5883
+ #: templates/search-form.tpl.php:14
5884
  msgctxt "search"
5885
  msgid "Clear"
5886
  msgstr ""
5887
 
5888
+ #: templates/search-form.tpl.php:15 templates/search.tpl.php:6
5889
+ msgctxt "search"
5890
+ msgid "Search"
5891
+ msgstr ""
5892
+
5893
+ #: templates/search.tpl.php:14
5894
  msgctxt "search"
5895
  msgid "Search Results"
5896
  msgstr ""
5952
 
5953
  #: templates/submit-listing/fee-selection.tpl.php:31
5954
  msgctxt "submit"
5955
+ msgid "Would you like to make your fee renew automatically at the end of the period?"
 
5956
  msgstr ""
5957
 
5958
  #: templates/submit-listing/images-single.tpl.php:9
5993
  #: templates/submit-listing/images-upload-form.tpl.php:36
5994
  msgctxt "templates"
5995
  msgid ""
5996
+ "Your image slots are all full at this time. You may click \"Continue\" if you are done, "
5997
+ "or \"Delete Image\" to upload a new image in place of a current one."
 
5998
  msgstr ""
5999
 
6000
  #: templates/submit-listing/images-upload-form.tpl.php:44
6002
  msgid "Image slots available:"
6003
  msgstr ""
6004
 
6005
+ #: templates/submit-listing/images-upload-form.tpl.php:50
6006
+ msgctxt "templates"
6007
+ msgid "Min. file size:"
6008
+ msgstr ""
6009
+
6010
+ #: templates/submit-listing/images-upload-form.tpl.php:56
6011
  msgctxt "templates"
6012
  msgid "Max. file size:"
6013
  msgstr ""
6020
  #: templates/submit-listing/images.tpl.php:7
6021
  msgctxt "templates"
6022
  msgid ""
6023
+ "There is an image pending upload. Would you still like to continue without saving the "
6024
+ "image?"
6025
  msgstr ""
6026
 
6027
  #: templates/submit-listing/images.tpl.php:13
6046
 
6047
  #: vendors/edd/EDD_SL_Plugin_Updater.php:178
6048
  msgid ""
6049
+ "There is a new version of %1$s available. <a target=\"_blank\" class=\"thickbox\" href="
6050
+ "\"%2$s\">View version %3$s details</a>."
6051
  msgstr ""
6052
 
6053
  #: vendors/edd/EDD_SL_Plugin_Updater.php:185
6054
  msgid ""
6055
+ "There is a new version of %1$s available. <a target=\"_blank\" class=\"thickbox\" href="
6056
+ "\"%2$s\">View version %3$s details</a> or <a href=\"%4$s\">update now</a>."
 
6057
  msgstr ""
6058
 
6059
  #: vendors/edd/EDD_SL_Plugin_Updater.php:325
6070
 
6071
  #. Description of the plugin/theme
6072
  msgid ""
6073
+ "Provides the ability to maintain a free or paid business directory on your WordPress "
6074
+ "powered site."
6075
  msgstr ""
6076
 
6077
  #. Author of the plugin/theme
templates/delete-listing-confirm.tpl.php CHANGED
@@ -21,8 +21,8 @@
21
 
22
  <?php wp_nonce_field( 'delete listing ' . $listing->get_id() ); ?>
23
 
24
- <input type="button" onclick="location.href = '<?php echo wpbdp_get_page_link( 'main'); ?>'; return false;" value="<?php _ex('No. Take me back to the directory.', 'delete listing', 'WPBDM' ); ?>" />
25
- <input class="delete-listing-confirm" type="submit" value="<?php _ex( 'Yes. Delete my listing.', 'delete listing', 'WPBDM' ); ?>" />
26
  </form>
27
 
28
  </div>
21
 
22
  <?php wp_nonce_field( 'delete listing ' . $listing->get_id() ); ?>
23
 
24
+ <input type="button" onclick="location.href = '<?php echo wpbdp_get_page_link( 'main'); ?>'; return false;" value="<?php _ex('No. Take me back to the directory.', 'delete listing', 'WPBDM' ); ?>" class="wpbdp-button button" />
25
+ <input class="delete-listing-confirm wpbdp-submit wpbdp-button" type="submit" value="<?php _ex( 'Yes. Delete my listing.', 'delete listing', 'WPBDM' ); ?>" />
26
  </form>
27
 
28
  </div>
templates/listing-contactform.tpl.php CHANGED
@@ -20,16 +20,16 @@
20
  </p>
21
  <?php else: ?>
22
  <p>
23
- <label style="width:4em;"><?php _ex('Your Name', 'templates', 'WPBDM'); ?></label>
24
  <input type="text" class="intextbox" name="commentauthorname" value="<?php echo esc_attr(wpbdp_getv($_POST, 'commentauthorname', '')); ?>" />
25
  </p>
26
  <p>
27
- <label style="width:4em;"><?php _ex("Your Email", 'templates', "WPBDM"); ?></label>
28
  <input type="text" class="intextbox" name="commentauthoremail" value="<?php echo esc_attr(wpbdp_getv($_POST, 'commentauthoremail')); ?>" />
29
  </p>
30
  <?php endif; ?>
31
 
32
- <p><label style="width:4em;"><?php _ex("Message", 'templates', "WPBDM"); ?></label><br/>
33
  <textarea id="wpbdp-contact-form-message" name="commentauthormessage" rows="4" class="intextarea"><?php echo esc_textarea(wpbdp_getv($_POST, 'commentauthormessage', '')); ?></textarea>
34
  </p>
35
 
@@ -37,5 +37,5 @@
37
  <?php echo $recaptcha; ?>
38
  <?php endif; ?>
39
 
40
- <input type="submit" class="submit" value="<?php _ex('Send', 'templates', 'WPBDM'); ?>" />
41
  </form>
20
  </p>
21
  <?php else: ?>
22
  <p>
23
+ <label><?php _ex('Your Name', 'templates', 'WPBDM'); ?></label>
24
  <input type="text" class="intextbox" name="commentauthorname" value="<?php echo esc_attr(wpbdp_getv($_POST, 'commentauthorname', '')); ?>" />
25
  </p>
26
  <p>
27
+ <label><?php _ex("Your Email", 'templates', "WPBDM"); ?></label>
28
  <input type="text" class="intextbox" name="commentauthoremail" value="<?php echo esc_attr(wpbdp_getv($_POST, 'commentauthoremail')); ?>" />
29
  </p>
30
  <?php endif; ?>
31
 
32
+ <p><label><?php _ex("Message", 'templates', "WPBDM"); ?></label><br/>
33
  <textarea id="wpbdp-contact-form-message" name="commentauthormessage" rows="4" class="intextarea"><?php echo esc_textarea(wpbdp_getv($_POST, 'commentauthormessage', '')); ?></textarea>
34
  </p>
35
 
37
  <?php echo $recaptcha; ?>
38
  <?php endif; ?>
39
 
40
+ <input type="submit" class="wpbdp-button wpbdp-submit submit" value="<?php _ex('Send', 'templates', 'WPBDM'); ?>" />
41
  </form>
templates/parts/listing-buttons.tpl.php CHANGED
@@ -1,22 +1,22 @@
1
  <div class="listing-actions cf">
2
  <?php if ($view == 'single'): ?>
3
  <?php if (wpbdp_user_can('edit', $listing_id)): ?>
4
- <form action="<?php echo wpbdp_get_page_link('editlisting', $listing_id); ?>" method="POST"><input type="submit" name="" value="<?php _ex('Edit', 'templates', 'WPBDM'); ?>" class="button edit-listing" /></form>
5
  <?php endif; ?>
6
  <?php if (wpbdp_user_can('upgrade-to-sticky', $listing_id)): ?>
7
- <form action="<?php echo wpbdp_get_page_link('upgradetostickylisting', $listing_id); ?>" method="POST"><input type="submit" name="" value="<?php _ex('Upgrade Listing', 'templates', 'WPBDM'); ?>" class="button upgrade-to-sticky" /></form>
8
  <?php endif; ?>
9
  <?php if (wpbdp_user_can('delete', $listing_id)): ?>
10
- <form action="<?php echo wpbdp_get_page_link('deletelisting', $listing_id); ?>" method="post"><input type="submit" name="" value="<?php _ex('Delete', 'templates', 'WPBDM'); ?>" class="button delete-listing" data-confirmation-message="<?php _ex('Are you sure you wish to delete this listing?', 'templates', 'WPBDM'); ?>" /></form>
11
  <?php endif; ?>
12
  <?php if (wpbdp_get_option('show-directory-button')) :?>
13
- <input type="button" value="<?php echo __('← Back to Directory', 'WPBDM'); ?>" onclick="window.location.href = '<?php echo wpbdp_get_page_link('main'); ?>'" class="wpbdp-hide-on-mobile button back-to-dir" />
14
- <input type="button" value="←" onclick="window.location.href = '<?php echo wpbdp_get_page_link('main'); ?>'" class="wpbdp-show-on-mobile button back-to-dir" />
15
  <?php endif; ?>
16
  <?php elseif ($view == 'excerpt'): ?>
17
- <?php if (wpbdp_user_can('view', $listing_id)): ?><a class="button view-listing" href="<?php the_permalink(); ?>"><?php _ex('View', 'templates', 'WPBDM'); ?></a><?php endif; ?>
18
- <?php if (wpbdp_user_can('edit', $listing_id)): ?><a class="button edit-listing" href="<?php echo wpbdp_get_page_link('editlisting', $listing_id); ?>"><?php _ex('Edit', 'templates', 'WPBDM'); ?></a><?php endif; ?>
19
- <?php if (wpbdp_user_can('delete', $listing_id)): ?><a class="button delete-listing" href="<?php echo wpbdp_get_page_link('deletelisting', $listing_id); ?>"><?php _ex('Delete', 'templates', 'WPBDM'); ?></a><?php endif; ?>
20
 
21
  <!--<?php if (wpbdp_user_can('view', $listing_id)): ?><input type="button" value="<?php _ex('View', 'templates', 'WPBDM'); ?>" class="button view-listing" onclick="window.location.href = '<?php the_permalink(); ?>' " /><?php endif; ?>-->
22
  <!--<?php if (wpbdp_user_can('edit', $listing_id)): ?><form action="<?php echo wpbdp_get_page_link('editlisting', $listing_id); ?>" method="POST"><input type="submit" name="" value="<?php _ex('Edit', 'templates', 'WPBDM'); ?>" class="edit-listing" /></form><?php endif; ?>-->
1
  <div class="listing-actions cf">
2
  <?php if ($view == 'single'): ?>
3
  <?php if (wpbdp_user_can('edit', $listing_id)): ?>
4
+ <form action="<?php echo wpbdp_get_page_link('editlisting', $listing_id); ?>" method="POST"><input type="submit" name="" value="<?php _ex('Edit', 'templates', 'WPBDM'); ?>" class="button wpbdp-button edit-listing" /></form>
5
  <?php endif; ?>
6
  <?php if (wpbdp_user_can('upgrade-to-sticky', $listing_id)): ?>
7
+ <form action="<?php echo wpbdp_get_page_link('upgradetostickylisting', $listing_id); ?>" method="POST"><input type="submit" name="" value="<?php _ex('Upgrade Listing', 'templates', 'WPBDM'); ?>" class="button wpbdp-button upgrade-to-sticky" /></form>
8
  <?php endif; ?>
9
  <?php if (wpbdp_user_can('delete', $listing_id)): ?>
10
+ <form action="<?php echo wpbdp_get_page_link('deletelisting', $listing_id); ?>" method="post"><input type="submit" name="" value="<?php _ex('Delete', 'templates', 'WPBDM'); ?>" class="button wpbdp-button delete-listing" data-confirmation-message="<?php _ex('Are you sure you wish to delete this listing?', 'templates', 'WPBDM'); ?>" /></form>
11
  <?php endif; ?>
12
  <?php if (wpbdp_get_option('show-directory-button')) :?>
13
+ <input type="button" value="<?php echo __('← Back to Directory', 'WPBDM'); ?>" onclick="window.location.href = '<?php echo wpbdp_get_page_link('main'); ?>'" class="wpbdp-hide-on-mobile button back-to-dir wpbdp-button" />
14
+ <input type="button" value="←" onclick="window.location.href = '<?php echo wpbdp_get_page_link('main'); ?>'" class="wpbdp-show-on-mobile button back-to-dir wpbdp-button" />
15
  <?php endif; ?>
16
  <?php elseif ($view == 'excerpt'): ?>
17
+ <?php if (wpbdp_user_can('view', $listing_id)): ?><a class="wpbdp-button button view-listing" href="<?php the_permalink(); ?>"><?php _ex('View', 'templates', 'WPBDM'); ?></a><?php endif; ?>
18
+ <?php if (wpbdp_user_can('edit', $listing_id)): ?><a class="wpbdp-button button edit-listing" href="<?php echo wpbdp_get_page_link('editlisting', $listing_id); ?>"><?php _ex('Edit', 'templates', 'WPBDM'); ?></a><?php endif; ?>
19
+ <?php if (wpbdp_user_can('delete', $listing_id)): ?><a class="wpbdp-button button delete-listing" href="<?php echo wpbdp_get_page_link('deletelisting', $listing_id); ?>"><?php _ex('Delete', 'templates', 'WPBDM'); ?></a><?php endif; ?>
20
 
21
  <!--<?php if (wpbdp_user_can('view', $listing_id)): ?><input type="button" value="<?php _ex('View', 'templates', 'WPBDM'); ?>" class="button view-listing" onclick="window.location.href = '<?php the_permalink(); ?>' " /><?php endif; ?>-->
22
  <!--<?php if (wpbdp_user_can('edit', $listing_id)): ?><form action="<?php echo wpbdp_get_page_link('editlisting', $listing_id); ?>" method="POST"><input type="submit" name="" value="<?php _ex('Edit', 'templates', 'WPBDM'); ?>" class="edit-listing" /></form><?php endif; ?>-->
templates/search-form.tpl.php ADDED
@@ -0,0 +1,19 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <div id="wpbdp-search-form-wrapper">
2
+
3
+ <h3><?php _ex('Find a listing', 'templates', 'WPBDM'); ?></h3>
4
+ <form action="<?php echo esc_url( wpbdp_get_page_link( 'main' ) ); ?>" id="wpbdp-search-form" method="GET">
5
+ <input type="hidden" name="action" value="search" />
6
+ <input type="hidden" name="page_id" value="<?php echo wpbdp_get_page_id('main'); ?>" />
7
+ <input type="hidden" name="dosrch" value="1" />
8
+ <input type="hidden" name="q" value="" />
9
+
10
+ <?php echo $fields; ?>
11
+ <?php do_action('wpbdp_after_search_fields'); ?>
12
+
13
+ <p>
14
+ <input type="reset" class="wpbdp-button reset" value="<?php _ex( 'Clear', 'search', 'WPBDM' ); ?> " onclick="window.location.href = '<?php echo wpbdp_get_page_link( 'search' ); ?>';" />
15
+ <input type="submit" class="wpbdp-submit wpbdp-button submit" value="<?php _ex('Search', 'search', 'WPBDM'); ?>" />
16
+ </p>
17
+ </form>
18
+
19
+ </div>
templates/search.tpl.php CHANGED
@@ -2,48 +2,33 @@
2
  $api = wpbdp_formfields_api();
3
  ?>
4
  <div id="wpbdp-search-page" class="wpbdp-search-page businessdirectory-search businessdirectory wpbdp-page">
5
-
6
  <div class="wpbdp-bar cf"><?php wpbdp_the_main_links(); ?></div>
7
-
8
  <h2 class="title"><?php _ex('Search', 'search', 'WPBDM'); ?></h2>
9
- <?php if ( !$show_form ): ?>
10
- <a href="#" style="font-size: 90%; float: right; margin-right: 20px;" onclick="jQuery('#wpbdp-search-form-wrapper').show(); jQuery(this).remove();"><?php _ex('Return to Advanced Search', 'search', 'WPBDM'); ?></a>
11
- <?php endif; ?>
12
 
13
- <!-- Search Form -->
14
- <div id="wpbdp-search-form-wrapper" style="<?php echo !$show_form ? 'display: none;' : ''; ?>">
15
- <h3><?php _ex('Find a listing', 'templates', 'WPBDM'); ?></h3>
16
- <form action="<?php echo esc_url( wpbdp_get_page_link( 'main' ) ); ?>" id="wpbdp-search-form" method="GET">
17
- <input type="hidden" name="action" value="search" />
18
- <input type="hidden" name="page_id" value="<?php echo wpbdp_get_page_id('main'); ?>" />
19
- <input type="hidden" name="dosrch" value="1" />
20
- <input type="hidden" name="q" value="" />
21
 
22
- <?php echo $fields; ?>
23
- <?php do_action('wpbdp_after_search_fields'); ?>
 
24
 
25
- <p>
26
- <input type="reset" class="reset" value="<?php _ex( 'Clear', 'search', 'WPBDM' ); ?> " onclick="window.location.href = '<?php echo wpbdp_get_page_link( 'search' ); ?>';" />
27
- <input type="submit" class="submit" value="<?php _ex('Search', 'search', 'WPBDM'); ?>" />
28
- </p>
29
- </form>
30
- </div>
31
- <!-- Search Form -->
32
-
33
- <?php if ($searching): ?>
34
- <h3><?php _ex('Search Results', 'search', 'WPBDM'); ?></h3>
 
 
 
35
 
36
- <?php do_action( 'wpbdp_before_search_results' ); ?>
37
- <div class="search-results">
38
- <?php if (have_posts()): ?>
39
- <?php echo wpbdp_render('businessdirectory-listings'); ?>
40
- <?php else: ?>
41
- <?php _ex("No listings found.", 'templates', "WPBDM"); ?>
42
- <br />
43
- <?php echo sprintf('<a href="%s">%s</a>.', wpbdp_get_page_link('main'),
44
- _x('Return to directory', 'templates', 'WPBDM')); ?>
45
  <?php endif; ?>
46
- </div>
47
- <?php do_action( 'wpbdp_after_search_results' ); ?>
48
- <?php endif; ?>
49
  </div>
2
  $api = wpbdp_formfields_api();
3
  ?>
4
  <div id="wpbdp-search-page" class="wpbdp-search-page businessdirectory-search businessdirectory wpbdp-page">
 
5
  <div class="wpbdp-bar cf"><?php wpbdp_the_main_links(); ?></div>
 
6
  <h2 class="title"><?php _ex('Search', 'search', 'WPBDM'); ?></h2>
 
 
 
7
 
8
+ <?php if ( 'above' == $search_form_position ): ?>
9
+ <?php echo $search_form; ?>
10
+ <?php endif; ?>
 
 
 
 
 
11
 
12
+ <!-- Results -->
13
+ <?php if ($searching): ?>
14
+ <h3><?php _ex('Search Results', 'search', 'WPBDM'); ?></h3>
15
 
16
+ <?php do_action( 'wpbdp_before_search_results' ); ?>
17
+ <div class="search-results">
18
+ <?php if (have_posts()): ?>
19
+ <?php echo wpbdp_render('businessdirectory-listings'); ?>
20
+ <?php else: ?>
21
+ <?php _ex("No listings found.", 'templates', "WPBDM"); ?>
22
+ <br />
23
+ <?php echo sprintf('<a href="%s">%s</a>.', wpbdp_get_page_link('main'),
24
+ _x('Return to directory', 'templates', 'WPBDM')); ?>
25
+ <?php endif; ?>
26
+ </div>
27
+ <?php do_action( 'wpbdp_after_search_results' ); ?>
28
+ <?php endif; ?>
29
 
30
+ <?php if ( 'below' == $search_form_position ): ?>
31
+ <?php echo $search_form; ?>
 
 
 
 
 
 
 
32
  <?php endif; ?>
33
+
 
 
34
  </div>
templates/submit-listing/images-single.tpl.php CHANGED
@@ -5,7 +5,7 @@ $is_thumbnail = isset( $is_thumbnail ) ? $is_thumbnail : false;
5
  <div class="wpbdp-image" data-imageid="<?php echo $image_id; ?>">
6
  <img src="<?php echo wp_get_attachment_thumb_url( $image_id ); ?>" /><br />
7
  <input type="button"
8
- class="button delete-image"
9
  value="<?php _ex('Delete Image', 'templates', 'WPBDM'); ?>"
10
  data-action="<?php echo esc_url( add_query_arg( array( 'action' => 'wpbdp-listing-submit-image-delete',
11
  'state_id' => isset( $state_id ) ? $state_id : '',
5
  <div class="wpbdp-image" data-imageid="<?php echo $image_id; ?>">
6
  <img src="<?php echo wp_get_attachment_thumb_url( $image_id ); ?>" /><br />
7
  <input type="button"
8
+ class="wpbdp-button button delete-image"
9
  value="<?php _ex('Delete Image', 'templates', 'WPBDM'); ?>"
10
  data-action="<?php echo esc_url( add_query_arg( array( 'action' => 'wpbdp-listing-submit-image-delete',
11
  'state_id' => isset( $state_id ) ? $state_id : '',
templates/submit-listing/images-upload-form.tpl.php CHANGED
@@ -46,6 +46,13 @@ if ( $admin && $listing_id ) {
46
  <span id="image-slots-remaining"><?php echo $slots_available; ?></span> / <span id="image-slots-total"><?php echo $slots; ?></span>
47
  </dd>
48
 
 
 
 
 
 
 
 
49
  <dt><?php _ex( 'Max. file size:', 'templates', 'WPBDM' ); ?></dt>
50
  <dd>
51
  <?php echo $max_file_size; ?>
46
  <span id="image-slots-remaining"><?php echo $slots_available; ?></span> / <span id="image-slots-total"><?php echo $slots; ?></span>
47
  </dd>
48
 
49
+ <?php if ( $min_file_size ): ?>
50
+ <dt><?php _ex( 'Min. file size:', 'templates', 'WPBDM' ); ?></dt>
51
+ <dd>
52
+ <?php echo $min_file_size; ?>
53
+ </dd>
54
+ <?php endif; ?>
55
+
56
  <dt><?php _ex( 'Max. file size:', 'templates', 'WPBDM' ); ?></dt>
57
  <dd>
58
  <?php echo $max_file_size; ?>
templates/submit-listing/images.tpl.php CHANGED
@@ -27,6 +27,7 @@ $thumbnail_id = ! isset( $thumbnail_id ) ? 0 : intval( $thumbnail_id );
27
  echo wpbdp_render( 'submit-listing/images-upload-form',
28
  array( 'slots' => $image_slots,
29
  'slots_available' => $image_slots_remaining,
 
30
  'max_file_size' => $image_max_file_size,
31
  'state_id' => $_state->id ),
32
  false );
27
  echo wpbdp_render( 'submit-listing/images-upload-form',
28
  array( 'slots' => $image_slots,
29
  'slots_available' => $image_slots_remaining,
30
+ 'min_file_size' => $image_min_file_size,
31
  'max_file_size' => $image_max_file_size,
32
  'state_id' => $_state->id ),
33
  false );
themes/default/theme.json CHANGED
@@ -1,7 +1,7 @@
1
  {
2
  "name": "Default Theme",
3
  "description": "This is the new default look of Business Directory starting with version 4.0. A cleaner, basic look to the directory with improved layout. This theme is always installed and cannot be removed.",
4
- "version": 1,
5
  "author": "BD Team",
6
  "author_email": "support@businessdirectoryplugin.com",
7
  "author_url": "http://businessdirectoryplugin.com",
1
  {
2
  "name": "Default Theme",
3
  "description": "This is the new default look of Business Directory starting with version 4.0. A cleaner, basic look to the directory with improved layout. This theme is always installed and cannot be removed.",
4
+ "version": "1.0",
5
  "author": "BD Team",
6
  "author_email": "support@businessdirectoryplugin.com",
7
  "author_url": "http://businessdirectoryplugin.com",
themes/no_theme/theme.json CHANGED
@@ -1,7 +1,7 @@
1
  {
2
- "name": "3.x Template Display",
3
  "description": "This is the default look of Business Directory prior to BD version 4.0. If you customized your directory templates and don’t want to use our themes, use this option.",
4
- "version": 1,
5
  "author": "BD Team",
6
  "author_email": "support@businessdirectoryplugin.com",
7
  "author_url": "http://businessdirectoryplugin.com",
1
  {
2
+ "name": "Pre BD 4.0 Template",
3
  "description": "This is the default look of Business Directory prior to BD version 4.0. If you customized your directory templates and don’t want to use our themes, use this option.",
4
+ "version": "1.0",
5
  "author": "BD Team",
6
  "author_email": "support@businessdirectoryplugin.com",
7
  "author_url": "http://businessdirectoryplugin.com",