Business Directory Plugin - Version 4.0.7

Version Description

Download this release

Release Info

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

Code changes from version 4.0.6 to 4.0.7

README.TXT CHANGED
@@ -4,8 +4,8 @@ Donate link: http://businessdirectoryplugin.com/premium-modules/
4
  Tags: address book, business directory, chamber of commerce business directory, church directory, company business directory, contact directory, custom business directory, directory, listings directory, local business directory, link directory, member directory, staff directory, directory plugin
5
  Requires at least: 4.1
6
  Tested up to: 4.5
7
- Last Updated: 2016-June-14
8
- Stable tag: tags/4.0.6
9
  License: GPLv2 or later
10
 
11
  Build any kind of local directory, directory of business providers, a Yellow-Pages business directory, Yelp-like review directory and much more!
@@ -130,7 +130,15 @@ If you are having problems please visit [support forum](http://www.businessdirec
130
 
131
  == Changelog ==
132
 
133
- = Version 4.0.5 =
 
 
 
 
 
 
 
 
134
  * Compatibility fixes for Canvas theme.
135
  * Compatibility fixes for X theme.
136
  * Add "City" and "State" as taggable fields in themes.
4
  Tags: address book, business directory, chamber of commerce business directory, church directory, company business directory, contact directory, custom business directory, directory, listings directory, local business directory, link directory, member directory, staff directory, directory plugin
5
  Requires at least: 4.1
6
  Tested up to: 4.5
7
+ Last Updated: 2016-June-21
8
+ Stable tag: tags/4.0.7
9
  License: GPLv2 or later
10
 
11
  Build any kind of local directory, directory of business providers, a Yellow-Pages business directory, Yelp-like review directory and much more!
130
 
131
  == Changelog ==
132
 
133
+ = Version 4.0.7 =
134
+ * Improve excerpt display on mobile devices.
135
+ * Show themes update badge inside main menu item too.
136
+ * Improved usability for Directory Themes screen.
137
+ * Fix some query issues when on CPT compat mode.
138
+ * Mark some strings as translatable.
139
+ * Restore the routine that handled expiration of listings.
140
+
141
+ = Version 4.0.6 =
142
  * Compatibility fixes for Canvas theme.
143
  * Compatibility fixes for X theme.
144
  * Add "City" and "State" as taggable fields in themes.
admin/class-admin.php CHANGED
@@ -213,8 +213,11 @@ class WPBDP_Admin {
213
  }
214
 
215
  function admin_menu() {
 
 
 
216
  add_menu_page( _x( 'Business Directory Admin', 'admin menu', "WPBDM" ),
217
- _x( 'Directory Admin', 'admin menu', 'WPBDM' ),
218
  'administrator',
219
  'wpbdp_admin',
220
  array( &$this, 'main_menu' ),
213
  }
214
 
215
  function admin_menu() {
216
+ $badge_number = absint( apply_filters( 'wpbdp_admin_menu_badge_number', 0 ) );
217
+ $count_html = $badge_number ? '<span class="update-plugins"><span class="plugin-count">' . $badge_number . '</span></span>' : '';
218
+
219
  add_menu_page( _x( 'Business Directory Admin', 'admin menu', "WPBDM" ),
220
+ $count_html ? _x( 'Dir. Admin', 'admin menu', 'WPBDM' ) . $count_html : _x( 'Directory Admin', 'admin menu', 'WPBDM' ),
221
  'administrator',
222
  'wpbdp_admin',
223
  array( &$this, 'main_menu' ),
admin/class-themes-admin.php CHANGED
@@ -17,6 +17,8 @@ class WPBDP_Themes_Admin {
17
  add_action( 'wp_ajax_wpbdp-themes-activate-license', array( &$this, 'ajax_activate_license' ) );
18
  add_action( 'wp_ajax_wpbdp-themes-deactivate-license', array( &$this, 'ajax_deactivate_license' ) );
19
 
 
 
20
  add_action( 'wpbdp_admin_menu', array( &$this, 'admin_menu' ) );
21
  add_filter( 'wpbdp_admin_menu_reorder', array( &$this, 'admin_menu_move_themes_up' ) );
22
 
@@ -49,6 +51,10 @@ class WPBDP_Themes_Admin {
49
  array( &$this, 'dispatch' ) );
50
  }
51
 
 
 
 
 
52
  function admin_menu_move_themes_up( $menu ) {
53
  $themes_key = false;
54
 
17
  add_action( 'wp_ajax_wpbdp-themes-activate-license', array( &$this, 'ajax_activate_license' ) );
18
  add_action( 'wp_ajax_wpbdp-themes-deactivate-license', array( &$this, 'ajax_deactivate_license' ) );
19
 
20
+
21
+ add_filter( 'wpbdp_admin_menu_badge_number', array( &$this, 'admin_menu_badge_count' ) );
22
  add_action( 'wpbdp_admin_menu', array( &$this, 'admin_menu' ) );
23
  add_filter( 'wpbdp_admin_menu_reorder', array( &$this, 'admin_menu_move_themes_up' ) );
24
 
51
  array( &$this, 'dispatch' ) );
52
  }
53
 
54
+ function admin_menu_badge_count( $cnt = 0 ) {
55
+ return ( (int) $cnt ) + $this->updater->get_updates_count();
56
+ }
57
+
58
  function admin_menu_move_themes_up( $menu ) {
59
  $themes_key = false;
60
 
admin/form-fields.php CHANGED
@@ -290,7 +290,7 @@ class WPBDP_FormFieldsAdmin {
290
  $special_tags = array(
291
  'title' => _x( 'Title', 'form-fields admin', 'WPBDM' ),
292
  'category' => _x( 'Category', 'form-fields admin', 'WPBDM' ),
293
- 'excerpt' => _x( 'Excerpt', 'form-fields admin', 'WPBD' ),
294
  'content' => _x( 'Content', 'form-fields admin', 'WPBDM' ),
295
  'tags' => _x( 'Tags', 'form-fields admin', 'WPBDM' ),
296
  'address' => _x( 'Address', 'form-fields admin', 'WPBDM' ),
290
  $special_tags = array(
291
  'title' => _x( 'Title', 'form-fields admin', 'WPBDM' ),
292
  'category' => _x( 'Category', 'form-fields admin', 'WPBDM' ),
293
+ 'excerpt' => _x( 'Excerpt', 'form-fields admin', 'WPBDM' ),
294
  'content' => _x( 'Content', 'form-fields admin', 'WPBDM' ),
295
  'tags' => _x( 'Tags', 'form-fields admin', 'WPBDM' ),
296
  'address' => _x( 'Address', 'form-fields admin', 'WPBDM' ),
admin/templates/csv-import.tpl.php CHANGED
@@ -35,7 +35,7 @@ echo str_replace(
35
  <form id="wpbdp-csv-import-form" action="" method="POST" enctype="multipart/form-data">
36
  <input type="hidden" name="action" value="do-import" />
37
 
38
- <h2><?php _ex('Import Files', 'admin csv-import'); ?></h2>
39
  <table class="form-table">
40
  <tbody>
41
  <tr class="form-field form-required">
@@ -117,7 +117,7 @@ echo str_replace(
117
  </tr>
118
  <tr class="form-required">
119
  <th scope="row">
120
- <label> <?php _ex('Image Separator', 'admin csv-import', 'WPBDM'); ?> <span class="description">(<?php _ex('required', 'admin forms'); ?>)</span></label>
121
  </th>
122
  <td>
123
  <input name="settings[images-separator]"
@@ -128,7 +128,7 @@ echo str_replace(
128
  </tr>
129
  <tr class="form-required">
130
  <th scope="row">
131
- <label> <?php _ex('Category Separator', 'admin csv-import', 'WPBDM'); ?> <span class="description">(<?php _ex('required', 'admin forms'); ?>)</span></label>
132
  </th>
133
  <td>
134
  <input name="settings[category-separator]"
35
  <form id="wpbdp-csv-import-form" action="" method="POST" enctype="multipart/form-data">
36
  <input type="hidden" name="action" value="do-import" />
37
 
38
+ <h2><?php _ex('Import Files', 'admin csv-import', 'WPBDM' ); ?></h2>
39
  <table class="form-table">
40
  <tbody>
41
  <tr class="form-field form-required">
117
  </tr>
118
  <tr class="form-required">
119
  <th scope="row">
120
+ <label> <?php _ex('Image Separator', 'admin csv-import', 'WPBDM'); ?> <span class="description">(<?php _ex('required', 'admin forms', 'WPBDM'); ?>)</span></label>
121
  </th>
122
  <td>
123
  <input name="settings[images-separator]"
128
  </tr>
129
  <tr class="form-required">
130
  <th scope="row">
131
+ <label> <?php _ex('Category Separator', 'admin csv-import', 'WPBDM'); ?> <span class="description">(<?php _ex('required', 'admin forms', 'WPBDM'); ?>)</span></label>
132
  </th>
133
  <td>
134
  <input name="settings[category-separator]"
admin/templates/form-fields-addoredit.tpl.php CHANGED
@@ -11,7 +11,7 @@
11
  <!-- association -->
12
  <tr>
13
  <th scope="row">
14
- <label> <?php _ex('Field Association', 'form-fields admin', 'WPBDM'); ?> <span class="description">(required)</span></label>
15
  </th>
16
  <td>
17
  <?php $field_association_info = $field_associations[ $field->get_association() ]; ?>
@@ -33,7 +33,7 @@
33
  <!-- field type -->
34
  <tr class="form-field form-required">
35
  <th scope="row">
36
- <label> <?php _ex('Field Type', 'form-fields admin', 'WPBDM'); ?> <span class="description">(required)</span></label>
37
  </th>
38
  <td>
39
  <?php if ( 'custom' === $field->get_association() ): ?>
@@ -57,7 +57,7 @@
57
  <!-- label -->
58
  <tr class="form-field form-required">
59
  <th scope="row">
60
- <label> <?php _ex('Field Label', 'form-fields admin', 'WPBDM'); ?> <span class="description">(required)</span></label>
61
  </th>
62
  <td>
63
  <input name="field[label]" type="text" aria-required="true" value="<?php echo esc_attr( $field->get_label() ); ?>" />
@@ -67,7 +67,7 @@
67
  <!-- description -->
68
  <tr class="form-field">
69
  <th scope="row">
70
- <label> <?php _ex('Field description', 'form-fields admin', 'WPBDM'); ?> <span class="description">(optional)</span></label>
71
  </th>
72
  <td>
73
  <input name="field[description]" type="text" value="<?php echo esc_attr( $field->get_description() ); ?> " />
11
  <!-- association -->
12
  <tr>
13
  <th scope="row">
14
+ <label> <?php _ex('Field Association', 'form-fields admin', 'WPBDM'); ?> <span class="description">(<?php _ex( 'required', 'form-fields admin', 'WPBDM' ); ?>)</span></label>
15
  </th>
16
  <td>
17
  <?php $field_association_info = $field_associations[ $field->get_association() ]; ?>
33
  <!-- field type -->
34
  <tr class="form-field form-required">
35
  <th scope="row">
36
+ <label> <?php _ex('Field Type', 'form-fields admin', 'WPBDM'); ?> <span class="description">(<?php _ex( 'required', 'form-fields admin', 'WPBDM' ); ?>)</span></label>
37
  </th>
38
  <td>
39
  <?php if ( 'custom' === $field->get_association() ): ?>
57
  <!-- label -->
58
  <tr class="form-field form-required">
59
  <th scope="row">
60
+ <label> <?php _ex('Field Label', 'form-fields admin', 'WPBDM'); ?> <span class="description">(<?php _ex( 'required', 'form-fields admin', 'WPBDM' ); ?>)</span></label>
61
  </th>
62
  <td>
63
  <input name="field[label]" type="text" aria-required="true" value="<?php echo esc_attr( $field->get_label() ); ?>" />
67
  <!-- description -->
68
  <tr class="form-field">
69
  <th scope="row">
70
+ <label> <?php _ex('Field description', 'form-fields admin', 'WPBDM'); ?> <span class="description">(<?php _ex( 'optional', 'form-fields admin', 'WPBDM' ); ?>)</span></label>
71
  </th>
72
  <td>
73
  <input name="field[description]" type="text" value="<?php echo esc_attr( $field->get_description() ); ?> " />
admin/templates/themes-tabs.tpl.php CHANGED
@@ -3,6 +3,6 @@ $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>
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' ) ); ?>"><?php _ex( 'Available Themes', 'admin themes', 'WPBDM' ); ?></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' ) ); ?>"><?php _ex( 'Licenses', 'admin themes', 'WPBDM' ); ?></a>
8
  </h3>
admin/templates/themes.tpl.php CHANGED
@@ -1,6 +1,8 @@
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();
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
+ array( _x( 'Manage Theme Tags', 'form-fields admin', 'WPBDM' ), esc_url( add_query_arg( 'action', 'updatetags' ) ) ),
5
+ array( _x( 'Settings', 'themes', 'WPBDM' ), esc_url( admin_url( 'admin.php?page=wpbdp_admin_settings&groupid=themes' ) ) )
6
  ) );
7
 
8
  echo wpbdp_admin_notices();
business-directory-plugin.php CHANGED
@@ -3,7 +3,7 @@
3
  * Plugin Name: Business Directory Plugin
4
  * Plugin URI: http://www.businessdirectoryplugin.com
5
  * Description: Provides the ability to maintain a free or paid business directory on your WordPress powered site.
6
- * Version: 4.0.6
7
  * Author: D. Rodenbaugh
8
  * Author URI: http://businessdirectoryplugin.com
9
  * Text Domain: WPBDM
@@ -31,7 +31,7 @@
31
  if( preg_match( '#' . basename( __FILE__ ) . '#', $_SERVER['PHP_SELF'] ) )
32
  exit();
33
 
34
- define( 'WPBDP_VERSION', '4.0.6' );
35
 
36
  define( 'WPBDP_PATH', plugin_dir_path( __FILE__ ) );
37
  define( 'WPBDP_URL', trailingslashit( plugins_url( '/', __FILE__ ) ) );
@@ -107,7 +107,7 @@ class WPBDP_Plugin {
107
  add_action( 'widgets_init', array( &$this, '_register_widgets' ) );
108
 
109
  // For testing the expiration routine only.
110
- add_action('init', create_function('', 'do_action("wpbdp_listings_expiration_check");'), 20);
111
  }
112
 
113
  function load_i18n() {
@@ -198,7 +198,7 @@ class WPBDP_Plugin {
198
 
199
 
200
  // Expiration hook.
201
- // add_action( 'wpbdp_listings_expiration_check', array( &$this, '_notify_expiring_listings' ), 0 );
202
 
203
  // Scripts & styles.
204
  add_action('wp_enqueue_scripts', array($this, '_enqueue_scripts'));
3
  * Plugin Name: Business Directory Plugin
4
  * Plugin URI: http://www.businessdirectoryplugin.com
5
  * Description: Provides the ability to maintain a free or paid business directory on your WordPress powered site.
6
+ * Version: 4.0.7
7
  * Author: D. Rodenbaugh
8
  * Author URI: http://businessdirectoryplugin.com
9
  * Text Domain: WPBDM
31
  if( preg_match( '#' . basename( __FILE__ ) . '#', $_SERVER['PHP_SELF'] ) )
32
  exit();
33
 
34
+ define( 'WPBDP_VERSION', '4.0.7' );
35
 
36
  define( 'WPBDP_PATH', plugin_dir_path( __FILE__ ) );
37
  define( 'WPBDP_URL', trailingslashit( plugins_url( '/', __FILE__ ) ) );
107
  add_action( 'widgets_init', array( &$this, '_register_widgets' ) );
108
 
109
  // For testing the expiration routine only.
110
+ // add_action('init', create_function('', 'do_action("wpbdp_listings_expiration_check");'), 20);
111
  }
112
 
113
  function load_i18n() {
198
 
199
 
200
  // Expiration hook.
201
+ add_action( 'wpbdp_listings_expiration_check', array( &$this, '_notify_expiring_listings' ), 0 );
202
 
203
  // Scripts & styles.
204
  add_action('wp_enqueue_scripts', array($this, '_enqueue_scripts'));
core/class-dispatcher.php CHANGED
@@ -51,10 +51,11 @@ class WPBDP__Dispatcher {
51
 
52
  do_action( 'wpbdp_before_dispatch' );
53
  $res = $this->current_view_obj->dispatch();
54
- do_action( 'wpbdp_after_dispatch' );
55
 
56
  if ( is_string( $res ) )
57
  $this->output = $res;
 
 
58
 
59
  return $template;
60
  }
51
 
52
  do_action( 'wpbdp_before_dispatch' );
53
  $res = $this->current_view_obj->dispatch();
 
54
 
55
  if ( is_string( $res ) )
56
  $this->output = $res;
57
+
58
+ do_action( 'wpbdp_after_dispatch' );
59
 
60
  return $template;
61
  }
core/class-query-integration.php CHANGED
@@ -40,13 +40,13 @@ class WPBDP__Query_Integration {
40
 
41
  // Is this a category query?
42
  $category_slug = wpbdp_get_option( 'permalinks-category-slug' );
43
- if ( ! empty( $query->query_vars[ WPBDP_CATEGORY_TAX ] ) || ! empty( $query->query_vars[ "_{$category_slug}" ] ) ) {
44
  $query->wpbdp_is_category = true;
45
  $query->wpbdp_view = 'show_category';
46
  }
47
 
48
  $tags_slug = wpbdp_get_option( 'permalinks-tags-slug' );
49
- if ( ! empty( $query->query_vars[ WPBDP_TAGS_TAX ] ) || ! empty( $query->query_vars[ "_{$tags_slug}" ] ) ) {
50
  $query->wpbdp_is_tag = true;
51
  $query->wpbdp_view = 'show_tag';
52
  }
40
 
41
  // Is this a category query?
42
  $category_slug = wpbdp_get_option( 'permalinks-category-slug' );
43
+ if ( ! empty( $query->query_vars[ WPBDP_CATEGORY_TAX ] ) ) {
44
  $query->wpbdp_is_category = true;
45
  $query->wpbdp_view = 'show_category';
46
  }
47
 
48
  $tags_slug = wpbdp_get_option( 'permalinks-tags-slug' );
49
+ if ( ! empty( $query->query_vars[ WPBDP_TAGS_TAX ] ) ) {
50
  $query->wpbdp_is_tag = true;
51
  $query->wpbdp_view = 'show_tag';
52
  }
core/class-settings.php CHANGED
@@ -341,8 +341,8 @@ class WPBDP_Settings {
341
  'field',
342
  _x( 'This affects emails sent to listing owners via contact forms or when their listings expire.', 'admin settings', 'WPBDM' ),
343
  array( 'choices' => array(
344
- array( 'field', 'Try listing\'s email field first, then author\'s email.' ),
345
- array( 'user', 'Try author\'s email first and then listing\'s email field.' )
346
 
347
  ) ) );
348
 
@@ -612,7 +612,9 @@ EOF;
612
 
613
  // TODO: we probably should merge this and 'Images' into an 'Appearance' tab. {
614
  $g = $this->add_group( 'themes', _x( 'Themes', 'admin settings', 'WPBDM' ) );
615
- $s = $this->add_section( $g, 'general', _x( 'General Settings', 'admin settings', 'WPBDM' ) );
 
 
616
 
617
  $this->add_setting( $s,
618
  'themes-button-style',
@@ -696,10 +698,10 @@ EOF;
696
  $fields[ $f->get_id() ] = $f->get_label();
697
  }
698
 
699
- $fields['user_login'] = 'User';
700
- $fields['user_registered'] = 'User registration date';
701
- $fields['date'] = 'Date posted';
702
- $fields['modified'] = 'Date last modified';
703
 
704
  return $fields;
705
  }
341
  'field',
342
  _x( 'This affects emails sent to listing owners via contact forms or when their listings expire.', 'admin settings', 'WPBDM' ),
343
  array( 'choices' => array(
344
+ array( 'field', _x( 'Try listing\'s email field first, then author\'s email.', 'admin settings', 'WPBDM' ) ),
345
+ array( 'user', _x( 'Try author\'s email first and then listing\'s email field.', 'admin settings', 'WPBDM' ) )
346
 
347
  ) ) );
348
 
612
 
613
  // TODO: we probably should merge this and 'Images' into an 'Appearance' tab. {
614
  $g = $this->add_group( 'themes', _x( 'Themes', 'admin settings', 'WPBDM' ) );
615
+
616
+ $msg = str_replace( '<a>', '<a href="' . admin_url( 'admin.php?page=wpbdp-themes' ) . '">', _x( 'You can manage your themes on <a>Directory Themes</a>.', 'admin settings', 'WPBDM' ) );
617
+ $s = $this->add_section( $g, 'general', _x( 'General Settings', 'admin settings', 'WPBDM' ), $msg );
618
 
619
  $this->add_setting( $s,
620
  'themes-button-style',
698
  $fields[ $f->get_id() ] = $f->get_label();
699
  }
700
 
701
+ $fields['user_login'] = _x( 'User', 'admin settings', 'WPBDM' );
702
+ $fields['user_registered'] = _x( 'User registration date', 'admin settings', 'WPBDM' );
703
+ $fields['date'] = _x( 'Date posted', 'admin settings', 'WPBDM' );
704
+ $fields['modified'] = _x( 'Date last modified', 'admin settings', 'WPBDM' );
705
 
706
  return $fields;
707
  }
core/compatibility/class-cpt-compat-mode.php CHANGED
@@ -76,11 +76,16 @@ class WPBDP__CPT_Compat_Mode {
76
  }
77
 
78
  private function get_archive_query( $args ) {
79
- $args = wp_parse_args( $args, array(
80
- 'posts_per_page' => get_query_var( 'posts_per_page' ),
81
- 'order' => get_query_var( 'order' ),
82
- 'orderby' => get_query_var( 'orderby' ),
83
- ) );
 
 
 
 
 
84
 
85
  return new WP_Query( $args );
86
  }
76
  }
77
 
78
  private function get_archive_query( $args ) {
79
+ $args['wpbdp_main_query'] = true;
80
+ $args['paged'] = get_query_var( 'paged' );
81
+
82
+ // $args = wp_parse_args( $args, array(
83
+ // 'wpbdp_main_query' => true,
84
+ // 'paged' => get_query_var( 'paged' ),
85
+ // 'posts_per_page' => get_query_var( 'posts_per_page' ),
86
+ // 'order' => get_query_var( 'order' ),
87
+ // 'orderby' => get_query_var( 'orderby' ),
88
+ // ) );
89
 
90
  return new WP_Query( $args );
91
  }
core/css/wpbdp.css CHANGED
@@ -706,9 +706,16 @@ table#wpbdp-manage-recurring a.cancel-subscription {
706
 
707
  .wpbdp-listing.wpbdp-listing-excerpt .listing-thumbnail {
708
  /*width: 40%;*/
 
709
  padding: 5px;
710
  }
711
 
 
 
 
 
 
 
712
  .wpbdp-listing .listing-actions input {
713
  font-size: 85%;
714
  }
706
 
707
  .wpbdp-listing.wpbdp-listing-excerpt .listing-thumbnail {
708
  /*width: 40%;*/
709
+ float: none;
710
  padding: 5px;
711
  }
712
 
713
+ .wpbdp-listing.wpbdp-listing-excerpt .listing-details {
714
+ margin: 0 5px;
715
+ float: none;
716
+ display: block;
717
+ }
718
+
719
  .wpbdp-listing .listing-actions input {
720
  font-size: 85%;
721
  }
core/css/wpbdp.min.css CHANGED
@@ -1 +1 @@
1
- form#wpbdmsearchform{padding:12px 0;text-align:center}form#wpbdmsearchform input{display:inline}form#wpbdmsearchform .wpbdmsearchbutton{margin-top:5px}form#wpbdmsearchform a.advanced-search-link{font-size:70%;display:block}#wpbdp-search-form{padding-left:10px}#wpbdp-search-form .wpbdp-search-filter{margin-bottom:10px;clear:both}#wpbdp-search-form .wpbdp-search-filter>.wpbdp-search-field-label{display:block;width:40%;float:left}#wpbdp-search-form .wpbdp-search-filter>div.field{display:block;width:60%;margin-left:40%;padding-left:5px}#wpbdp-search-form .wpbdp-search-filter>div.field>input[type="text"]{width:90%}#wpbdp-search-form .wpbdp-search-filter>div.field>select{width:90%}#wpbdp-search-form input[type="submit"]{width:100px;float:none;margin:auto}.cf:before,.cf:after{content:" ";display:table}.cf:after{clear:both}.cf{*zoom:1}.wpbdp-pagination{margin:25px 0 0 0}.wpbdp-pagination .next{float:right}.listing-actions form{margin:0;padding:0;display:inline}.listing-actions input{margin:0}.listing-actions input.delete-listing{margin-left:5px;margin-right:30px;color:#f00 !important}.listing-actions a.button{padding:5px 10px;font-size:11px;text-decoration:none;background-color:#e6e6e6;color:#7c7c7c;background-repeat:repeat-x;background-image:-moz-linear-gradient(top,#f4f4f4,#e6e6e6);background-image:-ms-linear-gradient(top,#f4f4f4,#e6e6e6);background-image:-webkit-linear-gradient(top,#f4f4f4,#e6e6e6);background-image:-o-linear-gradient(top,#f4f4f4,#e6e6e6);background-image:linear-gradient(top,#f4f4f4,#e6e6e6);border:1px solid #d2d2d2;border-radius:3px;box-shadow:0 1px 2px rgba(64,64,64,0.1);margin-right:3px}.listing-actions a.button:hover{color:#5e5e5e;background-color:#ebebeb;background-repeat:repeat-x;background-image:-moz-linear-gradient(top,#f9f9f9,#ebebeb);background-image:-ms-linear-gradient(top,#f9f9f9,#ebebeb);background-image:-webkit-linear-gradient(top,#f9f9f9,#ebebeb);background-image:-o-linear-gradient(top,#f9f9f9,#ebebeb);background-image:linear-gradient(top,#f9f9f9,#ebebeb)}.listing-actions a.delete-listing{margin-left:20px;color:red}.wpbdp-listing .listing-details .field-value{margin-bottom:10px;width:100%;float:none}.wpbdmsingledetails .singledetailsview .field-value{margin-bottom:10px}.field-value label{color:#444;font-weight:bold}.wpbdp-listing-excerpt{padding:10px;border-bottom:dotted 1px #ddd}.wpbdp-listing-excerpt.odd{background:#eee}.wpbdp-listing-excerpt.sticky{background:#fff0cf;border-bottom:solid 1px #b37800}.wpbdp-listing-excerpt .listing-thumbnail{float:right;margin:0 10px 0 0}.wpbdp-listing-excerpt .listing-actions{margin-top:15px}.wpbdp-listing-single .listing-actions{margin-bottom:25px}.wpbdp-listing-single .stickytag{float:right;margin-top:-68px}.wpbdp-listing-single .stickytag img{border:0;box-shadow:none;background:transparent}.wpbdp-listing-single .listing-title{padding:2px 8px;background:#efefef;border:dotted 1px #ddd;margin-bottom:7px}.wpbdp-listing-single .listing-title h2{clear:none;margin:0}.wpbdp-listing-single .main-image{float:right;margin-left:10px;padding:5px}.wpbdp-listing-single .main-image a{position:relative !important}.wpbdp-listing-single .main-image img{border:solid 1px #333}.wpbdp-listing-single .extra-images{margin-top:10px;clear:both}.wpbdp-listing-single .extra-images ul{margin:0 auto;width:100%}.wpbdp-listing-single .extra-images ul li{list-style-type:none;display:inline;margin-left:5px}.wpbdp-listing-single .extra-images ul li img{display:inline;vertical-align:top;margin:0 auto;max-width:150px;border:solid 1px #333}.wpbdp-listing .social-fields{margin:20px 0}.wpbdp-listing .social-field{margin:5px 0;height:20px;vertical-align:middle}.social-field.facebook .fb-like>span{overflow:visible !important;width:450px !important;vertical-align:top !important}@media screen and (max-width:500px){.social-field.facebook .fb-like>span{width:100% !important}}.wpbdp-listing-contact-form{margin-top:20px;border-top:dotted 1px #ddd;padding-top:20px;padding-left:10px}.wpbdp-listing-contact-form .send-message-button{margin-left:-10px}.wpbdp-listing-contact-form h3{margin-left:-10px}.wpbdp-listing-contact-form textarea{width:98% !important}.wpbdp-listing .comments{margin-top:20px}.wpbdp-bar{background:#f7f7f7;margin:10px 0 20px 0;padding:5px 10px}.wpbdp-bar:before,.wpbdp-bar:after{content:" ";display:table;clear:both}.wpbdp-bar .wpbdp-main-links{float:left}.wpbdp-bar .wpbdp-main-links #wpbdp-bar-view-listings-button,.wpbdp-bar .wpbdp-main-links #wpbdp-bar-show-directory-button{margin-right:5px}.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-page-main_page #wpbdp-categories{clear:both;margin-bottom:20px}ul.wpbdp-categories{margin:0 0 10px 15px;padding:0 10px}ul.wpbdp-categories>li{width:50%;float:left;margin:0}@media screen and (max-width:704px){ul.wpbdp-categories>li{float:none;width:initial}}@media screen and (max-width:500px){ul.wpbdp-categories{font-size:90%}ul.wpbdp-categories ul.children li.cat-item{margin-left:10px;padding:0}}.wpbdp-submit-page h3{margin-bottom:10px}.wpbdp-submit-page .wpbdmp{margin:0}.wpbdp-submit-page legend{font-size:85%;margin-bottom:20px}.wpbdp-submit-page .wpbdp-form-field{margin-bottom:8px}.wpbdp-submit-page .wpbdp-form-field .wpbdmcheckboxclass checkbox{margin-left:0}.wpbdp-submit-page .wpbdp-form-field.required .wpbdp-form-field-label:after{content:' *';font-size:80%}.wpbdp-submit-page .wpbdp-form-field-type-textarea textarea{width:90%;min-height:50px}.wpbdp-submit-page .wpbdp-form-field-association-content textarea{min-height:80px}.wpbdp-form-field .field-description{font-size:90%;color:#696969;float:right}.wpbdp-form-field span.sublabel{font-size:90%;margin-left:10px;margin-right:10px}.wpbdp-form-field.image a.delete{margin-left:10px}ul.validation-errors{margin:15px 0 15px 0}ul.validation-errors li{color:red;margin:3px 0;list-style-position:inside}.wpbdp-submit-page.step-fees h4{background:#ddd;color:#333;padding:10px;margin-bottom:5px}.wpbdp-submit-page.step-images #image-upload-form{margin:15px 10px}.wpbdp-submit-page.step-images .wpbdp-image{float:left;border-bottom:dotted 1px #efefef;margin-right:10px;margin-bottom:10px;vertical-align:top}.wpbdp-submit-page.step-images .wpbdp-image img{vertical-align:top;text-align:center;max-width:150px;height:auto}.wpbdp-submit-page.step-images .wpbdp-image-draggable-highlight{width:160px;height:160px;margin:0 10px;background:red;float:left}.wpbdp-submit-page.step-images .area-and-conditions #image-upload-dnd-area{float:left;width:72%}.wpbdp-submit-page.step-images .area-and-conditions #image-upload-conditions{float:right;width:25%;color:#666}.wpbdp-submit-page.step-images .area-and-conditions #image-upload-conditions dl{margin:0}.wpbdp-submit-page.step-images #image-upload-form-no-js{width:0;height:0;overflow:hidden;visibility:hidden}.wpbdp-submit-page.step-images .wpbdp-image .delete-image{color:red}.wpbdp-submit-page .upgrade-to-featured-option{border:solid 1px #666;padding:5px 10px;margin:25px 0 25px 0;font-size:90%}.wpbdp-msg{font-size:85%;padding:.6em;border:solid 1px #e6db55;color:#555;margin:5px 0;background:#fffbcc;border-radius:3px}.wpbdp-msg.error{background-color:#ffebe8;border-color:#C00}.wpbdp-submit-page table.fee-options{width:100%}.wpbdp-submit-page table.fee-options th,.wpbdp-submit-page table.fee-options td{text-align:center}.wpbdp-submit-page table.fee-options .fee-selection{width:5%}.wpbdp-submit-page table.fee-options tr.fee-option td.fee-label{font-weight:bold}.wpbdp-submit-page table.fee-options td.fee-description{font-size:90%;color:#666}#wpbdp-renewal-page .do-not-renew-listing{margin:40px 0;border:solid 1px #eee;font-size:95%}#wpbdp-renewal-page .do-not-renew-listing .header{background:#bc0b0b;color:#fff;text-align:center;font-weight:bold;padding:2px 0}#wpbdp-renewal-page .do-not-renew-listing input[type="submit"]{color:#900000}.wpbdp-recaptcha-error{color:red}#wpbdp-delete-listing-page form.confirm-form{margin-top:30px}#wpbdp-delete-listing-page input.delete-listing-confirm{margin-left:20px;color:#c00}#googlewallet-buy img{border:0;box-shadow:none}.wpbdp-checkout input[type="image"]{padding:0;border:0;box-shadow:none;width:auto}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;float:none;text-align:center}.wpbdp-bar .wpbdp-main-links #wpbdp-bar-submit-listing-button{margin-bottom:5px;display:inline-block}.wpbdp-bar .wpbdp-main-links #wpbdp-bar-view-listings-button{display:inline-block;float:left;margin-right:20px}.wpbdp-bar .wpbdp-main-links input[type="button"]{display:block;margin-bottom:2px}.wpbdp-bar form.wpbdp-search-form{display:block;margin-left:0;margin-top:10px}.wpbdp-bar form.wpbdp-search-form #intextbox{margin-bottom:5px;padding:4px}.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}.wpbdp-form-row label{display:block}.wpbdp-form-row.wpbdp-form-textfield input[type="text"]{width:400px}.single-wpbdp_listing header.entry-header,.wpbdp-view-show_category header.entry-header,.wpbdp-view-show_tag header.entry-header,.wpbdp-view-search header.entry-header,.wpbdp-view-submit_listing header.entry-header{display:none}.wpbdp-wp-theme-graphene.single-wpbdp_listing h1.post-title,.wpbdp-wp-theme-graphene.wpbdp-view-show_category h1.post-title,.wpbdp-wp-theme-graphene.wpbdp-view-show_tag h1.post-title,.wpbdp-wp-theme-graphene.wpbdp-view-search h1.post-title,.wpbdp-wp-theme-graphene.wpbdp-view-submit_listing h1.post-title{display:none}.wpbdp-wp-theme-genesis.wpbdp-view-show_category .archive-description,.wpbdp-wp-theme-genesis.wpbdp-view-show_tag .archive-description{display:none}.wpbdp-wp-theme-hmtpro5.wpbdp-view-show_category .post-details,.wpbdp-wp-theme-hmtpro5.wpbdp-view-show_tag .post-details{display:none}.wpbdp-wp-theme-atahualpa.wpbdp-view-show_category .post-footer,.wpbdp-wp-theme-atahualpa.wpbdp-view-show_tag .post-footer,.wpbdp-wp-theme-atahualpa.wpbdp-view-show_listing .post-footer{display:none}.wpbdp-wp-theme-ultimate-silostorm-pro.wpbdp-view-show_category .entry-content .featured-image,.wpbdp-wp-theme-ultimate-silostorm-pro.wpbdp-view-show_tag .entry-content .featured-image,.wpbdp-wp-theme-ultimate-silostorm-pro.wpbdp-view-show_listing .entry-content .featured-image{display:none}
1
+ form#wpbdmsearchform{padding:12px 0;text-align:center}form#wpbdmsearchform input{display:inline}form#wpbdmsearchform .wpbdmsearchbutton{margin-top:5px}form#wpbdmsearchform a.advanced-search-link{font-size:70%;display:block}#wpbdp-search-form{padding-left:10px}#wpbdp-search-form .wpbdp-search-filter{margin-bottom:10px;clear:both}#wpbdp-search-form .wpbdp-search-filter>.wpbdp-search-field-label{display:block;width:40%;float:left}#wpbdp-search-form .wpbdp-search-filter>div.field{display:block;width:60%;margin-left:40%;padding-left:5px}#wpbdp-search-form .wpbdp-search-filter>div.field>input[type="text"]{width:90%}#wpbdp-search-form .wpbdp-search-filter>div.field>select{width:90%}#wpbdp-search-form input[type="submit"]{width:100px;float:none;margin:auto}.cf:before,.cf:after{content:" ";display:table}.cf:after{clear:both}.cf{*zoom:1}.wpbdp-pagination{margin:25px 0 0 0}.wpbdp-pagination .next{float:right}.listing-actions form{margin:0;padding:0;display:inline}.listing-actions input{margin:0}.listing-actions input.delete-listing{margin-left:5px;margin-right:30px;color:#f00 !important}.listing-actions a.button{padding:5px 10px;font-size:11px;text-decoration:none;background-color:#e6e6e6;color:#7c7c7c;background-repeat:repeat-x;background-image:-moz-linear-gradient(top,#f4f4f4,#e6e6e6);background-image:-ms-linear-gradient(top,#f4f4f4,#e6e6e6);background-image:-webkit-linear-gradient(top,#f4f4f4,#e6e6e6);background-image:-o-linear-gradient(top,#f4f4f4,#e6e6e6);background-image:linear-gradient(top,#f4f4f4,#e6e6e6);border:1px solid #d2d2d2;border-radius:3px;box-shadow:0 1px 2px rgba(64,64,64,0.1);margin-right:3px}.listing-actions a.button:hover{color:#5e5e5e;background-color:#ebebeb;background-repeat:repeat-x;background-image:-moz-linear-gradient(top,#f9f9f9,#ebebeb);background-image:-ms-linear-gradient(top,#f9f9f9,#ebebeb);background-image:-webkit-linear-gradient(top,#f9f9f9,#ebebeb);background-image:-o-linear-gradient(top,#f9f9f9,#ebebeb);background-image:linear-gradient(top,#f9f9f9,#ebebeb)}.listing-actions a.delete-listing{margin-left:20px;color:red}.wpbdp-listing .listing-details .field-value{margin-bottom:10px;width:100%;float:none}.wpbdmsingledetails .singledetailsview .field-value{margin-bottom:10px}.field-value label{color:#444;font-weight:bold}.wpbdp-listing-excerpt{padding:10px;border-bottom:dotted 1px #ddd}.wpbdp-listing-excerpt.odd{background:#eee}.wpbdp-listing-excerpt.sticky{background:#fff0cf;border-bottom:solid 1px #b37800}.wpbdp-listing-excerpt .listing-thumbnail{float:right;margin:0 10px 0 0}.wpbdp-listing-excerpt .listing-actions{margin-top:15px}.wpbdp-listing-single .listing-actions{margin-bottom:25px}.wpbdp-listing-single .stickytag{float:right;margin-top:-68px}.wpbdp-listing-single .stickytag img{border:0;box-shadow:none;background:transparent}.wpbdp-listing-single .listing-title{padding:2px 8px;background:#efefef;border:dotted 1px #ddd;margin-bottom:7px}.wpbdp-listing-single .listing-title h2{clear:none;margin:0}.wpbdp-listing-single .main-image{float:right;margin-left:10px;padding:5px}.wpbdp-listing-single .main-image a{position:relative !important}.wpbdp-listing-single .main-image img{border:solid 1px #333}.wpbdp-listing-single .extra-images{margin-top:10px;clear:both}.wpbdp-listing-single .extra-images ul{margin:0 auto;width:100%}.wpbdp-listing-single .extra-images ul li{list-style-type:none;display:inline;margin-left:5px}.wpbdp-listing-single .extra-images ul li img{display:inline;vertical-align:top;margin:0 auto;max-width:150px;border:solid 1px #333}.wpbdp-listing .social-fields{margin:20px 0}.wpbdp-listing .social-field{margin:5px 0;height:20px;vertical-align:middle}.social-field.facebook .fb-like>span{overflow:visible !important;width:450px !important;vertical-align:top !important}@media screen and (max-width:500px){.social-field.facebook .fb-like>span{width:100% !important}}.wpbdp-listing-contact-form{margin-top:20px;border-top:dotted 1px #ddd;padding-top:20px;padding-left:10px}.wpbdp-listing-contact-form .send-message-button{margin-left:-10px}.wpbdp-listing-contact-form h3{margin-left:-10px}.wpbdp-listing-contact-form textarea{width:98% !important}.wpbdp-listing .comments{margin-top:20px}.wpbdp-bar{background:#f7f7f7;margin:10px 0 20px 0;padding:5px 10px}.wpbdp-bar:before,.wpbdp-bar:after{content:" ";display:table;clear:both}.wpbdp-bar .wpbdp-main-links{float:left}.wpbdp-bar .wpbdp-main-links #wpbdp-bar-view-listings-button,.wpbdp-bar .wpbdp-main-links #wpbdp-bar-show-directory-button{margin-right:5px}.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-page-main_page #wpbdp-categories{clear:both;margin-bottom:20px}ul.wpbdp-categories{margin:0 0 10px 15px;padding:0 10px}ul.wpbdp-categories>li{width:50%;float:left;margin:0}@media screen and (max-width:704px){ul.wpbdp-categories>li{float:none;width:initial}}@media screen and (max-width:500px){ul.wpbdp-categories{font-size:90%}ul.wpbdp-categories ul.children li.cat-item{margin-left:10px;padding:0}}.wpbdp-submit-page h3{margin-bottom:10px}.wpbdp-submit-page .wpbdmp{margin:0}.wpbdp-submit-page legend{font-size:85%;margin-bottom:20px}.wpbdp-submit-page .wpbdp-form-field{margin-bottom:8px}.wpbdp-submit-page .wpbdp-form-field .wpbdmcheckboxclass checkbox{margin-left:0}.wpbdp-submit-page .wpbdp-form-field.required .wpbdp-form-field-label:after{content:' *';font-size:80%}.wpbdp-submit-page .wpbdp-form-field-type-textarea textarea{width:90%;min-height:50px}.wpbdp-submit-page .wpbdp-form-field-association-content textarea{min-height:80px}.wpbdp-form-field .field-description{font-size:90%;color:#696969;float:right}.wpbdp-form-field span.sublabel{font-size:90%;margin-left:10px;margin-right:10px}.wpbdp-form-field.image a.delete{margin-left:10px}ul.validation-errors{margin:15px 0 15px 0}ul.validation-errors li{color:red;margin:3px 0;list-style-position:inside}.wpbdp-submit-page.step-fees h4{background:#ddd;color:#333;padding:10px;margin-bottom:5px}.wpbdp-submit-page.step-images #image-upload-form{margin:15px 10px}.wpbdp-submit-page.step-images .wpbdp-image{float:left;border-bottom:dotted 1px #efefef;margin-right:10px;margin-bottom:10px;vertical-align:top}.wpbdp-submit-page.step-images .wpbdp-image img{vertical-align:top;text-align:center;max-width:150px;height:auto}.wpbdp-submit-page.step-images .wpbdp-image-draggable-highlight{width:160px;height:160px;margin:0 10px;background:red;float:left}.wpbdp-submit-page.step-images .area-and-conditions #image-upload-dnd-area{float:left;width:72%}.wpbdp-submit-page.step-images .area-and-conditions #image-upload-conditions{float:right;width:25%;color:#666}.wpbdp-submit-page.step-images .area-and-conditions #image-upload-conditions dl{margin:0}.wpbdp-submit-page.step-images #image-upload-form-no-js{width:0;height:0;overflow:hidden;visibility:hidden}.wpbdp-submit-page.step-images .wpbdp-image .delete-image{color:red}.wpbdp-submit-page .upgrade-to-featured-option{border:solid 1px #666;padding:5px 10px;margin:25px 0 25px 0;font-size:90%}.wpbdp-msg{font-size:85%;padding:.6em;border:solid 1px #e6db55;color:#555;margin:5px 0;background:#fffbcc;border-radius:3px}.wpbdp-msg.error{background-color:#ffebe8;border-color:#C00}.wpbdp-submit-page table.fee-options{width:100%}.wpbdp-submit-page table.fee-options th,.wpbdp-submit-page table.fee-options td{text-align:center}.wpbdp-submit-page table.fee-options .fee-selection{width:5%}.wpbdp-submit-page table.fee-options tr.fee-option td.fee-label{font-weight:bold}.wpbdp-submit-page table.fee-options td.fee-description{font-size:90%;color:#666}#wpbdp-renewal-page .do-not-renew-listing{margin:40px 0;border:solid 1px #eee;font-size:95%}#wpbdp-renewal-page .do-not-renew-listing .header{background:#bc0b0b;color:#fff;text-align:center;font-weight:bold;padding:2px 0}#wpbdp-renewal-page .do-not-renew-listing input[type="submit"]{color:#900000}.wpbdp-recaptcha-error{color:red}#wpbdp-delete-listing-page form.confirm-form{margin-top:30px}#wpbdp-delete-listing-page input.delete-listing-confirm{margin-left:20px;color:#c00}#googlewallet-buy img{border:0;box-shadow:none}.wpbdp-checkout input[type="image"]{padding:0;border:0;box-shadow:none;width:auto}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;float:none;text-align:center}.wpbdp-bar .wpbdp-main-links #wpbdp-bar-submit-listing-button{margin-bottom:5px;display:inline-block}.wpbdp-bar .wpbdp-main-links #wpbdp-bar-view-listings-button{display:inline-block;float:left;margin-right:20px}.wpbdp-bar .wpbdp-main-links input[type="button"]{display:block;margin-bottom:2px}.wpbdp-bar form.wpbdp-search-form{display:block;margin-left:0;margin-top:10px}.wpbdp-bar form.wpbdp-search-form #intextbox{margin-bottom:5px;padding:4px}.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{float:none;padding:5px}.wpbdp-listing.wpbdp-listing-excerpt .listing-details{margin:0 5px;float:none;display:block}.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}.wpbdp-form-row label{display:block}.wpbdp-form-row.wpbdp-form-textfield input[type="text"]{width:400px}.single-wpbdp_listing header.entry-header,.wpbdp-view-show_category header.entry-header,.wpbdp-view-show_tag header.entry-header,.wpbdp-view-search header.entry-header,.wpbdp-view-submit_listing header.entry-header{display:none}.wpbdp-wp-theme-graphene.single-wpbdp_listing h1.post-title,.wpbdp-wp-theme-graphene.wpbdp-view-show_category h1.post-title,.wpbdp-wp-theme-graphene.wpbdp-view-show_tag h1.post-title,.wpbdp-wp-theme-graphene.wpbdp-view-search h1.post-title,.wpbdp-wp-theme-graphene.wpbdp-view-submit_listing h1.post-title{display:none}.wpbdp-wp-theme-genesis.wpbdp-view-show_category .archive-description,.wpbdp-wp-theme-genesis.wpbdp-view-show_tag .archive-description{display:none}.wpbdp-wp-theme-hmtpro5.wpbdp-view-show_category .post-details,.wpbdp-wp-theme-hmtpro5.wpbdp-view-show_tag .post-details{display:none}.wpbdp-wp-theme-atahualpa.wpbdp-view-show_category .post-footer,.wpbdp-wp-theme-atahualpa.wpbdp-view-show_tag .post-footer,.wpbdp-wp-theme-atahualpa.wpbdp-view-show_listing .post-footer{display:none}.wpbdp-wp-theme-ultimate-silostorm-pro.wpbdp-view-show_category .entry-content .featured-image,.wpbdp-wp-theme-ultimate-silostorm-pro.wpbdp-view-show_tag .entry-content .featured-image,.wpbdp-wp-theme-ultimate-silostorm-pro.wpbdp-view-show_listing .entry-content .featured-image{display:none}
core/views/main.php CHANGED
@@ -41,7 +41,7 @@ class WPBDP__Views__Main extends WPBDP_NView {
41
  // Listings under categories?
42
  if ( wpbdp_get_option( 'show-listings-under-categories' ) ) {
43
  require_once ( WPBDP_PATH . 'core/views/all_listings.php' );
44
- $v = new WPBDP__Views__All_Listings( array( 'include_buttons' => false ) );
45
  $listings = $v->dispatch();
46
  } else {
47
  $listings = '';
41
  // Listings under categories?
42
  if ( wpbdp_get_option( 'show-listings-under-categories' ) ) {
43
  require_once ( WPBDP_PATH . 'core/views/all_listings.php' );
44
+ $v = new WPBDP__Views__All_Listings( array( 'menu' => false ) );
45
  $listings = $v->dispatch();
46
  } else {
47
  $listings = '';
languages/WPBDM-de_DE.mo CHANGED
Binary file
languages/WPBDM-de_DE.po CHANGED
@@ -4,7 +4,7 @@ msgid ""
4
  msgstr ""
5
  "Project-Id-Version: Business Directory Plugin 3.5.4\n"
6
  "Report-Msgid-Bugs-To: http://wordpress.org/tag/business-directory-plugin\n"
7
- "POT-Creation-Date: 2016-06-14 20:52:18+00:00\n"
8
  "PO-Revision-Date: 2016-01-21 08:45-0500\n"
9
  "Last-Translator: BD Team <support@businessdirectoryplugin.com>\n"
10
  "Language-Team: Business Directory Plugin <support@businessdirectoryplugin."
@@ -168,98 +168,104 @@ msgctxt "drip pointer"
168
  msgid "Invalid e-mail address."
169
  msgstr "Ungültiger Erneuerungszustand."
170
 
171
- #: admin/class-admin.php:216
172
  msgctxt "admin menu"
173
  msgid "Business Directory Admin"
174
  msgstr "Branchenverzeichnis Administration"
175
 
176
- #: admin/class-admin.php:217
 
 
 
 
 
 
177
  msgctxt "admin menu"
178
  msgid "Directory Admin"
179
  msgstr "Verzeichnis Administration"
180
 
181
- #: admin/class-admin.php:223 admin/class-admin.php:224
182
  msgctxt "admin menu"
183
  msgid "Add New Listing"
184
  msgstr "Neuen Eintrag hinzufügen"
185
 
186
- #: admin/class-admin.php:229 admin/class-admin.php:230
187
  msgctxt "admin menu"
188
  msgid "Manage Options"
189
  msgstr "Optionen Verwalten"
190
 
191
- #: admin/class-admin.php:235 admin/class-admin.php:236
192
  msgctxt "admin menu"
193
  msgid "Manage Fees"
194
  msgstr "Preise Verwalten"
195
 
196
- #: admin/class-admin.php:241 admin/class-admin.php:242
197
  msgctxt "admin menu"
198
  msgid "Manage Form Fields"
199
  msgstr "Form Felder verwalten"
200
 
201
- #: admin/class-admin.php:247 admin/class-admin.php:248
202
  #, fuzzy
203
  msgctxt "admin menu"
204
  msgid "Listings"
205
  msgstr "Einträge"
206
 
207
- #: admin/class-admin.php:262 admin/class-admin.php:263
208
  msgctxt "admin menu"
209
  msgid "CSV Import"
210
  msgstr "CSV Datei importieren"
211
 
212
- #: admin/class-admin.php:268 admin/class-admin.php:269
213
  msgctxt "admin menu"
214
  msgid "CSV Export"
215
  msgstr "CVS Datei exportieren"
216
 
217
- #: admin/class-admin.php:274 admin/class-admin.php:275
218
  msgctxt "admin menu"
219
  msgid "Debug"
220
  msgstr "Fehlerkorrektur"
221
 
222
- #: admin/class-admin.php:284
223
  msgctxt "admin menu"
224
  msgid "Main Menu"
225
  msgstr "Hauptmenü"
226
 
227
- #: admin/class-admin.php:295
228
  msgctxt "admin menu"
229
  msgid "Uninstall Business Directory Plugin"
230
  msgstr "Branchenverzeichnis deinstallieren"
231
 
232
- #: admin/class-admin.php:296
233
  msgctxt "admin menu"
234
  msgid "Uninstall"
235
  msgstr "Deinstallieren"
236
 
237
- #: admin/class-admin.php:410
238
  #: admin/templates/listing-metabox-categories.tpl.php:69
239
  msgctxt "admin infometabox"
240
  msgid "never"
241
  msgstr "niemals"
242
 
243
- #: admin/class-admin.php:504
244
  msgctxt "admin"
245
  msgid "Dismiss this notice."
246
  msgstr ""
247
 
248
- #: admin/class-admin.php:532
249
  msgctxt "admin"
250
  msgid "The listing has been published."
251
  msgid_plural "The listings have been published."
252
  msgstr[0] "Der Eintrag wurde veröffentlicht."
253
  msgstr[1] "Die Einträge wurden veröffentlicht."
254
 
255
- #: admin/class-admin.php:550
256
  msgctxt "admin"
257
  msgid "The listing status has been set as paid."
258
  msgid_plural "The listings status has been set as paid."
259
  msgstr[0] "Der Status des Eintrags wurde auf bezahlt gesetzt."
260
  msgstr[1] "Der Status der Einträge wurde auf bezahlt gesetzt."
261
 
262
- #: admin/class-admin.php:556
263
  msgctxt "admin"
264
  msgid ""
265
  "Only invoices containing non-recurring items were marked as paid. Please "
@@ -271,28 +277,28 @@ msgid_plural ""
271
  msgstr[0] ""
272
  msgstr[1] ""
273
 
274
- #: admin/class-admin.php:575
275
  msgctxt "admin"
276
  msgid "The listing has been modified."
277
  msgid_plural "The listings have been modified."
278
  msgstr[0] "Der Eintrag wurde verändert."
279
  msgstr[1] "Die Einträge wurden verändert."
280
 
281
- #: admin/class-admin.php:588
282
  msgctxt "admin"
283
  msgid "The listing has been upgraded."
284
  msgid_plural "The listings have been upgraded."
285
  msgstr[0] "Der Eintrag wurde aktualisiert"
286
  msgstr[1] "Die Einträge wurden aktualisiert."
287
 
288
- #: admin/class-admin.php:600
289
  msgctxt "admin"
290
  msgid "The listing has been downgraded."
291
  msgid_plural "The listings have been downgraded."
292
  msgstr[0] "Der Eintrag wurde zurück gesetzt."
293
  msgstr[1] "Die Einträge wurden zurück gesetzt."
294
 
295
- #: admin/class-admin.php:611
296
  msgctxt "admin payments"
297
  msgid ""
298
  "The payment status was not changed. Recurring payments can't be manually "
@@ -300,44 +306,44 @@ msgid ""
300
  "went through."
301
  msgstr ""
302
 
303
- #: admin/class-admin.php:616
304
  msgctxt "admin"
305
  msgid "The transaction has been approved."
306
  msgstr "Die Transaktion wurde genehmigt."
307
 
308
- #: admin/class-admin.php:626
309
  msgctxt "admin"
310
  msgid "The transaction has been rejected."
311
  msgstr "Die Transaktion wurde abgelehnt."
312
 
313
- #: admin/class-admin.php:632
314
  msgctxt "admin"
315
  msgid "The fee was successfully assigned."
316
  msgstr "Der Preis wurde erfolgreich zugewiesen."
317
 
318
- #: admin/class-admin.php:641
319
  msgctxt "admin"
320
  msgid "Listing was renewed."
321
  msgid_plural "Listings were renewed."
322
  msgstr[0] "Eintrag wurde aktualisiert."
323
  msgstr[1] "Einträge wurden aktualisiert."
324
 
325
- #: admin/class-admin.php:648
326
  msgctxt "admin"
327
  msgid "Renewal email sent."
328
  msgstr "E-mail erneut senden."
329
 
330
- #: admin/class-admin.php:682
331
  msgctxt "admin category id"
332
  msgid "ID"
333
  msgstr "ID"
334
 
335
- #: admin/class-admin.php:684 admin/class-admin.php:690
336
  msgctxt "admin"
337
  msgid "Listing Count"
338
  msgstr "Anzahl Einträge "
339
 
340
- #: admin/class-admin.php:799
341
  msgctxt "admin"
342
  msgid ""
343
  "<b>Business Directory Plugin</b> requires fields with the following "
@@ -346,7 +352,7 @@ msgstr ""
346
  "<b>Branchenverzeichnis Erweiterung</b> benötigt Felder mit den folgenden "
347
  "Verbindungen um korrekt zu funktionieren: <b>%s</b>."
348
 
349
- #: admin/class-admin.php:801
350
  msgctxt "admin"
351
  msgid ""
352
  "<b>Business Directory Plugin</b> requires a field with a <b>%s</b> "
@@ -355,7 +361,7 @@ msgstr ""
355
  "<b>Branchenverzeichnis Erweiterung</b> benötigt ein Feld mit der Verbindung "
356
  "<b>%s</b>, um korrekt zu funktionieren."
357
 
358
- #: admin/class-admin.php:805
359
  msgctxt "admin"
360
  msgid ""
361
  "You can create these custom fields by yourself inside \"Manage Form Fields\" "
@@ -364,17 +370,17 @@ msgstr ""
364
  "Sie können diese benutzerdefinierten Felder selbst erzeugen \"Form Felder "
365
  "Verwalten\" oder vom Branchenverzeichnis automatisch erstellen lassen."
366
 
367
- #: admin/class-admin.php:809
368
  msgctxt "admin"
369
  msgid "Go to \"Manage Form Fields\""
370
  msgstr "zu \"Form Felder verwalten\""
371
 
372
- #: admin/class-admin.php:812
373
  msgctxt "admin"
374
  msgid "Create these required fields for me"
375
  msgstr "Erstelle diese benötigten Felder für mich"
376
 
377
- #: admin/class-admin.php:821
378
  msgctxt "admin"
379
  msgid ""
380
  "<b>Business Directory Plugin</b> requires a page with the "
@@ -383,7 +389,7 @@ msgstr ""
383
  "<b>Branchenverzeichnis Erweiterung</b> benötigt eine Seite mit dem "
384
  "<tt>[businessdirectory]</tt> shortcode um zu funktionieren."
385
 
386
- #: admin/class-admin.php:823
387
  msgctxt "admin"
388
  msgid ""
389
  "You can create this page by yourself or let Business Directory do this for "
@@ -392,27 +398,27 @@ msgstr ""
392
  "Du kannst diese Seite selbst erstellen oder vom Branchenverzeichnis "
393
  "automatisch erstellen lassen."
394
 
395
- #: admin/class-admin.php:827
396
  msgctxt "admin"
397
  msgid "Create required pages for me"
398
  msgstr "Erstelle benötigte Seiten für mich"
399
 
400
- #: admin/class-admin.php:867
401
  msgctxt "admin compat"
402
  msgid "Installed: %s"
403
  msgstr "Installiert: %s"
404
 
405
- #: admin/class-admin.php:867
406
  msgctxt "admin compat"
407
  msgid "N/A"
408
  msgstr "keine Angabe"
409
 
410
- #: admin/class-admin.php:870
411
  msgctxt "admin compat"
412
  msgid "Required: %s"
413
  msgstr "Pflichtfeld: %s"
414
 
415
- #: admin/class-admin.php:882
416
  msgctxt "admin compat"
417
  msgid ""
418
  "Business Directory has detected some incompatible premium module versions "
@@ -421,7 +427,7 @@ msgstr ""
421
  "Branchenverzeichnis hat festgestellt, dass einige inkompatible Premium Modul "
422
  "Versionen installiert sind."
423
 
424
- #: admin/class-admin.php:884
425
  msgctxt "admin compat"
426
  msgid ""
427
  "Please upgrade to the required versions indicated below to make sure "
@@ -430,7 +436,7 @@ msgstr ""
430
  "Bitte die benötigten Versionen siehe unten aktualisieren, um sicher zu sein, "
431
  "dass alles korrekt funktioniert. "
432
 
433
- #: admin/class-admin.php:904
434
  msgctxt "admin"
435
  msgid ""
436
  "We noticed you want your Business Directory users to register before posting "
@@ -460,32 +466,32 @@ msgid "There are no images currently attached to the listing."
460
  msgstr ""
461
  "Es sind keine Bilder vorhanden die dem Eintrag aktuell hinzugefügt wurden."
462
 
463
- #: admin/class-themes-admin.php:45
464
  #, fuzzy
465
  msgctxt "themes"
466
  msgid "Directory Themes"
467
  msgstr "Verzeichnis Kategorien"
468
 
469
- #: admin/class-themes-admin.php:46
470
  #, fuzzy
471
  msgctxt "themes"
472
  msgid "Directory Themes %s"
473
  msgstr "Verzeichnis Kategorien"
474
 
475
- #: admin/class-themes-admin.php:88
476
  msgctxt "admin themes"
477
  msgid ""
478
  "Business Directory Plugin - Your template overrides need to be reviewed!"
479
  msgstr ""
480
 
481
- #: admin/class-themes-admin.php:90
482
  msgctxt "admin themes"
483
  msgid ""
484
  "Starting with version 4.0, Business Directory is using a new theming system "
485
  "that is not compatible with the templates used in previous versions."
486
  msgstr ""
487
 
488
- #: admin/class-themes-admin.php:92
489
  msgctxt "admin themes"
490
  msgid ""
491
  "Because of this, your template overrides below have been disabled. You "
@@ -493,105 +499,105 @@ msgid ""
493
  "templates."
494
  msgstr ""
495
 
496
- #: admin/class-themes-admin.php:121
497
  msgctxt "admin themes"
498
  msgid ""
499
  "You need to <a>activate your theme's license key</a> before you can activate "
500
  "the theme. <a>Click here</a> to do that."
501
  msgstr ""
502
 
503
- #: admin/class-themes-admin.php:149
504
  #, fuzzy
505
  msgctxt "themes"
506
  msgid "Could not change the active theme to \"%s\"."
507
  msgstr "Konnte Eintragskategorie nicht erstellen \"%s\""
508
 
509
- #: admin/class-themes-admin.php:196
510
  msgctxt "themes"
511
  msgid "Active theme changed to \"%s\"."
512
  msgstr ""
513
 
514
- #: admin/class-themes-admin.php:199
515
  msgctxt "themes"
516
  msgid ""
517
  "%s requires that you tag your existing fields to match some places we want "
518
  "to put your data on the theme. Below are fields we think are missing."
519
  msgstr ""
520
 
521
- #: admin/class-themes-admin.php:208
522
  #, fuzzy
523
  msgctxt "themes"
524
  msgid "Map My Fields"
525
  msgstr "Form Felder verwalten"
526
 
527
- #: admin/class-themes-admin.php:215
528
  #, fuzzy
529
  msgctxt "themes"
530
  msgid "Suggested fields created successfully."
531
  msgstr "Benötigtes Feld wurde erfolgreich erstellt."
532
 
533
- #: admin/class-themes-admin.php:218
534
  #, fuzzy
535
  msgctxt "themes"
536
  msgid "Theme installed successfully."
537
  msgstr "Benötigtes Feld wurde erfolgreich erstellt."
538
 
539
- #: admin/class-themes-admin.php:221
540
  #, fuzzy
541
  msgctxt "themes"
542
  msgid "Theme was deleted sucessfully."
543
  msgstr "Der Import wurde erfolgreich abgeschlossen."
544
 
545
- #: admin/class-themes-admin.php:224
546
  msgctxt "themes"
547
  msgid "Could not delete theme directory. Check permissions."
548
  msgstr ""
549
 
550
- #: admin/class-themes-admin.php:250
551
  #, fuzzy
552
  msgctxt "themes"
553
  msgid "Please upload a valid theme file."
554
  msgstr "Bitte eine gültige E-mailadresse eingeben."
555
 
556
- #: admin/class-themes-admin.php:257
557
  #, fuzzy
558
  msgctxt "themes"
559
  msgid "Could not move \"%s\" to a temporary directory."
560
  msgstr "wpbdp-csv-exports Verzeichnis konnte nicht erstellt werden."
561
 
562
- #: admin/class-themes-admin.php:358 admin/class-themes-admin.php:419
563
  #: core/licensing.php:127 core/licensing.php:159
564
  msgctxt "licensing"
565
  msgid "Could not contact licensing server"
566
  msgstr "Eine Verbindung zum Lizenzserver konnte nicht hergestellt werden."
567
 
568
- #: admin/class-themes-admin.php:364 core/licensing.php:132
569
  #: core/licensing.php:166
570
  msgctxt "licensing"
571
  msgid "License key is invalid"
572
  msgstr "Lizenzschlüssel ungültig "
573
 
574
- #: admin/class-themes-admin.php:369 core/licensing.php:333
575
  msgctxt "licensing"
576
  msgid "Could not activate license: %s."
577
  msgstr "Konnte Lizenz nicht aktivieren: %s"
578
 
579
- #: admin/class-themes-admin.php:382 core/licensing.php:335
580
  msgctxt "licensing"
581
  msgid "License activated"
582
  msgstr "Lizenz aktiviert"
583
 
584
- #: admin/class-themes-admin.php:425
585
  msgctxt "licensing"
586
  msgid "Invalid response from server"
587
  msgstr ""
588
 
589
- #: admin/class-themes-admin.php:442 core/licensing.php:353
590
  msgctxt "licensing"
591
  msgid "License deactivated"
592
  msgstr "Lizenz deaktiviert"
593
 
594
- #: admin/class-themes-admin.php:458
595
  msgctxt "themes"
596
  msgid "Activate your <a>license key</a> to use this theme."
597
  msgstr ""
@@ -2037,6 +2043,14 @@ msgctxt "form-fields admin"
2037
  msgid "Field Association"
2038
  msgstr "Feldverbindung"
2039
 
 
 
 
 
 
 
 
 
2040
  #: admin/templates/form-fields-addoredit.tpl.php:36
2041
  msgctxt "form-fields admin"
2042
  msgid "Field Type"
@@ -2052,6 +2066,12 @@ msgctxt "form-fields admin"
2052
  msgid "Field description"
2053
  msgstr "Feldbeschreibung"
2054
 
 
 
 
 
 
 
2055
  #: admin/templates/form-fields-addoredit.tpl.php:87
2056
  msgctxt "form-fields admin"
2057
  msgid "Field-specific settings"
@@ -2198,7 +2218,7 @@ msgctxt "form-fields admin"
2198
  msgid "Preview Form"
2199
  msgstr "Formvorschau"
2200
 
2201
- #: admin/templates/form-fields.tpl.php:6
2202
  #, fuzzy
2203
  msgctxt "form-fields admin"
2204
  msgid "Manage Theme Tags"
@@ -2217,7 +2237,7 @@ msgctxt "form-fields admin"
2217
  msgid "Please see the <a>Form Fields documentation</a> for more details."
2218
  msgstr ""
2219
 
2220
- #. #-#-#-#-# WPBDM.pot (Business Directory Plugin 4.0.6) #-#-#-#-#
2221
  #. Plugin Name of the plugin/theme
2222
  #: admin/templates/header.tpl.php:4
2223
  msgid "Business Directory Plugin"
@@ -2866,7 +2886,25 @@ msgctxt "themes"
2866
  msgid "Activating license..."
2867
  msgstr "Aktiviere Lizenz..."
2868
 
2869
- #: admin/templates/themes.tpl.php:13
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
2870
  msgctxt "themes"
2871
  msgid ""
2872
  "<a><b>Directory Themes</b></a> are pre-made templates for the <i>Business "
@@ -2874,7 +2912,7 @@ msgid ""
2874
  "We have a number of them available for purchase <a>here</a>."
2875
  msgstr ""
2876
 
2877
- #: admin/templates/themes.tpl.php:14
2878
  msgctxt "themes"
2879
  msgid ""
2880
  "They are <strong>different</strong> than your regular WordPress theme and "
@@ -3548,13 +3586,13 @@ msgctxt "admin settings"
3548
  msgid "Enable AJAX compatibility mode?"
3549
  msgstr ""
3550
 
3551
- #: core/class-settings.php:179 core/class-settings.php:658
3552
  msgctxt "admin settings"
3553
  msgid "Listings"
3554
  msgstr "Einträge"
3555
 
3556
  #: core/class-settings.php:180 core/class-settings.php:330
3557
- #: core/class-settings.php:615
3558
  msgctxt "admin settings"
3559
  msgid "General Settings"
3560
  msgstr "Allgemeine Einstellungen"
@@ -3827,12 +3865,12 @@ msgctxt "admin settings"
3827
  msgid "Author"
3828
  msgstr "Author"
3829
 
3830
- #: core/class-settings.php:293
3831
  msgctxt "admin settings"
3832
  msgid "Date posted"
3833
  msgstr "Datum gepostet"
3834
 
3835
- #: core/class-settings.php:294
3836
  msgctxt "admin settings"
3837
  msgid "Date last modified"
3838
  msgstr "Datum zuletzt verändert"
@@ -3941,6 +3979,16 @@ msgstr ""
3941
  "Dies bewirkt, dass eine E-mail an den Eigentümer geschickt wird, wenn der "
3942
  "Eintrag abläuft."
3943
 
 
 
 
 
 
 
 
 
 
 
3944
  #: core/class-settings.php:349
3945
  msgctxt "admin settings"
3946
  msgid "E-Mail Notifications"
@@ -4489,27 +4537,32 @@ msgctxt "admin settings"
4489
  msgid "Themes"
4490
  msgstr ""
4491
 
4492
- #: core/class-settings.php:619
 
 
 
 
 
4493
  msgctxt "admin settings"
4494
  msgid "Theme button style"
4495
  msgstr ""
4496
 
4497
- #: core/class-settings.php:623
4498
  msgctxt "admin settings"
4499
  msgid "Use the BD theme style for BD buttons"
4500
  msgstr ""
4501
 
4502
- #: core/class-settings.php:624
4503
  msgctxt "admin settings"
4504
  msgid "Use the WP theme style for BD buttons"
4505
  msgstr ""
4506
 
4507
- #: core/class-settings.php:631
4508
  msgctxt "admin settings"
4509
  msgid "Image"
4510
  msgstr "Bild"
4511
 
4512
- #: core/class-settings.php:632
4513
  msgctxt "admin settings"
4514
  msgid ""
4515
  "Any changes to these settings will affect new listings only. Existing "
@@ -4522,57 +4575,57 @@ msgstr ""
4522
  "existierende Einträge verändert werden, musst du Bild(er) neu hochladen, "
4523
  "nachdem Einstellungen hier verändert wurden."
4524
 
4525
- #: core/class-settings.php:633
4526
  msgctxt "admin settings"
4527
  msgid "Image Settings"
4528
  msgstr "Bildeinstellungen"
4529
 
4530
- #: core/class-settings.php:634
4531
  msgctxt "admin settings"
4532
  msgid "Allow images?"
4533
  msgstr "Bilder erlauben?"
4534
 
4535
- #: core/class-settings.php:636
4536
  #, fuzzy
4537
  msgctxt "admin settings"
4538
  msgid "Min Image File Size (KB)"
4539
  msgstr "Maximale Bildgröße (KB)"
4540
 
4541
- #: core/class-settings.php:637
4542
  msgctxt "admin settings"
4543
  msgid "Max Image File Size (KB)"
4544
  msgstr "Maximale Bildgröße (KB)"
4545
 
4546
- #: core/class-settings.php:639
4547
  #, fuzzy
4548
  msgctxt "admin settings"
4549
  msgid "Min image width (px)"
4550
  msgstr "Bildergröße (in px):"
4551
 
4552
- #: core/class-settings.php:640
4553
  #, fuzzy
4554
  msgctxt "admin settings"
4555
  msgid "Min image height (px)"
4556
  msgstr "Bilderhöhe (in px):"
4557
 
4558
- #: core/class-settings.php:642
4559
  #, fuzzy
4560
  msgctxt "admin settings"
4561
  msgid "Max image width (px)"
4562
  msgstr "Maximale Bildbreite"
4563
 
4564
- #: core/class-settings.php:643
4565
  #, fuzzy
4566
  msgctxt "admin settings"
4567
  msgid "Max image height (px)"
4568
  msgstr "Maximale Bildhöhe"
4569
 
4570
- #: core/class-settings.php:645
4571
  msgctxt "admin settings"
4572
  msgid "Turn on thickbox/lightbox?"
4573
  msgstr "Kontrollkästchen/Leuchtkasten aktivieren?"
4574
 
4575
- #: core/class-settings.php:645
4576
  msgctxt "admin settings"
4577
  msgid ""
4578
  "Uncheck if it conflicts with other elements or plugins installed on your site"
@@ -4580,30 +4633,30 @@ msgstr ""
4580
  "Deaktivieren wenn Konflikte mit anderen Elementen oder installierten "
4581
  "Erweiterungen entstehen"
4582
 
4583
- #: core/class-settings.php:647
4584
  #, fuzzy
4585
  msgctxt "admin settings"
4586
  msgid "Thumbnails"
4587
  msgstr "Thumbnails"
4588
 
4589
- #: core/class-settings.php:648
4590
  #, fuzzy
4591
  msgctxt "admin settings"
4592
  msgid "Thumbnail width (px)"
4593
  msgstr "Thumbnailbreite"
4594
 
4595
- #: core/class-settings.php:649
4596
  #, fuzzy
4597
  msgctxt "admin settings"
4598
  msgid "Thumbnail height (px)"
4599
  msgstr "Thumbnailbreite"
4600
 
4601
- #: core/class-settings.php:652
4602
  msgctxt "admin settings"
4603
  msgid "Crop thumbnails to exact dimensions?"
4604
  msgstr ""
4605
 
4606
- #: core/class-settings.php:655
4607
  msgctxt "admin settings"
4608
  msgid ""
4609
  "When enabled images will match exactly the dimensions above but part of the "
@@ -4612,12 +4665,12 @@ msgid ""
4612
  "Depending on the uploaded images, thumbnails may have different heights."
4613
  msgstr ""
4614
 
4615
- #: core/class-settings.php:661
4616
  msgctxt "admin settings"
4617
  msgid "Number of free images"
4618
  msgstr "Nummer der freien Bilder"
4619
 
4620
- #: core/class-settings.php:666
4621
  msgctxt "admin settings"
4622
  msgid ""
4623
  "For paid listing images, configure that by adding or editing a <a>Fee Plan</"
@@ -4627,128 +4680,139 @@ msgstr ""
4627
  "erstellen eines <a>Preisplan</a> an Stelle dieser Einstellungen, die von "
4628
  "bezahlten Einträgen ignoriert wird."
4629
 
4630
- #: core/class-settings.php:669
4631
  msgctxt "admin settings"
4632
  msgid "Use default picture for listings with no picture?"
4633
  msgstr "Benutze Standardbilder für Einträge mit keinem Bild?"
4634
 
4635
- #: core/class-settings.php:670
4636
  msgctxt "admin settings"
4637
  msgid "Show Thumbnail on main listings page?"
4638
  msgstr "Thumbnail auf der Eintragshauptseite anzeigen?"
4639
 
4640
- #: core/class-settings.php:726
 
 
 
 
 
 
 
 
 
 
 
4641
  msgctxt "admin settings"
4642
  msgid ""
4643
  "Could not copy the AJAX compatibility plugin \"%s\". Compatibility mode was "
4644
  "not activated."
4645
  msgstr ""
4646
 
4647
- #: core/class-settings.php:734
4648
  msgctxt "admin settings"
4649
  msgid ""
4650
  "Could not activate AJAX Compatibility mode: the directory \"%s\" could not "
4651
  "be created."
4652
  msgstr ""
4653
 
4654
- #: core/class-settings.php:743
4655
  msgctxt "admin settings"
4656
  msgid ""
4657
  "Could not remove the \"Business Directory Plugin - AJAX Compatibility Module"
4658
  "\". Please remove the file \"%s\" manually or deactivate the plugin."
4659
  msgstr ""
4660
 
4661
- #: core/class-settings.php:1063
4662
  msgctxt "settings"
4663
  msgid "Deactivate License"
4664
  msgstr "Lizenz Deaktivieren"
4665
 
4666
- #: core/class-settings.php:1065
4667
  msgctxt "settings"
4668
  msgid "Deactivating license..."
4669
  msgstr "Deaktiviere Lizenz..."
4670
 
4671
- #: core/class-settings.php:1068
4672
  msgctxt "settings"
4673
  msgid "Activate License"
4674
  msgstr "Aktiviere Lizenz"
4675
 
4676
- #: core/class-settings.php:1070
4677
  msgctxt "settings"
4678
  msgid "Activating license..."
4679
  msgstr "Aktiviere Lizenz..."
4680
 
4681
- #: core/class-settings.php:1093
4682
  msgctxt "admin settings"
4683
  msgid "Valid placeholders: %s"
4684
  msgstr "Gültige Platzhalter: %s"
4685
 
4686
- #: core/class-settings.php:1127
4687
  msgctxt "settings email"
4688
  msgid "Click to edit e-mail"
4689
  msgstr "Klicken um E-mail zu bearbeiten"
4690
 
4691
- #: core/class-settings.php:1128
4692
  msgctxt "settings email"
4693
  msgid "Click to edit"
4694
  msgstr "zum Bearbeiten klicken"
4695
 
4696
- #: core/class-settings.php:1141
4697
  msgctxt "settings email"
4698
  msgid "E-Mail Subject"
4699
  msgstr "E-mail Betreff"
4700
 
4701
- #: core/class-settings.php:1152
4702
  msgctxt "settings email"
4703
  msgid "E-Mail Body"
4704
  msgstr "E-mail Text"
4705
 
4706
- #: core/class-settings.php:1163
4707
  msgctxt "settings email"
4708
  msgid "You can use the following placeholders:"
4709
  msgstr "Du kannst folgende Platzhalter verwenden:"
4710
 
4711
- #: core/class-settings.php:1186
4712
  msgctxt "settings email"
4713
  msgid "Preview e-mail"
4714
  msgstr "Vorschau E-mail"
4715
 
4716
- #: core/class-settings.php:1187
4717
  msgctxt "settings email"
4718
  msgid "Cancel"
4719
  msgstr "Abbrechen"
4720
 
4721
- #: core/class-settings.php:1188
4722
  msgctxt "settings email"
4723
  msgid "Save Changes"
4724
  msgstr "Änderungen sichern"
4725
 
4726
- #: core/class-settings.php:1207
4727
  msgctxt "settings email"
4728
  msgid "Site title"
4729
  msgstr "Seitentitel"
4730
 
4731
- #: core/class-settings.php:1210
4732
  msgctxt "settings email"
4733
  msgid "Site title (with link)"
4734
  msgstr "Seitentitel (mit Link)"
4735
 
4736
- #: core/class-settings.php:1213
4737
  msgctxt "settings email"
4738
  msgid "Site address (with link)"
4739
  msgstr "Seitenadresse (mit Link)"
4740
 
4741
- #: core/class-settings.php:1216
4742
  msgctxt "settings email"
4743
  msgid "Directory URL (with link)"
4744
  msgstr "Verzeichnis URL (mit Link)"
4745
 
4746
- #: core/class-settings.php:1219
4747
  msgctxt "settings email"
4748
  msgid "Current date"
4749
  msgstr "Aktuelles Datum"
4750
 
4751
- #: core/class-settings.php:1222
4752
  msgctxt "settings email"
4753
  msgid "Current time"
4754
  msgstr "Aktuelle Zeit"
4
  msgstr ""
5
  "Project-Id-Version: Business Directory Plugin 3.5.4\n"
6
  "Report-Msgid-Bugs-To: http://wordpress.org/tag/business-directory-plugin\n"
7
+ "POT-Creation-Date: 2016-06-21 22:32:39+00:00\n"
8
  "PO-Revision-Date: 2016-01-21 08:45-0500\n"
9
  "Last-Translator: BD Team <support@businessdirectoryplugin.com>\n"
10
  "Language-Team: Business Directory Plugin <support@businessdirectoryplugin."
168
  msgid "Invalid e-mail address."
169
  msgstr "Ungültiger Erneuerungszustand."
170
 
171
+ #: admin/class-admin.php:219
172
  msgctxt "admin menu"
173
  msgid "Business Directory Admin"
174
  msgstr "Branchenverzeichnis Administration"
175
 
176
+ #: admin/class-admin.php:220
177
+ #, fuzzy
178
+ msgctxt "admin menu"
179
+ msgid "Dir. Admin"
180
+ msgstr "Verzeichnis Administration"
181
+
182
+ #: admin/class-admin.php:220
183
  msgctxt "admin menu"
184
  msgid "Directory Admin"
185
  msgstr "Verzeichnis Administration"
186
 
187
+ #: admin/class-admin.php:226 admin/class-admin.php:227
188
  msgctxt "admin menu"
189
  msgid "Add New Listing"
190
  msgstr "Neuen Eintrag hinzufügen"
191
 
192
+ #: admin/class-admin.php:232 admin/class-admin.php:233
193
  msgctxt "admin menu"
194
  msgid "Manage Options"
195
  msgstr "Optionen Verwalten"
196
 
197
+ #: admin/class-admin.php:238 admin/class-admin.php:239
198
  msgctxt "admin menu"
199
  msgid "Manage Fees"
200
  msgstr "Preise Verwalten"
201
 
202
+ #: admin/class-admin.php:244 admin/class-admin.php:245
203
  msgctxt "admin menu"
204
  msgid "Manage Form Fields"
205
  msgstr "Form Felder verwalten"
206
 
207
+ #: admin/class-admin.php:250 admin/class-admin.php:251
208
  #, fuzzy
209
  msgctxt "admin menu"
210
  msgid "Listings"
211
  msgstr "Einträge"
212
 
213
+ #: admin/class-admin.php:265 admin/class-admin.php:266
214
  msgctxt "admin menu"
215
  msgid "CSV Import"
216
  msgstr "CSV Datei importieren"
217
 
218
+ #: admin/class-admin.php:271 admin/class-admin.php:272
219
  msgctxt "admin menu"
220
  msgid "CSV Export"
221
  msgstr "CVS Datei exportieren"
222
 
223
+ #: admin/class-admin.php:277 admin/class-admin.php:278
224
  msgctxt "admin menu"
225
  msgid "Debug"
226
  msgstr "Fehlerkorrektur"
227
 
228
+ #: admin/class-admin.php:287
229
  msgctxt "admin menu"
230
  msgid "Main Menu"
231
  msgstr "Hauptmenü"
232
 
233
+ #: admin/class-admin.php:298
234
  msgctxt "admin menu"
235
  msgid "Uninstall Business Directory Plugin"
236
  msgstr "Branchenverzeichnis deinstallieren"
237
 
238
+ #: admin/class-admin.php:299
239
  msgctxt "admin menu"
240
  msgid "Uninstall"
241
  msgstr "Deinstallieren"
242
 
243
+ #: admin/class-admin.php:413
244
  #: admin/templates/listing-metabox-categories.tpl.php:69
245
  msgctxt "admin infometabox"
246
  msgid "never"
247
  msgstr "niemals"
248
 
249
+ #: admin/class-admin.php:507
250
  msgctxt "admin"
251
  msgid "Dismiss this notice."
252
  msgstr ""
253
 
254
+ #: admin/class-admin.php:535
255
  msgctxt "admin"
256
  msgid "The listing has been published."
257
  msgid_plural "The listings have been published."
258
  msgstr[0] "Der Eintrag wurde veröffentlicht."
259
  msgstr[1] "Die Einträge wurden veröffentlicht."
260
 
261
+ #: admin/class-admin.php:553
262
  msgctxt "admin"
263
  msgid "The listing status has been set as paid."
264
  msgid_plural "The listings status has been set as paid."
265
  msgstr[0] "Der Status des Eintrags wurde auf bezahlt gesetzt."
266
  msgstr[1] "Der Status der Einträge wurde auf bezahlt gesetzt."
267
 
268
+ #: admin/class-admin.php:559
269
  msgctxt "admin"
270
  msgid ""
271
  "Only invoices containing non-recurring items were marked as paid. Please "
277
  msgstr[0] ""
278
  msgstr[1] ""
279
 
280
+ #: admin/class-admin.php:578
281
  msgctxt "admin"
282
  msgid "The listing has been modified."
283
  msgid_plural "The listings have been modified."
284
  msgstr[0] "Der Eintrag wurde verändert."
285
  msgstr[1] "Die Einträge wurden verändert."
286
 
287
+ #: admin/class-admin.php:591
288
  msgctxt "admin"
289
  msgid "The listing has been upgraded."
290
  msgid_plural "The listings have been upgraded."
291
  msgstr[0] "Der Eintrag wurde aktualisiert"
292
  msgstr[1] "Die Einträge wurden aktualisiert."
293
 
294
+ #: admin/class-admin.php:603
295
  msgctxt "admin"
296
  msgid "The listing has been downgraded."
297
  msgid_plural "The listings have been downgraded."
298
  msgstr[0] "Der Eintrag wurde zurück gesetzt."
299
  msgstr[1] "Die Einträge wurden zurück gesetzt."
300
 
301
+ #: admin/class-admin.php:614
302
  msgctxt "admin payments"
303
  msgid ""
304
  "The payment status was not changed. Recurring payments can't be manually "
306
  "went through."
307
  msgstr ""
308
 
309
+ #: admin/class-admin.php:619
310
  msgctxt "admin"
311
  msgid "The transaction has been approved."
312
  msgstr "Die Transaktion wurde genehmigt."
313
 
314
+ #: admin/class-admin.php:629
315
  msgctxt "admin"
316
  msgid "The transaction has been rejected."
317
  msgstr "Die Transaktion wurde abgelehnt."
318
 
319
+ #: admin/class-admin.php:635
320
  msgctxt "admin"
321
  msgid "The fee was successfully assigned."
322
  msgstr "Der Preis wurde erfolgreich zugewiesen."
323
 
324
+ #: admin/class-admin.php:644
325
  msgctxt "admin"
326
  msgid "Listing was renewed."
327
  msgid_plural "Listings were renewed."
328
  msgstr[0] "Eintrag wurde aktualisiert."
329
  msgstr[1] "Einträge wurden aktualisiert."
330
 
331
+ #: admin/class-admin.php:651
332
  msgctxt "admin"
333
  msgid "Renewal email sent."
334
  msgstr "E-mail erneut senden."
335
 
336
+ #: admin/class-admin.php:685
337
  msgctxt "admin category id"
338
  msgid "ID"
339
  msgstr "ID"
340
 
341
+ #: admin/class-admin.php:687 admin/class-admin.php:693
342
  msgctxt "admin"
343
  msgid "Listing Count"
344
  msgstr "Anzahl Einträge "
345
 
346
+ #: admin/class-admin.php:802
347
  msgctxt "admin"
348
  msgid ""
349
  "<b>Business Directory Plugin</b> requires fields with the following "
352
  "<b>Branchenverzeichnis Erweiterung</b> benötigt Felder mit den folgenden "
353
  "Verbindungen um korrekt zu funktionieren: <b>%s</b>."
354
 
355
+ #: admin/class-admin.php:804
356
  msgctxt "admin"
357
  msgid ""
358
  "<b>Business Directory Plugin</b> requires a field with a <b>%s</b> "
361
  "<b>Branchenverzeichnis Erweiterung</b> benötigt ein Feld mit der Verbindung "
362
  "<b>%s</b>, um korrekt zu funktionieren."
363
 
364
+ #: admin/class-admin.php:808
365
  msgctxt "admin"
366
  msgid ""
367
  "You can create these custom fields by yourself inside \"Manage Form Fields\" "
370
  "Sie können diese benutzerdefinierten Felder selbst erzeugen \"Form Felder "
371
  "Verwalten\" oder vom Branchenverzeichnis automatisch erstellen lassen."
372
 
373
+ #: admin/class-admin.php:812
374
  msgctxt "admin"
375
  msgid "Go to \"Manage Form Fields\""
376
  msgstr "zu \"Form Felder verwalten\""
377
 
378
+ #: admin/class-admin.php:815
379
  msgctxt "admin"
380
  msgid "Create these required fields for me"
381
  msgstr "Erstelle diese benötigten Felder für mich"
382
 
383
+ #: admin/class-admin.php:824
384
  msgctxt "admin"
385
  msgid ""
386
  "<b>Business Directory Plugin</b> requires a page with the "
389
  "<b>Branchenverzeichnis Erweiterung</b> benötigt eine Seite mit dem "
390
  "<tt>[businessdirectory]</tt> shortcode um zu funktionieren."
391
 
392
+ #: admin/class-admin.php:826
393
  msgctxt "admin"
394
  msgid ""
395
  "You can create this page by yourself or let Business Directory do this for "
398
  "Du kannst diese Seite selbst erstellen oder vom Branchenverzeichnis "
399
  "automatisch erstellen lassen."
400
 
401
+ #: admin/class-admin.php:830
402
  msgctxt "admin"
403
  msgid "Create required pages for me"
404
  msgstr "Erstelle benötigte Seiten für mich"
405
 
406
+ #: admin/class-admin.php:870
407
  msgctxt "admin compat"
408
  msgid "Installed: %s"
409
  msgstr "Installiert: %s"
410
 
411
+ #: admin/class-admin.php:870
412
  msgctxt "admin compat"
413
  msgid "N/A"
414
  msgstr "keine Angabe"
415
 
416
+ #: admin/class-admin.php:873
417
  msgctxt "admin compat"
418
  msgid "Required: %s"
419
  msgstr "Pflichtfeld: %s"
420
 
421
+ #: admin/class-admin.php:885
422
  msgctxt "admin compat"
423
  msgid ""
424
  "Business Directory has detected some incompatible premium module versions "
427
  "Branchenverzeichnis hat festgestellt, dass einige inkompatible Premium Modul "
428
  "Versionen installiert sind."
429
 
430
+ #: admin/class-admin.php:887
431
  msgctxt "admin compat"
432
  msgid ""
433
  "Please upgrade to the required versions indicated below to make sure "
436
  "Bitte die benötigten Versionen siehe unten aktualisieren, um sicher zu sein, "
437
  "dass alles korrekt funktioniert. "
438
 
439
+ #: admin/class-admin.php:907
440
  msgctxt "admin"
441
  msgid ""
442
  "We noticed you want your Business Directory users to register before posting "
466
  msgstr ""
467
  "Es sind keine Bilder vorhanden die dem Eintrag aktuell hinzugefügt wurden."
468
 
469
+ #: admin/class-themes-admin.php:47
470
  #, fuzzy
471
  msgctxt "themes"
472
  msgid "Directory Themes"
473
  msgstr "Verzeichnis Kategorien"
474
 
475
+ #: admin/class-themes-admin.php:48
476
  #, fuzzy
477
  msgctxt "themes"
478
  msgid "Directory Themes %s"
479
  msgstr "Verzeichnis Kategorien"
480
 
481
+ #: admin/class-themes-admin.php:94
482
  msgctxt "admin themes"
483
  msgid ""
484
  "Business Directory Plugin - Your template overrides need to be reviewed!"
485
  msgstr ""
486
 
487
+ #: admin/class-themes-admin.php:96
488
  msgctxt "admin themes"
489
  msgid ""
490
  "Starting with version 4.0, Business Directory is using a new theming system "
491
  "that is not compatible with the templates used in previous versions."
492
  msgstr ""
493
 
494
+ #: admin/class-themes-admin.php:98
495
  msgctxt "admin themes"
496
  msgid ""
497
  "Because of this, your template overrides below have been disabled. You "
499
  "templates."
500
  msgstr ""
501
 
502
+ #: admin/class-themes-admin.php:127
503
  msgctxt "admin themes"
504
  msgid ""
505
  "You need to <a>activate your theme's license key</a> before you can activate "
506
  "the theme. <a>Click here</a> to do that."
507
  msgstr ""
508
 
509
+ #: admin/class-themes-admin.php:155
510
  #, fuzzy
511
  msgctxt "themes"
512
  msgid "Could not change the active theme to \"%s\"."
513
  msgstr "Konnte Eintragskategorie nicht erstellen \"%s\""
514
 
515
+ #: admin/class-themes-admin.php:202
516
  msgctxt "themes"
517
  msgid "Active theme changed to \"%s\"."
518
  msgstr ""
519
 
520
+ #: admin/class-themes-admin.php:205
521
  msgctxt "themes"
522
  msgid ""
523
  "%s requires that you tag your existing fields to match some places we want "
524
  "to put your data on the theme. Below are fields we think are missing."
525
  msgstr ""
526
 
527
+ #: admin/class-themes-admin.php:214
528
  #, fuzzy
529
  msgctxt "themes"
530
  msgid "Map My Fields"
531
  msgstr "Form Felder verwalten"
532
 
533
+ #: admin/class-themes-admin.php:221
534
  #, fuzzy
535
  msgctxt "themes"
536
  msgid "Suggested fields created successfully."
537
  msgstr "Benötigtes Feld wurde erfolgreich erstellt."
538
 
539
+ #: admin/class-themes-admin.php:224
540
  #, fuzzy
541
  msgctxt "themes"
542
  msgid "Theme installed successfully."
543
  msgstr "Benötigtes Feld wurde erfolgreich erstellt."
544
 
545
+ #: admin/class-themes-admin.php:227
546
  #, fuzzy
547
  msgctxt "themes"
548
  msgid "Theme was deleted sucessfully."
549
  msgstr "Der Import wurde erfolgreich abgeschlossen."
550
 
551
+ #: admin/class-themes-admin.php:230
552
  msgctxt "themes"
553
  msgid "Could not delete theme directory. Check permissions."
554
  msgstr ""
555
 
556
+ #: admin/class-themes-admin.php:256
557
  #, fuzzy
558
  msgctxt "themes"
559
  msgid "Please upload a valid theme file."
560
  msgstr "Bitte eine gültige E-mailadresse eingeben."
561
 
562
+ #: admin/class-themes-admin.php:263
563
  #, fuzzy
564
  msgctxt "themes"
565
  msgid "Could not move \"%s\" to a temporary directory."
566
  msgstr "wpbdp-csv-exports Verzeichnis konnte nicht erstellt werden."
567
 
568
+ #: admin/class-themes-admin.php:364 admin/class-themes-admin.php:425
569
  #: core/licensing.php:127 core/licensing.php:159
570
  msgctxt "licensing"
571
  msgid "Could not contact licensing server"
572
  msgstr "Eine Verbindung zum Lizenzserver konnte nicht hergestellt werden."
573
 
574
+ #: admin/class-themes-admin.php:370 core/licensing.php:132
575
  #: core/licensing.php:166
576
  msgctxt "licensing"
577
  msgid "License key is invalid"
578
  msgstr "Lizenzschlüssel ungültig "
579
 
580
+ #: admin/class-themes-admin.php:375 core/licensing.php:333
581
  msgctxt "licensing"
582
  msgid "Could not activate license: %s."
583
  msgstr "Konnte Lizenz nicht aktivieren: %s"
584
 
585
+ #: admin/class-themes-admin.php:388 core/licensing.php:335
586
  msgctxt "licensing"
587
  msgid "License activated"
588
  msgstr "Lizenz aktiviert"
589
 
590
+ #: admin/class-themes-admin.php:431
591
  msgctxt "licensing"
592
  msgid "Invalid response from server"
593
  msgstr ""
594
 
595
+ #: admin/class-themes-admin.php:448 core/licensing.php:353
596
  msgctxt "licensing"
597
  msgid "License deactivated"
598
  msgstr "Lizenz deaktiviert"
599
 
600
+ #: admin/class-themes-admin.php:464
601
  msgctxt "themes"
602
  msgid "Activate your <a>license key</a> to use this theme."
603
  msgstr ""
2043
  msgid "Field Association"
2044
  msgstr "Feldverbindung"
2045
 
2046
+ #: admin/templates/form-fields-addoredit.tpl.php:14
2047
+ #: admin/templates/form-fields-addoredit.tpl.php:36
2048
+ #: admin/templates/form-fields-addoredit.tpl.php:60
2049
+ #, fuzzy
2050
+ msgctxt "form-fields admin"
2051
+ msgid "required"
2052
+ msgstr "Pflichtfeld"
2053
+
2054
  #: admin/templates/form-fields-addoredit.tpl.php:36
2055
  msgctxt "form-fields admin"
2056
  msgid "Field Type"
2066
  msgid "Field description"
2067
  msgstr "Feldbeschreibung"
2068
 
2069
+ #: admin/templates/form-fields-addoredit.tpl.php:70
2070
+ #, fuzzy
2071
+ msgctxt "form-fields admin"
2072
+ msgid "optional"
2073
+ msgstr "Optional"
2074
+
2075
  #: admin/templates/form-fields-addoredit.tpl.php:87
2076
  msgctxt "form-fields admin"
2077
  msgid "Field-specific settings"
2218
  msgid "Preview Form"
2219
  msgstr "Formvorschau"
2220
 
2221
+ #: admin/templates/form-fields.tpl.php:6 admin/templates/themes.tpl.php:4
2222
  #, fuzzy
2223
  msgctxt "form-fields admin"
2224
  msgid "Manage Theme Tags"
2237
  msgid "Please see the <a>Form Fields documentation</a> for more details."
2238
  msgstr ""
2239
 
2240
+ #. #-#-#-#-# WPBDM.pot (Business Directory Plugin 4.0.7) #-#-#-#-#
2241
  #. Plugin Name of the plugin/theme
2242
  #: admin/templates/header.tpl.php:4
2243
  msgid "Business Directory Plugin"
2886
  msgid "Activating license..."
2887
  msgstr "Aktiviere Lizenz..."
2888
 
2889
+ #: admin/templates/themes-tabs.tpl.php:6
2890
+ #, fuzzy
2891
+ msgctxt "admin themes"
2892
+ msgid "Available Themes"
2893
+ msgstr "verfügbare Bilder:"
2894
+
2895
+ #: admin/templates/themes-tabs.tpl.php:7
2896
+ #, fuzzy
2897
+ msgctxt "admin themes"
2898
+ msgid "Licenses"
2899
+ msgstr "Lizenz"
2900
+
2901
+ #: admin/templates/themes.tpl.php:5
2902
+ #, fuzzy
2903
+ msgctxt "themes"
2904
+ msgid "Settings"
2905
+ msgstr "Einstellungen"
2906
+
2907
+ #: admin/templates/themes.tpl.php:15
2908
  msgctxt "themes"
2909
  msgid ""
2910
  "<a><b>Directory Themes</b></a> are pre-made templates for the <i>Business "
2912
  "We have a number of them available for purchase <a>here</a>."
2913
  msgstr ""
2914
 
2915
+ #: admin/templates/themes.tpl.php:16
2916
  msgctxt "themes"
2917
  msgid ""
2918
  "They are <strong>different</strong> than your regular WordPress theme and "
3586
  msgid "Enable AJAX compatibility mode?"
3587
  msgstr ""
3588
 
3589
+ #: core/class-settings.php:179 core/class-settings.php:660
3590
  msgctxt "admin settings"
3591
  msgid "Listings"
3592
  msgstr "Einträge"
3593
 
3594
  #: core/class-settings.php:180 core/class-settings.php:330
3595
+ #: core/class-settings.php:617
3596
  msgctxt "admin settings"
3597
  msgid "General Settings"
3598
  msgstr "Allgemeine Einstellungen"
3865
  msgid "Author"
3866
  msgstr "Author"
3867
 
3868
+ #: core/class-settings.php:293 core/class-settings.php:703
3869
  msgctxt "admin settings"
3870
  msgid "Date posted"
3871
  msgstr "Datum gepostet"
3872
 
3873
+ #: core/class-settings.php:294 core/class-settings.php:704
3874
  msgctxt "admin settings"
3875
  msgid "Date last modified"
3876
  msgstr "Datum zuletzt verändert"
3979
  "Dies bewirkt, dass eine E-mail an den Eigentümer geschickt wird, wenn der "
3980
  "Eintrag abläuft."
3981
 
3982
+ #: core/class-settings.php:344
3983
+ msgctxt "admin settings"
3984
+ msgid "Try listing's email field first, then author's email."
3985
+ msgstr ""
3986
+
3987
+ #: core/class-settings.php:345
3988
+ msgctxt "admin settings"
3989
+ msgid "Try author's email first and then listing's email field."
3990
+ msgstr ""
3991
+
3992
  #: core/class-settings.php:349
3993
  msgctxt "admin settings"
3994
  msgid "E-Mail Notifications"
4537
  msgid "Themes"
4538
  msgstr ""
4539
 
4540
+ #: core/class-settings.php:616
4541
+ msgctxt "admin settings"
4542
+ msgid "You can manage your themes on <a>Directory Themes</a>."
4543
+ msgstr ""
4544
+
4545
+ #: core/class-settings.php:621
4546
  msgctxt "admin settings"
4547
  msgid "Theme button style"
4548
  msgstr ""
4549
 
4550
+ #: core/class-settings.php:625
4551
  msgctxt "admin settings"
4552
  msgid "Use the BD theme style for BD buttons"
4553
  msgstr ""
4554
 
4555
+ #: core/class-settings.php:626
4556
  msgctxt "admin settings"
4557
  msgid "Use the WP theme style for BD buttons"
4558
  msgstr ""
4559
 
4560
+ #: core/class-settings.php:633
4561
  msgctxt "admin settings"
4562
  msgid "Image"
4563
  msgstr "Bild"
4564
 
4565
+ #: core/class-settings.php:634
4566
  msgctxt "admin settings"
4567
  msgid ""
4568
  "Any changes to these settings will affect new listings only. Existing "
4575
  "existierende Einträge verändert werden, musst du Bild(er) neu hochladen, "
4576
  "nachdem Einstellungen hier verändert wurden."
4577
 
4578
+ #: core/class-settings.php:635
4579
  msgctxt "admin settings"
4580
  msgid "Image Settings"
4581
  msgstr "Bildeinstellungen"
4582
 
4583
+ #: core/class-settings.php:636
4584
  msgctxt "admin settings"
4585
  msgid "Allow images?"
4586
  msgstr "Bilder erlauben?"
4587
 
4588
+ #: core/class-settings.php:638
4589
  #, fuzzy
4590
  msgctxt "admin settings"
4591
  msgid "Min Image File Size (KB)"
4592
  msgstr "Maximale Bildgröße (KB)"
4593
 
4594
+ #: core/class-settings.php:639
4595
  msgctxt "admin settings"
4596
  msgid "Max Image File Size (KB)"
4597
  msgstr "Maximale Bildgröße (KB)"
4598
 
4599
+ #: core/class-settings.php:641
4600
  #, fuzzy
4601
  msgctxt "admin settings"
4602
  msgid "Min image width (px)"
4603
  msgstr "Bildergröße (in px):"
4604
 
4605
+ #: core/class-settings.php:642
4606
  #, fuzzy
4607
  msgctxt "admin settings"
4608
  msgid "Min image height (px)"
4609
  msgstr "Bilderhöhe (in px):"
4610
 
4611
+ #: core/class-settings.php:644
4612
  #, fuzzy
4613
  msgctxt "admin settings"
4614
  msgid "Max image width (px)"
4615
  msgstr "Maximale Bildbreite"
4616
 
4617
+ #: core/class-settings.php:645
4618
  #, fuzzy
4619
  msgctxt "admin settings"
4620
  msgid "Max image height (px)"
4621
  msgstr "Maximale Bildhöhe"
4622
 
4623
+ #: core/class-settings.php:647
4624
  msgctxt "admin settings"
4625
  msgid "Turn on thickbox/lightbox?"
4626
  msgstr "Kontrollkästchen/Leuchtkasten aktivieren?"
4627
 
4628
+ #: core/class-settings.php:647
4629
  msgctxt "admin settings"
4630
  msgid ""
4631
  "Uncheck if it conflicts with other elements or plugins installed on your site"
4633
  "Deaktivieren wenn Konflikte mit anderen Elementen oder installierten "
4634
  "Erweiterungen entstehen"
4635
 
4636
+ #: core/class-settings.php:649
4637
  #, fuzzy
4638
  msgctxt "admin settings"
4639
  msgid "Thumbnails"
4640
  msgstr "Thumbnails"
4641
 
4642
+ #: core/class-settings.php:650
4643
  #, fuzzy
4644
  msgctxt "admin settings"
4645
  msgid "Thumbnail width (px)"
4646
  msgstr "Thumbnailbreite"
4647
 
4648
+ #: core/class-settings.php:651
4649
  #, fuzzy
4650
  msgctxt "admin settings"
4651
  msgid "Thumbnail height (px)"
4652
  msgstr "Thumbnailbreite"
4653
 
4654
+ #: core/class-settings.php:654
4655
  msgctxt "admin settings"
4656
  msgid "Crop thumbnails to exact dimensions?"
4657
  msgstr ""
4658
 
4659
+ #: core/class-settings.php:657
4660
  msgctxt "admin settings"
4661
  msgid ""
4662
  "When enabled images will match exactly the dimensions above but part of the "
4665
  "Depending on the uploaded images, thumbnails may have different heights."
4666
  msgstr ""
4667
 
4668
+ #: core/class-settings.php:663
4669
  msgctxt "admin settings"
4670
  msgid "Number of free images"
4671
  msgstr "Nummer der freien Bilder"
4672
 
4673
+ #: core/class-settings.php:668
4674
  msgctxt "admin settings"
4675
  msgid ""
4676
  "For paid listing images, configure that by adding or editing a <a>Fee Plan</"
4680
  "erstellen eines <a>Preisplan</a> an Stelle dieser Einstellungen, die von "
4681
  "bezahlten Einträgen ignoriert wird."
4682
 
4683
+ #: core/class-settings.php:671
4684
  msgctxt "admin settings"
4685
  msgid "Use default picture for listings with no picture?"
4686
  msgstr "Benutze Standardbilder für Einträge mit keinem Bild?"
4687
 
4688
+ #: core/class-settings.php:672
4689
  msgctxt "admin settings"
4690
  msgid "Show Thumbnail on main listings page?"
4691
  msgstr "Thumbnail auf der Eintragshauptseite anzeigen?"
4692
 
4693
+ #: core/class-settings.php:701
4694
+ msgctxt "admin settings"
4695
+ msgid "User"
4696
+ msgstr ""
4697
+
4698
+ #: core/class-settings.php:702
4699
+ #, fuzzy
4700
+ msgctxt "admin settings"
4701
+ msgid "User registration date"
4702
+ msgstr "Eintrag Enddatum"
4703
+
4704
+ #: core/class-settings.php:728
4705
  msgctxt "admin settings"
4706
  msgid ""
4707
  "Could not copy the AJAX compatibility plugin \"%s\". Compatibility mode was "
4708
  "not activated."
4709
  msgstr ""
4710
 
4711
+ #: core/class-settings.php:736
4712
  msgctxt "admin settings"
4713
  msgid ""
4714
  "Could not activate AJAX Compatibility mode: the directory \"%s\" could not "
4715
  "be created."
4716
  msgstr ""
4717
 
4718
+ #: core/class-settings.php:745
4719
  msgctxt "admin settings"
4720
  msgid ""
4721
  "Could not remove the \"Business Directory Plugin - AJAX Compatibility Module"
4722
  "\". Please remove the file \"%s\" manually or deactivate the plugin."
4723
  msgstr ""
4724
 
4725
+ #: core/class-settings.php:1065
4726
  msgctxt "settings"
4727
  msgid "Deactivate License"
4728
  msgstr "Lizenz Deaktivieren"
4729
 
4730
+ #: core/class-settings.php:1067
4731
  msgctxt "settings"
4732
  msgid "Deactivating license..."
4733
  msgstr "Deaktiviere Lizenz..."
4734
 
4735
+ #: core/class-settings.php:1070
4736
  msgctxt "settings"
4737
  msgid "Activate License"
4738
  msgstr "Aktiviere Lizenz"
4739
 
4740
+ #: core/class-settings.php:1072
4741
  msgctxt "settings"
4742
  msgid "Activating license..."
4743
  msgstr "Aktiviere Lizenz..."
4744
 
4745
+ #: core/class-settings.php:1095
4746
  msgctxt "admin settings"
4747
  msgid "Valid placeholders: %s"
4748
  msgstr "Gültige Platzhalter: %s"
4749
 
4750
+ #: core/class-settings.php:1129
4751
  msgctxt "settings email"
4752
  msgid "Click to edit e-mail"
4753
  msgstr "Klicken um E-mail zu bearbeiten"
4754
 
4755
+ #: core/class-settings.php:1130
4756
  msgctxt "settings email"
4757
  msgid "Click to edit"
4758
  msgstr "zum Bearbeiten klicken"
4759
 
4760
+ #: core/class-settings.php:1143
4761
  msgctxt "settings email"
4762
  msgid "E-Mail Subject"
4763
  msgstr "E-mail Betreff"
4764
 
4765
+ #: core/class-settings.php:1154
4766
  msgctxt "settings email"
4767
  msgid "E-Mail Body"
4768
  msgstr "E-mail Text"
4769
 
4770
+ #: core/class-settings.php:1165
4771
  msgctxt "settings email"
4772
  msgid "You can use the following placeholders:"
4773
  msgstr "Du kannst folgende Platzhalter verwenden:"
4774
 
4775
+ #: core/class-settings.php:1188
4776
  msgctxt "settings email"
4777
  msgid "Preview e-mail"
4778
  msgstr "Vorschau E-mail"
4779
 
4780
+ #: core/class-settings.php:1189
4781
  msgctxt "settings email"
4782
  msgid "Cancel"
4783
  msgstr "Abbrechen"
4784
 
4785
+ #: core/class-settings.php:1190
4786
  msgctxt "settings email"
4787
  msgid "Save Changes"
4788
  msgstr "Änderungen sichern"
4789
 
4790
+ #: core/class-settings.php:1209
4791
  msgctxt "settings email"
4792
  msgid "Site title"
4793
  msgstr "Seitentitel"
4794
 
4795
+ #: core/class-settings.php:1212
4796
  msgctxt "settings email"
4797
  msgid "Site title (with link)"
4798
  msgstr "Seitentitel (mit Link)"
4799
 
4800
+ #: core/class-settings.php:1215
4801
  msgctxt "settings email"
4802
  msgid "Site address (with link)"
4803
  msgstr "Seitenadresse (mit Link)"
4804
 
4805
+ #: core/class-settings.php:1218
4806
  msgctxt "settings email"
4807
  msgid "Directory URL (with link)"
4808
  msgstr "Verzeichnis URL (mit Link)"
4809
 
4810
+ #: core/class-settings.php:1221
4811
  msgctxt "settings email"
4812
  msgid "Current date"
4813
  msgstr "Aktuelles Datum"
4814
 
4815
+ #: core/class-settings.php:1224
4816
  msgctxt "settings email"
4817
  msgid "Current time"
4818
  msgstr "Aktuelle Zeit"
languages/WPBDM-en_US.mo CHANGED
Binary file
languages/WPBDM-en_US.po CHANGED
@@ -4,7 +4,7 @@ msgid ""
4
  msgstr ""
5
  "Project-Id-Version: Business Directory Plugin 3.6\n"
6
  "Report-Msgid-Bugs-To: http://wordpress.org/tag/business-directory-plugin\n"
7
- "POT-Creation-Date: 2016-06-14 20:52:18+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"
@@ -163,97 +163,102 @@ msgctxt "drip pointer"
163
  msgid "Invalid e-mail address."
164
  msgstr ""
165
 
166
- #: admin/class-admin.php:216
167
  msgctxt "admin menu"
168
  msgid "Business Directory Admin"
169
  msgstr ""
170
 
171
- #: admin/class-admin.php:217
 
 
 
 
 
172
  msgctxt "admin menu"
173
  msgid "Directory Admin"
174
  msgstr ""
175
 
176
- #: admin/class-admin.php:223 admin/class-admin.php:224
177
  msgctxt "admin menu"
178
  msgid "Add New Listing"
179
  msgstr ""
180
 
181
- #: admin/class-admin.php:229 admin/class-admin.php:230
182
  msgctxt "admin menu"
183
  msgid "Manage Options"
184
  msgstr ""
185
 
186
- #: admin/class-admin.php:235 admin/class-admin.php:236
187
  msgctxt "admin menu"
188
  msgid "Manage Fees"
189
  msgstr ""
190
 
191
- #: admin/class-admin.php:241 admin/class-admin.php:242
192
  msgctxt "admin menu"
193
  msgid "Manage Form Fields"
194
  msgstr ""
195
 
196
- #: admin/class-admin.php:247 admin/class-admin.php:248
197
  msgctxt "admin menu"
198
  msgid "Listings"
199
  msgstr ""
200
 
201
- #: admin/class-admin.php:262 admin/class-admin.php:263
202
  msgctxt "admin menu"
203
  msgid "CSV Import"
204
  msgstr ""
205
 
206
- #: admin/class-admin.php:268 admin/class-admin.php:269
207
  msgctxt "admin menu"
208
  msgid "CSV Export"
209
  msgstr ""
210
 
211
- #: admin/class-admin.php:274 admin/class-admin.php:275
212
  msgctxt "admin menu"
213
  msgid "Debug"
214
  msgstr ""
215
 
216
- #: admin/class-admin.php:284
217
  msgctxt "admin menu"
218
  msgid "Main Menu"
219
  msgstr ""
220
 
221
- #: admin/class-admin.php:295
222
  msgctxt "admin menu"
223
  msgid "Uninstall Business Directory Plugin"
224
  msgstr ""
225
 
226
- #: admin/class-admin.php:296
227
  msgctxt "admin menu"
228
  msgid "Uninstall"
229
  msgstr ""
230
 
231
- #: admin/class-admin.php:410
232
  #: admin/templates/listing-metabox-categories.tpl.php:69
233
  msgctxt "admin infometabox"
234
  msgid "never"
235
  msgstr ""
236
 
237
- #: admin/class-admin.php:504
238
  msgctxt "admin"
239
  msgid "Dismiss this notice."
240
  msgstr ""
241
 
242
- #: admin/class-admin.php:532
243
  msgctxt "admin"
244
  msgid "The listing has been published."
245
  msgid_plural "The listings have been published."
246
  msgstr[0] ""
247
  msgstr[1] ""
248
 
249
- #: admin/class-admin.php:550
250
  msgctxt "admin"
251
  msgid "The listing status has been set as paid."
252
  msgid_plural "The listings status has been set as paid."
253
  msgstr[0] ""
254
  msgstr[1] ""
255
 
256
- #: admin/class-admin.php:556
257
  msgctxt "admin"
258
  msgid ""
259
  "Only invoices containing non-recurring items were marked as paid. Please "
@@ -265,28 +270,28 @@ msgid_plural ""
265
  msgstr[0] ""
266
  msgstr[1] ""
267
 
268
- #: admin/class-admin.php:575
269
  msgctxt "admin"
270
  msgid "The listing has been modified."
271
  msgid_plural "The listings have been modified."
272
  msgstr[0] ""
273
  msgstr[1] ""
274
 
275
- #: admin/class-admin.php:588
276
  msgctxt "admin"
277
  msgid "The listing has been upgraded."
278
  msgid_plural "The listings have been upgraded."
279
  msgstr[0] ""
280
  msgstr[1] ""
281
 
282
- #: admin/class-admin.php:600
283
  msgctxt "admin"
284
  msgid "The listing has been downgraded."
285
  msgid_plural "The listings have been downgraded."
286
  msgstr[0] ""
287
  msgstr[1] ""
288
 
289
- #: admin/class-admin.php:611
290
  msgctxt "admin payments"
291
  msgid ""
292
  "The payment status was not changed. Recurring payments can't be manually "
@@ -294,123 +299,123 @@ msgid ""
294
  "went through."
295
  msgstr ""
296
 
297
- #: admin/class-admin.php:616
298
  msgctxt "admin"
299
  msgid "The transaction has been approved."
300
  msgstr ""
301
 
302
- #: admin/class-admin.php:626
303
  msgctxt "admin"
304
  msgid "The transaction has been rejected."
305
  msgstr ""
306
 
307
- #: admin/class-admin.php:632
308
  msgctxt "admin"
309
  msgid "The fee was successfully assigned."
310
  msgstr ""
311
 
312
- #: admin/class-admin.php:641
313
  msgctxt "admin"
314
  msgid "Listing was renewed."
315
  msgid_plural "Listings were renewed."
316
  msgstr[0] ""
317
  msgstr[1] ""
318
 
319
- #: admin/class-admin.php:648
320
  msgctxt "admin"
321
  msgid "Renewal email sent."
322
  msgstr ""
323
 
324
- #: admin/class-admin.php:682
325
  msgctxt "admin category id"
326
  msgid "ID"
327
  msgstr ""
328
 
329
- #: admin/class-admin.php:684 admin/class-admin.php:690
330
  msgctxt "admin"
331
  msgid "Listing Count"
332
  msgstr ""
333
 
334
- #: admin/class-admin.php:799
335
  msgctxt "admin"
336
  msgid ""
337
  "<b>Business Directory Plugin</b> requires fields with the following "
338
  "associations in order to work correctly: <b>%s</b>."
339
  msgstr ""
340
 
341
- #: admin/class-admin.php:801
342
  msgctxt "admin"
343
  msgid ""
344
  "<b>Business Directory Plugin</b> requires a field with a <b>%s</b> "
345
  "association in order to work correctly."
346
  msgstr ""
347
 
348
- #: admin/class-admin.php:805
349
  msgctxt "admin"
350
  msgid ""
351
  "You can create these custom fields by yourself inside \"Manage Form Fields\" "
352
  "or let Business Directory do this for you automatically."
353
  msgstr ""
354
 
355
- #: admin/class-admin.php:809
356
  msgctxt "admin"
357
  msgid "Go to \"Manage Form Fields\""
358
  msgstr ""
359
 
360
- #: admin/class-admin.php:812
361
  msgctxt "admin"
362
  msgid "Create these required fields for me"
363
  msgstr ""
364
 
365
- #: admin/class-admin.php:821
366
  msgctxt "admin"
367
  msgid ""
368
  "<b>Business Directory Plugin</b> requires a page with the "
369
  "<tt>[businessdirectory]</tt> shortcode to function properly."
370
  msgstr ""
371
 
372
- #: admin/class-admin.php:823
373
  msgctxt "admin"
374
  msgid ""
375
  "You can create this page by yourself or let Business Directory do this for "
376
  "you automatically."
377
  msgstr ""
378
 
379
- #: admin/class-admin.php:827
380
  msgctxt "admin"
381
  msgid "Create required pages for me"
382
  msgstr ""
383
 
384
- #: admin/class-admin.php:867
385
  msgctxt "admin compat"
386
  msgid "Installed: %s"
387
  msgstr ""
388
 
389
- #: admin/class-admin.php:867
390
  msgctxt "admin compat"
391
  msgid "N/A"
392
  msgstr ""
393
 
394
- #: admin/class-admin.php:870
395
  msgctxt "admin compat"
396
  msgid "Required: %s"
397
  msgstr ""
398
 
399
- #: admin/class-admin.php:882
400
  msgctxt "admin compat"
401
  msgid ""
402
  "Business Directory has detected some incompatible premium module versions "
403
  "installed."
404
  msgstr ""
405
 
406
- #: admin/class-admin.php:884
407
  msgctxt "admin compat"
408
  msgid ""
409
  "Please upgrade to the required versions indicated below to make sure "
410
  "everything functions properly."
411
  msgstr ""
412
 
413
- #: admin/class-admin.php:904
414
  msgctxt "admin"
415
  msgid ""
416
  "We noticed you want your Business Directory users to register before posting "
@@ -434,30 +439,30 @@ msgctxt "templates"
434
  msgid "There are no images currently attached to the listing."
435
  msgstr ""
436
 
437
- #: admin/class-themes-admin.php:45
438
  msgctxt "themes"
439
  msgid "Directory Themes"
440
  msgstr ""
441
 
442
- #: admin/class-themes-admin.php:46
443
  msgctxt "themes"
444
  msgid "Directory Themes %s"
445
  msgstr ""
446
 
447
- #: admin/class-themes-admin.php:88
448
  msgctxt "admin themes"
449
  msgid ""
450
  "Business Directory Plugin - Your template overrides need to be reviewed!"
451
  msgstr ""
452
 
453
- #: admin/class-themes-admin.php:90
454
  msgctxt "admin themes"
455
  msgid ""
456
  "Starting with version 4.0, Business Directory is using a new theming system "
457
  "that is not compatible with the templates used in previous versions."
458
  msgstr ""
459
 
460
- #: admin/class-themes-admin.php:92
461
  msgctxt "admin themes"
462
  msgid ""
463
  "Because of this, your template overrides below have been disabled. You "
@@ -465,98 +470,98 @@ msgid ""
465
  "templates."
466
  msgstr ""
467
 
468
- #: admin/class-themes-admin.php:121
469
  msgctxt "admin themes"
470
  msgid ""
471
  "You need to <a>activate your theme's license key</a> before you can activate "
472
  "the theme. <a>Click here</a> to do that."
473
  msgstr ""
474
 
475
- #: admin/class-themes-admin.php:149
476
  msgctxt "themes"
477
  msgid "Could not change the active theme to \"%s\"."
478
  msgstr ""
479
 
480
- #: admin/class-themes-admin.php:196
481
  msgctxt "themes"
482
  msgid "Active theme changed to \"%s\"."
483
  msgstr ""
484
 
485
- #: admin/class-themes-admin.php:199
486
  msgctxt "themes"
487
  msgid ""
488
  "%s requires that you tag your existing fields to match some places we want "
489
  "to put your data on the theme. Below are fields we think are missing."
490
  msgstr ""
491
 
492
- #: admin/class-themes-admin.php:208
493
  msgctxt "themes"
494
  msgid "Map My Fields"
495
  msgstr ""
496
 
497
- #: admin/class-themes-admin.php:215
498
  msgctxt "themes"
499
  msgid "Suggested fields created successfully."
500
  msgstr ""
501
 
502
- #: admin/class-themes-admin.php:218
503
  msgctxt "themes"
504
  msgid "Theme installed successfully."
505
  msgstr ""
506
 
507
- #: admin/class-themes-admin.php:221
508
  msgctxt "themes"
509
  msgid "Theme was deleted sucessfully."
510
  msgstr ""
511
 
512
- #: admin/class-themes-admin.php:224
513
  msgctxt "themes"
514
  msgid "Could not delete theme directory. Check permissions."
515
  msgstr ""
516
 
517
- #: admin/class-themes-admin.php:250
518
  msgctxt "themes"
519
  msgid "Please upload a valid theme file."
520
  msgstr ""
521
 
522
- #: admin/class-themes-admin.php:257
523
  msgctxt "themes"
524
  msgid "Could not move \"%s\" to a temporary directory."
525
  msgstr ""
526
 
527
- #: admin/class-themes-admin.php:358 admin/class-themes-admin.php:419
528
  #: core/licensing.php:127 core/licensing.php:159
529
  msgctxt "licensing"
530
  msgid "Could not contact licensing server"
531
  msgstr ""
532
 
533
- #: admin/class-themes-admin.php:364 core/licensing.php:132
534
  #: core/licensing.php:166
535
  msgctxt "licensing"
536
  msgid "License key is invalid"
537
  msgstr ""
538
 
539
- #: admin/class-themes-admin.php:369 core/licensing.php:333
540
  msgctxt "licensing"
541
  msgid "Could not activate license: %s."
542
  msgstr ""
543
 
544
- #: admin/class-themes-admin.php:382 core/licensing.php:335
545
  msgctxt "licensing"
546
  msgid "License activated"
547
  msgstr ""
548
 
549
- #: admin/class-themes-admin.php:425
550
  msgctxt "licensing"
551
  msgid "Invalid response from server"
552
  msgstr ""
553
 
554
- #: admin/class-themes-admin.php:442 core/licensing.php:353
555
  msgctxt "licensing"
556
  msgid "License deactivated"
557
  msgstr ""
558
 
559
- #: admin/class-themes-admin.php:458
560
  msgctxt "themes"
561
  msgid "Activate your <a>license key</a> to use this theme."
562
  msgstr ""
@@ -1902,6 +1907,13 @@ msgctxt "form-fields admin"
1902
  msgid "Field Association"
1903
  msgstr ""
1904
 
 
 
 
 
 
 
 
1905
  #: admin/templates/form-fields-addoredit.tpl.php:36
1906
  msgctxt "form-fields admin"
1907
  msgid "Field Type"
@@ -1917,6 +1929,11 @@ msgctxt "form-fields admin"
1917
  msgid "Field description"
1918
  msgstr ""
1919
 
 
 
 
 
 
1920
  #: admin/templates/form-fields-addoredit.tpl.php:87
1921
  msgctxt "form-fields admin"
1922
  msgid "Field-specific settings"
@@ -2059,7 +2076,7 @@ msgctxt "form-fields admin"
2059
  msgid "Preview Form"
2060
  msgstr ""
2061
 
2062
- #: admin/templates/form-fields.tpl.php:6
2063
  msgctxt "form-fields admin"
2064
  msgid "Manage Theme Tags"
2065
  msgstr ""
@@ -2077,7 +2094,7 @@ msgctxt "form-fields admin"
2077
  msgid "Please see the <a>Form Fields documentation</a> for more details."
2078
  msgstr ""
2079
 
2080
- #. #-#-#-#-# WPBDM.pot (Business Directory Plugin 4.0.6) #-#-#-#-#
2081
  #. Plugin Name of the plugin/theme
2082
  #: admin/templates/header.tpl.php:4
2083
  msgid "Business Directory Plugin"
@@ -2681,7 +2698,22 @@ msgctxt "themes"
2681
  msgid "Activating license..."
2682
  msgstr ""
2683
 
2684
- #: admin/templates/themes.tpl.php:13
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
2685
  msgctxt "themes"
2686
  msgid ""
2687
  "<a><b>Directory Themes</b></a> are pre-made templates for the <i>Business "
@@ -2689,7 +2721,7 @@ msgid ""
2689
  "We have a number of them available for purchase <a>here</a>."
2690
  msgstr ""
2691
 
2692
- #: admin/templates/themes.tpl.php:14
2693
  msgctxt "themes"
2694
  msgid ""
2695
  "They are <strong>different</strong> than your regular WordPress theme and "
@@ -3316,13 +3348,13 @@ msgctxt "admin settings"
3316
  msgid "Enable AJAX compatibility mode?"
3317
  msgstr ""
3318
 
3319
- #: core/class-settings.php:179 core/class-settings.php:658
3320
  msgctxt "admin settings"
3321
  msgid "Listings"
3322
  msgstr ""
3323
 
3324
  #: core/class-settings.php:180 core/class-settings.php:330
3325
- #: core/class-settings.php:615
3326
  msgctxt "admin settings"
3327
  msgid "General Settings"
3328
  msgstr ""
@@ -3573,12 +3605,12 @@ msgctxt "admin settings"
3573
  msgid "Author"
3574
  msgstr ""
3575
 
3576
- #: core/class-settings.php:293
3577
  msgctxt "admin settings"
3578
  msgid "Date posted"
3579
  msgstr ""
3580
 
3581
- #: core/class-settings.php:294
3582
  msgctxt "admin settings"
3583
  msgid "Date last modified"
3584
  msgstr ""
@@ -3680,6 +3712,16 @@ msgid ""
3680
  "listings expire."
3681
  msgstr ""
3682
 
 
 
 
 
 
 
 
 
 
 
3683
  #: core/class-settings.php:349
3684
  msgctxt "admin settings"
3685
  msgid "E-Mail Notifications"
@@ -4194,27 +4236,32 @@ msgctxt "admin settings"
4194
  msgid "Themes"
4195
  msgstr ""
4196
 
4197
- #: core/class-settings.php:619
 
 
 
 
 
4198
  msgctxt "admin settings"
4199
  msgid "Theme button style"
4200
  msgstr ""
4201
 
4202
- #: core/class-settings.php:623
4203
  msgctxt "admin settings"
4204
  msgid "Use the BD theme style for BD buttons"
4205
  msgstr ""
4206
 
4207
- #: core/class-settings.php:624
4208
  msgctxt "admin settings"
4209
  msgid "Use the WP theme style for BD buttons"
4210
  msgstr ""
4211
 
4212
- #: core/class-settings.php:631
4213
  msgctxt "admin settings"
4214
  msgid "Image"
4215
  msgstr ""
4216
 
4217
- #: core/class-settings.php:632
4218
  msgctxt "admin settings"
4219
  msgid ""
4220
  "Any changes to these settings will affect new listings only. Existing "
@@ -4223,78 +4270,78 @@ msgid ""
4223
  "here."
4224
  msgstr ""
4225
 
4226
- #: core/class-settings.php:633
4227
  msgctxt "admin settings"
4228
  msgid "Image Settings"
4229
  msgstr ""
4230
 
4231
- #: core/class-settings.php:634
4232
  msgctxt "admin settings"
4233
  msgid "Allow images?"
4234
  msgstr ""
4235
 
4236
- #: core/class-settings.php:636
4237
  msgctxt "admin settings"
4238
  msgid "Min Image File Size (KB)"
4239
  msgstr ""
4240
 
4241
- #: core/class-settings.php:637
4242
  msgctxt "admin settings"
4243
  msgid "Max Image File Size (KB)"
4244
  msgstr ""
4245
 
4246
- #: core/class-settings.php:639
4247
  msgctxt "admin settings"
4248
  msgid "Min image width (px)"
4249
  msgstr ""
4250
 
4251
- #: core/class-settings.php:640
4252
  msgctxt "admin settings"
4253
  msgid "Min image height (px)"
4254
  msgstr ""
4255
 
4256
- #: core/class-settings.php:642
4257
  msgctxt "admin settings"
4258
  msgid "Max image width (px)"
4259
  msgstr ""
4260
 
4261
- #: core/class-settings.php:643
4262
  msgctxt "admin settings"
4263
  msgid "Max image height (px)"
4264
  msgstr ""
4265
 
4266
- #: core/class-settings.php:645
4267
  msgctxt "admin settings"
4268
  msgid "Turn on thickbox/lightbox?"
4269
  msgstr ""
4270
 
4271
- #: core/class-settings.php:645
4272
  msgctxt "admin settings"
4273
  msgid ""
4274
  "Uncheck if it conflicts with other elements or plugins installed on your site"
4275
  msgstr ""
4276
 
4277
- #: core/class-settings.php:647
4278
  msgctxt "admin settings"
4279
  msgid "Thumbnails"
4280
  msgstr ""
4281
 
4282
- #: core/class-settings.php:648
4283
  msgctxt "admin settings"
4284
  msgid "Thumbnail width (px)"
4285
  msgstr ""
4286
 
4287
- #: core/class-settings.php:649
4288
  msgctxt "admin settings"
4289
  msgid "Thumbnail height (px)"
4290
  msgstr ""
4291
 
4292
- #: core/class-settings.php:652
4293
  msgctxt "admin settings"
4294
  msgid "Crop thumbnails to exact dimensions?"
4295
  msgstr ""
4296
 
4297
- #: core/class-settings.php:655
4298
  msgctxt "admin settings"
4299
  msgid ""
4300
  "When enabled images will match exactly the dimensions above but part of the "
@@ -4303,140 +4350,150 @@ msgid ""
4303
  "Depending on the uploaded images, thumbnails may have different heights."
4304
  msgstr ""
4305
 
4306
- #: core/class-settings.php:661
4307
  msgctxt "admin settings"
4308
  msgid "Number of free images"
4309
  msgstr ""
4310
 
4311
- #: core/class-settings.php:666
4312
  msgctxt "admin settings"
4313
  msgid ""
4314
  "For paid listing images, configure that by adding or editing a <a>Fee Plan</"
4315
  "a> instead of this setting, which is ignored for paid listings."
4316
  msgstr ""
4317
 
4318
- #: core/class-settings.php:669
4319
  msgctxt "admin settings"
4320
  msgid "Use default picture for listings with no picture?"
4321
  msgstr ""
4322
 
4323
- #: core/class-settings.php:670
4324
  msgctxt "admin settings"
4325
  msgid "Show Thumbnail on main listings page?"
4326
  msgstr ""
4327
 
4328
- #: core/class-settings.php:726
 
 
 
 
 
 
 
 
 
 
4329
  msgctxt "admin settings"
4330
  msgid ""
4331
  "Could not copy the AJAX compatibility plugin \"%s\". Compatibility mode was "
4332
  "not activated."
4333
  msgstr ""
4334
 
4335
- #: core/class-settings.php:734
4336
  msgctxt "admin settings"
4337
  msgid ""
4338
  "Could not activate AJAX Compatibility mode: the directory \"%s\" could not "
4339
  "be created."
4340
  msgstr ""
4341
 
4342
- #: core/class-settings.php:743
4343
  msgctxt "admin settings"
4344
  msgid ""
4345
  "Could not remove the \"Business Directory Plugin - AJAX Compatibility Module"
4346
  "\". Please remove the file \"%s\" manually or deactivate the plugin."
4347
  msgstr ""
4348
 
4349
- #: core/class-settings.php:1063
4350
  msgctxt "settings"
4351
  msgid "Deactivate License"
4352
  msgstr ""
4353
 
4354
- #: core/class-settings.php:1065
4355
  msgctxt "settings"
4356
  msgid "Deactivating license..."
4357
  msgstr ""
4358
 
4359
- #: core/class-settings.php:1068
4360
  msgctxt "settings"
4361
  msgid "Activate License"
4362
  msgstr ""
4363
 
4364
- #: core/class-settings.php:1070
4365
  msgctxt "settings"
4366
  msgid "Activating license..."
4367
  msgstr ""
4368
 
4369
- #: core/class-settings.php:1093
4370
  msgctxt "admin settings"
4371
  msgid "Valid placeholders: %s"
4372
  msgstr ""
4373
 
4374
- #: core/class-settings.php:1127
4375
  msgctxt "settings email"
4376
  msgid "Click to edit e-mail"
4377
  msgstr ""
4378
 
4379
- #: core/class-settings.php:1128
4380
  msgctxt "settings email"
4381
  msgid "Click to edit"
4382
  msgstr ""
4383
 
4384
- #: core/class-settings.php:1141
4385
  msgctxt "settings email"
4386
  msgid "E-Mail Subject"
4387
  msgstr ""
4388
 
4389
- #: core/class-settings.php:1152
4390
  msgctxt "settings email"
4391
  msgid "E-Mail Body"
4392
  msgstr ""
4393
 
4394
- #: core/class-settings.php:1163
4395
  msgctxt "settings email"
4396
  msgid "You can use the following placeholders:"
4397
  msgstr ""
4398
 
4399
- #: core/class-settings.php:1186
4400
  msgctxt "settings email"
4401
  msgid "Preview e-mail"
4402
  msgstr ""
4403
 
4404
- #: core/class-settings.php:1187
4405
  msgctxt "settings email"
4406
  msgid "Cancel"
4407
  msgstr ""
4408
 
4409
- #: core/class-settings.php:1188
4410
  msgctxt "settings email"
4411
  msgid "Save Changes"
4412
  msgstr ""
4413
 
4414
- #: core/class-settings.php:1207
4415
  msgctxt "settings email"
4416
  msgid "Site title"
4417
  msgstr ""
4418
 
4419
- #: core/class-settings.php:1210
4420
  msgctxt "settings email"
4421
  msgid "Site title (with link)"
4422
  msgstr ""
4423
 
4424
- #: core/class-settings.php:1213
4425
  msgctxt "settings email"
4426
  msgid "Site address (with link)"
4427
  msgstr ""
4428
 
4429
- #: core/class-settings.php:1216
4430
  msgctxt "settings email"
4431
  msgid "Directory URL (with link)"
4432
  msgstr ""
4433
 
4434
- #: core/class-settings.php:1219
4435
  msgctxt "settings email"
4436
  msgid "Current date"
4437
  msgstr ""
4438
 
4439
- #: core/class-settings.php:1222
4440
  msgctxt "settings email"
4441
  msgid "Current time"
4442
  msgstr ""
4
  msgstr ""
5
  "Project-Id-Version: Business Directory Plugin 3.6\n"
6
  "Report-Msgid-Bugs-To: http://wordpress.org/tag/business-directory-plugin\n"
7
+ "POT-Creation-Date: 2016-06-21 22:32:39+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"
163
  msgid "Invalid e-mail address."
164
  msgstr ""
165
 
166
+ #: admin/class-admin.php:219
167
  msgctxt "admin menu"
168
  msgid "Business Directory Admin"
169
  msgstr ""
170
 
171
+ #: admin/class-admin.php:220
172
+ msgctxt "admin menu"
173
+ msgid "Dir. Admin"
174
+ msgstr ""
175
+
176
+ #: admin/class-admin.php:220
177
  msgctxt "admin menu"
178
  msgid "Directory Admin"
179
  msgstr ""
180
 
181
+ #: admin/class-admin.php:226 admin/class-admin.php:227
182
  msgctxt "admin menu"
183
  msgid "Add New Listing"
184
  msgstr ""
185
 
186
+ #: admin/class-admin.php:232 admin/class-admin.php:233
187
  msgctxt "admin menu"
188
  msgid "Manage Options"
189
  msgstr ""
190
 
191
+ #: admin/class-admin.php:238 admin/class-admin.php:239
192
  msgctxt "admin menu"
193
  msgid "Manage Fees"
194
  msgstr ""
195
 
196
+ #: admin/class-admin.php:244 admin/class-admin.php:245
197
  msgctxt "admin menu"
198
  msgid "Manage Form Fields"
199
  msgstr ""
200
 
201
+ #: admin/class-admin.php:250 admin/class-admin.php:251
202
  msgctxt "admin menu"
203
  msgid "Listings"
204
  msgstr ""
205
 
206
+ #: admin/class-admin.php:265 admin/class-admin.php:266
207
  msgctxt "admin menu"
208
  msgid "CSV Import"
209
  msgstr ""
210
 
211
+ #: admin/class-admin.php:271 admin/class-admin.php:272
212
  msgctxt "admin menu"
213
  msgid "CSV Export"
214
  msgstr ""
215
 
216
+ #: admin/class-admin.php:277 admin/class-admin.php:278
217
  msgctxt "admin menu"
218
  msgid "Debug"
219
  msgstr ""
220
 
221
+ #: admin/class-admin.php:287
222
  msgctxt "admin menu"
223
  msgid "Main Menu"
224
  msgstr ""
225
 
226
+ #: admin/class-admin.php:298
227
  msgctxt "admin menu"
228
  msgid "Uninstall Business Directory Plugin"
229
  msgstr ""
230
 
231
+ #: admin/class-admin.php:299
232
  msgctxt "admin menu"
233
  msgid "Uninstall"
234
  msgstr ""
235
 
236
+ #: admin/class-admin.php:413
237
  #: admin/templates/listing-metabox-categories.tpl.php:69
238
  msgctxt "admin infometabox"
239
  msgid "never"
240
  msgstr ""
241
 
242
+ #: admin/class-admin.php:507
243
  msgctxt "admin"
244
  msgid "Dismiss this notice."
245
  msgstr ""
246
 
247
+ #: admin/class-admin.php:535
248
  msgctxt "admin"
249
  msgid "The listing has been published."
250
  msgid_plural "The listings have been published."
251
  msgstr[0] ""
252
  msgstr[1] ""
253
 
254
+ #: admin/class-admin.php:553
255
  msgctxt "admin"
256
  msgid "The listing status has been set as paid."
257
  msgid_plural "The listings status has been set as paid."
258
  msgstr[0] ""
259
  msgstr[1] ""
260
 
261
+ #: admin/class-admin.php:559
262
  msgctxt "admin"
263
  msgid ""
264
  "Only invoices containing non-recurring items were marked as paid. Please "
270
  msgstr[0] ""
271
  msgstr[1] ""
272
 
273
+ #: admin/class-admin.php:578
274
  msgctxt "admin"
275
  msgid "The listing has been modified."
276
  msgid_plural "The listings have been modified."
277
  msgstr[0] ""
278
  msgstr[1] ""
279
 
280
+ #: admin/class-admin.php:591
281
  msgctxt "admin"
282
  msgid "The listing has been upgraded."
283
  msgid_plural "The listings have been upgraded."
284
  msgstr[0] ""
285
  msgstr[1] ""
286
 
287
+ #: admin/class-admin.php:603
288
  msgctxt "admin"
289
  msgid "The listing has been downgraded."
290
  msgid_plural "The listings have been downgraded."
291
  msgstr[0] ""
292
  msgstr[1] ""
293
 
294
+ #: admin/class-admin.php:614
295
  msgctxt "admin payments"
296
  msgid ""
297
  "The payment status was not changed. Recurring payments can't be manually "
299
  "went through."
300
  msgstr ""
301
 
302
+ #: admin/class-admin.php:619
303
  msgctxt "admin"
304
  msgid "The transaction has been approved."
305
  msgstr ""
306
 
307
+ #: admin/class-admin.php:629
308
  msgctxt "admin"
309
  msgid "The transaction has been rejected."
310
  msgstr ""
311
 
312
+ #: admin/class-admin.php:635
313
  msgctxt "admin"
314
  msgid "The fee was successfully assigned."
315
  msgstr ""
316
 
317
+ #: admin/class-admin.php:644
318
  msgctxt "admin"
319
  msgid "Listing was renewed."
320
  msgid_plural "Listings were renewed."
321
  msgstr[0] ""
322
  msgstr[1] ""
323
 
324
+ #: admin/class-admin.php:651
325
  msgctxt "admin"
326
  msgid "Renewal email sent."
327
  msgstr ""
328
 
329
+ #: admin/class-admin.php:685
330
  msgctxt "admin category id"
331
  msgid "ID"
332
  msgstr ""
333
 
334
+ #: admin/class-admin.php:687 admin/class-admin.php:693
335
  msgctxt "admin"
336
  msgid "Listing Count"
337
  msgstr ""
338
 
339
+ #: admin/class-admin.php:802
340
  msgctxt "admin"
341
  msgid ""
342
  "<b>Business Directory Plugin</b> requires fields with the following "
343
  "associations in order to work correctly: <b>%s</b>."
344
  msgstr ""
345
 
346
+ #: admin/class-admin.php:804
347
  msgctxt "admin"
348
  msgid ""
349
  "<b>Business Directory Plugin</b> requires a field with a <b>%s</b> "
350
  "association in order to work correctly."
351
  msgstr ""
352
 
353
+ #: admin/class-admin.php:808
354
  msgctxt "admin"
355
  msgid ""
356
  "You can create these custom fields by yourself inside \"Manage Form Fields\" "
357
  "or let Business Directory do this for you automatically."
358
  msgstr ""
359
 
360
+ #: admin/class-admin.php:812
361
  msgctxt "admin"
362
  msgid "Go to \"Manage Form Fields\""
363
  msgstr ""
364
 
365
+ #: admin/class-admin.php:815
366
  msgctxt "admin"
367
  msgid "Create these required fields for me"
368
  msgstr ""
369
 
370
+ #: admin/class-admin.php:824
371
  msgctxt "admin"
372
  msgid ""
373
  "<b>Business Directory Plugin</b> requires a page with the "
374
  "<tt>[businessdirectory]</tt> shortcode to function properly."
375
  msgstr ""
376
 
377
+ #: admin/class-admin.php:826
378
  msgctxt "admin"
379
  msgid ""
380
  "You can create this page by yourself or let Business Directory do this for "
381
  "you automatically."
382
  msgstr ""
383
 
384
+ #: admin/class-admin.php:830
385
  msgctxt "admin"
386
  msgid "Create required pages for me"
387
  msgstr ""
388
 
389
+ #: admin/class-admin.php:870
390
  msgctxt "admin compat"
391
  msgid "Installed: %s"
392
  msgstr ""
393
 
394
+ #: admin/class-admin.php:870
395
  msgctxt "admin compat"
396
  msgid "N/A"
397
  msgstr ""
398
 
399
+ #: admin/class-admin.php:873
400
  msgctxt "admin compat"
401
  msgid "Required: %s"
402
  msgstr ""
403
 
404
+ #: admin/class-admin.php:885
405
  msgctxt "admin compat"
406
  msgid ""
407
  "Business Directory has detected some incompatible premium module versions "
408
  "installed."
409
  msgstr ""
410
 
411
+ #: admin/class-admin.php:887
412
  msgctxt "admin compat"
413
  msgid ""
414
  "Please upgrade to the required versions indicated below to make sure "
415
  "everything functions properly."
416
  msgstr ""
417
 
418
+ #: admin/class-admin.php:907
419
  msgctxt "admin"
420
  msgid ""
421
  "We noticed you want your Business Directory users to register before posting "
439
  msgid "There are no images currently attached to the listing."
440
  msgstr ""
441
 
442
+ #: admin/class-themes-admin.php:47
443
  msgctxt "themes"
444
  msgid "Directory Themes"
445
  msgstr ""
446
 
447
+ #: admin/class-themes-admin.php:48
448
  msgctxt "themes"
449
  msgid "Directory Themes %s"
450
  msgstr ""
451
 
452
+ #: admin/class-themes-admin.php:94
453
  msgctxt "admin themes"
454
  msgid ""
455
  "Business Directory Plugin - Your template overrides need to be reviewed!"
456
  msgstr ""
457
 
458
+ #: admin/class-themes-admin.php:96
459
  msgctxt "admin themes"
460
  msgid ""
461
  "Starting with version 4.0, Business Directory is using a new theming system "
462
  "that is not compatible with the templates used in previous versions."
463
  msgstr ""
464
 
465
+ #: admin/class-themes-admin.php:98
466
  msgctxt "admin themes"
467
  msgid ""
468
  "Because of this, your template overrides below have been disabled. You "
470
  "templates."
471
  msgstr ""
472
 
473
+ #: admin/class-themes-admin.php:127
474
  msgctxt "admin themes"
475
  msgid ""
476
  "You need to <a>activate your theme's license key</a> before you can activate "
477
  "the theme. <a>Click here</a> to do that."
478
  msgstr ""
479
 
480
+ #: admin/class-themes-admin.php:155
481
  msgctxt "themes"
482
  msgid "Could not change the active theme to \"%s\"."
483
  msgstr ""
484
 
485
+ #: admin/class-themes-admin.php:202
486
  msgctxt "themes"
487
  msgid "Active theme changed to \"%s\"."
488
  msgstr ""
489
 
490
+ #: admin/class-themes-admin.php:205
491
  msgctxt "themes"
492
  msgid ""
493
  "%s requires that you tag your existing fields to match some places we want "
494
  "to put your data on the theme. Below are fields we think are missing."
495
  msgstr ""
496
 
497
+ #: admin/class-themes-admin.php:214
498
  msgctxt "themes"
499
  msgid "Map My Fields"
500
  msgstr ""
501
 
502
+ #: admin/class-themes-admin.php:221
503
  msgctxt "themes"
504
  msgid "Suggested fields created successfully."
505
  msgstr ""
506
 
507
+ #: admin/class-themes-admin.php:224
508
  msgctxt "themes"
509
  msgid "Theme installed successfully."
510
  msgstr ""
511
 
512
+ #: admin/class-themes-admin.php:227
513
  msgctxt "themes"
514
  msgid "Theme was deleted sucessfully."
515
  msgstr ""
516
 
517
+ #: admin/class-themes-admin.php:230
518
  msgctxt "themes"
519
  msgid "Could not delete theme directory. Check permissions."
520
  msgstr ""
521
 
522
+ #: admin/class-themes-admin.php:256
523
  msgctxt "themes"
524
  msgid "Please upload a valid theme file."
525
  msgstr ""
526
 
527
+ #: admin/class-themes-admin.php:263
528
  msgctxt "themes"
529
  msgid "Could not move \"%s\" to a temporary directory."
530
  msgstr ""
531
 
532
+ #: admin/class-themes-admin.php:364 admin/class-themes-admin.php:425
533
  #: core/licensing.php:127 core/licensing.php:159
534
  msgctxt "licensing"
535
  msgid "Could not contact licensing server"
536
  msgstr ""
537
 
538
+ #: admin/class-themes-admin.php:370 core/licensing.php:132
539
  #: core/licensing.php:166
540
  msgctxt "licensing"
541
  msgid "License key is invalid"
542
  msgstr ""
543
 
544
+ #: admin/class-themes-admin.php:375 core/licensing.php:333
545
  msgctxt "licensing"
546
  msgid "Could not activate license: %s."
547
  msgstr ""
548
 
549
+ #: admin/class-themes-admin.php:388 core/licensing.php:335
550
  msgctxt "licensing"
551
  msgid "License activated"
552
  msgstr ""
553
 
554
+ #: admin/class-themes-admin.php:431
555
  msgctxt "licensing"
556
  msgid "Invalid response from server"
557
  msgstr ""
558
 
559
+ #: admin/class-themes-admin.php:448 core/licensing.php:353
560
  msgctxt "licensing"
561
  msgid "License deactivated"
562
  msgstr ""
563
 
564
+ #: admin/class-themes-admin.php:464
565
  msgctxt "themes"
566
  msgid "Activate your <a>license key</a> to use this theme."
567
  msgstr ""
1907
  msgid "Field Association"
1908
  msgstr ""
1909
 
1910
+ #: admin/templates/form-fields-addoredit.tpl.php:14
1911
+ #: admin/templates/form-fields-addoredit.tpl.php:36
1912
+ #: admin/templates/form-fields-addoredit.tpl.php:60
1913
+ msgctxt "form-fields admin"
1914
+ msgid "required"
1915
+ msgstr ""
1916
+
1917
  #: admin/templates/form-fields-addoredit.tpl.php:36
1918
  msgctxt "form-fields admin"
1919
  msgid "Field Type"
1929
  msgid "Field description"
1930
  msgstr ""
1931
 
1932
+ #: admin/templates/form-fields-addoredit.tpl.php:70
1933
+ msgctxt "form-fields admin"
1934
+ msgid "optional"
1935
+ msgstr ""
1936
+
1937
  #: admin/templates/form-fields-addoredit.tpl.php:87
1938
  msgctxt "form-fields admin"
1939
  msgid "Field-specific settings"
2076
  msgid "Preview Form"
2077
  msgstr ""
2078
 
2079
+ #: admin/templates/form-fields.tpl.php:6 admin/templates/themes.tpl.php:4
2080
  msgctxt "form-fields admin"
2081
  msgid "Manage Theme Tags"
2082
  msgstr ""
2094
  msgid "Please see the <a>Form Fields documentation</a> for more details."
2095
  msgstr ""
2096
 
2097
+ #. #-#-#-#-# WPBDM.pot (Business Directory Plugin 4.0.7) #-#-#-#-#
2098
  #. Plugin Name of the plugin/theme
2099
  #: admin/templates/header.tpl.php:4
2100
  msgid "Business Directory Plugin"
2698
  msgid "Activating license..."
2699
  msgstr ""
2700
 
2701
+ #: admin/templates/themes-tabs.tpl.php:6
2702
+ msgctxt "admin themes"
2703
+ msgid "Available Themes"
2704
+ msgstr ""
2705
+
2706
+ #: admin/templates/themes-tabs.tpl.php:7
2707
+ msgctxt "admin themes"
2708
+ msgid "Licenses"
2709
+ msgstr ""
2710
+
2711
+ #: admin/templates/themes.tpl.php:5
2712
+ msgctxt "themes"
2713
+ msgid "Settings"
2714
+ msgstr ""
2715
+
2716
+ #: admin/templates/themes.tpl.php:15
2717
  msgctxt "themes"
2718
  msgid ""
2719
  "<a><b>Directory Themes</b></a> are pre-made templates for the <i>Business "
2721
  "We have a number of them available for purchase <a>here</a>."
2722
  msgstr ""
2723
 
2724
+ #: admin/templates/themes.tpl.php:16
2725
  msgctxt "themes"
2726
  msgid ""
2727
  "They are <strong>different</strong> than your regular WordPress theme and "
3348
  msgid "Enable AJAX compatibility mode?"
3349
  msgstr ""
3350
 
3351
+ #: core/class-settings.php:179 core/class-settings.php:660
3352
  msgctxt "admin settings"
3353
  msgid "Listings"
3354
  msgstr ""
3355
 
3356
  #: core/class-settings.php:180 core/class-settings.php:330
3357
+ #: core/class-settings.php:617
3358
  msgctxt "admin settings"
3359
  msgid "General Settings"
3360
  msgstr ""
3605
  msgid "Author"
3606
  msgstr ""
3607
 
3608
+ #: core/class-settings.php:293 core/class-settings.php:703
3609
  msgctxt "admin settings"
3610
  msgid "Date posted"
3611
  msgstr ""
3612
 
3613
+ #: core/class-settings.php:294 core/class-settings.php:704
3614
  msgctxt "admin settings"
3615
  msgid "Date last modified"
3616
  msgstr ""
3712
  "listings expire."
3713
  msgstr ""
3714
 
3715
+ #: core/class-settings.php:344
3716
+ msgctxt "admin settings"
3717
+ msgid "Try listing's email field first, then author's email."
3718
+ msgstr ""
3719
+
3720
+ #: core/class-settings.php:345
3721
+ msgctxt "admin settings"
3722
+ msgid "Try author's email first and then listing's email field."
3723
+ msgstr ""
3724
+
3725
  #: core/class-settings.php:349
3726
  msgctxt "admin settings"
3727
  msgid "E-Mail Notifications"
4236
  msgid "Themes"
4237
  msgstr ""
4238
 
4239
+ #: core/class-settings.php:616
4240
+ msgctxt "admin settings"
4241
+ msgid "You can manage your themes on <a>Directory Themes</a>."
4242
+ msgstr ""
4243
+
4244
+ #: core/class-settings.php:621
4245
  msgctxt "admin settings"
4246
  msgid "Theme button style"
4247
  msgstr ""
4248
 
4249
+ #: core/class-settings.php:625
4250
  msgctxt "admin settings"
4251
  msgid "Use the BD theme style for BD buttons"
4252
  msgstr ""
4253
 
4254
+ #: core/class-settings.php:626
4255
  msgctxt "admin settings"
4256
  msgid "Use the WP theme style for BD buttons"
4257
  msgstr ""
4258
 
4259
+ #: core/class-settings.php:633
4260
  msgctxt "admin settings"
4261
  msgid "Image"
4262
  msgstr ""
4263
 
4264
+ #: core/class-settings.php:634
4265
  msgctxt "admin settings"
4266
  msgid ""
4267
  "Any changes to these settings will affect new listings only. Existing "
4270
  "here."
4271
  msgstr ""
4272
 
4273
+ #: core/class-settings.php:635
4274
  msgctxt "admin settings"
4275
  msgid "Image Settings"
4276
  msgstr ""
4277
 
4278
+ #: core/class-settings.php:636
4279
  msgctxt "admin settings"
4280
  msgid "Allow images?"
4281
  msgstr ""
4282
 
4283
+ #: core/class-settings.php:638
4284
  msgctxt "admin settings"
4285
  msgid "Min Image File Size (KB)"
4286
  msgstr ""
4287
 
4288
+ #: core/class-settings.php:639
4289
  msgctxt "admin settings"
4290
  msgid "Max Image File Size (KB)"
4291
  msgstr ""
4292
 
4293
+ #: core/class-settings.php:641
4294
  msgctxt "admin settings"
4295
  msgid "Min image width (px)"
4296
  msgstr ""
4297
 
4298
+ #: core/class-settings.php:642
4299
  msgctxt "admin settings"
4300
  msgid "Min image height (px)"
4301
  msgstr ""
4302
 
4303
+ #: core/class-settings.php:644
4304
  msgctxt "admin settings"
4305
  msgid "Max image width (px)"
4306
  msgstr ""
4307
 
4308
+ #: core/class-settings.php:645
4309
  msgctxt "admin settings"
4310
  msgid "Max image height (px)"
4311
  msgstr ""
4312
 
4313
+ #: core/class-settings.php:647
4314
  msgctxt "admin settings"
4315
  msgid "Turn on thickbox/lightbox?"
4316
  msgstr ""
4317
 
4318
+ #: core/class-settings.php:647
4319
  msgctxt "admin settings"
4320
  msgid ""
4321
  "Uncheck if it conflicts with other elements or plugins installed on your site"
4322
  msgstr ""
4323
 
4324
+ #: core/class-settings.php:649
4325
  msgctxt "admin settings"
4326
  msgid "Thumbnails"
4327
  msgstr ""
4328
 
4329
+ #: core/class-settings.php:650
4330
  msgctxt "admin settings"
4331
  msgid "Thumbnail width (px)"
4332
  msgstr ""
4333
 
4334
+ #: core/class-settings.php:651
4335
  msgctxt "admin settings"
4336
  msgid "Thumbnail height (px)"
4337
  msgstr ""
4338
 
4339
+ #: core/class-settings.php:654
4340
  msgctxt "admin settings"
4341
  msgid "Crop thumbnails to exact dimensions?"
4342
  msgstr ""
4343
 
4344
+ #: core/class-settings.php:657
4345
  msgctxt "admin settings"
4346
  msgid ""
4347
  "When enabled images will match exactly the dimensions above but part of the "
4350
  "Depending on the uploaded images, thumbnails may have different heights."
4351
  msgstr ""
4352
 
4353
+ #: core/class-settings.php:663
4354
  msgctxt "admin settings"
4355
  msgid "Number of free images"
4356
  msgstr ""
4357
 
4358
+ #: core/class-settings.php:668
4359
  msgctxt "admin settings"
4360
  msgid ""
4361
  "For paid listing images, configure that by adding or editing a <a>Fee Plan</"
4362
  "a> instead of this setting, which is ignored for paid listings."
4363
  msgstr ""
4364
 
4365
+ #: core/class-settings.php:671
4366
  msgctxt "admin settings"
4367
  msgid "Use default picture for listings with no picture?"
4368
  msgstr ""
4369
 
4370
+ #: core/class-settings.php:672
4371
  msgctxt "admin settings"
4372
  msgid "Show Thumbnail on main listings page?"
4373
  msgstr ""
4374
 
4375
+ #: core/class-settings.php:701
4376
+ msgctxt "admin settings"
4377
+ msgid "User"
4378
+ msgstr ""
4379
+
4380
+ #: core/class-settings.php:702
4381
+ msgctxt "admin settings"
4382
+ msgid "User registration date"
4383
+ msgstr ""
4384
+
4385
+ #: core/class-settings.php:728
4386
  msgctxt "admin settings"
4387
  msgid ""
4388
  "Could not copy the AJAX compatibility plugin \"%s\". Compatibility mode was "
4389
  "not activated."
4390
  msgstr ""
4391
 
4392
+ #: core/class-settings.php:736
4393
  msgctxt "admin settings"
4394
  msgid ""
4395
  "Could not activate AJAX Compatibility mode: the directory \"%s\" could not "
4396
  "be created."
4397
  msgstr ""
4398
 
4399
+ #: core/class-settings.php:745
4400
  msgctxt "admin settings"
4401
  msgid ""
4402
  "Could not remove the \"Business Directory Plugin - AJAX Compatibility Module"
4403
  "\". Please remove the file \"%s\" manually or deactivate the plugin."
4404
  msgstr ""
4405
 
4406
+ #: core/class-settings.php:1065
4407
  msgctxt "settings"
4408
  msgid "Deactivate License"
4409
  msgstr ""
4410
 
4411
+ #: core/class-settings.php:1067
4412
  msgctxt "settings"
4413
  msgid "Deactivating license..."
4414
  msgstr ""
4415
 
4416
+ #: core/class-settings.php:1070
4417
  msgctxt "settings"
4418
  msgid "Activate License"
4419
  msgstr ""
4420
 
4421
+ #: core/class-settings.php:1072
4422
  msgctxt "settings"
4423
  msgid "Activating license..."
4424
  msgstr ""
4425
 
4426
+ #: core/class-settings.php:1095
4427
  msgctxt "admin settings"
4428
  msgid "Valid placeholders: %s"
4429
  msgstr ""
4430
 
4431
+ #: core/class-settings.php:1129
4432
  msgctxt "settings email"
4433
  msgid "Click to edit e-mail"
4434
  msgstr ""
4435
 
4436
+ #: core/class-settings.php:1130
4437
  msgctxt "settings email"
4438
  msgid "Click to edit"
4439
  msgstr ""
4440
 
4441
+ #: core/class-settings.php:1143
4442
  msgctxt "settings email"
4443
  msgid "E-Mail Subject"
4444
  msgstr ""
4445
 
4446
+ #: core/class-settings.php:1154
4447
  msgctxt "settings email"
4448
  msgid "E-Mail Body"
4449
  msgstr ""
4450
 
4451
+ #: core/class-settings.php:1165
4452
  msgctxt "settings email"
4453
  msgid "You can use the following placeholders:"
4454
  msgstr ""
4455
 
4456
+ #: core/class-settings.php:1188
4457
  msgctxt "settings email"
4458
  msgid "Preview e-mail"
4459
  msgstr ""
4460
 
4461
+ #: core/class-settings.php:1189
4462
  msgctxt "settings email"
4463
  msgid "Cancel"
4464
  msgstr ""
4465
 
4466
+ #: core/class-settings.php:1190
4467
  msgctxt "settings email"
4468
  msgid "Save Changes"
4469
  msgstr ""
4470
 
4471
+ #: core/class-settings.php:1209
4472
  msgctxt "settings email"
4473
  msgid "Site title"
4474
  msgstr ""
4475
 
4476
+ #: core/class-settings.php:1212
4477
  msgctxt "settings email"
4478
  msgid "Site title (with link)"
4479
  msgstr ""
4480
 
4481
+ #: core/class-settings.php:1215
4482
  msgctxt "settings email"
4483
  msgid "Site address (with link)"
4484
  msgstr ""
4485
 
4486
+ #: core/class-settings.php:1218
4487
  msgctxt "settings email"
4488
  msgid "Directory URL (with link)"
4489
  msgstr ""
4490
 
4491
+ #: core/class-settings.php:1221
4492
  msgctxt "settings email"
4493
  msgid "Current date"
4494
  msgstr ""
4495
 
4496
+ #: core/class-settings.php:1224
4497
  msgctxt "settings email"
4498
  msgid "Current time"
4499
  msgstr ""
languages/WPBDM-es_ES.mo CHANGED
Binary file
languages/WPBDM-es_ES.po CHANGED
@@ -4,7 +4,7 @@ msgid ""
4
  msgstr ""
5
  "Project-Id-Version: Business Directory Plugin 4.0.6\n"
6
  "Report-Msgid-Bugs-To: http://wordpress.org/tag/business-directory-plugin\n"
7
- "POT-Creation-Date: 2016-06-14 20:52:18+00:00\n"
8
  "PO-Revision-Date: 2016-06-14 15:52-0500\n"
9
  "Last-Translator: BD Team <support@businessdirectoryplugin.com>\n"
10
  "Language-Team: BD Team <support@businessdirectoryplugin.com>\n"
@@ -170,97 +170,103 @@ msgctxt "drip pointer"
170
  msgid "Invalid e-mail address."
171
  msgstr "Dirección de correo-e inválida."
172
 
173
- #: admin/class-admin.php:216
174
  msgctxt "admin menu"
175
  msgid "Business Directory Admin"
176
  msgstr "Gestión de Directorio de Negocios"
177
 
178
- #: admin/class-admin.php:217
 
 
 
 
 
 
179
  msgctxt "admin menu"
180
  msgid "Directory Admin"
181
  msgstr "Gestión de Directorio"
182
 
183
- #: admin/class-admin.php:223 admin/class-admin.php:224
184
  msgctxt "admin menu"
185
  msgid "Add New Listing"
186
  msgstr "Agregar Nuevo Listado"
187
 
188
- #: admin/class-admin.php:229 admin/class-admin.php:230
189
  msgctxt "admin menu"
190
  msgid "Manage Options"
191
  msgstr "Configuraciones"
192
 
193
- #: admin/class-admin.php:235 admin/class-admin.php:236
194
  msgctxt "admin menu"
195
  msgid "Manage Fees"
196
  msgstr "Administrar Comisiones"
197
 
198
- #: admin/class-admin.php:241 admin/class-admin.php:242
199
  msgctxt "admin menu"
200
  msgid "Manage Form Fields"
201
  msgstr "Administrar Campos de Formulario"
202
 
203
- #: admin/class-admin.php:247 admin/class-admin.php:248
204
  msgctxt "admin menu"
205
  msgid "Listings"
206
  msgstr "Listados"
207
 
208
- #: admin/class-admin.php:262 admin/class-admin.php:263
209
  msgctxt "admin menu"
210
  msgid "CSV Import"
211
  msgstr "Importar CSV"
212
 
213
- #: admin/class-admin.php:268 admin/class-admin.php:269
214
  msgctxt "admin menu"
215
  msgid "CSV Export"
216
  msgstr "Exportar CSV"
217
 
218
- #: admin/class-admin.php:274 admin/class-admin.php:275
219
  msgctxt "admin menu"
220
  msgid "Debug"
221
  msgstr "Depuración"
222
 
223
- #: admin/class-admin.php:284
224
  msgctxt "admin menu"
225
  msgid "Main Menu"
226
  msgstr "Menú Principal"
227
 
228
- #: admin/class-admin.php:295
229
  msgctxt "admin menu"
230
  msgid "Uninstall Business Directory Plugin"
231
  msgstr "Desinstalar Business Directory Plugin"
232
 
233
- #: admin/class-admin.php:296
234
  msgctxt "admin menu"
235
  msgid "Uninstall"
236
  msgstr "Desinstalar"
237
 
238
- #: admin/class-admin.php:410
239
  #: admin/templates/listing-metabox-categories.tpl.php:69
240
  msgctxt "admin infometabox"
241
  msgid "never"
242
  msgstr "nunca"
243
 
244
- #: admin/class-admin.php:504
245
  msgctxt "admin"
246
  msgid "Dismiss this notice."
247
  msgstr ""
248
 
249
- #: admin/class-admin.php:532
250
  msgctxt "admin"
251
  msgid "The listing has been published."
252
  msgid_plural "The listings have been published."
253
  msgstr[0] "El listado ha sido publicado."
254
  msgstr[1] "Los listados han sido publicados."
255
 
256
- #: admin/class-admin.php:550
257
  msgctxt "admin"
258
  msgid "The listing status has been set as paid."
259
  msgid_plural "The listings status has been set as paid."
260
  msgstr[0] "El listado se ha marcado como pagado."
261
  msgstr[1] "Los listados se han marcado como pagados."
262
 
263
- #: admin/class-admin.php:556
264
  msgctxt "admin"
265
  msgid ""
266
  "Only invoices containing non-recurring items were marked as paid. Please "
@@ -272,28 +278,28 @@ msgid_plural ""
272
  msgstr[0] ""
273
  msgstr[1] ""
274
 
275
- #: admin/class-admin.php:575
276
  msgctxt "admin"
277
  msgid "The listing has been modified."
278
  msgid_plural "The listings have been modified."
279
  msgstr[0] "El listado ha sido modificado."
280
  msgstr[1] "Los listados han sido modificados."
281
 
282
- #: admin/class-admin.php:588
283
  msgctxt "admin"
284
  msgid "The listing has been upgraded."
285
  msgid_plural "The listings have been upgraded."
286
  msgstr[0] "El listado ha sido mejorado."
287
  msgstr[1] "Los listados han sido mejorados."
288
 
289
- #: admin/class-admin.php:600
290
  msgctxt "admin"
291
  msgid "The listing has been downgraded."
292
  msgid_plural "The listings have been downgraded."
293
  msgstr[0] "El listado ha sido degradado."
294
  msgstr[1] "Los listados han sido degradados."
295
 
296
- #: admin/class-admin.php:611
297
  msgctxt "admin payments"
298
  msgid ""
299
  "The payment status was not changed. Recurring payments can't be manually "
@@ -301,44 +307,44 @@ msgid ""
301
  "went through."
302
  msgstr ""
303
 
304
- #: admin/class-admin.php:616
305
  msgctxt "admin"
306
  msgid "The transaction has been approved."
307
  msgstr "La transacción ha sido aprobada."
308
 
309
- #: admin/class-admin.php:626
310
  msgctxt "admin"
311
  msgid "The transaction has been rejected."
312
  msgstr "La transacción ha sido rechazada."
313
 
314
- #: admin/class-admin.php:632
315
  msgctxt "admin"
316
  msgid "The fee was successfully assigned."
317
  msgstr "La comisión se asignó satisfactoriamente."
318
 
319
- #: admin/class-admin.php:641
320
  msgctxt "admin"
321
  msgid "Listing was renewed."
322
  msgid_plural "Listings were renewed."
323
  msgstr[0] "El listado ha sido renovado."
324
  msgstr[1] "Los listados fueron renovados."
325
 
326
- #: admin/class-admin.php:648
327
  msgctxt "admin"
328
  msgid "Renewal email sent."
329
  msgstr "Mensaje de correo electrónico de renovación enviado."
330
 
331
- #: admin/class-admin.php:682
332
  msgctxt "admin category id"
333
  msgid "ID"
334
  msgstr "ID"
335
 
336
- #: admin/class-admin.php:684 admin/class-admin.php:690
337
  msgctxt "admin"
338
  msgid "Listing Count"
339
  msgstr "Conteo de Listados"
340
 
341
- #: admin/class-admin.php:799
342
  msgctxt "admin"
343
  msgid ""
344
  "<b>Business Directory Plugin</b> requires fields with the following "
@@ -347,7 +353,7 @@ msgstr ""
347
  "<b>Business Directory Plugin</b> requiere campos con las siguientes "
348
  "asociaciones para funcionar correctamente: <b>%s</b>."
349
 
350
- #: admin/class-admin.php:801
351
  msgctxt "admin"
352
  msgid ""
353
  "<b>Business Directory Plugin</b> requires a field with a <b>%s</b> "
@@ -356,7 +362,7 @@ msgstr ""
356
  "<b>Business Directory Plugin</b> requiere un campo con la asociación <b>%s</"
357
  "b> para funcionar correctamente."
358
 
359
- #: admin/class-admin.php:805
360
  msgctxt "admin"
361
  msgid ""
362
  "You can create these custom fields by yourself inside \"Manage Form Fields\" "
@@ -365,17 +371,17 @@ msgstr ""
365
  "Puede crear estos campos usted mismo en \"Administrar Campos de Formulario\" "
366
  "o puede dejar que Business Directory haga esto por usted automáticamente."
367
 
368
- #: admin/class-admin.php:809
369
  msgctxt "admin"
370
  msgid "Go to \"Manage Form Fields\""
371
  msgstr "Ir a \"Administrar Campos de Formulario\""
372
 
373
- #: admin/class-admin.php:812
374
  msgctxt "admin"
375
  msgid "Create these required fields for me"
376
  msgstr "Crear estos campos requeridos por mi"
377
 
378
- #: admin/class-admin.php:821
379
  msgctxt "admin"
380
  msgid ""
381
  "<b>Business Directory Plugin</b> requires a page with the "
@@ -384,7 +390,7 @@ msgstr ""
384
  "<b>Business Directory Plugin</b> requiere una página con el shortcode "
385
  "<tt>[businessdirectory]</tt> para funcionar adecuadamente."
386
 
387
- #: admin/class-admin.php:823
388
  msgctxt "admin"
389
  msgid ""
390
  "You can create this page by yourself or let Business Directory do this for "
@@ -393,27 +399,27 @@ msgstr ""
393
  "Puede crear esta página usted mismo o dejar que Business Directory lo haga "
394
  "por usted automáticamente."
395
 
396
- #: admin/class-admin.php:827
397
  msgctxt "admin"
398
  msgid "Create required pages for me"
399
  msgstr "Crear las páginas requeridas por mi"
400
 
401
- #: admin/class-admin.php:867
402
  msgctxt "admin compat"
403
  msgid "Installed: %s"
404
  msgstr "Instalado: %s"
405
 
406
- #: admin/class-admin.php:867
407
  msgctxt "admin compat"
408
  msgid "N/A"
409
  msgstr "N/A"
410
 
411
- #: admin/class-admin.php:870
412
  msgctxt "admin compat"
413
  msgid "Required: %s"
414
  msgstr "Requerido: %s"
415
 
416
- #: admin/class-admin.php:882
417
  msgctxt "admin compat"
418
  msgid ""
419
  "Business Directory has detected some incompatible premium module versions "
@@ -422,7 +428,7 @@ msgstr ""
422
  "Business Directory ha detectado algunas versiones incompatibles de módulos "
423
  "instaladas."
424
 
425
- #: admin/class-admin.php:884
426
  msgctxt "admin compat"
427
  msgid ""
428
  "Please upgrade to the required versions indicated below to make sure "
@@ -431,7 +437,7 @@ msgstr ""
431
  "Por favor actualice a las versiones requeridas indicadas abajo para "
432
  "asegurarse de que todo funcione correctamente."
433
 
434
- #: admin/class-admin.php:904
435
  msgctxt "admin"
436
  msgid ""
437
  "We noticed you want your Business Directory users to register before posting "
@@ -460,30 +466,30 @@ msgctxt "templates"
460
  msgid "There are no images currently attached to the listing."
461
  msgstr "No hay imágenes actualmente asociadas al listado."
462
 
463
- #: admin/class-themes-admin.php:45
464
  msgctxt "themes"
465
  msgid "Directory Themes"
466
  msgstr ""
467
 
468
- #: admin/class-themes-admin.php:46
469
  msgctxt "themes"
470
  msgid "Directory Themes %s"
471
  msgstr ""
472
 
473
- #: admin/class-themes-admin.php:88
474
  msgctxt "admin themes"
475
  msgid ""
476
  "Business Directory Plugin - Your template overrides need to be reviewed!"
477
  msgstr ""
478
 
479
- #: admin/class-themes-admin.php:90
480
  msgctxt "admin themes"
481
  msgid ""
482
  "Starting with version 4.0, Business Directory is using a new theming system "
483
  "that is not compatible with the templates used in previous versions."
484
  msgstr ""
485
 
486
- #: admin/class-themes-admin.php:92
487
  msgctxt "admin themes"
488
  msgid ""
489
  "Because of this, your template overrides below have been disabled. You "
@@ -491,99 +497,99 @@ msgid ""
491
  "templates."
492
  msgstr ""
493
 
494
- #: admin/class-themes-admin.php:121
495
  msgctxt "admin themes"
496
  msgid ""
497
  "You need to <a>activate your theme's license key</a> before you can activate "
498
  "the theme. <a>Click here</a> to do that."
499
  msgstr ""
500
 
501
- #: admin/class-themes-admin.php:149
502
  msgctxt "themes"
503
  msgid "Could not change the active theme to \"%s\"."
504
  msgstr ""
505
 
506
- #: admin/class-themes-admin.php:196
507
  msgctxt "themes"
508
  msgid "Active theme changed to \"%s\"."
509
  msgstr ""
510
 
511
- #: admin/class-themes-admin.php:199
512
  msgctxt "themes"
513
  msgid ""
514
  "%s requires that you tag your existing fields to match some places we want "
515
  "to put your data on the theme. Below are fields we think are missing."
516
  msgstr ""
517
 
518
- #: admin/class-themes-admin.php:208
519
  #, fuzzy
520
  msgctxt "themes"
521
  msgid "Map My Fields"
522
  msgstr "Administrar Campos de Formulario"
523
 
524
- #: admin/class-themes-admin.php:215
525
  msgctxt "themes"
526
  msgid "Suggested fields created successfully."
527
  msgstr ""
528
 
529
- #: admin/class-themes-admin.php:218
530
  msgctxt "themes"
531
  msgid "Theme installed successfully."
532
  msgstr ""
533
 
534
- #: admin/class-themes-admin.php:221
535
  msgctxt "themes"
536
  msgid "Theme was deleted sucessfully."
537
  msgstr ""
538
 
539
- #: admin/class-themes-admin.php:224
540
  msgctxt "themes"
541
  msgid "Could not delete theme directory. Check permissions."
542
  msgstr ""
543
 
544
- #: admin/class-themes-admin.php:250
545
  msgctxt "themes"
546
  msgid "Please upload a valid theme file."
547
  msgstr ""
548
 
549
- #: admin/class-themes-admin.php:257
550
  msgctxt "themes"
551
  msgid "Could not move \"%s\" to a temporary directory."
552
  msgstr ""
553
 
554
- #: admin/class-themes-admin.php:358 admin/class-themes-admin.php:419
555
  #: core/licensing.php:127 core/licensing.php:159
556
  msgctxt "licensing"
557
  msgid "Could not contact licensing server"
558
  msgstr "No se pudo contactar el servidor de licencias"
559
 
560
- #: admin/class-themes-admin.php:364 core/licensing.php:132
561
  #: core/licensing.php:166
562
  msgctxt "licensing"
563
  msgid "License key is invalid"
564
  msgstr "La licencia es inválida"
565
 
566
- #: admin/class-themes-admin.php:369 core/licensing.php:333
567
  msgctxt "licensing"
568
  msgid "Could not activate license: %s."
569
  msgstr "No se pudo activar la licencia: %s."
570
 
571
- #: admin/class-themes-admin.php:382 core/licensing.php:335
572
  msgctxt "licensing"
573
  msgid "License activated"
574
  msgstr "Licencia activada"
575
 
576
- #: admin/class-themes-admin.php:425
577
  msgctxt "licensing"
578
  msgid "Invalid response from server"
579
  msgstr ""
580
 
581
- #: admin/class-themes-admin.php:442 core/licensing.php:353
582
  msgctxt "licensing"
583
  msgid "License deactivated"
584
  msgstr "Licencia desactivada"
585
 
586
- #: admin/class-themes-admin.php:458
587
  msgctxt "themes"
588
  msgid "Activate your <a>license key</a> to use this theme."
589
  msgstr ""
@@ -2022,6 +2028,14 @@ msgctxt "form-fields admin"
2022
  msgid "Field Association"
2023
  msgstr "Asociación del Campo"
2024
 
 
 
 
 
 
 
 
 
2025
  #: admin/templates/form-fields-addoredit.tpl.php:36
2026
  msgctxt "form-fields admin"
2027
  msgid "Field Type"
@@ -2037,6 +2051,12 @@ msgctxt "form-fields admin"
2037
  msgid "Field description"
2038
  msgstr "Descripción del Campo"
2039
 
 
 
 
 
 
 
2040
  #: admin/templates/form-fields-addoredit.tpl.php:87
2041
  msgctxt "form-fields admin"
2042
  msgid "Field-specific settings"
@@ -2180,7 +2200,7 @@ msgctxt "form-fields admin"
2180
  msgid "Preview Form"
2181
  msgstr "Previsualizar Formulario"
2182
 
2183
- #: admin/templates/form-fields.tpl.php:6
2184
  msgctxt "form-fields admin"
2185
  msgid "Manage Theme Tags"
2186
  msgstr ""
@@ -2203,6 +2223,7 @@ msgstr ""
2203
  "Por favor vea la <a>documentación de Campos de Formulario</a> para más "
2204
  "detalles."
2205
 
 
2206
  #. Plugin Name of the plugin/theme
2207
  #: admin/templates/header.tpl.php:4
2208
  msgid "Business Directory Plugin"
@@ -2833,7 +2854,25 @@ msgctxt "themes"
2833
  msgid "Activating license..."
2834
  msgstr "Activando licencia..."
2835
 
2836
- #: admin/templates/themes.tpl.php:13
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
2837
  msgctxt "themes"
2838
  msgid ""
2839
  "<a><b>Directory Themes</b></a> are pre-made templates for the <i>Business "
@@ -2841,7 +2880,7 @@ msgid ""
2841
  "We have a number of them available for purchase <a>here</a>."
2842
  msgstr ""
2843
 
2844
- #: admin/templates/themes.tpl.php:14
2845
  msgctxt "themes"
2846
  msgid ""
2847
  "They are <strong>different</strong> than your regular WordPress theme and "
@@ -3516,13 +3555,13 @@ msgctxt "admin settings"
3516
  msgid "Enable AJAX compatibility mode?"
3517
  msgstr "Habilitar modo de compatibilidad AJAX?"
3518
 
3519
- #: core/class-settings.php:179 core/class-settings.php:658
3520
  msgctxt "admin settings"
3521
  msgid "Listings"
3522
  msgstr "Listados"
3523
 
3524
  #: core/class-settings.php:180 core/class-settings.php:330
3525
- #: core/class-settings.php:615
3526
  msgctxt "admin settings"
3527
  msgid "General Settings"
3528
  msgstr "Configuración General"
@@ -3798,12 +3837,12 @@ msgctxt "admin settings"
3798
  msgid "Author"
3799
  msgstr "Autor"
3800
 
3801
- #: core/class-settings.php:293
3802
  msgctxt "admin settings"
3803
  msgid "Date posted"
3804
  msgstr "Fecha de publicación"
3805
 
3806
- #: core/class-settings.php:294
3807
  msgctxt "admin settings"
3808
  msgid "Date last modified"
3809
  msgstr "Fecha de última modificación"
@@ -3913,6 +3952,16 @@ msgstr ""
3913
  "Esta configuración afecta cómo los dueños de los listados son contactados "
3914
  "cuando sus listados expiran o a través de los formularios de contacto."
3915
 
 
 
 
 
 
 
 
 
 
 
3916
  #: core/class-settings.php:349
3917
  msgctxt "admin settings"
3918
  msgid "E-Mail Notifications"
@@ -4463,27 +4512,32 @@ msgctxt "admin settings"
4463
  msgid "Themes"
4464
  msgstr ""
4465
 
4466
- #: core/class-settings.php:619
 
 
 
 
 
4467
  msgctxt "admin settings"
4468
  msgid "Theme button style"
4469
  msgstr ""
4470
 
4471
- #: core/class-settings.php:623
4472
  msgctxt "admin settings"
4473
  msgid "Use the BD theme style for BD buttons"
4474
  msgstr ""
4475
 
4476
- #: core/class-settings.php:624
4477
  msgctxt "admin settings"
4478
  msgid "Use the WP theme style for BD buttons"
4479
  msgstr ""
4480
 
4481
- #: core/class-settings.php:631
4482
  msgctxt "admin settings"
4483
  msgid "Image"
4484
  msgstr "Imágenes"
4485
 
4486
- #: core/class-settings.php:632
4487
  msgctxt "admin settings"
4488
  msgid ""
4489
  "Any changes to these settings will affect new listings only. Existing "
@@ -4496,52 +4550,52 @@ msgstr ""
4496
  "existentes, deberá subir de nuevo las imágenes necesarias luego de hacer los "
4497
  "cambios aquí."
4498
 
4499
- #: core/class-settings.php:633
4500
  msgctxt "admin settings"
4501
  msgid "Image Settings"
4502
  msgstr "Configuración de Imágenes"
4503
 
4504
- #: core/class-settings.php:634
4505
  msgctxt "admin settings"
4506
  msgid "Allow images?"
4507
  msgstr "Permitir imágenes?"
4508
 
4509
- #: core/class-settings.php:636
4510
  msgctxt "admin settings"
4511
  msgid "Min Image File Size (KB)"
4512
  msgstr "Tamaño mínimo de imagen (KB)"
4513
 
4514
- #: core/class-settings.php:637
4515
  msgctxt "admin settings"
4516
  msgid "Max Image File Size (KB)"
4517
  msgstr "Tamaño máximo de imagen (KB)"
4518
 
4519
- #: core/class-settings.php:639
4520
  msgctxt "admin settings"
4521
  msgid "Min image width (px)"
4522
  msgstr "Ancho mínimo de imagen (en px)"
4523
 
4524
- #: core/class-settings.php:640
4525
  msgctxt "admin settings"
4526
  msgid "Min image height (px)"
4527
  msgstr "Alto mínimo de imagen (en px)"
4528
 
4529
- #: core/class-settings.php:642
4530
  msgctxt "admin settings"
4531
  msgid "Max image width (px)"
4532
  msgstr "Ancho máximo de imagen (px)"
4533
 
4534
- #: core/class-settings.php:643
4535
  msgctxt "admin settings"
4536
  msgid "Max image height (px)"
4537
  msgstr "Alto máximo de imagen (px)"
4538
 
4539
- #: core/class-settings.php:645
4540
  msgctxt "admin settings"
4541
  msgid "Turn on thickbox/lightbox?"
4542
  msgstr "Activar Thickbox/Lightbox?"
4543
 
4544
- #: core/class-settings.php:645
4545
  msgctxt "admin settings"
4546
  msgid ""
4547
  "Uncheck if it conflicts with other elements or plugins installed on your site"
@@ -4549,27 +4603,27 @@ msgstr ""
4549
  "Desmarque si entra en conflicto con otros elementos o plugins instalados en "
4550
  "su sitio"
4551
 
4552
- #: core/class-settings.php:647
4553
  msgctxt "admin settings"
4554
  msgid "Thumbnails"
4555
  msgstr "Imágenes de previsualización"
4556
 
4557
- #: core/class-settings.php:648
4558
  msgctxt "admin settings"
4559
  msgid "Thumbnail width (px)"
4560
  msgstr "Ancho de thumbnail (px)"
4561
 
4562
- #: core/class-settings.php:649
4563
  msgctxt "admin settings"
4564
  msgid "Thumbnail height (px)"
4565
  msgstr "Alto de thumbnail (px)"
4566
 
4567
- #: core/class-settings.php:652
4568
  msgctxt "admin settings"
4569
  msgid "Crop thumbnails to exact dimensions?"
4570
  msgstr "Cortar imágenes de previsualización a las dimensiones exactas?"
4571
 
4572
- #: core/class-settings.php:655
4573
  msgctxt "admin settings"
4574
  msgid ""
4575
  "When enabled images will match exactly the dimensions above but part of the "
@@ -4583,12 +4637,12 @@ msgstr ""
4583
  "alto será ajustado proporcionalmente. Dependiendo de las imágenes que se "
4584
  "hayan utilizado, estas podrían tener diferentes alturas."
4585
 
4586
- #: core/class-settings.php:661
4587
  msgctxt "admin settings"
4588
  msgid "Number of free images"
4589
  msgstr "Número de imágenes gratuitas"
4590
 
4591
- #: core/class-settings.php:666
4592
  msgctxt "admin settings"
4593
  msgid ""
4594
  "For paid listing images, configure that by adding or editing a <a>Fee Plan</"
@@ -4597,17 +4651,28 @@ msgstr ""
4597
  "Configure las imágenes de listados pagos agregando o editando una "
4598
  "<a>comisión</a> pues este valor será ignorado para listados pagos."
4599
 
4600
- #: core/class-settings.php:669
4601
  msgctxt "admin settings"
4602
  msgid "Use default picture for listings with no picture?"
4603
  msgstr "Utilizar imagen por defecto en listados sin imagen?"
4604
 
4605
- #: core/class-settings.php:670
4606
  msgctxt "admin settings"
4607
  msgid "Show Thumbnail on main listings page?"
4608
  msgstr "Mostrar thumbnails en las páginas principales?"
4609
 
4610
- #: core/class-settings.php:726
 
 
 
 
 
 
 
 
 
 
 
4611
  msgctxt "admin settings"
4612
  msgid ""
4613
  "Could not copy the AJAX compatibility plugin \"%s\". Compatibility mode was "
@@ -4616,7 +4681,7 @@ msgstr ""
4616
  "No se pudo copiar el plugin de compatibilidad AJAX \"%s\". El modo de "
4617
  "compatibilidad no fue activado."
4618
 
4619
- #: core/class-settings.php:734
4620
  msgctxt "admin settings"
4621
  msgid ""
4622
  "Could not activate AJAX Compatibility mode: the directory \"%s\" could not "
@@ -4625,7 +4690,7 @@ msgstr ""
4625
  "No se pudo activar el modo de compatibilidad AJAX: el directorio \"%s\" no "
4626
  "pudo ser creado."
4627
 
4628
- #: core/class-settings.php:743
4629
  msgctxt "admin settings"
4630
  msgid ""
4631
  "Could not remove the \"Business Directory Plugin - AJAX Compatibility Module"
@@ -4634,97 +4699,97 @@ msgstr ""
4634
  "No se pudo remover \"Business Directory Plugin - AJAX Compatibility Module"
4635
  "\". Por favor elimine el archivo \"%s\" manualmente o desactive el plugin."
4636
 
4637
- #: core/class-settings.php:1063
4638
  msgctxt "settings"
4639
  msgid "Deactivate License"
4640
  msgstr "Desactivar Licencia"
4641
 
4642
- #: core/class-settings.php:1065
4643
  msgctxt "settings"
4644
  msgid "Deactivating license..."
4645
  msgstr "Desactivando licencia..."
4646
 
4647
- #: core/class-settings.php:1068
4648
  msgctxt "settings"
4649
  msgid "Activate License"
4650
  msgstr "Activar Licencia"
4651
 
4652
- #: core/class-settings.php:1070
4653
  msgctxt "settings"
4654
  msgid "Activating license..."
4655
  msgstr "Activando licencia..."
4656
 
4657
- #: core/class-settings.php:1093
4658
  msgctxt "admin settings"
4659
  msgid "Valid placeholders: %s"
4660
  msgstr "Comodines válidos: %s"
4661
 
4662
- #: core/class-settings.php:1127
4663
  msgctxt "settings email"
4664
  msgid "Click to edit e-mail"
4665
  msgstr "Click para editar el correo"
4666
 
4667
- #: core/class-settings.php:1128
4668
  msgctxt "settings email"
4669
  msgid "Click to edit"
4670
  msgstr "Click para editar"
4671
 
4672
- #: core/class-settings.php:1141
4673
  msgctxt "settings email"
4674
  msgid "E-Mail Subject"
4675
  msgstr "Título del correo"
4676
 
4677
- #: core/class-settings.php:1152
4678
  msgctxt "settings email"
4679
  msgid "E-Mail Body"
4680
  msgstr "Cuerpo del correo"
4681
 
4682
- #: core/class-settings.php:1163
4683
  msgctxt "settings email"
4684
  msgid "You can use the following placeholders:"
4685
  msgstr "Puede utilizar los siguientes comodines:"
4686
 
4687
- #: core/class-settings.php:1186
4688
  msgctxt "settings email"
4689
  msgid "Preview e-mail"
4690
  msgstr "Previsualizar correo"
4691
 
4692
- #: core/class-settings.php:1187
4693
  msgctxt "settings email"
4694
  msgid "Cancel"
4695
  msgstr "Cancelar"
4696
 
4697
- #: core/class-settings.php:1188
4698
  msgctxt "settings email"
4699
  msgid "Save Changes"
4700
  msgstr "Guardar Cambios"
4701
 
4702
- #: core/class-settings.php:1207
4703
  msgctxt "settings email"
4704
  msgid "Site title"
4705
  msgstr "Título del sitio"
4706
 
4707
- #: core/class-settings.php:1210
4708
  msgctxt "settings email"
4709
  msgid "Site title (with link)"
4710
  msgstr "Título del listado (con enlace)"
4711
 
4712
- #: core/class-settings.php:1213
4713
  msgctxt "settings email"
4714
  msgid "Site address (with link)"
4715
  msgstr "Dirección del listado (con enlace)"
4716
 
4717
- #: core/class-settings.php:1216
4718
  msgctxt "settings email"
4719
  msgid "Directory URL (with link)"
4720
  msgstr "URL del Directorio (con enlace)"
4721
 
4722
- #: core/class-settings.php:1219
4723
  msgctxt "settings email"
4724
  msgid "Current date"
4725
  msgstr "Fecha actual"
4726
 
4727
- #: core/class-settings.php:1222
4728
  msgctxt "settings email"
4729
  msgid "Current time"
4730
  msgstr "Hora actual"
4
  msgstr ""
5
  "Project-Id-Version: Business Directory Plugin 4.0.6\n"
6
  "Report-Msgid-Bugs-To: http://wordpress.org/tag/business-directory-plugin\n"
7
+ "POT-Creation-Date: 2016-06-21 22:32:39+00:00\n"
8
  "PO-Revision-Date: 2016-06-14 15:52-0500\n"
9
  "Last-Translator: BD Team <support@businessdirectoryplugin.com>\n"
10
  "Language-Team: BD Team <support@businessdirectoryplugin.com>\n"
170
  msgid "Invalid e-mail address."
171
  msgstr "Dirección de correo-e inválida."
172
 
173
+ #: admin/class-admin.php:219
174
  msgctxt "admin menu"
175
  msgid "Business Directory Admin"
176
  msgstr "Gestión de Directorio de Negocios"
177
 
178
+ #: admin/class-admin.php:220
179
+ #, fuzzy
180
+ msgctxt "admin menu"
181
+ msgid "Dir. Admin"
182
+ msgstr "Gestión de Directorio"
183
+
184
+ #: admin/class-admin.php:220
185
  msgctxt "admin menu"
186
  msgid "Directory Admin"
187
  msgstr "Gestión de Directorio"
188
 
189
+ #: admin/class-admin.php:226 admin/class-admin.php:227
190
  msgctxt "admin menu"
191
  msgid "Add New Listing"
192
  msgstr "Agregar Nuevo Listado"
193
 
194
+ #: admin/class-admin.php:232 admin/class-admin.php:233
195
  msgctxt "admin menu"
196
  msgid "Manage Options"
197
  msgstr "Configuraciones"
198
 
199
+ #: admin/class-admin.php:238 admin/class-admin.php:239
200
  msgctxt "admin menu"
201
  msgid "Manage Fees"
202
  msgstr "Administrar Comisiones"
203
 
204
+ #: admin/class-admin.php:244 admin/class-admin.php:245
205
  msgctxt "admin menu"
206
  msgid "Manage Form Fields"
207
  msgstr "Administrar Campos de Formulario"
208
 
209
+ #: admin/class-admin.php:250 admin/class-admin.php:251
210
  msgctxt "admin menu"
211
  msgid "Listings"
212
  msgstr "Listados"
213
 
214
+ #: admin/class-admin.php:265 admin/class-admin.php:266
215
  msgctxt "admin menu"
216
  msgid "CSV Import"
217
  msgstr "Importar CSV"
218
 
219
+ #: admin/class-admin.php:271 admin/class-admin.php:272
220
  msgctxt "admin menu"
221
  msgid "CSV Export"
222
  msgstr "Exportar CSV"
223
 
224
+ #: admin/class-admin.php:277 admin/class-admin.php:278
225
  msgctxt "admin menu"
226
  msgid "Debug"
227
  msgstr "Depuración"
228
 
229
+ #: admin/class-admin.php:287
230
  msgctxt "admin menu"
231
  msgid "Main Menu"
232
  msgstr "Menú Principal"
233
 
234
+ #: admin/class-admin.php:298
235
  msgctxt "admin menu"
236
  msgid "Uninstall Business Directory Plugin"
237
  msgstr "Desinstalar Business Directory Plugin"
238
 
239
+ #: admin/class-admin.php:299
240
  msgctxt "admin menu"
241
  msgid "Uninstall"
242
  msgstr "Desinstalar"
243
 
244
+ #: admin/class-admin.php:413
245
  #: admin/templates/listing-metabox-categories.tpl.php:69
246
  msgctxt "admin infometabox"
247
  msgid "never"
248
  msgstr "nunca"
249
 
250
+ #: admin/class-admin.php:507
251
  msgctxt "admin"
252
  msgid "Dismiss this notice."
253
  msgstr ""
254
 
255
+ #: admin/class-admin.php:535
256
  msgctxt "admin"
257
  msgid "The listing has been published."
258
  msgid_plural "The listings have been published."
259
  msgstr[0] "El listado ha sido publicado."
260
  msgstr[1] "Los listados han sido publicados."
261
 
262
+ #: admin/class-admin.php:553
263
  msgctxt "admin"
264
  msgid "The listing status has been set as paid."
265
  msgid_plural "The listings status has been set as paid."
266
  msgstr[0] "El listado se ha marcado como pagado."
267
  msgstr[1] "Los listados se han marcado como pagados."
268
 
269
+ #: admin/class-admin.php:559
270
  msgctxt "admin"
271
  msgid ""
272
  "Only invoices containing non-recurring items were marked as paid. Please "
278
  msgstr[0] ""
279
  msgstr[1] ""
280
 
281
+ #: admin/class-admin.php:578
282
  msgctxt "admin"
283
  msgid "The listing has been modified."
284
  msgid_plural "The listings have been modified."
285
  msgstr[0] "El listado ha sido modificado."
286
  msgstr[1] "Los listados han sido modificados."
287
 
288
+ #: admin/class-admin.php:591
289
  msgctxt "admin"
290
  msgid "The listing has been upgraded."
291
  msgid_plural "The listings have been upgraded."
292
  msgstr[0] "El listado ha sido mejorado."
293
  msgstr[1] "Los listados han sido mejorados."
294
 
295
+ #: admin/class-admin.php:603
296
  msgctxt "admin"
297
  msgid "The listing has been downgraded."
298
  msgid_plural "The listings have been downgraded."
299
  msgstr[0] "El listado ha sido degradado."
300
  msgstr[1] "Los listados han sido degradados."
301
 
302
+ #: admin/class-admin.php:614
303
  msgctxt "admin payments"
304
  msgid ""
305
  "The payment status was not changed. Recurring payments can't be manually "
307
  "went through."
308
  msgstr ""
309
 
310
+ #: admin/class-admin.php:619
311
  msgctxt "admin"
312
  msgid "The transaction has been approved."
313
  msgstr "La transacción ha sido aprobada."
314
 
315
+ #: admin/class-admin.php:629
316
  msgctxt "admin"
317
  msgid "The transaction has been rejected."
318
  msgstr "La transacción ha sido rechazada."
319
 
320
+ #: admin/class-admin.php:635
321
  msgctxt "admin"
322
  msgid "The fee was successfully assigned."
323
  msgstr "La comisión se asignó satisfactoriamente."
324
 
325
+ #: admin/class-admin.php:644
326
  msgctxt "admin"
327
  msgid "Listing was renewed."
328
  msgid_plural "Listings were renewed."
329
  msgstr[0] "El listado ha sido renovado."
330
  msgstr[1] "Los listados fueron renovados."
331
 
332
+ #: admin/class-admin.php:651
333
  msgctxt "admin"
334
  msgid "Renewal email sent."
335
  msgstr "Mensaje de correo electrónico de renovación enviado."
336
 
337
+ #: admin/class-admin.php:685
338
  msgctxt "admin category id"
339
  msgid "ID"
340
  msgstr "ID"
341
 
342
+ #: admin/class-admin.php:687 admin/class-admin.php:693
343
  msgctxt "admin"
344
  msgid "Listing Count"
345
  msgstr "Conteo de Listados"
346
 
347
+ #: admin/class-admin.php:802
348
  msgctxt "admin"
349
  msgid ""
350
  "<b>Business Directory Plugin</b> requires fields with the following "
353
  "<b>Business Directory Plugin</b> requiere campos con las siguientes "
354
  "asociaciones para funcionar correctamente: <b>%s</b>."
355
 
356
+ #: admin/class-admin.php:804
357
  msgctxt "admin"
358
  msgid ""
359
  "<b>Business Directory Plugin</b> requires a field with a <b>%s</b> "
362
  "<b>Business Directory Plugin</b> requiere un campo con la asociación <b>%s</"
363
  "b> para funcionar correctamente."
364
 
365
+ #: admin/class-admin.php:808
366
  msgctxt "admin"
367
  msgid ""
368
  "You can create these custom fields by yourself inside \"Manage Form Fields\" "
371
  "Puede crear estos campos usted mismo en \"Administrar Campos de Formulario\" "
372
  "o puede dejar que Business Directory haga esto por usted automáticamente."
373
 
374
+ #: admin/class-admin.php:812
375
  msgctxt "admin"
376
  msgid "Go to \"Manage Form Fields\""
377
  msgstr "Ir a \"Administrar Campos de Formulario\""
378
 
379
+ #: admin/class-admin.php:815
380
  msgctxt "admin"
381
  msgid "Create these required fields for me"
382
  msgstr "Crear estos campos requeridos por mi"
383
 
384
+ #: admin/class-admin.php:824
385
  msgctxt "admin"
386
  msgid ""
387
  "<b>Business Directory Plugin</b> requires a page with the "
390
  "<b>Business Directory Plugin</b> requiere una página con el shortcode "
391
  "<tt>[businessdirectory]</tt> para funcionar adecuadamente."
392
 
393
+ #: admin/class-admin.php:826
394
  msgctxt "admin"
395
  msgid ""
396
  "You can create this page by yourself or let Business Directory do this for "
399
  "Puede crear esta página usted mismo o dejar que Business Directory lo haga "
400
  "por usted automáticamente."
401
 
402
+ #: admin/class-admin.php:830
403
  msgctxt "admin"
404
  msgid "Create required pages for me"
405
  msgstr "Crear las páginas requeridas por mi"
406
 
407
+ #: admin/class-admin.php:870
408
  msgctxt "admin compat"
409
  msgid "Installed: %s"
410
  msgstr "Instalado: %s"
411
 
412
+ #: admin/class-admin.php:870
413
  msgctxt "admin compat"
414
  msgid "N/A"
415
  msgstr "N/A"
416
 
417
+ #: admin/class-admin.php:873
418
  msgctxt "admin compat"
419
  msgid "Required: %s"
420
  msgstr "Requerido: %s"
421
 
422
+ #: admin/class-admin.php:885
423
  msgctxt "admin compat"
424
  msgid ""
425
  "Business Directory has detected some incompatible premium module versions "
428
  "Business Directory ha detectado algunas versiones incompatibles de módulos "
429
  "instaladas."
430
 
431
+ #: admin/class-admin.php:887
432
  msgctxt "admin compat"
433
  msgid ""
434
  "Please upgrade to the required versions indicated below to make sure "
437
  "Por favor actualice a las versiones requeridas indicadas abajo para "
438
  "asegurarse de que todo funcione correctamente."
439
 
440
+ #: admin/class-admin.php:907
441
  msgctxt "admin"
442
  msgid ""
443
  "We noticed you want your Business Directory users to register before posting "
466
  msgid "There are no images currently attached to the listing."
467
  msgstr "No hay imágenes actualmente asociadas al listado."
468
 
469
+ #: admin/class-themes-admin.php:47
470
  msgctxt "themes"
471
  msgid "Directory Themes"
472
  msgstr ""
473
 
474
+ #: admin/class-themes-admin.php:48
475
  msgctxt "themes"
476
  msgid "Directory Themes %s"
477
  msgstr ""
478
 
479
+ #: admin/class-themes-admin.php:94
480
  msgctxt "admin themes"
481
  msgid ""
482
  "Business Directory Plugin - Your template overrides need to be reviewed!"
483
  msgstr ""
484
 
485
+ #: admin/class-themes-admin.php:96
486
  msgctxt "admin themes"
487
  msgid ""
488
  "Starting with version 4.0, Business Directory is using a new theming system "
489
  "that is not compatible with the templates used in previous versions."
490
  msgstr ""
491
 
492
+ #: admin/class-themes-admin.php:98
493
  msgctxt "admin themes"
494
  msgid ""
495
  "Because of this, your template overrides below have been disabled. You "
497
  "templates."
498
  msgstr ""
499
 
500
+ #: admin/class-themes-admin.php:127
501
  msgctxt "admin themes"
502
  msgid ""
503
  "You need to <a>activate your theme's license key</a> before you can activate "
504
  "the theme. <a>Click here</a> to do that."
505
  msgstr ""
506
 
507
+ #: admin/class-themes-admin.php:155
508
  msgctxt "themes"
509
  msgid "Could not change the active theme to \"%s\"."
510
  msgstr ""
511
 
512
+ #: admin/class-themes-admin.php:202
513
  msgctxt "themes"
514
  msgid "Active theme changed to \"%s\"."
515
  msgstr ""
516
 
517
+ #: admin/class-themes-admin.php:205
518
  msgctxt "themes"
519
  msgid ""
520
  "%s requires that you tag your existing fields to match some places we want "
521
  "to put your data on the theme. Below are fields we think are missing."
522
  msgstr ""
523
 
524
+ #: admin/class-themes-admin.php:214
525
  #, fuzzy
526
  msgctxt "themes"
527
  msgid "Map My Fields"
528
  msgstr "Administrar Campos de Formulario"
529
 
530
+ #: admin/class-themes-admin.php:221
531
  msgctxt "themes"
532
  msgid "Suggested fields created successfully."
533
  msgstr ""
534
 
535
+ #: admin/class-themes-admin.php:224
536
  msgctxt "themes"
537
  msgid "Theme installed successfully."
538
  msgstr ""
539
 
540
+ #: admin/class-themes-admin.php:227
541
  msgctxt "themes"
542
  msgid "Theme was deleted sucessfully."
543
  msgstr ""
544
 
545
+ #: admin/class-themes-admin.php:230
546
  msgctxt "themes"
547
  msgid "Could not delete theme directory. Check permissions."
548
  msgstr ""
549
 
550
+ #: admin/class-themes-admin.php:256
551
  msgctxt "themes"
552
  msgid "Please upload a valid theme file."
553
  msgstr ""
554
 
555
+ #: admin/class-themes-admin.php:263
556
  msgctxt "themes"
557
  msgid "Could not move \"%s\" to a temporary directory."
558
  msgstr ""
559
 
560
+ #: admin/class-themes-admin.php:364 admin/class-themes-admin.php:425
561
  #: core/licensing.php:127 core/licensing.php:159
562
  msgctxt "licensing"
563
  msgid "Could not contact licensing server"
564
  msgstr "No se pudo contactar el servidor de licencias"
565
 
566
+ #: admin/class-themes-admin.php:370 core/licensing.php:132
567
  #: core/licensing.php:166
568
  msgctxt "licensing"
569
  msgid "License key is invalid"
570
  msgstr "La licencia es inválida"
571
 
572
+ #: admin/class-themes-admin.php:375 core/licensing.php:333
573
  msgctxt "licensing"
574
  msgid "Could not activate license: %s."
575
  msgstr "No se pudo activar la licencia: %s."
576
 
577
+ #: admin/class-themes-admin.php:388 core/licensing.php:335
578
  msgctxt "licensing"
579
  msgid "License activated"
580
  msgstr "Licencia activada"
581
 
582
+ #: admin/class-themes-admin.php:431
583
  msgctxt "licensing"
584
  msgid "Invalid response from server"
585
  msgstr ""
586
 
587
+ #: admin/class-themes-admin.php:448 core/licensing.php:353
588
  msgctxt "licensing"
589
  msgid "License deactivated"
590
  msgstr "Licencia desactivada"
591
 
592
+ #: admin/class-themes-admin.php:464
593
  msgctxt "themes"
594
  msgid "Activate your <a>license key</a> to use this theme."
595
  msgstr ""
2028
  msgid "Field Association"
2029
  msgstr "Asociación del Campo"
2030
 
2031
+ #: admin/templates/form-fields-addoredit.tpl.php:14
2032
+ #: admin/templates/form-fields-addoredit.tpl.php:36
2033
+ #: admin/templates/form-fields-addoredit.tpl.php:60
2034
+ #, fuzzy
2035
+ msgctxt "form-fields admin"
2036
+ msgid "required"
2037
+ msgstr "requerido"
2038
+
2039
  #: admin/templates/form-fields-addoredit.tpl.php:36
2040
  msgctxt "form-fields admin"
2041
  msgid "Field Type"
2051
  msgid "Field description"
2052
  msgstr "Descripción del Campo"
2053
 
2054
+ #: admin/templates/form-fields-addoredit.tpl.php:70
2055
+ #, fuzzy
2056
+ msgctxt "form-fields admin"
2057
+ msgid "optional"
2058
+ msgstr "Opcional"
2059
+
2060
  #: admin/templates/form-fields-addoredit.tpl.php:87
2061
  msgctxt "form-fields admin"
2062
  msgid "Field-specific settings"
2200
  msgid "Preview Form"
2201
  msgstr "Previsualizar Formulario"
2202
 
2203
+ #: admin/templates/form-fields.tpl.php:6 admin/templates/themes.tpl.php:4
2204
  msgctxt "form-fields admin"
2205
  msgid "Manage Theme Tags"
2206
  msgstr ""
2223
  "Por favor vea la <a>documentación de Campos de Formulario</a> para más "
2224
  "detalles."
2225
 
2226
+ #. #-#-#-#-# WPBDM.pot (Business Directory Plugin 4.0.7) #-#-#-#-#
2227
  #. Plugin Name of the plugin/theme
2228
  #: admin/templates/header.tpl.php:4
2229
  msgid "Business Directory Plugin"
2854
  msgid "Activating license..."
2855
  msgstr "Activando licencia..."
2856
 
2857
+ #: admin/templates/themes-tabs.tpl.php:6
2858
+ #, fuzzy
2859
+ msgctxt "admin themes"
2860
+ msgid "Available Themes"
2861
+ msgstr "Casillas de imagen disponibles:"
2862
+
2863
+ #: admin/templates/themes-tabs.tpl.php:7
2864
+ #, fuzzy
2865
+ msgctxt "admin themes"
2866
+ msgid "Licenses"
2867
+ msgstr "Licencias"
2868
+
2869
+ #: admin/templates/themes.tpl.php:5
2870
+ #, fuzzy
2871
+ msgctxt "themes"
2872
+ msgid "Settings"
2873
+ msgstr "Configuración"
2874
+
2875
+ #: admin/templates/themes.tpl.php:15
2876
  msgctxt "themes"
2877
  msgid ""
2878
  "<a><b>Directory Themes</b></a> are pre-made templates for the <i>Business "
2880
  "We have a number of them available for purchase <a>here</a>."
2881
  msgstr ""
2882
 
2883
+ #: admin/templates/themes.tpl.php:16
2884
  msgctxt "themes"
2885
  msgid ""
2886
  "They are <strong>different</strong> than your regular WordPress theme and "
3555
  msgid "Enable AJAX compatibility mode?"
3556
  msgstr "Habilitar modo de compatibilidad AJAX?"
3557
 
3558
+ #: core/class-settings.php:179 core/class-settings.php:660
3559
  msgctxt "admin settings"
3560
  msgid "Listings"
3561
  msgstr "Listados"
3562
 
3563
  #: core/class-settings.php:180 core/class-settings.php:330
3564
+ #: core/class-settings.php:617
3565
  msgctxt "admin settings"
3566
  msgid "General Settings"
3567
  msgstr "Configuración General"
3837
  msgid "Author"
3838
  msgstr "Autor"
3839
 
3840
+ #: core/class-settings.php:293 core/class-settings.php:703
3841
  msgctxt "admin settings"
3842
  msgid "Date posted"
3843
  msgstr "Fecha de publicación"
3844
 
3845
+ #: core/class-settings.php:294 core/class-settings.php:704
3846
  msgctxt "admin settings"
3847
  msgid "Date last modified"
3848
  msgstr "Fecha de última modificación"
3952
  "Esta configuración afecta cómo los dueños de los listados son contactados "
3953
  "cuando sus listados expiran o a través de los formularios de contacto."
3954
 
3955
+ #: core/class-settings.php:344
3956
+ msgctxt "admin settings"
3957
+ msgid "Try listing's email field first, then author's email."
3958
+ msgstr ""
3959
+
3960
+ #: core/class-settings.php:345
3961
+ msgctxt "admin settings"
3962
+ msgid "Try author's email first and then listing's email field."
3963
+ msgstr ""
3964
+
3965
  #: core/class-settings.php:349
3966
  msgctxt "admin settings"
3967
  msgid "E-Mail Notifications"
4512
  msgid "Themes"
4513
  msgstr ""
4514
 
4515
+ #: core/class-settings.php:616
4516
+ msgctxt "admin settings"
4517
+ msgid "You can manage your themes on <a>Directory Themes</a>."
4518
+ msgstr ""
4519
+
4520
+ #: core/class-settings.php:621
4521
  msgctxt "admin settings"
4522
  msgid "Theme button style"
4523
  msgstr ""
4524
 
4525
+ #: core/class-settings.php:625
4526
  msgctxt "admin settings"
4527
  msgid "Use the BD theme style for BD buttons"
4528
  msgstr ""
4529
 
4530
+ #: core/class-settings.php:626
4531
  msgctxt "admin settings"
4532
  msgid "Use the WP theme style for BD buttons"
4533
  msgstr ""
4534
 
4535
+ #: core/class-settings.php:633
4536
  msgctxt "admin settings"
4537
  msgid "Image"
4538
  msgstr "Imágenes"
4539
 
4540
+ #: core/class-settings.php:634
4541
  msgctxt "admin settings"
4542
  msgid ""
4543
  "Any changes to these settings will affect new listings only. Existing "
4550
  "existentes, deberá subir de nuevo las imágenes necesarias luego de hacer los "
4551
  "cambios aquí."
4552
 
4553
+ #: core/class-settings.php:635
4554
  msgctxt "admin settings"
4555
  msgid "Image Settings"
4556
  msgstr "Configuración de Imágenes"
4557
 
4558
+ #: core/class-settings.php:636
4559
  msgctxt "admin settings"
4560
  msgid "Allow images?"
4561
  msgstr "Permitir imágenes?"
4562
 
4563
+ #: core/class-settings.php:638
4564
  msgctxt "admin settings"
4565
  msgid "Min Image File Size (KB)"
4566
  msgstr "Tamaño mínimo de imagen (KB)"
4567
 
4568
+ #: core/class-settings.php:639
4569
  msgctxt "admin settings"
4570
  msgid "Max Image File Size (KB)"
4571
  msgstr "Tamaño máximo de imagen (KB)"
4572
 
4573
+ #: core/class-settings.php:641
4574
  msgctxt "admin settings"
4575
  msgid "Min image width (px)"
4576
  msgstr "Ancho mínimo de imagen (en px)"
4577
 
4578
+ #: core/class-settings.php:642
4579
  msgctxt "admin settings"
4580
  msgid "Min image height (px)"
4581
  msgstr "Alto mínimo de imagen (en px)"
4582
 
4583
+ #: core/class-settings.php:644
4584
  msgctxt "admin settings"
4585
  msgid "Max image width (px)"
4586
  msgstr "Ancho máximo de imagen (px)"
4587
 
4588
+ #: core/class-settings.php:645
4589
  msgctxt "admin settings"
4590
  msgid "Max image height (px)"
4591
  msgstr "Alto máximo de imagen (px)"
4592
 
4593
+ #: core/class-settings.php:647
4594
  msgctxt "admin settings"
4595
  msgid "Turn on thickbox/lightbox?"
4596
  msgstr "Activar Thickbox/Lightbox?"
4597
 
4598
+ #: core/class-settings.php:647
4599
  msgctxt "admin settings"
4600
  msgid ""
4601
  "Uncheck if it conflicts with other elements or plugins installed on your site"
4603
  "Desmarque si entra en conflicto con otros elementos o plugins instalados en "
4604
  "su sitio"
4605
 
4606
+ #: core/class-settings.php:649
4607
  msgctxt "admin settings"
4608
  msgid "Thumbnails"
4609
  msgstr "Imágenes de previsualización"
4610
 
4611
+ #: core/class-settings.php:650
4612
  msgctxt "admin settings"
4613
  msgid "Thumbnail width (px)"
4614
  msgstr "Ancho de thumbnail (px)"
4615
 
4616
+ #: core/class-settings.php:651
4617
  msgctxt "admin settings"
4618
  msgid "Thumbnail height (px)"
4619
  msgstr "Alto de thumbnail (px)"
4620
 
4621
+ #: core/class-settings.php:654
4622
  msgctxt "admin settings"
4623
  msgid "Crop thumbnails to exact dimensions?"
4624
  msgstr "Cortar imágenes de previsualización a las dimensiones exactas?"
4625
 
4626
+ #: core/class-settings.php:657
4627
  msgctxt "admin settings"
4628
  msgid ""
4629
  "When enabled images will match exactly the dimensions above but part of the "
4637
  "alto será ajustado proporcionalmente. Dependiendo de las imágenes que se "
4638
  "hayan utilizado, estas podrían tener diferentes alturas."
4639
 
4640
+ #: core/class-settings.php:663
4641
  msgctxt "admin settings"
4642
  msgid "Number of free images"
4643
  msgstr "Número de imágenes gratuitas"
4644
 
4645
+ #: core/class-settings.php:668
4646
  msgctxt "admin settings"
4647
  msgid ""
4648
  "For paid listing images, configure that by adding or editing a <a>Fee Plan</"
4651
  "Configure las imágenes de listados pagos agregando o editando una "
4652
  "<a>comisión</a> pues este valor será ignorado para listados pagos."
4653
 
4654
+ #: core/class-settings.php:671
4655
  msgctxt "admin settings"
4656
  msgid "Use default picture for listings with no picture?"
4657
  msgstr "Utilizar imagen por defecto en listados sin imagen?"
4658
 
4659
+ #: core/class-settings.php:672
4660
  msgctxt "admin settings"
4661
  msgid "Show Thumbnail on main listings page?"
4662
  msgstr "Mostrar thumbnails en las páginas principales?"
4663
 
4664
+ #: core/class-settings.php:701
4665
+ msgctxt "admin settings"
4666
+ msgid "User"
4667
+ msgstr ""
4668
+
4669
+ #: core/class-settings.php:702
4670
+ #, fuzzy
4671
+ msgctxt "admin settings"
4672
+ msgid "User registration date"
4673
+ msgstr "Fecha de expiración del listado"
4674
+
4675
+ #: core/class-settings.php:728
4676
  msgctxt "admin settings"
4677
  msgid ""
4678
  "Could not copy the AJAX compatibility plugin \"%s\". Compatibility mode was "
4681
  "No se pudo copiar el plugin de compatibilidad AJAX \"%s\". El modo de "
4682
  "compatibilidad no fue activado."
4683
 
4684
+ #: core/class-settings.php:736
4685
  msgctxt "admin settings"
4686
  msgid ""
4687
  "Could not activate AJAX Compatibility mode: the directory \"%s\" could not "
4690
  "No se pudo activar el modo de compatibilidad AJAX: el directorio \"%s\" no "
4691
  "pudo ser creado."
4692
 
4693
+ #: core/class-settings.php:745
4694
  msgctxt "admin settings"
4695
  msgid ""
4696
  "Could not remove the \"Business Directory Plugin - AJAX Compatibility Module"
4699
  "No se pudo remover \"Business Directory Plugin - AJAX Compatibility Module"
4700
  "\". Por favor elimine el archivo \"%s\" manualmente o desactive el plugin."
4701
 
4702
+ #: core/class-settings.php:1065
4703
  msgctxt "settings"
4704
  msgid "Deactivate License"
4705
  msgstr "Desactivar Licencia"
4706
 
4707
+ #: core/class-settings.php:1067
4708
  msgctxt "settings"
4709
  msgid "Deactivating license..."
4710
  msgstr "Desactivando licencia..."
4711
 
4712
+ #: core/class-settings.php:1070
4713
  msgctxt "settings"
4714
  msgid "Activate License"
4715
  msgstr "Activar Licencia"
4716
 
4717
+ #: core/class-settings.php:1072
4718
  msgctxt "settings"
4719
  msgid "Activating license..."
4720
  msgstr "Activando licencia..."
4721
 
4722
+ #: core/class-settings.php:1095
4723
  msgctxt "admin settings"
4724
  msgid "Valid placeholders: %s"
4725
  msgstr "Comodines válidos: %s"
4726
 
4727
+ #: core/class-settings.php:1129
4728
  msgctxt "settings email"
4729
  msgid "Click to edit e-mail"
4730
  msgstr "Click para editar el correo"
4731
 
4732
+ #: core/class-settings.php:1130
4733
  msgctxt "settings email"
4734
  msgid "Click to edit"
4735
  msgstr "Click para editar"
4736
 
4737
+ #: core/class-settings.php:1143
4738
  msgctxt "settings email"
4739
  msgid "E-Mail Subject"
4740
  msgstr "Título del correo"
4741
 
4742
+ #: core/class-settings.php:1154
4743
  msgctxt "settings email"
4744
  msgid "E-Mail Body"
4745
  msgstr "Cuerpo del correo"
4746
 
4747
+ #: core/class-settings.php:1165
4748
  msgctxt "settings email"
4749
  msgid "You can use the following placeholders:"
4750
  msgstr "Puede utilizar los siguientes comodines:"
4751
 
4752
+ #: core/class-settings.php:1188
4753
  msgctxt "settings email"
4754
  msgid "Preview e-mail"
4755
  msgstr "Previsualizar correo"
4756
 
4757
+ #: core/class-settings.php:1189
4758
  msgctxt "settings email"
4759
  msgid "Cancel"
4760
  msgstr "Cancelar"
4761
 
4762
+ #: core/class-settings.php:1190
4763
  msgctxt "settings email"
4764
  msgid "Save Changes"
4765
  msgstr "Guardar Cambios"
4766
 
4767
+ #: core/class-settings.php:1209
4768
  msgctxt "settings email"
4769
  msgid "Site title"
4770
  msgstr "Título del sitio"
4771
 
4772
+ #: core/class-settings.php:1212
4773
  msgctxt "settings email"
4774
  msgid "Site title (with link)"
4775
  msgstr "Título del listado (con enlace)"
4776
 
4777
+ #: core/class-settings.php:1215
4778
  msgctxt "settings email"
4779
  msgid "Site address (with link)"
4780
  msgstr "Dirección del listado (con enlace)"
4781
 
4782
+ #: core/class-settings.php:1218
4783
  msgctxt "settings email"
4784
  msgid "Directory URL (with link)"
4785
  msgstr "URL del Directorio (con enlace)"
4786
 
4787
+ #: core/class-settings.php:1221
4788
  msgctxt "settings email"
4789
  msgid "Current date"
4790
  msgstr "Fecha actual"
4791
 
4792
+ #: core/class-settings.php:1224
4793
  msgctxt "settings email"
4794
  msgid "Current time"
4795
  msgstr "Hora actual"
languages/WPBDM-fr_FR.mo CHANGED
Binary file
languages/WPBDM-fr_FR.po CHANGED
@@ -4,7 +4,7 @@ msgid ""
4
  msgstr ""
5
  "Project-Id-Version: Business Directory Plugin 3.6\n"
6
  "Report-Msgid-Bugs-To: http://wordpress.org/tag/business-directory-plugin\n"
7
- "POT-Creation-Date: 2016-06-14 20:52:18+00:00\n"
8
  "PO-Revision-Date: 2016-02-24 15:34-0500\n"
9
  "Last-Translator: BD Team <support@businessdirectoryplugin.com>\n"
10
  "Language-Team: BD Team <support@businessdirectoryplugin.com>\n"
@@ -170,97 +170,103 @@ msgctxt "drip pointer"
170
  msgid "Invalid e-mail address."
171
  msgstr "Adresse e-mail non valide"
172
 
173
- #: admin/class-admin.php:216
174
  msgctxt "admin menu"
175
  msgid "Business Directory Admin"
176
  msgstr "Administrateur de l'Annuaire Professionnel"
177
 
178
- #: admin/class-admin.php:217
 
 
 
 
 
 
179
  msgctxt "admin menu"
180
  msgid "Directory Admin"
181
  msgstr "Administrateur de l'Annuaire"
182
 
183
- #: admin/class-admin.php:223 admin/class-admin.php:224
184
  msgctxt "admin menu"
185
  msgid "Add New Listing"
186
  msgstr "Ajoutez une nouvelle annonce"
187
 
188
- #: admin/class-admin.php:229 admin/class-admin.php:230
189
  msgctxt "admin menu"
190
  msgid "Manage Options"
191
  msgstr "Gestion des options"
192
 
193
- #: admin/class-admin.php:235 admin/class-admin.php:236
194
  msgctxt "admin menu"
195
  msgid "Manage Fees"
196
  msgstr "Gestion des frais"
197
 
198
- #: admin/class-admin.php:241 admin/class-admin.php:242
199
  msgctxt "admin menu"
200
  msgid "Manage Form Fields"
201
  msgstr "Gestion des champs"
202
 
203
- #: admin/class-admin.php:247 admin/class-admin.php:248
204
  msgctxt "admin menu"
205
  msgid "Listings"
206
  msgstr "Listes"
207
 
208
- #: admin/class-admin.php:262 admin/class-admin.php:263
209
  msgctxt "admin menu"
210
  msgid "CSV Import"
211
  msgstr "Importation CSV"
212
 
213
- #: admin/class-admin.php:268 admin/class-admin.php:269
214
  msgctxt "admin menu"
215
  msgid "CSV Export"
216
  msgstr "Exportation CSV"
217
 
218
- #: admin/class-admin.php:274 admin/class-admin.php:275
219
  msgctxt "admin menu"
220
  msgid "Debug"
221
  msgstr "Déboguer"
222
 
223
- #: admin/class-admin.php:284
224
  msgctxt "admin menu"
225
  msgid "Main Menu"
226
  msgstr "Menu principal"
227
 
228
- #: admin/class-admin.php:295
229
  msgctxt "admin menu"
230
  msgid "Uninstall Business Directory Plugin"
231
  msgstr "Désinstaller le Plugin Annuaire Professionnel"
232
 
233
- #: admin/class-admin.php:296
234
  msgctxt "admin menu"
235
  msgid "Uninstall"
236
  msgstr "Désinstaller"
237
 
238
- #: admin/class-admin.php:410
239
  #: admin/templates/listing-metabox-categories.tpl.php:69
240
  msgctxt "admin infometabox"
241
  msgid "never"
242
  msgstr "jamais"
243
 
244
- #: admin/class-admin.php:504
245
  msgctxt "admin"
246
  msgid "Dismiss this notice."
247
  msgstr ""
248
 
249
- #: admin/class-admin.php:532
250
  msgctxt "admin"
251
  msgid "The listing has been published."
252
  msgid_plural "The listings have been published."
253
  msgstr[0] "L'annonce a été publiée."
254
  msgstr[1] "Les annonces ont été publiées."
255
 
256
- #: admin/class-admin.php:550
257
  msgctxt "admin"
258
  msgid "The listing status has been set as paid."
259
  msgid_plural "The listings status has been set as paid."
260
  msgstr[0] "Le statut de l'annonce a été défini comme étant payée."
261
  msgstr[1] "Le statut des annocnes a été défini comme étant payées."
262
 
263
- #: admin/class-admin.php:556
264
  msgctxt "admin"
265
  msgid ""
266
  "Only invoices containing non-recurring items were marked as paid. Please "
@@ -272,28 +278,28 @@ msgid_plural ""
272
  msgstr[0] ""
273
  msgstr[1] ""
274
 
275
- #: admin/class-admin.php:575
276
  msgctxt "admin"
277
  msgid "The listing has been modified."
278
  msgid_plural "The listings have been modified."
279
  msgstr[0] "L'annonce a été modifiée."
280
  msgstr[1] "Les annonces ont été modifiées."
281
 
282
- #: admin/class-admin.php:588
283
  msgctxt "admin"
284
  msgid "The listing has been upgraded."
285
  msgid_plural "The listings have been upgraded."
286
  msgstr[0] "L'annonce a été mise à jour."
287
  msgstr[1] "Les annonces ont été mise à jour."
288
 
289
- #: admin/class-admin.php:600
290
  msgctxt "admin"
291
  msgid "The listing has been downgraded."
292
  msgid_plural "The listings have been downgraded."
293
  msgstr[0] "L'annonce a été rétrogradée."
294
  msgstr[1] "Les annonces ont été rétrogradées."
295
 
296
- #: admin/class-admin.php:611
297
  msgctxt "admin payments"
298
  msgid ""
299
  "The payment status was not changed. Recurring payments can't be manually "
@@ -301,44 +307,44 @@ msgid ""
301
  "went through."
302
  msgstr ""
303
 
304
- #: admin/class-admin.php:616
305
  msgctxt "admin"
306
  msgid "The transaction has been approved."
307
  msgstr "La transaction a été approuvée."
308
 
309
- #: admin/class-admin.php:626
310
  msgctxt "admin"
311
  msgid "The transaction has been rejected."
312
  msgstr "La transaction a été rejetée."
313
 
314
- #: admin/class-admin.php:632
315
  msgctxt "admin"
316
  msgid "The fee was successfully assigned."
317
  msgstr "Les frais ont bien été assignés."
318
 
319
- #: admin/class-admin.php:641
320
  msgctxt "admin"
321
  msgid "Listing was renewed."
322
  msgid_plural "Listings were renewed."
323
  msgstr[0] "L'annonce a été renouvelée."
324
  msgstr[1] "Les annonces ont été renouvelées."
325
 
326
- #: admin/class-admin.php:648
327
  msgctxt "admin"
328
  msgid "Renewal email sent."
329
  msgstr "Email de renouvellement envoyé"
330
 
331
- #: admin/class-admin.php:682
332
  msgctxt "admin category id"
333
  msgid "ID"
334
  msgstr "ID"
335
 
336
- #: admin/class-admin.php:684 admin/class-admin.php:690
337
  msgctxt "admin"
338
  msgid "Listing Count"
339
  msgstr "Compteur d'annonces"
340
 
341
- #: admin/class-admin.php:799
342
  msgctxt "admin"
343
  msgid ""
344
  "<b>Business Directory Plugin</b> requires fields with the following "
@@ -347,7 +353,7 @@ msgstr ""
347
  "<b>Plugin d'Annuaire Professionnel</b> requiert des champs avec les "
348
  "associations suivantes pour marcher correctement: <b>%s</b>"
349
 
350
- #: admin/class-admin.php:801
351
  msgctxt "admin"
352
  msgid ""
353
  "<b>Business Directory Plugin</b> requires a field with a <b>%s</b> "
@@ -356,7 +362,7 @@ msgstr ""
356
  "<b>Plugin d'Annuaire Professionnel</b> requiert un champ avec un <b>%s</b> "
357
  "association en ordre pour marcher correctement."
358
 
359
- #: admin/class-admin.php:805
360
  msgctxt "admin"
361
  msgid ""
362
  "You can create these custom fields by yourself inside \"Manage Form Fields\" "
@@ -365,17 +371,17 @@ msgstr ""
365
  "Vous pouvez créer ces champs personnalisés pas vous-mêmes dans \"Gestion des "
366
  "Champs\" ou laissez le plugin le faire pour vous automatiquement."
367
 
368
- #: admin/class-admin.php:809
369
  msgctxt "admin"
370
  msgid "Go to \"Manage Form Fields\""
371
  msgstr "Aller à \"Gestion des Champs\""
372
 
373
- #: admin/class-admin.php:812
374
  msgctxt "admin"
375
  msgid "Create these required fields for me"
376
  msgstr "Créer ces champs obligatoires pour moi"
377
 
378
- #: admin/class-admin.php:821
379
  msgctxt "admin"
380
  msgid ""
381
  "<b>Business Directory Plugin</b> requires a page with the "
@@ -384,7 +390,7 @@ msgstr ""
384
  "<b>Business Directory Plugin</b> requiert une page avec le code "
385
  "d'activation <tt>[businessdirectory]</tt> pour marcher correctement."
386
 
387
- #: admin/class-admin.php:823
388
  msgctxt "admin"
389
  msgid ""
390
  "You can create this page by yourself or let Business Directory do this for "
@@ -393,27 +399,27 @@ msgstr ""
393
  "Vous pouvez créer cette page par vous-mêmes ou laisser le plugin la faire "
394
  "pour vous automatiquement."
395
 
396
- #: admin/class-admin.php:827
397
  msgctxt "admin"
398
  msgid "Create required pages for me"
399
  msgstr "Créer les pages requises pour moi."
400
 
401
- #: admin/class-admin.php:867
402
  msgctxt "admin compat"
403
  msgid "Installed: %s"
404
  msgstr "Installé: %s"
405
 
406
- #: admin/class-admin.php:867
407
  msgctxt "admin compat"
408
  msgid "N/A"
409
  msgstr "N/A"
410
 
411
- #: admin/class-admin.php:870
412
  msgctxt "admin compat"
413
  msgid "Required: %s"
414
  msgstr "Requis: %s"
415
 
416
- #: admin/class-admin.php:882
417
  msgctxt "admin compat"
418
  msgid ""
419
  "Business Directory has detected some incompatible premium module versions "
@@ -422,7 +428,7 @@ msgstr ""
422
  "Le plugin a détecté une/des modules incomptatible de la version premium "
423
  "installé."
424
 
425
- #: admin/class-admin.php:884
426
  msgctxt "admin compat"
427
  msgid ""
428
  "Please upgrade to the required versions indicated below to make sure "
@@ -431,7 +437,7 @@ msgstr ""
431
  "Veuillez mettre à jour vers la version requise, indiquée ci-dessous, pour "
432
  "assurer le bon fonctionnement des fonctions. "
433
 
434
- #: admin/class-admin.php:904
435
  msgctxt "admin"
436
  msgid ""
437
  "We noticed you want your Business Directory users to register before posting "
@@ -460,31 +466,31 @@ msgctxt "templates"
460
  msgid "There are no images currently attached to the listing."
461
  msgstr "Il n'y a aucune image attaché à cette annonce."
462
 
463
- #: admin/class-themes-admin.php:45
464
  msgctxt "themes"
465
  msgid "Directory Themes"
466
  msgstr "Catégories de l'annuaire"
467
 
468
- #: admin/class-themes-admin.php:46
469
  #, fuzzy
470
  msgctxt "themes"
471
  msgid "Directory Themes %s"
472
  msgstr "Catégories de l'annuaire"
473
 
474
- #: admin/class-themes-admin.php:88
475
  msgctxt "admin themes"
476
  msgid ""
477
  "Business Directory Plugin - Your template overrides need to be reviewed!"
478
  msgstr ""
479
 
480
- #: admin/class-themes-admin.php:90
481
  msgctxt "admin themes"
482
  msgid ""
483
  "Starting with version 4.0, Business Directory is using a new theming system "
484
  "that is not compatible with the templates used in previous versions."
485
  msgstr ""
486
 
487
- #: admin/class-themes-admin.php:92
488
  msgctxt "admin themes"
489
  msgid ""
490
  "Because of this, your template overrides below have been disabled. You "
@@ -492,99 +498,99 @@ msgid ""
492
  "templates."
493
  msgstr ""
494
 
495
- #: admin/class-themes-admin.php:121
496
  msgctxt "admin themes"
497
  msgid ""
498
  "You need to <a>activate your theme's license key</a> before you can activate "
499
  "the theme. <a>Click here</a> to do that."
500
  msgstr ""
501
 
502
- #: admin/class-themes-admin.php:149
503
  msgctxt "themes"
504
  msgid "Could not change the active theme to \"%s\"."
505
  msgstr "Vous ne pouvez pas changer le thème actif pour \"%s\""
506
 
507
- #: admin/class-themes-admin.php:196
508
  msgctxt "themes"
509
  msgid "Active theme changed to \"%s\"."
510
  msgstr "Thème actuel modifié vers \"%s\"."
511
 
512
- #: admin/class-themes-admin.php:199
513
  msgctxt "themes"
514
  msgid ""
515
  "%s requires that you tag your existing fields to match some places we want "
516
  "to put your data on the theme. Below are fields we think are missing."
517
  msgstr ""
518
 
519
- #: admin/class-themes-admin.php:208
520
  #, fuzzy
521
  msgctxt "themes"
522
  msgid "Map My Fields"
523
  msgstr "Gestion des champs"
524
 
525
- #: admin/class-themes-admin.php:215
526
  msgctxt "themes"
527
  msgid "Suggested fields created successfully."
528
  msgstr "Champs créés avec succès."
529
 
530
- #: admin/class-themes-admin.php:218
531
  msgctxt "themes"
532
  msgid "Theme installed successfully."
533
  msgstr "Thème installé avec succès"
534
 
535
- #: admin/class-themes-admin.php:221
536
  msgctxt "themes"
537
  msgid "Theme was deleted sucessfully."
538
  msgstr "Le thème a été supprimé"
539
 
540
- #: admin/class-themes-admin.php:224
541
  msgctxt "themes"
542
  msgid "Could not delete theme directory. Check permissions."
543
  msgstr "Impossible de supprimer le dossier du thème. Vérifier les permissions."
544
 
545
- #: admin/class-themes-admin.php:250
546
  msgctxt "themes"
547
  msgid "Please upload a valid theme file."
548
  msgstr "Veuillez télécharger un fichier de thème valide"
549
 
550
- #: admin/class-themes-admin.php:257
551
  msgctxt "themes"
552
  msgid "Could not move \"%s\" to a temporary directory."
553
  msgstr "Impossible de déplacer \"%s\" vers un dossier temporaire"
554
 
555
- #: admin/class-themes-admin.php:358 admin/class-themes-admin.php:419
556
  #: core/licensing.php:127 core/licensing.php:159
557
  msgctxt "licensing"
558
  msgid "Could not contact licensing server"
559
  msgstr "Impossible de contacter le serveur de licences"
560
 
561
- #: admin/class-themes-admin.php:364 core/licensing.php:132
562
  #: core/licensing.php:166
563
  msgctxt "licensing"
564
  msgid "License key is invalid"
565
  msgstr "La clé de licence est invalide"
566
 
567
- #: admin/class-themes-admin.php:369 core/licensing.php:333
568
  msgctxt "licensing"
569
  msgid "Could not activate license: %s."
570
  msgstr "Impossible d'activer la licence: %s."
571
 
572
- #: admin/class-themes-admin.php:382 core/licensing.php:335
573
  msgctxt "licensing"
574
  msgid "License activated"
575
  msgstr "Licence activée"
576
 
577
- #: admin/class-themes-admin.php:425
578
  msgctxt "licensing"
579
  msgid "Invalid response from server"
580
  msgstr "Invalid response from server"
581
 
582
- #: admin/class-themes-admin.php:442 core/licensing.php:353
583
  msgctxt "licensing"
584
  msgid "License deactivated"
585
  msgstr "Licence désactivée"
586
 
587
- #: admin/class-themes-admin.php:458
588
  msgctxt "themes"
589
  msgid "Activate your <a>license key</a> to use this theme."
590
  msgstr "Activer votre <a>numéro de licence</a> pour utiliser ce thème"
@@ -2027,6 +2033,14 @@ msgctxt "form-fields admin"
2027
  msgid "Field Association"
2028
  msgstr "Association de champ"
2029
 
 
 
 
 
 
 
 
 
2030
  #: admin/templates/form-fields-addoredit.tpl.php:36
2031
  msgctxt "form-fields admin"
2032
  msgid "Field Type"
@@ -2042,6 +2056,12 @@ msgctxt "form-fields admin"
2042
  msgid "Field description"
2043
  msgstr "Description du champ"
2044
 
 
 
 
 
 
 
2045
  #: admin/templates/form-fields-addoredit.tpl.php:87
2046
  msgctxt "form-fields admin"
2047
  msgid "Field-specific settings"
@@ -2186,7 +2206,7 @@ msgctxt "form-fields admin"
2186
  msgid "Preview Form"
2187
  msgstr "Formulaire précédent"
2188
 
2189
- #: admin/templates/form-fields.tpl.php:6
2190
  msgctxt "form-fields admin"
2191
  msgid "Manage Theme Tags"
2192
  msgstr "Gestion des étiquettes du thème"
@@ -2209,7 +2229,7 @@ msgstr ""
2209
  "Veuillez voir la <a>Documentation de champs de formulaire</a> pour plus de "
2210
  "détails."
2211
 
2212
- #. #-#-#-#-# WPBDM.pot (Business Directory Plugin 4.0.6) #-#-#-#-#
2213
  #. Plugin Name of the plugin/theme
2214
  #: admin/templates/header.tpl.php:4
2215
  msgid "Business Directory Plugin"
@@ -2858,7 +2878,25 @@ msgctxt "themes"
2858
  msgid "Activating license..."
2859
  msgstr "Activation de la license"
2860
 
2861
- #: admin/templates/themes.tpl.php:13
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
2862
  msgctxt "themes"
2863
  msgid ""
2864
  "<a><b>Directory Themes</b></a> are pre-made templates for the <i>Business "
@@ -2866,7 +2904,7 @@ msgid ""
2866
  "We have a number of them available for purchase <a>here</a>."
2867
  msgstr ""
2868
 
2869
- #: admin/templates/themes.tpl.php:14
2870
  msgctxt "themes"
2871
  msgid ""
2872
  "They are <strong>different</strong> than your regular WordPress theme and "
@@ -3548,13 +3586,13 @@ msgctxt "admin settings"
3548
  msgid "Enable AJAX compatibility mode?"
3549
  msgstr "Activer le mode de comptabilité AJAX ?"
3550
 
3551
- #: core/class-settings.php:179 core/class-settings.php:658
3552
  msgctxt "admin settings"
3553
  msgid "Listings"
3554
  msgstr "Annonces"
3555
 
3556
  #: core/class-settings.php:180 core/class-settings.php:330
3557
- #: core/class-settings.php:615
3558
  msgctxt "admin settings"
3559
  msgid "General Settings"
3560
  msgstr "Paramètres généraux"
@@ -3833,12 +3871,12 @@ msgctxt "admin settings"
3833
  msgid "Author"
3834
  msgstr "Auteur"
3835
 
3836
- #: core/class-settings.php:293
3837
  msgctxt "admin settings"
3838
  msgid "Date posted"
3839
  msgstr "Date d'ajout"
3840
 
3841
- #: core/class-settings.php:294
3842
  msgctxt "admin settings"
3843
  msgid "Date last modified"
3844
  msgstr "Date de dernière modification"
@@ -3949,6 +3987,16 @@ msgstr ""
3949
  "Cela affecte l'envoie des e-mails aux propriétaires des annonces via le "
3950
  "formulaire de contact ou quand leurs annonces expirent."
3951
 
 
 
 
 
 
 
 
 
 
 
3952
  #: core/class-settings.php:349
3953
  msgctxt "admin settings"
3954
  msgid "E-Mail Notifications"
@@ -4501,27 +4549,32 @@ msgctxt "admin settings"
4501
  msgid "Themes"
4502
  msgstr "Thèmes"
4503
 
4504
- #: core/class-settings.php:619
 
 
 
 
 
4505
  msgctxt "admin settings"
4506
  msgid "Theme button style"
4507
  msgstr "Boutons de thèmes"
4508
 
4509
- #: core/class-settings.php:623
4510
  msgctxt "admin settings"
4511
  msgid "Use the BD theme style for BD buttons"
4512
  msgstr "Utiliser le thème BD pour les boutons BD"
4513
 
4514
- #: core/class-settings.php:624
4515
  msgctxt "admin settings"
4516
  msgid "Use the WP theme style for BD buttons"
4517
  msgstr "Utiliser le thème WP pour les boutons BD"
4518
 
4519
- #: core/class-settings.php:631
4520
  msgctxt "admin settings"
4521
  msgid "Image"
4522
  msgstr "Image"
4523
 
4524
- #: core/class-settings.php:632
4525
  msgctxt "admin settings"
4526
  msgid ""
4527
  "Any changes to these settings will affect new listings only. Existing "
@@ -4535,52 +4588,52 @@ msgstr ""
4535
  "télécharger l'image (s) sur cette annonce, après avoir cfait les "
4536
  "modifications voulue."
4537
 
4538
- #: core/class-settings.php:633
4539
  msgctxt "admin settings"
4540
  msgid "Image Settings"
4541
  msgstr "Paraamètres des images"
4542
 
4543
- #: core/class-settings.php:634
4544
  msgctxt "admin settings"
4545
  msgid "Allow images?"
4546
  msgstr "Autoriser les images ?"
4547
 
4548
- #: core/class-settings.php:636
4549
  msgctxt "admin settings"
4550
  msgid "Min Image File Size (KB)"
4551
  msgstr "Taille minnimal des fichiers images (KB)"
4552
 
4553
- #: core/class-settings.php:637
4554
  msgctxt "admin settings"
4555
  msgid "Max Image File Size (KB)"
4556
  msgstr "Taille maximal des fichiers images (KB)"
4557
 
4558
- #: core/class-settings.php:639
4559
  msgctxt "admin settings"
4560
  msgid "Min image width (px)"
4561
  msgstr "Largeur minnimal des images (px)"
4562
 
4563
- #: core/class-settings.php:640
4564
  msgctxt "admin settings"
4565
  msgid "Min image height (px)"
4566
  msgstr "Hauteur minnimal des images (px)"
4567
 
4568
- #: core/class-settings.php:642
4569
  msgctxt "admin settings"
4570
  msgid "Max image width (px)"
4571
  msgstr "Largeur maximal des images (px)"
4572
 
4573
- #: core/class-settings.php:643
4574
  msgctxt "admin settings"
4575
  msgid "Max image height (px)"
4576
  msgstr "Hauteur maximal des images (px)"
4577
 
4578
- #: core/class-settings.php:645
4579
  msgctxt "admin settings"
4580
  msgid "Turn on thickbox/lightbox?"
4581
  msgstr "Activer thickbox/lightbox ?"
4582
 
4583
- #: core/class-settings.php:645
4584
  msgctxt "admin settings"
4585
  msgid ""
4586
  "Uncheck if it conflicts with other elements or plugins installed on your site"
@@ -4588,27 +4641,27 @@ msgstr ""
4588
  "Décochez si vela entre en conflit avec d'autres éléments ou plugins "
4589
  "installés sur votre site"
4590
 
4591
- #: core/class-settings.php:647
4592
  msgctxt "admin settings"
4593
  msgid "Thumbnails"
4594
  msgstr "Miniatures"
4595
 
4596
- #: core/class-settings.php:648
4597
  msgctxt "admin settings"
4598
  msgid "Thumbnail width (px)"
4599
  msgstr "Largeur des miniatures (en pixel)"
4600
 
4601
- #: core/class-settings.php:649
4602
  msgctxt "admin settings"
4603
  msgid "Thumbnail height (px)"
4604
  msgstr "Hauteur des miniatures (en pixel)"
4605
 
4606
- #: core/class-settings.php:652
4607
  msgctxt "admin settings"
4608
  msgid "Crop thumbnails to exact dimensions?"
4609
  msgstr "Recadrer les miniatures aux dimensions exactes ?"
4610
 
4611
- #: core/class-settings.php:655
4612
  msgctxt "admin settings"
4613
  msgid ""
4614
  "When enabled images will match exactly the dimensions above but part of the "
@@ -4623,12 +4676,12 @@ msgstr ""
4623
  "proportionnellement. Selon les images téléchargées, les miniatures peuvent "
4624
  "avoir différentes hauteurs."
4625
 
4626
- #: core/class-settings.php:661
4627
  msgctxt "admin settings"
4628
  msgid "Number of free images"
4629
  msgstr "Nombre d'images gratuites"
4630
 
4631
- #: core/class-settings.php:666
4632
  msgctxt "admin settings"
4633
  msgid ""
4634
  "For paid listing images, configure that by adding or editing a <a>Fee Plan</"
@@ -4638,17 +4691,28 @@ msgstr ""
4638
  "ou modification d'un <a>plan de frais</a> au lieu de ce paramètre, qui est "
4639
  "ignoré pour les annonces payées."
4640
 
4641
- #: core/class-settings.php:669
4642
  msgctxt "admin settings"
4643
  msgid "Use default picture for listings with no picture?"
4644
  msgstr "Utiliser l'image par défault pour les annonces sans images ?"
4645
 
4646
- #: core/class-settings.php:670
4647
  msgctxt "admin settings"
4648
  msgid "Show Thumbnail on main listings page?"
4649
  msgstr "Montrer les miniatures sur page principale des annonces ?"
4650
 
4651
- #: core/class-settings.php:726
 
 
 
 
 
 
 
 
 
 
 
4652
  msgctxt "admin settings"
4653
  msgid ""
4654
  "Could not copy the AJAX compatibility plugin \"%s\". Compatibility mode was "
@@ -4657,7 +4721,7 @@ msgstr ""
4657
  "Impossible de copier le plugin de compatibilité AJAX \"% s\". Le mode de "
4658
  "compatibilité n'a pas été activé."
4659
 
4660
- #: core/class-settings.php:734
4661
  msgctxt "admin settings"
4662
  msgid ""
4663
  "Could not activate AJAX Compatibility mode: the directory \"%s\" could not "
@@ -4666,7 +4730,7 @@ msgstr ""
4666
  "Impossible d'activer le mode de compatibilité AJAX: le répertoire \"% s \" "
4667
  "ne peux pas être créé."
4668
 
4669
- #: core/class-settings.php:743
4670
  msgctxt "admin settings"
4671
  msgid ""
4672
  "Could not remove the \"Business Directory Plugin - AJAX Compatibility Module"
@@ -4675,97 +4739,97 @@ msgstr ""
4675
  "Impossible de supprimer le \"Module de comptabilité AJAX du plugin \". "
4676
  "Veuillez supprimer le fichier \"% s \" manuellement ou désactiver le plugin."
4677
 
4678
- #: core/class-settings.php:1063
4679
  msgctxt "settings"
4680
  msgid "Deactivate License"
4681
  msgstr "Désactiver la licence"
4682
 
4683
- #: core/class-settings.php:1065
4684
  msgctxt "settings"
4685
  msgid "Deactivating license..."
4686
  msgstr "Désactivation de la licence..."
4687
 
4688
- #: core/class-settings.php:1068
4689
  msgctxt "settings"
4690
  msgid "Activate License"
4691
  msgstr "Activer la licence"
4692
 
4693
- #: core/class-settings.php:1070
4694
  msgctxt "settings"
4695
  msgid "Activating license..."
4696
  msgstr "Activation de la licence"
4697
 
4698
- #: core/class-settings.php:1093
4699
  msgctxt "admin settings"
4700
  msgid "Valid placeholders: %s"
4701
  msgstr "Espaces réservés valides:% s"
4702
 
4703
- #: core/class-settings.php:1127
4704
  msgctxt "settings email"
4705
  msgid "Click to edit e-mail"
4706
  msgstr "Cliquer pour éditer l'e-mail"
4707
 
4708
- #: core/class-settings.php:1128
4709
  msgctxt "settings email"
4710
  msgid "Click to edit"
4711
  msgstr "Cliquer pour éditer"
4712
 
4713
- #: core/class-settings.php:1141
4714
  msgctxt "settings email"
4715
  msgid "E-Mail Subject"
4716
  msgstr "Sujet de l'e-mail"
4717
 
4718
- #: core/class-settings.php:1152
4719
  msgctxt "settings email"
4720
  msgid "E-Mail Body"
4721
  msgstr "Corps de l'e-mail"
4722
 
4723
- #: core/class-settings.php:1163
4724
  msgctxt "settings email"
4725
  msgid "You can use the following placeholders:"
4726
  msgstr "Vous pouvez utiliser les paramètres suivantes:"
4727
 
4728
- #: core/class-settings.php:1186
4729
  msgctxt "settings email"
4730
  msgid "Preview e-mail"
4731
  msgstr "E-mail précédents"
4732
 
4733
- #: core/class-settings.php:1187
4734
  msgctxt "settings email"
4735
  msgid "Cancel"
4736
  msgstr "Annuler"
4737
 
4738
- #: core/class-settings.php:1188
4739
  msgctxt "settings email"
4740
  msgid "Save Changes"
4741
  msgstr "Sauvegarder les changements"
4742
 
4743
- #: core/class-settings.php:1207
4744
  msgctxt "settings email"
4745
  msgid "Site title"
4746
  msgstr "Titre du site"
4747
 
4748
- #: core/class-settings.php:1210
4749
  msgctxt "settings email"
4750
  msgid "Site title (with link)"
4751
  msgstr "Titre du site (avec lien)"
4752
 
4753
- #: core/class-settings.php:1213
4754
  msgctxt "settings email"
4755
  msgid "Site address (with link)"
4756
  msgstr "Adresse du site (avec lien)"
4757
 
4758
- #: core/class-settings.php:1216
4759
  msgctxt "settings email"
4760
  msgid "Directory URL (with link)"
4761
  msgstr "Annuaire des URL (avec lien)"
4762
 
4763
- #: core/class-settings.php:1219
4764
  msgctxt "settings email"
4765
  msgid "Current date"
4766
  msgstr "Date actuelle"
4767
 
4768
- #: core/class-settings.php:1222
4769
  msgctxt "settings email"
4770
  msgid "Current time"
4771
  msgstr "Heure actuelle"
4
  msgstr ""
5
  "Project-Id-Version: Business Directory Plugin 3.6\n"
6
  "Report-Msgid-Bugs-To: http://wordpress.org/tag/business-directory-plugin\n"
7
+ "POT-Creation-Date: 2016-06-21 22:32:39+00:00\n"
8
  "PO-Revision-Date: 2016-02-24 15:34-0500\n"
9
  "Last-Translator: BD Team <support@businessdirectoryplugin.com>\n"
10
  "Language-Team: BD Team <support@businessdirectoryplugin.com>\n"
170
  msgid "Invalid e-mail address."
171
  msgstr "Adresse e-mail non valide"
172
 
173
+ #: admin/class-admin.php:219
174
  msgctxt "admin menu"
175
  msgid "Business Directory Admin"
176
  msgstr "Administrateur de l'Annuaire Professionnel"
177
 
178
+ #: admin/class-admin.php:220
179
+ #, fuzzy
180
+ msgctxt "admin menu"
181
+ msgid "Dir. Admin"
182
+ msgstr "Administrateur de l'Annuaire"
183
+
184
+ #: admin/class-admin.php:220
185
  msgctxt "admin menu"
186
  msgid "Directory Admin"
187
  msgstr "Administrateur de l'Annuaire"
188
 
189
+ #: admin/class-admin.php:226 admin/class-admin.php:227
190
  msgctxt "admin menu"
191
  msgid "Add New Listing"
192
  msgstr "Ajoutez une nouvelle annonce"
193
 
194
+ #: admin/class-admin.php:232 admin/class-admin.php:233
195
  msgctxt "admin menu"
196
  msgid "Manage Options"
197
  msgstr "Gestion des options"
198
 
199
+ #: admin/class-admin.php:238 admin/class-admin.php:239
200
  msgctxt "admin menu"
201
  msgid "Manage Fees"
202
  msgstr "Gestion des frais"
203
 
204
+ #: admin/class-admin.php:244 admin/class-admin.php:245
205
  msgctxt "admin menu"
206
  msgid "Manage Form Fields"
207
  msgstr "Gestion des champs"
208
 
209
+ #: admin/class-admin.php:250 admin/class-admin.php:251
210
  msgctxt "admin menu"
211
  msgid "Listings"
212
  msgstr "Listes"
213
 
214
+ #: admin/class-admin.php:265 admin/class-admin.php:266
215
  msgctxt "admin menu"
216
  msgid "CSV Import"
217
  msgstr "Importation CSV"
218
 
219
+ #: admin/class-admin.php:271 admin/class-admin.php:272
220
  msgctxt "admin menu"
221
  msgid "CSV Export"
222
  msgstr "Exportation CSV"
223
 
224
+ #: admin/class-admin.php:277 admin/class-admin.php:278
225
  msgctxt "admin menu"
226
  msgid "Debug"
227
  msgstr "Déboguer"
228
 
229
+ #: admin/class-admin.php:287
230
  msgctxt "admin menu"
231
  msgid "Main Menu"
232
  msgstr "Menu principal"
233
 
234
+ #: admin/class-admin.php:298
235
  msgctxt "admin menu"
236
  msgid "Uninstall Business Directory Plugin"
237
  msgstr "Désinstaller le Plugin Annuaire Professionnel"
238
 
239
+ #: admin/class-admin.php:299
240
  msgctxt "admin menu"
241
  msgid "Uninstall"
242
  msgstr "Désinstaller"
243
 
244
+ #: admin/class-admin.php:413
245
  #: admin/templates/listing-metabox-categories.tpl.php:69
246
  msgctxt "admin infometabox"
247
  msgid "never"
248
  msgstr "jamais"
249
 
250
+ #: admin/class-admin.php:507
251
  msgctxt "admin"
252
  msgid "Dismiss this notice."
253
  msgstr ""
254
 
255
+ #: admin/class-admin.php:535
256
  msgctxt "admin"
257
  msgid "The listing has been published."
258
  msgid_plural "The listings have been published."
259
  msgstr[0] "L'annonce a été publiée."
260
  msgstr[1] "Les annonces ont été publiées."
261
 
262
+ #: admin/class-admin.php:553
263
  msgctxt "admin"
264
  msgid "The listing status has been set as paid."
265
  msgid_plural "The listings status has been set as paid."
266
  msgstr[0] "Le statut de l'annonce a été défini comme étant payée."
267
  msgstr[1] "Le statut des annocnes a été défini comme étant payées."
268
 
269
+ #: admin/class-admin.php:559
270
  msgctxt "admin"
271
  msgid ""
272
  "Only invoices containing non-recurring items were marked as paid. Please "
278
  msgstr[0] ""
279
  msgstr[1] ""
280
 
281
+ #: admin/class-admin.php:578
282
  msgctxt "admin"
283
  msgid "The listing has been modified."
284
  msgid_plural "The listings have been modified."
285
  msgstr[0] "L'annonce a été modifiée."
286
  msgstr[1] "Les annonces ont été modifiées."
287
 
288
+ #: admin/class-admin.php:591
289
  msgctxt "admin"
290
  msgid "The listing has been upgraded."
291
  msgid_plural "The listings have been upgraded."
292
  msgstr[0] "L'annonce a été mise à jour."
293
  msgstr[1] "Les annonces ont été mise à jour."
294
 
295
+ #: admin/class-admin.php:603
296
  msgctxt "admin"
297
  msgid "The listing has been downgraded."
298
  msgid_plural "The listings have been downgraded."
299
  msgstr[0] "L'annonce a été rétrogradée."
300
  msgstr[1] "Les annonces ont été rétrogradées."
301
 
302
+ #: admin/class-admin.php:614
303
  msgctxt "admin payments"
304
  msgid ""
305
  "The payment status was not changed. Recurring payments can't be manually "
307
  "went through."
308
  msgstr ""
309
 
310
+ #: admin/class-admin.php:619
311
  msgctxt "admin"
312
  msgid "The transaction has been approved."
313
  msgstr "La transaction a été approuvée."
314
 
315
+ #: admin/class-admin.php:629
316
  msgctxt "admin"
317
  msgid "The transaction has been rejected."
318
  msgstr "La transaction a été rejetée."
319
 
320
+ #: admin/class-admin.php:635
321
  msgctxt "admin"
322
  msgid "The fee was successfully assigned."
323
  msgstr "Les frais ont bien été assignés."
324
 
325
+ #: admin/class-admin.php:644
326
  msgctxt "admin"
327
  msgid "Listing was renewed."
328
  msgid_plural "Listings were renewed."
329
  msgstr[0] "L'annonce a été renouvelée."
330
  msgstr[1] "Les annonces ont été renouvelées."
331
 
332
+ #: admin/class-admin.php:651
333
  msgctxt "admin"
334
  msgid "Renewal email sent."
335
  msgstr "Email de renouvellement envoyé"
336
 
337
+ #: admin/class-admin.php:685
338
  msgctxt "admin category id"
339
  msgid "ID"
340
  msgstr "ID"
341
 
342
+ #: admin/class-admin.php:687 admin/class-admin.php:693
343
  msgctxt "admin"
344
  msgid "Listing Count"
345
  msgstr "Compteur d'annonces"
346
 
347
+ #: admin/class-admin.php:802
348
  msgctxt "admin"
349
  msgid ""
350
  "<b>Business Directory Plugin</b> requires fields with the following "
353
  "<b>Plugin d'Annuaire Professionnel</b> requiert des champs avec les "
354
  "associations suivantes pour marcher correctement: <b>%s</b>"
355
 
356
+ #: admin/class-admin.php:804
357
  msgctxt "admin"
358
  msgid ""
359
  "<b>Business Directory Plugin</b> requires a field with a <b>%s</b> "
362
  "<b>Plugin d'Annuaire Professionnel</b> requiert un champ avec un <b>%s</b> "
363
  "association en ordre pour marcher correctement."
364
 
365
+ #: admin/class-admin.php:808
366
  msgctxt "admin"
367
  msgid ""
368
  "You can create these custom fields by yourself inside \"Manage Form Fields\" "
371
  "Vous pouvez créer ces champs personnalisés pas vous-mêmes dans \"Gestion des "
372
  "Champs\" ou laissez le plugin le faire pour vous automatiquement."
373
 
374
+ #: admin/class-admin.php:812
375
  msgctxt "admin"
376
  msgid "Go to \"Manage Form Fields\""
377
  msgstr "Aller à \"Gestion des Champs\""
378
 
379
+ #: admin/class-admin.php:815
380
  msgctxt "admin"
381
  msgid "Create these required fields for me"
382
  msgstr "Créer ces champs obligatoires pour moi"
383
 
384
+ #: admin/class-admin.php:824
385
  msgctxt "admin"
386
  msgid ""
387
  "<b>Business Directory Plugin</b> requires a page with the "
390
  "<b>Business Directory Plugin</b> requiert une page avec le code "
391
  "d'activation <tt>[businessdirectory]</tt> pour marcher correctement."
392
 
393
+ #: admin/class-admin.php:826
394
  msgctxt "admin"
395
  msgid ""
396
  "You can create this page by yourself or let Business Directory do this for "
399
  "Vous pouvez créer cette page par vous-mêmes ou laisser le plugin la faire "
400
  "pour vous automatiquement."
401
 
402
+ #: admin/class-admin.php:830
403
  msgctxt "admin"
404
  msgid "Create required pages for me"
405
  msgstr "Créer les pages requises pour moi."
406
 
407
+ #: admin/class-admin.php:870
408
  msgctxt "admin compat"
409
  msgid "Installed: %s"
410
  msgstr "Installé: %s"
411
 
412
+ #: admin/class-admin.php:870
413
  msgctxt "admin compat"
414
  msgid "N/A"
415
  msgstr "N/A"
416
 
417
+ #: admin/class-admin.php:873
418
  msgctxt "admin compat"
419
  msgid "Required: %s"
420
  msgstr "Requis: %s"
421
 
422
+ #: admin/class-admin.php:885
423
  msgctxt "admin compat"
424
  msgid ""
425
  "Business Directory has detected some incompatible premium module versions "
428
  "Le plugin a détecté une/des modules incomptatible de la version premium "
429
  "installé."
430
 
431
+ #: admin/class-admin.php:887
432
  msgctxt "admin compat"
433
  msgid ""
434
  "Please upgrade to the required versions indicated below to make sure "
437
  "Veuillez mettre à jour vers la version requise, indiquée ci-dessous, pour "
438
  "assurer le bon fonctionnement des fonctions. "
439
 
440
+ #: admin/class-admin.php:907
441
  msgctxt "admin"
442
  msgid ""
443
  "We noticed you want your Business Directory users to register before posting "
466
  msgid "There are no images currently attached to the listing."
467
  msgstr "Il n'y a aucune image attaché à cette annonce."
468
 
469
+ #: admin/class-themes-admin.php:47
470
  msgctxt "themes"
471
  msgid "Directory Themes"
472
  msgstr "Catégories de l'annuaire"
473
 
474
+ #: admin/class-themes-admin.php:48
475
  #, fuzzy
476
  msgctxt "themes"
477
  msgid "Directory Themes %s"
478
  msgstr "Catégories de l'annuaire"
479
 
480
+ #: admin/class-themes-admin.php:94
481
  msgctxt "admin themes"
482
  msgid ""
483
  "Business Directory Plugin - Your template overrides need to be reviewed!"
484
  msgstr ""
485
 
486
+ #: admin/class-themes-admin.php:96
487
  msgctxt "admin themes"
488
  msgid ""
489
  "Starting with version 4.0, Business Directory is using a new theming system "
490
  "that is not compatible with the templates used in previous versions."
491
  msgstr ""
492
 
493
+ #: admin/class-themes-admin.php:98
494
  msgctxt "admin themes"
495
  msgid ""
496
  "Because of this, your template overrides below have been disabled. You "
498
  "templates."
499
  msgstr ""
500
 
501
+ #: admin/class-themes-admin.php:127
502
  msgctxt "admin themes"
503
  msgid ""
504
  "You need to <a>activate your theme's license key</a> before you can activate "
505
  "the theme. <a>Click here</a> to do that."
506
  msgstr ""
507
 
508
+ #: admin/class-themes-admin.php:155
509
  msgctxt "themes"
510
  msgid "Could not change the active theme to \"%s\"."
511
  msgstr "Vous ne pouvez pas changer le thème actif pour \"%s\""
512
 
513
+ #: admin/class-themes-admin.php:202
514
  msgctxt "themes"
515
  msgid "Active theme changed to \"%s\"."
516
  msgstr "Thème actuel modifié vers \"%s\"."
517
 
518
+ #: admin/class-themes-admin.php:205
519
  msgctxt "themes"
520
  msgid ""
521
  "%s requires that you tag your existing fields to match some places we want "
522
  "to put your data on the theme. Below are fields we think are missing."
523
  msgstr ""
524
 
525
+ #: admin/class-themes-admin.php:214
526
  #, fuzzy
527
  msgctxt "themes"
528
  msgid "Map My Fields"
529
  msgstr "Gestion des champs"
530
 
531
+ #: admin/class-themes-admin.php:221
532
  msgctxt "themes"
533
  msgid "Suggested fields created successfully."
534
  msgstr "Champs créés avec succès."
535
 
536
+ #: admin/class-themes-admin.php:224
537
  msgctxt "themes"
538
  msgid "Theme installed successfully."
539
  msgstr "Thème installé avec succès"
540
 
541
+ #: admin/class-themes-admin.php:227
542
  msgctxt "themes"
543
  msgid "Theme was deleted sucessfully."
544
  msgstr "Le thème a été supprimé"
545
 
546
+ #: admin/class-themes-admin.php:230
547
  msgctxt "themes"
548
  msgid "Could not delete theme directory. Check permissions."
549
  msgstr "Impossible de supprimer le dossier du thème. Vérifier les permissions."
550
 
551
+ #: admin/class-themes-admin.php:256
552
  msgctxt "themes"
553
  msgid "Please upload a valid theme file."
554
  msgstr "Veuillez télécharger un fichier de thème valide"
555
 
556
+ #: admin/class-themes-admin.php:263
557
  msgctxt "themes"
558
  msgid "Could not move \"%s\" to a temporary directory."
559
  msgstr "Impossible de déplacer \"%s\" vers un dossier temporaire"
560
 
561
+ #: admin/class-themes-admin.php:364 admin/class-themes-admin.php:425
562
  #: core/licensing.php:127 core/licensing.php:159
563
  msgctxt "licensing"
564
  msgid "Could not contact licensing server"
565
  msgstr "Impossible de contacter le serveur de licences"
566
 
567
+ #: admin/class-themes-admin.php:370 core/licensing.php:132
568
  #: core/licensing.php:166
569
  msgctxt "licensing"
570
  msgid "License key is invalid"
571
  msgstr "La clé de licence est invalide"
572
 
573
+ #: admin/class-themes-admin.php:375 core/licensing.php:333
574
  msgctxt "licensing"
575
  msgid "Could not activate license: %s."
576
  msgstr "Impossible d'activer la licence: %s."
577
 
578
+ #: admin/class-themes-admin.php:388 core/licensing.php:335
579
  msgctxt "licensing"
580
  msgid "License activated"
581
  msgstr "Licence activée"
582
 
583
+ #: admin/class-themes-admin.php:431
584
  msgctxt "licensing"
585
  msgid "Invalid response from server"
586
  msgstr "Invalid response from server"
587
 
588
+ #: admin/class-themes-admin.php:448 core/licensing.php:353
589
  msgctxt "licensing"
590
  msgid "License deactivated"
591
  msgstr "Licence désactivée"
592
 
593
+ #: admin/class-themes-admin.php:464
594
  msgctxt "themes"
595
  msgid "Activate your <a>license key</a> to use this theme."
596
  msgstr "Activer votre <a>numéro de licence</a> pour utiliser ce thème"
2033
  msgid "Field Association"
2034
  msgstr "Association de champ"
2035
 
2036
+ #: admin/templates/form-fields-addoredit.tpl.php:14
2037
+ #: admin/templates/form-fields-addoredit.tpl.php:36
2038
+ #: admin/templates/form-fields-addoredit.tpl.php:60
2039
+ #, fuzzy
2040
+ msgctxt "form-fields admin"
2041
+ msgid "required"
2042
+ msgstr "Requis"
2043
+
2044
  #: admin/templates/form-fields-addoredit.tpl.php:36
2045
  msgctxt "form-fields admin"
2046
  msgid "Field Type"
2056
  msgid "Field description"
2057
  msgstr "Description du champ"
2058
 
2059
+ #: admin/templates/form-fields-addoredit.tpl.php:70
2060
+ #, fuzzy
2061
+ msgctxt "form-fields admin"
2062
+ msgid "optional"
2063
+ msgstr "Optionnel"
2064
+
2065
  #: admin/templates/form-fields-addoredit.tpl.php:87
2066
  msgctxt "form-fields admin"
2067
  msgid "Field-specific settings"
2206
  msgid "Preview Form"
2207
  msgstr "Formulaire précédent"
2208
 
2209
+ #: admin/templates/form-fields.tpl.php:6 admin/templates/themes.tpl.php:4
2210
  msgctxt "form-fields admin"
2211
  msgid "Manage Theme Tags"
2212
  msgstr "Gestion des étiquettes du thème"
2229
  "Veuillez voir la <a>Documentation de champs de formulaire</a> pour plus de "
2230
  "détails."
2231
 
2232
+ #. #-#-#-#-# WPBDM.pot (Business Directory Plugin 4.0.7) #-#-#-#-#
2233
  #. Plugin Name of the plugin/theme
2234
  #: admin/templates/header.tpl.php:4
2235
  msgid "Business Directory Plugin"
2878
  msgid "Activating license..."
2879
  msgstr "Activation de la license"
2880
 
2881
+ #: admin/templates/themes-tabs.tpl.php:6
2882
+ #, fuzzy
2883
+ msgctxt "admin themes"
2884
+ msgid "Available Themes"
2885
+ msgstr "Thèmes"
2886
+
2887
+ #: admin/templates/themes-tabs.tpl.php:7
2888
+ #, fuzzy
2889
+ msgctxt "admin themes"
2890
+ msgid "Licenses"
2891
+ msgstr "Licences"
2892
+
2893
+ #: admin/templates/themes.tpl.php:5
2894
+ #, fuzzy
2895
+ msgctxt "themes"
2896
+ msgid "Settings"
2897
+ msgstr "Paramètres"
2898
+
2899
+ #: admin/templates/themes.tpl.php:15
2900
  msgctxt "themes"
2901
  msgid ""
2902
  "<a><b>Directory Themes</b></a> are pre-made templates for the <i>Business "
2904
  "We have a number of them available for purchase <a>here</a>."
2905
  msgstr ""
2906
 
2907
+ #: admin/templates/themes.tpl.php:16
2908
  msgctxt "themes"
2909
  msgid ""
2910
  "They are <strong>different</strong> than your regular WordPress theme and "
3586
  msgid "Enable AJAX compatibility mode?"
3587
  msgstr "Activer le mode de comptabilité AJAX ?"
3588
 
3589
+ #: core/class-settings.php:179 core/class-settings.php:660
3590
  msgctxt "admin settings"
3591
  msgid "Listings"
3592
  msgstr "Annonces"
3593
 
3594
  #: core/class-settings.php:180 core/class-settings.php:330
3595
+ #: core/class-settings.php:617
3596
  msgctxt "admin settings"
3597
  msgid "General Settings"
3598
  msgstr "Paramètres généraux"
3871
  msgid "Author"
3872
  msgstr "Auteur"
3873
 
3874
+ #: core/class-settings.php:293 core/class-settings.php:703
3875
  msgctxt "admin settings"
3876
  msgid "Date posted"
3877
  msgstr "Date d'ajout"
3878
 
3879
+ #: core/class-settings.php:294 core/class-settings.php:704
3880
  msgctxt "admin settings"
3881
  msgid "Date last modified"
3882
  msgstr "Date de dernière modification"
3987
  "Cela affecte l'envoie des e-mails aux propriétaires des annonces via le "
3988
  "formulaire de contact ou quand leurs annonces expirent."
3989
 
3990
+ #: core/class-settings.php:344
3991
+ msgctxt "admin settings"
3992
+ msgid "Try listing's email field first, then author's email."
3993
+ msgstr ""
3994
+
3995
+ #: core/class-settings.php:345
3996
+ msgctxt "admin settings"
3997
+ msgid "Try author's email first and then listing's email field."
3998
+ msgstr ""
3999
+
4000
  #: core/class-settings.php:349
4001
  msgctxt "admin settings"
4002
  msgid "E-Mail Notifications"
4549
  msgid "Themes"
4550
  msgstr "Thèmes"
4551
 
4552
+ #: core/class-settings.php:616
4553
+ msgctxt "admin settings"
4554
+ msgid "You can manage your themes on <a>Directory Themes</a>."
4555
+ msgstr ""
4556
+
4557
+ #: core/class-settings.php:621
4558
  msgctxt "admin settings"
4559
  msgid "Theme button style"
4560
  msgstr "Boutons de thèmes"
4561
 
4562
+ #: core/class-settings.php:625
4563
  msgctxt "admin settings"
4564
  msgid "Use the BD theme style for BD buttons"
4565
  msgstr "Utiliser le thème BD pour les boutons BD"
4566
 
4567
+ #: core/class-settings.php:626
4568
  msgctxt "admin settings"
4569
  msgid "Use the WP theme style for BD buttons"
4570
  msgstr "Utiliser le thème WP pour les boutons BD"
4571
 
4572
+ #: core/class-settings.php:633
4573
  msgctxt "admin settings"
4574
  msgid "Image"
4575
  msgstr "Image"
4576
 
4577
+ #: core/class-settings.php:634
4578
  msgctxt "admin settings"
4579
  msgid ""
4580
  "Any changes to these settings will affect new listings only. Existing "
4588
  "télécharger l'image (s) sur cette annonce, après avoir cfait les "
4589
  "modifications voulue."
4590
 
4591
+ #: core/class-settings.php:635
4592
  msgctxt "admin settings"
4593
  msgid "Image Settings"
4594
  msgstr "Paraamètres des images"
4595
 
4596
+ #: core/class-settings.php:636
4597
  msgctxt "admin settings"
4598
  msgid "Allow images?"
4599
  msgstr "Autoriser les images ?"
4600
 
4601
+ #: core/class-settings.php:638
4602
  msgctxt "admin settings"
4603
  msgid "Min Image File Size (KB)"
4604
  msgstr "Taille minnimal des fichiers images (KB)"
4605
 
4606
+ #: core/class-settings.php:639
4607
  msgctxt "admin settings"
4608
  msgid "Max Image File Size (KB)"
4609
  msgstr "Taille maximal des fichiers images (KB)"
4610
 
4611
+ #: core/class-settings.php:641
4612
  msgctxt "admin settings"
4613
  msgid "Min image width (px)"
4614
  msgstr "Largeur minnimal des images (px)"
4615
 
4616
+ #: core/class-settings.php:642
4617
  msgctxt "admin settings"
4618
  msgid "Min image height (px)"
4619
  msgstr "Hauteur minnimal des images (px)"
4620
 
4621
+ #: core/class-settings.php:644
4622
  msgctxt "admin settings"
4623
  msgid "Max image width (px)"
4624
  msgstr "Largeur maximal des images (px)"
4625
 
4626
+ #: core/class-settings.php:645
4627
  msgctxt "admin settings"
4628
  msgid "Max image height (px)"
4629
  msgstr "Hauteur maximal des images (px)"
4630
 
4631
+ #: core/class-settings.php:647
4632
  msgctxt "admin settings"
4633
  msgid "Turn on thickbox/lightbox?"
4634
  msgstr "Activer thickbox/lightbox ?"
4635
 
4636
+ #: core/class-settings.php:647
4637
  msgctxt "admin settings"
4638
  msgid ""
4639
  "Uncheck if it conflicts with other elements or plugins installed on your site"
4641
  "Décochez si vela entre en conflit avec d'autres éléments ou plugins "
4642
  "installés sur votre site"
4643
 
4644
+ #: core/class-settings.php:649
4645
  msgctxt "admin settings"
4646
  msgid "Thumbnails"
4647
  msgstr "Miniatures"
4648
 
4649
+ #: core/class-settings.php:650
4650
  msgctxt "admin settings"
4651
  msgid "Thumbnail width (px)"
4652
  msgstr "Largeur des miniatures (en pixel)"
4653
 
4654
+ #: core/class-settings.php:651
4655
  msgctxt "admin settings"
4656
  msgid "Thumbnail height (px)"
4657
  msgstr "Hauteur des miniatures (en pixel)"
4658
 
4659
+ #: core/class-settings.php:654
4660
  msgctxt "admin settings"
4661
  msgid "Crop thumbnails to exact dimensions?"
4662
  msgstr "Recadrer les miniatures aux dimensions exactes ?"
4663
 
4664
+ #: core/class-settings.php:657
4665
  msgctxt "admin settings"
4666
  msgid ""
4667
  "When enabled images will match exactly the dimensions above but part of the "
4676
  "proportionnellement. Selon les images téléchargées, les miniatures peuvent "
4677
  "avoir différentes hauteurs."
4678
 
4679
+ #: core/class-settings.php:663
4680
  msgctxt "admin settings"
4681
  msgid "Number of free images"
4682
  msgstr "Nombre d'images gratuites"
4683
 
4684
+ #: core/class-settings.php:668
4685
  msgctxt "admin settings"
4686
  msgid ""
4687
  "For paid listing images, configure that by adding or editing a <a>Fee Plan</"
4691
  "ou modification d'un <a>plan de frais</a> au lieu de ce paramètre, qui est "
4692
  "ignoré pour les annonces payées."
4693
 
4694
+ #: core/class-settings.php:671
4695
  msgctxt "admin settings"
4696
  msgid "Use default picture for listings with no picture?"
4697
  msgstr "Utiliser l'image par défault pour les annonces sans images ?"
4698
 
4699
+ #: core/class-settings.php:672
4700
  msgctxt "admin settings"
4701
  msgid "Show Thumbnail on main listings page?"
4702
  msgstr "Montrer les miniatures sur page principale des annonces ?"
4703
 
4704
+ #: core/class-settings.php:701
4705
+ msgctxt "admin settings"
4706
+ msgid "User"
4707
+ msgstr ""
4708
+
4709
+ #: core/class-settings.php:702
4710
+ #, fuzzy
4711
+ msgctxt "admin settings"
4712
+ msgid "User registration date"
4713
+ msgstr "Date d'expiration de l'annonce"
4714
+
4715
+ #: core/class-settings.php:728
4716
  msgctxt "admin settings"
4717
  msgid ""
4718
  "Could not copy the AJAX compatibility plugin \"%s\". Compatibility mode was "
4721
  "Impossible de copier le plugin de compatibilité AJAX \"% s\". Le mode de "
4722
  "compatibilité n'a pas été activé."
4723
 
4724
+ #: core/class-settings.php:736
4725
  msgctxt "admin settings"
4726
  msgid ""
4727
  "Could not activate AJAX Compatibility mode: the directory \"%s\" could not "
4730
  "Impossible d'activer le mode de compatibilité AJAX: le répertoire \"% s \" "
4731
  "ne peux pas être créé."
4732
 
4733
+ #: core/class-settings.php:745
4734
  msgctxt "admin settings"
4735
  msgid ""
4736
  "Could not remove the \"Business Directory Plugin - AJAX Compatibility Module"
4739
  "Impossible de supprimer le \"Module de comptabilité AJAX du plugin \". "
4740
  "Veuillez supprimer le fichier \"% s \" manuellement ou désactiver le plugin."
4741
 
4742
+ #: core/class-settings.php:1065
4743
  msgctxt "settings"
4744
  msgid "Deactivate License"
4745
  msgstr "Désactiver la licence"
4746
 
4747
+ #: core/class-settings.php:1067
4748
  msgctxt "settings"
4749
  msgid "Deactivating license..."
4750
  msgstr "Désactivation de la licence..."
4751
 
4752
+ #: core/class-settings.php:1070
4753
  msgctxt "settings"
4754
  msgid "Activate License"
4755
  msgstr "Activer la licence"
4756
 
4757
+ #: core/class-settings.php:1072
4758
  msgctxt "settings"
4759
  msgid "Activating license..."
4760
  msgstr "Activation de la licence"
4761
 
4762
+ #: core/class-settings.php:1095
4763
  msgctxt "admin settings"
4764
  msgid "Valid placeholders: %s"
4765
  msgstr "Espaces réservés valides:% s"
4766
 
4767
+ #: core/class-settings.php:1129
4768
  msgctxt "settings email"
4769
  msgid "Click to edit e-mail"
4770
  msgstr "Cliquer pour éditer l'e-mail"
4771
 
4772
+ #: core/class-settings.php:1130
4773
  msgctxt "settings email"
4774
  msgid "Click to edit"
4775
  msgstr "Cliquer pour éditer"
4776
 
4777
+ #: core/class-settings.php:1143
4778
  msgctxt "settings email"
4779
  msgid "E-Mail Subject"
4780
  msgstr "Sujet de l'e-mail"
4781
 
4782
+ #: core/class-settings.php:1154
4783
  msgctxt "settings email"
4784
  msgid "E-Mail Body"
4785
  msgstr "Corps de l'e-mail"
4786
 
4787
+ #: core/class-settings.php:1165
4788
  msgctxt "settings email"
4789
  msgid "You can use the following placeholders:"
4790
  msgstr "Vous pouvez utiliser les paramètres suivantes:"
4791
 
4792
+ #: core/class-settings.php:1188
4793
  msgctxt "settings email"
4794
  msgid "Preview e-mail"
4795
  msgstr "E-mail précédents"
4796
 
4797
+ #: core/class-settings.php:1189
4798
  msgctxt "settings email"
4799
  msgid "Cancel"
4800
  msgstr "Annuler"
4801
 
4802
+ #: core/class-settings.php:1190
4803
  msgctxt "settings email"
4804
  msgid "Save Changes"
4805
  msgstr "Sauvegarder les changements"
4806
 
4807
+ #: core/class-settings.php:1209
4808
  msgctxt "settings email"
4809
  msgid "Site title"
4810
  msgstr "Titre du site"
4811
 
4812
+ #: core/class-settings.php:1212
4813
  msgctxt "settings email"
4814
  msgid "Site title (with link)"
4815
  msgstr "Titre du site (avec lien)"
4816
 
4817
+ #: core/class-settings.php:1215
4818
  msgctxt "settings email"
4819
  msgid "Site address (with link)"
4820
  msgstr "Adresse du site (avec lien)"
4821
 
4822
+ #: core/class-settings.php:1218
4823
  msgctxt "settings email"
4824
  msgid "Directory URL (with link)"
4825
  msgstr "Annuaire des URL (avec lien)"
4826
 
4827
+ #: core/class-settings.php:1221
4828
  msgctxt "settings email"
4829
  msgid "Current date"
4830
  msgstr "Date actuelle"
4831
 
4832
+ #: core/class-settings.php:1224
4833
  msgctxt "settings email"
4834
  msgid "Current time"
4835
  msgstr "Heure actuelle"
languages/WPBDM.pot CHANGED
@@ -2,9 +2,9 @@
2
  # This file is distributed under the same license as the Business Directory Plugin package.
3
  msgid ""
4
  msgstr ""
5
- "Project-Id-Version: Business Directory Plugin 4.0.6\n"
6
  "Report-Msgid-Bugs-To: http://wordpress.org/tag/business-directory-plugin\n"
7
- "POT-Creation-Date: 2016-06-14 20:52:18+00:00\n"
8
  "MIME-Version: 1.0\n"
9
  "Content-Type: text/plain; charset=UTF-8\n"
10
  "Content-Transfer-Encoding: 8bit\n"
@@ -159,97 +159,102 @@ msgctxt "drip pointer"
159
  msgid "Invalid e-mail address."
160
  msgstr ""
161
 
162
- #: admin/class-admin.php:216
163
  msgctxt "admin menu"
164
  msgid "Business Directory Admin"
165
  msgstr ""
166
 
167
- #: admin/class-admin.php:217
 
 
 
 
 
168
  msgctxt "admin menu"
169
  msgid "Directory Admin"
170
  msgstr ""
171
 
172
- #: admin/class-admin.php:223 admin/class-admin.php:224
173
  msgctxt "admin menu"
174
  msgid "Add New Listing"
175
  msgstr ""
176
 
177
- #: admin/class-admin.php:229 admin/class-admin.php:230
178
  msgctxt "admin menu"
179
  msgid "Manage Options"
180
  msgstr ""
181
 
182
- #: admin/class-admin.php:235 admin/class-admin.php:236
183
  msgctxt "admin menu"
184
  msgid "Manage Fees"
185
  msgstr ""
186
 
187
- #: admin/class-admin.php:241 admin/class-admin.php:242
188
  msgctxt "admin menu"
189
  msgid "Manage Form Fields"
190
  msgstr ""
191
 
192
- #: admin/class-admin.php:247 admin/class-admin.php:248
193
  msgctxt "admin menu"
194
  msgid "Listings"
195
  msgstr ""
196
 
197
- #: admin/class-admin.php:262 admin/class-admin.php:263
198
  msgctxt "admin menu"
199
  msgid "CSV Import"
200
  msgstr ""
201
 
202
- #: admin/class-admin.php:268 admin/class-admin.php:269
203
  msgctxt "admin menu"
204
  msgid "CSV Export"
205
  msgstr ""
206
 
207
- #: admin/class-admin.php:274 admin/class-admin.php:275
208
  msgctxt "admin menu"
209
  msgid "Debug"
210
  msgstr ""
211
 
212
- #: admin/class-admin.php:284
213
  msgctxt "admin menu"
214
  msgid "Main Menu"
215
  msgstr ""
216
 
217
- #: admin/class-admin.php:295
218
  msgctxt "admin menu"
219
  msgid "Uninstall Business Directory Plugin"
220
  msgstr ""
221
 
222
- #: admin/class-admin.php:296
223
  msgctxt "admin menu"
224
  msgid "Uninstall"
225
  msgstr ""
226
 
227
- #: admin/class-admin.php:410
228
  #: admin/templates/listing-metabox-categories.tpl.php:69
229
  msgctxt "admin infometabox"
230
  msgid "never"
231
  msgstr ""
232
 
233
- #: admin/class-admin.php:504
234
  msgctxt "admin"
235
  msgid "Dismiss this notice."
236
  msgstr ""
237
 
238
- #: admin/class-admin.php:532
239
  msgctxt "admin"
240
  msgid "The listing has been published."
241
  msgid_plural "The listings have been published."
242
  msgstr[0] ""
243
  msgstr[1] ""
244
 
245
- #: admin/class-admin.php:550
246
  msgctxt "admin"
247
  msgid "The listing status has been set as paid."
248
  msgid_plural "The listings status has been set as paid."
249
  msgstr[0] ""
250
  msgstr[1] ""
251
 
252
- #: admin/class-admin.php:556
253
  msgctxt "admin"
254
  msgid ""
255
  "Only invoices containing non-recurring items were marked as paid. Please "
@@ -261,28 +266,28 @@ msgid_plural ""
261
  msgstr[0] ""
262
  msgstr[1] ""
263
 
264
- #: admin/class-admin.php:575
265
  msgctxt "admin"
266
  msgid "The listing has been modified."
267
  msgid_plural "The listings have been modified."
268
  msgstr[0] ""
269
  msgstr[1] ""
270
 
271
- #: admin/class-admin.php:588
272
  msgctxt "admin"
273
  msgid "The listing has been upgraded."
274
  msgid_plural "The listings have been upgraded."
275
  msgstr[0] ""
276
  msgstr[1] ""
277
 
278
- #: admin/class-admin.php:600
279
  msgctxt "admin"
280
  msgid "The listing has been downgraded."
281
  msgid_plural "The listings have been downgraded."
282
  msgstr[0] ""
283
  msgstr[1] ""
284
 
285
- #: admin/class-admin.php:611
286
  msgctxt "admin payments"
287
  msgid ""
288
  "The payment status was not changed. Recurring payments can't be manually "
@@ -290,123 +295,123 @@ msgid ""
290
  "went through."
291
  msgstr ""
292
 
293
- #: admin/class-admin.php:616
294
  msgctxt "admin"
295
  msgid "The transaction has been approved."
296
  msgstr ""
297
 
298
- #: admin/class-admin.php:626
299
  msgctxt "admin"
300
  msgid "The transaction has been rejected."
301
  msgstr ""
302
 
303
- #: admin/class-admin.php:632
304
  msgctxt "admin"
305
  msgid "The fee was successfully assigned."
306
  msgstr ""
307
 
308
- #: admin/class-admin.php:641
309
  msgctxt "admin"
310
  msgid "Listing was renewed."
311
  msgid_plural "Listings were renewed."
312
  msgstr[0] ""
313
  msgstr[1] ""
314
 
315
- #: admin/class-admin.php:648
316
  msgctxt "admin"
317
  msgid "Renewal email sent."
318
  msgstr ""
319
 
320
- #: admin/class-admin.php:682
321
  msgctxt "admin category id"
322
  msgid "ID"
323
  msgstr ""
324
 
325
- #: admin/class-admin.php:684 admin/class-admin.php:690
326
  msgctxt "admin"
327
  msgid "Listing Count"
328
  msgstr ""
329
 
330
- #: admin/class-admin.php:799
331
  msgctxt "admin"
332
  msgid ""
333
  "<b>Business Directory Plugin</b> requires fields with the following "
334
  "associations in order to work correctly: <b>%s</b>."
335
  msgstr ""
336
 
337
- #: admin/class-admin.php:801
338
  msgctxt "admin"
339
  msgid ""
340
  "<b>Business Directory Plugin</b> requires a field with a <b>%s</b> "
341
  "association in order to work correctly."
342
  msgstr ""
343
 
344
- #: admin/class-admin.php:805
345
  msgctxt "admin"
346
  msgid ""
347
  "You can create these custom fields by yourself inside \"Manage Form Fields\" "
348
  "or let Business Directory do this for you automatically."
349
  msgstr ""
350
 
351
- #: admin/class-admin.php:809
352
  msgctxt "admin"
353
  msgid "Go to \"Manage Form Fields\""
354
  msgstr ""
355
 
356
- #: admin/class-admin.php:812
357
  msgctxt "admin"
358
  msgid "Create these required fields for me"
359
  msgstr ""
360
 
361
- #: admin/class-admin.php:821
362
  msgctxt "admin"
363
  msgid ""
364
  "<b>Business Directory Plugin</b> requires a page with the "
365
  "<tt>[businessdirectory]</tt> shortcode to function properly."
366
  msgstr ""
367
 
368
- #: admin/class-admin.php:823
369
  msgctxt "admin"
370
  msgid ""
371
  "You can create this page by yourself or let Business Directory do this for "
372
  "you automatically."
373
  msgstr ""
374
 
375
- #: admin/class-admin.php:827
376
  msgctxt "admin"
377
  msgid "Create required pages for me"
378
  msgstr ""
379
 
380
- #: admin/class-admin.php:867
381
  msgctxt "admin compat"
382
  msgid "Installed: %s"
383
  msgstr ""
384
 
385
- #: admin/class-admin.php:867
386
  msgctxt "admin compat"
387
  msgid "N/A"
388
  msgstr ""
389
 
390
- #: admin/class-admin.php:870
391
  msgctxt "admin compat"
392
  msgid "Required: %s"
393
  msgstr ""
394
 
395
- #: admin/class-admin.php:882
396
  msgctxt "admin compat"
397
  msgid ""
398
  "Business Directory has detected some incompatible premium module versions "
399
  "installed."
400
  msgstr ""
401
 
402
- #: admin/class-admin.php:884
403
  msgctxt "admin compat"
404
  msgid ""
405
  "Please upgrade to the required versions indicated below to make sure "
406
  "everything functions properly."
407
  msgstr ""
408
 
409
- #: admin/class-admin.php:904
410
  msgctxt "admin"
411
  msgid ""
412
  "We noticed you want your Business Directory users to register before posting "
@@ -430,30 +435,30 @@ msgctxt "templates"
430
  msgid "There are no images currently attached to the listing."
431
  msgstr ""
432
 
433
- #: admin/class-themes-admin.php:45
434
  msgctxt "themes"
435
  msgid "Directory Themes"
436
  msgstr ""
437
 
438
- #: admin/class-themes-admin.php:46
439
  msgctxt "themes"
440
  msgid "Directory Themes %s"
441
  msgstr ""
442
 
443
- #: admin/class-themes-admin.php:88
444
  msgctxt "admin themes"
445
  msgid ""
446
  "Business Directory Plugin - Your template overrides need to be reviewed!"
447
  msgstr ""
448
 
449
- #: admin/class-themes-admin.php:90
450
  msgctxt "admin themes"
451
  msgid ""
452
  "Starting with version 4.0, Business Directory is using a new theming system "
453
  "that is not compatible with the templates used in previous versions."
454
  msgstr ""
455
 
456
- #: admin/class-themes-admin.php:92
457
  msgctxt "admin themes"
458
  msgid ""
459
  "Because of this, your template overrides below have been disabled. You "
@@ -461,98 +466,98 @@ msgid ""
461
  "templates."
462
  msgstr ""
463
 
464
- #: admin/class-themes-admin.php:121
465
  msgctxt "admin themes"
466
  msgid ""
467
  "You need to <a>activate your theme's license key</a> before you can activate "
468
  "the theme. <a>Click here</a> to do that."
469
  msgstr ""
470
 
471
- #: admin/class-themes-admin.php:149
472
  msgctxt "themes"
473
  msgid "Could not change the active theme to \"%s\"."
474
  msgstr ""
475
 
476
- #: admin/class-themes-admin.php:196
477
  msgctxt "themes"
478
  msgid "Active theme changed to \"%s\"."
479
  msgstr ""
480
 
481
- #: admin/class-themes-admin.php:199
482
  msgctxt "themes"
483
  msgid ""
484
  "%s requires that you tag your existing fields to match some places we want "
485
  "to put your data on the theme. Below are fields we think are missing."
486
  msgstr ""
487
 
488
- #: admin/class-themes-admin.php:208
489
  msgctxt "themes"
490
  msgid "Map My Fields"
491
  msgstr ""
492
 
493
- #: admin/class-themes-admin.php:215
494
  msgctxt "themes"
495
  msgid "Suggested fields created successfully."
496
  msgstr ""
497
 
498
- #: admin/class-themes-admin.php:218
499
  msgctxt "themes"
500
  msgid "Theme installed successfully."
501
  msgstr ""
502
 
503
- #: admin/class-themes-admin.php:221
504
  msgctxt "themes"
505
  msgid "Theme was deleted sucessfully."
506
  msgstr ""
507
 
508
- #: admin/class-themes-admin.php:224
509
  msgctxt "themes"
510
  msgid "Could not delete theme directory. Check permissions."
511
  msgstr ""
512
 
513
- #: admin/class-themes-admin.php:250
514
  msgctxt "themes"
515
  msgid "Please upload a valid theme file."
516
  msgstr ""
517
 
518
- #: admin/class-themes-admin.php:257
519
  msgctxt "themes"
520
  msgid "Could not move \"%s\" to a temporary directory."
521
  msgstr ""
522
 
523
- #: admin/class-themes-admin.php:358 admin/class-themes-admin.php:419
524
  #: core/licensing.php:127 core/licensing.php:159
525
  msgctxt "licensing"
526
  msgid "Could not contact licensing server"
527
  msgstr ""
528
 
529
- #: admin/class-themes-admin.php:364 core/licensing.php:132
530
  #: core/licensing.php:166
531
  msgctxt "licensing"
532
  msgid "License key is invalid"
533
  msgstr ""
534
 
535
- #: admin/class-themes-admin.php:369 core/licensing.php:333
536
  msgctxt "licensing"
537
  msgid "Could not activate license: %s."
538
  msgstr ""
539
 
540
- #: admin/class-themes-admin.php:382 core/licensing.php:335
541
  msgctxt "licensing"
542
  msgid "License activated"
543
  msgstr ""
544
 
545
- #: admin/class-themes-admin.php:425
546
  msgctxt "licensing"
547
  msgid "Invalid response from server"
548
  msgstr ""
549
 
550
- #: admin/class-themes-admin.php:442 core/licensing.php:353
551
  msgctxt "licensing"
552
  msgid "License deactivated"
553
  msgstr ""
554
 
555
- #: admin/class-themes-admin.php:458
556
  msgctxt "themes"
557
  msgid "Activate your <a>license key</a> to use this theme."
558
  msgstr ""
@@ -1898,6 +1903,13 @@ msgctxt "form-fields admin"
1898
  msgid "Field Association"
1899
  msgstr ""
1900
 
 
 
 
 
 
 
 
1901
  #: admin/templates/form-fields-addoredit.tpl.php:36
1902
  msgctxt "form-fields admin"
1903
  msgid "Field Type"
@@ -1913,6 +1925,11 @@ msgctxt "form-fields admin"
1913
  msgid "Field description"
1914
  msgstr ""
1915
 
 
 
 
 
 
1916
  #: admin/templates/form-fields-addoredit.tpl.php:87
1917
  msgctxt "form-fields admin"
1918
  msgid "Field-specific settings"
@@ -2055,7 +2072,7 @@ msgctxt "form-fields admin"
2055
  msgid "Preview Form"
2056
  msgstr ""
2057
 
2058
- #: admin/templates/form-fields.tpl.php:6
2059
  msgctxt "form-fields admin"
2060
  msgid "Manage Theme Tags"
2061
  msgstr ""
@@ -2073,7 +2090,7 @@ msgctxt "form-fields admin"
2073
  msgid "Please see the <a>Form Fields documentation</a> for more details."
2074
  msgstr ""
2075
 
2076
- #. #-#-#-#-# WPBDM.pot (Business Directory Plugin 4.0.6) #-#-#-#-#
2077
  #. Plugin Name of the plugin/theme
2078
  #: admin/templates/header.tpl.php:4
2079
  msgid "Business Directory Plugin"
@@ -2677,7 +2694,22 @@ msgctxt "themes"
2677
  msgid "Activating license..."
2678
  msgstr ""
2679
 
2680
- #: admin/templates/themes.tpl.php:13
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
2681
  msgctxt "themes"
2682
  msgid ""
2683
  "<a><b>Directory Themes</b></a> are pre-made templates for the <i>Business "
@@ -2685,7 +2717,7 @@ msgid ""
2685
  "We have a number of them available for purchase <a>here</a>."
2686
  msgstr ""
2687
 
2688
- #: admin/templates/themes.tpl.php:14
2689
  msgctxt "themes"
2690
  msgid ""
2691
  "They are <strong>different</strong> than your regular WordPress theme and "
@@ -3312,13 +3344,13 @@ msgctxt "admin settings"
3312
  msgid "Enable AJAX compatibility mode?"
3313
  msgstr ""
3314
 
3315
- #: core/class-settings.php:179 core/class-settings.php:658
3316
  msgctxt "admin settings"
3317
  msgid "Listings"
3318
  msgstr ""
3319
 
3320
  #: core/class-settings.php:180 core/class-settings.php:330
3321
- #: core/class-settings.php:615
3322
  msgctxt "admin settings"
3323
  msgid "General Settings"
3324
  msgstr ""
@@ -3569,12 +3601,12 @@ msgctxt "admin settings"
3569
  msgid "Author"
3570
  msgstr ""
3571
 
3572
- #: core/class-settings.php:293
3573
  msgctxt "admin settings"
3574
  msgid "Date posted"
3575
  msgstr ""
3576
 
3577
- #: core/class-settings.php:294
3578
  msgctxt "admin settings"
3579
  msgid "Date last modified"
3580
  msgstr ""
@@ -3676,6 +3708,16 @@ msgid ""
3676
  "listings expire."
3677
  msgstr ""
3678
 
 
 
 
 
 
 
 
 
 
 
3679
  #: core/class-settings.php:349
3680
  msgctxt "admin settings"
3681
  msgid "E-Mail Notifications"
@@ -4190,27 +4232,32 @@ msgctxt "admin settings"
4190
  msgid "Themes"
4191
  msgstr ""
4192
 
4193
- #: core/class-settings.php:619
 
 
 
 
 
4194
  msgctxt "admin settings"
4195
  msgid "Theme button style"
4196
  msgstr ""
4197
 
4198
- #: core/class-settings.php:623
4199
  msgctxt "admin settings"
4200
  msgid "Use the BD theme style for BD buttons"
4201
  msgstr ""
4202
 
4203
- #: core/class-settings.php:624
4204
  msgctxt "admin settings"
4205
  msgid "Use the WP theme style for BD buttons"
4206
  msgstr ""
4207
 
4208
- #: core/class-settings.php:631
4209
  msgctxt "admin settings"
4210
  msgid "Image"
4211
  msgstr ""
4212
 
4213
- #: core/class-settings.php:632
4214
  msgctxt "admin settings"
4215
  msgid ""
4216
  "Any changes to these settings will affect new listings only. Existing "
@@ -4219,78 +4266,78 @@ msgid ""
4219
  "here."
4220
  msgstr ""
4221
 
4222
- #: core/class-settings.php:633
4223
  msgctxt "admin settings"
4224
  msgid "Image Settings"
4225
  msgstr ""
4226
 
4227
- #: core/class-settings.php:634
4228
  msgctxt "admin settings"
4229
  msgid "Allow images?"
4230
  msgstr ""
4231
 
4232
- #: core/class-settings.php:636
4233
  msgctxt "admin settings"
4234
  msgid "Min Image File Size (KB)"
4235
  msgstr ""
4236
 
4237
- #: core/class-settings.php:637
4238
  msgctxt "admin settings"
4239
  msgid "Max Image File Size (KB)"
4240
  msgstr ""
4241
 
4242
- #: core/class-settings.php:639
4243
  msgctxt "admin settings"
4244
  msgid "Min image width (px)"
4245
  msgstr ""
4246
 
4247
- #: core/class-settings.php:640
4248
  msgctxt "admin settings"
4249
  msgid "Min image height (px)"
4250
  msgstr ""
4251
 
4252
- #: core/class-settings.php:642
4253
  msgctxt "admin settings"
4254
  msgid "Max image width (px)"
4255
  msgstr ""
4256
 
4257
- #: core/class-settings.php:643
4258
  msgctxt "admin settings"
4259
  msgid "Max image height (px)"
4260
  msgstr ""
4261
 
4262
- #: core/class-settings.php:645
4263
  msgctxt "admin settings"
4264
  msgid "Turn on thickbox/lightbox?"
4265
  msgstr ""
4266
 
4267
- #: core/class-settings.php:645
4268
  msgctxt "admin settings"
4269
  msgid ""
4270
  "Uncheck if it conflicts with other elements or plugins installed on your site"
4271
  msgstr ""
4272
 
4273
- #: core/class-settings.php:647
4274
  msgctxt "admin settings"
4275
  msgid "Thumbnails"
4276
  msgstr ""
4277
 
4278
- #: core/class-settings.php:648
4279
  msgctxt "admin settings"
4280
  msgid "Thumbnail width (px)"
4281
  msgstr ""
4282
 
4283
- #: core/class-settings.php:649
4284
  msgctxt "admin settings"
4285
  msgid "Thumbnail height (px)"
4286
  msgstr ""
4287
 
4288
- #: core/class-settings.php:652
4289
  msgctxt "admin settings"
4290
  msgid "Crop thumbnails to exact dimensions?"
4291
  msgstr ""
4292
 
4293
- #: core/class-settings.php:655
4294
  msgctxt "admin settings"
4295
  msgid ""
4296
  "When enabled images will match exactly the dimensions above but part of the "
@@ -4299,140 +4346,150 @@ msgid ""
4299
  "Depending on the uploaded images, thumbnails may have different heights."
4300
  msgstr ""
4301
 
4302
- #: core/class-settings.php:661
4303
  msgctxt "admin settings"
4304
  msgid "Number of free images"
4305
  msgstr ""
4306
 
4307
- #: core/class-settings.php:666
4308
  msgctxt "admin settings"
4309
  msgid ""
4310
  "For paid listing images, configure that by adding or editing a <a>Fee Plan</"
4311
  "a> instead of this setting, which is ignored for paid listings."
4312
  msgstr ""
4313
 
4314
- #: core/class-settings.php:669
4315
  msgctxt "admin settings"
4316
  msgid "Use default picture for listings with no picture?"
4317
  msgstr ""
4318
 
4319
- #: core/class-settings.php:670
4320
  msgctxt "admin settings"
4321
  msgid "Show Thumbnail on main listings page?"
4322
  msgstr ""
4323
 
4324
- #: core/class-settings.php:726
 
 
 
 
 
 
 
 
 
 
4325
  msgctxt "admin settings"
4326
  msgid ""
4327
  "Could not copy the AJAX compatibility plugin \"%s\". Compatibility mode was "
4328
  "not activated."
4329
  msgstr ""
4330
 
4331
- #: core/class-settings.php:734
4332
  msgctxt "admin settings"
4333
  msgid ""
4334
  "Could not activate AJAX Compatibility mode: the directory \"%s\" could not "
4335
  "be created."
4336
  msgstr ""
4337
 
4338
- #: core/class-settings.php:743
4339
  msgctxt "admin settings"
4340
  msgid ""
4341
  "Could not remove the \"Business Directory Plugin - AJAX Compatibility Module"
4342
  "\". Please remove the file \"%s\" manually or deactivate the plugin."
4343
  msgstr ""
4344
 
4345
- #: core/class-settings.php:1063
4346
  msgctxt "settings"
4347
  msgid "Deactivate License"
4348
  msgstr ""
4349
 
4350
- #: core/class-settings.php:1065
4351
  msgctxt "settings"
4352
  msgid "Deactivating license..."
4353
  msgstr ""
4354
 
4355
- #: core/class-settings.php:1068
4356
  msgctxt "settings"
4357
  msgid "Activate License"
4358
  msgstr ""
4359
 
4360
- #: core/class-settings.php:1070
4361
  msgctxt "settings"
4362
  msgid "Activating license..."
4363
  msgstr ""
4364
 
4365
- #: core/class-settings.php:1093
4366
  msgctxt "admin settings"
4367
  msgid "Valid placeholders: %s"
4368
  msgstr ""
4369
 
4370
- #: core/class-settings.php:1127
4371
  msgctxt "settings email"
4372
  msgid "Click to edit e-mail"
4373
  msgstr ""
4374
 
4375
- #: core/class-settings.php:1128
4376
  msgctxt "settings email"
4377
  msgid "Click to edit"
4378
  msgstr ""
4379
 
4380
- #: core/class-settings.php:1141
4381
  msgctxt "settings email"
4382
  msgid "E-Mail Subject"
4383
  msgstr ""
4384
 
4385
- #: core/class-settings.php:1152
4386
  msgctxt "settings email"
4387
  msgid "E-Mail Body"
4388
  msgstr ""
4389
 
4390
- #: core/class-settings.php:1163
4391
  msgctxt "settings email"
4392
  msgid "You can use the following placeholders:"
4393
  msgstr ""
4394
 
4395
- #: core/class-settings.php:1186
4396
  msgctxt "settings email"
4397
  msgid "Preview e-mail"
4398
  msgstr ""
4399
 
4400
- #: core/class-settings.php:1187
4401
  msgctxt "settings email"
4402
  msgid "Cancel"
4403
  msgstr ""
4404
 
4405
- #: core/class-settings.php:1188
4406
  msgctxt "settings email"
4407
  msgid "Save Changes"
4408
  msgstr ""
4409
 
4410
- #: core/class-settings.php:1207
4411
  msgctxt "settings email"
4412
  msgid "Site title"
4413
  msgstr ""
4414
 
4415
- #: core/class-settings.php:1210
4416
  msgctxt "settings email"
4417
  msgid "Site title (with link)"
4418
  msgstr ""
4419
 
4420
- #: core/class-settings.php:1213
4421
  msgctxt "settings email"
4422
  msgid "Site address (with link)"
4423
  msgstr ""
4424
 
4425
- #: core/class-settings.php:1216
4426
  msgctxt "settings email"
4427
  msgid "Directory URL (with link)"
4428
  msgstr ""
4429
 
4430
- #: core/class-settings.php:1219
4431
  msgctxt "settings email"
4432
  msgid "Current date"
4433
  msgstr ""
4434
 
4435
- #: core/class-settings.php:1222
4436
  msgctxt "settings email"
4437
  msgid "Current time"
4438
  msgstr ""
2
  # This file is distributed under the same license as the Business Directory Plugin package.
3
  msgid ""
4
  msgstr ""
5
+ "Project-Id-Version: Business Directory Plugin 4.0.7\n"
6
  "Report-Msgid-Bugs-To: http://wordpress.org/tag/business-directory-plugin\n"
7
+ "POT-Creation-Date: 2016-06-21 22:32:39+00:00\n"
8
  "MIME-Version: 1.0\n"
9
  "Content-Type: text/plain; charset=UTF-8\n"
10
  "Content-Transfer-Encoding: 8bit\n"
159
  msgid "Invalid e-mail address."
160
  msgstr ""
161
 
162
+ #: admin/class-admin.php:219
163
  msgctxt "admin menu"
164
  msgid "Business Directory Admin"
165
  msgstr ""
166
 
167
+ #: admin/class-admin.php:220
168
+ msgctxt "admin menu"
169
+ msgid "Dir. Admin"
170
+ msgstr ""
171
+
172
+ #: admin/class-admin.php:220
173
  msgctxt "admin menu"
174
  msgid "Directory Admin"
175
  msgstr ""
176
 
177
+ #: admin/class-admin.php:226 admin/class-admin.php:227
178
  msgctxt "admin menu"
179
  msgid "Add New Listing"
180
  msgstr ""
181
 
182
+ #: admin/class-admin.php:232 admin/class-admin.php:233
183
  msgctxt "admin menu"
184
  msgid "Manage Options"
185
  msgstr ""
186
 
187
+ #: admin/class-admin.php:238 admin/class-admin.php:239
188
  msgctxt "admin menu"
189
  msgid "Manage Fees"
190
  msgstr ""
191
 
192
+ #: admin/class-admin.php:244 admin/class-admin.php:245
193
  msgctxt "admin menu"
194
  msgid "Manage Form Fields"
195
  msgstr ""
196
 
197
+ #: admin/class-admin.php:250 admin/class-admin.php:251
198
  msgctxt "admin menu"
199
  msgid "Listings"
200
  msgstr ""
201
 
202
+ #: admin/class-admin.php:265 admin/class-admin.php:266
203
  msgctxt "admin menu"
204
  msgid "CSV Import"
205
  msgstr ""
206
 
207
+ #: admin/class-admin.php:271 admin/class-admin.php:272
208
  msgctxt "admin menu"
209
  msgid "CSV Export"
210
  msgstr ""
211
 
212
+ #: admin/class-admin.php:277 admin/class-admin.php:278
213
  msgctxt "admin menu"
214
  msgid "Debug"
215
  msgstr ""
216
 
217
+ #: admin/class-admin.php:287
218
  msgctxt "admin menu"
219
  msgid "Main Menu"
220
  msgstr ""
221
 
222
+ #: admin/class-admin.php:298
223
  msgctxt "admin menu"
224
  msgid "Uninstall Business Directory Plugin"
225
  msgstr ""
226
 
227
+ #: admin/class-admin.php:299
228
  msgctxt "admin menu"
229
  msgid "Uninstall"
230
  msgstr ""
231
 
232
+ #: admin/class-admin.php:413
233
  #: admin/templates/listing-metabox-categories.tpl.php:69
234
  msgctxt "admin infometabox"
235
  msgid "never"
236
  msgstr ""
237
 
238
+ #: admin/class-admin.php:507
239
  msgctxt "admin"
240
  msgid "Dismiss this notice."
241
  msgstr ""
242
 
243
+ #: admin/class-admin.php:535
244
  msgctxt "admin"
245
  msgid "The listing has been published."
246
  msgid_plural "The listings have been published."
247
  msgstr[0] ""
248
  msgstr[1] ""
249
 
250
+ #: admin/class-admin.php:553
251
  msgctxt "admin"
252
  msgid "The listing status has been set as paid."
253
  msgid_plural "The listings status has been set as paid."
254
  msgstr[0] ""
255
  msgstr[1] ""
256
 
257
+ #: admin/class-admin.php:559
258
  msgctxt "admin"
259
  msgid ""
260
  "Only invoices containing non-recurring items were marked as paid. Please "
266
  msgstr[0] ""
267
  msgstr[1] ""
268
 
269
+ #: admin/class-admin.php:578
270
  msgctxt "admin"
271
  msgid "The listing has been modified."
272
  msgid_plural "The listings have been modified."
273
  msgstr[0] ""
274
  msgstr[1] ""
275
 
276
+ #: admin/class-admin.php:591
277
  msgctxt "admin"
278
  msgid "The listing has been upgraded."
279
  msgid_plural "The listings have been upgraded."
280
  msgstr[0] ""
281
  msgstr[1] ""
282
 
283
+ #: admin/class-admin.php:603
284
  msgctxt "admin"
285
  msgid "The listing has been downgraded."
286
  msgid_plural "The listings have been downgraded."
287
  msgstr[0] ""
288
  msgstr[1] ""
289
 
290
+ #: admin/class-admin.php:614
291
  msgctxt "admin payments"
292
  msgid ""
293
  "The payment status was not changed. Recurring payments can't be manually "
295
  "went through."
296
  msgstr ""
297
 
298
+ #: admin/class-admin.php:619
299
  msgctxt "admin"
300
  msgid "The transaction has been approved."
301
  msgstr ""
302
 
303
+ #: admin/class-admin.php:629
304
  msgctxt "admin"
305
  msgid "The transaction has been rejected."
306
  msgstr ""
307
 
308
+ #: admin/class-admin.php:635
309
  msgctxt "admin"
310
  msgid "The fee was successfully assigned."
311
  msgstr ""
312
 
313
+ #: admin/class-admin.php:644
314
  msgctxt "admin"
315
  msgid "Listing was renewed."
316
  msgid_plural "Listings were renewed."
317
  msgstr[0] ""
318
  msgstr[1] ""
319
 
320
+ #: admin/class-admin.php:651
321
  msgctxt "admin"
322
  msgid "Renewal email sent."
323
  msgstr ""
324
 
325
+ #: admin/class-admin.php:685
326
  msgctxt "admin category id"
327
  msgid "ID"
328
  msgstr ""
329
 
330
+ #: admin/class-admin.php:687 admin/class-admin.php:693
331
  msgctxt "admin"
332
  msgid "Listing Count"
333
  msgstr ""
334
 
335
+ #: admin/class-admin.php:802
336
  msgctxt "admin"
337
  msgid ""
338
  "<b>Business Directory Plugin</b> requires fields with the following "
339
  "associations in order to work correctly: <b>%s</b>."
340
  msgstr ""
341
 
342
+ #: admin/class-admin.php:804
343
  msgctxt "admin"
344
  msgid ""
345
  "<b>Business Directory Plugin</b> requires a field with a <b>%s</b> "
346
  "association in order to work correctly."
347
  msgstr ""
348
 
349
+ #: admin/class-admin.php:808
350
  msgctxt "admin"
351
  msgid ""
352
  "You can create these custom fields by yourself inside \"Manage Form Fields\" "
353
  "or let Business Directory do this for you automatically."
354
  msgstr ""
355
 
356
+ #: admin/class-admin.php:812
357
  msgctxt "admin"
358
  msgid "Go to \"Manage Form Fields\""
359
  msgstr ""
360
 
361
+ #: admin/class-admin.php:815
362
  msgctxt "admin"
363
  msgid "Create these required fields for me"
364
  msgstr ""
365
 
366
+ #: admin/class-admin.php:824
367
  msgctxt "admin"
368
  msgid ""
369
  "<b>Business Directory Plugin</b> requires a page with the "
370
  "<tt>[businessdirectory]</tt> shortcode to function properly."
371
  msgstr ""
372
 
373
+ #: admin/class-admin.php:826
374
  msgctxt "admin"
375
  msgid ""
376
  "You can create this page by yourself or let Business Directory do this for "
377
  "you automatically."
378
  msgstr ""
379
 
380
+ #: admin/class-admin.php:830
381
  msgctxt "admin"
382
  msgid "Create required pages for me"
383
  msgstr ""
384
 
385
+ #: admin/class-admin.php:870
386
  msgctxt "admin compat"
387
  msgid "Installed: %s"
388
  msgstr ""
389
 
390
+ #: admin/class-admin.php:870
391
  msgctxt "admin compat"
392
  msgid "N/A"
393
  msgstr ""
394
 
395
+ #: admin/class-admin.php:873
396
  msgctxt "admin compat"
397
  msgid "Required: %s"
398
  msgstr ""
399
 
400
+ #: admin/class-admin.php:885
401
  msgctxt "admin compat"
402
  msgid ""
403
  "Business Directory has detected some incompatible premium module versions "
404
  "installed."
405
  msgstr ""
406
 
407
+ #: admin/class-admin.php:887
408
  msgctxt "admin compat"
409
  msgid ""
410
  "Please upgrade to the required versions indicated below to make sure "
411
  "everything functions properly."
412
  msgstr ""
413
 
414
+ #: admin/class-admin.php:907
415
  msgctxt "admin"
416
  msgid ""
417
  "We noticed you want your Business Directory users to register before posting "
435
  msgid "There are no images currently attached to the listing."
436
  msgstr ""
437
 
438
+ #: admin/class-themes-admin.php:47
439
  msgctxt "themes"
440
  msgid "Directory Themes"
441
  msgstr ""
442
 
443
+ #: admin/class-themes-admin.php:48
444
  msgctxt "themes"
445
  msgid "Directory Themes %s"
446
  msgstr ""
447
 
448
+ #: admin/class-themes-admin.php:94
449
  msgctxt "admin themes"
450
  msgid ""
451
  "Business Directory Plugin - Your template overrides need to be reviewed!"
452
  msgstr ""
453
 
454
+ #: admin/class-themes-admin.php:96
455
  msgctxt "admin themes"
456
  msgid ""
457
  "Starting with version 4.0, Business Directory is using a new theming system "
458
  "that is not compatible with the templates used in previous versions."
459
  msgstr ""
460
 
461
+ #: admin/class-themes-admin.php:98
462
  msgctxt "admin themes"
463
  msgid ""
464
  "Because of this, your template overrides below have been disabled. You "
466
  "templates."
467
  msgstr ""
468
 
469
+ #: admin/class-themes-admin.php:127
470
  msgctxt "admin themes"
471
  msgid ""
472
  "You need to <a>activate your theme's license key</a> before you can activate "
473
  "the theme. <a>Click here</a> to do that."
474
  msgstr ""
475
 
476
+ #: admin/class-themes-admin.php:155
477
  msgctxt "themes"
478
  msgid "Could not change the active theme to \"%s\"."
479
  msgstr ""
480
 
481
+ #: admin/class-themes-admin.php:202
482
  msgctxt "themes"
483
  msgid "Active theme changed to \"%s\"."
484
  msgstr ""
485
 
486
+ #: admin/class-themes-admin.php:205
487
  msgctxt "themes"
488
  msgid ""
489
  "%s requires that you tag your existing fields to match some places we want "
490
  "to put your data on the theme. Below are fields we think are missing."
491
  msgstr ""
492
 
493
+ #: admin/class-themes-admin.php:214
494
  msgctxt "themes"
495
  msgid "Map My Fields"
496
  msgstr ""
497
 
498
+ #: admin/class-themes-admin.php:221
499
  msgctxt "themes"
500
  msgid "Suggested fields created successfully."
501
  msgstr ""
502
 
503
+ #: admin/class-themes-admin.php:224
504
  msgctxt "themes"
505
  msgid "Theme installed successfully."
506
  msgstr ""
507
 
508
+ #: admin/class-themes-admin.php:227
509
  msgctxt "themes"
510
  msgid "Theme was deleted sucessfully."
511
  msgstr ""
512
 
513
+ #: admin/class-themes-admin.php:230
514
  msgctxt "themes"
515
  msgid "Could not delete theme directory. Check permissions."
516
  msgstr ""
517
 
518
+ #: admin/class-themes-admin.php:256
519
  msgctxt "themes"
520
  msgid "Please upload a valid theme file."
521
  msgstr ""
522
 
523
+ #: admin/class-themes-admin.php:263
524
  msgctxt "themes"
525
  msgid "Could not move \"%s\" to a temporary directory."
526
  msgstr ""
527
 
528
+ #: admin/class-themes-admin.php:364 admin/class-themes-admin.php:425
529
  #: core/licensing.php:127 core/licensing.php:159
530
  msgctxt "licensing"
531
  msgid "Could not contact licensing server"
532
  msgstr ""
533
 
534
+ #: admin/class-themes-admin.php:370 core/licensing.php:132
535
  #: core/licensing.php:166
536
  msgctxt "licensing"
537
  msgid "License key is invalid"
538
  msgstr ""
539
 
540
+ #: admin/class-themes-admin.php:375 core/licensing.php:333
541
  msgctxt "licensing"
542
  msgid "Could not activate license: %s."
543
  msgstr ""
544
 
545
+ #: admin/class-themes-admin.php:388 core/licensing.php:335
546
  msgctxt "licensing"
547
  msgid "License activated"
548
  msgstr ""
549
 
550
+ #: admin/class-themes-admin.php:431
551
  msgctxt "licensing"
552
  msgid "Invalid response from server"
553
  msgstr ""
554
 
555
+ #: admin/class-themes-admin.php:448 core/licensing.php:353
556
  msgctxt "licensing"
557
  msgid "License deactivated"
558
  msgstr ""
559
 
560
+ #: admin/class-themes-admin.php:464
561
  msgctxt "themes"
562
  msgid "Activate your <a>license key</a> to use this theme."
563
  msgstr ""
1903
  msgid "Field Association"
1904
  msgstr ""
1905
 
1906
+ #: admin/templates/form-fields-addoredit.tpl.php:14
1907
+ #: admin/templates/form-fields-addoredit.tpl.php:36
1908
+ #: admin/templates/form-fields-addoredit.tpl.php:60
1909
+ msgctxt "form-fields admin"
1910
+ msgid "required"
1911
+ msgstr ""
1912
+
1913
  #: admin/templates/form-fields-addoredit.tpl.php:36
1914
  msgctxt "form-fields admin"
1915
  msgid "Field Type"
1925
  msgid "Field description"
1926
  msgstr ""
1927
 
1928
+ #: admin/templates/form-fields-addoredit.tpl.php:70
1929
+ msgctxt "form-fields admin"
1930
+ msgid "optional"
1931
+ msgstr ""
1932
+
1933
  #: admin/templates/form-fields-addoredit.tpl.php:87
1934
  msgctxt "form-fields admin"
1935
  msgid "Field-specific settings"
2072
  msgid "Preview Form"
2073
  msgstr ""
2074
 
2075
+ #: admin/templates/form-fields.tpl.php:6 admin/templates/themes.tpl.php:4
2076
  msgctxt "form-fields admin"
2077
  msgid "Manage Theme Tags"
2078
  msgstr ""
2090
  msgid "Please see the <a>Form Fields documentation</a> for more details."
2091
  msgstr ""
2092
 
2093
+ #. #-#-#-#-# WPBDM.pot (Business Directory Plugin 4.0.7) #-#-#-#-#
2094
  #. Plugin Name of the plugin/theme
2095
  #: admin/templates/header.tpl.php:4
2096
  msgid "Business Directory Plugin"
2694
  msgid "Activating license..."
2695
  msgstr ""
2696
 
2697
+ #: admin/templates/themes-tabs.tpl.php:6
2698
+ msgctxt "admin themes"
2699
+ msgid "Available Themes"
2700
+ msgstr ""
2701
+
2702
+ #: admin/templates/themes-tabs.tpl.php:7
2703
+ msgctxt "admin themes"
2704
+ msgid "Licenses"
2705
+ msgstr ""
2706
+
2707
+ #: admin/templates/themes.tpl.php:5
2708
+ msgctxt "themes"
2709
+ msgid "Settings"
2710
+ msgstr ""
2711
+
2712
+ #: admin/templates/themes.tpl.php:15
2713
  msgctxt "themes"
2714
  msgid ""
2715
  "<a><b>Directory Themes</b></a> are pre-made templates for the <i>Business "
2717
  "We have a number of them available for purchase <a>here</a>."
2718
  msgstr ""
2719
 
2720
+ #: admin/templates/themes.tpl.php:16
2721
  msgctxt "themes"
2722
  msgid ""
2723
  "They are <strong>different</strong> than your regular WordPress theme and "
3344
  msgid "Enable AJAX compatibility mode?"
3345
  msgstr ""
3346
 
3347
+ #: core/class-settings.php:179 core/class-settings.php:660
3348
  msgctxt "admin settings"
3349
  msgid "Listings"
3350
  msgstr ""
3351
 
3352
  #: core/class-settings.php:180 core/class-settings.php:330
3353
+ #: core/class-settings.php:617
3354
  msgctxt "admin settings"
3355
  msgid "General Settings"
3356
  msgstr ""
3601
  msgid "Author"
3602
  msgstr ""
3603
 
3604
+ #: core/class-settings.php:293 core/class-settings.php:703
3605
  msgctxt "admin settings"
3606
  msgid "Date posted"
3607
  msgstr ""
3608
 
3609
+ #: core/class-settings.php:294 core/class-settings.php:704
3610
  msgctxt "admin settings"
3611
  msgid "Date last modified"
3612
  msgstr ""
3708
  "listings expire."
3709
  msgstr ""
3710
 
3711
+ #: core/class-settings.php:344
3712
+ msgctxt "admin settings"
3713
+ msgid "Try listing's email field first, then author's email."
3714
+ msgstr ""
3715
+
3716
+ #: core/class-settings.php:345
3717
+ msgctxt "admin settings"
3718
+ msgid "Try author's email first and then listing's email field."
3719
+ msgstr ""
3720
+
3721
  #: core/class-settings.php:349
3722
  msgctxt "admin settings"
3723
  msgid "E-Mail Notifications"
4232
  msgid "Themes"
4233
  msgstr ""
4234
 
4235
+ #: core/class-settings.php:616
4236
+ msgctxt "admin settings"
4237
+ msgid "You can manage your themes on <a>Directory Themes</a>."
4238
+ msgstr ""
4239
+
4240
+ #: core/class-settings.php:621
4241
  msgctxt "admin settings"
4242
  msgid "Theme button style"
4243
  msgstr ""
4244
 
4245
+ #: core/class-settings.php:625
4246
  msgctxt "admin settings"
4247
  msgid "Use the BD theme style for BD buttons"
4248
  msgstr ""
4249
 
4250
+ #: core/class-settings.php:626
4251
  msgctxt "admin settings"
4252
  msgid "Use the WP theme style for BD buttons"
4253
  msgstr ""
4254
 
4255
+ #: core/class-settings.php:633
4256
  msgctxt "admin settings"
4257
  msgid "Image"
4258
  msgstr ""
4259
 
4260
+ #: core/class-settings.php:634
4261
  msgctxt "admin settings"
4262
  msgid ""
4263
  "Any changes to these settings will affect new listings only. Existing "
4266
  "here."
4267
  msgstr ""
4268
 
4269
+ #: core/class-settings.php:635
4270
  msgctxt "admin settings"
4271
  msgid "Image Settings"
4272
  msgstr ""
4273
 
4274
+ #: core/class-settings.php:636
4275
  msgctxt "admin settings"
4276
  msgid "Allow images?"
4277
  msgstr ""
4278
 
4279
+ #: core/class-settings.php:638
4280
  msgctxt "admin settings"
4281
  msgid "Min Image File Size (KB)"
4282
  msgstr ""
4283
 
4284
+ #: core/class-settings.php:639
4285
  msgctxt "admin settings"
4286
  msgid "Max Image File Size (KB)"
4287
  msgstr ""
4288
 
4289
+ #: core/class-settings.php:641
4290
  msgctxt "admin settings"
4291
  msgid "Min image width (px)"
4292
  msgstr ""
4293
 
4294
+ #: core/class-settings.php:642
4295
  msgctxt "admin settings"
4296
  msgid "Min image height (px)"
4297
  msgstr ""
4298
 
4299
+ #: core/class-settings.php:644
4300
  msgctxt "admin settings"
4301
  msgid "Max image width (px)"
4302
  msgstr ""
4303
 
4304
+ #: core/class-settings.php:645
4305
  msgctxt "admin settings"
4306
  msgid "Max image height (px)"
4307
  msgstr ""
4308
 
4309
+ #: core/class-settings.php:647
4310
  msgctxt "admin settings"
4311
  msgid "Turn on thickbox/lightbox?"
4312
  msgstr ""
4313
 
4314
+ #: core/class-settings.php:647
4315
  msgctxt "admin settings"
4316
  msgid ""
4317
  "Uncheck if it conflicts with other elements or plugins installed on your site"
4318
  msgstr ""
4319
 
4320
+ #: core/class-settings.php:649
4321
  msgctxt "admin settings"
4322
  msgid "Thumbnails"
4323
  msgstr ""
4324
 
4325
+ #: core/class-settings.php:650
4326
  msgctxt "admin settings"
4327
  msgid "Thumbnail width (px)"
4328
  msgstr ""
4329
 
4330
+ #: core/class-settings.php:651
4331
  msgctxt "admin settings"
4332
  msgid "Thumbnail height (px)"
4333
  msgstr ""
4334
 
4335
+ #: core/class-settings.php:654
4336
  msgctxt "admin settings"
4337
  msgid "Crop thumbnails to exact dimensions?"
4338
  msgstr ""
4339
 
4340
+ #: core/class-settings.php:657
4341
  msgctxt "admin settings"
4342
  msgid ""
4343
  "When enabled images will match exactly the dimensions above but part of the "
4346
  "Depending on the uploaded images, thumbnails may have different heights."
4347
  msgstr ""
4348
 
4349
+ #: core/class-settings.php:663
4350
  msgctxt "admin settings"
4351
  msgid "Number of free images"
4352
  msgstr ""
4353
 
4354
+ #: core/class-settings.php:668
4355
  msgctxt "admin settings"
4356
  msgid ""
4357
  "For paid listing images, configure that by adding or editing a <a>Fee Plan</"
4358
  "a> instead of this setting, which is ignored for paid listings."
4359
  msgstr ""
4360
 
4361
+ #: core/class-settings.php:671
4362
  msgctxt "admin settings"
4363
  msgid "Use default picture for listings with no picture?"
4364
  msgstr ""
4365
 
4366
+ #: core/class-settings.php:672
4367
  msgctxt "admin settings"
4368
  msgid "Show Thumbnail on main listings page?"
4369
  msgstr ""
4370
 
4371
+ #: core/class-settings.php:701
4372
+ msgctxt "admin settings"
4373
+ msgid "User"
4374
+ msgstr ""
4375
+
4376
+ #: core/class-settings.php:702
4377
+ msgctxt "admin settings"
4378
+ msgid "User registration date"
4379
+ msgstr ""
4380
+
4381
+ #: core/class-settings.php:728
4382
  msgctxt "admin settings"
4383
  msgid ""
4384
  "Could not copy the AJAX compatibility plugin \"%s\". Compatibility mode was "
4385
  "not activated."
4386
  msgstr ""
4387
 
4388
+ #: core/class-settings.php:736
4389
  msgctxt "admin settings"
4390
  msgid ""
4391
  "Could not activate AJAX Compatibility mode: the directory \"%s\" could not "
4392
  "be created."
4393
  msgstr ""
4394
 
4395
+ #: core/class-settings.php:745
4396
  msgctxt "admin settings"
4397
  msgid ""
4398
  "Could not remove the \"Business Directory Plugin - AJAX Compatibility Module"
4399
  "\". Please remove the file \"%s\" manually or deactivate the plugin."
4400
  msgstr ""
4401
 
4402
+ #: core/class-settings.php:1065
4403
  msgctxt "settings"
4404
  msgid "Deactivate License"
4405
  msgstr ""
4406
 
4407
+ #: core/class-settings.php:1067
4408
  msgctxt "settings"
4409
  msgid "Deactivating license..."
4410
  msgstr ""
4411
 
4412
+ #: core/class-settings.php:1070
4413
  msgctxt "settings"
4414
  msgid "Activate License"
4415
  msgstr ""
4416
 
4417
+ #: core/class-settings.php:1072
4418
  msgctxt "settings"
4419
  msgid "Activating license..."
4420
  msgstr ""
4421
 
4422
+ #: core/class-settings.php:1095
4423
  msgctxt "admin settings"
4424
  msgid "Valid placeholders: %s"
4425
  msgstr ""
4426
 
4427
+ #: core/class-settings.php:1129
4428
  msgctxt "settings email"
4429
  msgid "Click to edit e-mail"
4430
  msgstr ""
4431
 
4432
+ #: core/class-settings.php:1130
4433
  msgctxt "settings email"
4434
  msgid "Click to edit"
4435
  msgstr ""
4436
 
4437
+ #: core/class-settings.php:1143
4438
  msgctxt "settings email"
4439
  msgid "E-Mail Subject"
4440
  msgstr ""
4441
 
4442
+ #: core/class-settings.php:1154
4443
  msgctxt "settings email"
4444
  msgid "E-Mail Body"
4445
  msgstr ""
4446
 
4447
+ #: core/class-settings.php:1165
4448
  msgctxt "settings email"
4449
  msgid "You can use the following placeholders:"
4450
  msgstr ""
4451
 
4452
+ #: core/class-settings.php:1188
4453
  msgctxt "settings email"
4454
  msgid "Preview e-mail"
4455
  msgstr ""
4456
 
4457
+ #: core/class-settings.php:1189
4458
  msgctxt "settings email"
4459
  msgid "Cancel"
4460
  msgstr ""
4461
 
4462
+ #: core/class-settings.php:1190
4463
  msgctxt "settings email"
4464
  msgid "Save Changes"
4465
  msgstr ""
4466
 
4467
+ #: core/class-settings.php:1209
4468
  msgctxt "settings email"
4469
  msgid "Site title"
4470
  msgstr ""
4471
 
4472
+ #: core/class-settings.php:1212
4473
  msgctxt "settings email"
4474
  msgid "Site title (with link)"
4475
  msgstr ""
4476
 
4477
+ #: core/class-settings.php:1215
4478
  msgctxt "settings email"
4479
  msgid "Site address (with link)"
4480
  msgstr ""
4481
 
4482
+ #: core/class-settings.php:1218
4483
  msgctxt "settings email"
4484
  msgid "Directory URL (with link)"
4485
  msgstr ""
4486
 
4487
+ #: core/class-settings.php:1221
4488
  msgctxt "settings email"
4489
  msgid "Current date"
4490
  msgstr ""
4491
 
4492
+ #: core/class-settings.php:1224
4493
  msgctxt "settings email"
4494
  msgid "Current time"
4495
  msgstr ""