Business Directory Plugin - Version 5.5.12

Version Description

Download this release

Release Info

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

Code changes from version 5.5.11 to 5.5.12

README.TXT CHANGED
@@ -5,8 +5,8 @@ Tags: business directory, listings, directory plugin, company business directory
5
  Requires at least: 4.8
6
  Requires PHP: 5.6
7
  Tested up to: 5.3
8
- Last Updated: 2019-Oct-30
9
- Stable tag: 5.5.11
10
  License: GPLv2 or later
11
 
12
  Build any kind of local listings directory, directory of business providers, a Yellow-Pages business directory, Yelp-like review directory, property listings and much more! Make your listings sing with Business Directory Plugin.
@@ -146,6 +146,14 @@ If you are having problems please visit [support forum](http://www.businessdirec
146
 
147
  == Changelog ==
148
 
 
 
 
 
 
 
 
 
149
  = Version 5.5.11 =
150
  * Run iframe resize script after using document.ready JS action. (#4273)
151
  * Modify Random widget query to prevent using RAND() SQL function. (#4283)
5
  Requires at least: 4.8
6
  Requires PHP: 5.6
7
  Tested up to: 5.3
8
+ Last Updated: 2019-Nov-20
9
+ Stable tag: 5.5.12
10
  License: GPLv2 or later
11
 
12
  Build any kind of local listings directory, directory of business providers, a Yellow-Pages business directory, Yelp-like review directory, property listings and much more! Make your listings sing with Business Directory Plugin.
146
 
147
  == Changelog ==
148
 
149
+ = Version 5.5.12 =
150
+ * Allow access to search shortcode.
151
+ * Remove not used query var to prevent compatibility issues.
152
+ * Cast listing keys array to prevent invalid foreach argument in random listings Widget.
153
+ * Verify renewal reminder email was sent after clicking the button on listing WP dashboard.
154
+ * Add notice for admins when submit listing is restricted due to no fee plans available.
155
+ * Apply filters to textarea input to support zip code search.
156
+
157
  = Version 5.5.11 =
158
  * Run iframe resize script after using document.ready JS action. (#4273)
159
  * Modify Random widget query to prevent using RAND() SQL function. (#4283)
business-directory-plugin.php CHANGED
@@ -3,7 +3,7 @@
3
  * Plugin Name: Business Directory Plugin
4
  * Plugin URI: https://www.businessdirectoryplugin.com
5
  * Description: Provides the ability to maintain a free or paid business directory on your WordPress powered site.
6
- * Version: 5.5.11
7
  * Author: D. Rodenbaugh
8
  * Author URI: https://businessdirectoryplugin.com
9
  * Text Domain: WPBDM
3
  * Plugin Name: Business Directory Plugin
4
  * Plugin URI: https://www.businessdirectoryplugin.com
5
  * Description: Provides the ability to maintain a free or paid business directory on your WordPress powered site.
6
+ * Version: 5.5.12
7
  * Author: D. Rodenbaugh
8
  * Author URI: https://businessdirectoryplugin.com
9
  * Text Domain: WPBDM
includes/admin/class-admin.php CHANGED
@@ -750,8 +750,12 @@ to how WordPress stores the data.", 'WPBDM' )
750
  if ( ! $listing )
751
  break;
752
 
753
- wpbdp()->listing_email_notification->send_notices( 'expiration', '0 days', $listing_id, true );
754
- $this->messages[] = _x( 'Renewal email sent.', 'admin', 'WPBDM' );
 
 
 
 
755
 
756
  break;
757
 
750
  if ( ! $listing )
751
  break;
752
 
753
+ if ( wpbdp()->listing_email_notification->send_notices( 'expiration', '0 days', $listing_id, true ) ) {
754
+ $this->messages[] = _x( 'Renewal email sent.', 'admin', 'WPBDM' );
755
+ break;
756
+ }
757
+
758
+ $this->messages[] = array ( _x( 'Could not send renewal email, notice template at listing expiration not found.', 'admin', 'WPBDM' ), 'error' );
759
 
760
  break;
761
 
includes/class-cpt-integration.php CHANGED
@@ -73,6 +73,8 @@ class WPBDP__CPT_Integration {
73
 
74
  add_filter('comments_open', array($this, '_allow_comments'), 10, 2);
75
 
 
 
76
  add_filter( 'pre_trash_post', array( &$this, 'pre_listing_delete' ), 10, 2 );
77
  add_filter( 'pre_delete_post', array( &$this, 'pre_listing_delete' ), 10, 2 );
78
  add_action( 'before_delete_post', array( &$this, 'after_listing_delete' ) );
@@ -218,6 +220,32 @@ class WPBDP__CPT_Integration {
218
  return $open;
219
  }
220
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
221
  /**
222
  *
223
  * @since 5.5.11
@@ -250,6 +278,10 @@ class WPBDP__CPT_Integration {
250
  }
251
  }
252
 
 
 
 
 
253
  global $wpbdp;
254
 
255
  try {
@@ -258,8 +290,9 @@ class WPBDP__CPT_Integration {
258
  delete_post_meta( $listing->get_id(), '_gateway_suscription_cancel_status' );
259
  } catch ( Exception $e ) {
260
  update_post_meta( $listing->get_id(), '_gateway_suscription_cancel_status', 'not_canceled' );
261
- if ( 'pre_delete_post' === current_filter() ) {
262
  wp_die( $e->getMessage() );
 
263
  }
264
  }
265
 
73
 
74
  add_filter('comments_open', array($this, '_allow_comments'), 10, 2);
75
 
76
+ add_filter( 'bulk_post_updated_messages', array( $this, 'bulk_post_updated_messages' ), 10, 2 );
77
+
78
  add_filter( 'pre_trash_post', array( &$this, 'pre_listing_delete' ), 10, 2 );
79
  add_filter( 'pre_delete_post', array( &$this, 'pre_listing_delete' ), 10, 2 );
80
  add_action( 'before_delete_post', array( &$this, 'after_listing_delete' ) );
220
  return $open;
221
  }
222
 
223
+ /**
224
+ * Specify custom bulk actions messages for WPBDP post type.
225
+ *
226
+ * @param array $bulk_messages Array of messages.
227
+ * @param array $bulk_counts Array of how many objects were updated.
228
+ * @return array
229
+ *
230
+ * @since 5.5.11
231
+ */
232
+ public function bulk_post_updated_messages( $bulk_messages, $bulk_counts ) {
233
+ $bulk_messages[WPBDP_POST_TYPE] = array(
234
+ /* translators: %s: listing count */
235
+ 'updated' => _n( '%s listing updated.', '%s listings updated.', $bulk_counts['updated'], 'wpbdp' ),
236
+ /* translators: %s: listing count */
237
+ 'locked' => _n( '%s listing not updated, somebody is editing it.', '%s listings not updated, somebody is editing them.', $bulk_counts['locked'], 'wpbdp' ),
238
+ /* translators: %s: listing count */
239
+ 'deleted' => _n( '%s listing permanently deleted.', '%s listings permanently deleted.', $bulk_counts['deleted'], 'wpbdp' ),
240
+ /* translators: %s: listing count */
241
+ 'trashed' => _n( '%s listing moved to the Trash.', '%s listings moved to the Trash.', $bulk_counts['trashed'], 'wpbdp' ),
242
+ /* translators: %s: listing count */
243
+ 'untrashed' => _n( '%s listing restored from the Trash.', '%s listings restored from the Trash.', $bulk_counts['untrashed'], 'wpbdp' ),
244
+ );
245
+
246
+ return $bulk_messages;
247
+ }
248
+
249
  /**
250
  *
251
  * @since 5.5.11
278
  }
279
  }
280
 
281
+ if ( ! $subscription->get_parent_payment() ) {
282
+ return $check;
283
+ }
284
+
285
  global $wpbdp;
286
 
287
  try {
290
  delete_post_meta( $listing->get_id(), '_gateway_suscription_cancel_status' );
291
  } catch ( Exception $e ) {
292
  update_post_meta( $listing->get_id(), '_gateway_suscription_cancel_status', 'not_canceled' );
293
+ if ( 'pre_delete_post' === current_filter() && ( ! isset( $_REQUEST['page'] ) || 'wpbdp_uninstall' !== $_REQUEST['page'] ) ) {
294
  wp_die( $e->getMessage() );
295
+ return false;
296
  }
297
  }
298
 
includes/class-listing-email-notification.php CHANGED
@@ -143,16 +143,17 @@ class WPBDP__Listing_Email_Notification {
143
  * @SuppressWarnings(PHPMD.NPathComplexity)
144
  */
145
  public function send_notices( $event, $relative_time, $listing, $force_resend = false ) {
 
146
  $listing = is_object( $listing ) ? $listing : wpbdp_get_listing( absint( $listing ) );
147
 
148
  if ( ! $listing ) {
149
- return;
150
  }
151
 
152
  $post_status = get_post_status( $listing->get_id() );
153
 
154
  if ( ! $post_status || in_array( $post_status, array( 'trash', 'auto-draft' ), true ) ) {
155
- return;
156
  }
157
 
158
  $all_notices = wpbdp_get_option( 'expiration-notices' );
@@ -212,9 +213,12 @@ class WPBDP__Listing_Email_Notification {
212
  // TODO: Why was the line below commented out?
213
  // See: https://github.com/drodenbaugh/BusinessDirectoryPlugin/commit/0420174dd3f93089e8088b942f3ca08d82c13d62
214
  // update_post_meta( $listing->get_id(), '_wpbdp_notice_sent_' . $notice_key, current_time( 'timestamp' ) );
 
215
  }
216
  // phpcs:enable
217
  }
 
 
218
  }
219
 
220
  /**
143
  * @SuppressWarnings(PHPMD.NPathComplexity)
144
  */
145
  public function send_notices( $event, $relative_time, $listing, $force_resend = false ) {
146
+ $sent = false;
147
  $listing = is_object( $listing ) ? $listing : wpbdp_get_listing( absint( $listing ) );
148
 
149
  if ( ! $listing ) {
150
+ return $sent;
151
  }
152
 
153
  $post_status = get_post_status( $listing->get_id() );
154
 
155
  if ( ! $post_status || in_array( $post_status, array( 'trash', 'auto-draft' ), true ) ) {
156
+ return $sent;
157
  }
158
 
159
  $all_notices = wpbdp_get_option( 'expiration-notices' );
213
  // TODO: Why was the line below commented out?
214
  // See: https://github.com/drodenbaugh/BusinessDirectoryPlugin/commit/0420174dd3f93089e8088b942f3ca08d82c13d62
215
  // update_post_meta( $listing->get_id(), '_wpbdp_notice_sent_' . $notice_key, current_time( 'timestamp' ) );
216
+ $sent = true;
217
  }
218
  // phpcs:enable
219
  }
220
+
221
+ return $sent;
222
  }
223
 
224
  /**
includes/class-listings-api.php CHANGED
@@ -22,9 +22,9 @@ if ( ! class_exists( 'WPBDP_Listings_API' ) ) {
22
  switch ( $item['type'] ) {
23
  case 'recurring_plan':
24
  case 'plan':
25
- $listing->update_plan( $item, array( 'recalculate' => $item['is_renewal'] ? 0 : 1 ) );
26
 
27
- if ( $item['is_renewal'] ) {
28
  $listing->renew();
29
  wpbdp_insert_log(
30
  array(
22
  switch ( $item['type'] ) {
23
  case 'recurring_plan':
24
  case 'plan':
25
+ $listing->update_plan( $item, array( 'recalculate' => ! empty( $item['is_renewal'] ) ? 0 : 1 ) );
26
 
27
+ if ( ! empty( $item['is_renewal'] ) ) {
28
  $listing->renew();
29
  wpbdp_insert_log(
30
  array(
includes/class-query-integration.php CHANGED
@@ -32,7 +32,6 @@ class WPBDP__Query_Integration {
32
  array_push( $vars, 'listing' );
33
  array_push( $vars, 'category_id' ); // TODO: are we really using this var?
34
  array_push( $vars, 'category' );
35
- array_push( $vars, 'action' ); // TODO: are we really using this var?
36
  array_push( $vars, 'wpbdpx' );
37
  array_push( $vars, 'wpbdp-listener' );
38
  array_push( $vars, 'region' );
32
  array_push( $vars, 'listing' );
33
  array_push( $vars, 'category_id' ); // TODO: are we really using this var?
34
  array_push( $vars, 'category' );
 
35
  array_push( $vars, 'wpbdpx' );
36
  array_push( $vars, 'wpbdp-listener' );
37
  array_push( $vars, 'region' );
includes/class-wpbdp.php CHANGED
@@ -19,7 +19,7 @@ final class WPBDP {
19
  }
20
 
21
  private function setup_constants() {
22
- define( 'WPBDP_VERSION', '5.5.11' );
23
 
24
  define( 'WPBDP_PATH', wp_normalize_path( plugin_dir_path( WPBDP_PLUGIN_FILE ) ) );
25
  define( 'WPBDP_INC', trailingslashit( WPBDP_PATH . 'includes' ) );
19
  }
20
 
21
  private function setup_constants() {
22
+ define( 'WPBDP_VERSION', '5.5.12' );
23
 
24
  define( 'WPBDP_PATH', wp_normalize_path( plugin_dir_path( WPBDP_PLUGIN_FILE ) ) );
25
  define( 'WPBDP_INC', trailingslashit( WPBDP_PATH . 'includes' ) );
includes/fields/class-fieldtypes-textarea.php CHANGED
@@ -30,13 +30,16 @@ class WPBDP_FieldTypes_TextArea extends WPBDP_Form_Field_Type {
30
  return $wpbdp->formfields->get_field_type( 'textfield' )->render_field_inner( $field, $value, $context, $extra, $field_settings );
31
  }
32
 
 
 
 
33
  if ( $this->should_show_wysiwyg_editor( $field ) && $this->can_show_wysiwyg_editor() ) {
34
  $html = $this->render_wysiwyg_editor( $field, $value );
35
  } else {
36
  $html = sprintf(
37
  '<textarea id="%s" name="%s">%s</textarea>',
38
  'wpbdp-field-' . $field->get_id(),
39
- 'listingfields[' . $field->get_id() . ']',
40
  $value ? esc_attr( $value ) : ''
41
  );
42
  }
30
  return $wpbdp->formfields->get_field_type( 'textfield' )->render_field_inner( $field, $value, $context, $extra, $field_settings );
31
  }
32
 
33
+ // @since 5.5.12
34
+ $value = apply_filters_ref_array( 'wpbdp_fields_text_value_for_rendering', array( $value, null, $field ) );
35
+
36
  if ( $this->should_show_wysiwyg_editor( $field ) && $this->can_show_wysiwyg_editor() ) {
37
  $html = $this->render_wysiwyg_editor( $field, $value );
38
  } else {
39
  $html = sprintf(
40
  '<textarea id="%s" name="%s">%s</textarea>',
41
  'wpbdp-field-' . $field->get_id(),
42
+ apply_filters( 'wpbdp_fields_text_input_name', 'listingfields[' . $field->get_id() . ']', $field, $context, $extra, $field_settings ),
43
  $value ? esc_attr( $value ) : ''
44
  );
45
  }
includes/fields/class-form-field.php CHANGED
@@ -478,6 +478,9 @@ class WPBDP_Form_Field {
478
  return true;
479
  }
480
 
 
 
 
481
  foreach ( $this->validators as $validator ) {
482
  if ( 'required-in-search' == $validator ) {
483
  continue;
478
  return true;
479
  }
480
 
481
+ // @since 5.5.12
482
+ $value = apply_filters_ref_array( 'wpbdp_fields_text_value_for_rendering', array( $value, null, $this ) );
483
+
484
  foreach ( $this->validators as $validator ) {
485
  if ( 'required-in-search' == $validator ) {
486
  continue;
includes/views/listing_contact.php CHANGED
@@ -31,7 +31,7 @@ class WPBDP__Views__Listing_Contact extends WPBDP__View {
31
 
32
  $current_user = is_user_logged_in() ? wp_get_current_user() : null;
33
 
34
- if ( $current_user->exists() ) {
35
  $this->name = $current_user->user_firstname ? $current_user->user_firstname . ( $current_user->user_lastname ? ' ' . $current_user->user_lastname : '' ) : $current_user->data->user_login;
36
  $this->email = $current_user->data->user_email;
37
  }
31
 
32
  $current_user = is_user_logged_in() ? wp_get_current_user() : null;
33
 
34
+ if ( $current_user && $current_user->exists() ) {
35
  $this->name = $current_user->user_firstname ? $current_user->user_firstname . ( $current_user->user_lastname ? ' ' . $current_user->user_lastname : '' ) : $current_user->data->user_login;
36
  $this->email = $current_user->data->user_email;
37
  }
includes/views/search.php CHANGED
@@ -19,8 +19,9 @@ class WPBDP__Views__Search extends WPBDP__View {
19
  $searching = ( ! empty( $_GET ) && ( ! empty( $_GET['kw'] ) || ! empty( $_GET['dosrch'] ) ) );
20
  $searching = apply_filters( 'wpbdp_searching_request', $searching );
21
  $search = null;
 
22
 
23
- if( ! $searching && 'none' === wpbdp_get_option( 'search-form-in-results' ) ) {
24
  $this->_redirect( wpbdp_url( 'all_listings' ) );
25
  }
26
 
19
  $searching = ( ! empty( $_GET ) && ( ! empty( $_GET['kw'] ) || ! empty( $_GET['dosrch'] ) ) );
20
  $searching = apply_filters( 'wpbdp_searching_request', $searching );
21
  $search = null;
22
+ $redirect = ! $searching && isset( $_GET['kw'] ) && 'none' === wpbdp_get_option( 'search-form-in-results' );
23
 
24
+ if( $redirect ) {
25
  $this->_redirect( wpbdp_url( 'all_listings' ) );
26
  }
27
 
includes/views/submit_listing.php CHANGED
@@ -505,7 +505,21 @@ class WPBDP__Views__Submit_Listing extends WPBDP__Authenticated_Listing_View {
505
  $plans = $this->available_plans;
506
 
507
  if ( ! $plans && ! $this->editing ) {
508
- wp_die( _x( 'Can not submit a listing at this moment. Please try again later.', 'submit listing', 'WPBDM' ) );
 
 
 
 
 
 
 
 
 
 
 
 
 
 
509
  }
510
 
511
  $msg = _x( 'Listing submission is not available at the moment. Contact the administrator for details.', 'templates', 'WPBDM' );
505
  $plans = $this->available_plans;
506
 
507
  if ( ! $plans && ! $this->editing ) {
508
+ $msg = _x( 'Can not submit a listing at this moment. Please try again later.', 'submit listing', 'WPBDM' );
509
+ if ( current_user_can( 'administrator' ) ) {
510
+ $msg .= '<br><br>';
511
+ $msg .= _x( '<b>There are no Fee Plans available</b>, without a fee plan site users can\'t submit a listing. %s to create a fee plan', 'templates', 'WPBDM' );
512
+
513
+ $msg = sprintf(
514
+ $msg,
515
+ sprintf(
516
+ '<a href="%s">%s</a>',
517
+ admin_url( 'admin.php?page=wpbdp-admin-fees' ),
518
+ _x( 'Go to "Manage Fees"', 'admin', 'WPBDM' )
519
+ )
520
+ );
521
+ }
522
+ wp_die( $msg );
523
  }
524
 
525
  $msg = _x( 'Listing submission is not available at the moment. Contact the administrator for details.', 'templates', 'WPBDM' );
includes/widgets/widget-random-listings.php CHANGED
@@ -19,14 +19,19 @@ class WPBDP_RandomListingsWidget extends WPBDP_Listings_Widget {
19
  array(
20
  'post_type' => WPBDP_POST_TYPE,
21
  'post_status' => 'publish',
22
- 'suppress_filters' => false
 
23
  )
24
  );
25
 
26
  $posts = $posts->posts;
27
  $posts_count = count( $posts );
28
 
29
- $keys = array_rand( $posts, $instance['number_of_listings'] < $posts_count ? $instance['number_of_listings'] : $posts_count );
 
 
 
 
30
  $rand = array();
31
 
32
  foreach ( $keys as $key ) {
19
  array(
20
  'post_type' => WPBDP_POST_TYPE,
21
  'post_status' => 'publish',
22
+ 'suppress_filters' => false,
23
+ 'posts_per_page' => -1
24
  )
25
  );
26
 
27
  $posts = $posts->posts;
28
  $posts_count = count( $posts );
29
 
30
+ if ( ! $posts_count ) {
31
+ return;
32
+ }
33
+
34
+ $keys = (array)array_rand( $posts, $instance['number_of_listings'] < $posts_count ? $instance['number_of_listings'] : $posts_count );
35
  $rand = array();
36
 
37
  foreach ( $keys as $key ) {
languages/WPBDM-ar.po CHANGED
@@ -5,7 +5,7 @@ msgstr ""
5
  "Project-Id-Version: Business Directory Plugin v5.5\n"
6
  "Report-Msgid-Bugs-To: https://wordpress.org/support/plugin/business-"
7
  "directory-plugin\n"
8
- "POT-Creation-Date: 2019-10-30 22:21:32+00:00\n"
9
  "PO-Revision-Date: 2017-01-16 17:47-0500\n"
10
  "Last-Translator: BD Team <support@businessdirectoryplugin.com>\n"
11
  "Language-Team: BD Team <support@businessdirectoryplugin.com>\n"
@@ -237,6 +237,65 @@ msgstr "وسوم الدليل"
237
  msgid "Directory Tag"
238
  msgstr "وسم الدليل"
239
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
240
  #: includes/class-payment-gateway.php:142
241
  msgid ""
242
  "There was an unexpected error trying to cancel your subscription. Please "
@@ -1096,7 +1155,14 @@ msgctxt "admin"
1096
  msgid "Renewal email sent."
1097
  msgstr "تم إرسال بريد التجديد."
1098
 
1099
- #: includes/admin/class-admin.php:761
 
 
 
 
 
 
 
1100
  #, fuzzy
1101
  msgctxt "admin"
1102
  msgid "Listing report deleted."
@@ -1108,23 +1174,23 @@ msgstr[3] "إنتهاء صلاحية الإعلان"
1108
  msgstr[4] "إنتهاء صلاحية الإعلان"
1109
  msgstr[5] "إنتهاء صلاحية الإعلان"
1110
 
1111
- #: includes/admin/class-admin.php:809
1112
  #, fuzzy
1113
  msgctxt "admin"
1114
  msgid "Access keys sent."
1115
  msgstr "مفتاح الوصول"
1116
 
1117
- #: includes/admin/class-admin.php:811
1118
  msgctxt "admin"
1119
  msgid "The access keys couldn't be sent."
1120
  msgstr ""
1121
 
1122
- #: includes/admin/class-admin.php:869 includes/admin/class-admin.php:875
1123
  msgctxt "admin"
1124
  msgid "Listing Count"
1125
  msgstr "عدد الإعلانات"
1126
 
1127
- #: includes/admin/class-admin.php:937
1128
  msgctxt "admin"
1129
  msgid ""
1130
  "<b>Business Directory Plugin</b> requires a page with the "
@@ -1133,7 +1199,7 @@ msgstr ""
1133
  "<b>إضافة دليل الأعمال</b> تتطلب صفحة فيها الكود القصير "
1134
  "<tt>[businessdirectory]</tt> لكي تعمل بشكل صحيح."
1135
 
1136
- #: includes/admin/class-admin.php:939
1137
  msgctxt "admin"
1138
  msgid ""
1139
  "You can create this page by yourself or let Business Directory do this for "
@@ -1142,12 +1208,12 @@ msgstr ""
1142
  "يمكنك إنشاء هذه الصفحة بنفسك أو ترك دليل الأعمال القيام بذلك نيابة عنك "
1143
  "تلقائياً."
1144
 
1145
- #: includes/admin/class-admin.php:943
1146
  msgctxt "admin"
1147
  msgid "Create required pages for me"
1148
  msgstr "إنشاء الصفحات المطلوب نيابة عني"
1149
 
1150
- #: includes/admin/class-admin.php:976
1151
  msgctxt "admin"
1152
  msgid ""
1153
  "<strong>Business Directory Plugin</strong> requires <strong>PHP 5.6</strong> "
@@ -1155,7 +1221,7 @@ msgid ""
1155
  "your provider to upgrade in order to prevent any issues with the plugin."
1156
  msgstr ""
1157
 
1158
- #: includes/admin/class-admin.php:999
1159
  msgctxt "admin"
1160
  msgid ""
1161
  "We noticed you want your Business Directory users to register before posting "
@@ -1211,7 +1277,7 @@ msgstr ""
1211
  "يمكنك إنشاء هذه الحقول المخصصة بنفسك داخل \"إدارة الحقول\" أو السماح لدليل "
1212
  "الأعمال للقيام بذلك نيابة عنك تلقائياً."
1213
 
1214
- #: includes/admin/form-fields.php:214 includes/views/submit_listing.php:521
1215
  msgctxt "admin"
1216
  msgid "Go to \"Manage Form Fields\""
1217
  msgstr "إنتقل إلى \"إدارة حقول\""
@@ -1231,6 +1297,12 @@ msgctxt "admin"
1231
  msgid "Abandoned"
1232
  msgstr "متخلى عنه"
1233
 
 
 
 
 
 
 
1234
  #: includes/admin/class-admin-listings.php:304
1235
  msgctxt "listing attribute"
1236
  msgid "No Fee Plan"
@@ -1590,7 +1662,7 @@ msgctxt "admin menu"
1590
  msgid "Manage Options"
1591
  msgstr "إدارة الخيارات"
1592
 
1593
- #: includes/admin/class-admin.php:867
1594
  msgctxt "admin category id"
1595
  msgid "ID"
1596
  msgstr "المعرف"
@@ -2859,37 +2931,37 @@ msgctxt "form-fields admin"
2859
  msgid "Field Display Order"
2860
  msgstr "خيارات عرض الحقل"
2861
 
2862
- #: includes/fields/class-fieldtypes-textarea.php:194
2863
  msgctxt "form-fields admin"
2864
  msgid "Allow HTML input for this field?"
2865
  msgstr "السماح بإدخال HTML لهذا الحقل؟"
2866
 
2867
- #: includes/fields/class-fieldtypes-textarea.php:197
2868
  msgctxt "form-fields admin"
2869
  msgid "Allow IFRAME tags in content?"
2870
  msgstr "السماح لوسوم IFRAME في المحتوى؟"
2871
 
2872
- #: includes/fields/class-fieldtypes-textarea.php:201
2873
  msgctxt "form-fields admin"
2874
  msgid "No"
2875
  msgstr "لا"
2876
 
2877
- #: includes/fields/class-fieldtypes-textarea.php:202
2878
  msgctxt "form-fields admin"
2879
  msgid "Yes"
2880
  msgstr "نعم"
2881
 
2882
- #: includes/fields/class-fieldtypes-textarea.php:207
2883
  msgctxt "form-fields admin"
2884
  msgid "Allow WordPress shortcodes in this field?"
2885
  msgstr "السماح بالأكواد القصيرة لووردبريس في هذا الحقل؟"
2886
 
2887
- #: includes/fields/class-fieldtypes-textarea.php:212
2888
  msgctxt "form-fields admin"
2889
  msgid "Display a WYSIWYG editor on the frontend?"
2890
  msgstr "عرض محرر WYSIWYG في واجهة الموقع؟"
2891
 
2892
- #: includes/fields/class-fieldtypes-textarea.php:215
2893
  msgctxt "form-fields admin"
2894
  msgid ""
2895
  "<b>Warning:</b> Users can use this feature to get around your image limits "
@@ -2898,12 +2970,12 @@ msgstr ""
2898
  "<b>تحذير:</b> يمكن للأعضاء استخدام هذه الميزة للقيام بتحايل على قيود الصورة "
2899
  "الخاصة بك في رسوم الخطط.."
2900
 
2901
- #: includes/fields/class-fieldtypes-textarea.php:216
2902
  msgctxt "form-fields admin"
2903
  msgid "Allow images in WYSIWYG editor?"
2904
  msgstr "السماح بالصور في محرر WYSIWYG؟"
2905
 
2906
- #: includes/fields/class-fieldtypes-textarea.php:219
2907
  msgctxt "form-fields admin"
2908
  msgid ""
2909
  "<b>Advanced users only!</b> Unless you've been told to change this, don't "
@@ -2912,50 +2984,50 @@ msgstr ""
2912
  "<b>للأعضاء المتقدمين فقط!</b> إلا إذا كنت قيل لك بتغيير هذا، لا تبدل إلا إذا "
2913
  "كنت تعرف ما تفعله."
2914
 
2915
- #: includes/fields/class-fieldtypes-textarea.php:220
2916
  msgctxt "form-fields admin"
2917
  msgid "Apply \"the_content\" filter before displaying this field?"
2918
  msgstr "تطبيق عامل تصفية \"the_content\" قبل عرض هذا الحقل؟"
2919
 
2920
- #: includes/fields/class-fieldtypes-textarea.php:223
2921
  msgctxt "form-fields admin"
2922
  msgid "Use shortened version of Description field as excerpt"
2923
  msgstr ""
2924
 
2925
- #: includes/fields/class-fieldtypes-textarea.php:224
2926
  msgctxt "form-fields admin"
2927
  msgid ""
2928
  "Enable always (override the Short Description given with a shortened Long "
2929
  "Description)"
2930
  msgstr ""
2931
 
2932
- #: includes/fields/class-fieldtypes-textarea.php:225
2933
  msgctxt "form-fields admin"
2934
  msgid ""
2935
  "Enable conditionally (override ONLY when Short Description is empty with a "
2936
  "shortened Long Description)"
2937
  msgstr ""
2938
 
2939
- #: includes/fields/class-fieldtypes-textarea.php:226
2940
  msgctxt "form-fields admin"
2941
  msgid "Disable (use the Short Description all the time, empty or not)"
2942
  msgstr ""
2943
 
2944
- #: includes/fields/class-fieldtypes-textarea.php:228
2945
  msgctxt "form-fields admin"
2946
  msgid ""
2947
  "Truncates the description field to the value set here. To display all of the "
2948
  "description, set to 0."
2949
  msgstr ""
2950
 
2951
- #: includes/fields/class-fieldtypes-textarea.php:229
2952
  msgctxt "form-fields admin"
2953
  msgid ""
2954
  "Number of Characters from Short Description/Excerpt to Display in List View "
2955
  "(only)"
2956
  msgstr ""
2957
 
2958
- #: includes/fields/class-fieldtypes-textarea.php:234
2959
  msgctxt "form-fields admin"
2960
  msgid "Automatically generate excerpt from content field?"
2961
  msgstr "تلقائياً إنشاء مقتطفات من حقل المحتوى؟"
@@ -6052,19 +6124,19 @@ msgid "Free Listing"
6052
  msgstr "إعلان مجاني"
6053
 
6054
  #. translators: [%s] is the name of the blog.
6055
- #: includes/class-listing-email-notification.php:235
6056
  msgctxt "notify email"
6057
  msgid "[%s] New listing notification"
6058
  msgstr "[%s] تنبيه الإعلان الجديد"
6059
 
6060
  #. translators: [%s] is the name of the blog.
6061
- #: includes/class-listing-email-notification.php:286
6062
  msgctxt "notify email"
6063
  msgid "[%s] Listing edit notification"
6064
  msgstr "[%s] تنبيه تحرير الإعلان"
6065
 
6066
  #. translators: %s is the name of the blog.
6067
- #: includes/class-listing-email-notification.php:358
6068
  #, fuzzy
6069
  msgctxt "notify email"
6070
  msgid "[%s] Reported listing notification"
@@ -6432,80 +6504,80 @@ msgstr ""
6432
  "لا يمكن أن نقوم بمعالجة الدفع الخاص بك في هذه اللحظة. المرجو المحاولة مرة "
6433
  "أخرى لاحقاً."
6434
 
6435
- #: includes/views/submit_listing.php:536
6436
  #, fuzzy
6437
  msgctxt "submit listing"
6438
  msgid "Please select a category."
6439
  msgstr "المرجو تحديد خيار رسوم التصنيف \"%s\"."
6440
 
6441
- #: includes/views/submit_listing.php:549
6442
  #, fuzzy
6443
  msgctxt "submit listing"
6444
  msgid "Please select a category for your listing."
6445
  msgstr "المرجو تحديد خيار رسوم التصنيف \"%s\"."
6446
 
6447
- #: includes/views/submit_listing.php:569
6448
  msgctxt "submit listing"
6449
  msgid "Please choose a valid category for your plan."
6450
  msgstr ""
6451
 
6452
- #: includes/views/submit_listing.php:571
6453
  #, fuzzy
6454
  msgctxt "submit listing"
6455
  msgid "Please choose a valid fee plan for your category selection."
6456
  msgstr "المرجو تحديد خيار رسوم التصنيف \"%s\"."
6457
 
6458
- #: includes/views/submit_listing.php:812
6459
  #, fuzzy
6460
  msgctxt "submit listing"
6461
  msgid "Please enter your desired username."
6462
  msgstr "يرجى إدخال إسمك."
6463
 
6464
- #: includes/views/submit_listing.php:817
6465
  #, fuzzy
6466
  msgctxt "submit listing"
6467
  msgid "Please enter the e-mail for your new account."
6468
  msgstr "يرجى إدخال إسمك."
6469
 
6470
- #: includes/views/submit_listing.php:822
6471
  msgctxt "submit listing"
6472
  msgid "Please enter the password for your new account."
6473
  msgstr ""
6474
 
6475
- #: includes/views/submit_listing.php:832
6476
  msgctxt "submit listing"
6477
  msgid "The username you chose is already in use. Please use a different one."
6478
  msgstr ""
6479
 
6480
- #: includes/views/submit_listing.php:837
6481
  msgctxt "submit listing"
6482
  msgid "The e-mail address you chose for your account is already in use."
6483
  msgstr ""
6484
 
6485
- #: includes/views/submit_listing.php:852
6486
  msgctxt "submit listing"
6487
  msgid "Create a user account on this site"
6488
  msgstr ""
6489
 
6490
- #: includes/views/submit_listing.php:859
6491
  msgctxt "submit listing"
6492
  msgid ""
6493
  "You need to create an account on the site. Please fill out the form below."
6494
  msgstr ""
6495
 
6496
- #: includes/views/submit_listing.php:865
6497
  #, fuzzy
6498
  msgctxt "submit listing"
6499
  msgid "Username:"
6500
  msgstr "عضو"
6501
 
6502
- #: includes/views/submit_listing.php:874
6503
  #, fuzzy
6504
  msgctxt "submit listing"
6505
  msgid "Email:"
6506
  msgstr "البريد الإلكتروني: %s"
6507
 
6508
- #: includes/views/submit_listing.php:883
6509
  msgctxt "submit listing"
6510
  msgid "Password:"
6511
  msgstr ""
@@ -6717,7 +6789,7 @@ msgctxt "form-fields api"
6717
  msgid "Link Text (optional):"
6718
  msgstr "رابط نصي (اختياري):"
6719
 
6720
- #: includes/fields/class-form-field.php:707
6721
  msgctxt "form-fields api"
6722
  msgid ""
6723
  "This form field can't be deleted because it is required for the plugin to "
@@ -6792,22 +6864,22 @@ msgctxt "form-fields-api"
6792
  msgid "Invalid form field type"
6793
  msgstr "نوع حقل استمارة غير صحيح"
6794
 
6795
- #: includes/fields/class-form-field.php:586
6796
  msgctxt "form-fields-api"
6797
  msgid "Field label is required."
6798
  msgstr "تسمية الحقل مطلوب."
6799
 
6800
- #: includes/fields/class-form-field.php:590
6801
  msgctxt "form-fields-api"
6802
  msgid "Field label max length is 255 characters."
6803
  msgstr ""
6804
 
6805
- #: includes/fields/class-form-field.php:594
6806
  msgctxt "form-fields-api"
6807
  msgid "Field description max length is 255 characters."
6808
  msgstr ""
6809
 
6810
- #: includes/fields/class-form-field.php:605
6811
  msgctxt "form-fields-api"
6812
  msgid ""
6813
  "You can't change from %2$s field type to the one you wanted--the types are "
@@ -6815,31 +6887,31 @@ msgid ""
6815
  "delete this current field and create a NEW field of type %1$s instead."
6816
  msgstr ""
6817
 
6818
- #: includes/fields/class-form-field.php:608
6819
  msgctxt "form-fields-api"
6820
  msgid ""
6821
  "<strong>WARNING</strong>: If you delete this field, the data from it in "
6822
  "existing listings will be deleted as well."
6823
  msgstr ""
6824
 
6825
- #: includes/fields/class-form-field.php:642
6826
  msgctxt "form-fields-api"
6827
  msgid ""
6828
  "There can only be one field with association \"%s\". Please select another "
6829
  "association."
6830
  msgstr "يمكن أن يكون هناك حقل واحد مع رابطة \"%s\". المرجو تحديد رابطة أخرى."
6831
 
6832
- #: includes/fields/class-form-field.php:652
6833
  msgctxt "form-fields-api"
6834
  msgid "\"%s\" is an invalid field type for this association."
6835
  msgstr "\"%s\" نوع حقل غير صالح لهذه الرابطة."
6836
 
6837
- #: includes/fields/class-form-field.php:697
6838
  msgctxt "form-fields-api"
6839
  msgid "Invalid field ID"
6840
  msgstr "معرف حقل غير صالح"
6841
 
6842
- #: includes/fields/class-form-field.php:720
6843
  msgctxt "form-fields-api"
6844
  msgid "An error occurred while trying to delete this field."
6845
  msgstr "حدث خطأ أثناء محاولة حذف هذا الحقل."
@@ -6913,7 +6985,7 @@ msgctxt "form-fields-api select"
6913
  msgid "— None —"
6914
  msgstr ""
6915
 
6916
- #: includes/fields/class-fieldtypes-textarea.php:200
6917
  msgctxt "admin form-fields"
6918
  msgid ""
6919
  "Enabling iframe support in your listings can allow users to execute "
@@ -7075,11 +7147,18 @@ msgstr ""
7075
  #: includes/views/submit_listing.php:511
7076
  msgctxt "templates"
7077
  msgid ""
 
 
 
 
 
 
 
7078
  "Listing submission is not available at the moment. Contact the administrator "
7079
  "for details."
7080
  msgstr ""
7081
 
7082
- #: includes/views/submit_listing.php:514
7083
  msgctxt "templates"
7084
  msgid ""
7085
  "<b>View not available</b>, there is no \"Category\" association field. %s "
@@ -7087,17 +7166,17 @@ msgid ""
7087
  "an existing field"
7088
  msgstr ""
7089
 
7090
- #: includes/views/submit_listing.php:921
7091
  msgctxt "templates"
7092
  msgid "Please agree to the Terms and Conditions."
7093
  msgstr "يرجى الموافقة على الشروط والأحكام."
7094
 
7095
- #: includes/views/submit_listing.php:929
7096
  msgctxt "templates"
7097
  msgid "Terms and Conditions:"
7098
  msgstr "شروط وأحكام:"
7099
 
7100
- #: includes/views/submit_listing.php:937
7101
  #, fuzzy
7102
  msgctxt "templates"
7103
  msgid "I agree to the <a>Terms and Conditions</a>"
@@ -8487,7 +8566,7 @@ msgctxt "request_access_keys"
8487
  msgid "URL:"
8488
  msgstr "رابط URL:"
8489
 
8490
- #: includes/views/search.php:45
8491
  #, fuzzy
8492
  msgctxt "search"
8493
  msgid "\"%s\" is required."
@@ -8516,14 +8595,14 @@ msgstr ""
8516
  "Il s'agit seulement d'une pré-visualisation. L'annonce n'a pas encore été "
8517
  "publiée."
8518
 
8519
- #: includes/views/submit_listing.php:680
8520
  msgctxt "listing submit"
8521
  msgid ""
8522
  "Something went wrong. Please check the form for errors, correct them and "
8523
  "submit again."
8524
  msgstr ""
8525
 
8526
- #: includes/views/submit_listing.php:764
8527
  msgctxt "listing submit"
8528
  msgid ""
8529
  "Image upload is required, please provide at least one image and submit again."
5
  "Project-Id-Version: Business Directory Plugin v5.5\n"
6
  "Report-Msgid-Bugs-To: https://wordpress.org/support/plugin/business-"
7
  "directory-plugin\n"
8
+ "POT-Creation-Date: 2019-11-19 21:50:15+00:00\n"
9
  "PO-Revision-Date: 2017-01-16 17:47-0500\n"
10
  "Last-Translator: BD Team <support@businessdirectoryplugin.com>\n"
11
  "Language-Team: BD Team <support@businessdirectoryplugin.com>\n"
237
  msgid "Directory Tag"
238
  msgstr "وسم الدليل"
239
 
240
+ #. translators: %s: listing count
241
+ #: includes/class-cpt-integration.php:235
242
+ #, fuzzy
243
+ msgid "%s listing updated."
244
+ msgid_plural "%s listings updated."
245
+ msgstr[0] "تم تحرير الإعلان"
246
+ msgstr[1] "تم تحرير الإعلان"
247
+ msgstr[2] "تم تحرير الإعلان"
248
+ msgstr[3] "تم تحرير الإعلان"
249
+ msgstr[4] "تم تحرير الإعلان"
250
+ msgstr[5] "تم تحرير الإعلان"
251
+
252
+ #. translators: %s: listing count
253
+ #: includes/class-cpt-integration.php:237
254
+ msgid "%s listing not updated, somebody is editing it."
255
+ msgid_plural "%s listings not updated, somebody is editing them."
256
+ msgstr[0] ""
257
+ msgstr[1] ""
258
+ msgstr[2] ""
259
+ msgstr[3] ""
260
+ msgstr[4] ""
261
+ msgstr[5] ""
262
+
263
+ #. translators: %s: listing count
264
+ #: includes/class-cpt-integration.php:239
265
+ #, fuzzy
266
+ msgid "%s listing permanently deleted."
267
+ msgid_plural "%s listings permanently deleted."
268
+ msgstr[0] "إنتهاء صلاحية الإعلان"
269
+ msgstr[1] "إنتهاء صلاحية الإعلان"
270
+ msgstr[2] "إنتهاء صلاحية الإعلان"
271
+ msgstr[3] "إنتهاء صلاحية الإعلان"
272
+ msgstr[4] "إنتهاء صلاحية الإعلان"
273
+ msgstr[5] "إنتهاء صلاحية الإعلان"
274
+
275
+ #. translators: %s: listing count
276
+ #: includes/class-cpt-integration.php:241
277
+ #, fuzzy
278
+ msgid "%s listing moved to the Trash."
279
+ msgid_plural "%s listings moved to the Trash."
280
+ msgstr[0] "لم يتم العثور على إعلانات في سلة المهملات"
281
+ msgstr[1] "لم يتم العثور على إعلانات في سلة المهملات"
282
+ msgstr[2] "لم يتم العثور على إعلانات في سلة المهملات"
283
+ msgstr[3] "لم يتم العثور على إعلانات في سلة المهملات"
284
+ msgstr[4] "لم يتم العثور على إعلانات في سلة المهملات"
285
+ msgstr[5] "لم يتم العثور على إعلانات في سلة المهملات"
286
+
287
+ #. translators: %s: listing count
288
+ #: includes/class-cpt-integration.php:243
289
+ #, fuzzy
290
+ msgid "%s listing restored from the Trash."
291
+ msgid_plural "%s listings restored from the Trash."
292
+ msgstr[0] "تم حذف إعلانك."
293
+ msgstr[1] "تم حذف إعلانك."
294
+ msgstr[2] "تم حذف إعلانك."
295
+ msgstr[3] "تم حذف إعلانك."
296
+ msgstr[4] "تم حذف إعلانك."
297
+ msgstr[5] "تم حذف إعلانك."
298
+
299
  #: includes/class-payment-gateway.php:142
300
  msgid ""
301
  "There was an unexpected error trying to cancel your subscription. Please "
1155
  msgid "Renewal email sent."
1156
  msgstr "تم إرسال بريد التجديد."
1157
 
1158
+ #: includes/admin/class-admin.php:758
1159
+ msgctxt "admin"
1160
+ msgid ""
1161
+ "Could not send renewal email, notice template at listing expiration not "
1162
+ "found."
1163
+ msgstr ""
1164
+
1165
+ #: includes/admin/class-admin.php:765
1166
  #, fuzzy
1167
  msgctxt "admin"
1168
  msgid "Listing report deleted."
1174
  msgstr[4] "إنتهاء صلاحية الإعلان"
1175
  msgstr[5] "إنتهاء صلاحية الإعلان"
1176
 
1177
+ #: includes/admin/class-admin.php:813
1178
  #, fuzzy
1179
  msgctxt "admin"
1180
  msgid "Access keys sent."
1181
  msgstr "مفتاح الوصول"
1182
 
1183
+ #: includes/admin/class-admin.php:815
1184
  msgctxt "admin"
1185
  msgid "The access keys couldn't be sent."
1186
  msgstr ""
1187
 
1188
+ #: includes/admin/class-admin.php:873 includes/admin/class-admin.php:879
1189
  msgctxt "admin"
1190
  msgid "Listing Count"
1191
  msgstr "عدد الإعلانات"
1192
 
1193
+ #: includes/admin/class-admin.php:941
1194
  msgctxt "admin"
1195
  msgid ""
1196
  "<b>Business Directory Plugin</b> requires a page with the "
1199
  "<b>إضافة دليل الأعمال</b> تتطلب صفحة فيها الكود القصير "
1200
  "<tt>[businessdirectory]</tt> لكي تعمل بشكل صحيح."
1201
 
1202
+ #: includes/admin/class-admin.php:943
1203
  msgctxt "admin"
1204
  msgid ""
1205
  "You can create this page by yourself or let Business Directory do this for "
1208
  "يمكنك إنشاء هذه الصفحة بنفسك أو ترك دليل الأعمال القيام بذلك نيابة عنك "
1209
  "تلقائياً."
1210
 
1211
+ #: includes/admin/class-admin.php:947
1212
  msgctxt "admin"
1213
  msgid "Create required pages for me"
1214
  msgstr "إنشاء الصفحات المطلوب نيابة عني"
1215
 
1216
+ #: includes/admin/class-admin.php:980
1217
  msgctxt "admin"
1218
  msgid ""
1219
  "<strong>Business Directory Plugin</strong> requires <strong>PHP 5.6</strong> "
1221
  "your provider to upgrade in order to prevent any issues with the plugin."
1222
  msgstr ""
1223
 
1224
+ #: includes/admin/class-admin.php:1003
1225
  msgctxt "admin"
1226
  msgid ""
1227
  "We noticed you want your Business Directory users to register before posting "
1277
  "يمكنك إنشاء هذه الحقول المخصصة بنفسك داخل \"إدارة الحقول\" أو السماح لدليل "
1278
  "الأعمال للقيام بذلك نيابة عنك تلقائياً."
1279
 
1280
+ #: includes/admin/form-fields.php:214 includes/views/submit_listing.php:535
1281
  msgctxt "admin"
1282
  msgid "Go to \"Manage Form Fields\""
1283
  msgstr "إنتقل إلى \"إدارة حقول\""
1297
  msgid "Abandoned"
1298
  msgstr "متخلى عنه"
1299
 
1300
+ #: includes/views/submit_listing.php:518
1301
+ #, fuzzy
1302
+ msgctxt "admin"
1303
+ msgid "Go to \"Manage Fees\""
1304
+ msgstr "إنتقل إلى \"إدارة حقول\""
1305
+
1306
  #: includes/admin/class-admin-listings.php:304
1307
  msgctxt "listing attribute"
1308
  msgid "No Fee Plan"
1662
  msgid "Manage Options"
1663
  msgstr "إدارة الخيارات"
1664
 
1665
+ #: includes/admin/class-admin.php:871
1666
  msgctxt "admin category id"
1667
  msgid "ID"
1668
  msgstr "المعرف"
2931
  msgid "Field Display Order"
2932
  msgstr "خيارات عرض الحقل"
2933
 
2934
+ #: includes/fields/class-fieldtypes-textarea.php:197
2935
  msgctxt "form-fields admin"
2936
  msgid "Allow HTML input for this field?"
2937
  msgstr "السماح بإدخال HTML لهذا الحقل؟"
2938
 
2939
+ #: includes/fields/class-fieldtypes-textarea.php:200
2940
  msgctxt "form-fields admin"
2941
  msgid "Allow IFRAME tags in content?"
2942
  msgstr "السماح لوسوم IFRAME في المحتوى؟"
2943
 
2944
+ #: includes/fields/class-fieldtypes-textarea.php:204
2945
  msgctxt "form-fields admin"
2946
  msgid "No"
2947
  msgstr "لا"
2948
 
2949
+ #: includes/fields/class-fieldtypes-textarea.php:205
2950
  msgctxt "form-fields admin"
2951
  msgid "Yes"
2952
  msgstr "نعم"
2953
 
2954
+ #: includes/fields/class-fieldtypes-textarea.php:210
2955
  msgctxt "form-fields admin"
2956
  msgid "Allow WordPress shortcodes in this field?"
2957
  msgstr "السماح بالأكواد القصيرة لووردبريس في هذا الحقل؟"
2958
 
2959
+ #: includes/fields/class-fieldtypes-textarea.php:215
2960
  msgctxt "form-fields admin"
2961
  msgid "Display a WYSIWYG editor on the frontend?"
2962
  msgstr "عرض محرر WYSIWYG في واجهة الموقع؟"
2963
 
2964
+ #: includes/fields/class-fieldtypes-textarea.php:218
2965
  msgctxt "form-fields admin"
2966
  msgid ""
2967
  "<b>Warning:</b> Users can use this feature to get around your image limits "
2970
  "<b>تحذير:</b> يمكن للأعضاء استخدام هذه الميزة للقيام بتحايل على قيود الصورة "
2971
  "الخاصة بك في رسوم الخطط.."
2972
 
2973
+ #: includes/fields/class-fieldtypes-textarea.php:219
2974
  msgctxt "form-fields admin"
2975
  msgid "Allow images in WYSIWYG editor?"
2976
  msgstr "السماح بالصور في محرر WYSIWYG؟"
2977
 
2978
+ #: includes/fields/class-fieldtypes-textarea.php:222
2979
  msgctxt "form-fields admin"
2980
  msgid ""
2981
  "<b>Advanced users only!</b> Unless you've been told to change this, don't "
2984
  "<b>للأعضاء المتقدمين فقط!</b> إلا إذا كنت قيل لك بتغيير هذا، لا تبدل إلا إذا "
2985
  "كنت تعرف ما تفعله."
2986
 
2987
+ #: includes/fields/class-fieldtypes-textarea.php:223
2988
  msgctxt "form-fields admin"
2989
  msgid "Apply \"the_content\" filter before displaying this field?"
2990
  msgstr "تطبيق عامل تصفية \"the_content\" قبل عرض هذا الحقل؟"
2991
 
2992
+ #: includes/fields/class-fieldtypes-textarea.php:226
2993
  msgctxt "form-fields admin"
2994
  msgid "Use shortened version of Description field as excerpt"
2995
  msgstr ""
2996
 
2997
+ #: includes/fields/class-fieldtypes-textarea.php:227
2998
  msgctxt "form-fields admin"
2999
  msgid ""
3000
  "Enable always (override the Short Description given with a shortened Long "
3001
  "Description)"
3002
  msgstr ""
3003
 
3004
+ #: includes/fields/class-fieldtypes-textarea.php:228
3005
  msgctxt "form-fields admin"
3006
  msgid ""
3007
  "Enable conditionally (override ONLY when Short Description is empty with a "
3008
  "shortened Long Description)"
3009
  msgstr ""
3010
 
3011
+ #: includes/fields/class-fieldtypes-textarea.php:229
3012
  msgctxt "form-fields admin"
3013
  msgid "Disable (use the Short Description all the time, empty or not)"
3014
  msgstr ""
3015
 
3016
+ #: includes/fields/class-fieldtypes-textarea.php:231
3017
  msgctxt "form-fields admin"
3018
  msgid ""
3019
  "Truncates the description field to the value set here. To display all of the "
3020
  "description, set to 0."
3021
  msgstr ""
3022
 
3023
+ #: includes/fields/class-fieldtypes-textarea.php:232
3024
  msgctxt "form-fields admin"
3025
  msgid ""
3026
  "Number of Characters from Short Description/Excerpt to Display in List View "
3027
  "(only)"
3028
  msgstr ""
3029
 
3030
+ #: includes/fields/class-fieldtypes-textarea.php:237
3031
  msgctxt "form-fields admin"
3032
  msgid "Automatically generate excerpt from content field?"
3033
  msgstr "تلقائياً إنشاء مقتطفات من حقل المحتوى؟"
6124
  msgstr "إعلان مجاني"
6125
 
6126
  #. translators: [%s] is the name of the blog.
6127
+ #: includes/class-listing-email-notification.php:239
6128
  msgctxt "notify email"
6129
  msgid "[%s] New listing notification"
6130
  msgstr "[%s] تنبيه الإعلان الجديد"
6131
 
6132
  #. translators: [%s] is the name of the blog.
6133
+ #: includes/class-listing-email-notification.php:290
6134
  msgctxt "notify email"
6135
  msgid "[%s] Listing edit notification"
6136
  msgstr "[%s] تنبيه تحرير الإعلان"
6137
 
6138
  #. translators: %s is the name of the blog.
6139
+ #: includes/class-listing-email-notification.php:362
6140
  #, fuzzy
6141
  msgctxt "notify email"
6142
  msgid "[%s] Reported listing notification"
6504
  "لا يمكن أن نقوم بمعالجة الدفع الخاص بك في هذه اللحظة. المرجو المحاولة مرة "
6505
  "أخرى لاحقاً."
6506
 
6507
+ #: includes/views/submit_listing.php:550
6508
  #, fuzzy
6509
  msgctxt "submit listing"
6510
  msgid "Please select a category."
6511
  msgstr "المرجو تحديد خيار رسوم التصنيف \"%s\"."
6512
 
6513
+ #: includes/views/submit_listing.php:563
6514
  #, fuzzy
6515
  msgctxt "submit listing"
6516
  msgid "Please select a category for your listing."
6517
  msgstr "المرجو تحديد خيار رسوم التصنيف \"%s\"."
6518
 
6519
+ #: includes/views/submit_listing.php:583
6520
  msgctxt "submit listing"
6521
  msgid "Please choose a valid category for your plan."
6522
  msgstr ""
6523
 
6524
+ #: includes/views/submit_listing.php:585
6525
  #, fuzzy
6526
  msgctxt "submit listing"
6527
  msgid "Please choose a valid fee plan for your category selection."
6528
  msgstr "المرجو تحديد خيار رسوم التصنيف \"%s\"."
6529
 
6530
+ #: includes/views/submit_listing.php:826
6531
  #, fuzzy
6532
  msgctxt "submit listing"
6533
  msgid "Please enter your desired username."
6534
  msgstr "يرجى إدخال إسمك."
6535
 
6536
+ #: includes/views/submit_listing.php:831
6537
  #, fuzzy
6538
  msgctxt "submit listing"
6539
  msgid "Please enter the e-mail for your new account."
6540
  msgstr "يرجى إدخال إسمك."
6541
 
6542
+ #: includes/views/submit_listing.php:836
6543
  msgctxt "submit listing"
6544
  msgid "Please enter the password for your new account."
6545
  msgstr ""
6546
 
6547
+ #: includes/views/submit_listing.php:846
6548
  msgctxt "submit listing"
6549
  msgid "The username you chose is already in use. Please use a different one."
6550
  msgstr ""
6551
 
6552
+ #: includes/views/submit_listing.php:851
6553
  msgctxt "submit listing"
6554
  msgid "The e-mail address you chose for your account is already in use."
6555
  msgstr ""
6556
 
6557
+ #: includes/views/submit_listing.php:866
6558
  msgctxt "submit listing"
6559
  msgid "Create a user account on this site"
6560
  msgstr ""
6561
 
6562
+ #: includes/views/submit_listing.php:873
6563
  msgctxt "submit listing"
6564
  msgid ""
6565
  "You need to create an account on the site. Please fill out the form below."
6566
  msgstr ""
6567
 
6568
+ #: includes/views/submit_listing.php:879
6569
  #, fuzzy
6570
  msgctxt "submit listing"
6571
  msgid "Username:"
6572
  msgstr "عضو"
6573
 
6574
+ #: includes/views/submit_listing.php:888
6575
  #, fuzzy
6576
  msgctxt "submit listing"
6577
  msgid "Email:"
6578
  msgstr "البريد الإلكتروني: %s"
6579
 
6580
+ #: includes/views/submit_listing.php:897
6581
  msgctxt "submit listing"
6582
  msgid "Password:"
6583
  msgstr ""
6789
  msgid "Link Text (optional):"
6790
  msgstr "رابط نصي (اختياري):"
6791
 
6792
+ #: includes/fields/class-form-field.php:710
6793
  msgctxt "form-fields api"
6794
  msgid ""
6795
  "This form field can't be deleted because it is required for the plugin to "
6864
  msgid "Invalid form field type"
6865
  msgstr "نوع حقل استمارة غير صحيح"
6866
 
6867
+ #: includes/fields/class-form-field.php:589
6868
  msgctxt "form-fields-api"
6869
  msgid "Field label is required."
6870
  msgstr "تسمية الحقل مطلوب."
6871
 
6872
+ #: includes/fields/class-form-field.php:593
6873
  msgctxt "form-fields-api"
6874
  msgid "Field label max length is 255 characters."
6875
  msgstr ""
6876
 
6877
+ #: includes/fields/class-form-field.php:597
6878
  msgctxt "form-fields-api"
6879
  msgid "Field description max length is 255 characters."
6880
  msgstr ""
6881
 
6882
+ #: includes/fields/class-form-field.php:608
6883
  msgctxt "form-fields-api"
6884
  msgid ""
6885
  "You can't change from %2$s field type to the one you wanted--the types are "
6887
  "delete this current field and create a NEW field of type %1$s instead."
6888
  msgstr ""
6889
 
6890
+ #: includes/fields/class-form-field.php:611
6891
  msgctxt "form-fields-api"
6892
  msgid ""
6893
  "<strong>WARNING</strong>: If you delete this field, the data from it in "
6894
  "existing listings will be deleted as well."
6895
  msgstr ""
6896
 
6897
+ #: includes/fields/class-form-field.php:645
6898
  msgctxt "form-fields-api"
6899
  msgid ""
6900
  "There can only be one field with association \"%s\". Please select another "
6901
  "association."
6902
  msgstr "يمكن أن يكون هناك حقل واحد مع رابطة \"%s\". المرجو تحديد رابطة أخرى."
6903
 
6904
+ #: includes/fields/class-form-field.php:655
6905
  msgctxt "form-fields-api"
6906
  msgid "\"%s\" is an invalid field type for this association."
6907
  msgstr "\"%s\" نوع حقل غير صالح لهذه الرابطة."
6908
 
6909
+ #: includes/fields/class-form-field.php:700
6910
  msgctxt "form-fields-api"
6911
  msgid "Invalid field ID"
6912
  msgstr "معرف حقل غير صالح"
6913
 
6914
+ #: includes/fields/class-form-field.php:723
6915
  msgctxt "form-fields-api"
6916
  msgid "An error occurred while trying to delete this field."
6917
  msgstr "حدث خطأ أثناء محاولة حذف هذا الحقل."
6985
  msgid "— None —"
6986
  msgstr ""
6987
 
6988
+ #: includes/fields/class-fieldtypes-textarea.php:203
6989
  msgctxt "admin form-fields"
6990
  msgid ""
6991
  "Enabling iframe support in your listings can allow users to execute "
7147
  #: includes/views/submit_listing.php:511
7148
  msgctxt "templates"
7149
  msgid ""
7150
+ "<b>There are no Fee Plans available</b>, without a fee plan site users can't "
7151
+ "submit a listing. %s to create a fee plan"
7152
+ msgstr ""
7153
+
7154
+ #: includes/views/submit_listing.php:525
7155
+ msgctxt "templates"
7156
+ msgid ""
7157
  "Listing submission is not available at the moment. Contact the administrator "
7158
  "for details."
7159
  msgstr ""
7160
 
7161
+ #: includes/views/submit_listing.php:528
7162
  msgctxt "templates"
7163
  msgid ""
7164
  "<b>View not available</b>, there is no \"Category\" association field. %s "
7166
  "an existing field"
7167
  msgstr ""
7168
 
7169
+ #: includes/views/submit_listing.php:935
7170
  msgctxt "templates"
7171
  msgid "Please agree to the Terms and Conditions."
7172
  msgstr "يرجى الموافقة على الشروط والأحكام."
7173
 
7174
+ #: includes/views/submit_listing.php:943
7175
  msgctxt "templates"
7176
  msgid "Terms and Conditions:"
7177
  msgstr "شروط وأحكام:"
7178
 
7179
+ #: includes/views/submit_listing.php:951
7180
  #, fuzzy
7181
  msgctxt "templates"
7182
  msgid "I agree to the <a>Terms and Conditions</a>"
8566
  msgid "URL:"
8567
  msgstr "رابط URL:"
8568
 
8569
+ #: includes/views/search.php:46
8570
  #, fuzzy
8571
  msgctxt "search"
8572
  msgid "\"%s\" is required."
8595
  "Il s'agit seulement d'une pré-visualisation. L'annonce n'a pas encore été "
8596
  "publiée."
8597
 
8598
+ #: includes/views/submit_listing.php:694
8599
  msgctxt "listing submit"
8600
  msgid ""
8601
  "Something went wrong. Please check the form for errors, correct them and "
8602
  "submit again."
8603
  msgstr ""
8604
 
8605
+ #: includes/views/submit_listing.php:778
8606
  msgctxt "listing submit"
8607
  msgid ""
8608
  "Image upload is required, please provide at least one image and submit again."
languages/WPBDM-de_DE.po CHANGED
@@ -5,7 +5,7 @@ msgstr ""
5
  "Project-Id-Version: Business Directory Plugin v5.5\n"
6
  "Report-Msgid-Bugs-To: https://wordpress.org/support/plugin/business-"
7
  "directory-plugin\n"
8
- "POT-Creation-Date: 2019-10-30 22:21:32+00:00\n"
9
  "PO-Revision-Date: 2019-07-16 15:05-0500\n"
10
  "Last-Translator: Axel J. Metayer <axel@kfz.net>\n"
11
  "Language-Team: Business Directory Plugin <support@businessdirectoryplugin."
@@ -236,6 +236,45 @@ msgstr "Verz. Tags"
236
  msgid "Directory Tag"
237
  msgstr "Verzeichnis Tag"
238
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
239
  #: includes/class-payment-gateway.php:142
240
  msgid ""
241
  "There was an unexpected error trying to cancel your subscription. Please "
@@ -1104,7 +1143,14 @@ msgctxt "admin"
1104
  msgid "Renewal email sent."
1105
  msgstr "E-mail erneut senden."
1106
 
1107
- #: includes/admin/class-admin.php:761
 
 
 
 
 
 
 
1108
  #, fuzzy
1109
  msgctxt "admin"
1110
  msgid "Listing report deleted."
@@ -1112,23 +1158,23 @@ msgid_plural "Listing reports deleted."
1112
  msgstr[0] "Eintrag Enddatum"
1113
  msgstr[1] "Eintrag Enddatum"
1114
 
1115
- #: includes/admin/class-admin.php:809
1116
  #, fuzzy
1117
  msgctxt "admin"
1118
  msgid "Access keys sent."
1119
  msgstr "Eintrag Felder / Bilder"
1120
 
1121
- #: includes/admin/class-admin.php:811
1122
  msgctxt "admin"
1123
  msgid "The access keys couldn't be sent."
1124
  msgstr ""
1125
 
1126
- #: includes/admin/class-admin.php:869 includes/admin/class-admin.php:875
1127
  msgctxt "admin"
1128
  msgid "Listing Count"
1129
  msgstr "Anzahl Einträge"
1130
 
1131
- #: includes/admin/class-admin.php:937
1132
  msgctxt "admin"
1133
  msgid ""
1134
  "<b>Business Directory Plugin</b> requires a page with the "
@@ -1137,7 +1183,7 @@ msgstr ""
1137
  "<b>Branchenverzeichnis Erweiterung</b> benötigt eine Seite mit dem "
1138
  "<tt>[businessdirectory]</tt> shortcode um zu funktionieren."
1139
 
1140
- #: includes/admin/class-admin.php:939
1141
  msgctxt "admin"
1142
  msgid ""
1143
  "You can create this page by yourself or let Business Directory do this for "
@@ -1146,12 +1192,12 @@ msgstr ""
1146
  "Du kannst diese Seite selbst erstellen oder vom Branchenverzeichnis "
1147
  "automatisch erstellen lassen."
1148
 
1149
- #: includes/admin/class-admin.php:943
1150
  msgctxt "admin"
1151
  msgid "Create required pages for me"
1152
  msgstr "Erstelle benötigte Seiten für mich"
1153
 
1154
- #: includes/admin/class-admin.php:976
1155
  msgctxt "admin"
1156
  msgid ""
1157
  "<strong>Business Directory Plugin</strong> requires <strong>PHP 5.6</strong> "
@@ -1159,7 +1205,7 @@ msgid ""
1159
  "your provider to upgrade in order to prevent any issues with the plugin."
1160
  msgstr ""
1161
 
1162
- #: includes/admin/class-admin.php:999
1163
  msgctxt "admin"
1164
  msgid ""
1165
  "We noticed you want your Business Directory users to register before posting "
@@ -1217,7 +1263,7 @@ msgstr ""
1217
  "Sie können diese benutzerdefinierten Felder selbst erzeugen \"Formularfelder "
1218
  "verwalten\" oder vom Branchenverzeichnis automatisch erstellen lassen."
1219
 
1220
- #: includes/admin/form-fields.php:214 includes/views/submit_listing.php:521
1221
  msgctxt "admin"
1222
  msgid "Go to \"Manage Form Fields\""
1223
  msgstr "zu \"Formularfelder verwalten\""
@@ -1237,6 +1283,12 @@ msgctxt "admin"
1237
  msgid "Abandoned"
1238
  msgstr "Abgebrochen"
1239
 
 
 
 
 
 
 
1240
  #: includes/admin/class-admin-listings.php:304
1241
  msgctxt "listing attribute"
1242
  msgid "No Fee Plan"
@@ -1600,7 +1652,7 @@ msgctxt "admin menu"
1600
  msgid "Manage Options"
1601
  msgstr "Optionen Verwalten"
1602
 
1603
- #: includes/admin/class-admin.php:867
1604
  msgctxt "admin category id"
1605
  msgid "ID"
1606
  msgstr "ID"
@@ -2893,49 +2945,49 @@ msgctxt "form-fields admin"
2893
  msgid "Field Display Order"
2894
  msgstr "Feld Anzeigeoptionen"
2895
 
2896
- #: includes/fields/class-fieldtypes-textarea.php:194
2897
  msgctxt "form-fields admin"
2898
  msgid "Allow HTML input for this field?"
2899
  msgstr "Erlaube HTML Eingaben für dieses Feld?"
2900
 
2901
- #: includes/fields/class-fieldtypes-textarea.php:197
2902
  msgctxt "form-fields admin"
2903
  msgid "Allow IFRAME tags in content?"
2904
  msgstr "Erlaube IFRAME-Tags im Inhalt?"
2905
 
2906
- #: includes/fields/class-fieldtypes-textarea.php:201
2907
  msgctxt "form-fields admin"
2908
  msgid "No"
2909
  msgstr "Nein"
2910
 
2911
- #: includes/fields/class-fieldtypes-textarea.php:202
2912
  msgctxt "form-fields admin"
2913
  msgid "Yes"
2914
  msgstr "Ja"
2915
 
2916
- #: includes/fields/class-fieldtypes-textarea.php:207
2917
  msgctxt "form-fields admin"
2918
  msgid "Allow WordPress shortcodes in this field?"
2919
  msgstr "Erlaube Wordpress Shortcodes in diesem Feld?"
2920
 
2921
- #: includes/fields/class-fieldtypes-textarea.php:212
2922
  msgctxt "form-fields admin"
2923
  msgid "Display a WYSIWYG editor on the frontend?"
2924
  msgstr "Zeige einen WYSIWYG-Editor im Frontend an?"
2925
 
2926
- #: includes/fields/class-fieldtypes-textarea.php:215
2927
  msgctxt "form-fields admin"
2928
  msgid ""
2929
  "<b>Warning:</b> Users can use this feature to get around your image limits "
2930
  "in fee plans."
2931
  msgstr ""
2932
 
2933
- #: includes/fields/class-fieldtypes-textarea.php:216
2934
  msgctxt "form-fields admin"
2935
  msgid "Allow images in WYSIWYG editor?"
2936
  msgstr "Bilder im WYSIWYG-Editor erlauben?"
2937
 
2938
- #: includes/fields/class-fieldtypes-textarea.php:219
2939
  msgctxt "form-fields admin"
2940
  msgid ""
2941
  "<b>Advanced users only!</b> Unless you've been told to change this, don't "
@@ -2944,50 +2996,50 @@ msgstr ""
2944
  "<b>Nur für Administratoren!</b> Wenn es dir nicht ausdrücklich gesagt wurde, "
2945
  "ändere diese Einstellung nicht bevor du nicht weist was du genau tust."
2946
 
2947
- #: includes/fields/class-fieldtypes-textarea.php:220
2948
  msgctxt "form-fields admin"
2949
  msgid "Apply \"the_content\" filter before displaying this field?"
2950
  msgstr "\"the_content\" Filter zuweisen bevor das Feld angezeigt wird?"
2951
 
2952
- #: includes/fields/class-fieldtypes-textarea.php:223
2953
  msgctxt "form-fields admin"
2954
  msgid "Use shortened version of Description field as excerpt"
2955
  msgstr ""
2956
 
2957
- #: includes/fields/class-fieldtypes-textarea.php:224
2958
  msgctxt "form-fields admin"
2959
  msgid ""
2960
  "Enable always (override the Short Description given with a shortened Long "
2961
  "Description)"
2962
  msgstr ""
2963
 
2964
- #: includes/fields/class-fieldtypes-textarea.php:225
2965
  msgctxt "form-fields admin"
2966
  msgid ""
2967
  "Enable conditionally (override ONLY when Short Description is empty with a "
2968
  "shortened Long Description)"
2969
  msgstr ""
2970
 
2971
- #: includes/fields/class-fieldtypes-textarea.php:226
2972
  msgctxt "form-fields admin"
2973
  msgid "Disable (use the Short Description all the time, empty or not)"
2974
  msgstr ""
2975
 
2976
- #: includes/fields/class-fieldtypes-textarea.php:228
2977
  msgctxt "form-fields admin"
2978
  msgid ""
2979
  "Truncates the description field to the value set here. To display all of the "
2980
  "description, set to 0."
2981
  msgstr ""
2982
 
2983
- #: includes/fields/class-fieldtypes-textarea.php:229
2984
  msgctxt "form-fields admin"
2985
  msgid ""
2986
  "Number of Characters from Short Description/Excerpt to Display in List View "
2987
  "(only)"
2988
  msgstr ""
2989
 
2990
- #: includes/fields/class-fieldtypes-textarea.php:234
2991
  msgctxt "form-fields admin"
2992
  msgid "Automatically generate excerpt from content field?"
2993
  msgstr "Automatisches Generierung eines Auszugs aus dem Inhaltsfeld?"
@@ -6032,19 +6084,19 @@ msgid "Free Listing"
6032
  msgstr "Kostenloser Eintrag"
6033
 
6034
  #. translators: [%s] is the name of the blog.
6035
- #: includes/class-listing-email-notification.php:235
6036
  msgctxt "notify email"
6037
  msgid "[%s] New listing notification"
6038
  msgstr "[%s] neue Eintragsbenachrichtigung"
6039
 
6040
  #. translators: [%s] is the name of the blog.
6041
- #: includes/class-listing-email-notification.php:286
6042
  msgctxt "notify email"
6043
  msgid "[%s] Listing edit notification"
6044
  msgstr "[%s] Eintrag bearbeiten Benachrichtigung"
6045
 
6046
  #. translators: %s is the name of the blog.
6047
- #: includes/class-listing-email-notification.php:358
6048
  #, fuzzy
6049
  msgctxt "notify email"
6050
  msgid "[%s] Reported listing notification"
@@ -6411,80 +6463,80 @@ msgstr ""
6411
  "Ihre Zahlung kann momentan nicht ausgeführt werden. Bitte versuchen Sie es "
6412
  "später noch einmal."
6413
 
6414
- #: includes/views/submit_listing.php:536
6415
  #, fuzzy
6416
  msgctxt "submit listing"
6417
  msgid "Please select a category."
6418
  msgstr "Bitte wähle eine Preisoption für die Kategorie \"%s\""
6419
 
6420
- #: includes/views/submit_listing.php:549
6421
  #, fuzzy
6422
  msgctxt "submit listing"
6423
  msgid "Please select a category for your listing."
6424
  msgstr "Bitte wähle eine Preisoption für die Kategorie \"%s\""
6425
 
6426
- #: includes/views/submit_listing.php:569
6427
  msgctxt "submit listing"
6428
  msgid "Please choose a valid category for your plan."
6429
  msgstr ""
6430
 
6431
- #: includes/views/submit_listing.php:571
6432
  #, fuzzy
6433
  msgctxt "submit listing"
6434
  msgid "Please choose a valid fee plan for your category selection."
6435
  msgstr "Bitte wähle eine Preisoption für die Kategorie \"%s\""
6436
 
6437
- #: includes/views/submit_listing.php:812
6438
  #, fuzzy
6439
  msgctxt "submit listing"
6440
  msgid "Please enter your desired username."
6441
  msgstr "Bitte geben Sie einen Namen ein."
6442
 
6443
- #: includes/views/submit_listing.php:817
6444
  #, fuzzy
6445
  msgctxt "submit listing"
6446
  msgid "Please enter the e-mail for your new account."
6447
  msgstr "Bitte geben Sie einen Namen ein."
6448
 
6449
- #: includes/views/submit_listing.php:822
6450
  msgctxt "submit listing"
6451
  msgid "Please enter the password for your new account."
6452
  msgstr ""
6453
 
6454
- #: includes/views/submit_listing.php:832
6455
  msgctxt "submit listing"
6456
  msgid "The username you chose is already in use. Please use a different one."
6457
  msgstr ""
6458
 
6459
- #: includes/views/submit_listing.php:837
6460
  msgctxt "submit listing"
6461
  msgid "The e-mail address you chose for your account is already in use."
6462
  msgstr ""
6463
 
6464
- #: includes/views/submit_listing.php:852
6465
  msgctxt "submit listing"
6466
  msgid "Create a user account on this site"
6467
  msgstr ""
6468
 
6469
- #: includes/views/submit_listing.php:859
6470
  msgctxt "submit listing"
6471
  msgid ""
6472
  "You need to create an account on the site. Please fill out the form below."
6473
  msgstr ""
6474
 
6475
- #: includes/views/submit_listing.php:865
6476
  #, fuzzy
6477
  msgctxt "submit listing"
6478
  msgid "Username:"
6479
  msgstr "Benutzer"
6480
 
6481
- #: includes/views/submit_listing.php:874
6482
  #, fuzzy
6483
  msgctxt "submit listing"
6484
  msgid "Email:"
6485
  msgstr "E-mail: %s"
6486
 
6487
- #: includes/views/submit_listing.php:883
6488
  msgctxt "submit listing"
6489
  msgid "Password:"
6490
  msgstr ""
@@ -6692,7 +6744,7 @@ msgctxt "form-fields api"
6692
  msgid "Link Text (optional):"
6693
  msgstr "Link Text (optional):"
6694
 
6695
- #: includes/fields/class-form-field.php:707
6696
  msgctxt "form-fields api"
6697
  msgid ""
6698
  "This form field can't be deleted because it is required for the plugin to "
@@ -6769,22 +6821,22 @@ msgctxt "form-fields-api"
6769
  msgid "Invalid form field type"
6770
  msgstr "Ungültiger Formularfeld Typ"
6771
 
6772
- #: includes/fields/class-form-field.php:586
6773
  msgctxt "form-fields-api"
6774
  msgid "Field label is required."
6775
  msgstr "Feldbezeichnung ist Pflichtfeld."
6776
 
6777
- #: includes/fields/class-form-field.php:590
6778
  msgctxt "form-fields-api"
6779
  msgid "Field label max length is 255 characters."
6780
  msgstr ""
6781
 
6782
- #: includes/fields/class-form-field.php:594
6783
  msgctxt "form-fields-api"
6784
  msgid "Field description max length is 255 characters."
6785
  msgstr ""
6786
 
6787
- #: includes/fields/class-form-field.php:605
6788
  msgctxt "form-fields-api"
6789
  msgid ""
6790
  "You can't change from %2$s field type to the one you wanted--the types are "
@@ -6792,14 +6844,14 @@ msgid ""
6792
  "delete this current field and create a NEW field of type %1$s instead."
6793
  msgstr ""
6794
 
6795
- #: includes/fields/class-form-field.php:608
6796
  msgctxt "form-fields-api"
6797
  msgid ""
6798
  "<strong>WARNING</strong>: If you delete this field, the data from it in "
6799
  "existing listings will be deleted as well."
6800
  msgstr ""
6801
 
6802
- #: includes/fields/class-form-field.php:642
6803
  msgctxt "form-fields-api"
6804
  msgid ""
6805
  "There can only be one field with association \"%s\". Please select another "
@@ -6808,17 +6860,17 @@ msgstr ""
6808
  "Es kann nur ein Feld mit \"%s\" verbunden werden. Bitte wähle eine andere "
6809
  "Verbindung."
6810
 
6811
- #: includes/fields/class-form-field.php:652
6812
  msgctxt "form-fields-api"
6813
  msgid "\"%s\" is an invalid field type for this association."
6814
  msgstr "\"%s\" ist ein ungültiger Feldtyp für diese Verbindung."
6815
 
6816
- #: includes/fields/class-form-field.php:697
6817
  msgctxt "form-fields-api"
6818
  msgid "Invalid field ID"
6819
  msgstr "Ungültige Feld ID"
6820
 
6821
- #: includes/fields/class-form-field.php:720
6822
  msgctxt "form-fields-api"
6823
  msgid "An error occurred while trying to delete this field."
6824
  msgstr "Während der Löschung des Feldes ist ein Fehler aufgetreten."
@@ -6892,7 +6944,7 @@ msgctxt "form-fields-api select"
6892
  msgid "— None —"
6893
  msgstr ""
6894
 
6895
- #: includes/fields/class-fieldtypes-textarea.php:200
6896
  msgctxt "admin form-fields"
6897
  msgid ""
6898
  "Enabling iframe support in your listings can allow users to execute "
@@ -7053,11 +7105,18 @@ msgstr ""
7053
  #: includes/views/submit_listing.php:511
7054
  msgctxt "templates"
7055
  msgid ""
 
 
 
 
 
 
 
7056
  "Listing submission is not available at the moment. Contact the administrator "
7057
  "for details."
7058
  msgstr ""
7059
 
7060
- #: includes/views/submit_listing.php:514
7061
  msgctxt "templates"
7062
  msgid ""
7063
  "<b>View not available</b>, there is no \"Category\" association field. %s "
@@ -7065,17 +7124,17 @@ msgid ""
7065
  "an existing field"
7066
  msgstr ""
7067
 
7068
- #: includes/views/submit_listing.php:921
7069
  msgctxt "templates"
7070
  msgid "Please agree to the Terms and Conditions."
7071
  msgstr "Bitte akzeptieren Sie die Allgemeinen Geschäftsbedingungen."
7072
 
7073
- #: includes/views/submit_listing.php:929
7074
  msgctxt "templates"
7075
  msgid "Terms and Conditions:"
7076
  msgstr "AGBs:"
7077
 
7078
- #: includes/views/submit_listing.php:937
7079
  msgctxt "templates"
7080
  msgid "I agree to the <a>Terms and Conditions</a>"
7081
  msgstr "Ich akzeptiere die <a>AGB</a>s"
@@ -8482,7 +8541,7 @@ msgctxt "request_access_keys"
8482
  msgid "URL:"
8483
  msgstr "URL:"
8484
 
8485
- #: includes/views/search.php:45
8486
  #, fuzzy
8487
  msgctxt "search"
8488
  msgid "\"%s\" is required."
@@ -8509,14 +8568,14 @@ msgctxt "preview"
8509
  msgid "This is just a preview. The listing has not been published yet."
8510
  msgstr "Dies ist nur eine Vorschau. Der Eintrag wurde bisher nicht publiziert."
8511
 
8512
- #: includes/views/submit_listing.php:680
8513
  msgctxt "listing submit"
8514
  msgid ""
8515
  "Something went wrong. Please check the form for errors, correct them and "
8516
  "submit again."
8517
  msgstr ""
8518
 
8519
- #: includes/views/submit_listing.php:764
8520
  msgctxt "listing submit"
8521
  msgid ""
8522
  "Image upload is required, please provide at least one image and submit again."
5
  "Project-Id-Version: Business Directory Plugin v5.5\n"
6
  "Report-Msgid-Bugs-To: https://wordpress.org/support/plugin/business-"
7
  "directory-plugin\n"
8
+ "POT-Creation-Date: 2019-11-19 21:50:15+00:00\n"
9
  "PO-Revision-Date: 2019-07-16 15:05-0500\n"
10
  "Last-Translator: Axel J. Metayer <axel@kfz.net>\n"
11
  "Language-Team: Business Directory Plugin <support@businessdirectoryplugin."
236
  msgid "Directory Tag"
237
  msgstr "Verzeichnis Tag"
238
 
239
+ #. translators: %s: listing count
240
+ #: includes/class-cpt-integration.php:235
241
+ #, fuzzy
242
+ msgid "%s listing updated."
243
+ msgid_plural "%s listings updated."
244
+ msgstr[0] "Ein Eintrag wurde bearbeitet."
245
+ msgstr[1] "Ein Eintrag wurde bearbeitet."
246
+
247
+ #. translators: %s: listing count
248
+ #: includes/class-cpt-integration.php:237
249
+ msgid "%s listing not updated, somebody is editing it."
250
+ msgid_plural "%s listings not updated, somebody is editing them."
251
+ msgstr[0] ""
252
+ msgstr[1] ""
253
+
254
+ #. translators: %s: listing count
255
+ #: includes/class-cpt-integration.php:239
256
+ #, fuzzy
257
+ msgid "%s listing permanently deleted."
258
+ msgid_plural "%s listings permanently deleted."
259
+ msgstr[0] "Eintrag Enddatum"
260
+ msgstr[1] "Eintrag Enddatum"
261
+
262
+ #. translators: %s: listing count
263
+ #: includes/class-cpt-integration.php:241
264
+ #, fuzzy
265
+ msgid "%s listing moved to the Trash."
266
+ msgid_plural "%s listings moved to the Trash."
267
+ msgstr[0] "Keine Einträge im Papierkorb gefunden"
268
+ msgstr[1] "Keine Einträge im Papierkorb gefunden"
269
+
270
+ #. translators: %s: listing count
271
+ #: includes/class-cpt-integration.php:243
272
+ #, fuzzy
273
+ msgid "%s listing restored from the Trash."
274
+ msgid_plural "%s listings restored from the Trash."
275
+ msgstr[0] "Dein Eintrag wurde gelöscht."
276
+ msgstr[1] "Dein Eintrag wurde gelöscht."
277
+
278
  #: includes/class-payment-gateway.php:142
279
  msgid ""
280
  "There was an unexpected error trying to cancel your subscription. Please "
1143
  msgid "Renewal email sent."
1144
  msgstr "E-mail erneut senden."
1145
 
1146
+ #: includes/admin/class-admin.php:758
1147
+ msgctxt "admin"
1148
+ msgid ""
1149
+ "Could not send renewal email, notice template at listing expiration not "
1150
+ "found."
1151
+ msgstr ""
1152
+
1153
+ #: includes/admin/class-admin.php:765
1154
  #, fuzzy
1155
  msgctxt "admin"
1156
  msgid "Listing report deleted."
1158
  msgstr[0] "Eintrag Enddatum"
1159
  msgstr[1] "Eintrag Enddatum"
1160
 
1161
+ #: includes/admin/class-admin.php:813
1162
  #, fuzzy
1163
  msgctxt "admin"
1164
  msgid "Access keys sent."
1165
  msgstr "Eintrag Felder / Bilder"
1166
 
1167
+ #: includes/admin/class-admin.php:815
1168
  msgctxt "admin"
1169
  msgid "The access keys couldn't be sent."
1170
  msgstr ""
1171
 
1172
+ #: includes/admin/class-admin.php:873 includes/admin/class-admin.php:879
1173
  msgctxt "admin"
1174
  msgid "Listing Count"
1175
  msgstr "Anzahl Einträge"
1176
 
1177
+ #: includes/admin/class-admin.php:941
1178
  msgctxt "admin"
1179
  msgid ""
1180
  "<b>Business Directory Plugin</b> requires a page with the "
1183
  "<b>Branchenverzeichnis Erweiterung</b> benötigt eine Seite mit dem "
1184
  "<tt>[businessdirectory]</tt> shortcode um zu funktionieren."
1185
 
1186
+ #: includes/admin/class-admin.php:943
1187
  msgctxt "admin"
1188
  msgid ""
1189
  "You can create this page by yourself or let Business Directory do this for "
1192
  "Du kannst diese Seite selbst erstellen oder vom Branchenverzeichnis "
1193
  "automatisch erstellen lassen."
1194
 
1195
+ #: includes/admin/class-admin.php:947
1196
  msgctxt "admin"
1197
  msgid "Create required pages for me"
1198
  msgstr "Erstelle benötigte Seiten für mich"
1199
 
1200
+ #: includes/admin/class-admin.php:980
1201
  msgctxt "admin"
1202
  msgid ""
1203
  "<strong>Business Directory Plugin</strong> requires <strong>PHP 5.6</strong> "
1205
  "your provider to upgrade in order to prevent any issues with the plugin."
1206
  msgstr ""
1207
 
1208
+ #: includes/admin/class-admin.php:1003
1209
  msgctxt "admin"
1210
  msgid ""
1211
  "We noticed you want your Business Directory users to register before posting "
1263
  "Sie können diese benutzerdefinierten Felder selbst erzeugen \"Formularfelder "
1264
  "verwalten\" oder vom Branchenverzeichnis automatisch erstellen lassen."
1265
 
1266
+ #: includes/admin/form-fields.php:214 includes/views/submit_listing.php:535
1267
  msgctxt "admin"
1268
  msgid "Go to \"Manage Form Fields\""
1269
  msgstr "zu \"Formularfelder verwalten\""
1283
  msgid "Abandoned"
1284
  msgstr "Abgebrochen"
1285
 
1286
+ #: includes/views/submit_listing.php:518
1287
+ #, fuzzy
1288
+ msgctxt "admin"
1289
+ msgid "Go to \"Manage Fees\""
1290
+ msgstr "zu \"Formularfelder verwalten\""
1291
+
1292
  #: includes/admin/class-admin-listings.php:304
1293
  msgctxt "listing attribute"
1294
  msgid "No Fee Plan"
1652
  msgid "Manage Options"
1653
  msgstr "Optionen Verwalten"
1654
 
1655
+ #: includes/admin/class-admin.php:871
1656
  msgctxt "admin category id"
1657
  msgid "ID"
1658
  msgstr "ID"
2945
  msgid "Field Display Order"
2946
  msgstr "Feld Anzeigeoptionen"
2947
 
2948
+ #: includes/fields/class-fieldtypes-textarea.php:197
2949
  msgctxt "form-fields admin"
2950
  msgid "Allow HTML input for this field?"
2951
  msgstr "Erlaube HTML Eingaben für dieses Feld?"
2952
 
2953
+ #: includes/fields/class-fieldtypes-textarea.php:200
2954
  msgctxt "form-fields admin"
2955
  msgid "Allow IFRAME tags in content?"
2956
  msgstr "Erlaube IFRAME-Tags im Inhalt?"
2957
 
2958
+ #: includes/fields/class-fieldtypes-textarea.php:204
2959
  msgctxt "form-fields admin"
2960
  msgid "No"
2961
  msgstr "Nein"
2962
 
2963
+ #: includes/fields/class-fieldtypes-textarea.php:205
2964
  msgctxt "form-fields admin"
2965
  msgid "Yes"
2966
  msgstr "Ja"
2967
 
2968
+ #: includes/fields/class-fieldtypes-textarea.php:210
2969
  msgctxt "form-fields admin"
2970
  msgid "Allow WordPress shortcodes in this field?"
2971
  msgstr "Erlaube Wordpress Shortcodes in diesem Feld?"
2972
 
2973
+ #: includes/fields/class-fieldtypes-textarea.php:215
2974
  msgctxt "form-fields admin"
2975
  msgid "Display a WYSIWYG editor on the frontend?"
2976
  msgstr "Zeige einen WYSIWYG-Editor im Frontend an?"
2977
 
2978
+ #: includes/fields/class-fieldtypes-textarea.php:218
2979
  msgctxt "form-fields admin"
2980
  msgid ""
2981
  "<b>Warning:</b> Users can use this feature to get around your image limits "
2982
  "in fee plans."
2983
  msgstr ""
2984
 
2985
+ #: includes/fields/class-fieldtypes-textarea.php:219
2986
  msgctxt "form-fields admin"
2987
  msgid "Allow images in WYSIWYG editor?"
2988
  msgstr "Bilder im WYSIWYG-Editor erlauben?"
2989
 
2990
+ #: includes/fields/class-fieldtypes-textarea.php:222
2991
  msgctxt "form-fields admin"
2992
  msgid ""
2993
  "<b>Advanced users only!</b> Unless you've been told to change this, don't "
2996
  "<b>Nur für Administratoren!</b> Wenn es dir nicht ausdrücklich gesagt wurde, "
2997
  "ändere diese Einstellung nicht bevor du nicht weist was du genau tust."
2998
 
2999
+ #: includes/fields/class-fieldtypes-textarea.php:223
3000
  msgctxt "form-fields admin"
3001
  msgid "Apply \"the_content\" filter before displaying this field?"
3002
  msgstr "\"the_content\" Filter zuweisen bevor das Feld angezeigt wird?"
3003
 
3004
+ #: includes/fields/class-fieldtypes-textarea.php:226
3005
  msgctxt "form-fields admin"
3006
  msgid "Use shortened version of Description field as excerpt"
3007
  msgstr ""
3008
 
3009
+ #: includes/fields/class-fieldtypes-textarea.php:227
3010
  msgctxt "form-fields admin"
3011
  msgid ""
3012
  "Enable always (override the Short Description given with a shortened Long "
3013
  "Description)"
3014
  msgstr ""
3015
 
3016
+ #: includes/fields/class-fieldtypes-textarea.php:228
3017
  msgctxt "form-fields admin"
3018
  msgid ""
3019
  "Enable conditionally (override ONLY when Short Description is empty with a "
3020
  "shortened Long Description)"
3021
  msgstr ""
3022
 
3023
+ #: includes/fields/class-fieldtypes-textarea.php:229
3024
  msgctxt "form-fields admin"
3025
  msgid "Disable (use the Short Description all the time, empty or not)"
3026
  msgstr ""
3027
 
3028
+ #: includes/fields/class-fieldtypes-textarea.php:231
3029
  msgctxt "form-fields admin"
3030
  msgid ""
3031
  "Truncates the description field to the value set here. To display all of the "
3032
  "description, set to 0."
3033
  msgstr ""
3034
 
3035
+ #: includes/fields/class-fieldtypes-textarea.php:232
3036
  msgctxt "form-fields admin"
3037
  msgid ""
3038
  "Number of Characters from Short Description/Excerpt to Display in List View "
3039
  "(only)"
3040
  msgstr ""
3041
 
3042
+ #: includes/fields/class-fieldtypes-textarea.php:237
3043
  msgctxt "form-fields admin"
3044
  msgid "Automatically generate excerpt from content field?"
3045
  msgstr "Automatisches Generierung eines Auszugs aus dem Inhaltsfeld?"
6084
  msgstr "Kostenloser Eintrag"
6085
 
6086
  #. translators: [%s] is the name of the blog.
6087
+ #: includes/class-listing-email-notification.php:239
6088
  msgctxt "notify email"
6089
  msgid "[%s] New listing notification"
6090
  msgstr "[%s] neue Eintragsbenachrichtigung"
6091
 
6092
  #. translators: [%s] is the name of the blog.
6093
+ #: includes/class-listing-email-notification.php:290
6094
  msgctxt "notify email"
6095
  msgid "[%s] Listing edit notification"
6096
  msgstr "[%s] Eintrag bearbeiten Benachrichtigung"
6097
 
6098
  #. translators: %s is the name of the blog.
6099
+ #: includes/class-listing-email-notification.php:362
6100
  #, fuzzy
6101
  msgctxt "notify email"
6102
  msgid "[%s] Reported listing notification"
6463
  "Ihre Zahlung kann momentan nicht ausgeführt werden. Bitte versuchen Sie es "
6464
  "später noch einmal."
6465
 
6466
+ #: includes/views/submit_listing.php:550
6467
  #, fuzzy
6468
  msgctxt "submit listing"
6469
  msgid "Please select a category."
6470
  msgstr "Bitte wähle eine Preisoption für die Kategorie \"%s\""
6471
 
6472
+ #: includes/views/submit_listing.php:563
6473
  #, fuzzy
6474
  msgctxt "submit listing"
6475
  msgid "Please select a category for your listing."
6476
  msgstr "Bitte wähle eine Preisoption für die Kategorie \"%s\""
6477
 
6478
+ #: includes/views/submit_listing.php:583
6479
  msgctxt "submit listing"
6480
  msgid "Please choose a valid category for your plan."
6481
  msgstr ""
6482
 
6483
+ #: includes/views/submit_listing.php:585
6484
  #, fuzzy
6485
  msgctxt "submit listing"
6486
  msgid "Please choose a valid fee plan for your category selection."
6487
  msgstr "Bitte wähle eine Preisoption für die Kategorie \"%s\""
6488
 
6489
+ #: includes/views/submit_listing.php:826
6490
  #, fuzzy
6491
  msgctxt "submit listing"
6492
  msgid "Please enter your desired username."
6493
  msgstr "Bitte geben Sie einen Namen ein."
6494
 
6495
+ #: includes/views/submit_listing.php:831
6496
  #, fuzzy
6497
  msgctxt "submit listing"
6498
  msgid "Please enter the e-mail for your new account."
6499
  msgstr "Bitte geben Sie einen Namen ein."
6500
 
6501
+ #: includes/views/submit_listing.php:836
6502
  msgctxt "submit listing"
6503
  msgid "Please enter the password for your new account."
6504
  msgstr ""
6505
 
6506
+ #: includes/views/submit_listing.php:846
6507
  msgctxt "submit listing"
6508
  msgid "The username you chose is already in use. Please use a different one."
6509
  msgstr ""
6510
 
6511
+ #: includes/views/submit_listing.php:851
6512
  msgctxt "submit listing"
6513
  msgid "The e-mail address you chose for your account is already in use."
6514
  msgstr ""
6515
 
6516
+ #: includes/views/submit_listing.php:866
6517
  msgctxt "submit listing"
6518
  msgid "Create a user account on this site"
6519
  msgstr ""
6520
 
6521
+ #: includes/views/submit_listing.php:873
6522
  msgctxt "submit listing"
6523
  msgid ""
6524
  "You need to create an account on the site. Please fill out the form below."
6525
  msgstr ""
6526
 
6527
+ #: includes/views/submit_listing.php:879
6528
  #, fuzzy
6529
  msgctxt "submit listing"
6530
  msgid "Username:"
6531
  msgstr "Benutzer"
6532
 
6533
+ #: includes/views/submit_listing.php:888
6534
  #, fuzzy
6535
  msgctxt "submit listing"
6536
  msgid "Email:"
6537
  msgstr "E-mail: %s"
6538
 
6539
+ #: includes/views/submit_listing.php:897
6540
  msgctxt "submit listing"
6541
  msgid "Password:"
6542
  msgstr ""
6744
  msgid "Link Text (optional):"
6745
  msgstr "Link Text (optional):"
6746
 
6747
+ #: includes/fields/class-form-field.php:710
6748
  msgctxt "form-fields api"
6749
  msgid ""
6750
  "This form field can't be deleted because it is required for the plugin to "
6821
  msgid "Invalid form field type"
6822
  msgstr "Ungültiger Formularfeld Typ"
6823
 
6824
+ #: includes/fields/class-form-field.php:589
6825
  msgctxt "form-fields-api"
6826
  msgid "Field label is required."
6827
  msgstr "Feldbezeichnung ist Pflichtfeld."
6828
 
6829
+ #: includes/fields/class-form-field.php:593
6830
  msgctxt "form-fields-api"
6831
  msgid "Field label max length is 255 characters."
6832
  msgstr ""
6833
 
6834
+ #: includes/fields/class-form-field.php:597
6835
  msgctxt "form-fields-api"
6836
  msgid "Field description max length is 255 characters."
6837
  msgstr ""
6838
 
6839
+ #: includes/fields/class-form-field.php:608
6840
  msgctxt "form-fields-api"
6841
  msgid ""
6842
  "You can't change from %2$s field type to the one you wanted--the types are "
6844
  "delete this current field and create a NEW field of type %1$s instead."
6845
  msgstr ""
6846
 
6847
+ #: includes/fields/class-form-field.php:611
6848
  msgctxt "form-fields-api"
6849
  msgid ""
6850
  "<strong>WARNING</strong>: If you delete this field, the data from it in "
6851
  "existing listings will be deleted as well."
6852
  msgstr ""
6853
 
6854
+ #: includes/fields/class-form-field.php:645
6855
  msgctxt "form-fields-api"
6856
  msgid ""
6857
  "There can only be one field with association \"%s\". Please select another "
6860
  "Es kann nur ein Feld mit \"%s\" verbunden werden. Bitte wähle eine andere "
6861
  "Verbindung."
6862
 
6863
+ #: includes/fields/class-form-field.php:655
6864
  msgctxt "form-fields-api"
6865
  msgid "\"%s\" is an invalid field type for this association."
6866
  msgstr "\"%s\" ist ein ungültiger Feldtyp für diese Verbindung."
6867
 
6868
+ #: includes/fields/class-form-field.php:700
6869
  msgctxt "form-fields-api"
6870
  msgid "Invalid field ID"
6871
  msgstr "Ungültige Feld ID"
6872
 
6873
+ #: includes/fields/class-form-field.php:723
6874
  msgctxt "form-fields-api"
6875
  msgid "An error occurred while trying to delete this field."
6876
  msgstr "Während der Löschung des Feldes ist ein Fehler aufgetreten."
6944
  msgid "— None —"
6945
  msgstr ""
6946
 
6947
+ #: includes/fields/class-fieldtypes-textarea.php:203
6948
  msgctxt "admin form-fields"
6949
  msgid ""
6950
  "Enabling iframe support in your listings can allow users to execute "
7105
  #: includes/views/submit_listing.php:511
7106
  msgctxt "templates"
7107
  msgid ""
7108
+ "<b>There are no Fee Plans available</b>, without a fee plan site users can't "
7109
+ "submit a listing. %s to create a fee plan"
7110
+ msgstr ""
7111
+
7112
+ #: includes/views/submit_listing.php:525
7113
+ msgctxt "templates"
7114
+ msgid ""
7115
  "Listing submission is not available at the moment. Contact the administrator "
7116
  "for details."
7117
  msgstr ""
7118
 
7119
+ #: includes/views/submit_listing.php:528
7120
  msgctxt "templates"
7121
  msgid ""
7122
  "<b>View not available</b>, there is no \"Category\" association field. %s "
7124
  "an existing field"
7125
  msgstr ""
7126
 
7127
+ #: includes/views/submit_listing.php:935
7128
  msgctxt "templates"
7129
  msgid "Please agree to the Terms and Conditions."
7130
  msgstr "Bitte akzeptieren Sie die Allgemeinen Geschäftsbedingungen."
7131
 
7132
+ #: includes/views/submit_listing.php:943
7133
  msgctxt "templates"
7134
  msgid "Terms and Conditions:"
7135
  msgstr "AGBs:"
7136
 
7137
+ #: includes/views/submit_listing.php:951
7138
  msgctxt "templates"
7139
  msgid "I agree to the <a>Terms and Conditions</a>"
7140
  msgstr "Ich akzeptiere die <a>AGB</a>s"
8541
  msgid "URL:"
8542
  msgstr "URL:"
8543
 
8544
+ #: includes/views/search.php:46
8545
  #, fuzzy
8546
  msgctxt "search"
8547
  msgid "\"%s\" is required."
8568
  msgid "This is just a preview. The listing has not been published yet."
8569
  msgstr "Dies ist nur eine Vorschau. Der Eintrag wurde bisher nicht publiziert."
8570
 
8571
+ #: includes/views/submit_listing.php:694
8572
  msgctxt "listing submit"
8573
  msgid ""
8574
  "Something went wrong. Please check the form for errors, correct them and "
8575
  "submit again."
8576
  msgstr ""
8577
 
8578
+ #: includes/views/submit_listing.php:778
8579
  msgctxt "listing submit"
8580
  msgid ""
8581
  "Image upload is required, please provide at least one image and submit again."
languages/WPBDM-en_US.po CHANGED
@@ -5,7 +5,7 @@ msgstr ""
5
  "Project-Id-Version: Business Directory Plugin v5.5\n"
6
  "Report-Msgid-Bugs-To: https://wordpress.org/support/plugin/business-"
7
  "directory-plugin\n"
8
- "POT-Creation-Date: 2019-10-30 22:21:32+00:00\n"
9
  "PO-Revision-Date: 2017-01-16 17:47-0500\n"
10
  "Last-Translator: BD Team <support@businessdirectoryplugin.com>\n"
11
  "Language-Team: BD Team <support@businessdirectoryplugin.com>\n"
@@ -207,6 +207,41 @@ msgstr ""
207
  msgid "Directory Tag"
208
  msgstr ""
209
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
210
  #: includes/class-payment-gateway.php:142
211
  msgid ""
212
  "There was an unexpected error trying to cancel your subscription. Please "
@@ -1007,48 +1042,55 @@ msgctxt "admin"
1007
  msgid "Renewal email sent."
1008
  msgstr ""
1009
 
1010
- #: includes/admin/class-admin.php:761
 
 
 
 
 
 
 
1011
  msgctxt "admin"
1012
  msgid "Listing report deleted."
1013
  msgid_plural "Listing reports deleted."
1014
  msgstr[0] ""
1015
  msgstr[1] ""
1016
 
1017
- #: includes/admin/class-admin.php:809
1018
  msgctxt "admin"
1019
  msgid "Access keys sent."
1020
  msgstr ""
1021
 
1022
- #: includes/admin/class-admin.php:811
1023
  msgctxt "admin"
1024
  msgid "The access keys couldn't be sent."
1025
  msgstr ""
1026
 
1027
- #: includes/admin/class-admin.php:869 includes/admin/class-admin.php:875
1028
  msgctxt "admin"
1029
  msgid "Listing Count"
1030
  msgstr ""
1031
 
1032
- #: includes/admin/class-admin.php:937
1033
  msgctxt "admin"
1034
  msgid ""
1035
  "<b>Business Directory Plugin</b> requires a page with the "
1036
  "<tt>[businessdirectory]</tt> shortcode to function properly."
1037
  msgstr ""
1038
 
1039
- #: includes/admin/class-admin.php:939
1040
  msgctxt "admin"
1041
  msgid ""
1042
  "You can create this page by yourself or let Business Directory do this for "
1043
  "you automatically."
1044
  msgstr ""
1045
 
1046
- #: includes/admin/class-admin.php:943
1047
  msgctxt "admin"
1048
  msgid "Create required pages for me"
1049
  msgstr ""
1050
 
1051
- #: includes/admin/class-admin.php:976
1052
  msgctxt "admin"
1053
  msgid ""
1054
  "<strong>Business Directory Plugin</strong> requires <strong>PHP 5.6</strong> "
@@ -1056,7 +1098,7 @@ msgid ""
1056
  "your provider to upgrade in order to prevent any issues with the plugin."
1057
  msgstr ""
1058
 
1059
- #: includes/admin/class-admin.php:999
1060
  msgctxt "admin"
1061
  msgid ""
1062
  "We noticed you want your Business Directory users to register before posting "
@@ -1100,7 +1142,7 @@ msgid ""
1100
  "or let Business Directory do this for you automatically."
1101
  msgstr ""
1102
 
1103
- #: includes/admin/form-fields.php:214 includes/views/submit_listing.php:521
1104
  msgctxt "admin"
1105
  msgid "Go to \"Manage Form Fields\""
1106
  msgstr ""
@@ -1120,6 +1162,11 @@ msgctxt "admin"
1120
  msgid "Abandoned"
1121
  msgstr ""
1122
 
 
 
 
 
 
1123
  #: includes/admin/class-admin-listings.php:304
1124
  msgctxt "listing attribute"
1125
  msgid "No Fee Plan"
@@ -1439,7 +1486,7 @@ msgctxt "admin menu"
1439
  msgid "Manage Options"
1440
  msgstr ""
1441
 
1442
- #: includes/admin/class-admin.php:867
1443
  msgctxt "admin category id"
1444
  msgid "ID"
1445
  msgstr ""
@@ -2616,99 +2663,99 @@ msgctxt "form-fields admin"
2616
  msgid "Field Display Order"
2617
  msgstr ""
2618
 
2619
- #: includes/fields/class-fieldtypes-textarea.php:194
2620
  msgctxt "form-fields admin"
2621
  msgid "Allow HTML input for this field?"
2622
  msgstr ""
2623
 
2624
- #: includes/fields/class-fieldtypes-textarea.php:197
2625
  msgctxt "form-fields admin"
2626
  msgid "Allow IFRAME tags in content?"
2627
  msgstr ""
2628
 
2629
- #: includes/fields/class-fieldtypes-textarea.php:201
2630
  msgctxt "form-fields admin"
2631
  msgid "No"
2632
  msgstr ""
2633
 
2634
- #: includes/fields/class-fieldtypes-textarea.php:202
2635
  msgctxt "form-fields admin"
2636
  msgid "Yes"
2637
  msgstr ""
2638
 
2639
- #: includes/fields/class-fieldtypes-textarea.php:207
2640
  msgctxt "form-fields admin"
2641
  msgid "Allow WordPress shortcodes in this field?"
2642
  msgstr ""
2643
 
2644
- #: includes/fields/class-fieldtypes-textarea.php:212
2645
  msgctxt "form-fields admin"
2646
  msgid "Display a WYSIWYG editor on the frontend?"
2647
  msgstr ""
2648
 
2649
- #: includes/fields/class-fieldtypes-textarea.php:215
2650
  msgctxt "form-fields admin"
2651
  msgid ""
2652
  "<b>Warning:</b> Users can use this feature to get around your image limits "
2653
  "in fee plans."
2654
  msgstr ""
2655
 
2656
- #: includes/fields/class-fieldtypes-textarea.php:216
2657
  msgctxt "form-fields admin"
2658
  msgid "Allow images in WYSIWYG editor?"
2659
  msgstr ""
2660
 
2661
- #: includes/fields/class-fieldtypes-textarea.php:219
2662
  msgctxt "form-fields admin"
2663
  msgid ""
2664
  "<b>Advanced users only!</b> Unless you've been told to change this, don't "
2665
  "switch it unless you know what you're doing."
2666
  msgstr ""
2667
 
2668
- #: includes/fields/class-fieldtypes-textarea.php:220
2669
  msgctxt "form-fields admin"
2670
  msgid "Apply \"the_content\" filter before displaying this field?"
2671
  msgstr ""
2672
 
2673
- #: includes/fields/class-fieldtypes-textarea.php:223
2674
  msgctxt "form-fields admin"
2675
  msgid "Use shortened version of Description field as excerpt"
2676
  msgstr ""
2677
 
2678
- #: includes/fields/class-fieldtypes-textarea.php:224
2679
  msgctxt "form-fields admin"
2680
  msgid ""
2681
  "Enable always (override the Short Description given with a shortened Long "
2682
  "Description)"
2683
  msgstr ""
2684
 
2685
- #: includes/fields/class-fieldtypes-textarea.php:225
2686
  msgctxt "form-fields admin"
2687
  msgid ""
2688
  "Enable conditionally (override ONLY when Short Description is empty with a "
2689
  "shortened Long Description)"
2690
  msgstr ""
2691
 
2692
- #: includes/fields/class-fieldtypes-textarea.php:226
2693
  msgctxt "form-fields admin"
2694
  msgid "Disable (use the Short Description all the time, empty or not)"
2695
  msgstr ""
2696
 
2697
- #: includes/fields/class-fieldtypes-textarea.php:228
2698
  msgctxt "form-fields admin"
2699
  msgid ""
2700
  "Truncates the description field to the value set here. To display all of the "
2701
  "description, set to 0."
2702
  msgstr ""
2703
 
2704
- #: includes/fields/class-fieldtypes-textarea.php:229
2705
  msgctxt "form-fields admin"
2706
  msgid ""
2707
  "Number of Characters from Short Description/Excerpt to Display in List View "
2708
  "(only)"
2709
  msgstr ""
2710
 
2711
- #: includes/fields/class-fieldtypes-textarea.php:234
2712
  msgctxt "form-fields admin"
2713
  msgid "Automatically generate excerpt from content field?"
2714
  msgstr ""
@@ -5429,19 +5476,19 @@ msgid "Free Listing"
5429
  msgstr ""
5430
 
5431
  #. translators: [%s] is the name of the blog.
5432
- #: includes/class-listing-email-notification.php:235
5433
  msgctxt "notify email"
5434
  msgid "[%s] New listing notification"
5435
  msgstr ""
5436
 
5437
  #. translators: [%s] is the name of the blog.
5438
- #: includes/class-listing-email-notification.php:286
5439
  msgctxt "notify email"
5440
  msgid "[%s] Listing edit notification"
5441
  msgstr ""
5442
 
5443
  #. translators: %s is the name of the blog.
5444
- #: includes/class-listing-email-notification.php:358
5445
  msgctxt "notify email"
5446
  msgid "[%s] Reported listing notification"
5447
  msgstr ""
@@ -5767,73 +5814,73 @@ msgctxt "submit listing"
5767
  msgid "Can not submit a listing at this moment. Please try again later."
5768
  msgstr ""
5769
 
5770
- #: includes/views/submit_listing.php:536
5771
  msgctxt "submit listing"
5772
  msgid "Please select a category."
5773
  msgstr ""
5774
 
5775
- #: includes/views/submit_listing.php:549
5776
  msgctxt "submit listing"
5777
  msgid "Please select a category for your listing."
5778
  msgstr ""
5779
 
5780
- #: includes/views/submit_listing.php:569
5781
  msgctxt "submit listing"
5782
  msgid "Please choose a valid category for your plan."
5783
  msgstr ""
5784
 
5785
- #: includes/views/submit_listing.php:571
5786
  msgctxt "submit listing"
5787
  msgid "Please choose a valid fee plan for your category selection."
5788
  msgstr ""
5789
 
5790
- #: includes/views/submit_listing.php:812
5791
  msgctxt "submit listing"
5792
  msgid "Please enter your desired username."
5793
  msgstr ""
5794
 
5795
- #: includes/views/submit_listing.php:817
5796
  msgctxt "submit listing"
5797
  msgid "Please enter the e-mail for your new account."
5798
  msgstr ""
5799
 
5800
- #: includes/views/submit_listing.php:822
5801
  msgctxt "submit listing"
5802
  msgid "Please enter the password for your new account."
5803
  msgstr ""
5804
 
5805
- #: includes/views/submit_listing.php:832
5806
  msgctxt "submit listing"
5807
  msgid "The username you chose is already in use. Please use a different one."
5808
  msgstr ""
5809
 
5810
- #: includes/views/submit_listing.php:837
5811
  msgctxt "submit listing"
5812
  msgid "The e-mail address you chose for your account is already in use."
5813
  msgstr ""
5814
 
5815
- #: includes/views/submit_listing.php:852
5816
  msgctxt "submit listing"
5817
  msgid "Create a user account on this site"
5818
  msgstr ""
5819
 
5820
- #: includes/views/submit_listing.php:859
5821
  msgctxt "submit listing"
5822
  msgid ""
5823
  "You need to create an account on the site. Please fill out the form below."
5824
  msgstr ""
5825
 
5826
- #: includes/views/submit_listing.php:865
5827
  msgctxt "submit listing"
5828
  msgid "Username:"
5829
  msgstr ""
5830
 
5831
- #: includes/views/submit_listing.php:874
5832
  msgctxt "submit listing"
5833
  msgid "Email:"
5834
  msgstr ""
5835
 
5836
- #: includes/views/submit_listing.php:883
5837
  msgctxt "submit listing"
5838
  msgid "Password:"
5839
  msgstr ""
@@ -6030,7 +6077,7 @@ msgctxt "form-fields api"
6030
  msgid "Link Text (optional):"
6031
  msgstr ""
6032
 
6033
- #: includes/fields/class-form-field.php:707
6034
  msgctxt "form-fields api"
6035
  msgid ""
6036
  "This form field can't be deleted because it is required for the plugin to "
@@ -6103,22 +6150,22 @@ msgctxt "form-fields-api"
6103
  msgid "Invalid form field type"
6104
  msgstr ""
6105
 
6106
- #: includes/fields/class-form-field.php:586
6107
  msgctxt "form-fields-api"
6108
  msgid "Field label is required."
6109
  msgstr ""
6110
 
6111
- #: includes/fields/class-form-field.php:590
6112
  msgctxt "form-fields-api"
6113
  msgid "Field label max length is 255 characters."
6114
  msgstr ""
6115
 
6116
- #: includes/fields/class-form-field.php:594
6117
  msgctxt "form-fields-api"
6118
  msgid "Field description max length is 255 characters."
6119
  msgstr ""
6120
 
6121
- #: includes/fields/class-form-field.php:605
6122
  msgctxt "form-fields-api"
6123
  msgid ""
6124
  "You can't change from %2$s field type to the one you wanted--the types are "
@@ -6126,31 +6173,31 @@ msgid ""
6126
  "delete this current field and create a NEW field of type %1$s instead."
6127
  msgstr ""
6128
 
6129
- #: includes/fields/class-form-field.php:608
6130
  msgctxt "form-fields-api"
6131
  msgid ""
6132
  "<strong>WARNING</strong>: If you delete this field, the data from it in "
6133
  "existing listings will be deleted as well."
6134
  msgstr ""
6135
 
6136
- #: includes/fields/class-form-field.php:642
6137
  msgctxt "form-fields-api"
6138
  msgid ""
6139
  "There can only be one field with association \"%s\". Please select another "
6140
  "association."
6141
  msgstr ""
6142
 
6143
- #: includes/fields/class-form-field.php:652
6144
  msgctxt "form-fields-api"
6145
  msgid "\"%s\" is an invalid field type for this association."
6146
  msgstr ""
6147
 
6148
- #: includes/fields/class-form-field.php:697
6149
  msgctxt "form-fields-api"
6150
  msgid "Invalid field ID"
6151
  msgstr ""
6152
 
6153
- #: includes/fields/class-form-field.php:720
6154
  msgctxt "form-fields-api"
6155
  msgid "An error occurred while trying to delete this field."
6156
  msgstr ""
@@ -6223,7 +6270,7 @@ msgctxt "form-fields-api select"
6223
  msgid "— None —"
6224
  msgstr ""
6225
 
6226
- #: includes/fields/class-fieldtypes-textarea.php:200
6227
  msgctxt "admin form-fields"
6228
  msgid ""
6229
  "Enabling iframe support in your listings can allow users to execute "
@@ -6367,11 +6414,18 @@ msgstr ""
6367
  #: includes/views/submit_listing.php:511
6368
  msgctxt "templates"
6369
  msgid ""
 
 
 
 
 
 
 
6370
  "Listing submission is not available at the moment. Contact the administrator "
6371
  "for details."
6372
  msgstr ""
6373
 
6374
- #: includes/views/submit_listing.php:514
6375
  msgctxt "templates"
6376
  msgid ""
6377
  "<b>View not available</b>, there is no \"Category\" association field. %s "
@@ -6379,17 +6433,17 @@ msgid ""
6379
  "an existing field"
6380
  msgstr ""
6381
 
6382
- #: includes/views/submit_listing.php:921
6383
  msgctxt "templates"
6384
  msgid "Please agree to the Terms and Conditions."
6385
  msgstr ""
6386
 
6387
- #: includes/views/submit_listing.php:929
6388
  msgctxt "templates"
6389
  msgid "Terms and Conditions:"
6390
  msgstr ""
6391
 
6392
- #: includes/views/submit_listing.php:937
6393
  msgctxt "templates"
6394
  msgid "I agree to the <a>Terms and Conditions</a>"
6395
  msgstr ""
@@ -7650,7 +7704,7 @@ msgctxt "request_access_keys"
7650
  msgid "URL:"
7651
  msgstr ""
7652
 
7653
- #: includes/views/search.php:45
7654
  msgctxt "search"
7655
  msgid "\"%s\" is required."
7656
  msgstr ""
@@ -7676,14 +7730,14 @@ msgctxt "preview"
7676
  msgid "This is just a preview. The listing has not been published yet."
7677
  msgstr ""
7678
 
7679
- #: includes/views/submit_listing.php:680
7680
  msgctxt "listing submit"
7681
  msgid ""
7682
  "Something went wrong. Please check the form for errors, correct them and "
7683
  "submit again."
7684
  msgstr ""
7685
 
7686
- #: includes/views/submit_listing.php:764
7687
  msgctxt "listing submit"
7688
  msgid ""
7689
  "Image upload is required, please provide at least one image and submit again."
5
  "Project-Id-Version: Business Directory Plugin v5.5\n"
6
  "Report-Msgid-Bugs-To: https://wordpress.org/support/plugin/business-"
7
  "directory-plugin\n"
8
+ "POT-Creation-Date: 2019-11-19 21:50:15+00:00\n"
9
  "PO-Revision-Date: 2017-01-16 17:47-0500\n"
10
  "Last-Translator: BD Team <support@businessdirectoryplugin.com>\n"
11
  "Language-Team: BD Team <support@businessdirectoryplugin.com>\n"
207
  msgid "Directory Tag"
208
  msgstr ""
209
 
210
+ #. translators: %s: listing count
211
+ #: includes/class-cpt-integration.php:235
212
+ msgid "%s listing updated."
213
+ msgid_plural "%s listings updated."
214
+ msgstr[0] ""
215
+ msgstr[1] ""
216
+
217
+ #. translators: %s: listing count
218
+ #: includes/class-cpt-integration.php:237
219
+ msgid "%s listing not updated, somebody is editing it."
220
+ msgid_plural "%s listings not updated, somebody is editing them."
221
+ msgstr[0] ""
222
+ msgstr[1] ""
223
+
224
+ #. translators: %s: listing count
225
+ #: includes/class-cpt-integration.php:239
226
+ msgid "%s listing permanently deleted."
227
+ msgid_plural "%s listings permanently deleted."
228
+ msgstr[0] ""
229
+ msgstr[1] ""
230
+
231
+ #. translators: %s: listing count
232
+ #: includes/class-cpt-integration.php:241
233
+ msgid "%s listing moved to the Trash."
234
+ msgid_plural "%s listings moved to the Trash."
235
+ msgstr[0] ""
236
+ msgstr[1] ""
237
+
238
+ #. translators: %s: listing count
239
+ #: includes/class-cpt-integration.php:243
240
+ msgid "%s listing restored from the Trash."
241
+ msgid_plural "%s listings restored from the Trash."
242
+ msgstr[0] ""
243
+ msgstr[1] ""
244
+
245
  #: includes/class-payment-gateway.php:142
246
  msgid ""
247
  "There was an unexpected error trying to cancel your subscription. Please "
1042
  msgid "Renewal email sent."
1043
  msgstr ""
1044
 
1045
+ #: includes/admin/class-admin.php:758
1046
+ msgctxt "admin"
1047
+ msgid ""
1048
+ "Could not send renewal email, notice template at listing expiration not "
1049
+ "found."
1050
+ msgstr ""
1051
+
1052
+ #: includes/admin/class-admin.php:765
1053
  msgctxt "admin"
1054
  msgid "Listing report deleted."
1055
  msgid_plural "Listing reports deleted."
1056
  msgstr[0] ""
1057
  msgstr[1] ""
1058
 
1059
+ #: includes/admin/class-admin.php:813
1060
  msgctxt "admin"
1061
  msgid "Access keys sent."
1062
  msgstr ""
1063
 
1064
+ #: includes/admin/class-admin.php:815
1065
  msgctxt "admin"
1066
  msgid "The access keys couldn't be sent."
1067
  msgstr ""
1068
 
1069
+ #: includes/admin/class-admin.php:873 includes/admin/class-admin.php:879
1070
  msgctxt "admin"
1071
  msgid "Listing Count"
1072
  msgstr ""
1073
 
1074
+ #: includes/admin/class-admin.php:941
1075
  msgctxt "admin"
1076
  msgid ""
1077
  "<b>Business Directory Plugin</b> requires a page with the "
1078
  "<tt>[businessdirectory]</tt> shortcode to function properly."
1079
  msgstr ""
1080
 
1081
+ #: includes/admin/class-admin.php:943
1082
  msgctxt "admin"
1083
  msgid ""
1084
  "You can create this page by yourself or let Business Directory do this for "
1085
  "you automatically."
1086
  msgstr ""
1087
 
1088
+ #: includes/admin/class-admin.php:947
1089
  msgctxt "admin"
1090
  msgid "Create required pages for me"
1091
  msgstr ""
1092
 
1093
+ #: includes/admin/class-admin.php:980
1094
  msgctxt "admin"
1095
  msgid ""
1096
  "<strong>Business Directory Plugin</strong> requires <strong>PHP 5.6</strong> "
1098
  "your provider to upgrade in order to prevent any issues with the plugin."
1099
  msgstr ""
1100
 
1101
+ #: includes/admin/class-admin.php:1003
1102
  msgctxt "admin"
1103
  msgid ""
1104
  "We noticed you want your Business Directory users to register before posting "
1142
  "or let Business Directory do this for you automatically."
1143
  msgstr ""
1144
 
1145
+ #: includes/admin/form-fields.php:214 includes/views/submit_listing.php:535
1146
  msgctxt "admin"
1147
  msgid "Go to \"Manage Form Fields\""
1148
  msgstr ""
1162
  msgid "Abandoned"
1163
  msgstr ""
1164
 
1165
+ #: includes/views/submit_listing.php:518
1166
+ msgctxt "admin"
1167
+ msgid "Go to \"Manage Fees\""
1168
+ msgstr ""
1169
+
1170
  #: includes/admin/class-admin-listings.php:304
1171
  msgctxt "listing attribute"
1172
  msgid "No Fee Plan"
1486
  msgid "Manage Options"
1487
  msgstr ""
1488
 
1489
+ #: includes/admin/class-admin.php:871
1490
  msgctxt "admin category id"
1491
  msgid "ID"
1492
  msgstr ""
2663
  msgid "Field Display Order"
2664
  msgstr ""
2665
 
2666
+ #: includes/fields/class-fieldtypes-textarea.php:197
2667
  msgctxt "form-fields admin"
2668
  msgid "Allow HTML input for this field?"
2669
  msgstr ""
2670
 
2671
+ #: includes/fields/class-fieldtypes-textarea.php:200
2672
  msgctxt "form-fields admin"
2673
  msgid "Allow IFRAME tags in content?"
2674
  msgstr ""
2675
 
2676
+ #: includes/fields/class-fieldtypes-textarea.php:204
2677
  msgctxt "form-fields admin"
2678
  msgid "No"
2679
  msgstr ""
2680
 
2681
+ #: includes/fields/class-fieldtypes-textarea.php:205
2682
  msgctxt "form-fields admin"
2683
  msgid "Yes"
2684
  msgstr ""
2685
 
2686
+ #: includes/fields/class-fieldtypes-textarea.php:210
2687
  msgctxt "form-fields admin"
2688
  msgid "Allow WordPress shortcodes in this field?"
2689
  msgstr ""
2690
 
2691
+ #: includes/fields/class-fieldtypes-textarea.php:215
2692
  msgctxt "form-fields admin"
2693
  msgid "Display a WYSIWYG editor on the frontend?"
2694
  msgstr ""
2695
 
2696
+ #: includes/fields/class-fieldtypes-textarea.php:218
2697
  msgctxt "form-fields admin"
2698
  msgid ""
2699
  "<b>Warning:</b> Users can use this feature to get around your image limits "
2700
  "in fee plans."
2701
  msgstr ""
2702
 
2703
+ #: includes/fields/class-fieldtypes-textarea.php:219
2704
  msgctxt "form-fields admin"
2705
  msgid "Allow images in WYSIWYG editor?"
2706
  msgstr ""
2707
 
2708
+ #: includes/fields/class-fieldtypes-textarea.php:222
2709
  msgctxt "form-fields admin"
2710
  msgid ""
2711
  "<b>Advanced users only!</b> Unless you've been told to change this, don't "
2712
  "switch it unless you know what you're doing."
2713
  msgstr ""
2714
 
2715
+ #: includes/fields/class-fieldtypes-textarea.php:223
2716
  msgctxt "form-fields admin"
2717
  msgid "Apply \"the_content\" filter before displaying this field?"
2718
  msgstr ""
2719
 
2720
+ #: includes/fields/class-fieldtypes-textarea.php:226
2721
  msgctxt "form-fields admin"
2722
  msgid "Use shortened version of Description field as excerpt"
2723
  msgstr ""
2724
 
2725
+ #: includes/fields/class-fieldtypes-textarea.php:227
2726
  msgctxt "form-fields admin"
2727
  msgid ""
2728
  "Enable always (override the Short Description given with a shortened Long "
2729
  "Description)"
2730
  msgstr ""
2731
 
2732
+ #: includes/fields/class-fieldtypes-textarea.php:228
2733
  msgctxt "form-fields admin"
2734
  msgid ""
2735
  "Enable conditionally (override ONLY when Short Description is empty with a "
2736
  "shortened Long Description)"
2737
  msgstr ""
2738
 
2739
+ #: includes/fields/class-fieldtypes-textarea.php:229
2740
  msgctxt "form-fields admin"
2741
  msgid "Disable (use the Short Description all the time, empty or not)"
2742
  msgstr ""
2743
 
2744
+ #: includes/fields/class-fieldtypes-textarea.php:231
2745
  msgctxt "form-fields admin"
2746
  msgid ""
2747
  "Truncates the description field to the value set here. To display all of the "
2748
  "description, set to 0."
2749
  msgstr ""
2750
 
2751
+ #: includes/fields/class-fieldtypes-textarea.php:232
2752
  msgctxt "form-fields admin"
2753
  msgid ""
2754
  "Number of Characters from Short Description/Excerpt to Display in List View "
2755
  "(only)"
2756
  msgstr ""
2757
 
2758
+ #: includes/fields/class-fieldtypes-textarea.php:237
2759
  msgctxt "form-fields admin"
2760
  msgid "Automatically generate excerpt from content field?"
2761
  msgstr ""
5476
  msgstr ""
5477
 
5478
  #. translators: [%s] is the name of the blog.
5479
+ #: includes/class-listing-email-notification.php:239
5480
  msgctxt "notify email"
5481
  msgid "[%s] New listing notification"
5482
  msgstr ""
5483
 
5484
  #. translators: [%s] is the name of the blog.
5485
+ #: includes/class-listing-email-notification.php:290
5486
  msgctxt "notify email"
5487
  msgid "[%s] Listing edit notification"
5488
  msgstr ""
5489
 
5490
  #. translators: %s is the name of the blog.
5491
+ #: includes/class-listing-email-notification.php:362
5492
  msgctxt "notify email"
5493
  msgid "[%s] Reported listing notification"
5494
  msgstr ""
5814
  msgid "Can not submit a listing at this moment. Please try again later."
5815
  msgstr ""
5816
 
5817
+ #: includes/views/submit_listing.php:550
5818
  msgctxt "submit listing"
5819
  msgid "Please select a category."
5820
  msgstr ""
5821
 
5822
+ #: includes/views/submit_listing.php:563
5823
  msgctxt "submit listing"
5824
  msgid "Please select a category for your listing."
5825
  msgstr ""
5826
 
5827
+ #: includes/views/submit_listing.php:583
5828
  msgctxt "submit listing"
5829
  msgid "Please choose a valid category for your plan."
5830
  msgstr ""
5831
 
5832
+ #: includes/views/submit_listing.php:585
5833
  msgctxt "submit listing"
5834
  msgid "Please choose a valid fee plan for your category selection."
5835
  msgstr ""
5836
 
5837
+ #: includes/views/submit_listing.php:826
5838
  msgctxt "submit listing"
5839
  msgid "Please enter your desired username."
5840
  msgstr ""
5841
 
5842
+ #: includes/views/submit_listing.php:831
5843
  msgctxt "submit listing"
5844
  msgid "Please enter the e-mail for your new account."
5845
  msgstr ""
5846
 
5847
+ #: includes/views/submit_listing.php:836
5848
  msgctxt "submit listing"
5849
  msgid "Please enter the password for your new account."
5850
  msgstr ""
5851
 
5852
+ #: includes/views/submit_listing.php:846
5853
  msgctxt "submit listing"
5854
  msgid "The username you chose is already in use. Please use a different one."
5855
  msgstr ""
5856
 
5857
+ #: includes/views/submit_listing.php:851
5858
  msgctxt "submit listing"
5859
  msgid "The e-mail address you chose for your account is already in use."
5860
  msgstr ""
5861
 
5862
+ #: includes/views/submit_listing.php:866
5863
  msgctxt "submit listing"
5864
  msgid "Create a user account on this site"
5865
  msgstr ""
5866
 
5867
+ #: includes/views/submit_listing.php:873
5868
  msgctxt "submit listing"
5869
  msgid ""
5870
  "You need to create an account on the site. Please fill out the form below."
5871
  msgstr ""
5872
 
5873
+ #: includes/views/submit_listing.php:879
5874
  msgctxt "submit listing"
5875
  msgid "Username:"
5876
  msgstr ""
5877
 
5878
+ #: includes/views/submit_listing.php:888
5879
  msgctxt "submit listing"
5880
  msgid "Email:"
5881
  msgstr ""
5882
 
5883
+ #: includes/views/submit_listing.php:897
5884
  msgctxt "submit listing"
5885
  msgid "Password:"
5886
  msgstr ""
6077
  msgid "Link Text (optional):"
6078
  msgstr ""
6079
 
6080
+ #: includes/fields/class-form-field.php:710
6081
  msgctxt "form-fields api"
6082
  msgid ""
6083
  "This form field can't be deleted because it is required for the plugin to "
6150
  msgid "Invalid form field type"
6151
  msgstr ""
6152
 
6153
+ #: includes/fields/class-form-field.php:589
6154
  msgctxt "form-fields-api"
6155
  msgid "Field label is required."
6156
  msgstr ""
6157
 
6158
+ #: includes/fields/class-form-field.php:593
6159
  msgctxt "form-fields-api"
6160
  msgid "Field label max length is 255 characters."
6161
  msgstr ""
6162
 
6163
+ #: includes/fields/class-form-field.php:597
6164
  msgctxt "form-fields-api"
6165
  msgid "Field description max length is 255 characters."
6166
  msgstr ""
6167
 
6168
+ #: includes/fields/class-form-field.php:608
6169
  msgctxt "form-fields-api"
6170
  msgid ""
6171
  "You can't change from %2$s field type to the one you wanted--the types are "
6173
  "delete this current field and create a NEW field of type %1$s instead."
6174
  msgstr ""
6175
 
6176
+ #: includes/fields/class-form-field.php:611
6177
  msgctxt "form-fields-api"
6178
  msgid ""
6179
  "<strong>WARNING</strong>: If you delete this field, the data from it in "
6180
  "existing listings will be deleted as well."
6181
  msgstr ""
6182
 
6183
+ #: includes/fields/class-form-field.php:645
6184
  msgctxt "form-fields-api"
6185
  msgid ""
6186
  "There can only be one field with association \"%s\". Please select another "
6187
  "association."
6188
  msgstr ""
6189
 
6190
+ #: includes/fields/class-form-field.php:655
6191
  msgctxt "form-fields-api"
6192
  msgid "\"%s\" is an invalid field type for this association."
6193
  msgstr ""
6194
 
6195
+ #: includes/fields/class-form-field.php:700
6196
  msgctxt "form-fields-api"
6197
  msgid "Invalid field ID"
6198
  msgstr ""
6199
 
6200
+ #: includes/fields/class-form-field.php:723
6201
  msgctxt "form-fields-api"
6202
  msgid "An error occurred while trying to delete this field."
6203
  msgstr ""
6270
  msgid "— None —"
6271
  msgstr ""
6272
 
6273
+ #: includes/fields/class-fieldtypes-textarea.php:203
6274
  msgctxt "admin form-fields"
6275
  msgid ""
6276
  "Enabling iframe support in your listings can allow users to execute "
6414
  #: includes/views/submit_listing.php:511
6415
  msgctxt "templates"
6416
  msgid ""
6417
+ "<b>There are no Fee Plans available</b>, without a fee plan site users can't "
6418
+ "submit a listing. %s to create a fee plan"
6419
+ msgstr ""
6420
+
6421
+ #: includes/views/submit_listing.php:525
6422
+ msgctxt "templates"
6423
+ msgid ""
6424
  "Listing submission is not available at the moment. Contact the administrator "
6425
  "for details."
6426
  msgstr ""
6427
 
6428
+ #: includes/views/submit_listing.php:528
6429
  msgctxt "templates"
6430
  msgid ""
6431
  "<b>View not available</b>, there is no \"Category\" association field. %s "
6433
  "an existing field"
6434
  msgstr ""
6435
 
6436
+ #: includes/views/submit_listing.php:935
6437
  msgctxt "templates"
6438
  msgid "Please agree to the Terms and Conditions."
6439
  msgstr ""
6440
 
6441
+ #: includes/views/submit_listing.php:943
6442
  msgctxt "templates"
6443
  msgid "Terms and Conditions:"
6444
  msgstr ""
6445
 
6446
+ #: includes/views/submit_listing.php:951
6447
  msgctxt "templates"
6448
  msgid "I agree to the <a>Terms and Conditions</a>"
6449
  msgstr ""
7704
  msgid "URL:"
7705
  msgstr ""
7706
 
7707
+ #: includes/views/search.php:46
7708
  msgctxt "search"
7709
  msgid "\"%s\" is required."
7710
  msgstr ""
7730
  msgid "This is just a preview. The listing has not been published yet."
7731
  msgstr ""
7732
 
7733
+ #: includes/views/submit_listing.php:694
7734
  msgctxt "listing submit"
7735
  msgid ""
7736
  "Something went wrong. Please check the form for errors, correct them and "
7737
  "submit again."
7738
  msgstr ""
7739
 
7740
+ #: includes/views/submit_listing.php:778
7741
  msgctxt "listing submit"
7742
  msgid ""
7743
  "Image upload is required, please provide at least one image and submit again."
languages/WPBDM-es_ES.mo CHANGED
Binary file
languages/WPBDM-es_ES.po CHANGED
@@ -5,8 +5,8 @@ msgstr ""
5
  "Project-Id-Version: Business Directory Plugin v5.5\n"
6
  "Report-Msgid-Bugs-To: https://wordpress.org/support/plugin/business-"
7
  "directory-plugin\n"
8
- "POT-Creation-Date: 2019-10-30 22:21:32+00:00\n"
9
- "PO-Revision-Date: 2019-10-30 17:24-0500\n"
10
  "Last-Translator: BD Team <support@businessdirectoryplugin.com>\n"
11
  "Language-Team: BD Team <support@businessdirectoryplugin.com>\n"
12
  "Language: es_ES\n"
@@ -231,6 +231,41 @@ msgstr "Etiquetas de Directorio"
231
  msgid "Directory Tag"
232
  msgstr "Etiqueta de Directorio"
233
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
234
  #: includes/class-payment-gateway.php:142
235
  msgid ""
236
  "There was an unexpected error trying to cancel your subscription. Please "
@@ -1092,29 +1127,38 @@ msgctxt "admin"
1092
  msgid "Renewal email sent."
1093
  msgstr "Mensaje de correo electrónico de renovación enviado."
1094
 
1095
- #: includes/admin/class-admin.php:761
 
 
 
 
 
 
 
 
 
1096
  msgctxt "admin"
1097
  msgid "Listing report deleted."
1098
  msgid_plural "Listing reports deleted."
1099
  msgstr[0] "Reporte eliminado."
1100
  msgstr[1] "Reportes eliminados."
1101
 
1102
- #: includes/admin/class-admin.php:809
1103
  msgctxt "admin"
1104
  msgid "Access keys sent."
1105
  msgstr "Claves de acceso enviadas."
1106
 
1107
- #: includes/admin/class-admin.php:811
1108
  msgctxt "admin"
1109
  msgid "The access keys couldn't be sent."
1110
  msgstr "No se pudo enviar las claves de acceso."
1111
 
1112
- #: includes/admin/class-admin.php:869 includes/admin/class-admin.php:875
1113
  msgctxt "admin"
1114
  msgid "Listing Count"
1115
  msgstr "Conteo de Listados"
1116
 
1117
- #: includes/admin/class-admin.php:937
1118
  msgctxt "admin"
1119
  msgid ""
1120
  "<b>Business Directory Plugin</b> requires a page with the "
@@ -1123,7 +1167,7 @@ msgstr ""
1123
  "<b>Business Directory Plugin</b> requiere una página con el shortcode "
1124
  "<tt>[businessdirectory]</tt> para funcionar adecuadamente."
1125
 
1126
- #: includes/admin/class-admin.php:939
1127
  msgctxt "admin"
1128
  msgid ""
1129
  "You can create this page by yourself or let Business Directory do this for "
@@ -1132,12 +1176,12 @@ msgstr ""
1132
  "Puede crear esta página usted mismo o dejar que Business Directory lo haga "
1133
  "por usted automáticamente."
1134
 
1135
- #: includes/admin/class-admin.php:943
1136
  msgctxt "admin"
1137
  msgid "Create required pages for me"
1138
  msgstr "Crear las páginas requeridas por mi"
1139
 
1140
- #: includes/admin/class-admin.php:976
1141
  msgctxt "admin"
1142
  msgid ""
1143
  "<strong>Business Directory Plugin</strong> requires <strong>PHP 5.6</strong> "
@@ -1149,7 +1193,7 @@ msgstr ""
1149
  "Por favor comuníquese con su proveedor de hosting para actualizar su sistema "
1150
  "y evitar problemas de compatibilidad."
1151
 
1152
- #: includes/admin/class-admin.php:999
1153
  msgctxt "admin"
1154
  msgid ""
1155
  "We noticed you want your Business Directory users to register before posting "
@@ -1204,7 +1248,7 @@ msgstr ""
1204
  "Puede crear estos campos usted mismo en \"Administrar Campos de Formulario\" "
1205
  "o puede dejar que Business Directory haga esto por usted automáticamente."
1206
 
1207
- #: includes/admin/form-fields.php:214 includes/views/submit_listing.php:521
1208
  msgctxt "admin"
1209
  msgid "Go to \"Manage Form Fields\""
1210
  msgstr "Ir a \"Administrar Campos de Formulario\""
@@ -1224,6 +1268,11 @@ msgctxt "admin"
1224
  msgid "Abandoned"
1225
  msgstr "Abandonados"
1226
 
 
 
 
 
 
1227
  #: includes/admin/class-admin-listings.php:304
1228
  msgctxt "listing attribute"
1229
  msgid "No Fee Plan"
@@ -1548,7 +1597,7 @@ msgctxt "admin menu"
1548
  msgid "Manage Options"
1549
  msgstr "Configuraciones"
1550
 
1551
- #: includes/admin/class-admin.php:867
1552
  msgctxt "admin category id"
1553
  msgid "ID"
1554
  msgstr "ID"
@@ -1666,7 +1715,7 @@ msgid ""
1666
  "created, select this option!"
1667
  msgstr ""
1668
  "Seleccione esta opción si planea re-importar los listados después para "
1669
- "actualizarlos y no desea que se creen nuevos"
1670
 
1671
  #: templates/admin/csv-export.tpl.php:71
1672
  msgctxt "admin csv-export"
@@ -2800,37 +2849,37 @@ msgctxt "form-fields admin"
2800
  msgid "Field Display Order"
2801
  msgstr "Orden de presentación del campo"
2802
 
2803
- #: includes/fields/class-fieldtypes-textarea.php:194
2804
  msgctxt "form-fields admin"
2805
  msgid "Allow HTML input for this field?"
2806
  msgstr "Permitir entrada HTML en este campo?"
2807
 
2808
- #: includes/fields/class-fieldtypes-textarea.php:197
2809
  msgctxt "form-fields admin"
2810
  msgid "Allow IFRAME tags in content?"
2811
  msgstr "¿Permitir tags IFRAME en el contenido?"
2812
 
2813
- #: includes/fields/class-fieldtypes-textarea.php:201
2814
  msgctxt "form-fields admin"
2815
  msgid "No"
2816
  msgstr "No"
2817
 
2818
- #: includes/fields/class-fieldtypes-textarea.php:202
2819
  msgctxt "form-fields admin"
2820
  msgid "Yes"
2821
  msgstr "Sí"
2822
 
2823
- #: includes/fields/class-fieldtypes-textarea.php:207
2824
  msgctxt "form-fields admin"
2825
  msgid "Allow WordPress shortcodes in this field?"
2826
  msgstr "Permitir shortcodes de WordPress en este campo?"
2827
 
2828
- #: includes/fields/class-fieldtypes-textarea.php:212
2829
  msgctxt "form-fields admin"
2830
  msgid "Display a WYSIWYG editor on the frontend?"
2831
  msgstr "Mostrar un editor WYSIWYG en la cara del sitio?"
2832
 
2833
- #: includes/fields/class-fieldtypes-textarea.php:215
2834
  msgctxt "form-fields admin"
2835
  msgid ""
2836
  "<b>Warning:</b> Users can use this feature to get around your image limits "
@@ -2839,12 +2888,12 @@ msgstr ""
2839
  "<b>Advertencia:</b> Los usuarios podrían usar esta característica para "
2840
  "saltar los límites de imágenes."
2841
 
2842
- #: includes/fields/class-fieldtypes-textarea.php:216
2843
  msgctxt "form-fields admin"
2844
  msgid "Allow images in WYSIWYG editor?"
2845
  msgstr "Permitir imágenes en el editor WYSIWYG?"
2846
 
2847
- #: includes/fields/class-fieldtypes-textarea.php:219
2848
  msgctxt "form-fields admin"
2849
  msgid ""
2850
  "<b>Advanced users only!</b> Unless you've been told to change this, don't "
@@ -2853,19 +2902,19 @@ msgstr ""
2853
  "<b>¡Usuarios avanzados únicamente!</b> No cambie esta configuración salvo si "
2854
  "está seguro de lo que está haciendo."
2855
 
2856
- #: includes/fields/class-fieldtypes-textarea.php:220
2857
  msgctxt "form-fields admin"
2858
  msgid "Apply \"the_content\" filter before displaying this field?"
2859
  msgstr ""
2860
  "Aplicar el filtro \"the_content\" antes de mostrar el contenido de este "
2861
  "campo?"
2862
 
2863
- #: includes/fields/class-fieldtypes-textarea.php:223
2864
  msgctxt "form-fields admin"
2865
  msgid "Use shortened version of Description field as excerpt"
2866
  msgstr "Utilizar la versión abreviada del campo Descripción como extracto"
2867
 
2868
- #: includes/fields/class-fieldtypes-textarea.php:224
2869
  msgctxt "form-fields admin"
2870
  msgid ""
2871
  "Enable always (override the Short Description given with a shortened Long "
@@ -2874,7 +2923,7 @@ msgstr ""
2874
  "Habilitar siempre (sobre escribir la descripción corta con una versión "
2875
  "abreviada de la descripción larga)"
2876
 
2877
- #: includes/fields/class-fieldtypes-textarea.php:225
2878
  msgctxt "form-fields admin"
2879
  msgid ""
2880
  "Enable conditionally (override ONLY when Short Description is empty with a "
@@ -2883,12 +2932,12 @@ msgstr ""
2883
  "Habilitar condicionalmente (Sobre escribir con una versión abreviada de la "
2884
  "descripción larga SOLO cuando la descripción corta esté vacía)"
2885
 
2886
- #: includes/fields/class-fieldtypes-textarea.php:226
2887
  msgctxt "form-fields admin"
2888
  msgid "Disable (use the Short Description all the time, empty or not)"
2889
  msgstr "Inhabilitar (usar la descripción corta siempre, aún si está vacía)"
2890
 
2891
- #: includes/fields/class-fieldtypes-textarea.php:228
2892
  msgctxt "form-fields admin"
2893
  msgid ""
2894
  "Truncates the description field to the value set here. To display all of the "
@@ -2897,7 +2946,7 @@ msgstr ""
2897
  "Acorta el contenido del campo descripción al número de caracteres "
2898
  "especificado aquí. Para mostrar toda la descripción, ingrese 0."
2899
 
2900
- #: includes/fields/class-fieldtypes-textarea.php:229
2901
  msgctxt "form-fields admin"
2902
  msgid ""
2903
  "Number of Characters from Short Description/Excerpt to Display in List View "
@@ -2906,7 +2955,7 @@ msgstr ""
2906
  "Número de caracteres de la descripción corta/extracto para mostrar en la "
2907
  "vista de listado"
2908
 
2909
- #: includes/fields/class-fieldtypes-textarea.php:234
2910
  msgctxt "form-fields admin"
2911
  msgid "Automatically generate excerpt from content field?"
2912
  msgstr "¿Generar resumen automáticamente del campo de contenido?"
@@ -5836,19 +5885,19 @@ msgid "Free Listing"
5836
  msgstr "Listado Gratuito"
5837
 
5838
  #. translators: [%s] is the name of the blog.
5839
- #: includes/class-listing-email-notification.php:235
5840
  msgctxt "notify email"
5841
  msgid "[%s] New listing notification"
5842
  msgstr "[%s] Notificación de nuevo listado"
5843
 
5844
  #. translators: [%s] is the name of the blog.
5845
- #: includes/class-listing-email-notification.php:286
5846
  msgctxt "notify email"
5847
  msgid "[%s] Listing edit notification"
5848
  msgstr "[%s] Notificación de listado editado"
5849
 
5850
  #. translators: %s is the name of the blog.
5851
- #: includes/class-listing-email-notification.php:358
5852
  msgctxt "notify email"
5853
  msgid "[%s] Reported listing notification"
5854
  msgstr "[%s] Notificación de listado reportado"
@@ -6188,62 +6237,62 @@ msgid "Can not submit a listing at this moment. Please try again later."
6188
  msgstr ""
6189
  "No puede publicar un listado en este momento. Por favor intente más tarde."
6190
 
6191
- #: includes/views/submit_listing.php:536
6192
  msgctxt "submit listing"
6193
  msgid "Please select a category."
6194
  msgstr "Por favor seleccione una categoría."
6195
 
6196
- #: includes/views/submit_listing.php:549
6197
  msgctxt "submit listing"
6198
  msgid "Please select a category for your listing."
6199
  msgstr "Por favor seleccione una categoría para su listado."
6200
 
6201
- #: includes/views/submit_listing.php:569
6202
  msgctxt "submit listing"
6203
  msgid "Please choose a valid category for your plan."
6204
  msgstr "Por favor seleccione una categoría válida para su comisión."
6205
 
6206
- #: includes/views/submit_listing.php:571
6207
  msgctxt "submit listing"
6208
  msgid "Please choose a valid fee plan for your category selection."
6209
  msgstr "Por favor elija una comisión válida para la categoría seleccionada."
6210
 
6211
- #: includes/views/submit_listing.php:812
6212
  msgctxt "submit listing"
6213
  msgid "Please enter your desired username."
6214
  msgstr "Por favor ingrese su nombre de usuario."
6215
 
6216
- #: includes/views/submit_listing.php:817
6217
  msgctxt "submit listing"
6218
  msgid "Please enter the e-mail for your new account."
6219
  msgstr ""
6220
  "Por favor ingrese la dirección de correo electrónico para su nueva cuenta."
6221
 
6222
- #: includes/views/submit_listing.php:822
6223
  msgctxt "submit listing"
6224
  msgid "Please enter the password for your new account."
6225
  msgstr "Por favor ingrese la contraseña para su nueva cuenta."
6226
 
6227
- #: includes/views/submit_listing.php:832
6228
  msgctxt "submit listing"
6229
  msgid "The username you chose is already in use. Please use a different one."
6230
  msgstr ""
6231
  "El nombre de usuario que eligió ya está en uso. Por favor elija un nombre de "
6232
  "usuario diferente."
6233
 
6234
- #: includes/views/submit_listing.php:837
6235
  msgctxt "submit listing"
6236
  msgid "The e-mail address you chose for your account is already in use."
6237
  msgstr ""
6238
  "La dirección de correo electrónico que eligió para su cuenta ya está siendo "
6239
  "utilizada."
6240
 
6241
- #: includes/views/submit_listing.php:852
6242
  msgctxt "submit listing"
6243
  msgid "Create a user account on this site"
6244
  msgstr "Crear una cuenta de usuario en este sitio"
6245
 
6246
- #: includes/views/submit_listing.php:859
6247
  msgctxt "submit listing"
6248
  msgid ""
6249
  "You need to create an account on the site. Please fill out the form below."
@@ -6251,17 +6300,17 @@ msgstr ""
6251
  "Debe crear una cuenta de usuario en este sitio. Por favor ingrese los datos "
6252
  "requeridos en el formulario que está debajo."
6253
 
6254
- #: includes/views/submit_listing.php:865
6255
  msgctxt "submit listing"
6256
  msgid "Username:"
6257
  msgstr "Nombre de usuario:"
6258
 
6259
- #: includes/views/submit_listing.php:874
6260
  msgctxt "submit listing"
6261
  msgid "Email:"
6262
  msgstr "Correo electrónico:"
6263
 
6264
- #: includes/views/submit_listing.php:883
6265
  msgctxt "submit listing"
6266
  msgid "Password:"
6267
  msgstr "Contraseña:"
@@ -6462,7 +6511,7 @@ msgctxt "form-fields api"
6462
  msgid "Link Text (optional):"
6463
  msgstr "Texto del enlace (opcional):"
6464
 
6465
- #: includes/fields/class-form-field.php:707
6466
  msgctxt "form-fields api"
6467
  msgid ""
6468
  "This form field can't be deleted because it is required for the plugin to "
@@ -6537,22 +6586,22 @@ msgctxt "form-fields-api"
6537
  msgid "Invalid form field type"
6538
  msgstr "Tipo de campo inválido"
6539
 
6540
- #: includes/fields/class-form-field.php:586
6541
  msgctxt "form-fields-api"
6542
  msgid "Field label is required."
6543
  msgstr "El nombre del campo es requerido."
6544
 
6545
- #: includes/fields/class-form-field.php:590
6546
  msgctxt "form-fields-api"
6547
  msgid "Field label max length is 255 characters."
6548
  msgstr "La longitud máxima de la etiqueta del campo es de 255 caracteres."
6549
 
6550
- #: includes/fields/class-form-field.php:594
6551
  msgctxt "form-fields-api"
6552
  msgid "Field description max length is 255 characters."
6553
  msgstr "La longitud máxima de la descripción del campo es de 255 caracteres."
6554
 
6555
- #: includes/fields/class-form-field.php:605
6556
  msgctxt "form-fields-api"
6557
  msgid ""
6558
  "You can't change from %2$s field type to the one you wanted--the types are "
@@ -6564,7 +6613,7 @@ msgstr ""
6564
  "debe eliminar el campo actual y crear un nuevo campo de tipo %1$s en su "
6565
  "lugar."
6566
 
6567
- #: includes/fields/class-form-field.php:608
6568
  msgctxt "form-fields-api"
6569
  msgid ""
6570
  "<strong>WARNING</strong>: If you delete this field, the data from it in "
@@ -6573,7 +6622,7 @@ msgstr ""
6573
  "<strong>ADVERTENCIA</strong>: si se elimina este campo, también se "
6574
  "eliminarán los datos de éste en los listados existentes."
6575
 
6576
- #: includes/fields/class-form-field.php:642
6577
  msgctxt "form-fields-api"
6578
  msgid ""
6579
  "There can only be one field with association \"%s\". Please select another "
@@ -6582,17 +6631,17 @@ msgstr ""
6582
  "Solo puede haber un campo con asociación \"%s\". Por favor elija otra "
6583
  "asociación."
6584
 
6585
- #: includes/fields/class-form-field.php:652
6586
  msgctxt "form-fields-api"
6587
  msgid "\"%s\" is an invalid field type for this association."
6588
  msgstr "\"%s\" es un tipo de campo inválido para esta asociación."
6589
 
6590
- #: includes/fields/class-form-field.php:697
6591
  msgctxt "form-fields-api"
6592
  msgid "Invalid field ID"
6593
  msgstr "ID de campo inválido"
6594
 
6595
- #: includes/fields/class-form-field.php:720
6596
  msgctxt "form-fields-api"
6597
  msgid "An error occurred while trying to delete this field."
6598
  msgstr "Un error ocurrió mientras se trataba de eliminar este campo."
@@ -6667,7 +6716,7 @@ msgctxt "form-fields-api select"
6667
  msgid "— None —"
6668
  msgstr "— Ninguno —"
6669
 
6670
- #: includes/fields/class-fieldtypes-textarea.php:200
6671
  msgctxt "admin form-fields"
6672
  msgid ""
6673
  "Enabling iframe support in your listings can allow users to execute "
@@ -6828,13 +6877,22 @@ msgstr ""
6828
  #: includes/views/submit_listing.php:511
6829
  msgctxt "templates"
6830
  msgid ""
 
 
 
 
 
 
 
 
 
6831
  "Listing submission is not available at the moment. Contact the administrator "
6832
  "for details."
6833
  msgstr ""
6834
  "La opción para agregar listados no está disponible en el momento. Contacte "
6835
  "al administrador para más detalles."
6836
 
6837
- #: includes/views/submit_listing.php:514
6838
  msgctxt "templates"
6839
  msgid ""
6840
  "<b>View not available</b>, there is no \"Category\" association field. %s "
@@ -6845,17 +6903,17 @@ msgstr ""
6845
  "“Categoría”. %s y cree un nuevo campo con dicha asociación, o asigne la "
6846
  "asociación a un campo existente."
6847
 
6848
- #: includes/views/submit_listing.php:921
6849
  msgctxt "templates"
6850
  msgid "Please agree to the Terms and Conditions."
6851
  msgstr "Por favor acepte los Términos y Condiciones."
6852
 
6853
- #: includes/views/submit_listing.php:929
6854
  msgctxt "templates"
6855
  msgid "Terms and Conditions:"
6856
  msgstr "Términos y Condiciones:"
6857
 
6858
- #: includes/views/submit_listing.php:937
6859
  msgctxt "templates"
6860
  msgid "I agree to the <a>Terms and Conditions</a>"
6861
  msgstr "Acepto los <a>Términos y Condiciones</a>"
@@ -8222,7 +8280,7 @@ msgctxt "request_access_keys"
8222
  msgid "URL:"
8223
  msgstr "URL:"
8224
 
8225
- #: includes/views/search.php:45
8226
  msgctxt "search"
8227
  msgid "\"%s\" is required."
8228
  msgstr "“%s” es requerido."
@@ -8249,7 +8307,7 @@ msgid "This is just a preview. The listing has not been published yet."
8249
  msgstr ""
8250
  "Esta es tan solo una previsualización. El listado no ha sido publicado aún."
8251
 
8252
- #: includes/views/submit_listing.php:680
8253
  msgctxt "listing submit"
8254
  msgid ""
8255
  "Something went wrong. Please check the form for errors, correct them and "
@@ -8258,7 +8316,7 @@ msgstr ""
8258
  "Algo salió mal. Por favor verifique que el formulario no contiene errores y "
8259
  "envíelo de nuevo."
8260
 
8261
- #: includes/views/submit_listing.php:764
8262
  msgctxt "listing submit"
8263
  msgid ""
8264
  "Image upload is required, please provide at least one image and submit again."
5
  "Project-Id-Version: Business Directory Plugin v5.5\n"
6
  "Report-Msgid-Bugs-To: https://wordpress.org/support/plugin/business-"
7
  "directory-plugin\n"
8
+ "POT-Creation-Date: 2019-11-19 21:50:15+00:00\n"
9
+ "PO-Revision-Date: 2019-11-19 16:57-0500\n"
10
  "Last-Translator: BD Team <support@businessdirectoryplugin.com>\n"
11
  "Language-Team: BD Team <support@businessdirectoryplugin.com>\n"
12
  "Language: es_ES\n"
231
  msgid "Directory Tag"
232
  msgstr "Etiqueta de Directorio"
233
 
234
+ #. translators: %s: listing count
235
+ #: includes/class-cpt-integration.php:235
236
+ msgid "%s listing updated."
237
+ msgid_plural "%s listings updated."
238
+ msgstr[0] "%s listado actualizado."
239
+ msgstr[1] "%s listados actualizados."
240
+
241
+ #. translators: %s: listing count
242
+ #: includes/class-cpt-integration.php:237
243
+ msgid "%s listing not updated, somebody is editing it."
244
+ msgid_plural "%s listings not updated, somebody is editing them."
245
+ msgstr[0] "%s listado no actualizado, alguien está editándolo."
246
+ msgstr[1] "%s listados no actualizados, alguien los está editándonos."
247
+
248
+ #. translators: %s: listing count
249
+ #: includes/class-cpt-integration.php:239
250
+ msgid "%s listing permanently deleted."
251
+ msgid_plural "%s listings permanently deleted."
252
+ msgstr[0] "%s listado eliminado permanentemente."
253
+ msgstr[1] "%s listados eliminados permanentemente."
254
+
255
+ #. translators: %s: listing count
256
+ #: includes/class-cpt-integration.php:241
257
+ msgid "%s listing moved to the Trash."
258
+ msgid_plural "%s listings moved to the Trash."
259
+ msgstr[0] "%s listado se trasladó a la Papelera."
260
+ msgstr[1] "%s listados se trasladaron a la Papelera."
261
+
262
+ #. translators: %s: listing count
263
+ #: includes/class-cpt-integration.php:243
264
+ msgid "%s listing restored from the Trash."
265
+ msgid_plural "%s listings restored from the Trash."
266
+ msgstr[0] "%s listado restablecido de la Papelera."
267
+ msgstr[1] "%s listados restablecidos de la Papelera."
268
+
269
  #: includes/class-payment-gateway.php:142
270
  msgid ""
271
  "There was an unexpected error trying to cancel your subscription. Please "
1127
  msgid "Renewal email sent."
1128
  msgstr "Mensaje de correo electrónico de renovación enviado."
1129
 
1130
+ #: includes/admin/class-admin.php:758
1131
+ msgctxt "admin"
1132
+ msgid ""
1133
+ "Could not send renewal email, notice template at listing expiration not "
1134
+ "found."
1135
+ msgstr ""
1136
+ "No se pudo enviar el correo electrónico de renovación, no se encontró la "
1137
+ "plantilla de notificación al momento de expirar e listado."
1138
+
1139
+ #: includes/admin/class-admin.php:765
1140
  msgctxt "admin"
1141
  msgid "Listing report deleted."
1142
  msgid_plural "Listing reports deleted."
1143
  msgstr[0] "Reporte eliminado."
1144
  msgstr[1] "Reportes eliminados."
1145
 
1146
+ #: includes/admin/class-admin.php:813
1147
  msgctxt "admin"
1148
  msgid "Access keys sent."
1149
  msgstr "Claves de acceso enviadas."
1150
 
1151
+ #: includes/admin/class-admin.php:815
1152
  msgctxt "admin"
1153
  msgid "The access keys couldn't be sent."
1154
  msgstr "No se pudo enviar las claves de acceso."
1155
 
1156
+ #: includes/admin/class-admin.php:873 includes/admin/class-admin.php:879
1157
  msgctxt "admin"
1158
  msgid "Listing Count"
1159
  msgstr "Conteo de Listados"
1160
 
1161
+ #: includes/admin/class-admin.php:941
1162
  msgctxt "admin"
1163
  msgid ""
1164
  "<b>Business Directory Plugin</b> requires a page with the "
1167
  "<b>Business Directory Plugin</b> requiere una página con el shortcode "
1168
  "<tt>[businessdirectory]</tt> para funcionar adecuadamente."
1169
 
1170
+ #: includes/admin/class-admin.php:943
1171
  msgctxt "admin"
1172
  msgid ""
1173
  "You can create this page by yourself or let Business Directory do this for "
1176
  "Puede crear esta página usted mismo o dejar que Business Directory lo haga "
1177
  "por usted automáticamente."
1178
 
1179
+ #: includes/admin/class-admin.php:947
1180
  msgctxt "admin"
1181
  msgid "Create required pages for me"
1182
  msgstr "Crear las páginas requeridas por mi"
1183
 
1184
+ #: includes/admin/class-admin.php:980
1185
  msgctxt "admin"
1186
  msgid ""
1187
  "<strong>Business Directory Plugin</strong> requires <strong>PHP 5.6</strong> "
1193
  "Por favor comuníquese con su proveedor de hosting para actualizar su sistema "
1194
  "y evitar problemas de compatibilidad."
1195
 
1196
+ #: includes/admin/class-admin.php:1003
1197
  msgctxt "admin"
1198
  msgid ""
1199
  "We noticed you want your Business Directory users to register before posting "
1248
  "Puede crear estos campos usted mismo en \"Administrar Campos de Formulario\" "
1249
  "o puede dejar que Business Directory haga esto por usted automáticamente."
1250
 
1251
+ #: includes/admin/form-fields.php:214 includes/views/submit_listing.php:535
1252
  msgctxt "admin"
1253
  msgid "Go to \"Manage Form Fields\""
1254
  msgstr "Ir a \"Administrar Campos de Formulario\""
1268
  msgid "Abandoned"
1269
  msgstr "Abandonados"
1270
 
1271
+ #: includes/views/submit_listing.php:518
1272
+ msgctxt "admin"
1273
+ msgid "Go to \"Manage Fees\""
1274
+ msgstr "Ir a \"Administrar Comisiones“"
1275
+
1276
  #: includes/admin/class-admin-listings.php:304
1277
  msgctxt "listing attribute"
1278
  msgid "No Fee Plan"
1597
  msgid "Manage Options"
1598
  msgstr "Configuraciones"
1599
 
1600
+ #: includes/admin/class-admin.php:871
1601
  msgctxt "admin category id"
1602
  msgid "ID"
1603
  msgstr "ID"
1715
  "created, select this option!"
1716
  msgstr ""
1717
  "Seleccione esta opción si planea re-importar los listados después para "
1718
+ "actualizarlos y no desea que se creen nuevos!"
1719
 
1720
  #: templates/admin/csv-export.tpl.php:71
1721
  msgctxt "admin csv-export"
2849
  msgid "Field Display Order"
2850
  msgstr "Orden de presentación del campo"
2851
 
2852
+ #: includes/fields/class-fieldtypes-textarea.php:197
2853
  msgctxt "form-fields admin"
2854
  msgid "Allow HTML input for this field?"
2855
  msgstr "Permitir entrada HTML en este campo?"
2856
 
2857
+ #: includes/fields/class-fieldtypes-textarea.php:200
2858
  msgctxt "form-fields admin"
2859
  msgid "Allow IFRAME tags in content?"
2860
  msgstr "¿Permitir tags IFRAME en el contenido?"
2861
 
2862
+ #: includes/fields/class-fieldtypes-textarea.php:204
2863
  msgctxt "form-fields admin"
2864
  msgid "No"
2865
  msgstr "No"
2866
 
2867
+ #: includes/fields/class-fieldtypes-textarea.php:205
2868
  msgctxt "form-fields admin"
2869
  msgid "Yes"
2870
  msgstr "Sí"
2871
 
2872
+ #: includes/fields/class-fieldtypes-textarea.php:210
2873
  msgctxt "form-fields admin"
2874
  msgid "Allow WordPress shortcodes in this field?"
2875
  msgstr "Permitir shortcodes de WordPress en este campo?"
2876
 
2877
+ #: includes/fields/class-fieldtypes-textarea.php:215
2878
  msgctxt "form-fields admin"
2879
  msgid "Display a WYSIWYG editor on the frontend?"
2880
  msgstr "Mostrar un editor WYSIWYG en la cara del sitio?"
2881
 
2882
+ #: includes/fields/class-fieldtypes-textarea.php:218
2883
  msgctxt "form-fields admin"
2884
  msgid ""
2885
  "<b>Warning:</b> Users can use this feature to get around your image limits "
2888
  "<b>Advertencia:</b> Los usuarios podrían usar esta característica para "
2889
  "saltar los límites de imágenes."
2890
 
2891
+ #: includes/fields/class-fieldtypes-textarea.php:219
2892
  msgctxt "form-fields admin"
2893
  msgid "Allow images in WYSIWYG editor?"
2894
  msgstr "Permitir imágenes en el editor WYSIWYG?"
2895
 
2896
+ #: includes/fields/class-fieldtypes-textarea.php:222
2897
  msgctxt "form-fields admin"
2898
  msgid ""
2899
  "<b>Advanced users only!</b> Unless you've been told to change this, don't "
2902
  "<b>¡Usuarios avanzados únicamente!</b> No cambie esta configuración salvo si "
2903
  "está seguro de lo que está haciendo."
2904
 
2905
+ #: includes/fields/class-fieldtypes-textarea.php:223
2906
  msgctxt "form-fields admin"
2907
  msgid "Apply \"the_content\" filter before displaying this field?"
2908
  msgstr ""
2909
  "Aplicar el filtro \"the_content\" antes de mostrar el contenido de este "
2910
  "campo?"
2911
 
2912
+ #: includes/fields/class-fieldtypes-textarea.php:226
2913
  msgctxt "form-fields admin"
2914
  msgid "Use shortened version of Description field as excerpt"
2915
  msgstr "Utilizar la versión abreviada del campo Descripción como extracto"
2916
 
2917
+ #: includes/fields/class-fieldtypes-textarea.php:227
2918
  msgctxt "form-fields admin"
2919
  msgid ""
2920
  "Enable always (override the Short Description given with a shortened Long "
2923
  "Habilitar siempre (sobre escribir la descripción corta con una versión "
2924
  "abreviada de la descripción larga)"
2925
 
2926
+ #: includes/fields/class-fieldtypes-textarea.php:228
2927
  msgctxt "form-fields admin"
2928
  msgid ""
2929
  "Enable conditionally (override ONLY when Short Description is empty with a "
2932
  "Habilitar condicionalmente (Sobre escribir con una versión abreviada de la "
2933
  "descripción larga SOLO cuando la descripción corta esté vacía)"
2934
 
2935
+ #: includes/fields/class-fieldtypes-textarea.php:229
2936
  msgctxt "form-fields admin"
2937
  msgid "Disable (use the Short Description all the time, empty or not)"
2938
  msgstr "Inhabilitar (usar la descripción corta siempre, aún si está vacía)"
2939
 
2940
+ #: includes/fields/class-fieldtypes-textarea.php:231
2941
  msgctxt "form-fields admin"
2942
  msgid ""
2943
  "Truncates the description field to the value set here. To display all of the "
2946
  "Acorta el contenido del campo descripción al número de caracteres "
2947
  "especificado aquí. Para mostrar toda la descripción, ingrese 0."
2948
 
2949
+ #: includes/fields/class-fieldtypes-textarea.php:232
2950
  msgctxt "form-fields admin"
2951
  msgid ""
2952
  "Number of Characters from Short Description/Excerpt to Display in List View "
2955
  "Número de caracteres de la descripción corta/extracto para mostrar en la "
2956
  "vista de listado"
2957
 
2958
+ #: includes/fields/class-fieldtypes-textarea.php:237
2959
  msgctxt "form-fields admin"
2960
  msgid "Automatically generate excerpt from content field?"
2961
  msgstr "¿Generar resumen automáticamente del campo de contenido?"
5885
  msgstr "Listado Gratuito"
5886
 
5887
  #. translators: [%s] is the name of the blog.
5888
+ #: includes/class-listing-email-notification.php:239
5889
  msgctxt "notify email"
5890
  msgid "[%s] New listing notification"
5891
  msgstr "[%s] Notificación de nuevo listado"
5892
 
5893
  #. translators: [%s] is the name of the blog.
5894
+ #: includes/class-listing-email-notification.php:290
5895
  msgctxt "notify email"
5896
  msgid "[%s] Listing edit notification"
5897
  msgstr "[%s] Notificación de listado editado"
5898
 
5899
  #. translators: %s is the name of the blog.
5900
+ #: includes/class-listing-email-notification.php:362
5901
  msgctxt "notify email"
5902
  msgid "[%s] Reported listing notification"
5903
  msgstr "[%s] Notificación de listado reportado"
6237
  msgstr ""
6238
  "No puede publicar un listado en este momento. Por favor intente más tarde."
6239
 
6240
+ #: includes/views/submit_listing.php:550
6241
  msgctxt "submit listing"
6242
  msgid "Please select a category."
6243
  msgstr "Por favor seleccione una categoría."
6244
 
6245
+ #: includes/views/submit_listing.php:563
6246
  msgctxt "submit listing"
6247
  msgid "Please select a category for your listing."
6248
  msgstr "Por favor seleccione una categoría para su listado."
6249
 
6250
+ #: includes/views/submit_listing.php:583
6251
  msgctxt "submit listing"
6252
  msgid "Please choose a valid category for your plan."
6253
  msgstr "Por favor seleccione una categoría válida para su comisión."
6254
 
6255
+ #: includes/views/submit_listing.php:585
6256
  msgctxt "submit listing"
6257
  msgid "Please choose a valid fee plan for your category selection."
6258
  msgstr "Por favor elija una comisión válida para la categoría seleccionada."
6259
 
6260
+ #: includes/views/submit_listing.php:826
6261
  msgctxt "submit listing"
6262
  msgid "Please enter your desired username."
6263
  msgstr "Por favor ingrese su nombre de usuario."
6264
 
6265
+ #: includes/views/submit_listing.php:831
6266
  msgctxt "submit listing"
6267
  msgid "Please enter the e-mail for your new account."
6268
  msgstr ""
6269
  "Por favor ingrese la dirección de correo electrónico para su nueva cuenta."
6270
 
6271
+ #: includes/views/submit_listing.php:836
6272
  msgctxt "submit listing"
6273
  msgid "Please enter the password for your new account."
6274
  msgstr "Por favor ingrese la contraseña para su nueva cuenta."
6275
 
6276
+ #: includes/views/submit_listing.php:846
6277
  msgctxt "submit listing"
6278
  msgid "The username you chose is already in use. Please use a different one."
6279
  msgstr ""
6280
  "El nombre de usuario que eligió ya está en uso. Por favor elija un nombre de "
6281
  "usuario diferente."
6282
 
6283
+ #: includes/views/submit_listing.php:851
6284
  msgctxt "submit listing"
6285
  msgid "The e-mail address you chose for your account is already in use."
6286
  msgstr ""
6287
  "La dirección de correo electrónico que eligió para su cuenta ya está siendo "
6288
  "utilizada."
6289
 
6290
+ #: includes/views/submit_listing.php:866
6291
  msgctxt "submit listing"
6292
  msgid "Create a user account on this site"
6293
  msgstr "Crear una cuenta de usuario en este sitio"
6294
 
6295
+ #: includes/views/submit_listing.php:873
6296
  msgctxt "submit listing"
6297
  msgid ""
6298
  "You need to create an account on the site. Please fill out the form below."
6300
  "Debe crear una cuenta de usuario en este sitio. Por favor ingrese los datos "
6301
  "requeridos en el formulario que está debajo."
6302
 
6303
+ #: includes/views/submit_listing.php:879
6304
  msgctxt "submit listing"
6305
  msgid "Username:"
6306
  msgstr "Nombre de usuario:"
6307
 
6308
+ #: includes/views/submit_listing.php:888
6309
  msgctxt "submit listing"
6310
  msgid "Email:"
6311
  msgstr "Correo electrónico:"
6312
 
6313
+ #: includes/views/submit_listing.php:897
6314
  msgctxt "submit listing"
6315
  msgid "Password:"
6316
  msgstr "Contraseña:"
6511
  msgid "Link Text (optional):"
6512
  msgstr "Texto del enlace (opcional):"
6513
 
6514
+ #: includes/fields/class-form-field.php:710
6515
  msgctxt "form-fields api"
6516
  msgid ""
6517
  "This form field can't be deleted because it is required for the plugin to "
6586
  msgid "Invalid form field type"
6587
  msgstr "Tipo de campo inválido"
6588
 
6589
+ #: includes/fields/class-form-field.php:589
6590
  msgctxt "form-fields-api"
6591
  msgid "Field label is required."
6592
  msgstr "El nombre del campo es requerido."
6593
 
6594
+ #: includes/fields/class-form-field.php:593
6595
  msgctxt "form-fields-api"
6596
  msgid "Field label max length is 255 characters."
6597
  msgstr "La longitud máxima de la etiqueta del campo es de 255 caracteres."
6598
 
6599
+ #: includes/fields/class-form-field.php:597
6600
  msgctxt "form-fields-api"
6601
  msgid "Field description max length is 255 characters."
6602
  msgstr "La longitud máxima de la descripción del campo es de 255 caracteres."
6603
 
6604
+ #: includes/fields/class-form-field.php:608
6605
  msgctxt "form-fields-api"
6606
  msgid ""
6607
  "You can't change from %2$s field type to the one you wanted--the types are "
6613
  "debe eliminar el campo actual y crear un nuevo campo de tipo %1$s en su "
6614
  "lugar."
6615
 
6616
+ #: includes/fields/class-form-field.php:611
6617
  msgctxt "form-fields-api"
6618
  msgid ""
6619
  "<strong>WARNING</strong>: If you delete this field, the data from it in "
6622
  "<strong>ADVERTENCIA</strong>: si se elimina este campo, también se "
6623
  "eliminarán los datos de éste en los listados existentes."
6624
 
6625
+ #: includes/fields/class-form-field.php:645
6626
  msgctxt "form-fields-api"
6627
  msgid ""
6628
  "There can only be one field with association \"%s\". Please select another "
6631
  "Solo puede haber un campo con asociación \"%s\". Por favor elija otra "
6632
  "asociación."
6633
 
6634
+ #: includes/fields/class-form-field.php:655
6635
  msgctxt "form-fields-api"
6636
  msgid "\"%s\" is an invalid field type for this association."
6637
  msgstr "\"%s\" es un tipo de campo inválido para esta asociación."
6638
 
6639
+ #: includes/fields/class-form-field.php:700
6640
  msgctxt "form-fields-api"
6641
  msgid "Invalid field ID"
6642
  msgstr "ID de campo inválido"
6643
 
6644
+ #: includes/fields/class-form-field.php:723
6645
  msgctxt "form-fields-api"
6646
  msgid "An error occurred while trying to delete this field."
6647
  msgstr "Un error ocurrió mientras se trataba de eliminar este campo."
6716
  msgid "— None —"
6717
  msgstr "— Ninguno —"
6718
 
6719
+ #: includes/fields/class-fieldtypes-textarea.php:203
6720
  msgctxt "admin form-fields"
6721
  msgid ""
6722
  "Enabling iframe support in your listings can allow users to execute "
6877
  #: includes/views/submit_listing.php:511
6878
  msgctxt "templates"
6879
  msgid ""
6880
+ "<b>There are no Fee Plans available</b>, without a fee plan site users can't "
6881
+ "submit a listing. %s to create a fee plan"
6882
+ msgstr ""
6883
+ "<b>No hay planes disponibles</b>, sin un plan de tarifas, los usuarios del "
6884
+ "sitio no pueden crear listados. %s para crear un plan"
6885
+
6886
+ #: includes/views/submit_listing.php:525
6887
+ msgctxt "templates"
6888
+ msgid ""
6889
  "Listing submission is not available at the moment. Contact the administrator "
6890
  "for details."
6891
  msgstr ""
6892
  "La opción para agregar listados no está disponible en el momento. Contacte "
6893
  "al administrador para más detalles."
6894
 
6895
+ #: includes/views/submit_listing.php:528
6896
  msgctxt "templates"
6897
  msgid ""
6898
  "<b>View not available</b>, there is no \"Category\" association field. %s "
6903
  "“Categoría”. %s y cree un nuevo campo con dicha asociación, o asigne la "
6904
  "asociación a un campo existente."
6905
 
6906
+ #: includes/views/submit_listing.php:935
6907
  msgctxt "templates"
6908
  msgid "Please agree to the Terms and Conditions."
6909
  msgstr "Por favor acepte los Términos y Condiciones."
6910
 
6911
+ #: includes/views/submit_listing.php:943
6912
  msgctxt "templates"
6913
  msgid "Terms and Conditions:"
6914
  msgstr "Términos y Condiciones:"
6915
 
6916
+ #: includes/views/submit_listing.php:951
6917
  msgctxt "templates"
6918
  msgid "I agree to the <a>Terms and Conditions</a>"
6919
  msgstr "Acepto los <a>Términos y Condiciones</a>"
8280
  msgid "URL:"
8281
  msgstr "URL:"
8282
 
8283
+ #: includes/views/search.php:46
8284
  msgctxt "search"
8285
  msgid "\"%s\" is required."
8286
  msgstr "“%s” es requerido."
8307
  msgstr ""
8308
  "Esta es tan solo una previsualización. El listado no ha sido publicado aún."
8309
 
8310
+ #: includes/views/submit_listing.php:694
8311
  msgctxt "listing submit"
8312
  msgid ""
8313
  "Something went wrong. Please check the form for errors, correct them and "
8316
  "Algo salió mal. Por favor verifique que el formulario no contiene errores y "
8317
  "envíelo de nuevo."
8318
 
8319
+ #: includes/views/submit_listing.php:778
8320
  msgctxt "listing submit"
8321
  msgid ""
8322
  "Image upload is required, please provide at least one image and submit again."
languages/WPBDM-fr_FR.po CHANGED
@@ -5,7 +5,7 @@ msgstr ""
5
  "Project-Id-Version: Business Directory Plugin v5.5\n"
6
  "Report-Msgid-Bugs-To: https://wordpress.org/support/plugin/business-"
7
  "directory-plugin\n"
8
- "POT-Creation-Date: 2019-10-30 22:21:32+00:00\n"
9
  "PO-Revision-Date: 2017-11-13 00:48+0100\n"
10
  "Last-Translator: Laurent Provin <lprovin@yahoo.fr>\n"
11
  "Language-Team: BD Team <support@businessdirectoryplugin.com>\n"
@@ -234,6 +234,45 @@ msgstr "Etiquettes de l'annuaire"
234
  msgid "Directory Tag"
235
  msgstr "Etiquette de l'annuaire"
236
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
237
  #: includes/class-payment-gateway.php:142
238
  msgid ""
239
  "There was an unexpected error trying to cancel your subscription. Please "
@@ -1092,7 +1131,14 @@ msgctxt "admin"
1092
  msgid "Renewal email sent."
1093
  msgstr "Email de renouvellement envoyé."
1094
 
1095
- #: includes/admin/class-admin.php:761
 
 
 
 
 
 
 
1096
  #, fuzzy
1097
  msgctxt "admin"
1098
  msgid "Listing report deleted."
@@ -1100,23 +1146,23 @@ msgid_plural "Listing reports deleted."
1100
  msgstr[0] "Date d'expiration de l'annonce"
1101
  msgstr[1] "Date d'expiration de l'annonce"
1102
 
1103
- #: includes/admin/class-admin.php:809
1104
  #, fuzzy
1105
  msgctxt "admin"
1106
  msgid "Access keys sent."
1107
  msgstr "Clés d'accès"
1108
 
1109
- #: includes/admin/class-admin.php:811
1110
  msgctxt "admin"
1111
  msgid "The access keys couldn't be sent."
1112
  msgstr ""
1113
 
1114
- #: includes/admin/class-admin.php:869 includes/admin/class-admin.php:875
1115
  msgctxt "admin"
1116
  msgid "Listing Count"
1117
  msgstr "Compteur d'annonces"
1118
 
1119
- #: includes/admin/class-admin.php:937
1120
  msgctxt "admin"
1121
  msgid ""
1122
  "<b>Business Directory Plugin</b> requires a page with the "
@@ -1125,7 +1171,7 @@ msgstr ""
1125
  "<b>Business Directory Plugin</b> requiert une page avec le code "
1126
  "d'activation <tt>[businessdirectory]</tt> pour marcher correctement."
1127
 
1128
- #: includes/admin/class-admin.php:939
1129
  msgctxt "admin"
1130
  msgid ""
1131
  "You can create this page by yourself or let Business Directory do this for "
@@ -1134,12 +1180,12 @@ msgstr ""
1134
  "Vous pouvez créer cette page par vous-mêmes ou laisser le plugin la faire "
1135
  "pour vous automatiquement."
1136
 
1137
- #: includes/admin/class-admin.php:943
1138
  msgctxt "admin"
1139
  msgid "Create required pages for me"
1140
  msgstr "Créer les pages requises pour moi"
1141
 
1142
- #: includes/admin/class-admin.php:976
1143
  msgctxt "admin"
1144
  msgid ""
1145
  "<strong>Business Directory Plugin</strong> requires <strong>PHP 5.6</strong> "
@@ -1151,7 +1197,7 @@ msgstr ""
1151
  "strong>.S'il vous plaît demander à votre fournisseur de mettre à jour afin "
1152
  "d'éviter tout problème avec le plug-in."
1153
 
1154
- #: includes/admin/class-admin.php:999
1155
  msgctxt "admin"
1156
  msgid ""
1157
  "We noticed you want your Business Directory users to register before posting "
@@ -1206,7 +1252,7 @@ msgstr ""
1206
  "Vous pouvez créer ces champs personnalisés pas vous-mêmes dans \"Gestion des "
1207
  "Champs\" ou laissez le plugin le faire pour vous automatiquement."
1208
 
1209
- #: includes/admin/form-fields.php:214 includes/views/submit_listing.php:521
1210
  msgctxt "admin"
1211
  msgid "Go to \"Manage Form Fields\""
1212
  msgstr "Aller à \"Gestion des Champs\""
@@ -1226,6 +1272,12 @@ msgctxt "admin"
1226
  msgid "Abandoned"
1227
  msgstr "Abandonné"
1228
 
 
 
 
 
 
 
1229
  #: includes/admin/class-admin-listings.php:304
1230
  #, fuzzy
1231
  msgctxt "listing attribute"
@@ -1558,7 +1610,7 @@ msgctxt "admin menu"
1558
  msgid "Manage Options"
1559
  msgstr "Gestion des options"
1560
 
1561
- #: includes/admin/class-admin.php:867
1562
  msgctxt "admin category id"
1563
  msgid "ID"
1564
  msgstr "ID"
@@ -2833,37 +2885,37 @@ msgctxt "form-fields admin"
2833
  msgid "Field Display Order"
2834
  msgstr "Champ d'options d'affichage"
2835
 
2836
- #: includes/fields/class-fieldtypes-textarea.php:194
2837
  msgctxt "form-fields admin"
2838
  msgid "Allow HTML input for this field?"
2839
  msgstr "Autoriser les ajouts HTML dans ce champ?"
2840
 
2841
- #: includes/fields/class-fieldtypes-textarea.php:197
2842
  msgctxt "form-fields admin"
2843
  msgid "Allow IFRAME tags in content?"
2844
  msgstr "Autoriser les tags IFRAME dans le contenu ?"
2845
 
2846
- #: includes/fields/class-fieldtypes-textarea.php:201
2847
  msgctxt "form-fields admin"
2848
  msgid "No"
2849
  msgstr "Non"
2850
 
2851
- #: includes/fields/class-fieldtypes-textarea.php:202
2852
  msgctxt "form-fields admin"
2853
  msgid "Yes"
2854
  msgstr "Oui"
2855
 
2856
- #: includes/fields/class-fieldtypes-textarea.php:207
2857
  msgctxt "form-fields admin"
2858
  msgid "Allow WordPress shortcodes in this field?"
2859
  msgstr "Autoriser les balises WordPress dans ce champ?"
2860
 
2861
- #: includes/fields/class-fieldtypes-textarea.php:212
2862
  msgctxt "form-fields admin"
2863
  msgid "Display a WYSIWYG editor on the frontend?"
2864
  msgstr "Afficher un éditeur WYSIWYG sur la partie frontal du site ?"
2865
 
2866
- #: includes/fields/class-fieldtypes-textarea.php:215
2867
  msgctxt "form-fields admin"
2868
  msgid ""
2869
  "<b>Warning:</b> Users can use this feature to get around your image limits "
@@ -2872,12 +2924,12 @@ msgstr ""
2872
  "<b>Attention:</b> Les utilisateurs peuvent utiliser cette fonctionnalité "
2873
  "pour contourner les limitation d'images dans les formules payantes."
2874
 
2875
- #: includes/fields/class-fieldtypes-textarea.php:216
2876
  msgctxt "form-fields admin"
2877
  msgid "Allow images in WYSIWYG editor?"
2878
  msgstr "Permettre l'utilisation d'images dans l'éditeur WYSIWYG ?"
2879
 
2880
- #: includes/fields/class-fieldtypes-textarea.php:219
2881
  msgctxt "form-fields admin"
2882
  msgid ""
2883
  "<b>Advanced users only!</b> Unless you've been told to change this, don't "
@@ -2886,50 +2938,50 @@ msgstr ""
2886
  "<b> Utilisateurs avancés seulement ! </ b> Sauf si vous avez été dit de "
2887
  "changer cela, ne le coupez pas sauf si vous savez ce que vous faites."
2888
 
2889
- #: includes/fields/class-fieldtypes-textarea.php:220
2890
  msgctxt "form-fields admin"
2891
  msgid "Apply \"the_content\" filter before displaying this field?"
2892
  msgstr "Appliquer le filtre \"the_content \" avant d'annoncer ce champ?"
2893
 
2894
- #: includes/fields/class-fieldtypes-textarea.php:223
2895
  msgctxt "form-fields admin"
2896
  msgid "Use shortened version of Description field as excerpt"
2897
  msgstr ""
2898
 
2899
- #: includes/fields/class-fieldtypes-textarea.php:224
2900
  msgctxt "form-fields admin"
2901
  msgid ""
2902
  "Enable always (override the Short Description given with a shortened Long "
2903
  "Description)"
2904
  msgstr ""
2905
 
2906
- #: includes/fields/class-fieldtypes-textarea.php:225
2907
  msgctxt "form-fields admin"
2908
  msgid ""
2909
  "Enable conditionally (override ONLY when Short Description is empty with a "
2910
  "shortened Long Description)"
2911
  msgstr ""
2912
 
2913
- #: includes/fields/class-fieldtypes-textarea.php:226
2914
  msgctxt "form-fields admin"
2915
  msgid "Disable (use the Short Description all the time, empty or not)"
2916
  msgstr ""
2917
 
2918
- #: includes/fields/class-fieldtypes-textarea.php:228
2919
  msgctxt "form-fields admin"
2920
  msgid ""
2921
  "Truncates the description field to the value set here. To display all of the "
2922
  "description, set to 0."
2923
  msgstr ""
2924
 
2925
- #: includes/fields/class-fieldtypes-textarea.php:229
2926
  msgctxt "form-fields admin"
2927
  msgid ""
2928
  "Number of Characters from Short Description/Excerpt to Display in List View "
2929
  "(only)"
2930
  msgstr ""
2931
 
2932
- #: includes/fields/class-fieldtypes-textarea.php:234
2933
  msgctxt "form-fields admin"
2934
  msgid "Automatically generate excerpt from content field?"
2935
  msgstr "Générer automatiquement un extrait d'un champ du contenu ?"
@@ -5863,19 +5915,19 @@ msgid "Free Listing"
5863
  msgstr "Annonce gratuite"
5864
 
5865
  #. translators: [%s] is the name of the blog.
5866
- #: includes/class-listing-email-notification.php:235
5867
  msgctxt "notify email"
5868
  msgid "[%s] New listing notification"
5869
  msgstr "[%s] Nouvelle notification d'annonce"
5870
 
5871
  #. translators: [%s] is the name of the blog.
5872
- #: includes/class-listing-email-notification.php:286
5873
  msgctxt "notify email"
5874
  msgid "[%s] Listing edit notification"
5875
  msgstr "[%s] Notification d'édition d'annonce"
5876
 
5877
  #. translators: %s is the name of the blog.
5878
- #: includes/class-listing-email-notification.php:358
5879
  #, fuzzy
5880
  msgctxt "notify email"
5881
  msgid "[%s] Reported listing notification"
@@ -6229,63 +6281,63 @@ msgid "Can not submit a listing at this moment. Please try again later."
6229
  msgstr ""
6230
  "Impossible de soumettre une liste en ce moment. Veuillez réessayer plus tard."
6231
 
6232
- #: includes/views/submit_listing.php:536
6233
  msgctxt "submit listing"
6234
  msgid "Please select a category."
6235
  msgstr "Veuillez sélectionner une catégorie."
6236
 
6237
- #: includes/views/submit_listing.php:549
6238
  #, fuzzy
6239
  msgctxt "submit listing"
6240
  msgid "Please select a category for your listing."
6241
  msgstr "Veuillez choisir une catégorie valide pour votre annonce."
6242
 
6243
- #: includes/views/submit_listing.php:569
6244
  msgctxt "submit listing"
6245
  msgid "Please choose a valid category for your plan."
6246
  msgstr "Veuillez choisir une catégorie valide pour votre annonce."
6247
 
6248
- #: includes/views/submit_listing.php:571
6249
  msgctxt "submit listing"
6250
  msgid "Please choose a valid fee plan for your category selection."
6251
  msgstr ""
6252
  "S'il vous plaît choisir un plan tarifaire valable pour votre sélection de "
6253
  "catégorie."
6254
 
6255
- #: includes/views/submit_listing.php:812
6256
  msgctxt "submit listing"
6257
  msgid "Please enter your desired username."
6258
  msgstr "S'il vous plaît entrer votre nom d'utilisateur souhaité."
6259
 
6260
- #: includes/views/submit_listing.php:817
6261
  msgctxt "submit listing"
6262
  msgid "Please enter the e-mail for your new account."
6263
  msgstr "S'il vous plaît entrer votre e-mail pour votre nouveau compte."
6264
 
6265
- #: includes/views/submit_listing.php:822
6266
  msgctxt "submit listing"
6267
  msgid "Please enter the password for your new account."
6268
  msgstr "Veuillez entrer le mot de passe de votre nouveau compte."
6269
 
6270
- #: includes/views/submit_listing.php:832
6271
  msgctxt "submit listing"
6272
  msgid "The username you chose is already in use. Please use a different one."
6273
  msgstr ""
6274
  "Le nom d'utilisateur que vous avez choisi est déjà utilisé. Veuillez en "
6275
  "utiliser un autre."
6276
 
6277
- #: includes/views/submit_listing.php:837
6278
  msgctxt "submit listing"
6279
  msgid "The e-mail address you chose for your account is already in use."
6280
  msgstr ""
6281
  "L'adresse e-mail que vous avez choisie pour votre compte est déjà utilisée."
6282
 
6283
- #: includes/views/submit_listing.php:852
6284
  msgctxt "submit listing"
6285
  msgid "Create a user account on this site"
6286
  msgstr "Créer un compte utilisateur sur ce site"
6287
 
6288
- #: includes/views/submit_listing.php:859
6289
  msgctxt "submit listing"
6290
  msgid ""
6291
  "You need to create an account on the site. Please fill out the form below."
@@ -6293,17 +6345,17 @@ msgstr ""
6293
  "Vous devez créer un compte sur le site. Veuillez remplir le formulaire ci-"
6294
  "dessous."
6295
 
6296
- #: includes/views/submit_listing.php:865
6297
  msgctxt "submit listing"
6298
  msgid "Username:"
6299
  msgstr "Nom d'utilisateur (login) :"
6300
 
6301
- #: includes/views/submit_listing.php:874
6302
  msgctxt "submit listing"
6303
  msgid "Email:"
6304
  msgstr "E-Mail:"
6305
 
6306
- #: includes/views/submit_listing.php:883
6307
  msgctxt "submit listing"
6308
  msgid "Password:"
6309
  msgstr "Mot de passe :"
@@ -6512,7 +6564,7 @@ msgctxt "form-fields api"
6512
  msgid "Link Text (optional):"
6513
  msgstr "Lien texte (facultatif):"
6514
 
6515
- #: includes/fields/class-form-field.php:707
6516
  msgctxt "form-fields api"
6517
  msgid ""
6518
  "This form field can't be deleted because it is required for the plugin to "
@@ -6589,22 +6641,22 @@ msgctxt "form-fields-api"
6589
  msgid "Invalid form field type"
6590
  msgstr "Type de champ de formulaire invalide"
6591
 
6592
- #: includes/fields/class-form-field.php:586
6593
  msgctxt "form-fields-api"
6594
  msgid "Field label is required."
6595
  msgstr "Ce champ est requis."
6596
 
6597
- #: includes/fields/class-form-field.php:590
6598
  msgctxt "form-fields-api"
6599
  msgid "Field label max length is 255 characters."
6600
  msgstr ""
6601
 
6602
- #: includes/fields/class-form-field.php:594
6603
  msgctxt "form-fields-api"
6604
  msgid "Field description max length is 255 characters."
6605
  msgstr ""
6606
 
6607
- #: includes/fields/class-form-field.php:605
6608
  msgctxt "form-fields-api"
6609
  msgid ""
6610
  "You can't change from %2$s field type to the one you wanted--the types are "
@@ -6612,14 +6664,14 @@ msgid ""
6612
  "delete this current field and create a NEW field of type %1$s instead."
6613
  msgstr ""
6614
 
6615
- #: includes/fields/class-form-field.php:608
6616
  msgctxt "form-fields-api"
6617
  msgid ""
6618
  "<strong>WARNING</strong>: If you delete this field, the data from it in "
6619
  "existing listings will be deleted as well."
6620
  msgstr ""
6621
 
6622
- #: includes/fields/class-form-field.php:642
6623
  msgctxt "form-fields-api"
6624
  msgid ""
6625
  "There can only be one field with association \"%s\". Please select another "
@@ -6628,17 +6680,17 @@ msgstr ""
6628
  "Il ne peut y avoir qu'un champ avec l'association \"% s \". Veuillez "
6629
  "sélectionner une autre association."
6630
 
6631
- #: includes/fields/class-form-field.php:652
6632
  msgctxt "form-fields-api"
6633
  msgid "\"%s\" is an invalid field type for this association."
6634
  msgstr "\" est un type de champ invalide pour cette association."
6635
 
6636
- #: includes/fields/class-form-field.php:697
6637
  msgctxt "form-fields-api"
6638
  msgid "Invalid field ID"
6639
  msgstr "ID de champ invalide"
6640
 
6641
- #: includes/fields/class-form-field.php:720
6642
  msgctxt "form-fields-api"
6643
  msgid "An error occurred while trying to delete this field."
6644
  msgstr "Une erreur est survenue en essayant de supprimer ce champ."
@@ -6714,7 +6766,7 @@ msgctxt "form-fields-api select"
6714
  msgid "— None —"
6715
  msgstr "— Aucun —"
6716
 
6717
- #: includes/fields/class-fieldtypes-textarea.php:200
6718
  msgctxt "admin form-fields"
6719
  msgid ""
6720
  "Enabling iframe support in your listings can allow users to execute "
@@ -6882,11 +6934,18 @@ msgstr ""
6882
  #: includes/views/submit_listing.php:511
6883
  msgctxt "templates"
6884
  msgid ""
 
 
 
 
 
 
 
6885
  "Listing submission is not available at the moment. Contact the administrator "
6886
  "for details."
6887
  msgstr ""
6888
 
6889
- #: includes/views/submit_listing.php:514
6890
  msgctxt "templates"
6891
  msgid ""
6892
  "<b>View not available</b>, there is no \"Category\" association field. %s "
@@ -6894,17 +6953,17 @@ msgid ""
6894
  "an existing field"
6895
  msgstr ""
6896
 
6897
- #: includes/views/submit_listing.php:921
6898
  msgctxt "templates"
6899
  msgid "Please agree to the Terms and Conditions."
6900
  msgstr "Veuillez accepter les conditions d'utilisation."
6901
 
6902
- #: includes/views/submit_listing.php:929
6903
  msgctxt "templates"
6904
  msgid "Terms and Conditions:"
6905
  msgstr "Conditions d'utilisation:"
6906
 
6907
- #: includes/views/submit_listing.php:937
6908
  msgctxt "templates"
6909
  msgid "I agree to the <a>Terms and Conditions</a>"
6910
  msgstr "J'accepte <a> Conditions générales </a>"
@@ -8312,7 +8371,7 @@ msgctxt "request_access_keys"
8312
  msgid "URL:"
8313
  msgstr "URL:"
8314
 
8315
- #: includes/views/search.php:45
8316
  msgctxt "search"
8317
  msgid "\"%s\" is required."
8318
  msgstr "%s est requis."
@@ -8340,7 +8399,7 @@ msgstr ""
8340
  "Il s'agit seulement d'une pré-visualisation. L'annonce n'a pas encore été "
8341
  "publiée."
8342
 
8343
- #: includes/views/submit_listing.php:680
8344
  msgctxt "listing submit"
8345
  msgid ""
8346
  "Something went wrong. Please check the form for errors, correct them and "
@@ -8349,7 +8408,7 @@ msgstr ""
8349
  "Quelque chose s'est mal passé. Veuillez vérifier le formulaire, corriger les "
8350
  "erreurs et soumettre à nouveau."
8351
 
8352
- #: includes/views/submit_listing.php:764
8353
  msgctxt "listing submit"
8354
  msgid ""
8355
  "Image upload is required, please provide at least one image and submit again."
5
  "Project-Id-Version: Business Directory Plugin v5.5\n"
6
  "Report-Msgid-Bugs-To: https://wordpress.org/support/plugin/business-"
7
  "directory-plugin\n"
8
+ "POT-Creation-Date: 2019-11-19 21:50:15+00:00\n"
9
  "PO-Revision-Date: 2017-11-13 00:48+0100\n"
10
  "Last-Translator: Laurent Provin <lprovin@yahoo.fr>\n"
11
  "Language-Team: BD Team <support@businessdirectoryplugin.com>\n"
234
  msgid "Directory Tag"
235
  msgstr "Etiquette de l'annuaire"
236
 
237
+ #. translators: %s: listing count
238
+ #: includes/class-cpt-integration.php:235
239
+ #, fuzzy
240
+ msgid "%s listing updated."
241
+ msgid_plural "%s listings updated."
242
+ msgstr[0] "Une annonce est éditée."
243
+ msgstr[1] "Une annonce est éditée."
244
+
245
+ #. translators: %s: listing count
246
+ #: includes/class-cpt-integration.php:237
247
+ msgid "%s listing not updated, somebody is editing it."
248
+ msgid_plural "%s listings not updated, somebody is editing them."
249
+ msgstr[0] ""
250
+ msgstr[1] ""
251
+
252
+ #. translators: %s: listing count
253
+ #: includes/class-cpt-integration.php:239
254
+ #, fuzzy
255
+ msgid "%s listing permanently deleted."
256
+ msgid_plural "%s listings permanently deleted."
257
+ msgstr[0] "Date d'expiration de l'annonce"
258
+ msgstr[1] "Date d'expiration de l'annonce"
259
+
260
+ #. translators: %s: listing count
261
+ #: includes/class-cpt-integration.php:241
262
+ #, fuzzy
263
+ msgid "%s listing moved to the Trash."
264
+ msgid_plural "%s listings moved to the Trash."
265
+ msgstr[0] "Aucunes annonces trouvées dans la corbeille"
266
+ msgstr[1] "Aucunes annonces trouvées dans la corbeille"
267
+
268
+ #. translators: %s: listing count
269
+ #: includes/class-cpt-integration.php:243
270
+ #, fuzzy
271
+ msgid "%s listing restored from the Trash."
272
+ msgid_plural "%s listings restored from the Trash."
273
+ msgstr[0] "Votre annonce a été supprimée du répertoire."
274
+ msgstr[1] "Votre annonce a été supprimée du répertoire."
275
+
276
  #: includes/class-payment-gateway.php:142
277
  msgid ""
278
  "There was an unexpected error trying to cancel your subscription. Please "
1131
  msgid "Renewal email sent."
1132
  msgstr "Email de renouvellement envoyé."
1133
 
1134
+ #: includes/admin/class-admin.php:758
1135
+ msgctxt "admin"
1136
+ msgid ""
1137
+ "Could not send renewal email, notice template at listing expiration not "
1138
+ "found."
1139
+ msgstr ""
1140
+
1141
+ #: includes/admin/class-admin.php:765
1142
  #, fuzzy
1143
  msgctxt "admin"
1144
  msgid "Listing report deleted."
1146
  msgstr[0] "Date d'expiration de l'annonce"
1147
  msgstr[1] "Date d'expiration de l'annonce"
1148
 
1149
+ #: includes/admin/class-admin.php:813
1150
  #, fuzzy
1151
  msgctxt "admin"
1152
  msgid "Access keys sent."
1153
  msgstr "Clés d'accès"
1154
 
1155
+ #: includes/admin/class-admin.php:815
1156
  msgctxt "admin"
1157
  msgid "The access keys couldn't be sent."
1158
  msgstr ""
1159
 
1160
+ #: includes/admin/class-admin.php:873 includes/admin/class-admin.php:879
1161
  msgctxt "admin"
1162
  msgid "Listing Count"
1163
  msgstr "Compteur d'annonces"
1164
 
1165
+ #: includes/admin/class-admin.php:941
1166
  msgctxt "admin"
1167
  msgid ""
1168
  "<b>Business Directory Plugin</b> requires a page with the "
1171
  "<b>Business Directory Plugin</b> requiert une page avec le code "
1172
  "d'activation <tt>[businessdirectory]</tt> pour marcher correctement."
1173
 
1174
+ #: includes/admin/class-admin.php:943
1175
  msgctxt "admin"
1176
  msgid ""
1177
  "You can create this page by yourself or let Business Directory do this for "
1180
  "Vous pouvez créer cette page par vous-mêmes ou laisser le plugin la faire "
1181
  "pour vous automatiquement."
1182
 
1183
+ #: includes/admin/class-admin.php:947
1184
  msgctxt "admin"
1185
  msgid "Create required pages for me"
1186
  msgstr "Créer les pages requises pour moi"
1187
 
1188
+ #: includes/admin/class-admin.php:980
1189
  msgctxt "admin"
1190
  msgid ""
1191
  "<strong>Business Directory Plugin</strong> requires <strong>PHP 5.6</strong> "
1197
  "strong>.S'il vous plaît demander à votre fournisseur de mettre à jour afin "
1198
  "d'éviter tout problème avec le plug-in."
1199
 
1200
+ #: includes/admin/class-admin.php:1003
1201
  msgctxt "admin"
1202
  msgid ""
1203
  "We noticed you want your Business Directory users to register before posting "
1252
  "Vous pouvez créer ces champs personnalisés pas vous-mêmes dans \"Gestion des "
1253
  "Champs\" ou laissez le plugin le faire pour vous automatiquement."
1254
 
1255
+ #: includes/admin/form-fields.php:214 includes/views/submit_listing.php:535
1256
  msgctxt "admin"
1257
  msgid "Go to \"Manage Form Fields\""
1258
  msgstr "Aller à \"Gestion des Champs\""
1272
  msgid "Abandoned"
1273
  msgstr "Abandonné"
1274
 
1275
+ #: includes/views/submit_listing.php:518
1276
+ #, fuzzy
1277
+ msgctxt "admin"
1278
+ msgid "Go to \"Manage Fees\""
1279
+ msgstr "Aller à \"Gestion des Champs\""
1280
+
1281
  #: includes/admin/class-admin-listings.php:304
1282
  #, fuzzy
1283
  msgctxt "listing attribute"
1610
  msgid "Manage Options"
1611
  msgstr "Gestion des options"
1612
 
1613
+ #: includes/admin/class-admin.php:871
1614
  msgctxt "admin category id"
1615
  msgid "ID"
1616
  msgstr "ID"
2885
  msgid "Field Display Order"
2886
  msgstr "Champ d'options d'affichage"
2887
 
2888
+ #: includes/fields/class-fieldtypes-textarea.php:197
2889
  msgctxt "form-fields admin"
2890
  msgid "Allow HTML input for this field?"
2891
  msgstr "Autoriser les ajouts HTML dans ce champ?"
2892
 
2893
+ #: includes/fields/class-fieldtypes-textarea.php:200
2894
  msgctxt "form-fields admin"
2895
  msgid "Allow IFRAME tags in content?"
2896
  msgstr "Autoriser les tags IFRAME dans le contenu ?"
2897
 
2898
+ #: includes/fields/class-fieldtypes-textarea.php:204
2899
  msgctxt "form-fields admin"
2900
  msgid "No"
2901
  msgstr "Non"
2902
 
2903
+ #: includes/fields/class-fieldtypes-textarea.php:205
2904
  msgctxt "form-fields admin"
2905
  msgid "Yes"
2906
  msgstr "Oui"
2907
 
2908
+ #: includes/fields/class-fieldtypes-textarea.php:210
2909
  msgctxt "form-fields admin"
2910
  msgid "Allow WordPress shortcodes in this field?"
2911
  msgstr "Autoriser les balises WordPress dans ce champ?"
2912
 
2913
+ #: includes/fields/class-fieldtypes-textarea.php:215
2914
  msgctxt "form-fields admin"
2915
  msgid "Display a WYSIWYG editor on the frontend?"
2916
  msgstr "Afficher un éditeur WYSIWYG sur la partie frontal du site ?"
2917
 
2918
+ #: includes/fields/class-fieldtypes-textarea.php:218
2919
  msgctxt "form-fields admin"
2920
  msgid ""
2921
  "<b>Warning:</b> Users can use this feature to get around your image limits "
2924
  "<b>Attention:</b> Les utilisateurs peuvent utiliser cette fonctionnalité "
2925
  "pour contourner les limitation d'images dans les formules payantes."
2926
 
2927
+ #: includes/fields/class-fieldtypes-textarea.php:219
2928
  msgctxt "form-fields admin"
2929
  msgid "Allow images in WYSIWYG editor?"
2930
  msgstr "Permettre l'utilisation d'images dans l'éditeur WYSIWYG ?"
2931
 
2932
+ #: includes/fields/class-fieldtypes-textarea.php:222
2933
  msgctxt "form-fields admin"
2934
  msgid ""
2935
  "<b>Advanced users only!</b> Unless you've been told to change this, don't "
2938
  "<b> Utilisateurs avancés seulement ! </ b> Sauf si vous avez été dit de "
2939
  "changer cela, ne le coupez pas sauf si vous savez ce que vous faites."
2940
 
2941
+ #: includes/fields/class-fieldtypes-textarea.php:223
2942
  msgctxt "form-fields admin"
2943
  msgid "Apply \"the_content\" filter before displaying this field?"
2944
  msgstr "Appliquer le filtre \"the_content \" avant d'annoncer ce champ?"
2945
 
2946
+ #: includes/fields/class-fieldtypes-textarea.php:226
2947
  msgctxt "form-fields admin"
2948
  msgid "Use shortened version of Description field as excerpt"
2949
  msgstr ""
2950
 
2951
+ #: includes/fields/class-fieldtypes-textarea.php:227
2952
  msgctxt "form-fields admin"
2953
  msgid ""
2954
  "Enable always (override the Short Description given with a shortened Long "
2955
  "Description)"
2956
  msgstr ""
2957
 
2958
+ #: includes/fields/class-fieldtypes-textarea.php:228
2959
  msgctxt "form-fields admin"
2960
  msgid ""
2961
  "Enable conditionally (override ONLY when Short Description is empty with a "
2962
  "shortened Long Description)"
2963
  msgstr ""
2964
 
2965
+ #: includes/fields/class-fieldtypes-textarea.php:229
2966
  msgctxt "form-fields admin"
2967
  msgid "Disable (use the Short Description all the time, empty or not)"
2968
  msgstr ""
2969
 
2970
+ #: includes/fields/class-fieldtypes-textarea.php:231
2971
  msgctxt "form-fields admin"
2972
  msgid ""
2973
  "Truncates the description field to the value set here. To display all of the "
2974
  "description, set to 0."
2975
  msgstr ""
2976
 
2977
+ #: includes/fields/class-fieldtypes-textarea.php:232
2978
  msgctxt "form-fields admin"
2979
  msgid ""
2980
  "Number of Characters from Short Description/Excerpt to Display in List View "
2981
  "(only)"
2982
  msgstr ""
2983
 
2984
+ #: includes/fields/class-fieldtypes-textarea.php:237
2985
  msgctxt "form-fields admin"
2986
  msgid "Automatically generate excerpt from content field?"
2987
  msgstr "Générer automatiquement un extrait d'un champ du contenu ?"
5915
  msgstr "Annonce gratuite"
5916
 
5917
  #. translators: [%s] is the name of the blog.
5918
+ #: includes/class-listing-email-notification.php:239
5919
  msgctxt "notify email"
5920
  msgid "[%s] New listing notification"
5921
  msgstr "[%s] Nouvelle notification d'annonce"
5922
 
5923
  #. translators: [%s] is the name of the blog.
5924
+ #: includes/class-listing-email-notification.php:290
5925
  msgctxt "notify email"
5926
  msgid "[%s] Listing edit notification"
5927
  msgstr "[%s] Notification d'édition d'annonce"
5928
 
5929
  #. translators: %s is the name of the blog.
5930
+ #: includes/class-listing-email-notification.php:362
5931
  #, fuzzy
5932
  msgctxt "notify email"
5933
  msgid "[%s] Reported listing notification"
6281
  msgstr ""
6282
  "Impossible de soumettre une liste en ce moment. Veuillez réessayer plus tard."
6283
 
6284
+ #: includes/views/submit_listing.php:550
6285
  msgctxt "submit listing"
6286
  msgid "Please select a category."
6287
  msgstr "Veuillez sélectionner une catégorie."
6288
 
6289
+ #: includes/views/submit_listing.php:563
6290
  #, fuzzy
6291
  msgctxt "submit listing"
6292
  msgid "Please select a category for your listing."
6293
  msgstr "Veuillez choisir une catégorie valide pour votre annonce."
6294
 
6295
+ #: includes/views/submit_listing.php:583
6296
  msgctxt "submit listing"
6297
  msgid "Please choose a valid category for your plan."
6298
  msgstr "Veuillez choisir une catégorie valide pour votre annonce."
6299
 
6300
+ #: includes/views/submit_listing.php:585
6301
  msgctxt "submit listing"
6302
  msgid "Please choose a valid fee plan for your category selection."
6303
  msgstr ""
6304
  "S'il vous plaît choisir un plan tarifaire valable pour votre sélection de "
6305
  "catégorie."
6306
 
6307
+ #: includes/views/submit_listing.php:826
6308
  msgctxt "submit listing"
6309
  msgid "Please enter your desired username."
6310
  msgstr "S'il vous plaît entrer votre nom d'utilisateur souhaité."
6311
 
6312
+ #: includes/views/submit_listing.php:831
6313
  msgctxt "submit listing"
6314
  msgid "Please enter the e-mail for your new account."
6315
  msgstr "S'il vous plaît entrer votre e-mail pour votre nouveau compte."
6316
 
6317
+ #: includes/views/submit_listing.php:836
6318
  msgctxt "submit listing"
6319
  msgid "Please enter the password for your new account."
6320
  msgstr "Veuillez entrer le mot de passe de votre nouveau compte."
6321
 
6322
+ #: includes/views/submit_listing.php:846
6323
  msgctxt "submit listing"
6324
  msgid "The username you chose is already in use. Please use a different one."
6325
  msgstr ""
6326
  "Le nom d'utilisateur que vous avez choisi est déjà utilisé. Veuillez en "
6327
  "utiliser un autre."
6328
 
6329
+ #: includes/views/submit_listing.php:851
6330
  msgctxt "submit listing"
6331
  msgid "The e-mail address you chose for your account is already in use."
6332
  msgstr ""
6333
  "L'adresse e-mail que vous avez choisie pour votre compte est déjà utilisée."
6334
 
6335
+ #: includes/views/submit_listing.php:866
6336
  msgctxt "submit listing"
6337
  msgid "Create a user account on this site"
6338
  msgstr "Créer un compte utilisateur sur ce site"
6339
 
6340
+ #: includes/views/submit_listing.php:873
6341
  msgctxt "submit listing"
6342
  msgid ""
6343
  "You need to create an account on the site. Please fill out the form below."
6345
  "Vous devez créer un compte sur le site. Veuillez remplir le formulaire ci-"
6346
  "dessous."
6347
 
6348
+ #: includes/views/submit_listing.php:879
6349
  msgctxt "submit listing"
6350
  msgid "Username:"
6351
  msgstr "Nom d'utilisateur (login) :"
6352
 
6353
+ #: includes/views/submit_listing.php:888
6354
  msgctxt "submit listing"
6355
  msgid "Email:"
6356
  msgstr "E-Mail:"
6357
 
6358
+ #: includes/views/submit_listing.php:897
6359
  msgctxt "submit listing"
6360
  msgid "Password:"
6361
  msgstr "Mot de passe :"
6564
  msgid "Link Text (optional):"
6565
  msgstr "Lien texte (facultatif):"
6566
 
6567
+ #: includes/fields/class-form-field.php:710
6568
  msgctxt "form-fields api"
6569
  msgid ""
6570
  "This form field can't be deleted because it is required for the plugin to "
6641
  msgid "Invalid form field type"
6642
  msgstr "Type de champ de formulaire invalide"
6643
 
6644
+ #: includes/fields/class-form-field.php:589
6645
  msgctxt "form-fields-api"
6646
  msgid "Field label is required."
6647
  msgstr "Ce champ est requis."
6648
 
6649
+ #: includes/fields/class-form-field.php:593
6650
  msgctxt "form-fields-api"
6651
  msgid "Field label max length is 255 characters."
6652
  msgstr ""
6653
 
6654
+ #: includes/fields/class-form-field.php:597
6655
  msgctxt "form-fields-api"
6656
  msgid "Field description max length is 255 characters."
6657
  msgstr ""
6658
 
6659
+ #: includes/fields/class-form-field.php:608
6660
  msgctxt "form-fields-api"
6661
  msgid ""
6662
  "You can't change from %2$s field type to the one you wanted--the types are "
6664
  "delete this current field and create a NEW field of type %1$s instead."
6665
  msgstr ""
6666
 
6667
+ #: includes/fields/class-form-field.php:611
6668
  msgctxt "form-fields-api"
6669
  msgid ""
6670
  "<strong>WARNING</strong>: If you delete this field, the data from it in "
6671
  "existing listings will be deleted as well."
6672
  msgstr ""
6673
 
6674
+ #: includes/fields/class-form-field.php:645
6675
  msgctxt "form-fields-api"
6676
  msgid ""
6677
  "There can only be one field with association \"%s\". Please select another "
6680
  "Il ne peut y avoir qu'un champ avec l'association \"% s \". Veuillez "
6681
  "sélectionner une autre association."
6682
 
6683
+ #: includes/fields/class-form-field.php:655
6684
  msgctxt "form-fields-api"
6685
  msgid "\"%s\" is an invalid field type for this association."
6686
  msgstr "\" est un type de champ invalide pour cette association."
6687
 
6688
+ #: includes/fields/class-form-field.php:700
6689
  msgctxt "form-fields-api"
6690
  msgid "Invalid field ID"
6691
  msgstr "ID de champ invalide"
6692
 
6693
+ #: includes/fields/class-form-field.php:723
6694
  msgctxt "form-fields-api"
6695
  msgid "An error occurred while trying to delete this field."
6696
  msgstr "Une erreur est survenue en essayant de supprimer ce champ."
6766
  msgid "— None —"
6767
  msgstr "— Aucun —"
6768
 
6769
+ #: includes/fields/class-fieldtypes-textarea.php:203
6770
  msgctxt "admin form-fields"
6771
  msgid ""
6772
  "Enabling iframe support in your listings can allow users to execute "
6934
  #: includes/views/submit_listing.php:511
6935
  msgctxt "templates"
6936
  msgid ""
6937
+ "<b>There are no Fee Plans available</b>, without a fee plan site users can't "
6938
+ "submit a listing. %s to create a fee plan"
6939
+ msgstr ""
6940
+
6941
+ #: includes/views/submit_listing.php:525
6942
+ msgctxt "templates"
6943
+ msgid ""
6944
  "Listing submission is not available at the moment. Contact the administrator "
6945
  "for details."
6946
  msgstr ""
6947
 
6948
+ #: includes/views/submit_listing.php:528
6949
  msgctxt "templates"
6950
  msgid ""
6951
  "<b>View not available</b>, there is no \"Category\" association field. %s "
6953
  "an existing field"
6954
  msgstr ""
6955
 
6956
+ #: includes/views/submit_listing.php:935
6957
  msgctxt "templates"
6958
  msgid "Please agree to the Terms and Conditions."
6959
  msgstr "Veuillez accepter les conditions d'utilisation."
6960
 
6961
+ #: includes/views/submit_listing.php:943
6962
  msgctxt "templates"
6963
  msgid "Terms and Conditions:"
6964
  msgstr "Conditions d'utilisation:"
6965
 
6966
+ #: includes/views/submit_listing.php:951
6967
  msgctxt "templates"
6968
  msgid "I agree to the <a>Terms and Conditions</a>"
6969
  msgstr "J'accepte <a> Conditions générales </a>"
8371
  msgid "URL:"
8372
  msgstr "URL:"
8373
 
8374
+ #: includes/views/search.php:46
8375
  msgctxt "search"
8376
  msgid "\"%s\" is required."
8377
  msgstr "%s est requis."
8399
  "Il s'agit seulement d'une pré-visualisation. L'annonce n'a pas encore été "
8400
  "publiée."
8401
 
8402
+ #: includes/views/submit_listing.php:694
8403
  msgctxt "listing submit"
8404
  msgid ""
8405
  "Something went wrong. Please check the form for errors, correct them and "
8408
  "Quelque chose s'est mal passé. Veuillez vérifier le formulaire, corriger les "
8409
  "erreurs et soumettre à nouveau."
8410
 
8411
+ #: includes/views/submit_listing.php:778
8412
  msgctxt "listing submit"
8413
  msgid ""
8414
  "Image upload is required, please provide at least one image and submit again."
languages/WPBDM-it_IT.po CHANGED
@@ -3,7 +3,7 @@ msgstr ""
3
  "Project-Id-Version: Business Directory Plugin\n"
4
  "Report-Msgid-Bugs-To: https://wordpress.org/support/plugin/business-"
5
  "directory-plugin\n"
6
- "POT-Creation-Date: 2019-10-30 22:21:32+00:00\n"
7
  "PO-Revision-Date: 2019-06-25 13:45-0500\n"
8
  "Last-Translator: \n"
9
  "Language-Team: \n"
@@ -235,6 +235,45 @@ msgstr "Tags directory"
235
  msgid "Directory Tag"
236
  msgstr "Tag della directory"
237
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
238
  #: includes/class-payment-gateway.php:142
239
  msgid ""
240
  "There was an unexpected error trying to cancel your subscription. Please "
@@ -1093,29 +1132,36 @@ msgctxt "admin"
1093
  msgid "Renewal email sent."
1094
  msgstr "E-mail di rinnovo inviata."
1095
 
1096
- #: includes/admin/class-admin.php:761
 
 
 
 
 
 
 
1097
  msgctxt "admin"
1098
  msgid "Listing report deleted."
1099
  msgid_plural "Listing reports deleted."
1100
  msgstr[0] "La segnalazione per l'Annuncio è stata cancellata."
1101
  msgstr[1] "Le segnalazioni per gli Annunci sono state cancellate."
1102
 
1103
- #: includes/admin/class-admin.php:809
1104
  msgctxt "admin"
1105
  msgid "Access keys sent."
1106
  msgstr "Dati di accesso inviati."
1107
 
1108
- #: includes/admin/class-admin.php:811
1109
  msgctxt "admin"
1110
  msgid "The access keys couldn't be sent."
1111
  msgstr "Non è stato possibile inviare i dati di accesso."
1112
 
1113
- #: includes/admin/class-admin.php:869 includes/admin/class-admin.php:875
1114
  msgctxt "admin"
1115
  msgid "Listing Count"
1116
  msgstr "Elenco luoghi"
1117
 
1118
- #: includes/admin/class-admin.php:937
1119
  msgctxt "admin"
1120
  msgid ""
1121
  "<b>Business Directory Plugin</b> requires a page with the "
@@ -1124,7 +1170,7 @@ msgstr ""
1124
  "<b>Business Directory Plugin</b> richiede una pagina con il codice di scelta "
1125
  "rapida <tt>[businessdirectory]</tt> per funzionare correttamente."
1126
 
1127
- #: includes/admin/class-admin.php:939
1128
  msgctxt "admin"
1129
  msgid ""
1130
  "You can create this page by yourself or let Business Directory do this for "
@@ -1133,12 +1179,12 @@ msgstr ""
1133
  "È possibile creare la pagina da soli o lasciare che Business Directory "
1134
  "faccia questo per voi automaticamente."
1135
 
1136
- #: includes/admin/class-admin.php:943
1137
  msgctxt "admin"
1138
  msgid "Create required pages for me"
1139
  msgstr "Crea le pagine richieste per me"
1140
 
1141
- #: includes/admin/class-admin.php:976
1142
  msgctxt "admin"
1143
  msgid ""
1144
  "<strong>Business Directory Plugin</strong> requires <strong>PHP 5.6</strong> "
@@ -1150,7 +1196,7 @@ msgstr ""
1150
  "strong>. Chiedete al vostro fornitore di aggiornare per evitare problemi con "
1151
  "il plugin."
1152
 
1153
- #: includes/admin/class-admin.php:999
1154
  msgctxt "admin"
1155
  msgid ""
1156
  "We noticed you want your Business Directory users to register before posting "
@@ -1205,7 +1251,7 @@ msgstr ""
1205
  "\"Gestire i campi del modulo\" o lasciare che Business Directory lo faccia "
1206
  "automaticamente."
1207
 
1208
- #: includes/admin/form-fields.php:214 includes/views/submit_listing.php:521
1209
  msgctxt "admin"
1210
  msgid "Go to \"Manage Form Fields\""
1211
  msgstr "Vai a \"Gestire i campi dei moduli\"."
@@ -1225,6 +1271,12 @@ msgctxt "admin"
1225
  msgid "Abandoned"
1226
  msgstr "Abbandonato"
1227
 
 
 
 
 
 
 
1228
  #: includes/admin/class-admin-listings.php:304
1229
  msgctxt "listing attribute"
1230
  msgid "No Fee Plan"
@@ -1550,7 +1602,7 @@ msgctxt "admin menu"
1550
  msgid "Manage Options"
1551
  msgstr "Gestire le opzioni"
1552
 
1553
- #: includes/admin/class-admin.php:867
1554
  msgctxt "admin category id"
1555
  msgid "ID"
1556
  msgstr "ID"
@@ -2815,37 +2867,37 @@ msgctxt "form-fields admin"
2815
  msgid "Field Display Order"
2816
  msgstr "Ordine di visualizzazione sul campo"
2817
 
2818
- #: includes/fields/class-fieldtypes-textarea.php:194
2819
  msgctxt "form-fields admin"
2820
  msgid "Allow HTML input for this field?"
2821
  msgstr "Consentire l'input HTML per questo campo?"
2822
 
2823
- #: includes/fields/class-fieldtypes-textarea.php:197
2824
  msgctxt "form-fields admin"
2825
  msgid "Allow IFRAME tags in content?"
2826
  msgstr "Consentire tag IFRAME nel contenuto?"
2827
 
2828
- #: includes/fields/class-fieldtypes-textarea.php:201
2829
  msgctxt "form-fields admin"
2830
  msgid "No"
2831
  msgstr "No"
2832
 
2833
- #: includes/fields/class-fieldtypes-textarea.php:202
2834
  msgctxt "form-fields admin"
2835
  msgid "Yes"
2836
  msgstr "Si"
2837
 
2838
- #: includes/fields/class-fieldtypes-textarea.php:207
2839
  msgctxt "form-fields admin"
2840
  msgid "Allow WordPress shortcodes in this field?"
2841
  msgstr "Consentire le scorciatoie di WordPress in questo campo?"
2842
 
2843
- #: includes/fields/class-fieldtypes-textarea.php:212
2844
  msgctxt "form-fields admin"
2845
  msgid "Display a WYSIWYG editor on the frontend?"
2846
  msgstr "Visualizzare un editor WYSIWYG sul frontend?"
2847
 
2848
- #: includes/fields/class-fieldtypes-textarea.php:215
2849
  msgctxt "form-fields admin"
2850
  msgid ""
2851
  "<b>Warning:</b> Users can use this feature to get around your image limits "
@@ -2854,12 +2906,12 @@ msgstr ""
2854
  "<b>Attenzione:</b> Gli utenti possono utilizzare questa funzione per "
2855
  "aggirare i limiti dell'immagine nei piani tariffari."
2856
 
2857
- #: includes/fields/class-fieldtypes-textarea.php:216
2858
  msgctxt "form-fields admin"
2859
  msgid "Allow images in WYSIWYG editor?"
2860
  msgstr "Consentire immagini nell'editor WYSIWYG?"
2861
 
2862
- #: includes/fields/class-fieldtypes-textarea.php:219
2863
  msgctxt "form-fields admin"
2864
  msgid ""
2865
  "<b>Advanced users only!</b> Unless you've been told to change this, don't "
@@ -2868,18 +2920,18 @@ msgstr ""
2868
  "<b>Solo utenti avanzati!</b> A meno che non ti sia stato detto di cambiare, "
2869
  "non cambiarlo a meno che tu non sappia cosa stai facendo."
2870
 
2871
- #: includes/fields/class-fieldtypes-textarea.php:220
2872
  msgctxt "form-fields admin"
2873
  msgid "Apply \"the_content\" filter before displaying this field?"
2874
  msgstr ""
2875
  "Applicare il filtro \"the_content\" prima di visualizzare questo campo?"
2876
 
2877
- #: includes/fields/class-fieldtypes-textarea.php:223
2878
  msgctxt "form-fields admin"
2879
  msgid "Use shortened version of Description field as excerpt"
2880
  msgstr "Utilizzare la versione ridotta del campo Descrizione come estratto"
2881
 
2882
- #: includes/fields/class-fieldtypes-textarea.php:224
2883
  msgctxt "form-fields admin"
2884
  msgid ""
2885
  "Enable always (override the Short Description given with a shortened Long "
@@ -2888,7 +2940,7 @@ msgstr ""
2888
  "Abilita sempre (sovrascrivere la breve descrizione fornita con una lunga "
2889
  "descrizione abbreviata)"
2890
 
2891
- #: includes/fields/class-fieldtypes-textarea.php:225
2892
  msgctxt "form-fields admin"
2893
  msgid ""
2894
  "Enable conditionally (override ONLY when Short Description is empty with a "
@@ -2897,12 +2949,12 @@ msgstr ""
2897
  "Abilitazione condizionata (annullare solo quando la descrizione breve è "
2898
  "vuota con una descrizione lunga abbreviata)"
2899
 
2900
- #: includes/fields/class-fieldtypes-textarea.php:226
2901
  msgctxt "form-fields admin"
2902
  msgid "Disable (use the Short Description all the time, empty or not)"
2903
  msgstr "Disattivare (utilizzare sempre la breve descrizione, vuota o meno)"
2904
 
2905
- #: includes/fields/class-fieldtypes-textarea.php:228
2906
  msgctxt "form-fields admin"
2907
  msgid ""
2908
  "Truncates the description field to the value set here. To display all of the "
@@ -2911,7 +2963,7 @@ msgstr ""
2911
  "Tronca il campo descrizione al valore qui impostato. Per visualizzare tutta "
2912
  "la descrizione, impostare su 0."
2913
 
2914
- #: includes/fields/class-fieldtypes-textarea.php:229
2915
  msgctxt "form-fields admin"
2916
  msgid ""
2917
  "Number of Characters from Short Description/Excerpt to Display in List View "
@@ -2920,7 +2972,7 @@ msgstr ""
2920
  "Numero di caratteri dalla breve Descrizione/Estratto alla visualizzazione "
2921
  "nella vista elenco (solo)"
2922
 
2923
- #: includes/fields/class-fieldtypes-textarea.php:234
2924
  msgctxt "form-fields admin"
2925
  msgid "Automatically generate excerpt from content field?"
2926
  msgstr "Generare automaticamente un estratto dal campo contenuto?"
@@ -5856,19 +5908,19 @@ msgid "Free Listing"
5856
  msgstr "Listing gratuito"
5857
 
5858
  #. translators: [%s] is the name of the blog.
5859
- #: includes/class-listing-email-notification.php:235
5860
  msgctxt "notify email"
5861
  msgid "[%s] New listing notification"
5862
  msgstr "[%s] Notifica nuovo Annuncio"
5863
 
5864
  #. translators: [%s] is the name of the blog.
5865
- #: includes/class-listing-email-notification.php:286
5866
  msgctxt "notify email"
5867
  msgid "[%s] Listing edit notification"
5868
  msgstr "[%s] Notifica modifica Annuncio"
5869
 
5870
  #. translators: %s is the name of the blog.
5871
- #: includes/class-listing-email-notification.php:358
5872
  msgctxt "notify email"
5873
  msgid "[%s] Reported listing notification"
5874
  msgstr "[%s] Notifica segnalazione annuncio"
@@ -6210,59 +6262,59 @@ msgstr ""
6210
  "Non è possibile inviare un annuncio in questo momento. Per favore, riprova "
6211
  "più tardi."
6212
 
6213
- #: includes/views/submit_listing.php:536
6214
  msgctxt "submit listing"
6215
  msgid "Please select a category."
6216
  msgstr "Per favore seleziona una categoria."
6217
 
6218
- #: includes/views/submit_listing.php:549
6219
  msgctxt "submit listing"
6220
  msgid "Please select a category for your listing."
6221
  msgstr "Seleziona una categoria per il tuo annuncio."
6222
 
6223
- #: includes/views/submit_listing.php:569
6224
  msgctxt "submit listing"
6225
  msgid "Please choose a valid category for your plan."
6226
  msgstr "Scegli una categoria valida per il tuo piano."
6227
 
6228
- #: includes/views/submit_listing.php:571
6229
  msgctxt "submit listing"
6230
  msgid "Please choose a valid fee plan for your category selection."
6231
  msgstr ""
6232
  "Si prega di scegliere un piano tariffario valido per la selezione della "
6233
  "categoria."
6234
 
6235
- #: includes/views/submit_listing.php:812
6236
  msgctxt "submit listing"
6237
  msgid "Please enter your desired username."
6238
  msgstr "Inserisci il nome utente desiderato."
6239
 
6240
- #: includes/views/submit_listing.php:817
6241
  msgctxt "submit listing"
6242
  msgid "Please enter the e-mail for your new account."
6243
  msgstr "Inserisci l'e-mail per il tuo nuovo account."
6244
 
6245
- #: includes/views/submit_listing.php:822
6246
  msgctxt "submit listing"
6247
  msgid "Please enter the password for your new account."
6248
  msgstr "Inserisci la password per il tuo nuovo account."
6249
 
6250
- #: includes/views/submit_listing.php:832
6251
  msgctxt "submit listing"
6252
  msgid "The username you chose is already in use. Please use a different one."
6253
  msgstr "Il nome utente scelto è già in uso. Per favore, usane un'altra."
6254
 
6255
- #: includes/views/submit_listing.php:837
6256
  msgctxt "submit listing"
6257
  msgid "The e-mail address you chose for your account is already in use."
6258
  msgstr "L'indirizzo e-mail scelto per il tuo account è già in uso."
6259
 
6260
- #: includes/views/submit_listing.php:852
6261
  msgctxt "submit listing"
6262
  msgid "Create a user account on this site"
6263
  msgstr "Creare un account utente su questo sito"
6264
 
6265
- #: includes/views/submit_listing.php:859
6266
  msgctxt "submit listing"
6267
  msgid ""
6268
  "You need to create an account on the site. Please fill out the form below."
@@ -6270,17 +6322,17 @@ msgstr ""
6270
  "È necessario creare un account sul sito. Si prega di compilare il modulo "
6271
  "sottostante."
6272
 
6273
- #: includes/views/submit_listing.php:865
6274
  msgctxt "submit listing"
6275
  msgid "Username:"
6276
  msgstr "Nome utente:"
6277
 
6278
- #: includes/views/submit_listing.php:874
6279
  msgctxt "submit listing"
6280
  msgid "Email:"
6281
  msgstr "Email:"
6282
 
6283
- #: includes/views/submit_listing.php:883
6284
  msgctxt "submit listing"
6285
  msgid "Password:"
6286
  msgstr "Password:"
@@ -6482,7 +6534,7 @@ msgctxt "form-fields api"
6482
  msgid "Link Text (optional):"
6483
  msgstr "Link Text (opzionale):"
6484
 
6485
- #: includes/fields/class-form-field.php:707
6486
  msgctxt "form-fields api"
6487
  msgid ""
6488
  "This form field can't be deleted because it is required for the plugin to "
@@ -6557,22 +6609,22 @@ msgctxt "form-fields-api"
6557
  msgid "Invalid form field type"
6558
  msgstr "Tipo di campo modulo non valido"
6559
 
6560
- #: includes/fields/class-form-field.php:586
6561
  msgctxt "form-fields-api"
6562
  msgid "Field label is required."
6563
  msgstr "È richiesta l'etichetta del campo."
6564
 
6565
- #: includes/fields/class-form-field.php:590
6566
  msgctxt "form-fields-api"
6567
  msgid "Field label max length is 255 characters."
6568
  msgstr ""
6569
 
6570
- #: includes/fields/class-form-field.php:594
6571
  msgctxt "form-fields-api"
6572
  msgid "Field description max length is 255 characters."
6573
  msgstr ""
6574
 
6575
- #: includes/fields/class-form-field.php:605
6576
  msgctxt "form-fields-api"
6577
  msgid ""
6578
  "You can't change from %2$s field type to the one you wanted--the types are "
@@ -6584,7 +6636,7 @@ msgstr ""
6584
  "tipo %1$s, cancellare questo campo corrente e creare invece un nuovo campo "
6585
  "di tipo %1$s."
6586
 
6587
- #: includes/fields/class-form-field.php:608
6588
  msgctxt "form-fields-api"
6589
  msgid ""
6590
  "<strong>WARNING</strong>: If you delete this field, the data from it in "
@@ -6593,7 +6645,7 @@ msgstr ""
6593
  "<strong>ATTENZIONE</strong>: Se si elimina questo campo, anche i dati "
6594
  "contenuti negli annunci esistenti verranno cancellati."
6595
 
6596
- #: includes/fields/class-form-field.php:642
6597
  msgctxt "form-fields-api"
6598
  msgid ""
6599
  "There can only be one field with association \"%s\". Please select another "
@@ -6602,17 +6654,17 @@ msgstr ""
6602
  "Ci può essere un solo campo con l'associazione \"%s\". Selezionare un'altra "
6603
  "associazione."
6604
 
6605
- #: includes/fields/class-form-field.php:652
6606
  msgctxt "form-fields-api"
6607
  msgid "\"%s\" is an invalid field type for this association."
6608
  msgstr "\"%s\" è un tipo di campo non valido per questa associazione."
6609
 
6610
- #: includes/fields/class-form-field.php:697
6611
  msgctxt "form-fields-api"
6612
  msgid "Invalid field ID"
6613
  msgstr "ID campo non valido"
6614
 
6615
- #: includes/fields/class-form-field.php:720
6616
  msgctxt "form-fields-api"
6617
  msgid "An error occurred while trying to delete this field."
6618
  msgstr ""
@@ -6688,7 +6740,7 @@ msgctxt "form-fields-api select"
6688
  msgid "— None —"
6689
  msgstr "- Nessuno -"
6690
 
6691
- #: includes/fields/class-fieldtypes-textarea.php:200
6692
  msgctxt "admin form-fields"
6693
  msgid ""
6694
  "Enabling iframe support in your listings can allow users to execute "
@@ -6853,13 +6905,20 @@ msgstr ""
6853
  #: includes/views/submit_listing.php:511
6854
  msgctxt "templates"
6855
  msgid ""
 
 
 
 
 
 
 
6856
  "Listing submission is not available at the moment. Contact the administrator "
6857
  "for details."
6858
  msgstr ""
6859
  "Al momento non è disponibile l'invio di annunci. Contattare l'amministratore "
6860
  "per i dettagli."
6861
 
6862
- #: includes/views/submit_listing.php:514
6863
  msgctxt "templates"
6864
  msgid ""
6865
  "<b>View not available</b>, there is no \"Category\" association field. %s "
@@ -6870,17 +6929,17 @@ msgstr ""
6870
  "%s e crea un nuovo campo con questa associazione, o assegna questa "
6871
  "associazione ad un campo esistente."
6872
 
6873
- #: includes/views/submit_listing.php:921
6874
  msgctxt "templates"
6875
  msgid "Please agree to the Terms and Conditions."
6876
  msgstr "Per favore è necessario accettare le condizioni d'uso."
6877
 
6878
- #: includes/views/submit_listing.php:929
6879
  msgctxt "templates"
6880
  msgid "Terms and Conditions:"
6881
  msgstr "Termini e Condizioni:"
6882
 
6883
- #: includes/views/submit_listing.php:937
6884
  msgctxt "templates"
6885
  msgid "I agree to the <a>Terms and Conditions</a>"
6886
  msgstr "Accetto i <a>termini e le condizioni</a> d'uso"
@@ -8266,7 +8325,7 @@ msgctxt "request_access_keys"
8266
  msgid "URL:"
8267
  msgstr "URL:"
8268
 
8269
- #: includes/views/search.php:45
8270
  msgctxt "search"
8271
  msgid "\"%s\" is required."
8272
  msgstr "%s è richiesto."
@@ -8292,7 +8351,7 @@ msgctxt "preview"
8292
  msgid "This is just a preview. The listing has not been published yet."
8293
  msgstr "Questa è solo un'anteprima. L'Annuncio non è ancora stato pubblicato."
8294
 
8295
- #: includes/views/submit_listing.php:680
8296
  msgctxt "listing submit"
8297
  msgid ""
8298
  "Something went wrong. Please check the form for errors, correct them and "
@@ -8301,7 +8360,7 @@ msgstr ""
8301
  "Qualcosa è andato storto. Si prega di controllare il modulo per eventuali "
8302
  "errori, correggerli e ripresentarli di nuovo."
8303
 
8304
- #: includes/views/submit_listing.php:764
8305
  msgctxt "listing submit"
8306
  msgid ""
8307
  "Image upload is required, please provide at least one image and submit again."
3
  "Project-Id-Version: Business Directory Plugin\n"
4
  "Report-Msgid-Bugs-To: https://wordpress.org/support/plugin/business-"
5
  "directory-plugin\n"
6
+ "POT-Creation-Date: 2019-11-19 21:50:15+00:00\n"
7
  "PO-Revision-Date: 2019-06-25 13:45-0500\n"
8
  "Last-Translator: \n"
9
  "Language-Team: \n"
235
  msgid "Directory Tag"
236
  msgstr "Tag della directory"
237
 
238
+ #. translators: %s: listing count
239
+ #: includes/class-cpt-integration.php:235
240
+ #, fuzzy
241
+ msgid "%s listing updated."
242
+ msgid_plural "%s listings updated."
243
+ msgstr[0] "Un annuncio viene modificato."
244
+ msgstr[1] "Un annuncio viene modificato."
245
+
246
+ #. translators: %s: listing count
247
+ #: includes/class-cpt-integration.php:237
248
+ msgid "%s listing not updated, somebody is editing it."
249
+ msgid_plural "%s listings not updated, somebody is editing them."
250
+ msgstr[0] ""
251
+ msgstr[1] ""
252
+
253
+ #. translators: %s: listing count
254
+ #: includes/class-cpt-integration.php:239
255
+ #, fuzzy
256
+ msgid "%s listing permanently deleted."
257
+ msgid_plural "%s listings permanently deleted."
258
+ msgstr[0] "La segnalazione per l'Annuncio è stata cancellata."
259
+ msgstr[1] "Le segnalazioni per gli Annunci sono state cancellate."
260
+
261
+ #. translators: %s: listing count
262
+ #: includes/class-cpt-integration.php:241
263
+ #, fuzzy
264
+ msgid "%s listing moved to the Trash."
265
+ msgid_plural "%s listings moved to the Trash."
266
+ msgstr[0] "Nessun annuncio trovato in rifiuti"
267
+ msgstr[1] "Nessun annuncio trovato in rifiuti"
268
+
269
+ #. translators: %s: listing count
270
+ #: includes/class-cpt-integration.php:243
271
+ #, fuzzy
272
+ msgid "%s listing restored from the Trash."
273
+ msgid_plural "%s listings restored from the Trash."
274
+ msgstr[0] "Il tuo annuncio è stato rimosso dall'elenco."
275
+ msgstr[1] "Il tuo annuncio è stato rimosso dall'elenco."
276
+
277
  #: includes/class-payment-gateway.php:142
278
  msgid ""
279
  "There was an unexpected error trying to cancel your subscription. Please "
1132
  msgid "Renewal email sent."
1133
  msgstr "E-mail di rinnovo inviata."
1134
 
1135
+ #: includes/admin/class-admin.php:758
1136
+ msgctxt "admin"
1137
+ msgid ""
1138
+ "Could not send renewal email, notice template at listing expiration not "
1139
+ "found."
1140
+ msgstr ""
1141
+
1142
+ #: includes/admin/class-admin.php:765
1143
  msgctxt "admin"
1144
  msgid "Listing report deleted."
1145
  msgid_plural "Listing reports deleted."
1146
  msgstr[0] "La segnalazione per l'Annuncio è stata cancellata."
1147
  msgstr[1] "Le segnalazioni per gli Annunci sono state cancellate."
1148
 
1149
+ #: includes/admin/class-admin.php:813
1150
  msgctxt "admin"
1151
  msgid "Access keys sent."
1152
  msgstr "Dati di accesso inviati."
1153
 
1154
+ #: includes/admin/class-admin.php:815
1155
  msgctxt "admin"
1156
  msgid "The access keys couldn't be sent."
1157
  msgstr "Non è stato possibile inviare i dati di accesso."
1158
 
1159
+ #: includes/admin/class-admin.php:873 includes/admin/class-admin.php:879
1160
  msgctxt "admin"
1161
  msgid "Listing Count"
1162
  msgstr "Elenco luoghi"
1163
 
1164
+ #: includes/admin/class-admin.php:941
1165
  msgctxt "admin"
1166
  msgid ""
1167
  "<b>Business Directory Plugin</b> requires a page with the "
1170
  "<b>Business Directory Plugin</b> richiede una pagina con il codice di scelta "
1171
  "rapida <tt>[businessdirectory]</tt> per funzionare correttamente."
1172
 
1173
+ #: includes/admin/class-admin.php:943
1174
  msgctxt "admin"
1175
  msgid ""
1176
  "You can create this page by yourself or let Business Directory do this for "
1179
  "È possibile creare la pagina da soli o lasciare che Business Directory "
1180
  "faccia questo per voi automaticamente."
1181
 
1182
+ #: includes/admin/class-admin.php:947
1183
  msgctxt "admin"
1184
  msgid "Create required pages for me"
1185
  msgstr "Crea le pagine richieste per me"
1186
 
1187
+ #: includes/admin/class-admin.php:980
1188
  msgctxt "admin"
1189
  msgid ""
1190
  "<strong>Business Directory Plugin</strong> requires <strong>PHP 5.6</strong> "
1196
  "strong>. Chiedete al vostro fornitore di aggiornare per evitare problemi con "
1197
  "il plugin."
1198
 
1199
+ #: includes/admin/class-admin.php:1003
1200
  msgctxt "admin"
1201
  msgid ""
1202
  "We noticed you want your Business Directory users to register before posting "
1251
  "\"Gestire i campi del modulo\" o lasciare che Business Directory lo faccia "
1252
  "automaticamente."
1253
 
1254
+ #: includes/admin/form-fields.php:214 includes/views/submit_listing.php:535
1255
  msgctxt "admin"
1256
  msgid "Go to \"Manage Form Fields\""
1257
  msgstr "Vai a \"Gestire i campi dei moduli\"."
1271
  msgid "Abandoned"
1272
  msgstr "Abbandonato"
1273
 
1274
+ #: includes/views/submit_listing.php:518
1275
+ #, fuzzy
1276
+ msgctxt "admin"
1277
+ msgid "Go to \"Manage Fees\""
1278
+ msgstr "Vai a \"Gestire i campi dei moduli\"."
1279
+
1280
  #: includes/admin/class-admin-listings.php:304
1281
  msgctxt "listing attribute"
1282
  msgid "No Fee Plan"
1602
  msgid "Manage Options"
1603
  msgstr "Gestire le opzioni"
1604
 
1605
+ #: includes/admin/class-admin.php:871
1606
  msgctxt "admin category id"
1607
  msgid "ID"
1608
  msgstr "ID"
2867
  msgid "Field Display Order"
2868
  msgstr "Ordine di visualizzazione sul campo"
2869
 
2870
+ #: includes/fields/class-fieldtypes-textarea.php:197
2871
  msgctxt "form-fields admin"
2872
  msgid "Allow HTML input for this field?"
2873
  msgstr "Consentire l'input HTML per questo campo?"
2874
 
2875
+ #: includes/fields/class-fieldtypes-textarea.php:200
2876
  msgctxt "form-fields admin"
2877
  msgid "Allow IFRAME tags in content?"
2878
  msgstr "Consentire tag IFRAME nel contenuto?"
2879
 
2880
+ #: includes/fields/class-fieldtypes-textarea.php:204
2881
  msgctxt "form-fields admin"
2882
  msgid "No"
2883
  msgstr "No"
2884
 
2885
+ #: includes/fields/class-fieldtypes-textarea.php:205
2886
  msgctxt "form-fields admin"
2887
  msgid "Yes"
2888
  msgstr "Si"
2889
 
2890
+ #: includes/fields/class-fieldtypes-textarea.php:210
2891
  msgctxt "form-fields admin"
2892
  msgid "Allow WordPress shortcodes in this field?"
2893
  msgstr "Consentire le scorciatoie di WordPress in questo campo?"
2894
 
2895
+ #: includes/fields/class-fieldtypes-textarea.php:215
2896
  msgctxt "form-fields admin"
2897
  msgid "Display a WYSIWYG editor on the frontend?"
2898
  msgstr "Visualizzare un editor WYSIWYG sul frontend?"
2899
 
2900
+ #: includes/fields/class-fieldtypes-textarea.php:218
2901
  msgctxt "form-fields admin"
2902
  msgid ""
2903
  "<b>Warning:</b> Users can use this feature to get around your image limits "
2906
  "<b>Attenzione:</b> Gli utenti possono utilizzare questa funzione per "
2907
  "aggirare i limiti dell'immagine nei piani tariffari."
2908
 
2909
+ #: includes/fields/class-fieldtypes-textarea.php:219
2910
  msgctxt "form-fields admin"
2911
  msgid "Allow images in WYSIWYG editor?"
2912
  msgstr "Consentire immagini nell'editor WYSIWYG?"
2913
 
2914
+ #: includes/fields/class-fieldtypes-textarea.php:222
2915
  msgctxt "form-fields admin"
2916
  msgid ""
2917
  "<b>Advanced users only!</b> Unless you've been told to change this, don't "
2920
  "<b>Solo utenti avanzati!</b> A meno che non ti sia stato detto di cambiare, "
2921
  "non cambiarlo a meno che tu non sappia cosa stai facendo."
2922
 
2923
+ #: includes/fields/class-fieldtypes-textarea.php:223
2924
  msgctxt "form-fields admin"
2925
  msgid "Apply \"the_content\" filter before displaying this field?"
2926
  msgstr ""
2927
  "Applicare il filtro \"the_content\" prima di visualizzare questo campo?"
2928
 
2929
+ #: includes/fields/class-fieldtypes-textarea.php:226
2930
  msgctxt "form-fields admin"
2931
  msgid "Use shortened version of Description field as excerpt"
2932
  msgstr "Utilizzare la versione ridotta del campo Descrizione come estratto"
2933
 
2934
+ #: includes/fields/class-fieldtypes-textarea.php:227
2935
  msgctxt "form-fields admin"
2936
  msgid ""
2937
  "Enable always (override the Short Description given with a shortened Long "
2940
  "Abilita sempre (sovrascrivere la breve descrizione fornita con una lunga "
2941
  "descrizione abbreviata)"
2942
 
2943
+ #: includes/fields/class-fieldtypes-textarea.php:228
2944
  msgctxt "form-fields admin"
2945
  msgid ""
2946
  "Enable conditionally (override ONLY when Short Description is empty with a "
2949
  "Abilitazione condizionata (annullare solo quando la descrizione breve è "
2950
  "vuota con una descrizione lunga abbreviata)"
2951
 
2952
+ #: includes/fields/class-fieldtypes-textarea.php:229
2953
  msgctxt "form-fields admin"
2954
  msgid "Disable (use the Short Description all the time, empty or not)"
2955
  msgstr "Disattivare (utilizzare sempre la breve descrizione, vuota o meno)"
2956
 
2957
+ #: includes/fields/class-fieldtypes-textarea.php:231
2958
  msgctxt "form-fields admin"
2959
  msgid ""
2960
  "Truncates the description field to the value set here. To display all of the "
2963
  "Tronca il campo descrizione al valore qui impostato. Per visualizzare tutta "
2964
  "la descrizione, impostare su 0."
2965
 
2966
+ #: includes/fields/class-fieldtypes-textarea.php:232
2967
  msgctxt "form-fields admin"
2968
  msgid ""
2969
  "Number of Characters from Short Description/Excerpt to Display in List View "
2972
  "Numero di caratteri dalla breve Descrizione/Estratto alla visualizzazione "
2973
  "nella vista elenco (solo)"
2974
 
2975
+ #: includes/fields/class-fieldtypes-textarea.php:237
2976
  msgctxt "form-fields admin"
2977
  msgid "Automatically generate excerpt from content field?"
2978
  msgstr "Generare automaticamente un estratto dal campo contenuto?"
5908
  msgstr "Listing gratuito"
5909
 
5910
  #. translators: [%s] is the name of the blog.
5911
+ #: includes/class-listing-email-notification.php:239
5912
  msgctxt "notify email"
5913
  msgid "[%s] New listing notification"
5914
  msgstr "[%s] Notifica nuovo Annuncio"
5915
 
5916
  #. translators: [%s] is the name of the blog.
5917
+ #: includes/class-listing-email-notification.php:290
5918
  msgctxt "notify email"
5919
  msgid "[%s] Listing edit notification"
5920
  msgstr "[%s] Notifica modifica Annuncio"
5921
 
5922
  #. translators: %s is the name of the blog.
5923
+ #: includes/class-listing-email-notification.php:362
5924
  msgctxt "notify email"
5925
  msgid "[%s] Reported listing notification"
5926
  msgstr "[%s] Notifica segnalazione annuncio"
6262
  "Non è possibile inviare un annuncio in questo momento. Per favore, riprova "
6263
  "più tardi."
6264
 
6265
+ #: includes/views/submit_listing.php:550
6266
  msgctxt "submit listing"
6267
  msgid "Please select a category."
6268
  msgstr "Per favore seleziona una categoria."
6269
 
6270
+ #: includes/views/submit_listing.php:563
6271
  msgctxt "submit listing"
6272
  msgid "Please select a category for your listing."
6273
  msgstr "Seleziona una categoria per il tuo annuncio."
6274
 
6275
+ #: includes/views/submit_listing.php:583
6276
  msgctxt "submit listing"
6277
  msgid "Please choose a valid category for your plan."
6278
  msgstr "Scegli una categoria valida per il tuo piano."
6279
 
6280
+ #: includes/views/submit_listing.php:585
6281
  msgctxt "submit listing"
6282
  msgid "Please choose a valid fee plan for your category selection."
6283
  msgstr ""
6284
  "Si prega di scegliere un piano tariffario valido per la selezione della "
6285
  "categoria."
6286
 
6287
+ #: includes/views/submit_listing.php:826
6288
  msgctxt "submit listing"
6289
  msgid "Please enter your desired username."
6290
  msgstr "Inserisci il nome utente desiderato."
6291
 
6292
+ #: includes/views/submit_listing.php:831
6293
  msgctxt "submit listing"
6294
  msgid "Please enter the e-mail for your new account."
6295
  msgstr "Inserisci l'e-mail per il tuo nuovo account."
6296
 
6297
+ #: includes/views/submit_listing.php:836
6298
  msgctxt "submit listing"
6299
  msgid "Please enter the password for your new account."
6300
  msgstr "Inserisci la password per il tuo nuovo account."
6301
 
6302
+ #: includes/views/submit_listing.php:846
6303
  msgctxt "submit listing"
6304
  msgid "The username you chose is already in use. Please use a different one."
6305
  msgstr "Il nome utente scelto è già in uso. Per favore, usane un'altra."
6306
 
6307
+ #: includes/views/submit_listing.php:851
6308
  msgctxt "submit listing"
6309
  msgid "The e-mail address you chose for your account is already in use."
6310
  msgstr "L'indirizzo e-mail scelto per il tuo account è già in uso."
6311
 
6312
+ #: includes/views/submit_listing.php:866
6313
  msgctxt "submit listing"
6314
  msgid "Create a user account on this site"
6315
  msgstr "Creare un account utente su questo sito"
6316
 
6317
+ #: includes/views/submit_listing.php:873
6318
  msgctxt "submit listing"
6319
  msgid ""
6320
  "You need to create an account on the site. Please fill out the form below."
6322
  "È necessario creare un account sul sito. Si prega di compilare il modulo "
6323
  "sottostante."
6324
 
6325
+ #: includes/views/submit_listing.php:879
6326
  msgctxt "submit listing"
6327
  msgid "Username:"
6328
  msgstr "Nome utente:"
6329
 
6330
+ #: includes/views/submit_listing.php:888
6331
  msgctxt "submit listing"
6332
  msgid "Email:"
6333
  msgstr "Email:"
6334
 
6335
+ #: includes/views/submit_listing.php:897
6336
  msgctxt "submit listing"
6337
  msgid "Password:"
6338
  msgstr "Password:"
6534
  msgid "Link Text (optional):"
6535
  msgstr "Link Text (opzionale):"
6536
 
6537
+ #: includes/fields/class-form-field.php:710
6538
  msgctxt "form-fields api"
6539
  msgid ""
6540
  "This form field can't be deleted because it is required for the plugin to "
6609
  msgid "Invalid form field type"
6610
  msgstr "Tipo di campo modulo non valido"
6611
 
6612
+ #: includes/fields/class-form-field.php:589
6613
  msgctxt "form-fields-api"
6614
  msgid "Field label is required."
6615
  msgstr "È richiesta l'etichetta del campo."
6616
 
6617
+ #: includes/fields/class-form-field.php:593
6618
  msgctxt "form-fields-api"
6619
  msgid "Field label max length is 255 characters."
6620
  msgstr ""
6621
 
6622
+ #: includes/fields/class-form-field.php:597
6623
  msgctxt "form-fields-api"
6624
  msgid "Field description max length is 255 characters."
6625
  msgstr ""
6626
 
6627
+ #: includes/fields/class-form-field.php:608
6628
  msgctxt "form-fields-api"
6629
  msgid ""
6630
  "You can't change from %2$s field type to the one you wanted--the types are "
6636
  "tipo %1$s, cancellare questo campo corrente e creare invece un nuovo campo "
6637
  "di tipo %1$s."
6638
 
6639
+ #: includes/fields/class-form-field.php:611
6640
  msgctxt "form-fields-api"
6641
  msgid ""
6642
  "<strong>WARNING</strong>: If you delete this field, the data from it in "
6645
  "<strong>ATTENZIONE</strong>: Se si elimina questo campo, anche i dati "
6646
  "contenuti negli annunci esistenti verranno cancellati."
6647
 
6648
+ #: includes/fields/class-form-field.php:645
6649
  msgctxt "form-fields-api"
6650
  msgid ""
6651
  "There can only be one field with association \"%s\". Please select another "
6654
  "Ci può essere un solo campo con l'associazione \"%s\". Selezionare un'altra "
6655
  "associazione."
6656
 
6657
+ #: includes/fields/class-form-field.php:655
6658
  msgctxt "form-fields-api"
6659
  msgid "\"%s\" is an invalid field type for this association."
6660
  msgstr "\"%s\" è un tipo di campo non valido per questa associazione."
6661
 
6662
+ #: includes/fields/class-form-field.php:700
6663
  msgctxt "form-fields-api"
6664
  msgid "Invalid field ID"
6665
  msgstr "ID campo non valido"
6666
 
6667
+ #: includes/fields/class-form-field.php:723
6668
  msgctxt "form-fields-api"
6669
  msgid "An error occurred while trying to delete this field."
6670
  msgstr ""
6740
  msgid "— None —"
6741
  msgstr "- Nessuno -"
6742
 
6743
+ #: includes/fields/class-fieldtypes-textarea.php:203
6744
  msgctxt "admin form-fields"
6745
  msgid ""
6746
  "Enabling iframe support in your listings can allow users to execute "
6905
  #: includes/views/submit_listing.php:511
6906
  msgctxt "templates"
6907
  msgid ""
6908
+ "<b>There are no Fee Plans available</b>, without a fee plan site users can't "
6909
+ "submit a listing. %s to create a fee plan"
6910
+ msgstr ""
6911
+
6912
+ #: includes/views/submit_listing.php:525
6913
+ msgctxt "templates"
6914
+ msgid ""
6915
  "Listing submission is not available at the moment. Contact the administrator "
6916
  "for details."
6917
  msgstr ""
6918
  "Al momento non è disponibile l'invio di annunci. Contattare l'amministratore "
6919
  "per i dettagli."
6920
 
6921
+ #: includes/views/submit_listing.php:528
6922
  msgctxt "templates"
6923
  msgid ""
6924
  "<b>View not available</b>, there is no \"Category\" association field. %s "
6929
  "%s e crea un nuovo campo con questa associazione, o assegna questa "
6930
  "associazione ad un campo esistente."
6931
 
6932
+ #: includes/views/submit_listing.php:935
6933
  msgctxt "templates"
6934
  msgid "Please agree to the Terms and Conditions."
6935
  msgstr "Per favore è necessario accettare le condizioni d'uso."
6936
 
6937
+ #: includes/views/submit_listing.php:943
6938
  msgctxt "templates"
6939
  msgid "Terms and Conditions:"
6940
  msgstr "Termini e Condizioni:"
6941
 
6942
+ #: includes/views/submit_listing.php:951
6943
  msgctxt "templates"
6944
  msgid "I agree to the <a>Terms and Conditions</a>"
6945
  msgstr "Accetto i <a>termini e le condizioni</a> d'uso"
8325
  msgid "URL:"
8326
  msgstr "URL:"
8327
 
8328
+ #: includes/views/search.php:46
8329
  msgctxt "search"
8330
  msgid "\"%s\" is required."
8331
  msgstr "%s è richiesto."
8351
  msgid "This is just a preview. The listing has not been published yet."
8352
  msgstr "Questa è solo un'anteprima. L'Annuncio non è ancora stato pubblicato."
8353
 
8354
+ #: includes/views/submit_listing.php:694
8355
  msgctxt "listing submit"
8356
  msgid ""
8357
  "Something went wrong. Please check the form for errors, correct them and "
8360
  "Qualcosa è andato storto. Si prega di controllare il modulo per eventuali "
8361
  "errori, correggerli e ripresentarli di nuovo."
8362
 
8363
+ #: includes/views/submit_listing.php:778
8364
  msgctxt "listing submit"
8365
  msgid ""
8366
  "Image upload is required, please provide at least one image and submit again."
languages/WPBDM-nl_NL.po CHANGED
@@ -3,7 +3,7 @@ msgstr ""
3
  "Project-Id-Version: Business Directory Plugin v5.5\n"
4
  "Report-Msgid-Bugs-To: https://wordpress.org/support/plugin/business-"
5
  "directory-plugin\n"
6
- "POT-Creation-Date: 2019-10-30 22:21:32+00:00\n"
7
  "PO-Revision-Date: 2017-07-04 12:37+0000\n"
8
  "Last-Translator: admin <info@nederlofcentrum.nl>\n"
9
  "Language-Team: Dutch\n"
@@ -216,6 +216,44 @@ msgstr ""
216
  msgid "Directory Tag"
217
  msgstr ""
218
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
219
  #: includes/class-payment-gateway.php:142
220
  msgid ""
221
  "There was an unexpected error trying to cancel your subscription. Please "
@@ -1031,7 +1069,14 @@ msgctxt "admin"
1031
  msgid "Renewal email sent."
1032
  msgstr ""
1033
 
1034
- #: includes/admin/class-admin.php:761
 
 
 
 
 
 
 
1035
  #, fuzzy
1036
  msgctxt "admin"
1037
  msgid "Listing report deleted."
@@ -1039,41 +1084,41 @@ msgid_plural "Listing reports deleted."
1039
  msgstr[0] "Registratie vernieuwing"
1040
  msgstr[1] "Registratie vernieuwing"
1041
 
1042
- #: includes/admin/class-admin.php:809
1043
  msgctxt "admin"
1044
  msgid "Access keys sent."
1045
  msgstr ""
1046
 
1047
- #: includes/admin/class-admin.php:811
1048
  msgctxt "admin"
1049
  msgid "The access keys couldn't be sent."
1050
  msgstr ""
1051
 
1052
- #: includes/admin/class-admin.php:869 includes/admin/class-admin.php:875
1053
  msgctxt "admin"
1054
  msgid "Listing Count"
1055
  msgstr "Aantal registraties"
1056
 
1057
- #: includes/admin/class-admin.php:937
1058
  msgctxt "admin"
1059
  msgid ""
1060
  "<b>Business Directory Plugin</b> requires a page with the "
1061
  "<tt>[businessdirectory]</tt> shortcode to function properly."
1062
  msgstr ""
1063
 
1064
- #: includes/admin/class-admin.php:939
1065
  msgctxt "admin"
1066
  msgid ""
1067
  "You can create this page by yourself or let Business Directory do this for "
1068
  "you automatically."
1069
  msgstr ""
1070
 
1071
- #: includes/admin/class-admin.php:943
1072
  msgctxt "admin"
1073
  msgid "Create required pages for me"
1074
  msgstr ""
1075
 
1076
- #: includes/admin/class-admin.php:976
1077
  msgctxt "admin"
1078
  msgid ""
1079
  "<strong>Business Directory Plugin</strong> requires <strong>PHP 5.6</strong> "
@@ -1081,7 +1126,7 @@ msgid ""
1081
  "your provider to upgrade in order to prevent any issues with the plugin."
1082
  msgstr ""
1083
 
1084
- #: includes/admin/class-admin.php:999
1085
  msgctxt "admin"
1086
  msgid ""
1087
  "We noticed you want your Business Directory users to register before posting "
@@ -1128,7 +1173,7 @@ msgid ""
1128
  "or let Business Directory do this for you automatically."
1129
  msgstr ""
1130
 
1131
- #: includes/admin/form-fields.php:214 includes/views/submit_listing.php:521
1132
  msgctxt "admin"
1133
  msgid "Go to \"Manage Form Fields\""
1134
  msgstr "Ga naar \"instellen formulier velden\""
@@ -1148,6 +1193,12 @@ msgctxt "admin"
1148
  msgid "Abandoned"
1149
  msgstr ""
1150
 
 
 
 
 
 
 
1151
  #: includes/admin/class-admin-listings.php:304
1152
  msgctxt "listing attribute"
1153
  msgid "No Fee Plan"
@@ -1495,7 +1546,7 @@ msgctxt "admin menu"
1495
  msgid "Manage Options"
1496
  msgstr "Opties beheren"
1497
 
1498
- #: includes/admin/class-admin.php:867
1499
  msgctxt "admin category id"
1500
  msgid "ID"
1501
  msgstr ""
@@ -2694,99 +2745,99 @@ msgctxt "form-fields admin"
2694
  msgid "Field Display Order"
2695
  msgstr ""
2696
 
2697
- #: includes/fields/class-fieldtypes-textarea.php:194
2698
  msgctxt "form-fields admin"
2699
  msgid "Allow HTML input for this field?"
2700
  msgstr ""
2701
 
2702
- #: includes/fields/class-fieldtypes-textarea.php:197
2703
  msgctxt "form-fields admin"
2704
  msgid "Allow IFRAME tags in content?"
2705
  msgstr ""
2706
 
2707
- #: includes/fields/class-fieldtypes-textarea.php:201
2708
  msgctxt "form-fields admin"
2709
  msgid "No"
2710
  msgstr "Nee"
2711
 
2712
- #: includes/fields/class-fieldtypes-textarea.php:202
2713
  msgctxt "form-fields admin"
2714
  msgid "Yes"
2715
  msgstr "Ja"
2716
 
2717
- #: includes/fields/class-fieldtypes-textarea.php:207
2718
  msgctxt "form-fields admin"
2719
  msgid "Allow WordPress shortcodes in this field?"
2720
  msgstr ""
2721
 
2722
- #: includes/fields/class-fieldtypes-textarea.php:212
2723
  msgctxt "form-fields admin"
2724
  msgid "Display a WYSIWYG editor on the frontend?"
2725
  msgstr ""
2726
 
2727
- #: includes/fields/class-fieldtypes-textarea.php:215
2728
  msgctxt "form-fields admin"
2729
  msgid ""
2730
  "<b>Warning:</b> Users can use this feature to get around your image limits "
2731
  "in fee plans."
2732
  msgstr ""
2733
 
2734
- #: includes/fields/class-fieldtypes-textarea.php:216
2735
  msgctxt "form-fields admin"
2736
  msgid "Allow images in WYSIWYG editor?"
2737
  msgstr ""
2738
 
2739
- #: includes/fields/class-fieldtypes-textarea.php:219
2740
  msgctxt "form-fields admin"
2741
  msgid ""
2742
  "<b>Advanced users only!</b> Unless you've been told to change this, don't "
2743
  "switch it unless you know what you're doing."
2744
  msgstr ""
2745
 
2746
- #: includes/fields/class-fieldtypes-textarea.php:220
2747
  msgctxt "form-fields admin"
2748
  msgid "Apply \"the_content\" filter before displaying this field?"
2749
  msgstr ""
2750
 
2751
- #: includes/fields/class-fieldtypes-textarea.php:223
2752
  msgctxt "form-fields admin"
2753
  msgid "Use shortened version of Description field as excerpt"
2754
  msgstr ""
2755
 
2756
- #: includes/fields/class-fieldtypes-textarea.php:224
2757
  msgctxt "form-fields admin"
2758
  msgid ""
2759
  "Enable always (override the Short Description given with a shortened Long "
2760
  "Description)"
2761
  msgstr ""
2762
 
2763
- #: includes/fields/class-fieldtypes-textarea.php:225
2764
  msgctxt "form-fields admin"
2765
  msgid ""
2766
  "Enable conditionally (override ONLY when Short Description is empty with a "
2767
  "shortened Long Description)"
2768
  msgstr ""
2769
 
2770
- #: includes/fields/class-fieldtypes-textarea.php:226
2771
  msgctxt "form-fields admin"
2772
  msgid "Disable (use the Short Description all the time, empty or not)"
2773
  msgstr ""
2774
 
2775
- #: includes/fields/class-fieldtypes-textarea.php:228
2776
  msgctxt "form-fields admin"
2777
  msgid ""
2778
  "Truncates the description field to the value set here. To display all of the "
2779
  "description, set to 0."
2780
  msgstr ""
2781
 
2782
- #: includes/fields/class-fieldtypes-textarea.php:229
2783
  msgctxt "form-fields admin"
2784
  msgid ""
2785
  "Number of Characters from Short Description/Excerpt to Display in List View "
2786
  "(only)"
2787
  msgstr ""
2788
 
2789
- #: includes/fields/class-fieldtypes-textarea.php:234
2790
  msgctxt "form-fields admin"
2791
  msgid "Automatically generate excerpt from content field?"
2792
  msgstr ""
@@ -5766,19 +5817,19 @@ msgid "Free Listing"
5766
  msgstr "Gratis registratie"
5767
 
5768
  #. translators: [%s] is the name of the blog.
5769
- #: includes/class-listing-email-notification.php:235
5770
  msgctxt "notify email"
5771
  msgid "[%s] New listing notification"
5772
  msgstr "[%s] Notificatie nieuwe registratie"
5773
 
5774
  #. translators: [%s] is the name of the blog.
5775
- #: includes/class-listing-email-notification.php:286
5776
  msgctxt "notify email"
5777
  msgid "[%s] Listing edit notification"
5778
  msgstr "[%s] Registratie/vermelding aangepast notificatie"
5779
 
5780
  #. translators: %s is the name of the blog.
5781
- #: includes/class-listing-email-notification.php:358
5782
  #, fuzzy
5783
  msgctxt "notify email"
5784
  msgid "[%s] Reported listing notification"
@@ -6129,75 +6180,75 @@ msgctxt "submit listing"
6129
  msgid "Can not submit a listing at this moment. Please try again later."
6130
  msgstr ""
6131
 
6132
- #: includes/views/submit_listing.php:536
6133
  msgctxt "submit listing"
6134
  msgid "Please select a category."
6135
  msgstr ""
6136
 
6137
- #: includes/views/submit_listing.php:549
6138
  msgctxt "submit listing"
6139
  msgid "Please select a category for your listing."
6140
  msgstr ""
6141
 
6142
- #: includes/views/submit_listing.php:569
6143
  msgctxt "submit listing"
6144
  msgid "Please choose a valid category for your plan."
6145
  msgstr ""
6146
 
6147
- #: includes/views/submit_listing.php:571
6148
  msgctxt "submit listing"
6149
  msgid "Please choose a valid fee plan for your category selection."
6150
  msgstr ""
6151
 
6152
- #: includes/views/submit_listing.php:812
6153
  msgctxt "submit listing"
6154
  msgid "Please enter your desired username."
6155
  msgstr ""
6156
 
6157
- #: includes/views/submit_listing.php:817
6158
  msgctxt "submit listing"
6159
  msgid "Please enter the e-mail for your new account."
6160
  msgstr ""
6161
 
6162
- #: includes/views/submit_listing.php:822
6163
  msgctxt "submit listing"
6164
  msgid "Please enter the password for your new account."
6165
  msgstr ""
6166
 
6167
- #: includes/views/submit_listing.php:832
6168
  msgctxt "submit listing"
6169
  msgid "The username you chose is already in use. Please use a different one."
6170
  msgstr ""
6171
 
6172
- #: includes/views/submit_listing.php:837
6173
  msgctxt "submit listing"
6174
  msgid "The e-mail address you chose for your account is already in use."
6175
  msgstr ""
6176
 
6177
- #: includes/views/submit_listing.php:852
6178
  msgctxt "submit listing"
6179
  msgid "Create a user account on this site"
6180
  msgstr ""
6181
 
6182
- #: includes/views/submit_listing.php:859
6183
  msgctxt "submit listing"
6184
  msgid ""
6185
  "You need to create an account on the site. Please fill out the form below."
6186
  msgstr ""
6187
 
6188
- #: includes/views/submit_listing.php:865
6189
  #, fuzzy
6190
  msgctxt "submit listing"
6191
  msgid "Username:"
6192
  msgstr "Gebruiker"
6193
 
6194
- #: includes/views/submit_listing.php:874
6195
  #, fuzzy
6196
  msgctxt "submit listing"
6197
  msgid "Email:"
6198
  msgstr "Jouw email"
6199
 
6200
- #: includes/views/submit_listing.php:883
6201
  msgctxt "submit listing"
6202
  msgid "Password:"
6203
  msgstr ""
@@ -6402,7 +6453,7 @@ msgctxt "form-fields api"
6402
  msgid "Link Text (optional):"
6403
  msgstr "Link tekst (optioneel)"
6404
 
6405
- #: includes/fields/class-form-field.php:707
6406
  msgctxt "form-fields api"
6407
  msgid ""
6408
  "This form field can't be deleted because it is required for the plugin to "
@@ -6477,22 +6528,22 @@ msgctxt "form-fields-api"
6477
  msgid "Invalid form field type"
6478
  msgstr ""
6479
 
6480
- #: includes/fields/class-form-field.php:586
6481
  msgctxt "form-fields-api"
6482
  msgid "Field label is required."
6483
  msgstr ""
6484
 
6485
- #: includes/fields/class-form-field.php:590
6486
  msgctxt "form-fields-api"
6487
  msgid "Field label max length is 255 characters."
6488
  msgstr ""
6489
 
6490
- #: includes/fields/class-form-field.php:594
6491
  msgctxt "form-fields-api"
6492
  msgid "Field description max length is 255 characters."
6493
  msgstr ""
6494
 
6495
- #: includes/fields/class-form-field.php:605
6496
  msgctxt "form-fields-api"
6497
  msgid ""
6498
  "You can't change from %2$s field type to the one you wanted--the types are "
@@ -6500,31 +6551,31 @@ msgid ""
6500
  "delete this current field and create a NEW field of type %1$s instead."
6501
  msgstr ""
6502
 
6503
- #: includes/fields/class-form-field.php:608
6504
  msgctxt "form-fields-api"
6505
  msgid ""
6506
  "<strong>WARNING</strong>: If you delete this field, the data from it in "
6507
  "existing listings will be deleted as well."
6508
  msgstr ""
6509
 
6510
- #: includes/fields/class-form-field.php:642
6511
  msgctxt "form-fields-api"
6512
  msgid ""
6513
  "There can only be one field with association \"%s\". Please select another "
6514
  "association."
6515
  msgstr ""
6516
 
6517
- #: includes/fields/class-form-field.php:652
6518
  msgctxt "form-fields-api"
6519
  msgid "\"%s\" is an invalid field type for this association."
6520
  msgstr ""
6521
 
6522
- #: includes/fields/class-form-field.php:697
6523
  msgctxt "form-fields-api"
6524
  msgid "Invalid field ID"
6525
  msgstr ""
6526
 
6527
- #: includes/fields/class-form-field.php:720
6528
  msgctxt "form-fields-api"
6529
  msgid "An error occurred while trying to delete this field."
6530
  msgstr ""
@@ -6597,7 +6648,7 @@ msgctxt "form-fields-api select"
6597
  msgid "— None —"
6598
  msgstr "— Geen —"
6599
 
6600
- #: includes/fields/class-fieldtypes-textarea.php:200
6601
  msgctxt "admin form-fields"
6602
  msgid ""
6603
  "Enabling iframe support in your listings can allow users to execute "
@@ -6745,11 +6796,18 @@ msgstr ""
6745
  #: includes/views/submit_listing.php:511
6746
  msgctxt "templates"
6747
  msgid ""
 
 
 
 
 
 
 
6748
  "Listing submission is not available at the moment. Contact the administrator "
6749
  "for details."
6750
  msgstr ""
6751
 
6752
- #: includes/views/submit_listing.php:514
6753
  msgctxt "templates"
6754
  msgid ""
6755
  "<b>View not available</b>, there is no \"Category\" association field. %s "
@@ -6757,17 +6815,17 @@ msgid ""
6757
  "an existing field"
6758
  msgstr ""
6759
 
6760
- #: includes/views/submit_listing.php:921
6761
  msgctxt "templates"
6762
  msgid "Please agree to the Terms and Conditions."
6763
  msgstr "Ga s.v.p. akkoord met de voorwaarden"
6764
 
6765
- #: includes/views/submit_listing.php:929
6766
  msgctxt "templates"
6767
  msgid "Terms and Conditions:"
6768
  msgstr "Voorwaarden"
6769
 
6770
- #: includes/views/submit_listing.php:937
6771
  #, fuzzy
6772
  msgctxt "templates"
6773
  msgid "I agree to the <a>Terms and Conditions</a>"
@@ -8077,7 +8135,7 @@ msgctxt "request_access_keys"
8077
  msgid "URL:"
8078
  msgstr ""
8079
 
8080
- #: includes/views/search.php:45
8081
  #, fuzzy
8082
  msgctxt "search"
8083
  msgid "\"%s\" is required."
@@ -8105,14 +8163,14 @@ msgid "This is just a preview. The listing has not been published yet."
8105
  msgstr ""
8106
  "Dit is alleen een voorvertoning. De registratie is nog niet gepubliceerd."
8107
 
8108
- #: includes/views/submit_listing.php:680
8109
  msgctxt "listing submit"
8110
  msgid ""
8111
  "Something went wrong. Please check the form for errors, correct them and "
8112
  "submit again."
8113
  msgstr ""
8114
 
8115
- #: includes/views/submit_listing.php:764
8116
  msgctxt "listing submit"
8117
  msgid ""
8118
  "Image upload is required, please provide at least one image and submit again."
3
  "Project-Id-Version: Business Directory Plugin v5.5\n"
4
  "Report-Msgid-Bugs-To: https://wordpress.org/support/plugin/business-"
5
  "directory-plugin\n"
6
+ "POT-Creation-Date: 2019-11-19 21:50:15+00:00\n"
7
  "PO-Revision-Date: 2017-07-04 12:37+0000\n"
8
  "Last-Translator: admin <info@nederlofcentrum.nl>\n"
9
  "Language-Team: Dutch\n"
216
  msgid "Directory Tag"
217
  msgstr ""
218
 
219
+ #. translators: %s: listing count
220
+ #: includes/class-cpt-integration.php:235
221
+ #, fuzzy
222
+ msgid "%s listing updated."
223
+ msgid_plural "%s listings updated."
224
+ msgstr[0] "Een registratie is gewijzigd."
225
+ msgstr[1] "Een registratie is gewijzigd."
226
+
227
+ #. translators: %s: listing count
228
+ #: includes/class-cpt-integration.php:237
229
+ msgid "%s listing not updated, somebody is editing it."
230
+ msgid_plural "%s listings not updated, somebody is editing them."
231
+ msgstr[0] ""
232
+ msgstr[1] ""
233
+
234
+ #. translators: %s: listing count
235
+ #: includes/class-cpt-integration.php:239
236
+ #, fuzzy
237
+ msgid "%s listing permanently deleted."
238
+ msgid_plural "%s listings permanently deleted."
239
+ msgstr[0] "Registratie vernieuwing"
240
+ msgstr[1] "Registratie vernieuwing"
241
+
242
+ #. translators: %s: listing count
243
+ #: includes/class-cpt-integration.php:241
244
+ msgid "%s listing moved to the Trash."
245
+ msgid_plural "%s listings moved to the Trash."
246
+ msgstr[0] ""
247
+ msgstr[1] ""
248
+
249
+ #. translators: %s: listing count
250
+ #: includes/class-cpt-integration.php:243
251
+ #, fuzzy
252
+ msgid "%s listing restored from the Trash."
253
+ msgid_plural "%s listings restored from the Trash."
254
+ msgstr[0] "Je registratie is verwijderd."
255
+ msgstr[1] "Je registratie is verwijderd."
256
+
257
  #: includes/class-payment-gateway.php:142
258
  msgid ""
259
  "There was an unexpected error trying to cancel your subscription. Please "
1069
  msgid "Renewal email sent."
1070
  msgstr ""
1071
 
1072
+ #: includes/admin/class-admin.php:758
1073
+ msgctxt "admin"
1074
+ msgid ""
1075
+ "Could not send renewal email, notice template at listing expiration not "
1076
+ "found."
1077
+ msgstr ""
1078
+
1079
+ #: includes/admin/class-admin.php:765
1080
  #, fuzzy
1081
  msgctxt "admin"
1082
  msgid "Listing report deleted."
1084
  msgstr[0] "Registratie vernieuwing"
1085
  msgstr[1] "Registratie vernieuwing"
1086
 
1087
+ #: includes/admin/class-admin.php:813
1088
  msgctxt "admin"
1089
  msgid "Access keys sent."
1090
  msgstr ""
1091
 
1092
+ #: includes/admin/class-admin.php:815
1093
  msgctxt "admin"
1094
  msgid "The access keys couldn't be sent."
1095
  msgstr ""
1096
 
1097
+ #: includes/admin/class-admin.php:873 includes/admin/class-admin.php:879
1098
  msgctxt "admin"
1099
  msgid "Listing Count"
1100
  msgstr "Aantal registraties"
1101
 
1102
+ #: includes/admin/class-admin.php:941
1103
  msgctxt "admin"
1104
  msgid ""
1105
  "<b>Business Directory Plugin</b> requires a page with the "
1106
  "<tt>[businessdirectory]</tt> shortcode to function properly."
1107
  msgstr ""
1108
 
1109
+ #: includes/admin/class-admin.php:943
1110
  msgctxt "admin"
1111
  msgid ""
1112
  "You can create this page by yourself or let Business Directory do this for "
1113
  "you automatically."
1114
  msgstr ""
1115
 
1116
+ #: includes/admin/class-admin.php:947
1117
  msgctxt "admin"
1118
  msgid "Create required pages for me"
1119
  msgstr ""
1120
 
1121
+ #: includes/admin/class-admin.php:980
1122
  msgctxt "admin"
1123
  msgid ""
1124
  "<strong>Business Directory Plugin</strong> requires <strong>PHP 5.6</strong> "
1126
  "your provider to upgrade in order to prevent any issues with the plugin."
1127
  msgstr ""
1128
 
1129
+ #: includes/admin/class-admin.php:1003
1130
  msgctxt "admin"
1131
  msgid ""
1132
  "We noticed you want your Business Directory users to register before posting "
1173
  "or let Business Directory do this for you automatically."
1174
  msgstr ""
1175
 
1176
+ #: includes/admin/form-fields.php:214 includes/views/submit_listing.php:535
1177
  msgctxt "admin"
1178
  msgid "Go to \"Manage Form Fields\""
1179
  msgstr "Ga naar \"instellen formulier velden\""
1193
  msgid "Abandoned"
1194
  msgstr ""
1195
 
1196
+ #: includes/views/submit_listing.php:518
1197
+ #, fuzzy
1198
+ msgctxt "admin"
1199
+ msgid "Go to \"Manage Fees\""
1200
+ msgstr "Ga naar \"instellen formulier velden\""
1201
+
1202
  #: includes/admin/class-admin-listings.php:304
1203
  msgctxt "listing attribute"
1204
  msgid "No Fee Plan"
1546
  msgid "Manage Options"
1547
  msgstr "Opties beheren"
1548
 
1549
+ #: includes/admin/class-admin.php:871
1550
  msgctxt "admin category id"
1551
  msgid "ID"
1552
  msgstr ""
2745
  msgid "Field Display Order"
2746
  msgstr ""
2747
 
2748
+ #: includes/fields/class-fieldtypes-textarea.php:197
2749
  msgctxt "form-fields admin"
2750
  msgid "Allow HTML input for this field?"
2751
  msgstr ""
2752
 
2753
+ #: includes/fields/class-fieldtypes-textarea.php:200
2754
  msgctxt "form-fields admin"
2755
  msgid "Allow IFRAME tags in content?"
2756
  msgstr ""
2757
 
2758
+ #: includes/fields/class-fieldtypes-textarea.php:204
2759
  msgctxt "form-fields admin"
2760
  msgid "No"
2761
  msgstr "Nee"
2762
 
2763
+ #: includes/fields/class-fieldtypes-textarea.php:205
2764
  msgctxt "form-fields admin"
2765
  msgid "Yes"
2766
  msgstr "Ja"
2767
 
2768
+ #: includes/fields/class-fieldtypes-textarea.php:210
2769
  msgctxt "form-fields admin"
2770
  msgid "Allow WordPress shortcodes in this field?"
2771
  msgstr ""
2772
 
2773
+ #: includes/fields/class-fieldtypes-textarea.php:215
2774
  msgctxt "form-fields admin"
2775
  msgid "Display a WYSIWYG editor on the frontend?"
2776
  msgstr ""
2777
 
2778
+ #: includes/fields/class-fieldtypes-textarea.php:218
2779
  msgctxt "form-fields admin"
2780
  msgid ""
2781
  "<b>Warning:</b> Users can use this feature to get around your image limits "
2782
  "in fee plans."
2783
  msgstr ""
2784
 
2785
+ #: includes/fields/class-fieldtypes-textarea.php:219
2786
  msgctxt "form-fields admin"
2787
  msgid "Allow images in WYSIWYG editor?"
2788
  msgstr ""
2789
 
2790
+ #: includes/fields/class-fieldtypes-textarea.php:222
2791
  msgctxt "form-fields admin"
2792
  msgid ""
2793
  "<b>Advanced users only!</b> Unless you've been told to change this, don't "
2794
  "switch it unless you know what you're doing."
2795
  msgstr ""
2796
 
2797
+ #: includes/fields/class-fieldtypes-textarea.php:223
2798
  msgctxt "form-fields admin"
2799
  msgid "Apply \"the_content\" filter before displaying this field?"
2800
  msgstr ""
2801
 
2802
+ #: includes/fields/class-fieldtypes-textarea.php:226
2803
  msgctxt "form-fields admin"
2804
  msgid "Use shortened version of Description field as excerpt"
2805
  msgstr ""
2806
 
2807
+ #: includes/fields/class-fieldtypes-textarea.php:227
2808
  msgctxt "form-fields admin"
2809
  msgid ""
2810
  "Enable always (override the Short Description given with a shortened Long "
2811
  "Description)"
2812
  msgstr ""
2813
 
2814
+ #: includes/fields/class-fieldtypes-textarea.php:228
2815
  msgctxt "form-fields admin"
2816
  msgid ""
2817
  "Enable conditionally (override ONLY when Short Description is empty with a "
2818
  "shortened Long Description)"
2819
  msgstr ""
2820
 
2821
+ #: includes/fields/class-fieldtypes-textarea.php:229
2822
  msgctxt "form-fields admin"
2823
  msgid "Disable (use the Short Description all the time, empty or not)"
2824
  msgstr ""
2825
 
2826
+ #: includes/fields/class-fieldtypes-textarea.php:231
2827
  msgctxt "form-fields admin"
2828
  msgid ""
2829
  "Truncates the description field to the value set here. To display all of the "
2830
  "description, set to 0."
2831
  msgstr ""
2832
 
2833
+ #: includes/fields/class-fieldtypes-textarea.php:232
2834
  msgctxt "form-fields admin"
2835
  msgid ""
2836
  "Number of Characters from Short Description/Excerpt to Display in List View "
2837
  "(only)"
2838
  msgstr ""
2839
 
2840
+ #: includes/fields/class-fieldtypes-textarea.php:237
2841
  msgctxt "form-fields admin"
2842
  msgid "Automatically generate excerpt from content field?"
2843
  msgstr ""
5817
  msgstr "Gratis registratie"
5818
 
5819
  #. translators: [%s] is the name of the blog.
5820
+ #: includes/class-listing-email-notification.php:239
5821
  msgctxt "notify email"
5822
  msgid "[%s] New listing notification"
5823
  msgstr "[%s] Notificatie nieuwe registratie"
5824
 
5825
  #. translators: [%s] is the name of the blog.
5826
+ #: includes/class-listing-email-notification.php:290
5827
  msgctxt "notify email"
5828
  msgid "[%s] Listing edit notification"
5829
  msgstr "[%s] Registratie/vermelding aangepast notificatie"
5830
 
5831
  #. translators: %s is the name of the blog.
5832
+ #: includes/class-listing-email-notification.php:362
5833
  #, fuzzy
5834
  msgctxt "notify email"
5835
  msgid "[%s] Reported listing notification"
6180
  msgid "Can not submit a listing at this moment. Please try again later."
6181
  msgstr ""
6182
 
6183
+ #: includes/views/submit_listing.php:550
6184
  msgctxt "submit listing"
6185
  msgid "Please select a category."
6186
  msgstr ""
6187
 
6188
+ #: includes/views/submit_listing.php:563
6189
  msgctxt "submit listing"
6190
  msgid "Please select a category for your listing."
6191
  msgstr ""
6192
 
6193
+ #: includes/views/submit_listing.php:583
6194
  msgctxt "submit listing"
6195
  msgid "Please choose a valid category for your plan."
6196
  msgstr ""
6197
 
6198
+ #: includes/views/submit_listing.php:585
6199
  msgctxt "submit listing"
6200
  msgid "Please choose a valid fee plan for your category selection."
6201
  msgstr ""
6202
 
6203
+ #: includes/views/submit_listing.php:826
6204
  msgctxt "submit listing"
6205
  msgid "Please enter your desired username."
6206
  msgstr ""
6207
 
6208
+ #: includes/views/submit_listing.php:831
6209
  msgctxt "submit listing"
6210
  msgid "Please enter the e-mail for your new account."
6211
  msgstr ""
6212
 
6213
+ #: includes/views/submit_listing.php:836
6214
  msgctxt "submit listing"
6215
  msgid "Please enter the password for your new account."
6216
  msgstr ""
6217
 
6218
+ #: includes/views/submit_listing.php:846
6219
  msgctxt "submit listing"
6220
  msgid "The username you chose is already in use. Please use a different one."
6221
  msgstr ""
6222
 
6223
+ #: includes/views/submit_listing.php:851
6224
  msgctxt "submit listing"
6225
  msgid "The e-mail address you chose for your account is already in use."
6226
  msgstr ""
6227
 
6228
+ #: includes/views/submit_listing.php:866
6229
  msgctxt "submit listing"
6230
  msgid "Create a user account on this site"
6231
  msgstr ""
6232
 
6233
+ #: includes/views/submit_listing.php:873
6234
  msgctxt "submit listing"
6235
  msgid ""
6236
  "You need to create an account on the site. Please fill out the form below."
6237
  msgstr ""
6238
 
6239
+ #: includes/views/submit_listing.php:879
6240
  #, fuzzy
6241
  msgctxt "submit listing"
6242
  msgid "Username:"
6243
  msgstr "Gebruiker"
6244
 
6245
+ #: includes/views/submit_listing.php:888
6246
  #, fuzzy
6247
  msgctxt "submit listing"
6248
  msgid "Email:"
6249
  msgstr "Jouw email"
6250
 
6251
+ #: includes/views/submit_listing.php:897
6252
  msgctxt "submit listing"
6253
  msgid "Password:"
6254
  msgstr ""
6453
  msgid "Link Text (optional):"
6454
  msgstr "Link tekst (optioneel)"
6455
 
6456
+ #: includes/fields/class-form-field.php:710
6457
  msgctxt "form-fields api"
6458
  msgid ""
6459
  "This form field can't be deleted because it is required for the plugin to "
6528
  msgid "Invalid form field type"
6529
  msgstr ""
6530
 
6531
+ #: includes/fields/class-form-field.php:589
6532
  msgctxt "form-fields-api"
6533
  msgid "Field label is required."
6534
  msgstr ""
6535
 
6536
+ #: includes/fields/class-form-field.php:593
6537
  msgctxt "form-fields-api"
6538
  msgid "Field label max length is 255 characters."
6539
  msgstr ""
6540
 
6541
+ #: includes/fields/class-form-field.php:597
6542
  msgctxt "form-fields-api"
6543
  msgid "Field description max length is 255 characters."
6544
  msgstr ""
6545
 
6546
+ #: includes/fields/class-form-field.php:608
6547
  msgctxt "form-fields-api"
6548
  msgid ""
6549
  "You can't change from %2$s field type to the one you wanted--the types are "
6551
  "delete this current field and create a NEW field of type %1$s instead."
6552
  msgstr ""
6553
 
6554
+ #: includes/fields/class-form-field.php:611
6555
  msgctxt "form-fields-api"
6556
  msgid ""
6557
  "<strong>WARNING</strong>: If you delete this field, the data from it in "
6558
  "existing listings will be deleted as well."
6559
  msgstr ""
6560
 
6561
+ #: includes/fields/class-form-field.php:645
6562
  msgctxt "form-fields-api"
6563
  msgid ""
6564
  "There can only be one field with association \"%s\". Please select another "
6565
  "association."
6566
  msgstr ""
6567
 
6568
+ #: includes/fields/class-form-field.php:655
6569
  msgctxt "form-fields-api"
6570
  msgid "\"%s\" is an invalid field type for this association."
6571
  msgstr ""
6572
 
6573
+ #: includes/fields/class-form-field.php:700
6574
  msgctxt "form-fields-api"
6575
  msgid "Invalid field ID"
6576
  msgstr ""
6577
 
6578
+ #: includes/fields/class-form-field.php:723
6579
  msgctxt "form-fields-api"
6580
  msgid "An error occurred while trying to delete this field."
6581
  msgstr ""
6648
  msgid "— None —"
6649
  msgstr "— Geen —"
6650
 
6651
+ #: includes/fields/class-fieldtypes-textarea.php:203
6652
  msgctxt "admin form-fields"
6653
  msgid ""
6654
  "Enabling iframe support in your listings can allow users to execute "
6796
  #: includes/views/submit_listing.php:511
6797
  msgctxt "templates"
6798
  msgid ""
6799
+ "<b>There are no Fee Plans available</b>, without a fee plan site users can't "
6800
+ "submit a listing. %s to create a fee plan"
6801
+ msgstr ""
6802
+
6803
+ #: includes/views/submit_listing.php:525
6804
+ msgctxt "templates"
6805
+ msgid ""
6806
  "Listing submission is not available at the moment. Contact the administrator "
6807
  "for details."
6808
  msgstr ""
6809
 
6810
+ #: includes/views/submit_listing.php:528
6811
  msgctxt "templates"
6812
  msgid ""
6813
  "<b>View not available</b>, there is no \"Category\" association field. %s "
6815
  "an existing field"
6816
  msgstr ""
6817
 
6818
+ #: includes/views/submit_listing.php:935
6819
  msgctxt "templates"
6820
  msgid "Please agree to the Terms and Conditions."
6821
  msgstr "Ga s.v.p. akkoord met de voorwaarden"
6822
 
6823
+ #: includes/views/submit_listing.php:943
6824
  msgctxt "templates"
6825
  msgid "Terms and Conditions:"
6826
  msgstr "Voorwaarden"
6827
 
6828
+ #: includes/views/submit_listing.php:951
6829
  #, fuzzy
6830
  msgctxt "templates"
6831
  msgid "I agree to the <a>Terms and Conditions</a>"
8135
  msgid "URL:"
8136
  msgstr ""
8137
 
8138
+ #: includes/views/search.php:46
8139
  #, fuzzy
8140
  msgctxt "search"
8141
  msgid "\"%s\" is required."
8163
  msgstr ""
8164
  "Dit is alleen een voorvertoning. De registratie is nog niet gepubliceerd."
8165
 
8166
+ #: includes/views/submit_listing.php:694
8167
  msgctxt "listing submit"
8168
  msgid ""
8169
  "Something went wrong. Please check the form for errors, correct them and "
8170
  "submit again."
8171
  msgstr ""
8172
 
8173
+ #: includes/views/submit_listing.php:778
8174
  msgctxt "listing submit"
8175
  msgid ""
8176
  "Image upload is required, please provide at least one image and submit again."
languages/WPBDM-pl_PL.po CHANGED
@@ -3,7 +3,7 @@ msgstr ""
3
  "Project-Id-Version: Business Directory Plugin v5.5\n"
4
  "Report-Msgid-Bugs-To: https://wordpress.org/support/plugin/business-"
5
  "directory-plugin\n"
6
- "POT-Creation-Date: 2019-10-30 22:21:32+00:00\n"
7
  "PO-Revision-Date: 2017-01-16 17:49-0500\n"
8
  "Last-Translator: HomeSupport <admin@homesupport.pl>\n"
9
  "Language-Team: HomeSupport\n"
@@ -274,6 +274,54 @@ msgstr "Katalog"
274
  msgid "Directory Tag"
275
  msgstr "Katalog"
276
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
277
  #: includes/class-payment-gateway.php:142
278
  msgid ""
279
  "There was an unexpected error trying to cancel your subscription. Please "
@@ -1257,8 +1305,15 @@ msgctxt "admin"
1257
  msgid "Renewal email sent."
1258
  msgstr "Wysłano e-mail potwierdzający odnowienie."
1259
 
 
 
 
 
 
 
 
1260
  # @ WPBDM
1261
- #: includes/admin/class-admin.php:761
1262
  #, fuzzy
1263
  msgctxt "admin"
1264
  msgid "Listing report deleted."
@@ -1268,25 +1323,25 @@ msgstr[1] "Data zakończenia emisji oferty"
1268
  msgstr[2] "Data zakończenia emisji oferty"
1269
 
1270
  # @ WPBDM
1271
- #: includes/admin/class-admin.php:809
1272
  #, fuzzy
1273
  msgctxt "admin"
1274
  msgid "Access keys sent."
1275
  msgstr "Pola/Obrazy"
1276
 
1277
- #: includes/admin/class-admin.php:811
1278
  msgctxt "admin"
1279
  msgid "The access keys couldn't be sent."
1280
  msgstr ""
1281
 
1282
  # @ WPBDM
1283
- #: includes/admin/class-admin.php:869 includes/admin/class-admin.php:875
1284
  msgctxt "admin"
1285
  msgid "Listing Count"
1286
  msgstr "Licznik ofert"
1287
 
1288
  # @ WPBDM
1289
- #: includes/admin/class-admin.php:937
1290
  msgctxt "admin"
1291
  msgid ""
1292
  "<b>Business Directory Plugin</b> requires a page with the "
@@ -1296,7 +1351,7 @@ msgstr ""
1296
  "<tt>[businessdirectory]</tt> aby działać prawidłowo."
1297
 
1298
  # @ WPBDM
1299
- #: includes/admin/class-admin.php:939
1300
  msgctxt "admin"
1301
  msgid ""
1302
  "You can create this page by yourself or let Business Directory do this for "
@@ -1306,12 +1361,12 @@ msgstr ""
1306
  "automatycznie."
1307
 
1308
  # @ WPBDM
1309
- #: includes/admin/class-admin.php:943
1310
  msgctxt "admin"
1311
  msgid "Create required pages for me"
1312
  msgstr "Stwórz wymagane pola dla mnie"
1313
 
1314
- #: includes/admin/class-admin.php:976
1315
  msgctxt "admin"
1316
  msgid ""
1317
  "<strong>Business Directory Plugin</strong> requires <strong>PHP 5.6</strong> "
@@ -1320,7 +1375,7 @@ msgid ""
1320
  msgstr ""
1321
 
1322
  # @ WPBDM
1323
- #: includes/admin/class-admin.php:999
1324
  msgctxt "admin"
1325
  msgid ""
1326
  "We noticed you want your Business Directory users to register before posting "
@@ -1383,7 +1438,7 @@ msgstr ""
1383
  "formularza\" albo niech katalog firm zrobi to dla ciebie automatycznie."
1384
 
1385
  # @ WPBDM
1386
- #: includes/admin/form-fields.php:214 includes/views/submit_listing.php:521
1387
  msgctxt "admin"
1388
  msgid "Go to \"Manage Form Fields\""
1389
  msgstr "Przejdź do \"Zarządzanie polami formularza\""
@@ -1406,6 +1461,13 @@ msgctxt "admin"
1406
  msgid "Abandoned"
1407
  msgstr "Porzucone"
1408
 
 
 
 
 
 
 
 
1409
  #: includes/admin/class-admin-listings.php:304
1410
  msgctxt "listing attribute"
1411
  msgid "No Fee Plan"
@@ -1820,7 +1882,7 @@ msgid "Manage Options"
1820
  msgstr "Zarządzaj opcjami"
1821
 
1822
  # @ WPBDM
1823
- #: includes/admin/class-admin.php:867
1824
  msgctxt "admin category id"
1825
  msgid "ID"
1826
  msgstr "ID"
@@ -3219,52 +3281,52 @@ msgid "Field Display Order"
3219
  msgstr "Opcje wyświetlania pola"
3220
 
3221
  # @ WPBDM
3222
- #: includes/fields/class-fieldtypes-textarea.php:194
3223
  msgctxt "form-fields admin"
3224
  msgid "Allow HTML input for this field?"
3225
  msgstr "Zezwolić na wprowadzanie HTML w tym polu?"
3226
 
3227
- #: includes/fields/class-fieldtypes-textarea.php:197
3228
  msgctxt "form-fields admin"
3229
  msgid "Allow IFRAME tags in content?"
3230
  msgstr ""
3231
 
3232
  # @ WPBDM
3233
- #: includes/fields/class-fieldtypes-textarea.php:201
3234
  msgctxt "form-fields admin"
3235
  msgid "No"
3236
  msgstr "LIS"
3237
 
3238
- #: includes/fields/class-fieldtypes-textarea.php:202
3239
  msgctxt "form-fields admin"
3240
  msgid "Yes"
3241
  msgstr ""
3242
 
3243
  # @ WPBDM
3244
- #: includes/fields/class-fieldtypes-textarea.php:207
3245
  msgctxt "form-fields admin"
3246
  msgid "Allow WordPress shortcodes in this field?"
3247
  msgstr "Zezwolić na krótkie kody WordPress'a w tm polu?"
3248
 
3249
- #: includes/fields/class-fieldtypes-textarea.php:212
3250
  msgctxt "form-fields admin"
3251
  msgid "Display a WYSIWYG editor on the frontend?"
3252
  msgstr ""
3253
 
3254
- #: includes/fields/class-fieldtypes-textarea.php:215
3255
  msgctxt "form-fields admin"
3256
  msgid ""
3257
  "<b>Warning:</b> Users can use this feature to get around your image limits "
3258
  "in fee plans."
3259
  msgstr ""
3260
 
3261
- #: includes/fields/class-fieldtypes-textarea.php:216
3262
  msgctxt "form-fields admin"
3263
  msgid "Allow images in WYSIWYG editor?"
3264
  msgstr ""
3265
 
3266
  # @ WPBDM
3267
- #: includes/fields/class-fieldtypes-textarea.php:219
3268
  msgctxt "form-fields admin"
3269
  msgid ""
3270
  "<b>Advanced users only!</b> Unless you've been told to change this, don't "
@@ -3274,50 +3336,50 @@ msgstr ""
3274
  "nie zaznaczaj tej opcji, no chyba że wiesz co robisz."
3275
 
3276
  # @ WPBDM
3277
- #: includes/fields/class-fieldtypes-textarea.php:220
3278
  msgctxt "form-fields admin"
3279
  msgid "Apply \"the_content\" filter before displaying this field?"
3280
  msgstr "Zastosować filtr \"the_content\" przed wyświetlaniem tego pola?"
3281
 
3282
- #: includes/fields/class-fieldtypes-textarea.php:223
3283
  msgctxt "form-fields admin"
3284
  msgid "Use shortened version of Description field as excerpt"
3285
  msgstr ""
3286
 
3287
- #: includes/fields/class-fieldtypes-textarea.php:224
3288
  msgctxt "form-fields admin"
3289
  msgid ""
3290
  "Enable always (override the Short Description given with a shortened Long "
3291
  "Description)"
3292
  msgstr ""
3293
 
3294
- #: includes/fields/class-fieldtypes-textarea.php:225
3295
  msgctxt "form-fields admin"
3296
  msgid ""
3297
  "Enable conditionally (override ONLY when Short Description is empty with a "
3298
  "shortened Long Description)"
3299
  msgstr ""
3300
 
3301
- #: includes/fields/class-fieldtypes-textarea.php:226
3302
  msgctxt "form-fields admin"
3303
  msgid "Disable (use the Short Description all the time, empty or not)"
3304
  msgstr ""
3305
 
3306
- #: includes/fields/class-fieldtypes-textarea.php:228
3307
  msgctxt "form-fields admin"
3308
  msgid ""
3309
  "Truncates the description field to the value set here. To display all of the "
3310
  "description, set to 0."
3311
  msgstr ""
3312
 
3313
- #: includes/fields/class-fieldtypes-textarea.php:229
3314
  msgctxt "form-fields admin"
3315
  msgid ""
3316
  "Number of Characters from Short Description/Excerpt to Display in List View "
3317
  "(only)"
3318
  msgstr ""
3319
 
3320
- #: includes/fields/class-fieldtypes-textarea.php:234
3321
  msgctxt "form-fields admin"
3322
  msgid "Automatically generate excerpt from content field?"
3323
  msgstr ""
@@ -6775,21 +6837,21 @@ msgstr "Oferta Bezpłatna"
6775
 
6776
  # @ WPBDM
6777
  #. translators: [%s] is the name of the blog.
6778
- #: includes/class-listing-email-notification.php:235
6779
  msgctxt "notify email"
6780
  msgid "[%s] New listing notification"
6781
  msgstr "[%s] Powiadomienie o Nowej ofercie"
6782
 
6783
  # @ WPBDM
6784
  #. translators: [%s] is the name of the blog.
6785
- #: includes/class-listing-email-notification.php:286
6786
  msgctxt "notify email"
6787
  msgid "[%s] Listing edit notification"
6788
  msgstr "[%s] Powiadomienie o Edycji oferty"
6789
 
6790
  # @ WPBDM
6791
  #. translators: %s is the name of the blog.
6792
- #: includes/class-listing-email-notification.php:358
6793
  #, fuzzy
6794
  msgctxt "notify email"
6795
  msgid "[%s] Reported listing notification"
@@ -7198,84 +7260,84 @@ msgstr ""
7198
  "później."
7199
 
7200
  # @ WPBDM
7201
- #: includes/views/submit_listing.php:536
7202
  #, fuzzy
7203
  msgctxt "submit listing"
7204
  msgid "Please select a category."
7205
  msgstr "Wybierz abonament dla tegj kategori \"%s\"."
7206
 
7207
  # @ WPBDM
7208
- #: includes/views/submit_listing.php:549
7209
  #, fuzzy
7210
  msgctxt "submit listing"
7211
  msgid "Please select a category for your listing."
7212
  msgstr "Wybierz abonament dla tegj kategori \"%s\"."
7213
 
7214
- #: includes/views/submit_listing.php:569
7215
  msgctxt "submit listing"
7216
  msgid "Please choose a valid category for your plan."
7217
  msgstr ""
7218
 
7219
  # @ WPBDM
7220
- #: includes/views/submit_listing.php:571
7221
  #, fuzzy
7222
  msgctxt "submit listing"
7223
  msgid "Please choose a valid fee plan for your category selection."
7224
  msgstr "Wybierz abonament dla tegj kategori \"%s\"."
7225
 
7226
  # @ WPBDM
7227
- #: includes/views/submit_listing.php:812
7228
  #, fuzzy
7229
  msgctxt "submit listing"
7230
  msgid "Please enter your desired username."
7231
  msgstr "Proszę wprowadzić Imię"
7232
 
7233
  # @ WPBDM
7234
- #: includes/views/submit_listing.php:817
7235
  #, fuzzy
7236
  msgctxt "submit listing"
7237
  msgid "Please enter the e-mail for your new account."
7238
  msgstr "Proszę wprowadzić Imię"
7239
 
7240
- #: includes/views/submit_listing.php:822
7241
  msgctxt "submit listing"
7242
  msgid "Please enter the password for your new account."
7243
  msgstr ""
7244
 
7245
- #: includes/views/submit_listing.php:832
7246
  msgctxt "submit listing"
7247
  msgid "The username you chose is already in use. Please use a different one."
7248
  msgstr ""
7249
 
7250
- #: includes/views/submit_listing.php:837
7251
  msgctxt "submit listing"
7252
  msgid "The e-mail address you chose for your account is already in use."
7253
  msgstr ""
7254
 
7255
- #: includes/views/submit_listing.php:852
7256
  msgctxt "submit listing"
7257
  msgid "Create a user account on this site"
7258
  msgstr ""
7259
 
7260
- #: includes/views/submit_listing.php:859
7261
  msgctxt "submit listing"
7262
  msgid ""
7263
  "You need to create an account on the site. Please fill out the form below."
7264
  msgstr ""
7265
 
7266
- #: includes/views/submit_listing.php:865
7267
  msgctxt "submit listing"
7268
  msgid "Username:"
7269
  msgstr ""
7270
 
7271
  # @ WPBDM
7272
- #: includes/views/submit_listing.php:874
7273
  #, fuzzy
7274
  msgctxt "submit listing"
7275
  msgid "Email:"
7276
  msgstr "E-Mail: %s"
7277
 
7278
- #: includes/views/submit_listing.php:883
7279
  msgctxt "submit listing"
7280
  msgid "Password:"
7281
  msgstr ""
@@ -7518,7 +7580,7 @@ msgid "Link Text (optional):"
7518
  msgstr "Tekst alternatywny(opcjonalnie):"
7519
 
7520
  # @ WPBDM
7521
- #: includes/fields/class-form-field.php:707
7522
  msgctxt "form-fields api"
7523
  msgid ""
7524
  "This form field can't be deleted because it is required for the plugin to "
@@ -7609,22 +7671,22 @@ msgid "Invalid form field type"
7609
  msgstr "Niewłaściwy typ Pola"
7610
 
7611
  # @ WPBDM
7612
- #: includes/fields/class-form-field.php:586
7613
  msgctxt "form-fields-api"
7614
  msgid "Field label is required."
7615
  msgstr "Etykieta pola jest wymagana."
7616
 
7617
- #: includes/fields/class-form-field.php:590
7618
  msgctxt "form-fields-api"
7619
  msgid "Field label max length is 255 characters."
7620
  msgstr ""
7621
 
7622
- #: includes/fields/class-form-field.php:594
7623
  msgctxt "form-fields-api"
7624
  msgid "Field description max length is 255 characters."
7625
  msgstr ""
7626
 
7627
- #: includes/fields/class-form-field.php:605
7628
  msgctxt "form-fields-api"
7629
  msgid ""
7630
  "You can't change from %2$s field type to the one you wanted--the types are "
@@ -7632,7 +7694,7 @@ msgid ""
7632
  "delete this current field and create a NEW field of type %1$s instead."
7633
  msgstr ""
7634
 
7635
- #: includes/fields/class-form-field.php:608
7636
  msgctxt "form-fields-api"
7637
  msgid ""
7638
  "<strong>WARNING</strong>: If you delete this field, the data from it in "
@@ -7640,7 +7702,7 @@ msgid ""
7640
  msgstr ""
7641
 
7642
  # @ WPBDM
7643
- #: includes/fields/class-form-field.php:642
7644
  msgctxt "form-fields-api"
7645
  msgid ""
7646
  "There can only be one field with association \"%s\". Please select another "
@@ -7650,19 +7712,19 @@ msgstr ""
7650
  "przypisanie."
7651
 
7652
  # @ WPBDM
7653
- #: includes/fields/class-form-field.php:652
7654
  msgctxt "form-fields-api"
7655
  msgid "\"%s\" is an invalid field type for this association."
7656
  msgstr "\"%s\" jest niewłaściwym typem pola do tego przypisania"
7657
 
7658
  # @ WPBDM
7659
- #: includes/fields/class-form-field.php:697
7660
  msgctxt "form-fields-api"
7661
  msgid "Invalid field ID"
7662
  msgstr "Niewłaściwe ID Pola"
7663
 
7664
  # @ WPBDM
7665
- #: includes/fields/class-form-field.php:720
7666
  msgctxt "form-fields-api"
7667
  msgid "An error occurred while trying to delete this field."
7668
  msgstr "Wykryto błąd w trakcie próby usunięcia tego pola."
@@ -7745,7 +7807,7 @@ msgctxt "form-fields-api select"
7745
  msgid "— None —"
7746
  msgstr ""
7747
 
7748
- #: includes/fields/class-fieldtypes-textarea.php:200
7749
  msgctxt "admin form-fields"
7750
  msgid ""
7751
  "Enabling iframe support in your listings can allow users to execute "
@@ -7924,11 +7986,18 @@ msgstr ""
7924
  #: includes/views/submit_listing.php:511
7925
  msgctxt "templates"
7926
  msgid ""
 
 
 
 
 
 
 
7927
  "Listing submission is not available at the moment. Contact the administrator "
7928
  "for details."
7929
  msgstr ""
7930
 
7931
- #: includes/views/submit_listing.php:514
7932
  msgctxt "templates"
7933
  msgid ""
7934
  "<b>View not available</b>, there is no \"Category\" association field. %s "
@@ -7937,19 +8006,19 @@ msgid ""
7937
  msgstr ""
7938
 
7939
  # @ WPBDM
7940
- #: includes/views/submit_listing.php:921
7941
  msgctxt "templates"
7942
  msgid "Please agree to the Terms and Conditions."
7943
  msgstr "Musisz zaakceptować nasze warunki i regulamin korzystania z serwisu."
7944
 
7945
  # @ WPBDM
7946
- #: includes/views/submit_listing.php:929
7947
  msgctxt "templates"
7948
  msgid "Terms and Conditions:"
7949
  msgstr "Warunki i regulamin:"
7950
 
7951
  # @ WPBDM
7952
- #: includes/views/submit_listing.php:937
7953
  #, fuzzy
7954
  msgctxt "templates"
7955
  msgid "I agree to the <a>Terms and Conditions</a>"
@@ -9527,7 +9596,7 @@ msgid "URL:"
9527
  msgstr "URL:"
9528
 
9529
  # @ WPBDM
9530
- #: includes/views/search.php:45
9531
  #, fuzzy
9532
  msgctxt "search"
9533
  msgid "\"%s\" is required."
@@ -9558,14 +9627,14 @@ msgctxt "preview"
9558
  msgid "This is just a preview. The listing has not been published yet."
9559
  msgstr "To jest tylko podgląd. Oferta nie została jeszcze opublikowana."
9560
 
9561
- #: includes/views/submit_listing.php:680
9562
  msgctxt "listing submit"
9563
  msgid ""
9564
  "Something went wrong. Please check the form for errors, correct them and "
9565
  "submit again."
9566
  msgstr ""
9567
 
9568
- #: includes/views/submit_listing.php:764
9569
  msgctxt "listing submit"
9570
  msgid ""
9571
  "Image upload is required, please provide at least one image and submit again."
3
  "Project-Id-Version: Business Directory Plugin v5.5\n"
4
  "Report-Msgid-Bugs-To: https://wordpress.org/support/plugin/business-"
5
  "directory-plugin\n"
6
+ "POT-Creation-Date: 2019-11-19 21:50:15+00:00\n"
7
  "PO-Revision-Date: 2017-01-16 17:49-0500\n"
8
  "Last-Translator: HomeSupport <admin@homesupport.pl>\n"
9
  "Language-Team: HomeSupport\n"
274
  msgid "Directory Tag"
275
  msgstr "Katalog"
276
 
277
+ # @ WPBDM
278
+ #. translators: %s: listing count
279
+ #: includes/class-cpt-integration.php:235
280
+ #, fuzzy
281
+ msgid "%s listing updated."
282
+ msgid_plural "%s listings updated."
283
+ msgstr[0] "Edytowano ofertę."
284
+ msgstr[1] "Edytowano ofertę."
285
+ msgstr[2] "Edytowano ofertę."
286
+
287
+ #. translators: %s: listing count
288
+ #: includes/class-cpt-integration.php:237
289
+ msgid "%s listing not updated, somebody is editing it."
290
+ msgid_plural "%s listings not updated, somebody is editing them."
291
+ msgstr[0] ""
292
+ msgstr[1] ""
293
+ msgstr[2] ""
294
+
295
+ # @ WPBDM
296
+ #. translators: %s: listing count
297
+ #: includes/class-cpt-integration.php:239
298
+ #, fuzzy
299
+ msgid "%s listing permanently deleted."
300
+ msgid_plural "%s listings permanently deleted."
301
+ msgstr[0] "Data zakończenia emisji oferty"
302
+ msgstr[1] "Data zakończenia emisji oferty"
303
+ msgstr[2] "Data zakończenia emisji oferty"
304
+
305
+ # @ WPBDM
306
+ #. translators: %s: listing count
307
+ #: includes/class-cpt-integration.php:241
308
+ #, fuzzy
309
+ msgid "%s listing moved to the Trash."
310
+ msgid_plural "%s listings moved to the Trash."
311
+ msgstr[0] "Nie znaleziono "
312
+ msgstr[1] "Nie znaleziono "
313
+ msgstr[2] "Nie znaleziono "
314
+
315
+ # @ WPBDM
316
+ #. translators: %s: listing count
317
+ #: includes/class-cpt-integration.php:243
318
+ #, fuzzy
319
+ msgid "%s listing restored from the Trash."
320
+ msgid_plural "%s listings restored from the Trash."
321
+ msgstr[0] "Twoja oferta została usunięta."
322
+ msgstr[1] "Twoja oferta została usunięta."
323
+ msgstr[2] "Twoja oferta została usunięta."
324
+
325
  #: includes/class-payment-gateway.php:142
326
  msgid ""
327
  "There was an unexpected error trying to cancel your subscription. Please "
1305
  msgid "Renewal email sent."
1306
  msgstr "Wysłano e-mail potwierdzający odnowienie."
1307
 
1308
+ #: includes/admin/class-admin.php:758
1309
+ msgctxt "admin"
1310
+ msgid ""
1311
+ "Could not send renewal email, notice template at listing expiration not "
1312
+ "found."
1313
+ msgstr ""
1314
+
1315
  # @ WPBDM
1316
+ #: includes/admin/class-admin.php:765
1317
  #, fuzzy
1318
  msgctxt "admin"
1319
  msgid "Listing report deleted."
1323
  msgstr[2] "Data zakończenia emisji oferty"
1324
 
1325
  # @ WPBDM
1326
+ #: includes/admin/class-admin.php:813
1327
  #, fuzzy
1328
  msgctxt "admin"
1329
  msgid "Access keys sent."
1330
  msgstr "Pola/Obrazy"
1331
 
1332
+ #: includes/admin/class-admin.php:815
1333
  msgctxt "admin"
1334
  msgid "The access keys couldn't be sent."
1335
  msgstr ""
1336
 
1337
  # @ WPBDM
1338
+ #: includes/admin/class-admin.php:873 includes/admin/class-admin.php:879
1339
  msgctxt "admin"
1340
  msgid "Listing Count"
1341
  msgstr "Licznik ofert"
1342
 
1343
  # @ WPBDM
1344
+ #: includes/admin/class-admin.php:941
1345
  msgctxt "admin"
1346
  msgid ""
1347
  "<b>Business Directory Plugin</b> requires a page with the "
1351
  "<tt>[businessdirectory]</tt> aby działać prawidłowo."
1352
 
1353
  # @ WPBDM
1354
+ #: includes/admin/class-admin.php:943
1355
  msgctxt "admin"
1356
  msgid ""
1357
  "You can create this page by yourself or let Business Directory do this for "
1361
  "automatycznie."
1362
 
1363
  # @ WPBDM
1364
+ #: includes/admin/class-admin.php:947
1365
  msgctxt "admin"
1366
  msgid "Create required pages for me"
1367
  msgstr "Stwórz wymagane pola dla mnie"
1368
 
1369
+ #: includes/admin/class-admin.php:980
1370
  msgctxt "admin"
1371
  msgid ""
1372
  "<strong>Business Directory Plugin</strong> requires <strong>PHP 5.6</strong> "
1375
  msgstr ""
1376
 
1377
  # @ WPBDM
1378
+ #: includes/admin/class-admin.php:1003
1379
  msgctxt "admin"
1380
  msgid ""
1381
  "We noticed you want your Business Directory users to register before posting "
1438
  "formularza\" albo niech katalog firm zrobi to dla ciebie automatycznie."
1439
 
1440
  # @ WPBDM
1441
+ #: includes/admin/form-fields.php:214 includes/views/submit_listing.php:535
1442
  msgctxt "admin"
1443
  msgid "Go to \"Manage Form Fields\""
1444
  msgstr "Przejdź do \"Zarządzanie polami formularza\""
1461
  msgid "Abandoned"
1462
  msgstr "Porzucone"
1463
 
1464
+ # @ WPBDM
1465
+ #: includes/views/submit_listing.php:518
1466
+ #, fuzzy
1467
+ msgctxt "admin"
1468
+ msgid "Go to \"Manage Fees\""
1469
+ msgstr "Przejdź do \"Zarządzanie polami formularza\""
1470
+
1471
  #: includes/admin/class-admin-listings.php:304
1472
  msgctxt "listing attribute"
1473
  msgid "No Fee Plan"
1882
  msgstr "Zarządzaj opcjami"
1883
 
1884
  # @ WPBDM
1885
+ #: includes/admin/class-admin.php:871
1886
  msgctxt "admin category id"
1887
  msgid "ID"
1888
  msgstr "ID"
3281
  msgstr "Opcje wyświetlania pola"
3282
 
3283
  # @ WPBDM
3284
+ #: includes/fields/class-fieldtypes-textarea.php:197
3285
  msgctxt "form-fields admin"
3286
  msgid "Allow HTML input for this field?"
3287
  msgstr "Zezwolić na wprowadzanie HTML w tym polu?"
3288
 
3289
+ #: includes/fields/class-fieldtypes-textarea.php:200
3290
  msgctxt "form-fields admin"
3291
  msgid "Allow IFRAME tags in content?"
3292
  msgstr ""
3293
 
3294
  # @ WPBDM
3295
+ #: includes/fields/class-fieldtypes-textarea.php:204
3296
  msgctxt "form-fields admin"
3297
  msgid "No"
3298
  msgstr "LIS"
3299
 
3300
+ #: includes/fields/class-fieldtypes-textarea.php:205
3301
  msgctxt "form-fields admin"
3302
  msgid "Yes"
3303
  msgstr ""
3304
 
3305
  # @ WPBDM
3306
+ #: includes/fields/class-fieldtypes-textarea.php:210
3307
  msgctxt "form-fields admin"
3308
  msgid "Allow WordPress shortcodes in this field?"
3309
  msgstr "Zezwolić na krótkie kody WordPress'a w tm polu?"
3310
 
3311
+ #: includes/fields/class-fieldtypes-textarea.php:215
3312
  msgctxt "form-fields admin"
3313
  msgid "Display a WYSIWYG editor on the frontend?"
3314
  msgstr ""
3315
 
3316
+ #: includes/fields/class-fieldtypes-textarea.php:218
3317
  msgctxt "form-fields admin"
3318
  msgid ""
3319
  "<b>Warning:</b> Users can use this feature to get around your image limits "
3320
  "in fee plans."
3321
  msgstr ""
3322
 
3323
+ #: includes/fields/class-fieldtypes-textarea.php:219
3324
  msgctxt "form-fields admin"
3325
  msgid "Allow images in WYSIWYG editor?"
3326
  msgstr ""
3327
 
3328
  # @ WPBDM
3329
+ #: includes/fields/class-fieldtypes-textarea.php:222
3330
  msgctxt "form-fields admin"
3331
  msgid ""
3332
  "<b>Advanced users only!</b> Unless you've been told to change this, don't "
3336
  "nie zaznaczaj tej opcji, no chyba że wiesz co robisz."
3337
 
3338
  # @ WPBDM
3339
+ #: includes/fields/class-fieldtypes-textarea.php:223
3340
  msgctxt "form-fields admin"
3341
  msgid "Apply \"the_content\" filter before displaying this field?"
3342
  msgstr "Zastosować filtr \"the_content\" przed wyświetlaniem tego pola?"
3343
 
3344
+ #: includes/fields/class-fieldtypes-textarea.php:226
3345
  msgctxt "form-fields admin"
3346
  msgid "Use shortened version of Description field as excerpt"
3347
  msgstr ""
3348
 
3349
+ #: includes/fields/class-fieldtypes-textarea.php:227
3350
  msgctxt "form-fields admin"
3351
  msgid ""
3352
  "Enable always (override the Short Description given with a shortened Long "
3353
  "Description)"
3354
  msgstr ""
3355
 
3356
+ #: includes/fields/class-fieldtypes-textarea.php:228
3357
  msgctxt "form-fields admin"
3358
  msgid ""
3359
  "Enable conditionally (override ONLY when Short Description is empty with a "
3360
  "shortened Long Description)"
3361
  msgstr ""
3362
 
3363
+ #: includes/fields/class-fieldtypes-textarea.php:229
3364
  msgctxt "form-fields admin"
3365
  msgid "Disable (use the Short Description all the time, empty or not)"
3366
  msgstr ""
3367
 
3368
+ #: includes/fields/class-fieldtypes-textarea.php:231
3369
  msgctxt "form-fields admin"
3370
  msgid ""
3371
  "Truncates the description field to the value set here. To display all of the "
3372
  "description, set to 0."
3373
  msgstr ""
3374
 
3375
+ #: includes/fields/class-fieldtypes-textarea.php:232
3376
  msgctxt "form-fields admin"
3377
  msgid ""
3378
  "Number of Characters from Short Description/Excerpt to Display in List View "
3379
  "(only)"
3380
  msgstr ""
3381
 
3382
+ #: includes/fields/class-fieldtypes-textarea.php:237
3383
  msgctxt "form-fields admin"
3384
  msgid "Automatically generate excerpt from content field?"
3385
  msgstr ""
6837
 
6838
  # @ WPBDM
6839
  #. translators: [%s] is the name of the blog.
6840
+ #: includes/class-listing-email-notification.php:239
6841
  msgctxt "notify email"
6842
  msgid "[%s] New listing notification"
6843
  msgstr "[%s] Powiadomienie o Nowej ofercie"
6844
 
6845
  # @ WPBDM
6846
  #. translators: [%s] is the name of the blog.
6847
+ #: includes/class-listing-email-notification.php:290
6848
  msgctxt "notify email"
6849
  msgid "[%s] Listing edit notification"
6850
  msgstr "[%s] Powiadomienie o Edycji oferty"
6851
 
6852
  # @ WPBDM
6853
  #. translators: %s is the name of the blog.
6854
+ #: includes/class-listing-email-notification.php:362
6855
  #, fuzzy
6856
  msgctxt "notify email"
6857
  msgid "[%s] Reported listing notification"
7260
  "później."
7261
 
7262
  # @ WPBDM
7263
+ #: includes/views/submit_listing.php:550
7264
  #, fuzzy
7265
  msgctxt "submit listing"
7266
  msgid "Please select a category."
7267
  msgstr "Wybierz abonament dla tegj kategori \"%s\"."
7268
 
7269
  # @ WPBDM
7270
+ #: includes/views/submit_listing.php:563
7271
  #, fuzzy
7272
  msgctxt "submit listing"
7273
  msgid "Please select a category for your listing."
7274
  msgstr "Wybierz abonament dla tegj kategori \"%s\"."
7275
 
7276
+ #: includes/views/submit_listing.php:583
7277
  msgctxt "submit listing"
7278
  msgid "Please choose a valid category for your plan."
7279
  msgstr ""
7280
 
7281
  # @ WPBDM
7282
+ #: includes/views/submit_listing.php:585
7283
  #, fuzzy
7284
  msgctxt "submit listing"
7285
  msgid "Please choose a valid fee plan for your category selection."
7286
  msgstr "Wybierz abonament dla tegj kategori \"%s\"."
7287
 
7288
  # @ WPBDM
7289
+ #: includes/views/submit_listing.php:826
7290
  #, fuzzy
7291
  msgctxt "submit listing"
7292
  msgid "Please enter your desired username."
7293
  msgstr "Proszę wprowadzić Imię"
7294
 
7295
  # @ WPBDM
7296
+ #: includes/views/submit_listing.php:831
7297
  #, fuzzy
7298
  msgctxt "submit listing"
7299
  msgid "Please enter the e-mail for your new account."
7300
  msgstr "Proszę wprowadzić Imię"
7301
 
7302
+ #: includes/views/submit_listing.php:836
7303
  msgctxt "submit listing"
7304
  msgid "Please enter the password for your new account."
7305
  msgstr ""
7306
 
7307
+ #: includes/views/submit_listing.php:846
7308
  msgctxt "submit listing"
7309
  msgid "The username you chose is already in use. Please use a different one."
7310
  msgstr ""
7311
 
7312
+ #: includes/views/submit_listing.php:851
7313
  msgctxt "submit listing"
7314
  msgid "The e-mail address you chose for your account is already in use."
7315
  msgstr ""
7316
 
7317
+ #: includes/views/submit_listing.php:866
7318
  msgctxt "submit listing"
7319
  msgid "Create a user account on this site"
7320
  msgstr ""
7321
 
7322
+ #: includes/views/submit_listing.php:873
7323
  msgctxt "submit listing"
7324
  msgid ""
7325
  "You need to create an account on the site. Please fill out the form below."
7326
  msgstr ""
7327
 
7328
+ #: includes/views/submit_listing.php:879
7329
  msgctxt "submit listing"
7330
  msgid "Username:"
7331
  msgstr ""
7332
 
7333
  # @ WPBDM
7334
+ #: includes/views/submit_listing.php:888
7335
  #, fuzzy
7336
  msgctxt "submit listing"
7337
  msgid "Email:"
7338
  msgstr "E-Mail: %s"
7339
 
7340
+ #: includes/views/submit_listing.php:897
7341
  msgctxt "submit listing"
7342
  msgid "Password:"
7343
  msgstr ""
7580
  msgstr "Tekst alternatywny(opcjonalnie):"
7581
 
7582
  # @ WPBDM
7583
+ #: includes/fields/class-form-field.php:710
7584
  msgctxt "form-fields api"
7585
  msgid ""
7586
  "This form field can't be deleted because it is required for the plugin to "
7671
  msgstr "Niewłaściwy typ Pola"
7672
 
7673
  # @ WPBDM
7674
+ #: includes/fields/class-form-field.php:589
7675
  msgctxt "form-fields-api"
7676
  msgid "Field label is required."
7677
  msgstr "Etykieta pola jest wymagana."
7678
 
7679
+ #: includes/fields/class-form-field.php:593
7680
  msgctxt "form-fields-api"
7681
  msgid "Field label max length is 255 characters."
7682
  msgstr ""
7683
 
7684
+ #: includes/fields/class-form-field.php:597
7685
  msgctxt "form-fields-api"
7686
  msgid "Field description max length is 255 characters."
7687
  msgstr ""
7688
 
7689
+ #: includes/fields/class-form-field.php:608
7690
  msgctxt "form-fields-api"
7691
  msgid ""
7692
  "You can't change from %2$s field type to the one you wanted--the types are "
7694
  "delete this current field and create a NEW field of type %1$s instead."
7695
  msgstr ""
7696
 
7697
+ #: includes/fields/class-form-field.php:611
7698
  msgctxt "form-fields-api"
7699
  msgid ""
7700
  "<strong>WARNING</strong>: If you delete this field, the data from it in "
7702
  msgstr ""
7703
 
7704
  # @ WPBDM
7705
+ #: includes/fields/class-form-field.php:645
7706
  msgctxt "form-fields-api"
7707
  msgid ""
7708
  "There can only be one field with association \"%s\". Please select another "
7712
  "przypisanie."
7713
 
7714
  # @ WPBDM
7715
+ #: includes/fields/class-form-field.php:655
7716
  msgctxt "form-fields-api"
7717
  msgid "\"%s\" is an invalid field type for this association."
7718
  msgstr "\"%s\" jest niewłaściwym typem pola do tego przypisania"
7719
 
7720
  # @ WPBDM
7721
+ #: includes/fields/class-form-field.php:700
7722
  msgctxt "form-fields-api"
7723
  msgid "Invalid field ID"
7724
  msgstr "Niewłaściwe ID Pola"
7725
 
7726
  # @ WPBDM
7727
+ #: includes/fields/class-form-field.php:723
7728
  msgctxt "form-fields-api"
7729
  msgid "An error occurred while trying to delete this field."
7730
  msgstr "Wykryto błąd w trakcie próby usunięcia tego pola."
7807
  msgid "— None —"
7808
  msgstr ""
7809
 
7810
+ #: includes/fields/class-fieldtypes-textarea.php:203
7811
  msgctxt "admin form-fields"
7812
  msgid ""
7813
  "Enabling iframe support in your listings can allow users to execute "
7986
  #: includes/views/submit_listing.php:511
7987
  msgctxt "templates"
7988
  msgid ""
7989
+ "<b>There are no Fee Plans available</b>, without a fee plan site users can't "
7990
+ "submit a listing. %s to create a fee plan"
7991
+ msgstr ""
7992
+
7993
+ #: includes/views/submit_listing.php:525
7994
+ msgctxt "templates"
7995
+ msgid ""
7996
  "Listing submission is not available at the moment. Contact the administrator "
7997
  "for details."
7998
  msgstr ""
7999
 
8000
+ #: includes/views/submit_listing.php:528
8001
  msgctxt "templates"
8002
  msgid ""
8003
  "<b>View not available</b>, there is no \"Category\" association field. %s "
8006
  msgstr ""
8007
 
8008
  # @ WPBDM
8009
+ #: includes/views/submit_listing.php:935
8010
  msgctxt "templates"
8011
  msgid "Please agree to the Terms and Conditions."
8012
  msgstr "Musisz zaakceptować nasze warunki i regulamin korzystania z serwisu."
8013
 
8014
  # @ WPBDM
8015
+ #: includes/views/submit_listing.php:943
8016
  msgctxt "templates"
8017
  msgid "Terms and Conditions:"
8018
  msgstr "Warunki i regulamin:"
8019
 
8020
  # @ WPBDM
8021
+ #: includes/views/submit_listing.php:951
8022
  #, fuzzy
8023
  msgctxt "templates"
8024
  msgid "I agree to the <a>Terms and Conditions</a>"
9596
  msgstr "URL:"
9597
 
9598
  # @ WPBDM
9599
+ #: includes/views/search.php:46
9600
  #, fuzzy
9601
  msgctxt "search"
9602
  msgid "\"%s\" is required."
9627
  msgid "This is just a preview. The listing has not been published yet."
9628
  msgstr "To jest tylko podgląd. Oferta nie została jeszcze opublikowana."
9629
 
9630
+ #: includes/views/submit_listing.php:694
9631
  msgctxt "listing submit"
9632
  msgid ""
9633
  "Something went wrong. Please check the form for errors, correct them and "
9634
  "submit again."
9635
  msgstr ""
9636
 
9637
+ #: includes/views/submit_listing.php:778
9638
  msgctxt "listing submit"
9639
  msgid ""
9640
  "Image upload is required, please provide at least one image and submit again."
languages/WPBDM-ru_RU.po CHANGED
@@ -3,7 +3,7 @@ msgstr ""
3
  "Project-Id-Version: Business Directory Plugin v5.5\n"
4
  "Report-Msgid-Bugs-To: https://wordpress.org/support/plugin/business-"
5
  "directory-plugin\n"
6
- "POT-Creation-Date: 2019-10-30 22:21:32+00:00\n"
7
  "PO-Revision-Date: 2017-01-16 17:49-0500\n"
8
  "Last-Translator: Mick Levin <mikhaillevin@hotmail.com>\n"
9
  "Language-Team: BD Team <support@businessdirectoryplugin.com>\n"
@@ -239,6 +239,50 @@ msgstr "Темы справочника"
239
  msgid "Directory Tag"
240
  msgstr "Все рубрики"
241
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
242
  #: includes/class-payment-gateway.php:142
243
  msgid ""
244
  "There was an unexpected error trying to cancel your subscription. Please "
@@ -1101,7 +1145,14 @@ msgctxt "admin"
1101
  msgid "Renewal email sent."
1102
  msgstr "Оповещение о продлении было отправлено по электронной почте."
1103
 
1104
- #: includes/admin/class-admin.php:761
 
 
 
 
 
 
 
1105
  #, fuzzy
1106
  msgctxt "admin"
1107
  msgid "Listing report deleted."
@@ -1110,23 +1161,23 @@ msgstr[0] "Дата окончания срока действия"
1110
  msgstr[1] "Дата окончания срока действия"
1111
  msgstr[2] "Дата окончания срока действия"
1112
 
1113
- #: includes/admin/class-admin.php:809
1114
  #, fuzzy
1115
  msgctxt "admin"
1116
  msgid "Access keys sent."
1117
  msgstr "Поля и Изображения записи"
1118
 
1119
- #: includes/admin/class-admin.php:811
1120
  msgctxt "admin"
1121
  msgid "The access keys couldn't be sent."
1122
  msgstr ""
1123
 
1124
- #: includes/admin/class-admin.php:869 includes/admin/class-admin.php:875
1125
  msgctxt "admin"
1126
  msgid "Listing Count"
1127
  msgstr "Количество записей"
1128
 
1129
- #: includes/admin/class-admin.php:937
1130
  msgctxt "admin"
1131
  msgid ""
1132
  "<b>Business Directory Plugin</b> requires a page with the "
@@ -1135,7 +1186,7 @@ msgstr ""
1135
  "Плагин <b>Справочник Услуг</b> для нормальной работы требует наличия "
1136
  "страницы, в которой есть шорткод <tt>[businessdirectory]</tt>."
1137
 
1138
- #: includes/admin/class-admin.php:939
1139
  msgctxt "admin"
1140
  msgid ""
1141
  "You can create this page by yourself or let Business Directory do this for "
@@ -1144,12 +1195,12 @@ msgstr ""
1144
  "Вы можете создать такую страницу сами, или позвольте плагину создать её для "
1145
  "Вас автоматически."
1146
 
1147
- #: includes/admin/class-admin.php:943
1148
  msgctxt "admin"
1149
  msgid "Create required pages for me"
1150
  msgstr "Создать необходимые страницы автоматически"
1151
 
1152
- #: includes/admin/class-admin.php:976
1153
  msgctxt "admin"
1154
  msgid ""
1155
  "<strong>Business Directory Plugin</strong> requires <strong>PHP 5.6</strong> "
@@ -1157,7 +1208,7 @@ msgid ""
1157
  "your provider to upgrade in order to prevent any issues with the plugin."
1158
  msgstr ""
1159
 
1160
- #: includes/admin/class-admin.php:999
1161
  msgctxt "admin"
1162
  msgid ""
1163
  "We noticed you want your Business Directory users to register before posting "
@@ -1215,7 +1266,7 @@ msgstr ""
1215
  "Вы можете сами создать эти поля в разделе \"Управление / Форма\", или "
1216
  "позвольте плагину сделать это автоматически."
1217
 
1218
- #: includes/admin/form-fields.php:214 includes/views/submit_listing.php:521
1219
  msgctxt "admin"
1220
  msgid "Go to \"Manage Form Fields\""
1221
  msgstr "Перейти в раздел \"Управление / Форма\""
@@ -1235,6 +1286,12 @@ msgctxt "admin"
1235
  msgid "Abandoned"
1236
  msgstr "Заброшено"
1237
 
 
 
 
 
 
 
1238
  #: includes/admin/class-admin-listings.php:304
1239
  msgctxt "listing attribute"
1240
  msgid "No Fee Plan"
@@ -1596,7 +1653,7 @@ msgctxt "admin menu"
1596
  msgid "Manage Options"
1597
  msgstr "Настройки"
1598
 
1599
- #: includes/admin/class-admin.php:867
1600
  msgctxt "admin category id"
1601
  msgid "ID"
1602
  msgstr "№"
@@ -2840,37 +2897,37 @@ msgctxt "form-fields admin"
2840
  msgid "Field Display Order"
2841
  msgstr "Параметры отображения поля"
2842
 
2843
- #: includes/fields/class-fieldtypes-textarea.php:194
2844
  msgctxt "form-fields admin"
2845
  msgid "Allow HTML input for this field?"
2846
  msgstr "Разрегить HTML коды в этом поле?"
2847
 
2848
- #: includes/fields/class-fieldtypes-textarea.php:197
2849
  msgctxt "form-fields admin"
2850
  msgid "Allow IFRAME tags in content?"
2851
  msgstr ""
2852
 
2853
- #: includes/fields/class-fieldtypes-textarea.php:201
2854
  msgctxt "form-fields admin"
2855
  msgid "No"
2856
  msgstr "Ноя"
2857
 
2858
- #: includes/fields/class-fieldtypes-textarea.php:202
2859
  msgctxt "form-fields admin"
2860
  msgid "Yes"
2861
  msgstr ""
2862
 
2863
- #: includes/fields/class-fieldtypes-textarea.php:207
2864
  msgctxt "form-fields admin"
2865
  msgid "Allow WordPress shortcodes in this field?"
2866
  msgstr "Разрешить шорт-коды WordPress в этом поле?"
2867
 
2868
- #: includes/fields/class-fieldtypes-textarea.php:212
2869
  msgctxt "form-fields admin"
2870
  msgid "Display a WYSIWYG editor on the frontend?"
2871
  msgstr "Использовать визуальный редактор на сайте?"
2872
 
2873
- #: includes/fields/class-fieldtypes-textarea.php:215
2874
  msgctxt "form-fields admin"
2875
  msgid ""
2876
  "<b>Warning:</b> Users can use this feature to get around your image limits "
@@ -2879,12 +2936,12 @@ msgstr ""
2879
  "<b>ВНИМАНИЕ:</b> Авторы могут использовать этот режим для обхода ограничения "
2880
  "на количество изображений в бесплатном режиме."
2881
 
2882
- #: includes/fields/class-fieldtypes-textarea.php:216
2883
  msgctxt "form-fields admin"
2884
  msgid "Allow images in WYSIWYG editor?"
2885
  msgstr "Разрешить изображения в визуальном редакторе?"
2886
 
2887
- #: includes/fields/class-fieldtypes-textarea.php:219
2888
  msgctxt "form-fields admin"
2889
  msgid ""
2890
  "<b>Advanced users only!</b> Unless you've been told to change this, don't "
@@ -2893,50 +2950,50 @@ msgstr ""
2893
  "<b>Только для профессионалов!</b> Если только Вам не было об этом сказано, "
2894
  "не включайте это, если не знаете, что это делает."
2895
 
2896
- #: includes/fields/class-fieldtypes-textarea.php:220
2897
  msgctxt "form-fields admin"
2898
  msgid "Apply \"the_content\" filter before displaying this field?"
2899
  msgstr "Применить фильтр \"the_content\" перед отображением поля?"
2900
 
2901
- #: includes/fields/class-fieldtypes-textarea.php:223
2902
  msgctxt "form-fields admin"
2903
  msgid "Use shortened version of Description field as excerpt"
2904
  msgstr ""
2905
 
2906
- #: includes/fields/class-fieldtypes-textarea.php:224
2907
  msgctxt "form-fields admin"
2908
  msgid ""
2909
  "Enable always (override the Short Description given with a shortened Long "
2910
  "Description)"
2911
  msgstr ""
2912
 
2913
- #: includes/fields/class-fieldtypes-textarea.php:225
2914
  msgctxt "form-fields admin"
2915
  msgid ""
2916
  "Enable conditionally (override ONLY when Short Description is empty with a "
2917
  "shortened Long Description)"
2918
  msgstr ""
2919
 
2920
- #: includes/fields/class-fieldtypes-textarea.php:226
2921
  msgctxt "form-fields admin"
2922
  msgid "Disable (use the Short Description all the time, empty or not)"
2923
  msgstr ""
2924
 
2925
- #: includes/fields/class-fieldtypes-textarea.php:228
2926
  msgctxt "form-fields admin"
2927
  msgid ""
2928
  "Truncates the description field to the value set here. To display all of the "
2929
  "description, set to 0."
2930
  msgstr ""
2931
 
2932
- #: includes/fields/class-fieldtypes-textarea.php:229
2933
  msgctxt "form-fields admin"
2934
  msgid ""
2935
  "Number of Characters from Short Description/Excerpt to Display in List View "
2936
  "(only)"
2937
  msgstr ""
2938
 
2939
- #: includes/fields/class-fieldtypes-textarea.php:234
2940
  msgctxt "form-fields admin"
2941
  msgid "Automatically generate excerpt from content field?"
2942
  msgstr ""
@@ -6041,19 +6098,19 @@ msgid "Free Listing"
6041
  msgstr "Бесплатные записи"
6042
 
6043
  #. translators: [%s] is the name of the blog.
6044
- #: includes/class-listing-email-notification.php:235
6045
  msgctxt "notify email"
6046
  msgid "[%s] New listing notification"
6047
  msgstr "[%s] Оповещение о новой записи"
6048
 
6049
  #. translators: [%s] is the name of the blog.
6050
- #: includes/class-listing-email-notification.php:286
6051
  msgctxt "notify email"
6052
  msgid "[%s] Listing edit notification"
6053
  msgstr "[%s] Оповещение об изменении записи"
6054
 
6055
  #. translators: %s is the name of the blog.
6056
- #: includes/class-listing-email-notification.php:358
6057
  #, fuzzy
6058
  msgctxt "notify email"
6059
  msgid "[%s] Reported listing notification"
@@ -6418,79 +6475,79 @@ msgstr ""
6418
  "В настоящее время вы не можем провести Вашу оплату. Попробуйте позже "
6419
  "пожалуйста."
6420
 
6421
- #: includes/views/submit_listing.php:536
6422
  #, fuzzy
6423
  msgctxt "submit listing"
6424
  msgid "Please select a category."
6425
  msgstr "Пожалуйста выберите тариф для рубрики \"%s\"."
6426
 
6427
- #: includes/views/submit_listing.php:549
6428
  #, fuzzy
6429
  msgctxt "submit listing"
6430
  msgid "Please select a category for your listing."
6431
  msgstr "Пожалуйста выберите тариф для рубрики \"%s\"."
6432
 
6433
- #: includes/views/submit_listing.php:569
6434
  msgctxt "submit listing"
6435
  msgid "Please choose a valid category for your plan."
6436
  msgstr ""
6437
 
6438
- #: includes/views/submit_listing.php:571
6439
  #, fuzzy
6440
  msgctxt "submit listing"
6441
  msgid "Please choose a valid fee plan for your category selection."
6442
  msgstr "Пожалуйста выберите тариф для рубрики \"%s\"."
6443
 
6444
- #: includes/views/submit_listing.php:812
6445
  #, fuzzy
6446
  msgctxt "submit listing"
6447
  msgid "Please enter your desired username."
6448
  msgstr "Пожалуйста введите Ваше имя."
6449
 
6450
- #: includes/views/submit_listing.php:817
6451
  #, fuzzy
6452
  msgctxt "submit listing"
6453
  msgid "Please enter the e-mail for your new account."
6454
  msgstr "Пожалуйста введите Ваше имя."
6455
 
6456
- #: includes/views/submit_listing.php:822
6457
  msgctxt "submit listing"
6458
  msgid "Please enter the password for your new account."
6459
  msgstr ""
6460
 
6461
- #: includes/views/submit_listing.php:832
6462
  msgctxt "submit listing"
6463
  msgid "The username you chose is already in use. Please use a different one."
6464
  msgstr ""
6465
 
6466
- #: includes/views/submit_listing.php:837
6467
  msgctxt "submit listing"
6468
  msgid "The e-mail address you chose for your account is already in use."
6469
  msgstr ""
6470
 
6471
- #: includes/views/submit_listing.php:852
6472
  msgctxt "submit listing"
6473
  msgid "Create a user account on this site"
6474
  msgstr ""
6475
 
6476
- #: includes/views/submit_listing.php:859
6477
  msgctxt "submit listing"
6478
  msgid ""
6479
  "You need to create an account on the site. Please fill out the form below."
6480
  msgstr ""
6481
 
6482
- #: includes/views/submit_listing.php:865
6483
  msgctxt "submit listing"
6484
  msgid "Username:"
6485
  msgstr ""
6486
 
6487
- #: includes/views/submit_listing.php:874
6488
  #, fuzzy
6489
  msgctxt "submit listing"
6490
  msgid "Email:"
6491
  msgstr "Адрес: %s"
6492
 
6493
- #: includes/views/submit_listing.php:883
6494
  msgctxt "submit listing"
6495
  msgid "Password:"
6496
  msgstr ""
@@ -6699,7 +6756,7 @@ msgctxt "form-fields api"
6699
  msgid "Link Text (optional):"
6700
  msgstr "Текст ссылки (не обязательно)"
6701
 
6702
- #: includes/fields/class-form-field.php:707
6703
  msgctxt "form-fields api"
6704
  msgid ""
6705
  "This form field can't be deleted because it is required for the plugin to "
@@ -6775,22 +6832,22 @@ msgctxt "form-fields-api"
6775
  msgid "Invalid form field type"
6776
  msgstr "Неверный тип поля формы"
6777
 
6778
- #: includes/fields/class-form-field.php:586
6779
  msgctxt "form-fields-api"
6780
  msgid "Field label is required."
6781
  msgstr "Метка поля обязательна."
6782
 
6783
- #: includes/fields/class-form-field.php:590
6784
  msgctxt "form-fields-api"
6785
  msgid "Field label max length is 255 characters."
6786
  msgstr ""
6787
 
6788
- #: includes/fields/class-form-field.php:594
6789
  msgctxt "form-fields-api"
6790
  msgid "Field description max length is 255 characters."
6791
  msgstr ""
6792
 
6793
- #: includes/fields/class-form-field.php:605
6794
  msgctxt "form-fields-api"
6795
  msgid ""
6796
  "You can't change from %2$s field type to the one you wanted--the types are "
@@ -6798,14 +6855,14 @@ msgid ""
6798
  "delete this current field and create a NEW field of type %1$s instead."
6799
  msgstr ""
6800
 
6801
- #: includes/fields/class-form-field.php:608
6802
  msgctxt "form-fields-api"
6803
  msgid ""
6804
  "<strong>WARNING</strong>: If you delete this field, the data from it in "
6805
  "existing listings will be deleted as well."
6806
  msgstr ""
6807
 
6808
- #: includes/fields/class-form-field.php:642
6809
  msgctxt "form-fields-api"
6810
  msgid ""
6811
  "There can only be one field with association \"%s\". Please select another "
@@ -6814,17 +6871,17 @@ msgstr ""
6814
  "Ассоциация с полем \"%s\" может быть только одна. Пожалуйста, выберите "
6815
  "другую ассоциацию."
6816
 
6817
- #: includes/fields/class-form-field.php:652
6818
  msgctxt "form-fields-api"
6819
  msgid "\"%s\" is an invalid field type for this association."
6820
  msgstr "Поле \"%s\" не является корректной ассоциацией для этого поля."
6821
 
6822
- #: includes/fields/class-form-field.php:697
6823
  msgctxt "form-fields-api"
6824
  msgid "Invalid field ID"
6825
  msgstr "Некорректный номер поля"
6826
 
6827
- #: includes/fields/class-form-field.php:720
6828
  msgctxt "form-fields-api"
6829
  msgid "An error occurred while trying to delete this field."
6830
  msgstr "Произошла ошибка при попытке удаления этого поля."
@@ -6898,7 +6955,7 @@ msgctxt "form-fields-api select"
6898
  msgid "— None —"
6899
  msgstr ""
6900
 
6901
- #: includes/fields/class-fieldtypes-textarea.php:200
6902
  msgctxt "admin form-fields"
6903
  msgid ""
6904
  "Enabling iframe support in your listings can allow users to execute "
@@ -7058,11 +7115,18 @@ msgstr ""
7058
  #: includes/views/submit_listing.php:511
7059
  msgctxt "templates"
7060
  msgid ""
 
 
 
 
 
 
 
7061
  "Listing submission is not available at the moment. Contact the administrator "
7062
  "for details."
7063
  msgstr ""
7064
 
7065
- #: includes/views/submit_listing.php:514
7066
  msgctxt "templates"
7067
  msgid ""
7068
  "<b>View not available</b>, there is no \"Category\" association field. %s "
@@ -7070,17 +7134,17 @@ msgid ""
7070
  "an existing field"
7071
  msgstr ""
7072
 
7073
- #: includes/views/submit_listing.php:921
7074
  msgctxt "templates"
7075
  msgid "Please agree to the Terms and Conditions."
7076
  msgstr "Пожалуйста примите наши Условия и Положения."
7077
 
7078
- #: includes/views/submit_listing.php:929
7079
  msgctxt "templates"
7080
  msgid "Terms and Conditions:"
7081
  msgstr "Условия и Положения:"
7082
 
7083
- #: includes/views/submit_listing.php:937
7084
  #, fuzzy
7085
  msgctxt "templates"
7086
  msgid "I agree to the <a>Terms and Conditions</a>"
@@ -8477,7 +8541,7 @@ msgctxt "request_access_keys"
8477
  msgid "URL:"
8478
  msgstr "Ссылка:"
8479
 
8480
- #: includes/views/search.php:45
8481
  #, fuzzy
8482
  msgctxt "search"
8483
  msgid "\"%s\" is required."
@@ -8504,14 +8568,14 @@ msgctxt "preview"
8504
  msgid "This is just a preview. The listing has not been published yet."
8505
  msgstr "Это просто предварительный просмотр. Запись ещё не была опубликована."
8506
 
8507
- #: includes/views/submit_listing.php:680
8508
  msgctxt "listing submit"
8509
  msgid ""
8510
  "Something went wrong. Please check the form for errors, correct them and "
8511
  "submit again."
8512
  msgstr ""
8513
 
8514
- #: includes/views/submit_listing.php:764
8515
  msgctxt "listing submit"
8516
  msgid ""
8517
  "Image upload is required, please provide at least one image and submit again."
3
  "Project-Id-Version: Business Directory Plugin v5.5\n"
4
  "Report-Msgid-Bugs-To: https://wordpress.org/support/plugin/business-"
5
  "directory-plugin\n"
6
+ "POT-Creation-Date: 2019-11-19 21:50:15+00:00\n"
7
  "PO-Revision-Date: 2017-01-16 17:49-0500\n"
8
  "Last-Translator: Mick Levin <mikhaillevin@hotmail.com>\n"
9
  "Language-Team: BD Team <support@businessdirectoryplugin.com>\n"
239
  msgid "Directory Tag"
240
  msgstr "Все рубрики"
241
 
242
+ #. translators: %s: listing count
243
+ #: includes/class-cpt-integration.php:235
244
+ #, fuzzy
245
+ msgid "%s listing updated."
246
+ msgid_plural "%s listings updated."
247
+ msgstr[0] "Запись была изменена"
248
+ msgstr[1] "Запись была изменена"
249
+ msgstr[2] "Запись была изменена"
250
+
251
+ #. translators: %s: listing count
252
+ #: includes/class-cpt-integration.php:237
253
+ msgid "%s listing not updated, somebody is editing it."
254
+ msgid_plural "%s listings not updated, somebody is editing them."
255
+ msgstr[0] ""
256
+ msgstr[1] ""
257
+ msgstr[2] ""
258
+
259
+ #. translators: %s: listing count
260
+ #: includes/class-cpt-integration.php:239
261
+ #, fuzzy
262
+ msgid "%s listing permanently deleted."
263
+ msgid_plural "%s listings permanently deleted."
264
+ msgstr[0] "Дата окончания срока действия"
265
+ msgstr[1] "Дата окончания срока действия"
266
+ msgstr[2] "Дата окончания срока действия"
267
+
268
+ #. translators: %s: listing count
269
+ #: includes/class-cpt-integration.php:241
270
+ #, fuzzy
271
+ msgid "%s listing moved to the Trash."
272
+ msgid_plural "%s listings moved to the Trash."
273
+ msgstr[0] "В корзине записи не найдены"
274
+ msgstr[1] "В корзине записи не найдены"
275
+ msgstr[2] "В корзине записи не найдены"
276
+
277
+ #. translators: %s: listing count
278
+ #: includes/class-cpt-integration.php:243
279
+ #, fuzzy
280
+ msgid "%s listing restored from the Trash."
281
+ msgid_plural "%s listings restored from the Trash."
282
+ msgstr[0] "Запись была удалена."
283
+ msgstr[1] "Запись была удалена."
284
+ msgstr[2] "Запись была удалена."
285
+
286
  #: includes/class-payment-gateway.php:142
287
  msgid ""
288
  "There was an unexpected error trying to cancel your subscription. Please "
1145
  msgid "Renewal email sent."
1146
  msgstr "Оповещение о продлении было отправлено по электронной почте."
1147
 
1148
+ #: includes/admin/class-admin.php:758
1149
+ msgctxt "admin"
1150
+ msgid ""
1151
+ "Could not send renewal email, notice template at listing expiration not "
1152
+ "found."
1153
+ msgstr ""
1154
+
1155
+ #: includes/admin/class-admin.php:765
1156
  #, fuzzy
1157
  msgctxt "admin"
1158
  msgid "Listing report deleted."
1161
  msgstr[1] "Дата окончания срока действия"
1162
  msgstr[2] "Дата окончания срока действия"
1163
 
1164
+ #: includes/admin/class-admin.php:813
1165
  #, fuzzy
1166
  msgctxt "admin"
1167
  msgid "Access keys sent."
1168
  msgstr "Поля и Изображения записи"
1169
 
1170
+ #: includes/admin/class-admin.php:815
1171
  msgctxt "admin"
1172
  msgid "The access keys couldn't be sent."
1173
  msgstr ""
1174
 
1175
+ #: includes/admin/class-admin.php:873 includes/admin/class-admin.php:879
1176
  msgctxt "admin"
1177
  msgid "Listing Count"
1178
  msgstr "Количество записей"
1179
 
1180
+ #: includes/admin/class-admin.php:941
1181
  msgctxt "admin"
1182
  msgid ""
1183
  "<b>Business Directory Plugin</b> requires a page with the "
1186
  "Плагин <b>Справочник Услуг</b> для нормальной работы требует наличия "
1187
  "страницы, в которой есть шорткод <tt>[businessdirectory]</tt>."
1188
 
1189
+ #: includes/admin/class-admin.php:943
1190
  msgctxt "admin"
1191
  msgid ""
1192
  "You can create this page by yourself or let Business Directory do this for "
1195
  "Вы можете создать такую страницу сами, или позвольте плагину создать её для "
1196
  "Вас автоматически."
1197
 
1198
+ #: includes/admin/class-admin.php:947
1199
  msgctxt "admin"
1200
  msgid "Create required pages for me"
1201
  msgstr "Создать необходимые страницы автоматически"
1202
 
1203
+ #: includes/admin/class-admin.php:980
1204
  msgctxt "admin"
1205
  msgid ""
1206
  "<strong>Business Directory Plugin</strong> requires <strong>PHP 5.6</strong> "
1208
  "your provider to upgrade in order to prevent any issues with the plugin."
1209
  msgstr ""
1210
 
1211
+ #: includes/admin/class-admin.php:1003
1212
  msgctxt "admin"
1213
  msgid ""
1214
  "We noticed you want your Business Directory users to register before posting "
1266
  "Вы можете сами создать эти поля в разделе \"Управление / Форма\", или "
1267
  "позвольте плагину сделать это автоматически."
1268
 
1269
+ #: includes/admin/form-fields.php:214 includes/views/submit_listing.php:535
1270
  msgctxt "admin"
1271
  msgid "Go to \"Manage Form Fields\""
1272
  msgstr "Перейти в раздел \"Управление / Форма\""
1286
  msgid "Abandoned"
1287
  msgstr "Заброшено"
1288
 
1289
+ #: includes/views/submit_listing.php:518
1290
+ #, fuzzy
1291
+ msgctxt "admin"
1292
+ msgid "Go to \"Manage Fees\""
1293
+ msgstr "Перейти в раздел \"Управление / Форма\""
1294
+
1295
  #: includes/admin/class-admin-listings.php:304
1296
  msgctxt "listing attribute"
1297
  msgid "No Fee Plan"
1653
  msgid "Manage Options"
1654
  msgstr "Настройки"
1655
 
1656
+ #: includes/admin/class-admin.php:871
1657
  msgctxt "admin category id"
1658
  msgid "ID"
1659
  msgstr "№"
2897
  msgid "Field Display Order"
2898
  msgstr "Параметры отображения поля"
2899
 
2900
+ #: includes/fields/class-fieldtypes-textarea.php:197
2901
  msgctxt "form-fields admin"
2902
  msgid "Allow HTML input for this field?"
2903
  msgstr "Разрегить HTML коды в этом поле?"
2904
 
2905
+ #: includes/fields/class-fieldtypes-textarea.php:200
2906
  msgctxt "form-fields admin"
2907
  msgid "Allow IFRAME tags in content?"
2908
  msgstr ""
2909
 
2910
+ #: includes/fields/class-fieldtypes-textarea.php:204
2911
  msgctxt "form-fields admin"
2912
  msgid "No"
2913
  msgstr "Ноя"
2914
 
2915
+ #: includes/fields/class-fieldtypes-textarea.php:205
2916
  msgctxt "form-fields admin"
2917
  msgid "Yes"
2918
  msgstr ""
2919
 
2920
+ #: includes/fields/class-fieldtypes-textarea.php:210
2921
  msgctxt "form-fields admin"
2922
  msgid "Allow WordPress shortcodes in this field?"
2923
  msgstr "Разрешить шорт-коды WordPress в этом поле?"
2924
 
2925
+ #: includes/fields/class-fieldtypes-textarea.php:215
2926
  msgctxt "form-fields admin"
2927
  msgid "Display a WYSIWYG editor on the frontend?"
2928
  msgstr "Использовать визуальный редактор на сайте?"
2929
 
2930
+ #: includes/fields/class-fieldtypes-textarea.php:218
2931
  msgctxt "form-fields admin"
2932
  msgid ""
2933
  "<b>Warning:</b> Users can use this feature to get around your image limits "
2936
  "<b>ВНИМАНИЕ:</b> Авторы могут использовать этот режим для обхода ограничения "
2937
  "на количество изображений в бесплатном режиме."
2938
 
2939
+ #: includes/fields/class-fieldtypes-textarea.php:219
2940
  msgctxt "form-fields admin"
2941
  msgid "Allow images in WYSIWYG editor?"
2942
  msgstr "Разрешить изображения в визуальном редакторе?"
2943
 
2944
+ #: includes/fields/class-fieldtypes-textarea.php:222
2945
  msgctxt "form-fields admin"
2946
  msgid ""
2947
  "<b>Advanced users only!</b> Unless you've been told to change this, don't "
2950
  "<b>Только для профессионалов!</b> Если только Вам не было об этом сказано, "
2951
  "не включайте это, если не знаете, что это делает."
2952
 
2953
+ #: includes/fields/class-fieldtypes-textarea.php:223
2954
  msgctxt "form-fields admin"
2955
  msgid "Apply \"the_content\" filter before displaying this field?"
2956
  msgstr "Применить фильтр \"the_content\" перед отображением поля?"
2957
 
2958
+ #: includes/fields/class-fieldtypes-textarea.php:226
2959
  msgctxt "form-fields admin"
2960
  msgid "Use shortened version of Description field as excerpt"
2961
  msgstr ""
2962
 
2963
+ #: includes/fields/class-fieldtypes-textarea.php:227
2964
  msgctxt "form-fields admin"
2965
  msgid ""
2966
  "Enable always (override the Short Description given with a shortened Long "
2967
  "Description)"
2968
  msgstr ""
2969
 
2970
+ #: includes/fields/class-fieldtypes-textarea.php:228
2971
  msgctxt "form-fields admin"
2972
  msgid ""
2973
  "Enable conditionally (override ONLY when Short Description is empty with a "
2974
  "shortened Long Description)"
2975
  msgstr ""
2976
 
2977
+ #: includes/fields/class-fieldtypes-textarea.php:229
2978
  msgctxt "form-fields admin"
2979
  msgid "Disable (use the Short Description all the time, empty or not)"
2980
  msgstr ""
2981
 
2982
+ #: includes/fields/class-fieldtypes-textarea.php:231
2983
  msgctxt "form-fields admin"
2984
  msgid ""
2985
  "Truncates the description field to the value set here. To display all of the "
2986
  "description, set to 0."
2987
  msgstr ""
2988
 
2989
+ #: includes/fields/class-fieldtypes-textarea.php:232
2990
  msgctxt "form-fields admin"
2991
  msgid ""
2992
  "Number of Characters from Short Description/Excerpt to Display in List View "
2993
  "(only)"
2994
  msgstr ""
2995
 
2996
+ #: includes/fields/class-fieldtypes-textarea.php:237
2997
  msgctxt "form-fields admin"
2998
  msgid "Automatically generate excerpt from content field?"
2999
  msgstr ""
6098
  msgstr "Бесплатные записи"
6099
 
6100
  #. translators: [%s] is the name of the blog.
6101
+ #: includes/class-listing-email-notification.php:239
6102
  msgctxt "notify email"
6103
  msgid "[%s] New listing notification"
6104
  msgstr "[%s] Оповещение о новой записи"
6105
 
6106
  #. translators: [%s] is the name of the blog.
6107
+ #: includes/class-listing-email-notification.php:290
6108
  msgctxt "notify email"
6109
  msgid "[%s] Listing edit notification"
6110
  msgstr "[%s] Оповещение об изменении записи"
6111
 
6112
  #. translators: %s is the name of the blog.
6113
+ #: includes/class-listing-email-notification.php:362
6114
  #, fuzzy
6115
  msgctxt "notify email"
6116
  msgid "[%s] Reported listing notification"
6475
  "В настоящее время вы не можем провести Вашу оплату. Попробуйте позже "
6476
  "пожалуйста."
6477
 
6478
+ #: includes/views/submit_listing.php:550
6479
  #, fuzzy
6480
  msgctxt "submit listing"
6481
  msgid "Please select a category."
6482
  msgstr "Пожалуйста выберите тариф для рубрики \"%s\"."
6483
 
6484
+ #: includes/views/submit_listing.php:563
6485
  #, fuzzy
6486
  msgctxt "submit listing"
6487
  msgid "Please select a category for your listing."
6488
  msgstr "Пожалуйста выберите тариф для рубрики \"%s\"."
6489
 
6490
+ #: includes/views/submit_listing.php:583
6491
  msgctxt "submit listing"
6492
  msgid "Please choose a valid category for your plan."
6493
  msgstr ""
6494
 
6495
+ #: includes/views/submit_listing.php:585
6496
  #, fuzzy
6497
  msgctxt "submit listing"
6498
  msgid "Please choose a valid fee plan for your category selection."
6499
  msgstr "Пожалуйста выберите тариф для рубрики \"%s\"."
6500
 
6501
+ #: includes/views/submit_listing.php:826
6502
  #, fuzzy
6503
  msgctxt "submit listing"
6504
  msgid "Please enter your desired username."
6505
  msgstr "Пожалуйста введите Ваше имя."
6506
 
6507
+ #: includes/views/submit_listing.php:831
6508
  #, fuzzy
6509
  msgctxt "submit listing"
6510
  msgid "Please enter the e-mail for your new account."
6511
  msgstr "Пожалуйста введите Ваше имя."
6512
 
6513
+ #: includes/views/submit_listing.php:836
6514
  msgctxt "submit listing"
6515
  msgid "Please enter the password for your new account."
6516
  msgstr ""
6517
 
6518
+ #: includes/views/submit_listing.php:846
6519
  msgctxt "submit listing"
6520
  msgid "The username you chose is already in use. Please use a different one."
6521
  msgstr ""
6522
 
6523
+ #: includes/views/submit_listing.php:851
6524
  msgctxt "submit listing"
6525
  msgid "The e-mail address you chose for your account is already in use."
6526
  msgstr ""
6527
 
6528
+ #: includes/views/submit_listing.php:866
6529
  msgctxt "submit listing"
6530
  msgid "Create a user account on this site"
6531
  msgstr ""
6532
 
6533
+ #: includes/views/submit_listing.php:873
6534
  msgctxt "submit listing"
6535
  msgid ""
6536
  "You need to create an account on the site. Please fill out the form below."
6537
  msgstr ""
6538
 
6539
+ #: includes/views/submit_listing.php:879
6540
  msgctxt "submit listing"
6541
  msgid "Username:"
6542
  msgstr ""
6543
 
6544
+ #: includes/views/submit_listing.php:888
6545
  #, fuzzy
6546
  msgctxt "submit listing"
6547
  msgid "Email:"
6548
  msgstr "Адрес: %s"
6549
 
6550
+ #: includes/views/submit_listing.php:897
6551
  msgctxt "submit listing"
6552
  msgid "Password:"
6553
  msgstr ""
6756
  msgid "Link Text (optional):"
6757
  msgstr "Текст ссылки (не обязательно)"
6758
 
6759
+ #: includes/fields/class-form-field.php:710
6760
  msgctxt "form-fields api"
6761
  msgid ""
6762
  "This form field can't be deleted because it is required for the plugin to "
6832
  msgid "Invalid form field type"
6833
  msgstr "Неверный тип поля формы"
6834
 
6835
+ #: includes/fields/class-form-field.php:589
6836
  msgctxt "form-fields-api"
6837
  msgid "Field label is required."
6838
  msgstr "Метка поля обязательна."
6839
 
6840
+ #: includes/fields/class-form-field.php:593
6841
  msgctxt "form-fields-api"
6842
  msgid "Field label max length is 255 characters."
6843
  msgstr ""
6844
 
6845
+ #: includes/fields/class-form-field.php:597
6846
  msgctxt "form-fields-api"
6847
  msgid "Field description max length is 255 characters."
6848
  msgstr ""
6849
 
6850
+ #: includes/fields/class-form-field.php:608
6851
  msgctxt "form-fields-api"
6852
  msgid ""
6853
  "You can't change from %2$s field type to the one you wanted--the types are "
6855
  "delete this current field and create a NEW field of type %1$s instead."
6856
  msgstr ""
6857
 
6858
+ #: includes/fields/class-form-field.php:611
6859
  msgctxt "form-fields-api"
6860
  msgid ""
6861
  "<strong>WARNING</strong>: If you delete this field, the data from it in "
6862
  "existing listings will be deleted as well."
6863
  msgstr ""
6864
 
6865
+ #: includes/fields/class-form-field.php:645
6866
  msgctxt "form-fields-api"
6867
  msgid ""
6868
  "There can only be one field with association \"%s\". Please select another "
6871
  "Ассоциация с полем \"%s\" может быть только одна. Пожалуйста, выберите "
6872
  "другую ассоциацию."
6873
 
6874
+ #: includes/fields/class-form-field.php:655
6875
  msgctxt "form-fields-api"
6876
  msgid "\"%s\" is an invalid field type for this association."
6877
  msgstr "Поле \"%s\" не является корректной ассоциацией для этого поля."
6878
 
6879
+ #: includes/fields/class-form-field.php:700
6880
  msgctxt "form-fields-api"
6881
  msgid "Invalid field ID"
6882
  msgstr "Некорректный номер поля"
6883
 
6884
+ #: includes/fields/class-form-field.php:723
6885
  msgctxt "form-fields-api"
6886
  msgid "An error occurred while trying to delete this field."
6887
  msgstr "Произошла ошибка при попытке удаления этого поля."
6955
  msgid "— None —"
6956
  msgstr ""
6957
 
6958
+ #: includes/fields/class-fieldtypes-textarea.php:203
6959
  msgctxt "admin form-fields"
6960
  msgid ""
6961
  "Enabling iframe support in your listings can allow users to execute "
7115
  #: includes/views/submit_listing.php:511
7116
  msgctxt "templates"
7117
  msgid ""
7118
+ "<b>There are no Fee Plans available</b>, without a fee plan site users can't "
7119
+ "submit a listing. %s to create a fee plan"
7120
+ msgstr ""
7121
+
7122
+ #: includes/views/submit_listing.php:525
7123
+ msgctxt "templates"
7124
+ msgid ""
7125
  "Listing submission is not available at the moment. Contact the administrator "
7126
  "for details."
7127
  msgstr ""
7128
 
7129
+ #: includes/views/submit_listing.php:528
7130
  msgctxt "templates"
7131
  msgid ""
7132
  "<b>View not available</b>, there is no \"Category\" association field. %s "
7134
  "an existing field"
7135
  msgstr ""
7136
 
7137
+ #: includes/views/submit_listing.php:935
7138
  msgctxt "templates"
7139
  msgid "Please agree to the Terms and Conditions."
7140
  msgstr "Пожалуйста примите наши Условия и Положения."
7141
 
7142
+ #: includes/views/submit_listing.php:943
7143
  msgctxt "templates"
7144
  msgid "Terms and Conditions:"
7145
  msgstr "Условия и Положения:"
7146
 
7147
+ #: includes/views/submit_listing.php:951
7148
  #, fuzzy
7149
  msgctxt "templates"
7150
  msgid "I agree to the <a>Terms and Conditions</a>"
8541
  msgid "URL:"
8542
  msgstr "Ссылка:"
8543
 
8544
+ #: includes/views/search.php:46
8545
  #, fuzzy
8546
  msgctxt "search"
8547
  msgid "\"%s\" is required."
8568
  msgid "This is just a preview. The listing has not been published yet."
8569
  msgstr "Это просто предварительный просмотр. Запись ещё не была опубликована."
8570
 
8571
+ #: includes/views/submit_listing.php:694
8572
  msgctxt "listing submit"
8573
  msgid ""
8574
  "Something went wrong. Please check the form for errors, correct them and "
8575
  "submit again."
8576
  msgstr ""
8577
 
8578
+ #: includes/views/submit_listing.php:778
8579
  msgctxt "listing submit"
8580
  msgid ""
8581
  "Image upload is required, please provide at least one image and submit again."
languages/WPBDM-sv_SE.po CHANGED
@@ -5,7 +5,7 @@ msgstr ""
5
  "Project-Id-Version: Business Directory Plugin v5.5\n"
6
  "Report-Msgid-Bugs-To: https://wordpress.org/support/plugin/business-"
7
  "directory-plugin\n"
8
- "POT-Creation-Date: 2019-10-30 22:21:32+00:00\n"
9
  "PO-Revision-Date: 2017-12-03 21:20+0100\n"
10
  "Last-Translator: \n"
11
  "Language-Team: \n"
@@ -227,6 +227,45 @@ msgstr "Katalogtaggar"
227
  msgid "Directory Tag"
228
  msgstr "Katalogtag"
229
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
230
  #: includes/class-payment-gateway.php:142
231
  msgid ""
232
  "There was an unexpected error trying to cancel your subscription. Please "
@@ -1070,7 +1109,14 @@ msgctxt "admin"
1070
  msgid "Renewal email sent."
1071
  msgstr "E-postmeddelande om förnyelse skickat."
1072
 
1073
- #: includes/admin/class-admin.php:761
 
 
 
 
 
 
 
1074
  #, fuzzy
1075
  msgctxt "admin"
1076
  msgid "Listing report deleted."
@@ -1078,23 +1124,23 @@ msgid_plural "Listing reports deleted."
1078
  msgstr[0] "Utgångsdatum för annons"
1079
  msgstr[1] "Utgångsdatum för annons"
1080
 
1081
- #: includes/admin/class-admin.php:809
1082
  #, fuzzy
1083
  msgctxt "admin"
1084
  msgid "Access keys sent."
1085
  msgstr "Åtkomstnyckel"
1086
 
1087
- #: includes/admin/class-admin.php:811
1088
  msgctxt "admin"
1089
  msgid "The access keys couldn't be sent."
1090
  msgstr ""
1091
 
1092
- #: includes/admin/class-admin.php:869 includes/admin/class-admin.php:875
1093
  msgctxt "admin"
1094
  msgid "Listing Count"
1095
  msgstr "Annonsräknare"
1096
 
1097
- #: includes/admin/class-admin.php:937
1098
  msgctxt "admin"
1099
  msgid ""
1100
  "<b>Business Directory Plugin</b> requires a page with the "
@@ -1103,7 +1149,7 @@ msgstr ""
1103
  "<b>Tillägget Business Directory</b> kräver att du lagt shortcoden "
1104
  "<tt>[businessdirectory]</tt> på en sida för att fungera korrekt."
1105
 
1106
- #: includes/admin/class-admin.php:939
1107
  msgctxt "admin"
1108
  msgid ""
1109
  "You can create this page by yourself or let Business Directory do this for "
@@ -1112,12 +1158,12 @@ msgstr ""
1112
  "Du kan skapa denna sida av dig själv eller låta Business Directory göra det "
1113
  "åt dig automatiskt."
1114
 
1115
- #: includes/admin/class-admin.php:943
1116
  msgctxt "admin"
1117
  msgid "Create required pages for me"
1118
  msgstr "Skapa nödvändiga sidor åt mig."
1119
 
1120
- #: includes/admin/class-admin.php:976
1121
  msgctxt "admin"
1122
  msgid ""
1123
  "<strong>Business Directory Plugin</strong> requires <strong>PHP 5.6</strong> "
@@ -1128,7 +1174,7 @@ msgstr ""
1128
  "eller senare, men servern kör version <strong>%s</strong>. Be din leverantör "
1129
  "att uppgradera för att förhindra eventuella problem med pluginet."
1130
 
1131
- #: includes/admin/class-admin.php:999
1132
  msgctxt "admin"
1133
  msgid ""
1134
  "We noticed you want your Business Directory users to register before posting "
@@ -1182,7 +1228,7 @@ msgstr ""
1182
  "Du kan skapa dessa anpassade fält själv i \"Hantera formulärfält\" eller "
1183
  "låta Business Directory göra det åt dig automatiskt."
1184
 
1185
- #: includes/admin/form-fields.php:214 includes/views/submit_listing.php:521
1186
  msgctxt "admin"
1187
  msgid "Go to \"Manage Form Fields\""
1188
  msgstr "Gå till \"Hantera formulärfält\""
@@ -1202,6 +1248,12 @@ msgctxt "admin"
1202
  msgid "Abandoned"
1203
  msgstr "Övergiven"
1204
 
 
 
 
 
 
 
1205
  #: includes/admin/class-admin-listings.php:304
1206
  #, fuzzy
1207
  msgctxt "listing attribute"
@@ -1532,7 +1584,7 @@ msgctxt "admin menu"
1532
  msgid "Manage Options"
1533
  msgstr "Hantera alternativ"
1534
 
1535
- #: includes/admin/class-admin.php:867
1536
  msgctxt "admin category id"
1537
  msgid "ID"
1538
  msgstr "ID"
@@ -2787,37 +2839,37 @@ msgctxt "form-fields admin"
2787
  msgid "Field Display Order"
2788
  msgstr "Fältvisningsalternativ"
2789
 
2790
- #: includes/fields/class-fieldtypes-textarea.php:194
2791
  msgctxt "form-fields admin"
2792
  msgid "Allow HTML input for this field?"
2793
  msgstr "Tillåta HTML för detta fält?"
2794
 
2795
- #: includes/fields/class-fieldtypes-textarea.php:197
2796
  msgctxt "form-fields admin"
2797
  msgid "Allow IFRAME tags in content?"
2798
  msgstr "Tillåta IFRAME-taggar i innehåll?"
2799
 
2800
- #: includes/fields/class-fieldtypes-textarea.php:201
2801
  msgctxt "form-fields admin"
2802
  msgid "No"
2803
  msgstr "Nej"
2804
 
2805
- #: includes/fields/class-fieldtypes-textarea.php:202
2806
  msgctxt "form-fields admin"
2807
  msgid "Yes"
2808
  msgstr "Ja"
2809
 
2810
- #: includes/fields/class-fieldtypes-textarea.php:207
2811
  msgctxt "form-fields admin"
2812
  msgid "Allow WordPress shortcodes in this field?"
2813
  msgstr "Tillåt WordPress-shortcodes på detta område?"
2814
 
2815
- #: includes/fields/class-fieldtypes-textarea.php:212
2816
  msgctxt "form-fields admin"
2817
  msgid "Display a WYSIWYG editor on the frontend?"
2818
  msgstr "Visa en WYSIWYG editor på frontend?"
2819
 
2820
- #: includes/fields/class-fieldtypes-textarea.php:215
2821
  msgctxt "form-fields admin"
2822
  msgid ""
2823
  "<b>Warning:</b> Users can use this feature to get around your image limits "
@@ -2826,12 +2878,12 @@ msgstr ""
2826
  "<b>Varning:</b> Användare kan använda den här funktionen för att komma runt "
2827
  "bildgränser i avgiftsplanerna."
2828
 
2829
- #: includes/fields/class-fieldtypes-textarea.php:216
2830
  msgctxt "form-fields admin"
2831
  msgid "Allow images in WYSIWYG editor?"
2832
  msgstr "Tillåt bilder i WYSIWYG editor?"
2833
 
2834
- #: includes/fields/class-fieldtypes-textarea.php:219
2835
  msgctxt "form-fields admin"
2836
  msgid ""
2837
  "<b>Advanced users only!</b> Unless you've been told to change this, don't "
@@ -2840,50 +2892,50 @@ msgstr ""
2840
  "<b>Avancerade användare endast!</b> Om du inte har blivit tillsagd att ändra "
2841
  "detta, ändra inte om du inte vet vad du gör."
2842
 
2843
- #: includes/fields/class-fieldtypes-textarea.php:220
2844
  msgctxt "form-fields admin"
2845
  msgid "Apply \"the_content\" filter before displaying this field?"
2846
  msgstr "Tillämpa \"the_content\"-filtret innan detta fält visas?"
2847
 
2848
- #: includes/fields/class-fieldtypes-textarea.php:223
2849
  msgctxt "form-fields admin"
2850
  msgid "Use shortened version of Description field as excerpt"
2851
  msgstr ""
2852
 
2853
- #: includes/fields/class-fieldtypes-textarea.php:224
2854
  msgctxt "form-fields admin"
2855
  msgid ""
2856
  "Enable always (override the Short Description given with a shortened Long "
2857
  "Description)"
2858
  msgstr ""
2859
 
2860
- #: includes/fields/class-fieldtypes-textarea.php:225
2861
  msgctxt "form-fields admin"
2862
  msgid ""
2863
  "Enable conditionally (override ONLY when Short Description is empty with a "
2864
  "shortened Long Description)"
2865
  msgstr ""
2866
 
2867
- #: includes/fields/class-fieldtypes-textarea.php:226
2868
  msgctxt "form-fields admin"
2869
  msgid "Disable (use the Short Description all the time, empty or not)"
2870
  msgstr ""
2871
 
2872
- #: includes/fields/class-fieldtypes-textarea.php:228
2873
  msgctxt "form-fields admin"
2874
  msgid ""
2875
  "Truncates the description field to the value set here. To display all of the "
2876
  "description, set to 0."
2877
  msgstr ""
2878
 
2879
- #: includes/fields/class-fieldtypes-textarea.php:229
2880
  msgctxt "form-fields admin"
2881
  msgid ""
2882
  "Number of Characters from Short Description/Excerpt to Display in List View "
2883
  "(only)"
2884
  msgstr ""
2885
 
2886
- #: includes/fields/class-fieldtypes-textarea.php:234
2887
  msgctxt "form-fields admin"
2888
  msgid "Automatically generate excerpt from content field?"
2889
  msgstr "Generera utdrag automatiskt från innehållsfältet?"
@@ -5780,19 +5832,19 @@ msgid "Free Listing"
5780
  msgstr "Gratis annons"
5781
 
5782
  #. translators: [%s] is the name of the blog.
5783
- #: includes/class-listing-email-notification.php:235
5784
  msgctxt "notify email"
5785
  msgid "[%s] New listing notification"
5786
  msgstr "[%s] Notifiering om ny annons"
5787
 
5788
  #. translators: [%s] is the name of the blog.
5789
- #: includes/class-listing-email-notification.php:286
5790
  msgctxt "notify email"
5791
  msgid "[%s] Listing edit notification"
5792
  msgstr "[%s] Notifiering om annonsändring"
5793
 
5794
  #. translators: %s is the name of the blog.
5795
- #: includes/class-listing-email-notification.php:358
5796
  #, fuzzy
5797
  msgctxt "notify email"
5798
  msgid "[%s] Reported listing notification"
@@ -6141,57 +6193,57 @@ msgctxt "submit listing"
6141
  msgid "Can not submit a listing at this moment. Please try again later."
6142
  msgstr "Det går inte att registrera en annons just nu. Försök igen senare."
6143
 
6144
- #: includes/views/submit_listing.php:536
6145
  msgctxt "submit listing"
6146
  msgid "Please select a category."
6147
  msgstr "Välj en kategori."
6148
 
6149
- #: includes/views/submit_listing.php:549
6150
  msgctxt "submit listing"
6151
  msgid "Please select a category for your listing."
6152
  msgstr "Välj en kategori för din annons."
6153
 
6154
- #: includes/views/submit_listing.php:569
6155
  msgctxt "submit listing"
6156
  msgid "Please choose a valid category for your plan."
6157
  msgstr "Välj en giltig kategori för din plan."
6158
 
6159
- #: includes/views/submit_listing.php:571
6160
  msgctxt "submit listing"
6161
  msgid "Please choose a valid fee plan for your category selection."
6162
  msgstr "Välj en avgiftsplan för ditt kategorival."
6163
 
6164
- #: includes/views/submit_listing.php:812
6165
  msgctxt "submit listing"
6166
  msgid "Please enter your desired username."
6167
  msgstr "Fyll i ditt önskade användarnamn."
6168
 
6169
- #: includes/views/submit_listing.php:817
6170
  msgctxt "submit listing"
6171
  msgid "Please enter the e-mail for your new account."
6172
  msgstr "Fyll i e-postadressen för ditt nya konto."
6173
 
6174
- #: includes/views/submit_listing.php:822
6175
  msgctxt "submit listing"
6176
  msgid "Please enter the password for your new account."
6177
  msgstr "Ange lösenordet för ditt nya konto."
6178
 
6179
- #: includes/views/submit_listing.php:832
6180
  msgctxt "submit listing"
6181
  msgid "The username you chose is already in use. Please use a different one."
6182
  msgstr "Användarnamnet upptaget, var vänlig försök med ett annat."
6183
 
6184
- #: includes/views/submit_listing.php:837
6185
  msgctxt "submit listing"
6186
  msgid "The e-mail address you chose for your account is already in use."
6187
  msgstr "E-postadressen du valt för ditt konto används redan."
6188
 
6189
- #: includes/views/submit_listing.php:852
6190
  msgctxt "submit listing"
6191
  msgid "Create a user account on this site"
6192
  msgstr "Skapa ett användarkonto på denna webbplats"
6193
 
6194
- #: includes/views/submit_listing.php:859
6195
  msgctxt "submit listing"
6196
  msgid ""
6197
  "You need to create an account on the site. Please fill out the form below."
@@ -6199,17 +6251,17 @@ msgstr ""
6199
  "Du måste skapa ett konto för denna webbplatsen. Vänligen fyll i formuläret "
6200
  "nedan."
6201
 
6202
- #: includes/views/submit_listing.php:865
6203
  msgctxt "submit listing"
6204
  msgid "Username:"
6205
  msgstr "Användarnamn:"
6206
 
6207
- #: includes/views/submit_listing.php:874
6208
  msgctxt "submit listing"
6209
  msgid "Email:"
6210
  msgstr "E-postadress:"
6211
 
6212
- #: includes/views/submit_listing.php:883
6213
  msgctxt "submit listing"
6214
  msgid "Password:"
6215
  msgstr "Lösenord:"
@@ -6415,7 +6467,7 @@ msgctxt "form-fields api"
6415
  msgid "Link Text (optional):"
6416
  msgstr "Länktext (valfritt):"
6417
 
6418
- #: includes/fields/class-form-field.php:707
6419
  msgctxt "form-fields api"
6420
  msgid ""
6421
  "This form field can't be deleted because it is required for the plugin to "
@@ -6492,22 +6544,22 @@ msgctxt "form-fields-api"
6492
  msgid "Invalid form field type"
6493
  msgstr "Ogiltig formulärfält typ"
6494
 
6495
- #: includes/fields/class-form-field.php:586
6496
  msgctxt "form-fields-api"
6497
  msgid "Field label is required."
6498
  msgstr "Fältetikett krävs"
6499
 
6500
- #: includes/fields/class-form-field.php:590
6501
  msgctxt "form-fields-api"
6502
  msgid "Field label max length is 255 characters."
6503
  msgstr ""
6504
 
6505
- #: includes/fields/class-form-field.php:594
6506
  msgctxt "form-fields-api"
6507
  msgid "Field description max length is 255 characters."
6508
  msgstr ""
6509
 
6510
- #: includes/fields/class-form-field.php:605
6511
  msgctxt "form-fields-api"
6512
  msgid ""
6513
  "You can't change from %2$s field type to the one you wanted--the types are "
@@ -6515,14 +6567,14 @@ msgid ""
6515
  "delete this current field and create a NEW field of type %1$s instead."
6516
  msgstr ""
6517
 
6518
- #: includes/fields/class-form-field.php:608
6519
  msgctxt "form-fields-api"
6520
  msgid ""
6521
  "<strong>WARNING</strong>: If you delete this field, the data from it in "
6522
  "existing listings will be deleted as well."
6523
  msgstr ""
6524
 
6525
- #: includes/fields/class-form-field.php:642
6526
  msgctxt "form-fields-api"
6527
  msgid ""
6528
  "There can only be one field with association \"%s\". Please select another "
@@ -6531,17 +6583,17 @@ msgstr ""
6531
  "Det kan bara finnas ett fält med associationen \"%s\". Välj en annan "
6532
  "association."
6533
 
6534
- #: includes/fields/class-form-field.php:652
6535
  msgctxt "form-fields-api"
6536
  msgid "\"%s\" is an invalid field type for this association."
6537
  msgstr "\"%s\" är en ogiltig fälttyp för denna association."
6538
 
6539
- #: includes/fields/class-form-field.php:697
6540
  msgctxt "form-fields-api"
6541
  msgid "Invalid field ID"
6542
  msgstr "Ogiltigt fält-ID"
6543
 
6544
- #: includes/fields/class-form-field.php:720
6545
  msgctxt "form-fields-api"
6546
  msgid "An error occurred while trying to delete this field."
6547
  msgstr "Ett fel uppstod när försök gjordes att radera detta fält."
@@ -6615,7 +6667,7 @@ msgctxt "form-fields-api select"
6615
  msgid "— None —"
6616
  msgstr "— Inget —"
6617
 
6618
- #: includes/fields/class-fieldtypes-textarea.php:200
6619
  msgctxt "admin form-fields"
6620
  msgid ""
6621
  "Enabling iframe support in your listings can allow users to execute "
@@ -6782,11 +6834,18 @@ msgstr ""
6782
  #: includes/views/submit_listing.php:511
6783
  msgctxt "templates"
6784
  msgid ""
 
 
 
 
 
 
 
6785
  "Listing submission is not available at the moment. Contact the administrator "
6786
  "for details."
6787
  msgstr ""
6788
 
6789
- #: includes/views/submit_listing.php:514
6790
  msgctxt "templates"
6791
  msgid ""
6792
  "<b>View not available</b>, there is no \"Category\" association field. %s "
@@ -6794,17 +6853,17 @@ msgid ""
6794
  "an existing field"
6795
  msgstr ""
6796
 
6797
- #: includes/views/submit_listing.php:921
6798
  msgctxt "templates"
6799
  msgid "Please agree to the Terms and Conditions."
6800
  msgstr "Vänligen godkänn villkoren"
6801
 
6802
- #: includes/views/submit_listing.php:929
6803
  msgctxt "templates"
6804
  msgid "Terms and Conditions:"
6805
  msgstr "Villkor"
6806
 
6807
- #: includes/views/submit_listing.php:937
6808
  msgctxt "templates"
6809
  msgid "I agree to the <a>Terms and Conditions</a>"
6810
  msgstr "Jag godtar <a>villkoren</a>."
@@ -8182,7 +8241,7 @@ msgctxt "request_access_keys"
8182
  msgid "URL:"
8183
  msgstr "URL:"
8184
 
8185
- #: includes/views/search.php:45
8186
  msgctxt "search"
8187
  msgid "\"%s\" is required."
8188
  msgstr "\"%s\" är obligatorisk."
@@ -8209,7 +8268,7 @@ msgid "This is just a preview. The listing has not been published yet."
8209
  msgstr ""
8210
  "Detta är enbart en förhandsgranskning, annonsen har inte publicerats ännu."
8211
 
8212
- #: includes/views/submit_listing.php:680
8213
  msgctxt "listing submit"
8214
  msgid ""
8215
  "Something went wrong. Please check the form for errors, correct them and "
@@ -8218,7 +8277,7 @@ msgstr ""
8218
  "Något gick fel. Vänligen kontrollera formuläret för fel, rätta till dem och "
8219
  "skicka igen."
8220
 
8221
- #: includes/views/submit_listing.php:764
8222
  msgctxt "listing submit"
8223
  msgid ""
8224
  "Image upload is required, please provide at least one image and submit again."
5
  "Project-Id-Version: Business Directory Plugin v5.5\n"
6
  "Report-Msgid-Bugs-To: https://wordpress.org/support/plugin/business-"
7
  "directory-plugin\n"
8
+ "POT-Creation-Date: 2019-11-19 21:50:15+00:00\n"
9
  "PO-Revision-Date: 2017-12-03 21:20+0100\n"
10
  "Last-Translator: \n"
11
  "Language-Team: \n"
227
  msgid "Directory Tag"
228
  msgstr "Katalogtag"
229
 
230
+ #. translators: %s: listing count
231
+ #: includes/class-cpt-integration.php:235
232
+ #, fuzzy
233
+ msgid "%s listing updated."
234
+ msgid_plural "%s listings updated."
235
+ msgstr[0] "En annons är redigerad."
236
+ msgstr[1] "En annons är redigerad."
237
+
238
+ #. translators: %s: listing count
239
+ #: includes/class-cpt-integration.php:237
240
+ msgid "%s listing not updated, somebody is editing it."
241
+ msgid_plural "%s listings not updated, somebody is editing them."
242
+ msgstr[0] ""
243
+ msgstr[1] ""
244
+
245
+ #. translators: %s: listing count
246
+ #: includes/class-cpt-integration.php:239
247
+ #, fuzzy
248
+ msgid "%s listing permanently deleted."
249
+ msgid_plural "%s listings permanently deleted."
250
+ msgstr[0] "Utgångsdatum för annons"
251
+ msgstr[1] "Utgångsdatum för annons"
252
+
253
+ #. translators: %s: listing count
254
+ #: includes/class-cpt-integration.php:241
255
+ #, fuzzy
256
+ msgid "%s listing moved to the Trash."
257
+ msgid_plural "%s listings moved to the Trash."
258
+ msgstr[0] "Inga annonser funna i papperskorgen"
259
+ msgstr[1] "Inga annonser funna i papperskorgen"
260
+
261
+ #. translators: %s: listing count
262
+ #: includes/class-cpt-integration.php:243
263
+ #, fuzzy
264
+ msgid "%s listing restored from the Trash."
265
+ msgid_plural "%s listings restored from the Trash."
266
+ msgstr[0] "Din annons har tagits bort."
267
+ msgstr[1] "Din annons har tagits bort."
268
+
269
  #: includes/class-payment-gateway.php:142
270
  msgid ""
271
  "There was an unexpected error trying to cancel your subscription. Please "
1109
  msgid "Renewal email sent."
1110
  msgstr "E-postmeddelande om förnyelse skickat."
1111
 
1112
+ #: includes/admin/class-admin.php:758
1113
+ msgctxt "admin"
1114
+ msgid ""
1115
+ "Could not send renewal email, notice template at listing expiration not "
1116
+ "found."
1117
+ msgstr ""
1118
+
1119
+ #: includes/admin/class-admin.php:765
1120
  #, fuzzy
1121
  msgctxt "admin"
1122
  msgid "Listing report deleted."
1124
  msgstr[0] "Utgångsdatum för annons"
1125
  msgstr[1] "Utgångsdatum för annons"
1126
 
1127
+ #: includes/admin/class-admin.php:813
1128
  #, fuzzy
1129
  msgctxt "admin"
1130
  msgid "Access keys sent."
1131
  msgstr "Åtkomstnyckel"
1132
 
1133
+ #: includes/admin/class-admin.php:815
1134
  msgctxt "admin"
1135
  msgid "The access keys couldn't be sent."
1136
  msgstr ""
1137
 
1138
+ #: includes/admin/class-admin.php:873 includes/admin/class-admin.php:879
1139
  msgctxt "admin"
1140
  msgid "Listing Count"
1141
  msgstr "Annonsräknare"
1142
 
1143
+ #: includes/admin/class-admin.php:941
1144
  msgctxt "admin"
1145
  msgid ""
1146
  "<b>Business Directory Plugin</b> requires a page with the "
1149
  "<b>Tillägget Business Directory</b> kräver att du lagt shortcoden "
1150
  "<tt>[businessdirectory]</tt> på en sida för att fungera korrekt."
1151
 
1152
+ #: includes/admin/class-admin.php:943
1153
  msgctxt "admin"
1154
  msgid ""
1155
  "You can create this page by yourself or let Business Directory do this for "
1158
  "Du kan skapa denna sida av dig själv eller låta Business Directory göra det "
1159
  "åt dig automatiskt."
1160
 
1161
+ #: includes/admin/class-admin.php:947
1162
  msgctxt "admin"
1163
  msgid "Create required pages for me"
1164
  msgstr "Skapa nödvändiga sidor åt mig."
1165
 
1166
+ #: includes/admin/class-admin.php:980
1167
  msgctxt "admin"
1168
  msgid ""
1169
  "<strong>Business Directory Plugin</strong> requires <strong>PHP 5.6</strong> "
1174
  "eller senare, men servern kör version <strong>%s</strong>. Be din leverantör "
1175
  "att uppgradera för att förhindra eventuella problem med pluginet."
1176
 
1177
+ #: includes/admin/class-admin.php:1003
1178
  msgctxt "admin"
1179
  msgid ""
1180
  "We noticed you want your Business Directory users to register before posting "
1228
  "Du kan skapa dessa anpassade fält själv i \"Hantera formulärfält\" eller "
1229
  "låta Business Directory göra det åt dig automatiskt."
1230
 
1231
+ #: includes/admin/form-fields.php:214 includes/views/submit_listing.php:535
1232
  msgctxt "admin"
1233
  msgid "Go to \"Manage Form Fields\""
1234
  msgstr "Gå till \"Hantera formulärfält\""
1248
  msgid "Abandoned"
1249
  msgstr "Övergiven"
1250
 
1251
+ #: includes/views/submit_listing.php:518
1252
+ #, fuzzy
1253
+ msgctxt "admin"
1254
+ msgid "Go to \"Manage Fees\""
1255
+ msgstr "Gå till \"Hantera formulärfält\""
1256
+
1257
  #: includes/admin/class-admin-listings.php:304
1258
  #, fuzzy
1259
  msgctxt "listing attribute"
1584
  msgid "Manage Options"
1585
  msgstr "Hantera alternativ"
1586
 
1587
+ #: includes/admin/class-admin.php:871
1588
  msgctxt "admin category id"
1589
  msgid "ID"
1590
  msgstr "ID"
2839
  msgid "Field Display Order"
2840
  msgstr "Fältvisningsalternativ"
2841
 
2842
+ #: includes/fields/class-fieldtypes-textarea.php:197
2843
  msgctxt "form-fields admin"
2844
  msgid "Allow HTML input for this field?"
2845
  msgstr "Tillåta HTML för detta fält?"
2846
 
2847
+ #: includes/fields/class-fieldtypes-textarea.php:200
2848
  msgctxt "form-fields admin"
2849
  msgid "Allow IFRAME tags in content?"
2850
  msgstr "Tillåta IFRAME-taggar i innehåll?"
2851
 
2852
+ #: includes/fields/class-fieldtypes-textarea.php:204
2853
  msgctxt "form-fields admin"
2854
  msgid "No"
2855
  msgstr "Nej"
2856
 
2857
+ #: includes/fields/class-fieldtypes-textarea.php:205
2858
  msgctxt "form-fields admin"
2859
  msgid "Yes"
2860
  msgstr "Ja"
2861
 
2862
+ #: includes/fields/class-fieldtypes-textarea.php:210
2863
  msgctxt "form-fields admin"
2864
  msgid "Allow WordPress shortcodes in this field?"
2865
  msgstr "Tillåt WordPress-shortcodes på detta område?"
2866
 
2867
+ #: includes/fields/class-fieldtypes-textarea.php:215
2868
  msgctxt "form-fields admin"
2869
  msgid "Display a WYSIWYG editor on the frontend?"
2870
  msgstr "Visa en WYSIWYG editor på frontend?"
2871
 
2872
+ #: includes/fields/class-fieldtypes-textarea.php:218
2873
  msgctxt "form-fields admin"
2874
  msgid ""
2875
  "<b>Warning:</b> Users can use this feature to get around your image limits "
2878
  "<b>Varning:</b> Användare kan använda den här funktionen för att komma runt "
2879
  "bildgränser i avgiftsplanerna."
2880
 
2881
+ #: includes/fields/class-fieldtypes-textarea.php:219
2882
  msgctxt "form-fields admin"
2883
  msgid "Allow images in WYSIWYG editor?"
2884
  msgstr "Tillåt bilder i WYSIWYG editor?"
2885
 
2886
+ #: includes/fields/class-fieldtypes-textarea.php:222
2887
  msgctxt "form-fields admin"
2888
  msgid ""
2889
  "<b>Advanced users only!</b> Unless you've been told to change this, don't "
2892
  "<b>Avancerade användare endast!</b> Om du inte har blivit tillsagd att ändra "
2893
  "detta, ändra inte om du inte vet vad du gör."
2894
 
2895
+ #: includes/fields/class-fieldtypes-textarea.php:223
2896
  msgctxt "form-fields admin"
2897
  msgid "Apply \"the_content\" filter before displaying this field?"
2898
  msgstr "Tillämpa \"the_content\"-filtret innan detta fält visas?"
2899
 
2900
+ #: includes/fields/class-fieldtypes-textarea.php:226
2901
  msgctxt "form-fields admin"
2902
  msgid "Use shortened version of Description field as excerpt"
2903
  msgstr ""
2904
 
2905
+ #: includes/fields/class-fieldtypes-textarea.php:227
2906
  msgctxt "form-fields admin"
2907
  msgid ""
2908
  "Enable always (override the Short Description given with a shortened Long "
2909
  "Description)"
2910
  msgstr ""
2911
 
2912
+ #: includes/fields/class-fieldtypes-textarea.php:228
2913
  msgctxt "form-fields admin"
2914
  msgid ""
2915
  "Enable conditionally (override ONLY when Short Description is empty with a "
2916
  "shortened Long Description)"
2917
  msgstr ""
2918
 
2919
+ #: includes/fields/class-fieldtypes-textarea.php:229
2920
  msgctxt "form-fields admin"
2921
  msgid "Disable (use the Short Description all the time, empty or not)"
2922
  msgstr ""
2923
 
2924
+ #: includes/fields/class-fieldtypes-textarea.php:231
2925
  msgctxt "form-fields admin"
2926
  msgid ""
2927
  "Truncates the description field to the value set here. To display all of the "
2928
  "description, set to 0."
2929
  msgstr ""
2930
 
2931
+ #: includes/fields/class-fieldtypes-textarea.php:232
2932
  msgctxt "form-fields admin"
2933
  msgid ""
2934
  "Number of Characters from Short Description/Excerpt to Display in List View "
2935
  "(only)"
2936
  msgstr ""
2937
 
2938
+ #: includes/fields/class-fieldtypes-textarea.php:237
2939
  msgctxt "form-fields admin"
2940
  msgid "Automatically generate excerpt from content field?"
2941
  msgstr "Generera utdrag automatiskt från innehållsfältet?"
5832
  msgstr "Gratis annons"
5833
 
5834
  #. translators: [%s] is the name of the blog.
5835
+ #: includes/class-listing-email-notification.php:239
5836
  msgctxt "notify email"
5837
  msgid "[%s] New listing notification"
5838
  msgstr "[%s] Notifiering om ny annons"
5839
 
5840
  #. translators: [%s] is the name of the blog.
5841
+ #: includes/class-listing-email-notification.php:290
5842
  msgctxt "notify email"
5843
  msgid "[%s] Listing edit notification"
5844
  msgstr "[%s] Notifiering om annonsändring"
5845
 
5846
  #. translators: %s is the name of the blog.
5847
+ #: includes/class-listing-email-notification.php:362
5848
  #, fuzzy
5849
  msgctxt "notify email"
5850
  msgid "[%s] Reported listing notification"
6193
  msgid "Can not submit a listing at this moment. Please try again later."
6194
  msgstr "Det går inte att registrera en annons just nu. Försök igen senare."
6195
 
6196
+ #: includes/views/submit_listing.php:550
6197
  msgctxt "submit listing"
6198
  msgid "Please select a category."
6199
  msgstr "Välj en kategori."
6200
 
6201
+ #: includes/views/submit_listing.php:563
6202
  msgctxt "submit listing"
6203
  msgid "Please select a category for your listing."
6204
  msgstr "Välj en kategori för din annons."
6205
 
6206
+ #: includes/views/submit_listing.php:583
6207
  msgctxt "submit listing"
6208
  msgid "Please choose a valid category for your plan."
6209
  msgstr "Välj en giltig kategori för din plan."
6210
 
6211
+ #: includes/views/submit_listing.php:585
6212
  msgctxt "submit listing"
6213
  msgid "Please choose a valid fee plan for your category selection."
6214
  msgstr "Välj en avgiftsplan för ditt kategorival."
6215
 
6216
+ #: includes/views/submit_listing.php:826
6217
  msgctxt "submit listing"
6218
  msgid "Please enter your desired username."
6219
  msgstr "Fyll i ditt önskade användarnamn."
6220
 
6221
+ #: includes/views/submit_listing.php:831
6222
  msgctxt "submit listing"
6223
  msgid "Please enter the e-mail for your new account."
6224
  msgstr "Fyll i e-postadressen för ditt nya konto."
6225
 
6226
+ #: includes/views/submit_listing.php:836
6227
  msgctxt "submit listing"
6228
  msgid "Please enter the password for your new account."
6229
  msgstr "Ange lösenordet för ditt nya konto."
6230
 
6231
+ #: includes/views/submit_listing.php:846
6232
  msgctxt "submit listing"
6233
  msgid "The username you chose is already in use. Please use a different one."
6234
  msgstr "Användarnamnet upptaget, var vänlig försök med ett annat."
6235
 
6236
+ #: includes/views/submit_listing.php:851
6237
  msgctxt "submit listing"
6238
  msgid "The e-mail address you chose for your account is already in use."
6239
  msgstr "E-postadressen du valt för ditt konto används redan."
6240
 
6241
+ #: includes/views/submit_listing.php:866
6242
  msgctxt "submit listing"
6243
  msgid "Create a user account on this site"
6244
  msgstr "Skapa ett användarkonto på denna webbplats"
6245
 
6246
+ #: includes/views/submit_listing.php:873
6247
  msgctxt "submit listing"
6248
  msgid ""
6249
  "You need to create an account on the site. Please fill out the form below."
6251
  "Du måste skapa ett konto för denna webbplatsen. Vänligen fyll i formuläret "
6252
  "nedan."
6253
 
6254
+ #: includes/views/submit_listing.php:879
6255
  msgctxt "submit listing"
6256
  msgid "Username:"
6257
  msgstr "Användarnamn:"
6258
 
6259
+ #: includes/views/submit_listing.php:888
6260
  msgctxt "submit listing"
6261
  msgid "Email:"
6262
  msgstr "E-postadress:"
6263
 
6264
+ #: includes/views/submit_listing.php:897
6265
  msgctxt "submit listing"
6266
  msgid "Password:"
6267
  msgstr "Lösenord:"
6467
  msgid "Link Text (optional):"
6468
  msgstr "Länktext (valfritt):"
6469
 
6470
+ #: includes/fields/class-form-field.php:710
6471
  msgctxt "form-fields api"
6472
  msgid ""
6473
  "This form field can't be deleted because it is required for the plugin to "
6544
  msgid "Invalid form field type"
6545
  msgstr "Ogiltig formulärfält typ"
6546
 
6547
+ #: includes/fields/class-form-field.php:589
6548
  msgctxt "form-fields-api"
6549
  msgid "Field label is required."
6550
  msgstr "Fältetikett krävs"
6551
 
6552
+ #: includes/fields/class-form-field.php:593
6553
  msgctxt "form-fields-api"
6554
  msgid "Field label max length is 255 characters."
6555
  msgstr ""
6556
 
6557
+ #: includes/fields/class-form-field.php:597
6558
  msgctxt "form-fields-api"
6559
  msgid "Field description max length is 255 characters."
6560
  msgstr ""
6561
 
6562
+ #: includes/fields/class-form-field.php:608
6563
  msgctxt "form-fields-api"
6564
  msgid ""
6565
  "You can't change from %2$s field type to the one you wanted--the types are "
6567
  "delete this current field and create a NEW field of type %1$s instead."
6568
  msgstr ""
6569
 
6570
+ #: includes/fields/class-form-field.php:611
6571
  msgctxt "form-fields-api"
6572
  msgid ""
6573
  "<strong>WARNING</strong>: If you delete this field, the data from it in "
6574
  "existing listings will be deleted as well."
6575
  msgstr ""
6576
 
6577
+ #: includes/fields/class-form-field.php:645
6578
  msgctxt "form-fields-api"
6579
  msgid ""
6580
  "There can only be one field with association \"%s\". Please select another "
6583
  "Det kan bara finnas ett fält med associationen \"%s\". Välj en annan "
6584
  "association."
6585
 
6586
+ #: includes/fields/class-form-field.php:655
6587
  msgctxt "form-fields-api"
6588
  msgid "\"%s\" is an invalid field type for this association."
6589
  msgstr "\"%s\" är en ogiltig fälttyp för denna association."
6590
 
6591
+ #: includes/fields/class-form-field.php:700
6592
  msgctxt "form-fields-api"
6593
  msgid "Invalid field ID"
6594
  msgstr "Ogiltigt fält-ID"
6595
 
6596
+ #: includes/fields/class-form-field.php:723
6597
  msgctxt "form-fields-api"
6598
  msgid "An error occurred while trying to delete this field."
6599
  msgstr "Ett fel uppstod när försök gjordes att radera detta fält."
6667
  msgid "— None —"
6668
  msgstr "— Inget —"
6669
 
6670
+ #: includes/fields/class-fieldtypes-textarea.php:203
6671
  msgctxt "admin form-fields"
6672
  msgid ""
6673
  "Enabling iframe support in your listings can allow users to execute "
6834
  #: includes/views/submit_listing.php:511
6835
  msgctxt "templates"
6836
  msgid ""
6837
+ "<b>There are no Fee Plans available</b>, without a fee plan site users can't "
6838
+ "submit a listing. %s to create a fee plan"
6839
+ msgstr ""
6840
+
6841
+ #: includes/views/submit_listing.php:525
6842
+ msgctxt "templates"
6843
+ msgid ""
6844
  "Listing submission is not available at the moment. Contact the administrator "
6845
  "for details."
6846
  msgstr ""
6847
 
6848
+ #: includes/views/submit_listing.php:528
6849
  msgctxt "templates"
6850
  msgid ""
6851
  "<b>View not available</b>, there is no \"Category\" association field. %s "
6853
  "an existing field"
6854
  msgstr ""
6855
 
6856
+ #: includes/views/submit_listing.php:935
6857
  msgctxt "templates"
6858
  msgid "Please agree to the Terms and Conditions."
6859
  msgstr "Vänligen godkänn villkoren"
6860
 
6861
+ #: includes/views/submit_listing.php:943
6862
  msgctxt "templates"
6863
  msgid "Terms and Conditions:"
6864
  msgstr "Villkor"
6865
 
6866
+ #: includes/views/submit_listing.php:951
6867
  msgctxt "templates"
6868
  msgid "I agree to the <a>Terms and Conditions</a>"
6869
  msgstr "Jag godtar <a>villkoren</a>."
8241
  msgid "URL:"
8242
  msgstr "URL:"
8243
 
8244
+ #: includes/views/search.php:46
8245
  msgctxt "search"
8246
  msgid "\"%s\" is required."
8247
  msgstr "\"%s\" är obligatorisk."
8268
  msgstr ""
8269
  "Detta är enbart en förhandsgranskning, annonsen har inte publicerats ännu."
8270
 
8271
+ #: includes/views/submit_listing.php:694
8272
  msgctxt "listing submit"
8273
  msgid ""
8274
  "Something went wrong. Please check the form for errors, correct them and "
8277
  "Något gick fel. Vänligen kontrollera formuläret för fel, rätta till dem och "
8278
  "skicka igen."
8279
 
8280
+ #: includes/views/submit_listing.php:778
8281
  msgctxt "listing submit"
8282
  msgid ""
8283
  "Image upload is required, please provide at least one image and submit again."
languages/WPBDM.pot CHANGED
@@ -2,10 +2,10 @@
2
  # This file is distributed under the GPLv2 or any later version.
3
  msgid ""
4
  msgstr ""
5
- "Project-Id-Version: Business Directory Plugin 5.5.11dev5\n"
6
  "Report-Msgid-Bugs-To: "
7
  "https://wordpress.org/support/plugin/business-directory-plugin\n"
8
- "POT-Creation-Date: 2019-10-30 22:21:32+00:00\n"
9
  "MIME-Version: 1.0\n"
10
  "Content-Type: text/plain; charset=utf-8\n"
11
  "Content-Transfer-Encoding: 8bit\n"
@@ -204,6 +204,41 @@ msgstr ""
204
  msgid "Directory Tag"
205
  msgstr ""
206
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
207
  #: includes/class-payment-gateway.php:142
208
  msgid ""
209
  "There was an unexpected error trying to cancel your subscription. Please "
@@ -1003,48 +1038,55 @@ msgctxt "admin"
1003
  msgid "Renewal email sent."
1004
  msgstr ""
1005
 
1006
- #: includes/admin/class-admin.php:761
 
 
 
 
 
 
 
1007
  msgctxt "admin"
1008
  msgid "Listing report deleted."
1009
  msgid_plural "Listing reports deleted."
1010
  msgstr[0] ""
1011
  msgstr[1] ""
1012
 
1013
- #: includes/admin/class-admin.php:809
1014
  msgctxt "admin"
1015
  msgid "Access keys sent."
1016
  msgstr ""
1017
 
1018
- #: includes/admin/class-admin.php:811
1019
  msgctxt "admin"
1020
  msgid "The access keys couldn't be sent."
1021
  msgstr ""
1022
 
1023
- #: includes/admin/class-admin.php:869 includes/admin/class-admin.php:875
1024
  msgctxt "admin"
1025
  msgid "Listing Count"
1026
  msgstr ""
1027
 
1028
- #: includes/admin/class-admin.php:937
1029
  msgctxt "admin"
1030
  msgid ""
1031
  "<b>Business Directory Plugin</b> requires a page with the "
1032
  "<tt>[businessdirectory]</tt> shortcode to function properly."
1033
  msgstr ""
1034
 
1035
- #: includes/admin/class-admin.php:939
1036
  msgctxt "admin"
1037
  msgid ""
1038
  "You can create this page by yourself or let Business Directory do this for "
1039
  "you automatically."
1040
  msgstr ""
1041
 
1042
- #: includes/admin/class-admin.php:943
1043
  msgctxt "admin"
1044
  msgid "Create required pages for me"
1045
  msgstr ""
1046
 
1047
- #: includes/admin/class-admin.php:976
1048
  msgctxt "admin"
1049
  msgid ""
1050
  "<strong>Business Directory Plugin</strong> requires <strong>PHP "
@@ -1053,7 +1095,7 @@ msgid ""
1053
  "prevent any issues with the plugin."
1054
  msgstr ""
1055
 
1056
- #: includes/admin/class-admin.php:999
1057
  msgctxt "admin"
1058
  msgid ""
1059
  "We noticed you want your Business Directory users to register before "
@@ -1097,7 +1139,7 @@ msgid ""
1097
  "Fields\" or let Business Directory do this for you automatically."
1098
  msgstr ""
1099
 
1100
- #: includes/admin/form-fields.php:214 includes/views/submit_listing.php:521
1101
  msgctxt "admin"
1102
  msgid "Go to \"Manage Form Fields\""
1103
  msgstr ""
@@ -1117,6 +1159,11 @@ msgctxt "admin"
1117
  msgid "Abandoned"
1118
  msgstr ""
1119
 
 
 
 
 
 
1120
  #: includes/admin/class-admin-listings.php:304
1121
  msgctxt "listing attribute"
1122
  msgid "No Fee Plan"
@@ -1436,7 +1483,7 @@ msgctxt "admin menu"
1436
  msgid "Manage Options"
1437
  msgstr ""
1438
 
1439
- #: includes/admin/class-admin.php:867
1440
  msgctxt "admin category id"
1441
  msgid "ID"
1442
  msgstr ""
@@ -2612,99 +2659,99 @@ msgctxt "form-fields admin"
2612
  msgid "Field Display Order"
2613
  msgstr ""
2614
 
2615
- #: includes/fields/class-fieldtypes-textarea.php:194
2616
  msgctxt "form-fields admin"
2617
  msgid "Allow HTML input for this field?"
2618
  msgstr ""
2619
 
2620
- #: includes/fields/class-fieldtypes-textarea.php:197
2621
  msgctxt "form-fields admin"
2622
  msgid "Allow IFRAME tags in content?"
2623
  msgstr ""
2624
 
2625
- #: includes/fields/class-fieldtypes-textarea.php:201
2626
  msgctxt "form-fields admin"
2627
  msgid "No"
2628
  msgstr ""
2629
 
2630
- #: includes/fields/class-fieldtypes-textarea.php:202
2631
  msgctxt "form-fields admin"
2632
  msgid "Yes"
2633
  msgstr ""
2634
 
2635
- #: includes/fields/class-fieldtypes-textarea.php:207
2636
  msgctxt "form-fields admin"
2637
  msgid "Allow WordPress shortcodes in this field?"
2638
  msgstr ""
2639
 
2640
- #: includes/fields/class-fieldtypes-textarea.php:212
2641
  msgctxt "form-fields admin"
2642
  msgid "Display a WYSIWYG editor on the frontend?"
2643
  msgstr ""
2644
 
2645
- #: includes/fields/class-fieldtypes-textarea.php:215
2646
  msgctxt "form-fields admin"
2647
  msgid ""
2648
  "<b>Warning:</b> Users can use this feature to get around your image limits "
2649
  "in fee plans."
2650
  msgstr ""
2651
 
2652
- #: includes/fields/class-fieldtypes-textarea.php:216
2653
  msgctxt "form-fields admin"
2654
  msgid "Allow images in WYSIWYG editor?"
2655
  msgstr ""
2656
 
2657
- #: includes/fields/class-fieldtypes-textarea.php:219
2658
  msgctxt "form-fields admin"
2659
  msgid ""
2660
  "<b>Advanced users only!</b> Unless you've been told to change this, don't "
2661
  "switch it unless you know what you're doing."
2662
  msgstr ""
2663
 
2664
- #: includes/fields/class-fieldtypes-textarea.php:220
2665
  msgctxt "form-fields admin"
2666
  msgid "Apply \"the_content\" filter before displaying this field?"
2667
  msgstr ""
2668
 
2669
- #: includes/fields/class-fieldtypes-textarea.php:223
2670
  msgctxt "form-fields admin"
2671
  msgid "Use shortened version of Description field as excerpt"
2672
  msgstr ""
2673
 
2674
- #: includes/fields/class-fieldtypes-textarea.php:224
2675
  msgctxt "form-fields admin"
2676
  msgid ""
2677
  "Enable always (override the Short Description given with a shortened Long "
2678
  "Description)"
2679
  msgstr ""
2680
 
2681
- #: includes/fields/class-fieldtypes-textarea.php:225
2682
  msgctxt "form-fields admin"
2683
  msgid ""
2684
  "Enable conditionally (override ONLY when Short Description is empty with a "
2685
  "shortened Long Description)"
2686
  msgstr ""
2687
 
2688
- #: includes/fields/class-fieldtypes-textarea.php:226
2689
  msgctxt "form-fields admin"
2690
  msgid "Disable (use the Short Description all the time, empty or not)"
2691
  msgstr ""
2692
 
2693
- #: includes/fields/class-fieldtypes-textarea.php:228
2694
  msgctxt "form-fields admin"
2695
  msgid ""
2696
  "Truncates the description field to the value set here. To display all of "
2697
  "the description, set to 0."
2698
  msgstr ""
2699
 
2700
- #: includes/fields/class-fieldtypes-textarea.php:229
2701
  msgctxt "form-fields admin"
2702
  msgid ""
2703
  "Number of Characters from Short Description/Excerpt to Display in List View "
2704
  "(only)"
2705
  msgstr ""
2706
 
2707
- #: includes/fields/class-fieldtypes-textarea.php:234
2708
  msgctxt "form-fields admin"
2709
  msgid "Automatically generate excerpt from content field?"
2710
  msgstr ""
@@ -5421,19 +5468,19 @@ msgctxt "fees-api"
5421
  msgid "Free Listing"
5422
  msgstr ""
5423
 
5424
- #: includes/class-listing-email-notification.php:235
5425
  #. translators: [%s] is the name of the blog.
5426
  msgctxt "notify email"
5427
  msgid "[%s] New listing notification"
5428
  msgstr ""
5429
 
5430
- #: includes/class-listing-email-notification.php:286
5431
  #. translators: [%s] is the name of the blog.
5432
  msgctxt "notify email"
5433
  msgid "[%s] Listing edit notification"
5434
  msgstr ""
5435
 
5436
- #: includes/class-listing-email-notification.php:358
5437
  #. translators: %s is the name of the blog.
5438
  msgctxt "notify email"
5439
  msgid "[%s] Reported listing notification"
@@ -5760,72 +5807,72 @@ msgctxt "submit listing"
5760
  msgid "Can not submit a listing at this moment. Please try again later."
5761
  msgstr ""
5762
 
5763
- #: includes/views/submit_listing.php:536
5764
  msgctxt "submit listing"
5765
  msgid "Please select a category."
5766
  msgstr ""
5767
 
5768
- #: includes/views/submit_listing.php:549
5769
  msgctxt "submit listing"
5770
  msgid "Please select a category for your listing."
5771
  msgstr ""
5772
 
5773
- #: includes/views/submit_listing.php:569
5774
  msgctxt "submit listing"
5775
  msgid "Please choose a valid category for your plan."
5776
  msgstr ""
5777
 
5778
- #: includes/views/submit_listing.php:571
5779
  msgctxt "submit listing"
5780
  msgid "Please choose a valid fee plan for your category selection."
5781
  msgstr ""
5782
 
5783
- #: includes/views/submit_listing.php:812
5784
  msgctxt "submit listing"
5785
  msgid "Please enter your desired username."
5786
  msgstr ""
5787
 
5788
- #: includes/views/submit_listing.php:817
5789
  msgctxt "submit listing"
5790
  msgid "Please enter the e-mail for your new account."
5791
  msgstr ""
5792
 
5793
- #: includes/views/submit_listing.php:822
5794
  msgctxt "submit listing"
5795
  msgid "Please enter the password for your new account."
5796
  msgstr ""
5797
 
5798
- #: includes/views/submit_listing.php:832
5799
  msgctxt "submit listing"
5800
  msgid "The username you chose is already in use. Please use a different one."
5801
  msgstr ""
5802
 
5803
- #: includes/views/submit_listing.php:837
5804
  msgctxt "submit listing"
5805
  msgid "The e-mail address you chose for your account is already in use."
5806
  msgstr ""
5807
 
5808
- #: includes/views/submit_listing.php:852
5809
  msgctxt "submit listing"
5810
  msgid "Create a user account on this site"
5811
  msgstr ""
5812
 
5813
- #: includes/views/submit_listing.php:859
5814
  msgctxt "submit listing"
5815
  msgid "You need to create an account on the site. Please fill out the form below."
5816
  msgstr ""
5817
 
5818
- #: includes/views/submit_listing.php:865
5819
  msgctxt "submit listing"
5820
  msgid "Username:"
5821
  msgstr ""
5822
 
5823
- #: includes/views/submit_listing.php:874
5824
  msgctxt "submit listing"
5825
  msgid "Email:"
5826
  msgstr ""
5827
 
5828
- #: includes/views/submit_listing.php:883
5829
  msgctxt "submit listing"
5830
  msgid "Password:"
5831
  msgstr ""
@@ -6022,7 +6069,7 @@ msgctxt "form-fields api"
6022
  msgid "Link Text (optional):"
6023
  msgstr ""
6024
 
6025
- #: includes/fields/class-form-field.php:707
6026
  msgctxt "form-fields api"
6027
  msgid ""
6028
  "This form field can't be deleted because it is required for the plugin to "
@@ -6095,22 +6142,22 @@ msgctxt "form-fields-api"
6095
  msgid "Invalid form field type"
6096
  msgstr ""
6097
 
6098
- #: includes/fields/class-form-field.php:586
6099
  msgctxt "form-fields-api"
6100
  msgid "Field label is required."
6101
  msgstr ""
6102
 
6103
- #: includes/fields/class-form-field.php:590
6104
  msgctxt "form-fields-api"
6105
  msgid "Field label max length is 255 characters."
6106
  msgstr ""
6107
 
6108
- #: includes/fields/class-form-field.php:594
6109
  msgctxt "form-fields-api"
6110
  msgid "Field description max length is 255 characters."
6111
  msgstr ""
6112
 
6113
- #: includes/fields/class-form-field.php:605
6114
  msgctxt "form-fields-api"
6115
  msgid ""
6116
  "You can't change from %2$s field type to the one you wanted--the types are "
@@ -6118,31 +6165,31 @@ msgid ""
6118
  "delete this current field and create a NEW field of type %1$s instead."
6119
  msgstr ""
6120
 
6121
- #: includes/fields/class-form-field.php:608
6122
  msgctxt "form-fields-api"
6123
  msgid ""
6124
  "<strong>WARNING</strong>: If you delete this field, the data from it in "
6125
  "existing listings will be deleted as well."
6126
  msgstr ""
6127
 
6128
- #: includes/fields/class-form-field.php:642
6129
  msgctxt "form-fields-api"
6130
  msgid ""
6131
  "There can only be one field with association \"%s\". Please select another "
6132
  "association."
6133
  msgstr ""
6134
 
6135
- #: includes/fields/class-form-field.php:652
6136
  msgctxt "form-fields-api"
6137
  msgid "\"%s\" is an invalid field type for this association."
6138
  msgstr ""
6139
 
6140
- #: includes/fields/class-form-field.php:697
6141
  msgctxt "form-fields-api"
6142
  msgid "Invalid field ID"
6143
  msgstr ""
6144
 
6145
- #: includes/fields/class-form-field.php:720
6146
  msgctxt "form-fields-api"
6147
  msgid "An error occurred while trying to delete this field."
6148
  msgstr ""
@@ -6215,7 +6262,7 @@ msgctxt "form-fields-api select"
6215
  msgid "— None —"
6216
  msgstr ""
6217
 
6218
- #: includes/fields/class-fieldtypes-textarea.php:200
6219
  msgctxt "admin form-fields"
6220
  msgid ""
6221
  "Enabling iframe support in your listings can allow users to execute "
@@ -6358,11 +6405,18 @@ msgstr ""
6358
  #: includes/views/submit_listing.php:511
6359
  msgctxt "templates"
6360
  msgid ""
 
 
 
 
 
 
 
6361
  "Listing submission is not available at the moment. Contact the "
6362
  "administrator for details."
6363
  msgstr ""
6364
 
6365
- #: includes/views/submit_listing.php:514
6366
  msgctxt "templates"
6367
  msgid ""
6368
  "<b>View not available</b>, there is no \"Category\" association field. %s "
@@ -6370,17 +6424,17 @@ msgid ""
6370
  "an existing field"
6371
  msgstr ""
6372
 
6373
- #: includes/views/submit_listing.php:921
6374
  msgctxt "templates"
6375
  msgid "Please agree to the Terms and Conditions."
6376
  msgstr ""
6377
 
6378
- #: includes/views/submit_listing.php:929
6379
  msgctxt "templates"
6380
  msgid "Terms and Conditions:"
6381
  msgstr ""
6382
 
6383
- #: includes/views/submit_listing.php:937
6384
  msgctxt "templates"
6385
  msgid "I agree to the <a>Terms and Conditions</a>"
6386
  msgstr ""
@@ -7638,7 +7692,7 @@ msgctxt "request_access_keys"
7638
  msgid "URL:"
7639
  msgstr ""
7640
 
7641
- #: includes/views/search.php:45
7642
  msgctxt "search"
7643
  msgid "\"%s\" is required."
7644
  msgstr ""
@@ -7664,14 +7718,14 @@ msgctxt "preview"
7664
  msgid "This is just a preview. The listing has not been published yet."
7665
  msgstr ""
7666
 
7667
- #: includes/views/submit_listing.php:680
7668
  msgctxt "listing submit"
7669
  msgid ""
7670
  "Something went wrong. Please check the form for errors, correct them and "
7671
  "submit again."
7672
  msgstr ""
7673
 
7674
- #: includes/views/submit_listing.php:764
7675
  msgctxt "listing submit"
7676
  msgid ""
7677
  "Image upload is required, please provide at least one image and submit "
2
  # This file is distributed under the GPLv2 or any later version.
3
  msgid ""
4
  msgstr ""
5
+ "Project-Id-Version: Business Directory Plugin 5.5.12dev4\n"
6
  "Report-Msgid-Bugs-To: "
7
  "https://wordpress.org/support/plugin/business-directory-plugin\n"
8
+ "POT-Creation-Date: 2019-11-19 21:50:15+00:00\n"
9
  "MIME-Version: 1.0\n"
10
  "Content-Type: text/plain; charset=utf-8\n"
11
  "Content-Transfer-Encoding: 8bit\n"
204
  msgid "Directory Tag"
205
  msgstr ""
206
 
207
+ #: includes/class-cpt-integration.php:235
208
+ #. translators: %s: listing count
209
+ msgid "%s listing updated."
210
+ msgid_plural "%s listings updated."
211
+ msgstr[0] ""
212
+ msgstr[1] ""
213
+
214
+ #: includes/class-cpt-integration.php:237
215
+ #. translators: %s: listing count
216
+ msgid "%s listing not updated, somebody is editing it."
217
+ msgid_plural "%s listings not updated, somebody is editing them."
218
+ msgstr[0] ""
219
+ msgstr[1] ""
220
+
221
+ #: includes/class-cpt-integration.php:239
222
+ #. translators: %s: listing count
223
+ msgid "%s listing permanently deleted."
224
+ msgid_plural "%s listings permanently deleted."
225
+ msgstr[0] ""
226
+ msgstr[1] ""
227
+
228
+ #: includes/class-cpt-integration.php:241
229
+ #. translators: %s: listing count
230
+ msgid "%s listing moved to the Trash."
231
+ msgid_plural "%s listings moved to the Trash."
232
+ msgstr[0] ""
233
+ msgstr[1] ""
234
+
235
+ #: includes/class-cpt-integration.php:243
236
+ #. translators: %s: listing count
237
+ msgid "%s listing restored from the Trash."
238
+ msgid_plural "%s listings restored from the Trash."
239
+ msgstr[0] ""
240
+ msgstr[1] ""
241
+
242
  #: includes/class-payment-gateway.php:142
243
  msgid ""
244
  "There was an unexpected error trying to cancel your subscription. Please "
1038
  msgid "Renewal email sent."
1039
  msgstr ""
1040
 
1041
+ #: includes/admin/class-admin.php:758
1042
+ msgctxt "admin"
1043
+ msgid ""
1044
+ "Could not send renewal email, notice template at listing expiration not "
1045
+ "found."
1046
+ msgstr ""
1047
+
1048
+ #: includes/admin/class-admin.php:765
1049
  msgctxt "admin"
1050
  msgid "Listing report deleted."
1051
  msgid_plural "Listing reports deleted."
1052
  msgstr[0] ""
1053
  msgstr[1] ""
1054
 
1055
+ #: includes/admin/class-admin.php:813
1056
  msgctxt "admin"
1057
  msgid "Access keys sent."
1058
  msgstr ""
1059
 
1060
+ #: includes/admin/class-admin.php:815
1061
  msgctxt "admin"
1062
  msgid "The access keys couldn't be sent."
1063
  msgstr ""
1064
 
1065
+ #: includes/admin/class-admin.php:873 includes/admin/class-admin.php:879
1066
  msgctxt "admin"
1067
  msgid "Listing Count"
1068
  msgstr ""
1069
 
1070
+ #: includes/admin/class-admin.php:941
1071
  msgctxt "admin"
1072
  msgid ""
1073
  "<b>Business Directory Plugin</b> requires a page with the "
1074
  "<tt>[businessdirectory]</tt> shortcode to function properly."
1075
  msgstr ""
1076
 
1077
+ #: includes/admin/class-admin.php:943
1078
  msgctxt "admin"
1079
  msgid ""
1080
  "You can create this page by yourself or let Business Directory do this for "
1081
  "you automatically."
1082
  msgstr ""
1083
 
1084
+ #: includes/admin/class-admin.php:947
1085
  msgctxt "admin"
1086
  msgid "Create required pages for me"
1087
  msgstr ""
1088
 
1089
+ #: includes/admin/class-admin.php:980
1090
  msgctxt "admin"
1091
  msgid ""
1092
  "<strong>Business Directory Plugin</strong> requires <strong>PHP "
1095
  "prevent any issues with the plugin."
1096
  msgstr ""
1097
 
1098
+ #: includes/admin/class-admin.php:1003
1099
  msgctxt "admin"
1100
  msgid ""
1101
  "We noticed you want your Business Directory users to register before "
1139
  "Fields\" or let Business Directory do this for you automatically."
1140
  msgstr ""
1141
 
1142
+ #: includes/admin/form-fields.php:214 includes/views/submit_listing.php:535
1143
  msgctxt "admin"
1144
  msgid "Go to \"Manage Form Fields\""
1145
  msgstr ""
1159
  msgid "Abandoned"
1160
  msgstr ""
1161
 
1162
+ #: includes/views/submit_listing.php:518
1163
+ msgctxt "admin"
1164
+ msgid "Go to \"Manage Fees\""
1165
+ msgstr ""
1166
+
1167
  #: includes/admin/class-admin-listings.php:304
1168
  msgctxt "listing attribute"
1169
  msgid "No Fee Plan"
1483
  msgid "Manage Options"
1484
  msgstr ""
1485
 
1486
+ #: includes/admin/class-admin.php:871
1487
  msgctxt "admin category id"
1488
  msgid "ID"
1489
  msgstr ""
2659
  msgid "Field Display Order"
2660
  msgstr ""
2661
 
2662
+ #: includes/fields/class-fieldtypes-textarea.php:197
2663
  msgctxt "form-fields admin"
2664
  msgid "Allow HTML input for this field?"
2665
  msgstr ""
2666
 
2667
+ #: includes/fields/class-fieldtypes-textarea.php:200
2668
  msgctxt "form-fields admin"
2669
  msgid "Allow IFRAME tags in content?"
2670
  msgstr ""
2671
 
2672
+ #: includes/fields/class-fieldtypes-textarea.php:204
2673
  msgctxt "form-fields admin"
2674
  msgid "No"
2675
  msgstr ""
2676
 
2677
+ #: includes/fields/class-fieldtypes-textarea.php:205
2678
  msgctxt "form-fields admin"
2679
  msgid "Yes"
2680
  msgstr ""
2681
 
2682
+ #: includes/fields/class-fieldtypes-textarea.php:210
2683
  msgctxt "form-fields admin"
2684
  msgid "Allow WordPress shortcodes in this field?"
2685
  msgstr ""
2686
 
2687
+ #: includes/fields/class-fieldtypes-textarea.php:215
2688
  msgctxt "form-fields admin"
2689
  msgid "Display a WYSIWYG editor on the frontend?"
2690
  msgstr ""
2691
 
2692
+ #: includes/fields/class-fieldtypes-textarea.php:218
2693
  msgctxt "form-fields admin"
2694
  msgid ""
2695
  "<b>Warning:</b> Users can use this feature to get around your image limits "
2696
  "in fee plans."
2697
  msgstr ""
2698
 
2699
+ #: includes/fields/class-fieldtypes-textarea.php:219
2700
  msgctxt "form-fields admin"
2701
  msgid "Allow images in WYSIWYG editor?"
2702
  msgstr ""
2703
 
2704
+ #: includes/fields/class-fieldtypes-textarea.php:222
2705
  msgctxt "form-fields admin"
2706
  msgid ""
2707
  "<b>Advanced users only!</b> Unless you've been told to change this, don't "
2708
  "switch it unless you know what you're doing."
2709
  msgstr ""
2710
 
2711
+ #: includes/fields/class-fieldtypes-textarea.php:223
2712
  msgctxt "form-fields admin"
2713
  msgid "Apply \"the_content\" filter before displaying this field?"
2714
  msgstr ""
2715
 
2716
+ #: includes/fields/class-fieldtypes-textarea.php:226
2717
  msgctxt "form-fields admin"
2718
  msgid "Use shortened version of Description field as excerpt"
2719
  msgstr ""
2720
 
2721
+ #: includes/fields/class-fieldtypes-textarea.php:227
2722
  msgctxt "form-fields admin"
2723
  msgid ""
2724
  "Enable always (override the Short Description given with a shortened Long "
2725
  "Description)"
2726
  msgstr ""
2727
 
2728
+ #: includes/fields/class-fieldtypes-textarea.php:228
2729
  msgctxt "form-fields admin"
2730
  msgid ""
2731
  "Enable conditionally (override ONLY when Short Description is empty with a "
2732
  "shortened Long Description)"
2733
  msgstr ""
2734
 
2735
+ #: includes/fields/class-fieldtypes-textarea.php:229
2736
  msgctxt "form-fields admin"
2737
  msgid "Disable (use the Short Description all the time, empty or not)"
2738
  msgstr ""
2739
 
2740
+ #: includes/fields/class-fieldtypes-textarea.php:231
2741
  msgctxt "form-fields admin"
2742
  msgid ""
2743
  "Truncates the description field to the value set here. To display all of "
2744
  "the description, set to 0."
2745
  msgstr ""
2746
 
2747
+ #: includes/fields/class-fieldtypes-textarea.php:232
2748
  msgctxt "form-fields admin"
2749
  msgid ""
2750
  "Number of Characters from Short Description/Excerpt to Display in List View "
2751
  "(only)"
2752
  msgstr ""
2753
 
2754
+ #: includes/fields/class-fieldtypes-textarea.php:237
2755
  msgctxt "form-fields admin"
2756
  msgid "Automatically generate excerpt from content field?"
2757
  msgstr ""
5468
  msgid "Free Listing"
5469
  msgstr ""
5470
 
5471
+ #: includes/class-listing-email-notification.php:239
5472
  #. translators: [%s] is the name of the blog.
5473
  msgctxt "notify email"
5474
  msgid "[%s] New listing notification"
5475
  msgstr ""
5476
 
5477
+ #: includes/class-listing-email-notification.php:290
5478
  #. translators: [%s] is the name of the blog.
5479
  msgctxt "notify email"
5480
  msgid "[%s] Listing edit notification"
5481
  msgstr ""
5482
 
5483
+ #: includes/class-listing-email-notification.php:362
5484
  #. translators: %s is the name of the blog.
5485
  msgctxt "notify email"
5486
  msgid "[%s] Reported listing notification"
5807
  msgid "Can not submit a listing at this moment. Please try again later."
5808
  msgstr ""
5809
 
5810
+ #: includes/views/submit_listing.php:550
5811
  msgctxt "submit listing"
5812
  msgid "Please select a category."
5813
  msgstr ""
5814
 
5815
+ #: includes/views/submit_listing.php:563
5816
  msgctxt "submit listing"
5817
  msgid "Please select a category for your listing."
5818
  msgstr ""
5819
 
5820
+ #: includes/views/submit_listing.php:583
5821
  msgctxt "submit listing"
5822
  msgid "Please choose a valid category for your plan."
5823
  msgstr ""
5824
 
5825
+ #: includes/views/submit_listing.php:585
5826
  msgctxt "submit listing"
5827
  msgid "Please choose a valid fee plan for your category selection."
5828
  msgstr ""
5829
 
5830
+ #: includes/views/submit_listing.php:826
5831
  msgctxt "submit listing"
5832
  msgid "Please enter your desired username."
5833
  msgstr ""
5834
 
5835
+ #: includes/views/submit_listing.php:831
5836
  msgctxt "submit listing"
5837
  msgid "Please enter the e-mail for your new account."
5838
  msgstr ""
5839
 
5840
+ #: includes/views/submit_listing.php:836
5841
  msgctxt "submit listing"
5842
  msgid "Please enter the password for your new account."
5843
  msgstr ""
5844
 
5845
+ #: includes/views/submit_listing.php:846
5846
  msgctxt "submit listing"
5847
  msgid "The username you chose is already in use. Please use a different one."
5848
  msgstr ""
5849
 
5850
+ #: includes/views/submit_listing.php:851
5851
  msgctxt "submit listing"
5852
  msgid "The e-mail address you chose for your account is already in use."
5853
  msgstr ""
5854
 
5855
+ #: includes/views/submit_listing.php:866
5856
  msgctxt "submit listing"
5857
  msgid "Create a user account on this site"
5858
  msgstr ""
5859
 
5860
+ #: includes/views/submit_listing.php:873
5861
  msgctxt "submit listing"
5862
  msgid "You need to create an account on the site. Please fill out the form below."
5863
  msgstr ""
5864
 
5865
+ #: includes/views/submit_listing.php:879
5866
  msgctxt "submit listing"
5867
  msgid "Username:"
5868
  msgstr ""
5869
 
5870
+ #: includes/views/submit_listing.php:888
5871
  msgctxt "submit listing"
5872
  msgid "Email:"
5873
  msgstr ""
5874
 
5875
+ #: includes/views/submit_listing.php:897
5876
  msgctxt "submit listing"
5877
  msgid "Password:"
5878
  msgstr ""
6069
  msgid "Link Text (optional):"
6070
  msgstr ""
6071
 
6072
+ #: includes/fields/class-form-field.php:710
6073
  msgctxt "form-fields api"
6074
  msgid ""
6075
  "This form field can't be deleted because it is required for the plugin to "
6142
  msgid "Invalid form field type"
6143
  msgstr ""
6144
 
6145
+ #: includes/fields/class-form-field.php:589
6146
  msgctxt "form-fields-api"
6147
  msgid "Field label is required."
6148
  msgstr ""
6149
 
6150
+ #: includes/fields/class-form-field.php:593
6151
  msgctxt "form-fields-api"
6152
  msgid "Field label max length is 255 characters."
6153
  msgstr ""
6154
 
6155
+ #: includes/fields/class-form-field.php:597
6156
  msgctxt "form-fields-api"
6157
  msgid "Field description max length is 255 characters."
6158
  msgstr ""
6159
 
6160
+ #: includes/fields/class-form-field.php:608
6161
  msgctxt "form-fields-api"
6162
  msgid ""
6163
  "You can't change from %2$s field type to the one you wanted--the types are "
6165
  "delete this current field and create a NEW field of type %1$s instead."
6166
  msgstr ""
6167
 
6168
+ #: includes/fields/class-form-field.php:611
6169
  msgctxt "form-fields-api"
6170
  msgid ""
6171
  "<strong>WARNING</strong>: If you delete this field, the data from it in "
6172
  "existing listings will be deleted as well."
6173
  msgstr ""
6174
 
6175
+ #: includes/fields/class-form-field.php:645
6176
  msgctxt "form-fields-api"
6177
  msgid ""
6178
  "There can only be one field with association \"%s\". Please select another "
6179
  "association."
6180
  msgstr ""
6181
 
6182
+ #: includes/fields/class-form-field.php:655
6183
  msgctxt "form-fields-api"
6184
  msgid "\"%s\" is an invalid field type for this association."
6185
  msgstr ""
6186
 
6187
+ #: includes/fields/class-form-field.php:700
6188
  msgctxt "form-fields-api"
6189
  msgid "Invalid field ID"
6190
  msgstr ""
6191
 
6192
+ #: includes/fields/class-form-field.php:723
6193
  msgctxt "form-fields-api"
6194
  msgid "An error occurred while trying to delete this field."
6195
  msgstr ""
6262
  msgid "— None —"
6263
  msgstr ""
6264
 
6265
+ #: includes/fields/class-fieldtypes-textarea.php:203
6266
  msgctxt "admin form-fields"
6267
  msgid ""
6268
  "Enabling iframe support in your listings can allow users to execute "
6405
  #: includes/views/submit_listing.php:511
6406
  msgctxt "templates"
6407
  msgid ""
6408
+ "<b>There are no Fee Plans available</b>, without a fee plan site users "
6409
+ "can't submit a listing. %s to create a fee plan"
6410
+ msgstr ""
6411
+
6412
+ #: includes/views/submit_listing.php:525
6413
+ msgctxt "templates"
6414
+ msgid ""
6415
  "Listing submission is not available at the moment. Contact the "
6416
  "administrator for details."
6417
  msgstr ""
6418
 
6419
+ #: includes/views/submit_listing.php:528
6420
  msgctxt "templates"
6421
  msgid ""
6422
  "<b>View not available</b>, there is no \"Category\" association field. %s "
6424
  "an existing field"
6425
  msgstr ""
6426
 
6427
+ #: includes/views/submit_listing.php:935
6428
  msgctxt "templates"
6429
  msgid "Please agree to the Terms and Conditions."
6430
  msgstr ""
6431
 
6432
+ #: includes/views/submit_listing.php:943
6433
  msgctxt "templates"
6434
  msgid "Terms and Conditions:"
6435
  msgstr ""
6436
 
6437
+ #: includes/views/submit_listing.php:951
6438
  msgctxt "templates"
6439
  msgid "I agree to the <a>Terms and Conditions</a>"
6440
  msgstr ""
7692
  msgid "URL:"
7693
  msgstr ""
7694
 
7695
+ #: includes/views/search.php:46
7696
  msgctxt "search"
7697
  msgid "\"%s\" is required."
7698
  msgstr ""
7718
  msgid "This is just a preview. The listing has not been published yet."
7719
  msgstr ""
7720
 
7721
+ #: includes/views/submit_listing.php:694
7722
  msgctxt "listing submit"
7723
  msgid ""
7724
  "Something went wrong. Please check the form for errors, correct them and "
7725
  "submit again."
7726
  msgstr ""
7727
 
7728
+ #: includes/views/submit_listing.php:778
7729
  msgctxt "listing submit"
7730
  msgid ""
7731
  "Image upload is required, please provide at least one image and submit "