Business Directory Plugin - Version 5.11.1

Version Description

Download this release

Release Info

Developer sswells
Plugin Icon 128x128 Business Directory Plugin
Version 5.11.1
Comparing to
See all releases

Code changes from version 5.11 to 5.11.1

Files changed (35) hide show
  1. README.TXT +8 -1
  2. business-directory-plugin.php +1 -1
  3. includes/admin/class-csv-import.php +2 -2
  4. includes/admin/form-fields.php +4 -5
  5. includes/admin/settings/class-settings-bootstrap.php +1 -1
  6. includes/admin/settings/class-settings.php +10 -0
  7. includes/class-wpbdp.php +1 -1
  8. includes/helpers/class-listing-display-helper.php +2 -2
  9. languages/business-directory-plugin-ar.po +26 -22
  10. languages/business-directory-plugin-de_DE.po +26 -22
  11. languages/business-directory-plugin-en_US.po +26 -22
  12. languages/business-directory-plugin-es_ES.mo +0 -0
  13. languages/business-directory-plugin-es_ES.po +0 -9153
  14. languages/business-directory-plugin-fr_FR.po +26 -22
  15. languages/business-directory-plugin-it_IT.po +26 -22
  16. languages/business-directory-plugin-nl_NL.po +26 -22
  17. languages/business-directory-plugin-pl_PL.po +26 -22
  18. languages/business-directory-plugin-ru_RU.po +26 -22
  19. languages/business-directory-plugin-sv_SE.po +26 -22
  20. languages/business-directory-plugin.pot +27 -23
  21. templates/manage_listings.tpl.php +4 -6
  22. themes/default/theme.json +1 -1
  23. vendors/anet_php_sdk/tests/AuthorizeNetAIM_Test.php +0 -888
  24. vendors/anet_php_sdk/tests/AuthorizeNetARB_Test.php +0 -201
  25. vendors/anet_php_sdk/tests/AuthorizeNetCIM_Test.php +0 -355
  26. vendors/anet_php_sdk/tests/AuthorizeNetCP_Test.php +0 -179
  27. vendors/anet_php_sdk/tests/AuthorizeNetDPM_Test.php +0 -25
  28. vendors/anet_php_sdk/tests/AuthorizeNetSIM_Test.php +0 -56
  29. vendors/anet_php_sdk/tests/AuthorizeNetSSL_Test.php +0 -23
  30. vendors/anet_php_sdk/tests/AuthorizeNetTD_Test.php +0 -96
  31. vendors/anet_php_sdk/tests/AuthorizeNet_SOAP_Test.php +0 -31
  32. vendors/anet_php_sdk/tests/AuthorizeNet_Test_Config.php +0 -47
  33. vendors/anet_php_sdk/tests/README +0 -17
  34. vendors/anet_php_sdk/tests/domain.crt +0 -51
  35. vendors/anet_php_sdk/tests/report.html +0 -1
README.TXT CHANGED
@@ -4,7 +4,7 @@ Tags: business directory, listings, directory plugin, staff directory, member di
4
  Requires at least: 4.8
5
  Requires PHP: 5.6
6
  Tested up to: 5.7
7
- Stable tag: 5.11
8
  License: GPLv2 or later
9
 
10
  The best WordPress Business Directory Plugin. Build an easy team directory, member directory, staff directory, church directory, and more.
@@ -161,6 +161,13 @@ Our directory website builder software combined with our add-on modules is the m
161
  * Book review sites
162
 
163
  == Changelog ==
 
 
 
 
 
 
 
164
 
165
  = 5.11 =
166
  * Improve site-wide performance: caching for fee plans & listing images, load fewer settings on page load, reduce database calls for fields, getting category lists
4
  Requires at least: 4.8
5
  Requires PHP: 5.6
6
  Tested up to: 5.7
7
+ Stable tag: 5.11.1
8
  License: GPLv2 or later
9
 
10
  The best WordPress Business Directory Plugin. Build an easy team directory, member directory, staff directory, church directory, and more.
161
  * Book review sites
162
 
163
  == Changelog ==
164
+ = 5.11.1 =
165
+ * When importing files, switch to only accept allowed file types instead of excluding some.
166
+ * Removed Spanish PO file since WP handles it now!
167
+ * Fix: Captions with quotation marks weren't showing in the lightbox.
168
+ * Fix: The Manage Listings page had an extra /div
169
+ * Fix: Add extra validation to slug settings to prevent characters that won't work in the URL.
170
+ * Fix: Add more role protection for editing and deleting fields.
171
 
172
  = 5.11 =
173
  * Improve site-wide performance: caching for fee plans & listing images, load fewer settings on page load, reduce database calls for fields, getting category lists
business-directory-plugin.php CHANGED
@@ -3,7 +3,7 @@
3
  * Plugin Name: Business Directory Plugin
4
  * Plugin URI: https://businessdirectoryplugin.com
5
  * Description: Provides the ability to maintain a free or paid business directory on your WordPress powered site.
6
- * Version: 5.11
7
  * Author: Business Directory Team
8
  * Author URI: https://businessdirectoryplugin.com
9
  * Text Domain: business-directory-plugin
3
  * Plugin Name: Business Directory Plugin
4
  * Plugin URI: https://businessdirectoryplugin.com
5
  * Description: Provides the ability to maintain a free or paid business directory on your WordPress powered site.
6
+ * Version: 5.11.1
7
  * Author: Business Directory Team
8
  * Author URI: https://businessdirectoryplugin.com
9
  * Text Domain: business-directory-plugin
includes/admin/class-csv-import.php CHANGED
@@ -338,10 +338,10 @@ class WPBDP_CSV_Import {
338
  * @since 5.11
339
  */
340
  private function delete_non_images( $files ) {
341
- $disallowed = array( 'php', 'js', 'css', 'mo' );
342
  foreach ( $files as $file ) {
343
  $uploaded_type = strtolower( pathinfo( $file['filename'], PATHINFO_EXTENSION ) );
344
- if ( in_array( $uploaded_type, $disallowed ) ) {
345
  @unlink( $file['filename'] );
346
  }
347
  }
338
  * @since 5.11
339
  */
340
  private function delete_non_images( $files ) {
341
+ $allowed = array( 'pdf', 'png', 'jpg', 'jpeg', 'gif', 'txt', 'rtf' );
342
  foreach ( $files as $file ) {
343
  $uploaded_type = strtolower( pathinfo( $file['filename'], PATHINFO_EXTENSION ) );
344
+ if ( ! in_array( $uploaded_type, $allowed, true ) ) {
345
  @unlink( $file['filename'] );
346
  }
347
  }
includes/admin/form-fields.php CHANGED
@@ -348,7 +348,7 @@ class WPBDP_FormFieldsAdmin {
348
  */
349
  private function check_permission( $action ) {
350
  $nonce = wpbdp_get_var( array( 'param' => '_wpnonce' ), 'request' );
351
- if ( ! wp_verify_nonce( $nonce, $action ) ) {
352
  wp_die( esc_html( 'You are not allowed to do that.', 'business-directory-plugin' ) );
353
  }
354
  }
@@ -462,6 +462,7 @@ class WPBDP_FormFieldsAdmin {
462
  }
463
 
464
  if ( isset( $_POST['doit'] ) ) {
 
465
  $ret = $field->delete();
466
 
467
  if ( is_wp_error( $ret ) ) {
@@ -491,8 +492,7 @@ class WPBDP_FormFieldsAdmin {
491
  * @since 5.11
492
  */
493
  private function move_field() {
494
- // Check permission.
495
- check_admin_referer( 'movefield' );
496
 
497
  $field_id = wpbdp_get_var( array( 'param' => 'id' ), 'request' );
498
  $field = $this->api->get_field( $field_id );
@@ -502,8 +502,7 @@ class WPBDP_FormFieldsAdmin {
502
  }
503
 
504
  private function create_required_fields() {
505
- // Check permission.
506
- check_admin_referer( 'createrequired' );
507
 
508
  global $wpbdp;
509
 
348
  */
349
  private function check_permission( $action ) {
350
  $nonce = wpbdp_get_var( array( 'param' => '_wpnonce' ), 'request' );
351
+ if ( ! wp_verify_nonce( $nonce, $action ) || ! current_user_can( 'manage_categories' ) ) {
352
  wp_die( esc_html( 'You are not allowed to do that.', 'business-directory-plugin' ) );
353
  }
354
  }
462
  }
463
 
464
  if ( isset( $_POST['doit'] ) ) {
465
+ $this->check_permission( 'deletefield' );
466
  $ret = $field->delete();
467
 
468
  if ( is_wp_error( $ret ) ) {
492
  * @since 5.11
493
  */
494
  private function move_field() {
495
+ $this->check_permission( 'movefield' );
 
496
 
497
  $field_id = wpbdp_get_var( array( 'param' => 'id' ), 'request' );
498
  $field = $this->api->get_field( $field_id );
502
  }
503
 
504
  private function create_required_fields() {
505
+ $this->check_permission( 'createrequired' );
 
506
 
507
  global $wpbdp;
508
 
includes/admin/settings/class-settings-bootstrap.php CHANGED
@@ -635,7 +635,7 @@ final class WPBDP__Settings__Bootstrap {
635
  array(
636
  'id' => 'new-post-status',
637
  'type' => 'radio',
638
- 'name' => __( 'Default free listings status', 'business-directory-plugin' ),
639
  'default' => 'pending',
640
  'options' => array(
641
  'publish' => _x( 'Published', 'post status', 'business-directory-plugin' ),
635
  array(
636
  'id' => 'new-post-status',
637
  'type' => 'radio',
638
+ 'name' => __( 'Default listing status', 'business-directory-plugin' ),
639
  'default' => 'pending',
640
  'options' => array(
641
  'publish' => _x( 'Published', 'post status', 'business-directory-plugin' ),
includes/admin/settings/class-settings.php CHANGED
@@ -498,8 +498,18 @@ class WPBDP__Settings {
498
  if ( empty( $value ) ) {
499
  add_settings_error( 'wpbdp_settings', $setting_id, sprintf( _x( '"%s" can not be empty.', 'settings', 'business-directory-plugin' ), $setting['name'] ), 'error' );
500
  $has_error = true;
 
501
  }
502
 
 
 
 
 
 
 
 
 
 
503
  if ( ! empty( $setting ) && ! empty( $setting['taxonomy'] ) ) {
504
  foreach ( get_taxonomies( null, 'objects' ) as $taxonomy ) {
505
  if ( $taxonomy->rewrite && $taxonomy->rewrite['slug'] == $value && $taxonomy->name != $setting['taxonomy'] ) {
498
  if ( empty( $value ) ) {
499
  add_settings_error( 'wpbdp_settings', $setting_id, sprintf( _x( '"%s" can not be empty.', 'settings', 'business-directory-plugin' ), $setting['name'] ), 'error' );
500
  $has_error = true;
501
+ continue 2;
502
  }
503
 
504
+ // Check for characters that will break the url.
505
+ $disallow = array( ' ', ',', '&' );
506
+ $stripped = str_replace( $disallow, '', $value );
507
+ if ( $stripped !== $value ) {
508
+ add_settings_error( 'wpbdp_settings', $setting_id, sprintf( __( '%s cannot include spaces, commas, or &', 'business-directory-plugin' ), $setting['name'] ), 'error' );
509
+ $has_error = true;
510
+ continue 2;
511
+ }
512
+
513
  if ( ! empty( $setting ) && ! empty( $setting['taxonomy'] ) ) {
514
  foreach ( get_taxonomies( null, 'objects' ) as $taxonomy ) {
515
  if ( $taxonomy->rewrite && $taxonomy->rewrite['slug'] == $value && $taxonomy->name != $setting['taxonomy'] ) {
includes/class-wpbdp.php CHANGED
@@ -21,7 +21,7 @@ final class WPBDP {
21
  }
22
 
23
  private function setup_constants() {
24
- define( 'WPBDP_VERSION', '5.11' );
25
 
26
  define( 'WPBDP_PATH', wp_normalize_path( plugin_dir_path( WPBDP_PLUGIN_FILE ) ) );
27
  define( 'WPBDP_INC', trailingslashit( WPBDP_PATH . 'includes' ) );
21
  }
22
 
23
  private function setup_constants() {
24
+ define( 'WPBDP_VERSION', '5.11.1' );
25
 
26
  define( 'WPBDP_PATH', wp_normalize_path( plugin_dir_path( WPBDP_PLUGIN_FILE ) ) );
27
  define( 'WPBDP_INC', trailingslashit( WPBDP_PATH . 'includes' ) );
includes/helpers/class-listing-display-helper.php CHANGED
@@ -264,8 +264,8 @@ class WPBDP_Listing_Display_Helper {
264
  $image->height = $data[2];
265
  $image->html = sprintf(
266
  '<a href="%s" class="thickbox" data-lightbox="wpbdpgal" rel="wpbdpgal" target="_blank" rel="noopener" title="%s">%s</a>',
267
- $image->url,
268
- get_post_meta( $img_id, '_wpbdp_image_caption', true ),
269
  wp_get_attachment_image(
270
  $image->id, 'wpbdp-thumb', false, array(
271
  'class' => 'wpbdp-thumbnail size-thumbnail',
264
  $image->height = $data[2];
265
  $image->html = sprintf(
266
  '<a href="%s" class="thickbox" data-lightbox="wpbdpgal" rel="wpbdpgal" target="_blank" rel="noopener" title="%s">%s</a>',
267
+ esc_url( $image->url ),
268
+ esc_attr( get_post_meta( $img_id, '_wpbdp_image_caption', true ) ),
269
  wp_get_attachment_image(
270
  $image->id, 'wpbdp-thumb', false, array(
271
  'class' => 'wpbdp-thumbnail size-thumbnail',
languages/business-directory-plugin-ar.po CHANGED
@@ -5,7 +5,7 @@ msgstr ""
5
  "Project-Id-Version: Business Directory Plugin v5.7.3\n"
6
  "Report-Msgid-Bugs-To: https://wordpress.org/support/plugin/business-"
7
  "directory-plugin\n"
8
- "POT-Creation-Date: 2021-03-03 23:16:40+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"
@@ -292,7 +292,7 @@ msgstr "إنتقل إلى \"إدارة حقول\""
292
  msgid "Go back"
293
  msgstr ""
294
 
295
- #: includes/admin/form-fields.php:525
296
  #: includes/admin/settings/class-settings-bootstrap.php:753
297
  #: templates/email/listing-added.tpl.php:10
298
  #: templates/email/listing-edited.tpl.php:16
@@ -301,87 +301,87 @@ msgstr ""
301
  msgid "Title"
302
  msgstr "العنوان"
303
 
304
- #: includes/admin/form-fields.php:526 templates/admin/fees-form.tpl.php:216
305
  #: templates/email/listing-added.tpl.php:21
306
  #: templates/email/listing-edited.tpl.php:29
307
  #, fuzzy
308
  msgid "Category"
309
  msgstr "التصنيف"
310
 
311
- #: includes/admin/form-fields.php:527
312
  #, fuzzy
313
  msgid "Excerpt"
314
  msgstr "مقتطف"
315
 
316
- #: includes/admin/form-fields.php:528
317
  #, fuzzy
318
  msgid "Content"
319
  msgstr "المحتوى"
320
 
321
- #: includes/admin/form-fields.php:529
322
  #, fuzzy
323
  msgid "Tags"
324
  msgstr "الوسوم"
325
 
326
- #: includes/admin/form-fields.php:530 includes/form-fields.php:445
327
  #: templates/checkout-billing-form.tpl.php:75
328
  #: themes/default/templates/excerpt_content.tpl.php:22
329
  #, fuzzy
330
  msgid "Address"
331
  msgstr "العنوان"
332
 
333
- #: includes/admin/form-fields.php:531
334
  #, fuzzy
335
  msgid "Address 2"
336
  msgstr "العنوان"
337
 
338
- #: includes/admin/form-fields.php:532
339
  #: templates/admin/payments-details.tpl.php:160
340
  #: templates/checkout-billing-form.tpl.php:87
341
  #, fuzzy
342
  msgid "City"
343
  msgstr "المدينة"
344
 
345
- #: includes/admin/form-fields.php:533
346
  #: templates/admin/payments-details.tpl.php:156
347
  #, fuzzy
348
  msgid "State"
349
  msgstr "الولاية"
350
 
351
- #: includes/admin/form-fields.php:534
352
  #: templates/admin/payments-details.tpl.php:152
353
  #: templates/checkout-billing-form.tpl.php:102
354
  #, fuzzy
355
  msgid "Country"
356
  msgstr "الدولة:"
357
 
358
- #: includes/admin/form-fields.php:535 includes/form-fields.php:453
359
  #: templates/admin/payments-details.tpl.php:164
360
  msgid "ZIP Code"
361
  msgstr "الرمز البريدي"
362
 
363
- #: includes/admin/form-fields.php:536
364
  #, fuzzy
365
  msgid "FAX Number"
366
  msgstr "رقم الفاكس"
367
 
368
- #: includes/admin/form-fields.php:537
369
  #: includes/fields/class-fieldtypes-phone-number.php:13
370
  #, fuzzy
371
  msgid "Phone Number"
372
  msgstr "رقم الهاتف"
373
 
374
- #: includes/admin/form-fields.php:538
375
  #, fuzzy
376
  msgid "Ratings Field"
377
  msgstr "حقول التقييم"
378
 
379
- #: includes/admin/form-fields.php:539
380
  #, fuzzy
381
  msgid "Twitter"
382
  msgstr "تويتر"
383
 
384
- #: includes/admin/form-fields.php:540 includes/form-fields.php:411
385
  #, fuzzy
386
  msgid "Website"
387
  msgstr "موقع الأنترنيت"
@@ -601,7 +601,7 @@ msgstr "الذهاب إلى إعلانك"
601
 
602
  #: includes/admin/settings/class-settings-bootstrap.php:638
603
  #, fuzzy
604
- msgid "Default free listings status"
605
  msgstr "إعلان العضو الافتراضي"
606
 
607
  #: includes/admin/settings/class-settings-bootstrap.php:642
@@ -756,6 +756,10 @@ msgstr "تعذر نسخ إضافة التوافق أجاكس \"%s\". لم يتم
756
  msgid "Uninstall"
757
  msgstr "حذف"
758
 
 
 
 
 
759
  #: includes/admin/tracking.php:222
760
  #, fuzzy
761
  msgid "Allow Tracking"
@@ -4490,17 +4494,17 @@ msgstr ""
4490
  "الواجهة. إذا كنت تريد إظهار عناوين البريد الإلكتروني في الواجهة، يمكنك "
4491
  "<a>تمكين عرض البريد الإلكتروني للعموم</a>."
4492
 
4493
- #: includes/admin/form-fields.php:470
4494
  msgctxt "form-fields admin"
4495
  msgid "Field deleted."
4496
  msgstr "تم حذف الحقل."
4497
 
4498
- #: includes/admin/form-fields.php:512
4499
  msgctxt "form-fields admin"
4500
  msgid "Required fields created successfully."
4501
  msgstr "الحقول المطلوبة أنشئت بنجاح."
4502
 
4503
- #: includes/admin/form-fields.php:564
4504
  msgctxt "form-fields admin"
4505
  msgid "Tags updated."
4506
  msgstr "تم تحديث الوسوم"
@@ -6838,7 +6842,7 @@ msgctxt "settings"
6838
  msgid "\"%s\" can not be empty."
6839
  msgstr ""
6840
 
6841
- #: includes/admin/settings/class-settings.php:506
6842
  msgctxt "settings"
6843
  msgid "The slug \"%s\" is already in use for another taxonomy."
6844
  msgstr ""
5
  "Project-Id-Version: Business Directory Plugin v5.7.3\n"
6
  "Report-Msgid-Bugs-To: https://wordpress.org/support/plugin/business-"
7
  "directory-plugin\n"
8
+ "POT-Creation-Date: 2021-03-16 22:30:36+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"
292
  msgid "Go back"
293
  msgstr ""
294
 
295
+ #: includes/admin/form-fields.php:524
296
  #: includes/admin/settings/class-settings-bootstrap.php:753
297
  #: templates/email/listing-added.tpl.php:10
298
  #: templates/email/listing-edited.tpl.php:16
301
  msgid "Title"
302
  msgstr "العنوان"
303
 
304
+ #: includes/admin/form-fields.php:525 templates/admin/fees-form.tpl.php:216
305
  #: templates/email/listing-added.tpl.php:21
306
  #: templates/email/listing-edited.tpl.php:29
307
  #, fuzzy
308
  msgid "Category"
309
  msgstr "التصنيف"
310
 
311
+ #: includes/admin/form-fields.php:526
312
  #, fuzzy
313
  msgid "Excerpt"
314
  msgstr "مقتطف"
315
 
316
+ #: includes/admin/form-fields.php:527
317
  #, fuzzy
318
  msgid "Content"
319
  msgstr "المحتوى"
320
 
321
+ #: includes/admin/form-fields.php:528
322
  #, fuzzy
323
  msgid "Tags"
324
  msgstr "الوسوم"
325
 
326
+ #: includes/admin/form-fields.php:529 includes/form-fields.php:445
327
  #: templates/checkout-billing-form.tpl.php:75
328
  #: themes/default/templates/excerpt_content.tpl.php:22
329
  #, fuzzy
330
  msgid "Address"
331
  msgstr "العنوان"
332
 
333
+ #: includes/admin/form-fields.php:530
334
  #, fuzzy
335
  msgid "Address 2"
336
  msgstr "العنوان"
337
 
338
+ #: includes/admin/form-fields.php:531
339
  #: templates/admin/payments-details.tpl.php:160
340
  #: templates/checkout-billing-form.tpl.php:87
341
  #, fuzzy
342
  msgid "City"
343
  msgstr "المدينة"
344
 
345
+ #: includes/admin/form-fields.php:532
346
  #: templates/admin/payments-details.tpl.php:156
347
  #, fuzzy
348
  msgid "State"
349
  msgstr "الولاية"
350
 
351
+ #: includes/admin/form-fields.php:533
352
  #: templates/admin/payments-details.tpl.php:152
353
  #: templates/checkout-billing-form.tpl.php:102
354
  #, fuzzy
355
  msgid "Country"
356
  msgstr "الدولة:"
357
 
358
+ #: includes/admin/form-fields.php:534 includes/form-fields.php:453
359
  #: templates/admin/payments-details.tpl.php:164
360
  msgid "ZIP Code"
361
  msgstr "الرمز البريدي"
362
 
363
+ #: includes/admin/form-fields.php:535
364
  #, fuzzy
365
  msgid "FAX Number"
366
  msgstr "رقم الفاكس"
367
 
368
+ #: includes/admin/form-fields.php:536
369
  #: includes/fields/class-fieldtypes-phone-number.php:13
370
  #, fuzzy
371
  msgid "Phone Number"
372
  msgstr "رقم الهاتف"
373
 
374
+ #: includes/admin/form-fields.php:537
375
  #, fuzzy
376
  msgid "Ratings Field"
377
  msgstr "حقول التقييم"
378
 
379
+ #: includes/admin/form-fields.php:538
380
  #, fuzzy
381
  msgid "Twitter"
382
  msgstr "تويتر"
383
 
384
+ #: includes/admin/form-fields.php:539 includes/form-fields.php:411
385
  #, fuzzy
386
  msgid "Website"
387
  msgstr "موقع الأنترنيت"
601
 
602
  #: includes/admin/settings/class-settings-bootstrap.php:638
603
  #, fuzzy
604
+ msgid "Default listing status"
605
  msgstr "إعلان العضو الافتراضي"
606
 
607
  #: includes/admin/settings/class-settings-bootstrap.php:642
756
  msgid "Uninstall"
757
  msgstr "حذف"
758
 
759
+ #: includes/admin/settings/class-settings.php:508
760
+ msgid "%s cannot include spaces, commas, or &"
761
+ msgstr ""
762
+
763
  #: includes/admin/tracking.php:222
764
  #, fuzzy
765
  msgid "Allow Tracking"
4494
  "الواجهة. إذا كنت تريد إظهار عناوين البريد الإلكتروني في الواجهة، يمكنك "
4495
  "<a>تمكين عرض البريد الإلكتروني للعموم</a>."
4496
 
4497
+ #: includes/admin/form-fields.php:471
4498
  msgctxt "form-fields admin"
4499
  msgid "Field deleted."
4500
  msgstr "تم حذف الحقل."
4501
 
4502
+ #: includes/admin/form-fields.php:511
4503
  msgctxt "form-fields admin"
4504
  msgid "Required fields created successfully."
4505
  msgstr "الحقول المطلوبة أنشئت بنجاح."
4506
 
4507
+ #: includes/admin/form-fields.php:563
4508
  msgctxt "form-fields admin"
4509
  msgid "Tags updated."
4510
  msgstr "تم تحديث الوسوم"
6842
  msgid "\"%s\" can not be empty."
6843
  msgstr ""
6844
 
6845
+ #: includes/admin/settings/class-settings.php:516
6846
  msgctxt "settings"
6847
  msgid "The slug \"%s\" is already in use for another taxonomy."
6848
  msgstr ""
languages/business-directory-plugin-de_DE.po CHANGED
@@ -5,7 +5,7 @@ msgstr ""
5
  "Project-Id-Version: Business Directory Plugin v5.7.3\n"
6
  "Report-Msgid-Bugs-To: https://wordpress.org/support/plugin/business-"
7
  "directory-plugin\n"
8
- "POT-Creation-Date: 2021-03-03 23:16:40+00:00\n"
9
  "PO-Revision-Date: 2020-06-17 15:32-0500\n"
10
  "Last-Translator: Axel J. Metayer <axel@kfz.net>\n"
11
  "Language-Team: Business Directory Plugin <support@businessdirectoryplugin."
@@ -294,7 +294,7 @@ msgstr "zu \"Formularfelder verwalten\""
294
  msgid "Go back"
295
  msgstr "Geh zurück"
296
 
297
- #: includes/admin/form-fields.php:525
298
  #: includes/admin/settings/class-settings-bootstrap.php:753
299
  #: templates/email/listing-added.tpl.php:10
300
  #: templates/email/listing-edited.tpl.php:16
@@ -303,87 +303,87 @@ msgstr "Geh zurück"
303
  msgid "Title"
304
  msgstr "Titel"
305
 
306
- #: includes/admin/form-fields.php:526 templates/admin/fees-form.tpl.php:216
307
  #: templates/email/listing-added.tpl.php:21
308
  #: templates/email/listing-edited.tpl.php:29
309
  #, fuzzy
310
  msgid "Category"
311
  msgstr "Kategorien"
312
 
313
- #: includes/admin/form-fields.php:527
314
  #, fuzzy
315
  msgid "Excerpt"
316
  msgstr "Im Textauszug"
317
 
318
- #: includes/admin/form-fields.php:528
319
  #, fuzzy
320
  msgid "Content"
321
  msgstr "Post Inhalt"
322
 
323
- #: includes/admin/form-fields.php:529
324
  #, fuzzy
325
  msgid "Tags"
326
  msgstr "Tags Entwurf"
327
 
328
- #: includes/admin/form-fields.php:530 includes/form-fields.php:445
329
  #: templates/checkout-billing-form.tpl.php:75
330
  #: themes/default/templates/excerpt_content.tpl.php:22
331
  #, fuzzy
332
  msgid "Address"
333
  msgstr "E-Mail Adresse:"
334
 
335
- #: includes/admin/form-fields.php:531
336
  #, fuzzy
337
  msgid "Address 2"
338
  msgstr "E-Mail Adresse:"
339
 
340
- #: includes/admin/form-fields.php:532
341
  #: templates/admin/payments-details.tpl.php:160
342
  #: templates/checkout-billing-form.tpl.php:87
343
  #, fuzzy
344
  msgid "City"
345
  msgstr "Stadt"
346
 
347
- #: includes/admin/form-fields.php:533
348
  #: templates/admin/payments-details.tpl.php:156
349
  #, fuzzy
350
  msgid "State"
351
  msgstr "Status"
352
 
353
- #: includes/admin/form-fields.php:534
354
  #: templates/admin/payments-details.tpl.php:152
355
  #: templates/checkout-billing-form.tpl.php:102
356
  #, fuzzy
357
  msgid "Country"
358
  msgstr "Land"
359
 
360
- #: includes/admin/form-fields.php:535 includes/form-fields.php:453
361
  #: templates/admin/payments-details.tpl.php:164
362
  msgid "ZIP Code"
363
  msgstr "Postleitzahl"
364
 
365
- #: includes/admin/form-fields.php:536
366
  #, fuzzy
367
  msgid "FAX Number"
368
  msgstr "Telefonnummer geschäftlich"
369
 
370
- #: includes/admin/form-fields.php:537
371
  #: includes/fields/class-fieldtypes-phone-number.php:13
372
  #, fuzzy
373
  msgid "Phone Number"
374
  msgstr "Telefonnummer geschäftlich"
375
 
376
- #: includes/admin/form-fields.php:538
377
  #, fuzzy
378
  msgid "Ratings Field"
379
  msgstr "Bewertungsfeld"
380
 
381
- #: includes/admin/form-fields.php:539
382
  #, fuzzy
383
  msgid "Twitter"
384
  msgstr "Twitter"
385
 
386
- #: includes/admin/form-fields.php:540 includes/form-fields.php:411
387
  #, fuzzy
388
  msgid "Website"
389
  msgstr "Webseite"
@@ -601,7 +601,7 @@ msgstr "Zum Eintrag"
601
 
602
  #: includes/admin/settings/class-settings-bootstrap.php:638
603
  #, fuzzy
604
- msgid "Default free listings status"
605
  msgstr "Voreingestellter-Nutzer"
606
 
607
  #: includes/admin/settings/class-settings-bootstrap.php:642
@@ -742,6 +742,10 @@ msgstr ""
742
  msgid "Uninstall"
743
  msgstr "Deinstallieren"
744
 
 
 
 
 
745
  #: includes/admin/tracking.php:222
746
  #, fuzzy
747
  msgid "Allow Tracking"
@@ -4497,17 +4501,17 @@ msgstr ""
4497
  "Mail-Adressen auf der Webseite angezeigt werden, können Sie die "
4498
  "<a>öffentliche Anzeige von E-Mails</a> aktivieren."
4499
 
4500
- #: includes/admin/form-fields.php:470
4501
  msgctxt "form-fields admin"
4502
  msgid "Field deleted."
4503
  msgstr "Feld gelöscht."
4504
 
4505
- #: includes/admin/form-fields.php:512
4506
  msgctxt "form-fields admin"
4507
  msgid "Required fields created successfully."
4508
  msgstr "Benötigtes Feld wurde erfolgreich erstellt."
4509
 
4510
- #: includes/admin/form-fields.php:564
4511
  msgctxt "form-fields admin"
4512
  msgid "Tags updated."
4513
  msgstr "Einstellungen aktualisiert."
@@ -6809,7 +6813,7 @@ msgctxt "settings"
6809
  msgid "\"%s\" can not be empty."
6810
  msgstr ""
6811
 
6812
- #: includes/admin/settings/class-settings.php:506
6813
  msgctxt "settings"
6814
  msgid "The slug \"%s\" is already in use for another taxonomy."
6815
  msgstr ""
5
  "Project-Id-Version: Business Directory Plugin v5.7.3\n"
6
  "Report-Msgid-Bugs-To: https://wordpress.org/support/plugin/business-"
7
  "directory-plugin\n"
8
+ "POT-Creation-Date: 2021-03-16 22:30:36+00:00\n"
9
  "PO-Revision-Date: 2020-06-17 15:32-0500\n"
10
  "Last-Translator: Axel J. Metayer <axel@kfz.net>\n"
11
  "Language-Team: Business Directory Plugin <support@businessdirectoryplugin."
294
  msgid "Go back"
295
  msgstr "Geh zurück"
296
 
297
+ #: includes/admin/form-fields.php:524
298
  #: includes/admin/settings/class-settings-bootstrap.php:753
299
  #: templates/email/listing-added.tpl.php:10
300
  #: templates/email/listing-edited.tpl.php:16
303
  msgid "Title"
304
  msgstr "Titel"
305
 
306
+ #: includes/admin/form-fields.php:525 templates/admin/fees-form.tpl.php:216
307
  #: templates/email/listing-added.tpl.php:21
308
  #: templates/email/listing-edited.tpl.php:29
309
  #, fuzzy
310
  msgid "Category"
311
  msgstr "Kategorien"
312
 
313
+ #: includes/admin/form-fields.php:526
314
  #, fuzzy
315
  msgid "Excerpt"
316
  msgstr "Im Textauszug"
317
 
318
+ #: includes/admin/form-fields.php:527
319
  #, fuzzy
320
  msgid "Content"
321
  msgstr "Post Inhalt"
322
 
323
+ #: includes/admin/form-fields.php:528
324
  #, fuzzy
325
  msgid "Tags"
326
  msgstr "Tags Entwurf"
327
 
328
+ #: includes/admin/form-fields.php:529 includes/form-fields.php:445
329
  #: templates/checkout-billing-form.tpl.php:75
330
  #: themes/default/templates/excerpt_content.tpl.php:22
331
  #, fuzzy
332
  msgid "Address"
333
  msgstr "E-Mail Adresse:"
334
 
335
+ #: includes/admin/form-fields.php:530
336
  #, fuzzy
337
  msgid "Address 2"
338
  msgstr "E-Mail Adresse:"
339
 
340
+ #: includes/admin/form-fields.php:531
341
  #: templates/admin/payments-details.tpl.php:160
342
  #: templates/checkout-billing-form.tpl.php:87
343
  #, fuzzy
344
  msgid "City"
345
  msgstr "Stadt"
346
 
347
+ #: includes/admin/form-fields.php:532
348
  #: templates/admin/payments-details.tpl.php:156
349
  #, fuzzy
350
  msgid "State"
351
  msgstr "Status"
352
 
353
+ #: includes/admin/form-fields.php:533
354
  #: templates/admin/payments-details.tpl.php:152
355
  #: templates/checkout-billing-form.tpl.php:102
356
  #, fuzzy
357
  msgid "Country"
358
  msgstr "Land"
359
 
360
+ #: includes/admin/form-fields.php:534 includes/form-fields.php:453
361
  #: templates/admin/payments-details.tpl.php:164
362
  msgid "ZIP Code"
363
  msgstr "Postleitzahl"
364
 
365
+ #: includes/admin/form-fields.php:535
366
  #, fuzzy
367
  msgid "FAX Number"
368
  msgstr "Telefonnummer geschäftlich"
369
 
370
+ #: includes/admin/form-fields.php:536
371
  #: includes/fields/class-fieldtypes-phone-number.php:13
372
  #, fuzzy
373
  msgid "Phone Number"
374
  msgstr "Telefonnummer geschäftlich"
375
 
376
+ #: includes/admin/form-fields.php:537
377
  #, fuzzy
378
  msgid "Ratings Field"
379
  msgstr "Bewertungsfeld"
380
 
381
+ #: includes/admin/form-fields.php:538
382
  #, fuzzy
383
  msgid "Twitter"
384
  msgstr "Twitter"
385
 
386
+ #: includes/admin/form-fields.php:539 includes/form-fields.php:411
387
  #, fuzzy
388
  msgid "Website"
389
  msgstr "Webseite"
601
 
602
  #: includes/admin/settings/class-settings-bootstrap.php:638
603
  #, fuzzy
604
+ msgid "Default listing status"
605
  msgstr "Voreingestellter-Nutzer"
606
 
607
  #: includes/admin/settings/class-settings-bootstrap.php:642
742
  msgid "Uninstall"
743
  msgstr "Deinstallieren"
744
 
745
+ #: includes/admin/settings/class-settings.php:508
746
+ msgid "%s cannot include spaces, commas, or &"
747
+ msgstr ""
748
+
749
  #: includes/admin/tracking.php:222
750
  #, fuzzy
751
  msgid "Allow Tracking"
4501
  "Mail-Adressen auf der Webseite angezeigt werden, können Sie die "
4502
  "<a>öffentliche Anzeige von E-Mails</a> aktivieren."
4503
 
4504
+ #: includes/admin/form-fields.php:471
4505
  msgctxt "form-fields admin"
4506
  msgid "Field deleted."
4507
  msgstr "Feld gelöscht."
4508
 
4509
+ #: includes/admin/form-fields.php:511
4510
  msgctxt "form-fields admin"
4511
  msgid "Required fields created successfully."
4512
  msgstr "Benötigtes Feld wurde erfolgreich erstellt."
4513
 
4514
+ #: includes/admin/form-fields.php:563
4515
  msgctxt "form-fields admin"
4516
  msgid "Tags updated."
4517
  msgstr "Einstellungen aktualisiert."
6813
  msgid "\"%s\" can not be empty."
6814
  msgstr ""
6815
 
6816
+ #: includes/admin/settings/class-settings.php:516
6817
  msgctxt "settings"
6818
  msgid "The slug \"%s\" is already in use for another taxonomy."
6819
  msgstr ""
languages/business-directory-plugin-en_US.po CHANGED
@@ -5,7 +5,7 @@ msgstr ""
5
  "Project-Id-Version: Business Directory Plugin v5.7.3\n"
6
  "Report-Msgid-Bugs-To: https://wordpress.org/support/plugin/business-"
7
  "directory-plugin\n"
8
- "POT-Creation-Date: 2021-03-03 23:16:40+00:00\n"
9
  "PO-Revision-Date: 2020-06-17 15:32-0500\n"
10
  "Last-Translator: BD Team <support@businessdirectoryplugin.com>\n"
11
  "Language-Team: BD Team <support@businessdirectoryplugin.com>\n"
@@ -247,7 +247,7 @@ msgstr ""
247
  msgid "Go back"
248
  msgstr ""
249
 
250
- #: includes/admin/form-fields.php:525
251
  #: includes/admin/settings/class-settings-bootstrap.php:753
252
  #: templates/email/listing-added.tpl.php:10
253
  #: templates/email/listing-edited.tpl.php:16
@@ -255,74 +255,74 @@ msgstr ""
255
  msgid "Title"
256
  msgstr ""
257
 
258
- #: includes/admin/form-fields.php:526 templates/admin/fees-form.tpl.php:216
259
  #: templates/email/listing-added.tpl.php:21
260
  #: templates/email/listing-edited.tpl.php:29
261
  msgid "Category"
262
  msgstr ""
263
 
264
- #: includes/admin/form-fields.php:527
265
  msgid "Excerpt"
266
  msgstr ""
267
 
268
- #: includes/admin/form-fields.php:528
269
  msgid "Content"
270
  msgstr ""
271
 
272
- #: includes/admin/form-fields.php:529
273
  msgid "Tags"
274
  msgstr ""
275
 
276
- #: includes/admin/form-fields.php:530 includes/form-fields.php:445
277
  #: templates/checkout-billing-form.tpl.php:75
278
  #: themes/default/templates/excerpt_content.tpl.php:22
279
  msgid "Address"
280
  msgstr ""
281
 
282
- #: includes/admin/form-fields.php:531
283
  msgid "Address 2"
284
  msgstr ""
285
 
286
- #: includes/admin/form-fields.php:532
287
  #: templates/admin/payments-details.tpl.php:160
288
  #: templates/checkout-billing-form.tpl.php:87
289
  msgid "City"
290
  msgstr ""
291
 
292
- #: includes/admin/form-fields.php:533
293
  #: templates/admin/payments-details.tpl.php:156
294
  msgid "State"
295
  msgstr ""
296
 
297
- #: includes/admin/form-fields.php:534
298
  #: templates/admin/payments-details.tpl.php:152
299
  #: templates/checkout-billing-form.tpl.php:102
300
  msgid "Country"
301
  msgstr ""
302
 
303
- #: includes/admin/form-fields.php:535 includes/form-fields.php:453
304
  #: templates/admin/payments-details.tpl.php:164
305
  msgid "ZIP Code"
306
  msgstr ""
307
 
308
- #: includes/admin/form-fields.php:536
309
  msgid "FAX Number"
310
  msgstr ""
311
 
312
- #: includes/admin/form-fields.php:537
313
  #: includes/fields/class-fieldtypes-phone-number.php:13
314
  msgid "Phone Number"
315
  msgstr ""
316
 
317
- #: includes/admin/form-fields.php:538
318
  msgid "Ratings Field"
319
  msgstr ""
320
 
321
- #: includes/admin/form-fields.php:539
322
  msgid "Twitter"
323
  msgstr ""
324
 
325
- #: includes/admin/form-fields.php:540 includes/form-fields.php:411
326
  msgid "Website"
327
  msgstr ""
328
 
@@ -504,7 +504,7 @@ msgid "Owner of anonymous listings"
504
  msgstr ""
505
 
506
  #: includes/admin/settings/class-settings-bootstrap.php:638
507
- msgid "Default free listings status"
508
  msgstr ""
509
 
510
  #: includes/admin/settings/class-settings-bootstrap.php:642
@@ -631,6 +631,10 @@ msgstr ""
631
  msgid "Uninstall"
632
  msgstr ""
633
 
 
 
 
 
634
  #: includes/admin/tracking.php:222
635
  msgid "Allow Tracking"
636
  msgstr ""
@@ -3879,17 +3883,17 @@ msgid ""
3879
  "show on the frontend, you can <a>enable public display of e-mails</a>."
3880
  msgstr ""
3881
 
3882
- #: includes/admin/form-fields.php:470
3883
  msgctxt "form-fields admin"
3884
  msgid "Field deleted."
3885
  msgstr ""
3886
 
3887
- #: includes/admin/form-fields.php:512
3888
  msgctxt "form-fields admin"
3889
  msgid "Required fields created successfully."
3890
  msgstr ""
3891
 
3892
- #: includes/admin/form-fields.php:564
3893
  msgctxt "form-fields admin"
3894
  msgid "Tags updated."
3895
  msgstr ""
@@ -5931,7 +5935,7 @@ msgctxt "settings"
5931
  msgid "\"%s\" can not be empty."
5932
  msgstr ""
5933
 
5934
- #: includes/admin/settings/class-settings.php:506
5935
  msgctxt "settings"
5936
  msgid "The slug \"%s\" is already in use for another taxonomy."
5937
  msgstr ""
5
  "Project-Id-Version: Business Directory Plugin v5.7.3\n"
6
  "Report-Msgid-Bugs-To: https://wordpress.org/support/plugin/business-"
7
  "directory-plugin\n"
8
+ "POT-Creation-Date: 2021-03-16 22:30:36+00:00\n"
9
  "PO-Revision-Date: 2020-06-17 15:32-0500\n"
10
  "Last-Translator: BD Team <support@businessdirectoryplugin.com>\n"
11
  "Language-Team: BD Team <support@businessdirectoryplugin.com>\n"
247
  msgid "Go back"
248
  msgstr ""
249
 
250
+ #: includes/admin/form-fields.php:524
251
  #: includes/admin/settings/class-settings-bootstrap.php:753
252
  #: templates/email/listing-added.tpl.php:10
253
  #: templates/email/listing-edited.tpl.php:16
255
  msgid "Title"
256
  msgstr ""
257
 
258
+ #: includes/admin/form-fields.php:525 templates/admin/fees-form.tpl.php:216
259
  #: templates/email/listing-added.tpl.php:21
260
  #: templates/email/listing-edited.tpl.php:29
261
  msgid "Category"
262
  msgstr ""
263
 
264
+ #: includes/admin/form-fields.php:526
265
  msgid "Excerpt"
266
  msgstr ""
267
 
268
+ #: includes/admin/form-fields.php:527
269
  msgid "Content"
270
  msgstr ""
271
 
272
+ #: includes/admin/form-fields.php:528
273
  msgid "Tags"
274
  msgstr ""
275
 
276
+ #: includes/admin/form-fields.php:529 includes/form-fields.php:445
277
  #: templates/checkout-billing-form.tpl.php:75
278
  #: themes/default/templates/excerpt_content.tpl.php:22
279
  msgid "Address"
280
  msgstr ""
281
 
282
+ #: includes/admin/form-fields.php:530
283
  msgid "Address 2"
284
  msgstr ""
285
 
286
+ #: includes/admin/form-fields.php:531
287
  #: templates/admin/payments-details.tpl.php:160
288
  #: templates/checkout-billing-form.tpl.php:87
289
  msgid "City"
290
  msgstr ""
291
 
292
+ #: includes/admin/form-fields.php:532
293
  #: templates/admin/payments-details.tpl.php:156
294
  msgid "State"
295
  msgstr ""
296
 
297
+ #: includes/admin/form-fields.php:533
298
  #: templates/admin/payments-details.tpl.php:152
299
  #: templates/checkout-billing-form.tpl.php:102
300
  msgid "Country"
301
  msgstr ""
302
 
303
+ #: includes/admin/form-fields.php:534 includes/form-fields.php:453
304
  #: templates/admin/payments-details.tpl.php:164
305
  msgid "ZIP Code"
306
  msgstr ""
307
 
308
+ #: includes/admin/form-fields.php:535
309
  msgid "FAX Number"
310
  msgstr ""
311
 
312
+ #: includes/admin/form-fields.php:536
313
  #: includes/fields/class-fieldtypes-phone-number.php:13
314
  msgid "Phone Number"
315
  msgstr ""
316
 
317
+ #: includes/admin/form-fields.php:537
318
  msgid "Ratings Field"
319
  msgstr ""
320
 
321
+ #: includes/admin/form-fields.php:538
322
  msgid "Twitter"
323
  msgstr ""
324
 
325
+ #: includes/admin/form-fields.php:539 includes/form-fields.php:411
326
  msgid "Website"
327
  msgstr ""
328
 
504
  msgstr ""
505
 
506
  #: includes/admin/settings/class-settings-bootstrap.php:638
507
+ msgid "Default listing status"
508
  msgstr ""
509
 
510
  #: includes/admin/settings/class-settings-bootstrap.php:642
631
  msgid "Uninstall"
632
  msgstr ""
633
 
634
+ #: includes/admin/settings/class-settings.php:508
635
+ msgid "%s cannot include spaces, commas, or &"
636
+ msgstr ""
637
+
638
  #: includes/admin/tracking.php:222
639
  msgid "Allow Tracking"
640
  msgstr ""
3883
  "show on the frontend, you can <a>enable public display of e-mails</a>."
3884
  msgstr ""
3885
 
3886
+ #: includes/admin/form-fields.php:471
3887
  msgctxt "form-fields admin"
3888
  msgid "Field deleted."
3889
  msgstr ""
3890
 
3891
+ #: includes/admin/form-fields.php:511
3892
  msgctxt "form-fields admin"
3893
  msgid "Required fields created successfully."
3894
  msgstr ""
3895
 
3896
+ #: includes/admin/form-fields.php:563
3897
  msgctxt "form-fields admin"
3898
  msgid "Tags updated."
3899
  msgstr ""
5935
  msgid "\"%s\" can not be empty."
5936
  msgstr ""
5937
 
5938
+ #: includes/admin/settings/class-settings.php:516
5939
  msgctxt "settings"
5940
  msgid "The slug \"%s\" is already in use for another taxonomy."
5941
  msgstr ""
languages/business-directory-plugin-es_ES.mo DELETED
Binary file
languages/business-directory-plugin-es_ES.po DELETED
@@ -1,9153 +0,0 @@
1
- # Copyright (C) 2013
2
- # This file is distributed under the same license as the package.
3
- msgid ""
4
- msgstr ""
5
- "Project-Id-Version: Business Directory Plugin v5.7.3\n"
6
- "Report-Msgid-Bugs-To: https://wordpress.org/support/plugin/business-"
7
- "directory-plugin\n"
8
- "POT-Creation-Date: 2021-03-03 23:16:40+00:00\n"
9
- "PO-Revision-Date: 2020-10-07 14: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"
13
- "MIME-Version: 1.0\n"
14
- "Content-Type: text/plain; charset=UTF-8\n"
15
- "Content-Transfer-Encoding: 8bit\n"
16
- "X-Generator: Poedit 2.4.1\n"
17
- "Plural-Forms: nplurals=2; plural=(n != 1);\n"
18
- "X-Poedit-Bookmarks: -1,-1,-1,-1,-1,-1,-1,-1,-1,543\n"
19
- "X-Poedit-SourceCharset: UTF-8\n"
20
-
21
- #: includes/admin/class-admin-controller.php:80
22
- #: templates/admin/payments-note.tpl.php:13
23
- #: templates/delete-listing-confirm.tpl.php:19
24
- #, fuzzy
25
- msgid "Are you sure you want to do this?"
26
- msgstr "¿Está seguro de que desea hacer esto?"
27
-
28
- #: includes/admin/class-admin-csv.php:38 templates/admin/csv-import.tpl.php:289
29
- #, fuzzy
30
- msgid "Help"
31
- msgstr "Ayuda"
32
-
33
- #: includes/admin/class-admin-listings.php:187
34
- #: includes/views/submit_listing.php:497
35
- #: templates/email/listing-reported.tpl.php:7
36
- msgid "Listing Information"
37
- msgstr "Información de la publicación"
38
-
39
- #: includes/admin/class-admin-listings.php:195
40
- msgid "Listing Timeline"
41
- msgstr "Línea de Tiempo"
42
-
43
- #: includes/admin/class-admin-listings.php:213
44
- msgid "Listing Reports"
45
- msgstr "Reportes"
46
-
47
- #: includes/admin/class-admin-listings.php:223
48
- #: includes/admin/class-listing-owner.php:87
49
- msgid "Listing Owner"
50
- msgstr "Dueño del listado"
51
-
52
- #: includes/admin/class-admin-listings.php:268
53
- msgid "Expires on"
54
- msgstr "Expira en"
55
-
56
- #: includes/admin/class-admin-listings.php:276
57
- msgid "Attributes"
58
- msgstr "Atributos"
59
-
60
- #: includes/admin/class-admin-listings.php:473
61
- #: includes/class-cpt-integration.php:19
62
- #: includes/compatibility/class-navxt-integration.php:200
63
- #: templates/submit-listing.tpl.php:15
64
- msgid "Edit Listing"
65
- msgstr "Editar Listado"
66
-
67
- #: includes/admin/class-admin-listings.php:587
68
- msgid "Edit listing permalink"
69
- msgstr "Editar enlace del listado"
70
-
71
- #: includes/admin/class-admin.php:186
72
- msgid ""
73
- "Find out how to create a compelling, thriving business directory from "
74
- "scratch in this ridiculously actionable (and FREE) 5-part email course."
75
- msgstr ""
76
- "Descubra cómo crear un directorio de negocios próspero y llamativo desde "
77
- "cero en este curso GRATUITO por e-mail de 5 partes."
78
-
79
- #: includes/admin/class-admin.php:195
80
- #, fuzzy
81
- msgid "Want to know the Secrets of Building an Awesome Business Directory?"
82
- msgstr ""
83
- "Quiere conocer los secretos para crear un Directorio de Negocios "
84
- "impresionante?"
85
-
86
- #: includes/admin/class-admin.php:197
87
- #, fuzzy
88
- msgid "Yes, please!"
89
- msgstr "Sí, por favor!"
90
-
91
- #: includes/admin/class-admin.php:199 includes/admin/tracking.php:215
92
- #, fuzzy
93
- msgid "No, thanks"
94
- msgstr "No, gracias"
95
-
96
- #: includes/admin/class-admin.php:261
97
- #, fuzzy
98
- msgid "Invalid email address."
99
- msgstr "Dirección de correo-e inválida."
100
-
101
- #: includes/admin/class-admin.php:295
102
- #, fuzzy
103
- msgid "Business Directory Admin"
104
- msgstr "Administración de Directorio de Negocios"
105
-
106
- #: includes/admin/class-admin.php:296 includes/templates-ui.php:306
107
- msgid "Directory"
108
- msgstr "Directorio"
109
-
110
- #: includes/admin/class-admin.php:307 templates/admin/home.tpl.php:65
111
- #, fuzzy
112
- msgid "Fee Plans"
113
- msgstr "Plan de Pago"
114
-
115
- #: includes/admin/class-admin.php:310 templates/admin/home.tpl.php:60
116
- #, fuzzy
117
- msgid "Form Fields"
118
- msgstr "campos de formulario"
119
-
120
- #: includes/admin/class-admin.php:339 includes/admin/class-admin.php:340
121
- #: includes/licensing.php:228
122
- #, fuzzy
123
- msgid "Modules"
124
- msgstr "(Todos los módulos)"
125
-
126
- #: includes/admin/class-admin.php:340
127
- #, fuzzy
128
- msgid "Business Directory"
129
- msgstr "Directorio de Negocios"
130
-
131
- #: includes/admin/class-admin.php:975 includes/admin/form-fields.php:127
132
- #: includes/admin/helpers/class-payments-table.php:54
133
- #: templates/email/listing-added.tpl.php:7
134
- #: templates/email/listing-edited.tpl.php:13
135
- #: templates/email/listing-reported.tpl.php:9
136
- #, fuzzy
137
- msgid "ID"
138
- msgstr "ID"
139
-
140
- #: includes/admin/class-admin.php:977 includes/admin/class-admin.php:985
141
- #: includes/admin/settings/class-settings-bootstrap.php:695
142
- #, fuzzy
143
- msgid "Listing Count"
144
- msgstr "Conteo de Listados"
145
-
146
- #: includes/admin/class-csv-import.php:655
147
- msgid "Listing imported by admin. Payment skipped."
148
- msgstr "El listado fue importado por el administrador. No se realizó pago."
149
-
150
- #: includes/admin/class-listing-owner.php:62
151
- #: includes/admin/class-listing-owner.php:89
152
- msgid "Please select a user"
153
- msgstr "Por favor seleccione un usuario"
154
-
155
- #: includes/admin/class-listings-personal-data-provider.php:58
156
- msgid "Listing ID"
157
- msgstr "ID del Listado"
158
-
159
- #: includes/admin/class-listings-personal-data-provider.php:109
160
- msgid "Image URL"
161
- msgstr "URL de Imagen"
162
-
163
- #: includes/admin/class-listings-personal-data-provider.php:123
164
- msgid "Business Directory Listings"
165
- msgstr "Listados del Directorio de Negocios"
166
-
167
- #: includes/admin/class-listings-personal-data-provider.php:157
168
- msgid ""
169
- "An unknown error occurred while trying to delete information for listing "
170
- "{listing_id}."
171
- msgstr ""
172
- "Un error ocurrió mientras se trataba de eliminar información del listado "
173
- "{listing_id}."
174
-
175
- #: includes/admin/class-payment-personal-data-provider.php:50
176
- msgid "Payment Transaction"
177
- msgstr "Transacción de Pago"
178
-
179
- #: includes/admin/class-payment-personal-data-provider.php:51
180
- msgid "Payer Email"
181
- msgstr "Correo electrónico de quien paga"
182
-
183
- #: includes/admin/class-payment-personal-data-provider.php:60
184
- msgid "Listing Payments Information"
185
- msgstr "Información de pagos dude listado"
186
-
187
- #: includes/admin/class-payment-personal-data-provider.php:93
188
- msgid ""
189
- "An unknown error occurred while trying to delete listing payment information "
190
- "for transaction {transaction_id}."
191
- msgstr ""
192
- "Un error ocurrió mientras se trataba de eliminar información de la "
193
- "transacción {transaction_id} de pago del listado."
194
-
195
- #. Plugin Name of the plugin/theme
196
- msgid "Business Directory Plugin"
197
- msgstr "Directorio de Negocios"
198
-
199
- #: includes/admin/class-themes-admin.php:46
200
- #, fuzzy
201
- msgid "Themes"
202
- msgstr "Temas"
203
-
204
- #. translators: %s: Sample business name
205
- #: includes/admin/csv-import.php:134
206
- #, fuzzy
207
- msgid "Business %s"
208
- msgstr "Negocio %s"
209
-
210
- #: includes/admin/csv-import.php:325
211
- msgid "You are not allowed to do that."
212
- msgstr ""
213
-
214
- #: includes/admin/csv-import.php:422
215
- #, fuzzy
216
- msgid "There was an error uploading the file:"
217
- msgstr "Ocurrió un error subiendo el archivo CSV."
218
-
219
- #: includes/admin/csv-import.php:427
220
- #, fuzzy
221
- msgid "Please upload the correct file type."
222
- msgstr "Por favor suba o elija un archivo CSV."
223
-
224
- #: includes/admin/fees.php:46 includes/admin/helpers/class-fees-table.php:122
225
- #: includes/admin/helpers/class-payments-table.php:57
226
- #: includes/admin/upgrades/migrations/manual-upgrade-18_0-featured-levels.php:273
227
- #: templates/admin/metaboxes-listing-information-plan.tpl.php:69
228
- #: templates/admin/payments-details.tpl.php:109
229
- #: templates/email/listing-payment-completed.tpl.php:21
230
- #: templates/payment/payment_items.tpl.php:5
231
- #, fuzzy
232
- msgid "Amount"
233
- msgstr "Precio"
234
-
235
- #: includes/admin/fees.php:48 includes/admin/helpers/class-fees-table.php:124
236
- #: includes/admin/settings/class-settings-bootstrap.php:884
237
- #: includes/admin/upgrades/migrations/manual-upgrade-18_0-featured-levels.php:275
238
- #, fuzzy
239
- msgid "Images"
240
- msgstr "Imágenes"
241
-
242
- #: includes/admin/form-fields.php:31
243
- #: includes/fields/class-fieldtypes-social.php:138
244
- #: templates/admin/csv-import.tpl.php:300
245
- #, fuzzy
246
- msgid "Type"
247
- msgstr "Tipo"
248
-
249
- #: includes/admin/form-fields.php:88
250
- msgid "Edit"
251
- msgstr "Editar"
252
-
253
- #: includes/admin/form-fields.php:104
254
- #: includes/admin/helpers/class-fees-table.php:298
255
- #: includes/admin/settings/class-settings-admin.php:535
256
- #: templates/admin/metaboxes-listing-flagging-row.tpl.php:19
257
- #: templates/admin/payments-note.tpl.php:14
258
- #: templates/admin/themes-item.tpl.php:58
259
- #: templates/parts/listing-buttons.tpl.php:33
260
- #: templates/parts/listing-buttons.tpl.php:67
261
- #, fuzzy
262
- msgid "Delete"
263
- msgstr "Eliminar"
264
-
265
- #: includes/admin/form-fields.php:217
266
- #, fuzzy
267
- msgid ""
268
- "You can create these custom fields inside \"Form Fields\" or let Business "
269
- "Directory do it for you."
270
- msgstr ""
271
- "Puede crear estos campos usted mismo en \"Administrar Campos de Formulario\" "
272
- "o puede dejar que Business Directory haga esto por usted automáticamente."
273
-
274
- #: includes/admin/form-fields.php:222 includes/views/submit_listing.php:800
275
- #, fuzzy
276
- msgid "Go to \"Form Fields\""
277
- msgstr "Ir a \"Administrar Campos de Formulario\""
278
-
279
- #: includes/admin/form-fields.php:312 includes/functions.php:1264
280
- #: includes/functions.php:1269
281
- #, fuzzy
282
- msgid "Go back"
283
- msgstr "Regresar"
284
-
285
- #: includes/admin/form-fields.php:525
286
- #: includes/admin/settings/class-settings-bootstrap.php:753
287
- #: templates/email/listing-added.tpl.php:10
288
- #: templates/email/listing-edited.tpl.php:16
289
- #: templates/email/listing-reported.tpl.php:11
290
- #, fuzzy
291
- msgid "Title"
292
- msgstr "Título"
293
-
294
- #: includes/admin/form-fields.php:526 templates/admin/fees-form.tpl.php:216
295
- #: templates/email/listing-added.tpl.php:21
296
- #: templates/email/listing-edited.tpl.php:29
297
- #, fuzzy
298
- msgid "Category"
299
- msgstr "Categoría"
300
-
301
- #: includes/admin/form-fields.php:527
302
- #, fuzzy
303
- msgid "Excerpt"
304
- msgstr "Resumen"
305
-
306
- #: includes/admin/form-fields.php:528
307
- #, fuzzy
308
- msgid "Content"
309
- msgstr "Contenido"
310
-
311
- #: includes/admin/form-fields.php:529
312
- #, fuzzy
313
- msgid "Tags"
314
- msgstr "Etiquetas"
315
-
316
- #: includes/admin/form-fields.php:530 includes/form-fields.php:445
317
- #: templates/checkout-billing-form.tpl.php:75
318
- #: themes/default/templates/excerpt_content.tpl.php:22
319
- #, fuzzy
320
- msgid "Address"
321
- msgstr "Dirección"
322
-
323
- #: includes/admin/form-fields.php:531
324
- #, fuzzy
325
- msgid "Address 2"
326
- msgstr "Dirección 2"
327
-
328
- #: includes/admin/form-fields.php:532
329
- #: templates/admin/payments-details.tpl.php:160
330
- #: templates/checkout-billing-form.tpl.php:87
331
- #, fuzzy
332
- msgid "City"
333
- msgstr "Ciudad"
334
-
335
- #: includes/admin/form-fields.php:533
336
- #: templates/admin/payments-details.tpl.php:156
337
- #, fuzzy
338
- msgid "State"
339
- msgstr "Estado"
340
-
341
- #: includes/admin/form-fields.php:534
342
- #: templates/admin/payments-details.tpl.php:152
343
- #: templates/checkout-billing-form.tpl.php:102
344
- #, fuzzy
345
- msgid "Country"
346
- msgstr "País"
347
-
348
- #: includes/admin/form-fields.php:535 includes/form-fields.php:453
349
- #: templates/admin/payments-details.tpl.php:164
350
- msgid "ZIP Code"
351
- msgstr "Código Postal"
352
-
353
- #: includes/admin/form-fields.php:536
354
- #, fuzzy
355
- msgid "FAX Number"
356
- msgstr "Número de Fax"
357
-
358
- #: includes/admin/form-fields.php:537
359
- #: includes/fields/class-fieldtypes-phone-number.php:13
360
- #, fuzzy
361
- msgid "Phone Number"
362
- msgstr "Número telefónico"
363
-
364
- #: includes/admin/form-fields.php:538
365
- #, fuzzy
366
- msgid "Ratings Field"
367
- msgstr "Campo de ratings"
368
-
369
- #: includes/admin/form-fields.php:539
370
- #, fuzzy
371
- msgid "Twitter"
372
- msgstr "Twitter"
373
-
374
- #: includes/admin/form-fields.php:540 includes/form-fields.php:411
375
- #, fuzzy
376
- msgid "Website"
377
- msgstr "Sitio web"
378
-
379
- #: includes/admin/helpers/class-listing-timeline.php:121
380
- #: includes/class-listings-api.php:33
381
- #, fuzzy
382
- msgid "Listing renewed"
383
- msgstr "Listado renovado"
384
-
385
- #: includes/admin/helpers/class-modules-list.php:182
386
- #, fuzzy
387
- msgid "Installed"
388
- msgstr "Instalado"
389
-
390
- #: includes/admin/helpers/class-modules-list.php:187
391
- #: templates/admin/themes-item.tpl.php:43
392
- #, fuzzy
393
- msgid "Active"
394
- msgstr "Activas"
395
-
396
- #: includes/admin/helpers/class-modules-list.php:192
397
- #, fuzzy
398
- msgid "Not Installed"
399
- msgstr "No Instalado"
400
-
401
- #: includes/admin/helpers/class-modules-list.php:225
402
- #: includes/controllers/class-smtp.php:317
403
- #: templates/admin/themes-item.tpl.php:53
404
- #, fuzzy
405
- msgid "Activate"
406
- msgstr "Activar"
407
-
408
- #: includes/admin/helpers/class-modules-list.php:235
409
- #: includes/admin/helpers/class-modules-list.php:236 includes/licensing.php:276
410
- msgid "Upgrade Now"
411
- msgstr "Mejorar ahora"
412
-
413
- #: includes/admin/page-debug.php:40
414
- #, fuzzy
415
- msgid "Plugin Settings"
416
- msgstr "Configuración de enlaces permanentes"
417
-
418
- #: includes/admin/page-debug.php:70
419
- #, fuzzy
420
- msgid "Environment"
421
- msgstr "Environment"
422
-
423
- #: includes/admin/page-debug.php:115
424
- msgid "Plugin Info"
425
- msgstr ""
426
-
427
- #: includes/admin/page-debug.php:159
428
- #, fuzzy
429
- msgid "OK"
430
- msgstr "OK"
431
-
432
- #: includes/admin/page-debug.php:161
433
- msgid "Missing tables: %s"
434
- msgstr "Tablas faltantes: %s"
435
-
436
- #: includes/admin/settings/class-settings-admin.php:475
437
- msgid "Your license key provides access to new features and updates."
438
- msgstr ""
439
-
440
- #: includes/admin/settings/class-settings-admin.php:477
441
- #, fuzzy
442
- msgid "You're using Business Directory Plugin Lite. Enjoy!"
443
- msgstr "¿Por qué está desinstalando Business Directory Plugin?"
444
-
445
- #: includes/admin/settings/class-settings-bootstrap.php:13
446
- #: includes/form-fields.php:428 includes/views/submit_listing.php:1199
447
- #: templates/admin/payments-details.tpl.php:136
448
- #: templates/listing-contactform.tpl.php:33
449
- #: templates/listing-flagging-form.tpl.php:39
450
- #, fuzzy
451
- msgid "Email"
452
- msgstr "Correo electrónico:"
453
-
454
- #: includes/admin/settings/class-settings-bootstrap.php:21
455
- #, fuzzy
456
- msgid "Module Settings"
457
- msgstr "Configuración"
458
-
459
- #: includes/admin/settings/class-settings-bootstrap.php:23
460
- #: includes/admin/settings/class-settings-bootstrap.php:287
461
- #, fuzzy
462
- msgid "Miscellaneous"
463
- msgstr "Configuraciones Varias"
464
-
465
- #: includes/admin/settings/class-settings-bootstrap.php:37
466
- #, fuzzy
467
- msgid "License Key"
468
- msgstr "Licencias"
469
-
470
- #: includes/admin/settings/class-settings-bootstrap.php:58
471
- msgid "SEO"
472
- msgstr ""
473
-
474
- #: includes/admin/settings/class-settings-bootstrap.php:254
475
- #: includes/class-assets.php:317
476
- #: includes/fields/class-fieldtypes-textarea.php:200
477
- #: templates/admin/metaboxes-listing-information-plan.tpl.php:106
478
- #: templates/admin/metaboxes-listing-information-plan.tpl.php:113
479
- #, fuzzy
480
- msgid "No"
481
- msgstr "No"
482
-
483
- #: includes/admin/settings/class-settings-bootstrap.php:255
484
- #, fuzzy
485
- msgid "Yes, and make it optional"
486
- msgstr "Sí, crear una cuenta es opcional"
487
-
488
- #: includes/admin/settings/class-settings-bootstrap.php:256
489
- #, fuzzy
490
- msgid "Yes, and make it required"
491
- msgstr "Sí, crear una cuenta es necesario"
492
-
493
- #: includes/admin/settings/class-settings-bootstrap.php:263
494
- #: includes/admin/settings/class-settings-bootstrap.php:277
495
- #: includes/views/submit_listing.php:510
496
- #, fuzzy
497
- msgid "Terms and Conditions"
498
- msgstr "Términos y Condiciones"
499
-
500
- #: includes/admin/settings/class-settings-bootstrap.php:268
501
- #, fuzzy
502
- msgid "User Agreement"
503
- msgstr "Nombre de usuario"
504
-
505
- #: includes/admin/settings/class-settings-bootstrap.php:269
506
- #, fuzzy
507
- msgid "Display and require user agreement to Terms and Conditions"
508
- msgstr "Mostrar y requerir que el usuario acepte los Términos y Condiciones"
509
-
510
- #: includes/admin/settings/class-settings-bootstrap.php:293
511
- #, fuzzy
512
- msgid "Data Collection"
513
- msgstr "Recolección de Datos"
514
-
515
- #: includes/admin/settings/class-settings-bootstrap.php:294
516
- msgid ""
517
- "Allow Business Directory to anonymously collect information about your "
518
- "installed plugins, themes and WP version?"
519
- msgstr ""
520
- "¿Permitir a Business Directory obtener de manera anónima información acerca "
521
- "de sus plugins instalados, temas y versión de WordPress?"
522
-
523
- #: includes/admin/settings/class-settings-bootstrap.php:295
524
- msgid "Learn more"
525
- msgstr ""
526
-
527
- #: includes/admin/settings/class-settings-bootstrap.php:301
528
- #, fuzzy
529
- msgid "Searching"
530
- msgstr "Buscar"
531
-
532
- #: includes/admin/settings/class-settings-bootstrap.php:306
533
- #, fuzzy
534
- msgid "Display advanced search form"
535
- msgstr "Búsqueda Avanzada"
536
-
537
- #: includes/admin/settings/class-settings-bootstrap.php:324
538
- msgid ""
539
- "Enabling this sacrifices result quality to improve speed. This is helpful if "
540
- "you're on shared hosting plans, where database performance is an issue."
541
- msgstr ""
542
- "Habilitar esta opción hace que Business Directory sacrifique calidad en los "
543
- "resultados para mejorar la velocidad. Es útil cuando se está en planes de "
544
- "hospedaje compartidos donde el desempeño de la base de datos es un problema."
545
-
546
- #: includes/admin/settings/class-settings-bootstrap.php:443
547
- #, fuzzy
548
- msgid "Categories"
549
- msgstr "Categorías"
550
-
551
- #: includes/admin/settings/class-settings-bootstrap.php:445
552
- #, fuzzy
553
- msgid "Buttons"
554
- msgstr "Estilo de los botones"
555
-
556
- #: includes/admin/settings/class-settings-bootstrap.php:447
557
- #, fuzzy
558
- msgid "Sorting"
559
- msgstr "Configuración"
560
-
561
- #: includes/admin/settings/class-settings-bootstrap.php:575
562
- #, fuzzy
563
- msgid ""
564
- "Business Directory Plugin uses the standard WordPress comments. Most themes "
565
- "allow for comments on posts, not pages. Some themes handle both. Since the "
566
- "directory is displayed on a page, we need a theme that can handle both. Use "
567
- "the 2nd option if you want to allow comments on listings. If that doesn't "
568
- "work, try the 3rd option."
569
- msgstr ""
570
- "Business Directory hace uso de la inclusión estándar de comentarios de "
571
- "WordPress, pero la mayoría de los temas permiten comentarios en posts, no "
572
- "páginas. Algunos temas soportan ambos. Business Directory se muestra en una "
573
- "página, así que requiere de un tema que incluya este soporte para mostrar "
574
- "comentarios. Utilice la 2a opción primero si desea permitir comentarios en "
575
- "listados, y si esto no funciona, intente con la 3a opción."
576
-
577
- #: includes/admin/settings/class-settings-bootstrap.php:579
578
- #, fuzzy
579
- msgid "Include theme comment form (standard option)"
580
- msgstr "Include formulario de comentarios, invocado por el tema (estándar)"
581
-
582
- #: includes/admin/settings/class-settings-bootstrap.php:580
583
- #, fuzzy
584
- msgid "Include directory comment form (use only if 2nd option does not work)"
585
- msgstr ""
586
- "Incluir formulario de comentarios, invocado por Business Directory (usar si "
587
- "la opción estándar no funciona)"
588
-
589
- #: includes/admin/settings/class-settings-bootstrap.php:598
590
- #, fuzzy
591
- msgid "Prevent featured (sticky) status on directory pages?"
592
- msgstr "No mostrar listados destacados en estas páginas?"
593
-
594
- #: includes/admin/settings/class-settings-bootstrap.php:626
595
- #, fuzzy
596
- msgid "Owner of anonymous listings"
597
- msgstr "Dueño por defecto de ‘Listados Enviados Anónimamente’"
598
-
599
- #: includes/admin/settings/class-settings-bootstrap.php:638
600
- #, fuzzy
601
- msgid "Default free listings status"
602
- msgstr "Usuario a usar por defecto"
603
-
604
- #: includes/admin/settings/class-settings-bootstrap.php:642
605
- #: includes/admin/settings/class-settings-bootstrap.php:655
606
- #, fuzzy
607
- msgid "Pending (Require approval)"
608
- msgstr "Pendientes de renovación"
609
-
610
- #: includes/admin/settings/class-settings-bootstrap.php:680
611
- #, fuzzy
612
- msgid ""
613
- "This text is displayed on the first page of the Submit Listing process. You "
614
- "can use it for instructions about filling out the form or information to get "
615
- "started."
616
- msgstr ""
617
- "Este texto se muestra en la primera página del proceso de envío de un "
618
- "listado. Puede utilizarlo para dar instrucciones acerca de cómo llenar el "
619
- "formulario o cualquier otra información que desee que los usuarios vean "
620
- "antes de comenzar."
621
-
622
- #: includes/admin/settings/class-settings-bootstrap.php:693
623
- #: templates/listing-contactform.tpl.php:30
624
- #: templates/listing-flagging-form.tpl.php:35
625
- #, fuzzy
626
- msgid "Name"
627
- msgstr "Nombre"
628
-
629
- #: includes/admin/settings/class-settings-bootstrap.php:807
630
- msgid "Show Buttons"
631
- msgstr ""
632
-
633
- #: includes/admin/settings/class-settings-bootstrap.php:857
634
- msgid "Styling"
635
- msgstr ""
636
-
637
- #: includes/admin/settings/class-settings-bootstrap.php:863
638
- #, fuzzy
639
- msgid "Button style"
640
- msgstr "Estilo de los botones"
641
-
642
- #: includes/admin/settings/class-settings-bootstrap.php:866
643
- #, fuzzy
644
- msgid "Override WP theme button styling"
645
- msgstr "Estilo de los botones"
646
-
647
- #: includes/admin/settings/class-settings-bootstrap.php:874
648
- msgid "Primary color"
649
- msgstr ""
650
-
651
- #: includes/admin/settings/class-settings-bootstrap.php:877
652
- msgid "This is used for form buttons and form rootline."
653
- msgstr ""
654
-
655
- #: includes/admin/settings/class-settings-bootstrap.php:1078
656
- #: includes/fields/class-fieldtypes-social.php:92
657
- #: includes/fields/class-fieldtypes-url.php:162
658
- #: templates/email/listing-added.tpl.php:13
659
- #: templates/email/listing-edited.tpl.php:19
660
- #: templates/email/listing-reported.tpl.php:13
661
- #: templates/email-access-keys.tpl.php:7
662
- #, fuzzy
663
- msgid "URL"
664
- msgstr "URL"
665
-
666
- #: includes/admin/settings/class-settings-bootstrap.php:1222
667
- #, fuzzy
668
- msgid "Thank you for your payment."
669
- msgstr "Mensaje de agradecimiento por el pago"
670
-
671
- #: includes/admin/settings/class-settings-bootstrap.php:1251
672
- msgid ""
673
- "If you are using this gateway, we recommend you disable it if you wish to "
674
- "collect payments in this currency."
675
- msgid_plural ""
676
- "If you are using these gateways, we recommend you disable them if you wish "
677
- "to collect payments in this currency."
678
- msgstr[0] ""
679
- "Si utiliza este gateway, le recomendamos deshabilitarlo si desea recibir "
680
- "pagos en esta divisa."
681
- msgstr[1] ""
682
- "Si utiliza estos gateways, le recomendamos deshabilitarlos si desea recibir "
683
- "pagos en esta divisa."
684
-
685
- #: includes/admin/settings/class-settings-bootstrap.php:1340
686
- #: includes/admin/settings/class-settings-bootstrap.php:1536
687
- #, fuzzy
688
- msgid "Email Notifications"
689
- msgstr "Notificaciones de correo-e"
690
-
691
- #: includes/admin/settings/class-settings-bootstrap.php:1345
692
- #, fuzzy
693
- msgid "Notify admin via email when..."
694
- msgstr "Notificar al administrador a través de correo electrónico cuando..."
695
-
696
- #: includes/admin/settings/class-settings-bootstrap.php:1363
697
- #, fuzzy
698
- msgid "CC this email address too"
699
- msgstr "Copiar a esta dirección de correo también"
700
-
701
- #: includes/admin/settings/class-settings-bootstrap.php:1369
702
- #, fuzzy
703
- msgid ""
704
- "You can modify the text template used for most of these emails in the "
705
- "<templates-link>Templates</templates-link> tab."
706
- msgstr ""
707
- "Puede modificar la plantilla de texto utilizada para la mayoría de estos "
708
- "correos electrónicos en la sección de <templates-link>Plantillas</templates-"
709
- "link>."
710
-
711
- #: includes/admin/settings/class-settings-bootstrap.php:1377
712
- #, fuzzy
713
- msgid "Notify users via email when..."
714
- msgstr "Notificar usuarios vía correo electrónico cuando..."
715
-
716
- #. translators: %s: email shortcode
717
- #: includes/admin/settings/class-settings-bootstrap.php:1444
718
- #, fuzzy
719
- msgid "Email: %s"
720
- msgstr "Correo Electrónico: %s"
721
-
722
- #: includes/admin/settings/class-settings-bootstrap.php:1455
723
- #, fuzzy
724
- msgid "Sender's email address"
725
- msgstr "Dirección de correo-e del remitente"
726
-
727
- #. translators: %s: file name
728
- #: includes/admin/settings/class-settings-bootstrap.php:1615
729
- #, fuzzy
730
- msgid ""
731
- "Could not remove the \"Business Directory Plugin - AJAX Compatibility Module"
732
- "\". Please remove the file \"%s\" manually or deactivate the plugin."
733
- msgstr ""
734
- "No se pudo remover \"Business Directory Plugin - AJAX Compatibility Module"
735
- "\". Por favor elimine el archivo \"%s\" manualmente o desactive el plugin."
736
-
737
- #. translators: %s: directory name
738
- #: includes/admin/settings/class-settings-bootstrap.php:1628
739
- #, fuzzy
740
- msgid ""
741
- "Could not activate AJAX Compatibility mode: the directory \"%s\" could not "
742
- "be created."
743
- msgstr ""
744
- "No se pudo activar el modo de compatibilidad AJAX: el directorio \"%s\" no "
745
- "pudo ser creado."
746
-
747
- #. translators: %s: file name
748
- #: includes/admin/settings/class-settings-bootstrap.php:1634
749
- #, fuzzy
750
- msgid ""
751
- "Could not copy the AJAX compatibility plugin \"%s\". Compatibility mode was "
752
- "not activated."
753
- msgstr ""
754
- "No se pudo copiar el plugin de compatibilidad AJAX \"%s\". El modo de "
755
- "compatibilidad no fue activado."
756
-
757
- #: includes/admin/settings/class-settings-bootstrap.php:1708
758
- #: templates/admin/uninstall-complete.tpl.php:4
759
- msgid "Uninstall"
760
- msgstr "Desinstalar"
761
-
762
- #: includes/admin/tracking.php:222
763
- #, fuzzy
764
- msgid "Allow Tracking"
765
- msgstr "Permitir Seguimiento"
766
-
767
- #: includes/admin/upgrades/class-installer-installation-error.php:15
768
- msgid "Business Directory - Installation Failed"
769
- msgstr "Business Directory - La Instalación Falló"
770
-
771
- #: includes/admin/upgrades/class-installer-installation-error.php:17
772
- msgid ""
773
- "Business Directory installation failed. An exception with following message "
774
- "was generated:"
775
- msgstr ""
776
- "La instalación de Business Directory falló. Se generó una excepción con el "
777
- "siguiente mensaje:"
778
-
779
- #: includes/admin/upgrades/class-installer-installation-error.php:22
780
- msgid "Please <contact-link>contact customer support</a>."
781
- msgstr "Por favor <contact-link>contacte al soporte al cliente</a>."
782
-
783
- #: includes/admin/upgrades/class-manual-upgrade-helper.php:89
784
- msgid "Business Directory - Manual Upgrade Required"
785
- msgstr "Business Directory - Actualización Manual Requerida"
786
-
787
- #: includes/admin/upgrades/class-manual-upgrade-helper.php:91
788
- msgid ""
789
- "Business Directory features are currently disabled because the plugin needs "
790
- "to perform a manual upgrade before continuing."
791
- msgstr ""
792
- "Las características de Business Directory se encuentran deshabitadas pues es "
793
- "necesario realizar una actualización manual antes de continuar."
794
-
795
- #: includes/admin/upgrades/class-manual-upgrade-helper.php:93
796
- msgid "Perform Manual Upgrade"
797
- msgstr "Realizar Actualización Manual"
798
-
799
- #: includes/admin/upgrades/class-manual-upgrade-helper.php:110
800
- #: includes/admin/upgrades/class-manual-upgrade-helper.php:111
801
- #: includes/admin/upgrades/class-manual-upgrade-helper.php:151
802
- msgid "Business Directory - Manual Upgrade"
803
- msgstr "Business Directory - Actualización Manual"
804
-
805
- #: includes/admin/upgrades/class-manual-upgrade-helper.php:173
806
- msgid ""
807
- "Business Directory features are currently disabled because the plugin needs "
808
- "to perform a manual upgrade before it can be used."
809
- msgstr ""
810
- "Las características de Business Directory se encuentran deshabitadas pues es "
811
- "necesario realizar una actualización manual antes de que el plugin pueda ser "
812
- "utilizado."
813
-
814
- #: includes/admin/upgrades/class-manual-upgrade-helper.php:175
815
- msgid "Click \"Start Upgrade\" and wait until the process finishes."
816
- msgstr ""
817
- "Haga clic en \"Iniciar Actualización\" y espere hasta que el proceso "
818
- "finalice."
819
-
820
- #: includes/admin/upgrades/migrations/manual-upgrade-18_0-featured-levels.php:21
821
- #: includes/admin/upgrades/migrations/manual-upgrade-18_0-featured-levels.php:22
822
- #: includes/admin/upgrades/migrations/manual-upgrade-18_0-featured-levels.php:192
823
- #: includes/admin/upgrades/migrations/manual-upgrade-18_0-featured-levels.php:201
824
- msgid "Business Directory - Featured Levels Migration"
825
- msgstr "Directorio de Negocios - Migración de Niveles Destacados"
826
-
827
- #: includes/admin/upgrades/migrations/manual-upgrade-18_0-featured-levels.php:272
828
- #: templates/admin/fees-form.tpl.php:16
829
- #, fuzzy
830
- msgid "Fee Label"
831
- msgstr "Nombre Comisión"
832
-
833
- #: includes/admin/upgrades/migrations/manual-upgrade-18_0-featured-levels.php:274
834
- #, fuzzy
835
- msgid "Duration"
836
- msgstr "Duración"
837
-
838
- #: includes/admin/views/modules/list.php:10
839
- #, fuzzy
840
- msgid "Directory Modules"
841
- msgstr "Temas del Directorio"
842
-
843
- #: includes/admin/views/modules/list.php:46
844
- #: includes/admin/views/modules/list.php:47
845
- #, fuzzy
846
- msgid "View Docs"
847
- msgstr "Ver"
848
-
849
- #. translators: %s: Status name
850
- #: includes/admin/views/modules/list.php:63
851
- #: templates/admin/themes-item.tpl.php:42
852
- #, fuzzy
853
- msgid "Status: %s"
854
- msgstr "Estado:"
855
-
856
- #: includes/class-assets.php:315
857
- #, fuzzy
858
- msgid "Never"
859
- msgstr "Nunca"
860
-
861
- #: includes/class-assets.php:316
862
- #: includes/fields/class-fieldtypes-textarea.php:201
863
- #: templates/admin/metaboxes-listing-information-plan.tpl.php:106
864
- #: templates/admin/metaboxes-listing-information-plan.tpl.php:113
865
- #, fuzzy
866
- msgid "Yes"
867
- msgstr "Sí"
868
-
869
- #: includes/class-assets.php:326
870
- #, fuzzy
871
- msgid ""
872
- "Preview is only available after you've saved the first draft. This is due to "
873
- "how WordPress stores the data."
874
- msgstr ""
875
- "La vista previa solo está disponible después de guardar el primer borrador. "
876
- "Esto se debe a\n"
877
- " la forma en que WordPress almacena los datos."
878
-
879
- #: includes/class-cpt-integration.php:20
880
- msgid "New Listing"
881
- msgstr "Nuevo Listado"
882
-
883
- #: includes/class-cpt-integration.php:21
884
- msgid "View Listing"
885
- msgstr "Ver Listado"
886
-
887
- #: includes/class-cpt-integration.php:22
888
- msgid "Search Listings"
889
- msgstr "Buscar Listados"
890
-
891
- #: includes/class-cpt-integration.php:23
892
- msgid "Directory Listings"
893
- msgstr "Listados del Directorio"
894
-
895
- #: includes/class-cpt-integration.php:24
896
- msgid "No listings found"
897
- msgstr "No se encontraron listados"
898
-
899
- #: includes/class-cpt-integration.php:25
900
- msgid "No listings found in trash"
901
- msgstr "No se encontraron listados en la papelera"
902
-
903
- #: includes/class-cpt-integration.php:46
904
- msgid "Directory Categories"
905
- msgstr "Categorías de Directorio"
906
-
907
- #: includes/class-cpt-integration.php:47
908
- msgid "Directory Category"
909
- msgstr "Categoría de Directorio"
910
-
911
- #: includes/class-cpt-integration.php:58
912
- msgid "Directory Tags"
913
- msgstr "Etiquetas de Directorio"
914
-
915
- #: includes/class-cpt-integration.php:59
916
- msgid "Directory Tag"
917
- msgstr "Etiqueta de Directorio"
918
-
919
- #. translators: %s: listing count
920
- #: includes/class-cpt-integration.php:253
921
- msgid "%s listing updated."
922
- msgid_plural "%s listings updated."
923
- msgstr[0] "%s listado actualizado."
924
- msgstr[1] "%s listados actualizados."
925
-
926
- #. translators: %s: listing count
927
- #: includes/class-cpt-integration.php:255
928
- msgid "%s listing not updated, somebody is editing it."
929
- msgid_plural "%s listings not updated, somebody is editing them."
930
- msgstr[0] "%s listado no actualizado, alguien está editándolo."
931
- msgstr[1] "%s listados no actualizados, alguien los está editándonos."
932
-
933
- #. translators: %s: listing count
934
- #: includes/class-cpt-integration.php:257
935
- msgid "%s listing permanently deleted."
936
- msgid_plural "%s listings permanently deleted."
937
- msgstr[0] "%s listado eliminado permanentemente."
938
- msgstr[1] "%s listados eliminados permanentemente."
939
-
940
- #. translators: %s: listing count
941
- #: includes/class-cpt-integration.php:259
942
- msgid "%s listing moved to the Trash."
943
- msgid_plural "%s listings moved to the Trash."
944
- msgstr[0] "%s listado se trasladó a la Papelera."
945
- msgstr[1] "%s listados se trasladaron a la Papelera."
946
-
947
- #. translators: %s: listing count
948
- #: includes/class-cpt-integration.php:261
949
- msgid "%s listing restored from the Trash."
950
- msgid_plural "%s listings restored from the Trash."
951
- msgstr[0] "%s listado restablecido de la Papelera."
952
- msgstr[1] "%s listados restablecidos de la Papelera."
953
-
954
- #: includes/class-fees-api.php:62
955
- #, fuzzy
956
- msgid "Free Listing"
957
- msgstr "Listado Gratuito"
958
-
959
- #: includes/class-meta.php:155 includes/templates-ui.php:333
960
- #: includes/views/submit_listing.php:32 templates/submit-listing.tpl.php:17
961
- #, fuzzy
962
- msgid "Add Listing"
963
- msgstr "Agregar Comisión de Listado"
964
-
965
- #: includes/class-meta.php:165 includes/templates-ui.php:315
966
- #: includes/views/all_listings.php:6
967
- msgid "View All Listings"
968
- msgstr "Ver Todos los Listados"
969
-
970
- #. translators: %s: field name
971
- #: includes/class-payment-gateway.php:103
972
- #, fuzzy
973
- msgid "This field is required (%s)."
974
- msgstr "Este campo es requerido."
975
-
976
- #: includes/class-payment-gateway.php:155
977
- msgid ""
978
- "There was an unexpected error trying to cancel your subscription. Please "
979
- "contact the website's administrator mentioning this problem. The "
980
- "administrator should be able to cancel your subscription contacting the "
981
- "payment processor directly."
982
- msgstr ""
983
- "Ocurrió un error inesperado intentando cancelar su subscripción. Por favor "
984
- "contacte el administrador del sitio web mencionando este problema. El "
985
- "administrador puede cancelar su subscripción contactando el procesador de "
986
- "pagos directamente."
987
-
988
- #. translators: %1$s: open link html, %2$s close link
989
- #: includes/class-payment-gateways.php:165
990
- #, fuzzy
991
- msgid ""
992
- "You have payments turned on but do not have a public fee plan. Directory "
993
- "users won't be able to submit a listing until you add a public fee plan. Go "
994
- "to %1$sFee Plans%2$s to add or edit your fee plan(s)."
995
- msgstr ""
996
- "Tiene los pagos habilitados pero no hay una plan de pago público. Los "
997
- "usuarios del directorio no podrán agregar un listado hasta que agregue un "
998
- "plan de pago público. Diríjase a %1$sAdministrar Tarifas%2$s para agregar o "
999
- "editar plan(es) de tarifa(s)."
1000
-
1001
- #: includes/class-wpbdp.php:301
1002
- #, fuzzy
1003
- msgid "Settings"
1004
- msgstr "Configuración"
1005
-
1006
- #: includes/class-wpbdp.php:503
1007
- #, fuzzy
1008
- msgid "Could not find listing ID"
1009
- msgstr "No se pudo encontrar el ID del listado"
1010
-
1011
- #: includes/class-wpbdp.php:510
1012
- #, fuzzy
1013
- msgid ""
1014
- "Could not verify the image upload request. If problem persists contact site "
1015
- "admin."
1016
- msgstr ""
1017
- "Algo salió mal, por favor inténtelo de nuevo. Si el error persiste contacte "
1018
- "al administrador del sitio"
1019
-
1020
- #: includes/class-wpbdp.php:517 includes/fields/class-fieldtypes-image.php:322
1021
- #, fuzzy
1022
- msgid "Could not find image ID"
1023
- msgstr "No se pudo encontrar el ID del la imagen"
1024
-
1025
- #: includes/class-wpbdp.php:549
1026
- msgid ""
1027
- "The directory features are disabled at this time because a <a>manual "
1028
- "upgrade</a> is pending."
1029
- msgstr ""
1030
- "Las características de Business Directory se encuentran deshabilitadas en "
1031
- "este momento por una <a>actualización manual</a> está pendiente."
1032
-
1033
- #: includes/class-wpbdp.php:556
1034
- msgid ""
1035
- "The directory is not available at this time. Please try again in a few "
1036
- "minutes or contact the administrator if the problem persists."
1037
- msgstr ""
1038
- "El directorio no está disponible en este momento. Por favor espere unos "
1039
- "minutos e intente nuevamente, o contacte al administrador si los problemas "
1040
- "persisten."
1041
-
1042
- #: includes/controllers/class-addons.php:25
1043
- msgid ""
1044
- "Your plugin has been installed. Please reload the page to see more options."
1045
- msgstr ""
1046
-
1047
- #: includes/controllers/class-addons.php:74
1048
- msgid ""
1049
- "Sorry, your site requires FTP authentication. Please download plugins from "
1050
- "BusinessDirectoryPlugin.com and install them manually."
1051
- msgstr ""
1052
-
1053
- #: includes/controllers/class-addons.php:131
1054
- msgid ""
1055
- "Your plugin has been activated. Please reload the page to see more options."
1056
- msgstr ""
1057
-
1058
- #: includes/controllers/class-smtp.php:102
1059
- msgid "SMTP"
1060
- msgstr ""
1061
-
1062
- #: includes/controllers/class-smtp.php:146
1063
- msgid "Making Email Deliverability Easy for WordPress"
1064
- msgstr ""
1065
-
1066
- #: includes/controllers/class-smtp.php:147
1067
- msgid ""
1068
- "WP Mail SMTP allows you to easily set up WordPress to use a trusted provider "
1069
- "to reliably send emails, including listing notifications."
1070
- msgstr ""
1071
-
1072
- #: includes/controllers/class-smtp.php:172
1073
- msgid "WP Mail SMTP screenshot"
1074
- msgstr ""
1075
-
1076
- #: includes/controllers/class-smtp.php:174
1077
- msgid "Over 1,000,000 websites use WP Mail SMTP."
1078
- msgstr ""
1079
-
1080
- #: includes/controllers/class-smtp.php:175
1081
- msgid "Send emails authenticated via trusted parties."
1082
- msgstr ""
1083
-
1084
- #: includes/controllers/class-smtp.php:176
1085
- msgid ""
1086
- "Transactional Mailers: Pepipost, SendinBlue, Mailgun, SendGrid, Amazon SES."
1087
- msgstr ""
1088
-
1089
- #: includes/controllers/class-smtp.php:177
1090
- msgid "Web Mailers: Gmail, G Suite, Office 365, Outlook.com."
1091
- msgstr ""
1092
-
1093
- #: includes/controllers/class-smtp.php:197
1094
- msgid "Step 1"
1095
- msgstr ""
1096
-
1097
- #. translators: %s: Name of the plugin
1098
- #: includes/controllers/class-smtp.php:204
1099
- #, fuzzy
1100
- msgid "Install and Activate %s"
1101
- msgstr "Instalado: %s"
1102
-
1103
- #: includes/controllers/class-smtp.php:220
1104
- msgid "Install WP Mail SMTP from the WordPress.org plugin repository."
1105
- msgstr ""
1106
-
1107
- #: includes/controllers/class-smtp.php:244
1108
- msgid "Step 2"
1109
- msgstr ""
1110
-
1111
- #: includes/controllers/class-smtp.php:264
1112
- msgid "Set Up WP Mail SMTP"
1113
- msgstr ""
1114
-
1115
- #: includes/controllers/class-smtp.php:265
1116
- msgid "Select and configure your mailer."
1117
- msgstr ""
1118
-
1119
- #: includes/controllers/class-smtp.php:298
1120
- msgid "Install WP Mail SMTP"
1121
- msgstr ""
1122
-
1123
- #: includes/controllers/class-smtp.php:300
1124
- #, fuzzy
1125
- msgid "Install"
1126
- msgstr "Instalado"
1127
-
1128
- #: includes/controllers/class-smtp.php:312
1129
- msgid "WP Mail SMTP Installed & Activated"
1130
- msgstr ""
1131
-
1132
- #: includes/controllers/class-smtp.php:315
1133
- msgid "Activate WP Mail SMTP"
1134
- msgstr ""
1135
-
1136
- #: includes/controllers/class-smtp.php:336
1137
- #, fuzzy
1138
- msgid "Start Setup"
1139
- msgstr "Iniciar Importación"
1140
-
1141
- #: includes/controllers/class-smtp.php:342
1142
- #, fuzzy
1143
- msgid "Go to SMTP settings"
1144
- msgstr "Ir a su listado"
1145
-
1146
- #. translators: %1$s: date format, %2$s: Date format example
1147
- #: includes/fields/class-fieldtypes-date.php:35
1148
- #, fuzzy
1149
- msgid "%1$s (ex. %2$s)"
1150
- msgstr "%s (ej. %s)"
1151
-
1152
- #. translators: %1$s: Field label, %2$s: Accepted date format
1153
- #. translators: %1$s: field label, %2$s: format
1154
- #: includes/fields/class-fieldtypes-date.php:72 includes/form-fields.php:720
1155
- #, fuzzy
1156
- msgid "%1$s must be in the format %2$s."
1157
- msgstr "%1$s debe estar en el formato MM/DD/YYYY."
1158
-
1159
- #. translators: %s Field label
1160
- #. translators: %s: field label
1161
- #: includes/fields/class-fieldtypes-date.php:78 includes/form-fields.php:759
1162
- #, fuzzy
1163
- msgid "%s must be a valid date."
1164
- msgstr "%s debe ser una fecha válida."
1165
-
1166
- #: includes/fields/class-fieldtypes-image.php:55
1167
- #, fuzzy
1168
- msgid "Display caption?"
1169
- msgstr "Mostrar leyenda?"
1170
-
1171
- #. translators: %s: Field label
1172
- #: includes/fields/class-fieldtypes-image.php:131
1173
- #, fuzzy
1174
- msgid "\"%s\" Field unavailable at the moment."
1175
- msgstr "Este campo no está disponible en el momento."
1176
-
1177
- #: includes/fields/class-fieldtypes-image.php:155
1178
- #: templates/submit-listing-images-upload-form.tpl.php:38
1179
- #, fuzzy
1180
- msgid "Select Media"
1181
- msgstr "Seleccionar desde Medios"
1182
-
1183
- #: includes/fields/class-fieldtypes-select.php:24
1184
- #, fuzzy
1185
- msgid "Select List"
1186
- msgstr "Lista de Selección"
1187
-
1188
- #: includes/fields/class-fieldtypes-select.php:112
1189
- #, fuzzy
1190
- msgid "-- Choose One --"
1191
- msgstr "-- Elija Uno --"
1192
-
1193
- #: includes/fields/class-fieldtypes-select.php:139
1194
- #, fuzzy
1195
- msgid "-- Choose Terms --"
1196
- msgstr "-- Elija los términos --"
1197
-
1198
- #: includes/fields/class-fieldtypes-select.php:205
1199
- #, fuzzy
1200
- msgid "— None —"
1201
- msgstr "— Ninguno —"
1202
-
1203
- #: includes/fields/class-fieldtypes-select.php:262
1204
- #, fuzzy
1205
- msgid "Field Options (for select lists, radio buttons and checkboxes)."
1206
- msgstr ""
1207
- "Opciones del Campo (para listas de selección, botones de radio y casillas de "
1208
- "verificación)."
1209
-
1210
- #: includes/fields/class-fieldtypes-select.php:262
1211
- #: templates/admin/fees-form.tpl.php:16 templates/admin/fees-form.tpl.php:37
1212
- #: templates/admin/fees-form.tpl.php:57
1213
- #, fuzzy
1214
- msgid "required"
1215
- msgstr "requerido"
1216
-
1217
- #: includes/fields/class-fieldtypes-select.php:264
1218
- msgid "One option per line"
1219
- msgstr ""
1220
-
1221
- #: includes/fields/class-fieldtypes-select.php:274
1222
- #, fuzzy
1223
- msgid "Allow empty selection on search?"
1224
- msgstr "Permitir selección vacía en las búsquedas?"
1225
-
1226
- #: includes/fields/class-fieldtypes-select.php:292
1227
- #, fuzzy
1228
- msgid "Field list of options is required."
1229
- msgstr "La lista de opciones del campo es requerida."
1230
-
1231
- #: includes/fields/class-fieldtypes-social.php:72
1232
- #, fuzzy
1233
- msgid "Field Display Order"
1234
- msgstr "Orden de presentación del campo"
1235
-
1236
- #: includes/fields/class-fieldtypes-social.php:112
1237
- #, fuzzy
1238
- msgid "Text"
1239
- msgstr "Texto:"
1240
-
1241
- #: includes/fields/class-fieldtypes-social.php:120
1242
- #, fuzzy
1243
- msgid "Text to be displayed for social field"
1244
- msgstr "Texto que será presentado para el campo social"
1245
-
1246
- #: includes/fields/class-fieldtypes-textarea.php:214
1247
- #, fuzzy
1248
- msgid ""
1249
- "Warning: Users can use this feature to get around your image limits in fee "
1250
- "plans."
1251
- msgstr ""
1252
- "<b>Advertencia:</b> Los usuarios podrían usar esta característica para "
1253
- "saltar los límites de imágenes."
1254
-
1255
- #: includes/fields/class-fieldtypes-textarea.php:215
1256
- #, fuzzy
1257
- msgid "Allow images in HTML?"
1258
- msgstr "¿Permitir imágenes?"
1259
-
1260
- #: includes/fields/class-fieldtypes-url.php:14
1261
- #, fuzzy
1262
- msgid "URL Field"
1263
- msgstr "Campo de URL"
1264
-
1265
- #: includes/fields/class-fieldtypes-url.php:32
1266
- #, fuzzy
1267
- msgid "Open link in a new window?"
1268
- msgstr "Abrir enlace en nueva ventana?"
1269
-
1270
- #: includes/fields/class-fieldtypes-url.php:35
1271
- #, fuzzy
1272
- msgid "Use rel=\"nofollow\" when displaying the link?"
1273
- msgstr "Utilizar rel=\"nofollow\" cuando se muestre este enlace?"
1274
-
1275
- #: includes/fields/class-fieldtypes-url.php:174
1276
- #, fuzzy
1277
- msgid "Link Text (optional)"
1278
- msgstr "Texto del enlace (opcional):"
1279
-
1280
- #: includes/form-fields.php:32
1281
- #, fuzzy
1282
- msgid "Post Title"
1283
- msgstr "Título de la publicación"
1284
-
1285
- #: includes/form-fields.php:33
1286
- #, fuzzy
1287
- msgid "Post Content"
1288
- msgstr "Contenido de la publicación"
1289
-
1290
- #: includes/form-fields.php:34
1291
- #, fuzzy
1292
- msgid "Post Excerpt"
1293
- msgstr "Resumen/avance de la publicación"
1294
-
1295
- #: includes/form-fields.php:35
1296
- #, fuzzy
1297
- msgid "Post Category"
1298
- msgstr "Categoría de la publicación"
1299
-
1300
- #: includes/form-fields.php:36
1301
- #, fuzzy
1302
- msgid "Post Tags"
1303
- msgstr "Etiquetas de la publicación"
1304
-
1305
- #: includes/form-fields.php:37
1306
- #, fuzzy
1307
- msgid "Post Metadata"
1308
- msgstr "Metadata"
1309
-
1310
- #: includes/form-fields.php:39
1311
- #, fuzzy
1312
- msgid "Custom"
1313
- msgstr "Especial"
1314
-
1315
- #: includes/form-fields.php:376
1316
- #, fuzzy
1317
- msgid "Listing Title"
1318
- msgstr "Título del Listado: "
1319
-
1320
- #: includes/form-fields.php:385
1321
- #, fuzzy
1322
- msgid "Listing Category"
1323
- msgstr "Categorías del Listado"
1324
-
1325
- #: includes/form-fields.php:394
1326
- #, fuzzy
1327
- msgid "Short Description"
1328
- msgstr "Descripción corta del negocio"
1329
-
1330
- #: includes/form-fields.php:402 templates/admin/payments-details.tpl.php:108
1331
- #, fuzzy
1332
- msgid "Description"
1333
- msgstr "Descripción"
1334
-
1335
- #: includes/form-fields.php:420
1336
- msgid "Phone"
1337
- msgstr ""
1338
-
1339
- #: includes/form-fields.php:437
1340
- #, fuzzy
1341
- msgid "Listing Tags"
1342
- msgstr "Imágenes del listado"
1343
-
1344
- #: includes/form-fields.php:581
1345
- #, fuzzy
1346
- msgid "Email Validator"
1347
- msgstr "Validador de Correo Electrónico"
1348
-
1349
- #: includes/form-fields.php:582
1350
- #, fuzzy
1351
- msgid "URL Validator"
1352
- msgstr "Validador de URLs"
1353
-
1354
- #: includes/form-fields.php:583
1355
- #, fuzzy
1356
- msgid "Whole Number Validator"
1357
- msgstr "Validador de números enteros"
1358
-
1359
- #: includes/form-fields.php:584
1360
- #, fuzzy
1361
- msgid "Decimal Number Validator"
1362
- msgstr "Validador de números decimales"
1363
-
1364
- #: includes/form-fields.php:585
1365
- #, fuzzy
1366
- msgid "Date Validator"
1367
- msgstr "Validador de fechas"
1368
-
1369
- #: includes/form-fields.php:586
1370
- #, fuzzy
1371
- msgid "Word Count Validator"
1372
- msgstr "Validador número de palabras"
1373
-
1374
- #: includes/form-fields.php:593
1375
- #, fuzzy
1376
- msgid "Field"
1377
- msgstr "Campo"
1378
-
1379
- #. translators: %s: field label
1380
- #: includes/form-fields.php:617 includes/form-fields.php:628
1381
- #, fuzzy
1382
- msgid "%s is required."
1383
- msgstr "%s es requerido."
1384
-
1385
- #. translators: %s: field label
1386
- #: includes/form-fields.php:645
1387
- #, fuzzy
1388
- msgid "%s is badly formatted. Valid URL format required. Include http://"
1389
- msgstr "%s está mal escrita. Una URL válida es requerida. Incluya http://"
1390
-
1391
- #. translators: %s: field label
1392
- #: includes/form-fields.php:671
1393
- #, fuzzy
1394
- msgid "%s is badly formatted. Valid Email format required."
1395
- msgstr "%s está mal escrito. Un correo electrónico válido es requerido."
1396
-
1397
- #. translators: %s: field label
1398
- #: includes/form-fields.php:684
1399
- #, fuzzy
1400
- msgid "%s must be a number. Decimal values are not allowed."
1401
- msgstr "%s debe ser un número entero. Valores decimales no están permitidos."
1402
-
1403
- #. translators: %s: field label
1404
- #: includes/form-fields.php:697
1405
- #, fuzzy
1406
- msgid "%s must be a number."
1407
- msgstr "%s debe ser un número."
1408
-
1409
- #. translators: %s: field label
1410
- #: includes/form-fields.php:767
1411
- #, fuzzy
1412
- msgid "Caption for %s is required."
1413
- msgstr "Se requiere leyenda para %s."
1414
-
1415
- #. translators: %1$s: field label, %2$d: max word count
1416
- #: includes/form-fields.php:784
1417
- #, fuzzy
1418
- msgid "%1$s must have less than %2$d words."
1419
- msgstr "%s debe tener menos de %d palabras."
1420
-
1421
- #. translators: %1$s: field label, %2$s allowed values
1422
- #: includes/form-fields.php:804
1423
- #, fuzzy
1424
- msgid "%1$s is invalid. Value most be one of %2$s."
1425
- msgstr "%1$s es inválido. El valor debe ser uno de %s."
1426
-
1427
- #: includes/functions.php:495 templates/admin/fees-index.tpl.php:71
1428
- #: templates/admin/fees-index.tpl.php:84 templates/admin/fees-index.tpl.php:102
1429
- msgid "Free"
1430
- msgstr "Gratuito"
1431
-
1432
- #: includes/gateways/class-gateway-authorize-net.php:356
1433
- msgid ""
1434
- "An error occurred while trying to cancel your subscription. Please try again "
1435
- "later or contact the site administrator."
1436
- msgstr ""
1437
- "Se ha producido un error al intentar cancelar la suscripción. Inténtelo de "
1438
- "nuevo más tarde o póngase en contacto con el administrador del sitio."
1439
-
1440
- #: includes/gateways/class-gateway-authorize-net.php:360
1441
- msgid ""
1442
- "An error occurred while trying to cancel Authorize.net subscription with ID "
1443
- "%s. You can try again later or cancel subscription from gateway dashboard."
1444
- msgstr ""
1445
- "Se ha producido un error al intentar cancelar suscripción con ID %s en "
1446
- "Authorize.net. Puede volver a intentarlo más tarde o cancelar la suscripción "
1447
- "desde el panel de la plataforma de pagos."
1448
-
1449
- #. translators: %1%s: opening <a> tag, %2$s: closing </a> tag
1450
- #: includes/licensing.php:151
1451
- msgid ""
1452
- "The license key could not be verified. Please %1$scheck your license%2$s to "
1453
- "get updates."
1454
- msgstr ""
1455
-
1456
- #: includes/licensing.php:204 includes/licensing.php:207
1457
- msgid "Licenses"
1458
- msgstr "Licencias"
1459
-
1460
- #: includes/licensing.php:274
1461
- msgid "Build more powerful directories"
1462
- msgstr "Construye directorios mas potentes"
1463
-
1464
- #: includes/licensing.php:275
1465
- msgid ""
1466
- "Add category images, maps, filter by location, payment gateways, and more."
1467
- msgstr ""
1468
- "Agrega imágenes en las categorías, mapas, filtro por ubicación, plataformas "
1469
- "de pago y más."
1470
-
1471
- #: includes/licensing.php:277
1472
- msgid "Already purchased?"
1473
- msgstr "¿Ya has comprado?"
1474
-
1475
- #. translators: %s: item type.
1476
- #: includes/licensing.php:295
1477
- msgid "%s will not get updates until license is reauthorized."
1478
- msgstr ""
1479
-
1480
- #: includes/licensing.php:316
1481
- #, fuzzy
1482
- msgid "Enter License Key here"
1483
- msgstr "Ingrese la licencia aquí"
1484
-
1485
- #: includes/licensing.php:317
1486
- #, fuzzy
1487
- msgid "Authorize"
1488
- msgstr "Authorize.net"
1489
-
1490
- #: includes/licensing.php:417
1491
- #, fuzzy
1492
- msgid "Invalid item ID"
1493
- msgstr "El ID del módulo es inválido"
1494
-
1495
- #: includes/licensing.php:431
1496
- #, fuzzy
1497
- msgid "No license key provided"
1498
- msgstr "No se ingresó una licencia"
1499
-
1500
- #: includes/licensing.php:480 includes/licensing.php:517
1501
- #, fuzzy
1502
- msgid "License key is invalid"
1503
- msgstr "La licencia es inválida"
1504
-
1505
- #: includes/licensing.php:484
1506
- #, fuzzy
1507
- msgid "Deactivation failed"
1508
- msgstr "La desactivación de licencia falló"
1509
-
1510
- #: includes/licensing.php:529
1511
- #, fuzzy
1512
- msgid "The license key was revoked."
1513
- msgstr "La licencia fue revocada."
1514
-
1515
- #. translators: %1%s: opening <a> tag, %2$s: closing </a> tag
1516
- #: includes/licensing.php:533
1517
- #, fuzzy
1518
- msgid ""
1519
- "If you think this is a mistake, please contact %1$sBusiness Directory support"
1520
- "%2$s and let them know your license is being reported as revoked by the "
1521
- "licensing software. Please include the email address you used to purchase "
1522
- "with your report."
1523
- msgstr ""
1524
- "Si considera que esto es un error, por favor <support-link>contacte el "
1525
- "servicio de soporte de Business Directory</support-link> y hágales saber que "
1526
- "el servidor de licencias revocó su licencia."
1527
-
1528
- #: includes/licensing.php:596
1529
- #, fuzzy
1530
- msgid ""
1531
- "It was not possible to establish a connection with the Business Directory "
1532
- "server. The connection failed with the following error:"
1533
- msgstr ""
1534
- "No fue posible establecer una conexión con los servidores de Business "
1535
- "Directory. La conexión falló con el siguiente error:"
1536
-
1537
- #: includes/licensing.php:609
1538
- #, fuzzy
1539
- msgid ""
1540
- "It was not possible to establish a connection with the Business Directory "
1541
- "server. A problem occurred in the SSL/TSL handshake:"
1542
- msgstr ""
1543
- "No fue posible establecer una conexión con los servidores de Business "
1544
- "Directory. Ocurrió un problema en el protocolo de intercambio SSL/TSL:"
1545
-
1546
- #: includes/licensing.php:656
1547
- #, fuzzy
1548
- msgid ""
1549
- "It looks like your server is not authorized to make outgoing requests to "
1550
- "Business Directory servers. Please contact your webhost and ask them to add "
1551
- "our IP address 52.0.78.177 to your allow list."
1552
- msgstr ""
1553
- "Parece que su servidor no está autorizado para conectarse con los servidores "
1554
- "de Business Directory. Por favor contacte al <support-link>equipo de soporte "
1555
- "de Business Directory</support-link>, indicándoles que deben agregar su "
1556
- "dirección IP <ip-address> a la lista autorizada."
1557
-
1558
- #: includes/licensing.php:743
1559
- #, fuzzy
1560
- msgid "Business Directory license key is missing."
1561
- msgstr "Directorio de Negocios - Licencias expiradas"
1562
-
1563
- #: includes/licensing.php:744
1564
- #, fuzzy
1565
- msgid "Business Directory license key has expired"
1566
- msgstr "Directorio de Negocios - Licencias expiradas"
1567
-
1568
- #: includes/licensing.php:745
1569
- #, fuzzy
1570
- msgid "Could not verify Business Directory license."
1571
- msgstr "Ayúdenos a Mejorar el Directorio de Negocios"
1572
-
1573
- #: includes/licensing.php:756
1574
- #, fuzzy
1575
- msgid "Review license keys"
1576
- msgstr "Revisar mis licencias"
1577
-
1578
- #: includes/licensing.php:869
1579
- msgid "Missing data. Please reload this page and try again."
1580
- msgstr ""
1581
-
1582
- #: includes/licensing.php:874
1583
- #, fuzzy
1584
- msgid "Please enter a license key."
1585
- msgstr "Por favor ingrese una licencia."
1586
-
1587
- #: includes/payment.php:34
1588
- msgid "We couldn't find a payment associated with the given subscription."
1589
- msgstr "No se encontró ningún pago asociado con la subscripción elegida."
1590
-
1591
- #: includes/payment.php:41
1592
- msgid "The payment gateway \"<payment-gateway>\" is not available."
1593
- msgstr "La pasarela de pago “<payment-gateway>” no está disponible."
1594
-
1595
- #: includes/payment.php:69
1596
- #, fuzzy
1597
- msgid "Gateway Transaction ID:"
1598
- msgstr "ID de la transacción en la pasarela de pago:"
1599
-
1600
- #: includes/payment.php:81
1601
- #, fuzzy
1602
- msgid "Bill To:"
1603
- msgstr "Pagar a:"
1604
-
1605
- #: includes/templates-ui.php:324
1606
- msgid "Manage Listings"
1607
- msgstr "Administrar Listados"
1608
-
1609
- #: includes/templates-ui.php:434
1610
- #, fuzzy
1611
- msgid "Default"
1612
- msgstr "Comisión por Defecto"
1613
-
1614
- #: includes/themes.php:930
1615
- msgid "ZIP file is not a valid Business Directory theme file."
1616
- msgstr "El archivo ZIP no es un tema de válido para Business Directory."
1617
-
1618
- #. translators: %1$s: listing name, %2$s: open link html, %3$s close link html
1619
- #: includes/views/flag_listing.php:56
1620
- #, fuzzy
1621
- msgid "The listing %1$s has been reported. %2$sReturn to directory%3$s"
1622
- msgstr "El listado <i>%s</i> ha sido reportado. <a>Regresar al directorio</a>"
1623
-
1624
- #: includes/views/flag_listing.php:109
1625
- #, fuzzy
1626
- msgid "Your current IP address already reported this listing."
1627
- msgstr "Ya existe un reporte para este listado asociado a su dirección IP."
1628
-
1629
- #: includes/views/flag_listing.php:122
1630
- #, fuzzy
1631
- msgid "You must select the reason to report this listing as inappropriate."
1632
- msgstr ""
1633
- "Debe elegir o ingresar las razones para reportar el listado como inapropiado."
1634
-
1635
- #: includes/views/flag_listing.php:126
1636
- #, fuzzy
1637
- msgid "You must enter the reason to report this listing as inappropriate."
1638
- msgstr ""
1639
- "Debe elegir o ingresar las razones para reportar el listado como inapropiado."
1640
-
1641
- #: includes/views/flag_listing.php:131
1642
- #, fuzzy
1643
- msgid "Please enter your name."
1644
- msgstr "Por favor ingrese su nombre."
1645
-
1646
- #: includes/views/flag_listing.php:135
1647
- #, fuzzy
1648
- msgid "Please enter your email."
1649
- msgstr "Por favor ingrese su correo electrónico."
1650
-
1651
- #: includes/views/listing_contact.php:256
1652
- msgid "l F j, Y \\a\\t g:i a"
1653
- msgstr "l F j, Y \\a\\t g:i a"
1654
-
1655
- #: includes/views/renew_listing.php:36
1656
- #, fuzzy
1657
- msgid "That listing cannot yet be renewed."
1658
- msgstr "Este listado no ha sido reportado."
1659
-
1660
- #: includes/views/submit_listing.php:543
1661
- #, fuzzy
1662
- msgid "Listing Images"
1663
- msgstr "Imágenes del listado"
1664
-
1665
- #: includes/views/submit_listing.php:611
1666
- #, fuzzy
1667
- msgid "Account Creation"
1668
- msgstr "Creación de cuenta de usuario"
1669
-
1670
- #: includes/views/submit_listing.php:783
1671
- #, fuzzy
1672
- msgid "Go to \"Fee Plans\""
1673
- msgstr "Sin Plan de Pago"
1674
-
1675
- #: includes/views/submit_listing.php:839
1676
- #, fuzzy
1677
- msgid "Please choose a fee plan."
1678
- msgstr "(Por favor elija una comisión arriba)"
1679
-
1680
- #: includes/views/submit_listing.php:1023
1681
- #, fuzzy
1682
- msgid "Please check the form for errors, correct them and submit again."
1683
- msgstr ""
1684
- "Algo salió mal. Por favor verifique que el formulario no contiene errores y "
1685
- "envíelo de nuevo."
1686
-
1687
- #: includes/views/submit_listing.php:1183
1688
- #, fuzzy
1689
- msgid "Create a user account on this site"
1690
- msgstr "Crear una cuenta de usuario en este sitio"
1691
-
1692
- #: includes/views/submit_listing.php:1190
1693
- #, fuzzy
1694
- msgid "Username"
1695
- msgstr "Nombre de usuario:"
1696
-
1697
- #: includes/views/submit_listing.php:1212
1698
- #, fuzzy
1699
- msgid "Clear Form"
1700
- msgstr "Limpiar"
1701
-
1702
- #: templates/admin/csv-export.tpl.php:5
1703
- msgid ""
1704
- "An unknown error occurred during the export. Please make sure you have "
1705
- "enough free disk space and memory available to PHP. Check your error logs "
1706
- "for details."
1707
- msgstr ""
1708
- "Un error desconocido ocurrió durante la exportación. Por favor revise que "
1709
- "tiene suficiente espacio en disco y memoria disponibles para PHP. Revise los "
1710
- "registros de error de su servidor para más detalles."
1711
-
1712
- #: templates/admin/csv-export.tpl.php:66
1713
- #, fuzzy
1714
- msgid ""
1715
- "If you plan to re-import the listings into your directory and don't want new "
1716
- "ones created, select this option!"
1717
- msgstr ""
1718
- "Seleccione esta opción si planea re-importar los listados al directorio para "
1719
- "actualizarlos en lugar de que se creen nuevos listados!"
1720
-
1721
- #: templates/admin/csv-import.tpl.php:269
1722
- #, fuzzy
1723
- msgid "Disable email notifications during import?"
1724
- msgstr "Deshabilitar notificaciones de correo durante la importación?"
1725
-
1726
- #: templates/admin/csv-import.tpl.php:276
1727
- #, fuzzy
1728
- msgid "Disable email notifications."
1729
- msgstr "Deshabilitar notificaciones de correo-e."
1730
-
1731
- #: templates/admin/debug-info.tpl.php:5
1732
- msgid ""
1733
- "The following information can help our team debug possible problems with "
1734
- "your setup."
1735
- msgstr ""
1736
- "La siguiente información puede ayudar a los desarrolladores de Business "
1737
- "Directory a depurar posibles problemas con su instalación."
1738
-
1739
- #: templates/admin/debug-info.tpl.php:8
1740
- #, fuzzy
1741
- msgid "Download Debug Information"
1742
- msgstr "Descargar Información de Depuración"
1743
-
1744
- #: templates/admin/fees-add-fee.tpl.php:4 templates/admin/fees-form.tpl.php:242
1745
- #, fuzzy
1746
- msgid "Add Listing Fee"
1747
- msgstr "Agregar Comisión de Listado"
1748
-
1749
- #: templates/admin/fees-edit-fee.tpl.php:4
1750
- #, fuzzy
1751
- msgid "Edit Listing Fee"
1752
- msgstr "Editar Comisión"
1753
-
1754
- #: templates/admin/fees-form.tpl.php:29
1755
- #, fuzzy
1756
- msgid "Fee Description"
1757
- msgstr "Descripción de la comisión"
1758
-
1759
- #: templates/admin/fees-form.tpl.php:37
1760
- #, fuzzy
1761
- msgid "How long should the listing run?"
1762
- msgstr "¿Cuanto tiempo debe estar activo el listado?"
1763
-
1764
- #: templates/admin/fees-form.tpl.php:40
1765
- #, fuzzy
1766
- msgid "run listing for"
1767
- msgstr "listar por"
1768
-
1769
- #: templates/admin/fees-form.tpl.php:50
1770
- #: templates/plan-selection-plan.tpl.php:39
1771
- #, fuzzy
1772
- msgid "days"
1773
- msgstr "días"
1774
-
1775
- #: templates/admin/fees-form.tpl.php:52
1776
- #, fuzzy
1777
- msgid "run listing forever"
1778
- msgstr "listar por siempre"
1779
-
1780
- #: templates/admin/fees-form.tpl.php:57
1781
- #, fuzzy
1782
- msgid "Number of images allowed"
1783
- msgstr "Número de imágenes permitidas"
1784
-
1785
- #: templates/admin/fees-form.tpl.php:72
1786
- #, fuzzy
1787
- msgid "Private Fee Plan (visible to admins only)?"
1788
- msgstr "Plan de tarifa privado (visible solo para administradores)?"
1789
-
1790
- #: templates/admin/fees-form.tpl.php:89
1791
- #, fuzzy
1792
- msgid "Is recurring?"
1793
- msgstr "¿Es recurrente?"
1794
-
1795
- #: templates/admin/fees-form.tpl.php:101
1796
- #, fuzzy
1797
- msgid "Should the listing auto-renew at the end of the listing term?"
1798
- msgstr "¿Renovar el listado automáticamente cuando termine el periodo activo?"
1799
-
1800
- #: templates/admin/fees-form.tpl.php:107
1801
- #, fuzzy
1802
- msgid "Is featured listing/sticky?"
1803
- msgstr "¿Es destacado?"
1804
-
1805
- #: templates/admin/fees-form.tpl.php:118
1806
- #, fuzzy
1807
- msgid ""
1808
- "This floats the listing to the top of search results and browsing the "
1809
- "directory when the user buys this plan."
1810
- msgstr ""
1811
- "Hace que el listado aparezca arriba en los resultados de búsqueda y mientras "
1812
- "se explore el directorio."
1813
-
1814
- #: templates/admin/fees-form.tpl.php:124
1815
- #, fuzzy
1816
- msgid "Listing background color:"
1817
- msgstr "Color de fondo para el listado:"
1818
-
1819
- #: templates/admin/fees-form.tpl.php:130
1820
- #, fuzzy
1821
- msgid "Used to differentiate listings inside this plan from others."
1822
- msgstr ""
1823
- "Utilizado para diferenciar listados publicados en este plan de los listados "
1824
- "publicados en otros."
1825
-
1826
- #: templates/admin/fees-form.tpl.php:242
1827
- #: templates/admin/settings-email.tpl.php:116
1828
- #: templates/submit-listing-section.tpl.php:30
1829
- #, fuzzy
1830
- msgid "Save Changes"
1831
- msgstr "Guardar Cambios"
1832
-
1833
- #: templates/admin/fees-index.tpl.php:7
1834
- msgid "Add New Listing Fee"
1835
- msgstr "Añadir nueva tarifa de listado"
1836
-
1837
- #: templates/admin/fees-index.tpl.php:17
1838
- msgid "Payments are currently turned off."
1839
- msgstr "Los pagos están desactivados actualmente."
1840
-
1841
- #. translators: %1$s is a opening <a> tag, %2$s is a closing </a> tag.
1842
- #: templates/admin/fees-index.tpl.php:21
1843
- msgid ""
1844
- "To manage fees you need to go to the %1$sManage Options - Payment%2$s page "
1845
- "and check the box next to 'Turn On Payments' under 'Payment Settings'."
1846
- msgstr ""
1847
- "Para administrar las tarifas, debe ir a la página %1$sConfiguraciones - Pagos"
1848
- "%2$s y marque la casilla situada junto a \"Activar pagos\" en "
1849
- "\"Configuración de pago\"."
1850
-
1851
- #: templates/admin/fees-index.tpl.php:34
1852
- msgid "Order fees on the frontend by:"
1853
- msgstr "Ordenar tarifas del lado del usuario por:"
1854
-
1855
- #: templates/admin/fees-index.tpl.php:44
1856
- msgid "↑ Ascending"
1857
- msgstr "↑ Ascendente"
1858
-
1859
- #: templates/admin/fees-index.tpl.php:45
1860
- msgid "↓ Descending"
1861
- msgstr "↓ Descendente"
1862
-
1863
- #: templates/admin/fees-index.tpl.php:53
1864
- msgid "Drag and drop to re-order fees."
1865
- msgstr "Arrastre y suelte para reordenar las tarifas."
1866
-
1867
- #. translators: %1$s is directory payment mode (Free or Paid), %2$s is a
1868
- #. opening <a> tag, %3$s is a closing </a> tag.
1869
- #: templates/admin/fees-index.tpl.php:70
1870
- msgid ""
1871
- "These are all of the fee plans displayed to the user when they place a "
1872
- "listing. Your current mode of \"%1$s\" restricts what you see here. Those on "
1873
- "the %2$sNot Available%3$s filter will become active when you change the "
1874
- "payment mode."
1875
- msgstr ""
1876
- "Estos son todos los planes de tarifas disponibles para el usuario al crear "
1877
- "listado. En el modo actual “%1$s\" restringe lo que se ve aquí. Aquellos "
1878
- "planes en el filtro %2$sNo Disponible%3$s se activarán cuando cambie el modo "
1879
- "de pago del directorio."
1880
-
1881
- #: templates/admin/fees-index.tpl.php:71 templates/admin/fees-index.tpl.php:84
1882
- #: templates/admin/fees-index.tpl.php:102
1883
- msgid "Paid"
1884
- msgstr "Pago"
1885
-
1886
- #. translators: %s is directory payment mode (Free or Paid)
1887
- #: templates/admin/fees-index.tpl.php:83
1888
- msgid ""
1889
- "These are all of the fee plans that aren't available because you're in \"%s"
1890
- "\" mode. Those on the Active filter will become Not Available when you "
1891
- "change the payment mode."
1892
- msgstr ""
1893
- "Estas son todas las tarifas que no se encuentran disponibles porque el "
1894
- "directorio opera en modo \"%s\". Aquellas en el filtro “Activas” se "
1895
- "convertirán en “No Disponibles” cuando cambie el modo."
1896
-
1897
- #: templates/admin/fees-index.tpl.php:92
1898
- msgid ""
1899
- "These fee plans were disabled by the admin and will not show to the end user "
1900
- "regardless of mode until you enable them."
1901
- msgstr ""
1902
- "Estas tarifas fueron deshabilitadas por el administrador y no se mostrarán "
1903
- "al usuario sin importar el modo de operación del directorio."
1904
-
1905
- #. translators: %1$s is directory payment mode (Free or Paid), %2$s is a
1906
- #. opening <a> tag, %3$s is a closing </a> tag.
1907
- #: templates/admin/fees-index.tpl.php:101
1908
- msgid ""
1909
- "These are all of the fee plans you have configured. Not all of them are "
1910
- "available for the current mode (currently set to \"%1$s\"). To see the fee "
1911
- "plans for this mode click %2$sActive%3$s."
1912
- msgstr ""
1913
- "Estos son todas las tarifas que tiene configuradas. No todas están "
1914
- "disponibles para el estado actual (“%1$s\"). Para ver todos los planes para "
1915
- "este estado haga click en %2$sActivas%3$s."
1916
-
1917
- #: templates/admin/fees-index.tpl.php:131
1918
- msgid "Set up a payment gateway to charge a fee for listings"
1919
- msgstr ""
1920
- "Configurar una pasarela de pagos para cobrar una tarifa por los listados"
1921
-
1922
- #: templates/admin/fees-index.tpl.php:133
1923
- msgid "Add a payment gateway to increase conversion rates"
1924
- msgstr "Agregue una pasarela de pago para aumentar las tasas de conversión"
1925
-
1926
- #. translators: %s: payment gateway name */
1927
- #: templates/admin/fees-index.tpl.php:152
1928
- msgid "Add the %s gateway as a payment option."
1929
- msgstr "Agregar la pasarela %s como opción de pago."
1930
-
1931
- #: templates/admin/fees-index.tpl.php:158
1932
- msgid "Upgrade"
1933
- msgstr "Mejorar"
1934
-
1935
- #: templates/admin/fees-index.tpl.php:166
1936
- msgid "Set up Authorize.net as a payment option."
1937
- msgstr "Configurar Authorize.net como opción de pago."
1938
-
1939
- #: templates/admin/fees-index.tpl.php:169
1940
- msgid "Set Up"
1941
- msgstr "Configurar"
1942
-
1943
- #: templates/admin/form-fields-addoredit.tpl.php:8
1944
- #, fuzzy
1945
- msgid "Add Form Field"
1946
- msgstr "Agregar Campo de Formulario"
1947
-
1948
- #: templates/admin/form-fields-addoredit.tpl.php:263
1949
- #, fuzzy
1950
- msgid "Require this field on the Advanced Search screen."
1951
- msgstr ""
1952
- "Es necesario ingresar un valor para este campo en el formulario de búsqueda "
1953
- "avanzada."
1954
-
1955
- #: templates/admin/form-fields-confirm-delete.tpl.php:4
1956
- #, fuzzy
1957
- msgid "Delete Form Field"
1958
- msgstr "Eliminar Campo de Formulario"
1959
-
1960
- #: templates/admin/form-fields-confirm-delete.tpl.php:11
1961
- #, fuzzy
1962
- msgid "Are you sure you want to delete that field?"
1963
- msgstr "Está seguro de que desea eliminar el campo \"%s\"?"
1964
-
1965
- #: templates/admin/form-fields-confirm-delete.tpl.php:17
1966
- #, fuzzy
1967
- msgid "Delete Field"
1968
- msgstr "Eliminar Campo"
1969
-
1970
- #: templates/admin/home.tpl.php:55
1971
- msgid "Manage Options"
1972
- msgstr "Configuraciones"
1973
-
1974
- #: templates/admin/home.tpl.php:74
1975
- msgid "Manage Paid Listings"
1976
- msgstr "Administrar Listados Pagos"
1977
-
1978
- #: templates/admin/metaboxes-listing-information-other.tpl.php:3
1979
- #: templates/email-access-keys.tpl.php:6 templates/login.tpl.php:69
1980
- #: templates/login.tpl.php:71
1981
- #, fuzzy
1982
- msgid "Access Key"
1983
- msgstr "Clave de acceso"
1984
-
1985
- #: templates/admin/payments-details.tpl.php:5
1986
- #, fuzzy
1987
- msgid "Payment %s"
1988
- msgstr "Pago %s"
1989
-
1990
- #: templates/admin/payments-details.tpl.php:6
1991
- #, fuzzy
1992
- msgid "Not Found"
1993
- msgstr "Pago no encontrado"
1994
-
1995
- #: templates/admin/payments-details.tpl.php:10
1996
- #: templates/admin/payments-details.tpl.php:23
1997
- #, fuzzy
1998
- msgid "← Return to \"Payment History\""
1999
- msgstr "← Regresar a “Historia Transaccional”"
2000
-
2001
- #: templates/admin/payments-details.tpl.php:21
2002
- #, fuzzy
2003
- msgid "Payment Not Found"
2004
- msgstr "Pago no encontrado"
2005
-
2006
- #: templates/admin/payments-details.tpl.php:41
2007
- #, fuzzy
2008
- msgid "Overview"
2009
- msgstr "Descripción general"
2010
-
2011
- #: templates/admin/payments-details.tpl.php:45
2012
- #: templates/admin/payments-details.tpl.php:79
2013
- #, fuzzy
2014
- msgid "Payment ID"
2015
- msgstr "ID del pago"
2016
-
2017
- #: templates/admin/payments-details.tpl.php:49
2018
- #, fuzzy
2019
- msgid "Listing"
2020
- msgstr "Listado"
2021
-
2022
- #: templates/admin/payments-details.tpl.php:55
2023
- #, fuzzy
2024
- msgid "Status"
2025
- msgstr "Estado"
2026
-
2027
- #: templates/admin/payments-details.tpl.php:64
2028
- #, fuzzy
2029
- msgid "Date"
2030
- msgstr "Fecha"
2031
-
2032
- #: templates/admin/payments-details.tpl.php:68
2033
- #, fuzzy
2034
- msgid "Time"
2035
- msgstr "Hora:"
2036
-
2037
- #: templates/admin/payments-details.tpl.php:73
2038
- #, fuzzy
2039
- msgid "Gateway"
2040
- msgstr "Pasarela"
2041
-
2042
- #. translators: Gateway: (Not yet set)
2043
- #: templates/admin/payments-details.tpl.php:75
2044
- #, fuzzy
2045
- msgid "(Not yet set)"
2046
- msgstr "(Sin asignar)"
2047
-
2048
- #: templates/admin/payments-details.tpl.php:90
2049
- #, fuzzy
2050
- msgid "Delete Payment"
2051
- msgstr "Eliminar pago"
2052
-
2053
- #: templates/admin/payments-details.tpl.php:92
2054
- #, fuzzy
2055
- msgid "Save Payment"
2056
- msgstr "Guardar pago"
2057
-
2058
- #: templates/admin/payments-details.tpl.php:103
2059
- #, fuzzy
2060
- msgid "Details"
2061
- msgstr "Detalles"
2062
-
2063
- #: templates/admin/payments-details.tpl.php:107
2064
- #, fuzzy
2065
- msgid "Item Type"
2066
- msgstr "Tipo"
2067
-
2068
- #: templates/admin/payments-details.tpl.php:120
2069
- #: templates/payment/payment_items.tpl.php:23
2070
- #, fuzzy
2071
- msgid "Total"
2072
- msgstr "Total"
2073
-
2074
- #: templates/admin/payments-details.tpl.php:131
2075
- #, fuzzy
2076
- msgid "Customer Details"
2077
- msgstr "Información del cliente"
2078
-
2079
- #: templates/admin/payments-details.tpl.php:141
2080
- #: templates/checkout-billing-form.tpl.php:17
2081
- #, fuzzy
2082
- msgid "First Name"
2083
- msgstr "Primer nombre"
2084
-
2085
- #: templates/admin/payments-details.tpl.php:146
2086
- #: templates/checkout-billing-form.tpl.php:22
2087
- #, fuzzy
2088
- msgid "Last Name"
2089
- msgstr "Apellido"
2090
-
2091
- #: templates/admin/payments-details.tpl.php:168
2092
- #, fuzzy
2093
- msgid "Address Line 1"
2094
- msgstr "Dirección (línea 1):"
2095
-
2096
- #: templates/admin/payments-details.tpl.php:172
2097
- #: templates/checkout-billing-form.tpl.php:81
2098
- #, fuzzy
2099
- msgid "Address Line 2"
2100
- msgstr "Dirección (línea 2)"
2101
-
2102
- #: templates/admin/payments-details.tpl.php:181
2103
- #, fuzzy
2104
- msgid "Notes & Log"
2105
- msgstr "Notas y Registro"
2106
-
2107
- #: templates/admin/payments-details.tpl.php:186
2108
- #, fuzzy
2109
- msgid "No notes."
2110
- msgstr "No hay notas."
2111
-
2112
- #: templates/admin/payments-details.tpl.php:206
2113
- #, fuzzy
2114
- msgid "Add Note"
2115
- msgstr "Agregar nota"
2116
-
2117
- #: templates/admin/payments-index.tpl.php:11
2118
- #, fuzzy
2119
- msgid "Search Payments:"
2120
- msgstr "Buscar pagos:"
2121
-
2122
- #: templates/admin/payments-index.tpl.php:13
2123
- #: templates/deprecated/search.tpl.php:8
2124
- #, fuzzy
2125
- msgid "Search"
2126
- msgstr "Buscar"
2127
-
2128
- #: templates/admin/privacy-policy.tpl.php:12
2129
- msgid "Suggested text:"
2130
- msgstr "Texto sugerido:"
2131
-
2132
- #: templates/admin/privacy-policy.tpl.php:12
2133
- #, fuzzy
2134
- msgid ""
2135
- "When you submit a directory listing, the content of the listing and its "
2136
- "metadata are retained indefinitely. All users can see, edit or delete the "
2137
- "personal information included on their listings at any time. Website "
2138
- "administrators can also see and edit that information."
2139
- msgstr ""
2140
- "Cuando se agrega un listado al directorio, su contenido y metadatos son "
2141
- "almacenados indefinidamente. Cada usuario puede ver, editar o eliminar la "
2142
- "información personal incluida en sus listados en cualquier momento. El "
2143
- "administrador del sitio también puede ver y editar la información."
2144
-
2145
- #: templates/admin/privacy-policy.tpl.php:13
2146
- #, fuzzy
2147
- msgid ""
2148
- "Website visitors can see the contact name, website URL, phone number, "
2149
- "address and other information included in your submission to describe the "
2150
- "directory listing."
2151
- msgstr ""
2152
- "Los visitantes del sitio puede ver el nombre de contacto, URL, número "
2153
- "telefónico, dirección y otra información incluida para describir el listado "
2154
- "agregado al directorio."
2155
-
2156
- #: templates/admin/privacy-policy.tpl.php:14
2157
- #, fuzzy
2158
- msgid "Payment Information"
2159
- msgstr "Información de Pago"
2160
-
2161
- #. translators: %s is a link with the URL of the current site.
2162
- #: templates/admin/privacy-policy.tpl.php:20
2163
- #, fuzzy
2164
- msgid ""
2165
- "If you pay to post a directory listing entering your credit card and billing "
2166
- "information directly on %s, the credit card information won't be stored but "
2167
- "it will be shared through a secure connection with the following payment "
2168
- "gateways to process the payment:"
2169
- msgstr ""
2170
- "Si pagó para agregar un listado al directorio con información de su tarjeta "
2171
- "de crédito y datos de facturación directamente en <a "
2172
- "href=“{home_url}”>{home_url}</a>, la información de la tarjeta de crédito no "
2173
- "será almacenada, sin embargo será compartida a través de una conexión segura "
2174
- "con las siguientes pasarelas para procesar el pago:"
2175
-
2176
- #: templates/admin/settings-email.tpl.php:8
2177
- #, fuzzy
2178
- msgid "Untitled"
2179
- msgstr "Sin título"
2180
-
2181
- #: templates/admin/settings-email.tpl.php:33
2182
- #, fuzzy
2183
- msgid "Click to edit email"
2184
- msgstr "Click para editar el correo"
2185
-
2186
- #: templates/admin/settings-email.tpl.php:34
2187
- #, fuzzy
2188
- msgid "Click to edit"
2189
- msgstr "Click para editar"
2190
-
2191
- #: templates/admin/settings-email.tpl.php:66
2192
- #, fuzzy
2193
- msgid "Email Subject"
2194
- msgstr "Título del correo"
2195
-
2196
- #: templates/admin/settings-email.tpl.php:72
2197
- #, fuzzy
2198
- msgid "Email Body"
2199
- msgstr "Cuerpo del correo"
2200
-
2201
- #: templates/admin/settings-email.tpl.php:74
2202
- #, fuzzy
2203
- msgid "Email body text"
2204
- msgstr "Contenido del correo"
2205
-
2206
- #: templates/admin/settings-email.tpl.php:78
2207
- #, fuzzy
2208
- msgid "You can use the following placeholders:"
2209
- msgstr "Puede utilizar los siguientes comodines:"
2210
-
2211
- #: templates/admin/settings-email.tpl.php:114
2212
- #, fuzzy
2213
- msgid "Preview email"
2214
- msgstr "Previsualizar correo"
2215
-
2216
- #: templates/admin/settings-email.tpl.php:115
2217
- #: templates/listing-flagging-form.tpl.php:64
2218
- #, fuzzy
2219
- msgid "Cancel"
2220
- msgstr "Cancelar"
2221
-
2222
- #: templates/admin/settings-page.tpl.php:7
2223
- #, fuzzy
2224
- msgid "Directory Settings"
2225
- msgstr "Listados del Directorio"
2226
-
2227
- #: templates/admin/settings-page.tpl.php:8
2228
- #: templates/admin/settings-reset.tpl.php:24
2229
- msgid "Reset Defaults"
2230
- msgstr "Restaurar valores por defecto"
2231
-
2232
- #: templates/admin/settings-reset.tpl.php:3
2233
- msgid "Business Directory - Reset Defaults"
2234
- msgstr "Business Directory - Restaurar configuración por defecto"
2235
-
2236
- #: templates/admin/settings-reset.tpl.php:7
2237
- msgid "← Return to \"Manage Options\""
2238
- msgstr "← Regresar a \"Configuraciones\""
2239
-
2240
- #: templates/admin/settings-reset.tpl.php:15
2241
- msgid ""
2242
- "Use this option if you want to go back to the original factory settings for "
2243
- "BD."
2244
- msgstr ""
2245
- "Utilice esta opción si quiere llevar el directorio a su configuración de "
2246
- "fábrica. Tenga en cuenta que todas sus modificaciones se perderán."
2247
-
2248
- #: templates/admin/settings-reset.tpl.php:16
2249
- msgid "Please note that all of your existing settings will be lost."
2250
- msgstr ""
2251
- "Por favor considere que todas sus configuraciones actuales se perderán."
2252
-
2253
- #: templates/admin/settings-reset.tpl.php:18
2254
- msgid "Your existing listings will NOT be deleted doing this."
2255
- msgstr "Al hacer esto los listados existentes no serán eliminados."
2256
-
2257
- #: templates/admin/sidebar.tpl.php:3
2258
- msgid "Category Images"
2259
- msgstr "Imágenes por Categoría"
2260
-
2261
- #: templates/admin/sidebar.tpl.php:4
2262
- msgid "PayPal Payments"
2263
- msgstr "Pasarela de pago PayPal"
2264
-
2265
- #: templates/admin/sidebar.tpl.php:5
2266
- msgid "Google Maps"
2267
- msgstr ""
2268
-
2269
- #: templates/admin/sidebar.tpl.php:6
2270
- msgid "Regions"
2271
- msgstr "Regiones"
2272
-
2273
- #: templates/admin/sidebar.tpl.php:7
2274
- msgid "ZIP Code Search"
2275
- msgstr "Búsqueda por código ZIP"
2276
-
2277
- #: templates/admin/sidebar.tpl.php:8
2278
- msgid "Ratings"
2279
- msgstr "Calificaciones"
2280
-
2281
- #: templates/admin/sidebar.tpl.php:9
2282
- msgid "Stripe Payments"
2283
- msgstr "Pasarela de pago Stripe"
2284
-
2285
- #: templates/admin/sidebar.tpl.php:10
2286
- msgid "Featured Levels"
2287
- msgstr "Niveles Destacados"
2288
-
2289
- #: templates/admin/sidebar.tpl.php:11
2290
- msgid "Claim Listings"
2291
- msgstr "Reclamar Listados"
2292
-
2293
- #: templates/admin/sidebar.tpl.php:12
2294
- msgid "File Upload"
2295
- msgstr "Carga de Archivos"
2296
-
2297
- #: templates/admin/sidebar.tpl.php:13
2298
- msgid "Discount Codes"
2299
- msgstr "Códigos de Descuento"
2300
-
2301
- #: templates/admin/sidebar.tpl.php:17
2302
- msgid "Modern Business Theme"
2303
- msgstr ""
2304
-
2305
- #: templates/admin/sidebar.tpl.php:18
2306
- msgid "Business Card Theme"
2307
- msgstr ""
2308
-
2309
- #: templates/admin/sidebar.tpl.php:19
2310
- msgid "Mobile Compact Theme"
2311
- msgstr ""
2312
-
2313
- #: templates/admin/sidebar.tpl.php:20
2314
- msgid "Restaurant Theme"
2315
- msgstr ""
2316
-
2317
- #: templates/admin/sidebar.tpl.php:21
2318
- msgid "Tabbed Business Theme"
2319
- msgstr ""
2320
-
2321
- #: templates/admin/sidebar.tpl.php:22
2322
- msgid "Elegant Business Theme"
2323
- msgstr ""
2324
-
2325
- #: templates/admin/sidebar.tpl.php:29
2326
- msgid "Like this plugin?"
2327
- msgstr "Le gusta este plugin?"
2328
-
2329
- #: templates/admin/sidebar.tpl.php:40
2330
- msgid "Need help?"
2331
- msgstr ""
2332
-
2333
- #: templates/admin/themes-install.tpl.php:4 templates/admin/themes.tpl.php:6
2334
- #, fuzzy
2335
- msgid "Upload Directory Theme"
2336
- msgstr "Subir Tema de Directorio"
2337
-
2338
- #. translators: %s is the link for Business Directory Premium Themes.
2339
- #: templates/admin/themes-install.tpl.php:16
2340
- #, fuzzy
2341
- msgid "This is a theme or skin from %s and is NOT a regular WordPress theme."
2342
- msgstr "Este es un tema de %s y NO es un tema regular de WordPress."
2343
-
2344
- #: templates/admin/themes-install.tpl.php:30
2345
- msgid "Business Directory Theme archive (ZIP file)"
2346
- msgstr "Tema para Business Directory (archivo ZIP)"
2347
-
2348
- #: templates/admin/themes-install.tpl.php:39
2349
- #, fuzzy
2350
- msgid "Upload"
2351
- msgstr "Carga de Archivos"
2352
-
2353
- #: templates/admin/themes-item.tpl.php:8
2354
- #, fuzzy
2355
- msgid "Updating theme..."
2356
- msgstr "Actualizando tema..."
2357
-
2358
- #: templates/admin/themes-item.tpl.php:8
2359
- #, fuzzy
2360
- msgid "Theme updated."
2361
- msgstr "Tema actualizado."
2362
-
2363
- #. translators: %1$s is opening <a> tag, %2$s is closing </a> tag
2364
- #: templates/admin/themes-item.tpl.php:13
2365
- #, fuzzy
2366
- msgid "New version available. %1$sUpdate now.%2$s"
2367
- msgstr "Nueva versión disponible. <a>Actualizar ahora.</a>"
2368
-
2369
- #: templates/admin/themes-item.tpl.php:43
2370
- #, fuzzy
2371
- msgid "Inactive"
2372
- msgstr "Activas"
2373
-
2374
- #: templates/admin/themes.tpl.php:7
2375
- #, fuzzy
2376
- msgid "Manage Theme Tags"
2377
- msgstr "Administrar Etiquetas del Tema"
2378
-
2379
- #. translators: %1$s is opening <a> tag, %2$s is closing </a> tag
2380
- #: templates/admin/themes.tpl.php:21
2381
- #, fuzzy
2382
- msgid ""
2383
- "%1$sDirectory Themes%2$s are pre-made templates for the Business Directory "
2384
- "Plugin to change the look of the directory quickly and easily. We have a "
2385
- "number of them available for purchase %1$shere%2$s."
2386
- msgstr ""
2387
- "Los <a><b>Temas del Directorio</b></a> son plantillas prefabricadas para "
2388
- "<i>Business Directory Plugin</i> que permiten cambiar la apariencia y "
2389
- "comportamiento del directorio rápida y fácilmente. Tenemos varios temas "
2390
- "disponibles para compra <a>aquí</a>."
2391
-
2392
- #: templates/admin/themes.tpl.php:26
2393
- #, fuzzy
2394
- msgid ""
2395
- "They are different from regular WordPress themes and are not a replacement. "
2396
- "They change the look and feel of the directory only."
2397
- msgstr ""
2398
- "Son <strong>diferentes</strong> de los temas regulares de WordPress y "
2399
- "<strong>no son</strong>un reemplazo de estos tampoco. Nuestros temas "
2400
- "únicamente cambiarán la apariencia del directorio."
2401
-
2402
- #: templates/admin/uninstall-complete.tpl.php:12
2403
- #, fuzzy
2404
- msgid "Uninstall completed."
2405
- msgstr "Desinstalación completa."
2406
-
2407
- #: templates/admin/uninstall-complete.tpl.php:15
2408
- #, fuzzy
2409
- msgid "Return to Dashboard."
2410
- msgstr "Regresar al administrador de WordPress."
2411
-
2412
- #. translators: %1$s: open link html, %2$s: close link html
2413
- #: templates/admin/uninstall-confirm.tpl.php:43
2414
- #, fuzzy
2415
- msgid "Go to %1$sPlugins->Installed Plugins%2$s"
2416
- msgstr "Visite la página de <a>Plugins -> Plugins instalados"
2417
-
2418
- #. translators: %1$s: open italic html, %2$s: close italic html
2419
- #: templates/admin/uninstall-confirm.tpl.php:53
2420
- #, fuzzy
2421
- msgid ""
2422
- "Click on \"Delete\" for Business Directory Plugin. %1$sTHIS OPERATION IS "
2423
- "SAFE--your data will NOT BE LOST doing this%2$s"
2424
- msgstr ""
2425
- "Haga click en la acción “Eliminar”. <i>ESTA OPERACIÓN ES SEGURA — sus datos "
2426
- "NO SE PERDERAN</i>"
2427
-
2428
- #: templates/admin/uninstall-confirm.tpl.php:59
2429
- #, fuzzy
2430
- msgid "Wait for the delete to finish"
2431
- msgstr "Espere a que el plugin sea eliminado"
2432
-
2433
- #: templates/admin/uninstall-confirm.tpl.php:60
2434
- #, fuzzy
2435
- msgid ""
2436
- "The plugin is now removed, but your data is still present inside of your "
2437
- "database."
2438
- msgstr ""
2439
- "Ahora el plugin está eliminado, pero la información todavía está almacenada "
2440
- "en la base de datos."
2441
-
2442
- #. translators: %1$s: open link html, %2$s: close link html
2443
- #: templates/admin/uninstall-confirm.tpl.php:65
2444
- #, fuzzy
2445
- msgid "You can reinstall the plugin again under %1$sPlugins->Add New%2$s"
2446
- msgstr ""
2447
- "Usted puede reinstalar el plugin de nuevo bajo <a>Plugins -> Agregar nuevo</"
2448
- "a>"
2449
-
2450
- #: templates/admin/uninstall-confirm.tpl.php:74
2451
- #, fuzzy
2452
- msgid "Take me to the Plugins screen"
2453
- msgstr "Visitar la página de <b>Plugins</b>"
2454
-
2455
- #: templates/admin/uninstall-confirm.tpl.php:79
2456
- msgid "Get debug info"
2457
- msgstr ""
2458
-
2459
- #: templates/businessdirectory-listings.tpl.php:30
2460
- #: templates/deprecated/search.tpl.php:23
2461
- #: templates/parts/listings-loop.tpl.php:5 templates/search.tpl.php:17
2462
- #, fuzzy
2463
- msgid "No listings found."
2464
- msgstr "No se encontraron listados."
2465
-
2466
- #: templates/checkout-billing-form.tpl.php:8
2467
- #, fuzzy
2468
- msgid "Personal Info"
2469
- msgstr "Información personal"
2470
-
2471
- #: templates/checkout-billing-form.tpl.php:11 templates/login.tpl.php:63
2472
- #: templates/login.tpl.php:65
2473
- #, fuzzy
2474
- msgid "Email Address"
2475
- msgstr "Dirección de correo electrónico"
2476
-
2477
- #: templates/checkout-billing-form.tpl.php:12
2478
- #, fuzzy
2479
- msgid "We will send a receipt to this e-mail address."
2480
- msgstr "Enviaremos un recibo a esta dirección de correo electrónico."
2481
-
2482
- #: templates/checkout-billing-form.tpl.php:30
2483
- #, fuzzy
2484
- msgid "Credit Card Info"
2485
- msgstr "Detalles de tarjeta de crédito"
2486
-
2487
- #: templates/checkout-billing-form.tpl.php:33
2488
- #: templates/checkout-billing-form.tpl.php:35
2489
- #, fuzzy
2490
- msgid "Card Number"
2491
- msgstr "Número de tarjeta"
2492
-
2493
- #: templates/checkout-billing-form.tpl.php:34
2494
- #, fuzzy
2495
- msgid "The digits on the front of your credit card."
2496
- msgstr "Los dígitos en la parte frontal de su tarjeta de crédito."
2497
-
2498
- #: templates/checkout-billing-form.tpl.php:39
2499
- #, fuzzy
2500
- msgid "CVC"
2501
- msgstr "CVC"
2502
-
2503
- #: templates/checkout-billing-form.tpl.php:40
2504
- #, fuzzy
2505
- msgid ""
2506
- "The 3 digit (back) or 4 digit (front) security code on your credit card."
2507
- msgstr ""
2508
- "El código de seguridad de su tarjeta de crédito. Aparecen como 3 dígitos en "
2509
- "la parte trasera o 4 dígitos en la parte frontal."
2510
-
2511
- #: templates/checkout-billing-form.tpl.php:41
2512
- #, fuzzy
2513
- msgid "Security Code"
2514
- msgstr "Código de seguridad"
2515
-
2516
- #: templates/checkout-billing-form.tpl.php:45
2517
- #: templates/checkout-billing-form.tpl.php:47
2518
- #, fuzzy
2519
- msgid "Name on the Card"
2520
- msgstr "El nombre en la tarjeta"
2521
-
2522
- #: templates/checkout-billing-form.tpl.php:46
2523
- #, fuzzy
2524
- msgid "The name as it appears printed on the front of your credit card."
2525
- msgstr ""
2526
- "The name como aparece impreso en la parte frontal de su tarjeta de crédito."
2527
-
2528
- #: templates/checkout-billing-form.tpl.php:51
2529
- #, fuzzy
2530
- msgid "Expiration Date"
2531
- msgstr "Fecha de expiración"
2532
-
2533
- #: templates/checkout-billing-form.tpl.php:52
2534
- #, fuzzy
2535
- msgid "Format: MM/YY"
2536
- msgstr "Formato: MM/AA"
2537
-
2538
- #: templates/checkout-billing-form.tpl.php:72
2539
- #, fuzzy
2540
- msgid "Billing Details"
2541
- msgstr "Detalles de facturación"
2542
-
2543
- #: templates/checkout-billing-form.tpl.php:76
2544
- #, fuzzy
2545
- msgid "Please enter the address where you receive your billing statement."
2546
- msgstr ""
2547
- "Por favor ingrese la dirección donde desea recibir su estado de cuenta."
2548
-
2549
- #: templates/checkout-billing-form.tpl.php:82
2550
- #, fuzzy
2551
- msgid ""
2552
- "Additional details (suite, apt no, etc.) associated with your billing "
2553
- "address."
2554
- msgstr ""
2555
- "Detalles adicionales (suite, No. de apartamento, etc.) asociados a su "
2556
- "dirección de facturación."
2557
-
2558
- #: templates/checkout-billing-form.tpl.php:92
2559
- #, fuzzy
2560
- msgid "State / Province"
2561
- msgstr "Estado/Provincia"
2562
-
2563
- #: templates/checkout-billing-form.tpl.php:97
2564
- #, fuzzy
2565
- msgid "Postal Code"
2566
- msgstr "Código postal"
2567
-
2568
- #: templates/checkout.tpl.php:41 templates/submit-listing-section.tpl.php:24
2569
- #, fuzzy
2570
- msgid "Next"
2571
- msgstr "Siguiente"
2572
-
2573
- #: templates/deprecated/search.tpl.php:16
2574
- #, fuzzy
2575
- msgid "Search Results"
2576
- msgstr "Resultados de Búsqueda"
2577
-
2578
- #: templates/deprecated/search.tpl.php:29 templates/manage-listings.tpl.php:14
2579
- #: templates/manage_listings.tpl.php:16
2580
- #: templates/submit-listing-done.tpl.php:36
2581
- #, fuzzy
2582
- msgid "Return to directory"
2583
- msgstr "Regresar al Directorio"
2584
-
2585
- #: templates/email/listing-edited.tpl.php:19
2586
- #: templates/email/listing-reported.tpl.php:13
2587
- #, fuzzy
2588
- msgid "(not published yet)"
2589
- msgstr "(aún sin publicar)"
2590
-
2591
- #: templates/email-access-keys.tpl.php:1
2592
- #, fuzzy
2593
- msgid ""
2594
- "Below you'll find the access keys for all the listings registered with your "
2595
- "e-mail address on our site."
2596
- msgstr ""
2597
- "Abajo encontrará las claves de acceso para todos los listados registrados "
2598
- "con su dirección de correo electrónico en el sitio."
2599
-
2600
- #: templates/listing-contactform.tpl.php:38
2601
- #, fuzzy
2602
- msgid "Message"
2603
- msgstr "Mensaje"
2604
-
2605
- #: templates/listing-contactform.tpl.php:51
2606
- #, fuzzy
2607
- msgid "Send"
2608
- msgstr "Enviar"
2609
-
2610
- #: templates/listing-flagging-form.tpl.php:3
2611
- #, fuzzy
2612
- msgid "Report Listing"
2613
- msgstr "Reportar listado"
2614
-
2615
- #. translators: %s: listing title
2616
- #: templates/listing-flagging-form.tpl.php:19
2617
- #, fuzzy
2618
- msgid "You are about to report the listing \"%s\" as inappropriate. "
2619
- msgstr "Está a punto de reportar el listado “<b>%s</b>” como inapropiado. "
2620
-
2621
- #. translators: %s: user name
2622
- #: templates/listing-flagging-form.tpl.php:28
2623
- #, fuzzy
2624
- msgid ""
2625
- "You are currently logged in as %s. Listing report will be sent using your "
2626
- "logged in contact email."
2627
- msgstr ""
2628
- "Ha ingresado como %s. Su mensaje se enviará utilizando el correo electrónico "
2629
- "registrado con su cuenta."
2630
-
2631
- #: templates/listing-flagging-form.tpl.php:45
2632
- #, fuzzy
2633
- msgid "Please select the reason to report this listing:"
2634
- msgstr "Por favor seleccione las razones para reportar este listado:"
2635
-
2636
- #: templates/listing-flagging-form.tpl.php:53
2637
- #, fuzzy
2638
- msgid "Please enter the reasons to report this listing:"
2639
- msgstr "Por favor ingrese las razones para reportar este listado:"
2640
-
2641
- #: templates/listing-flagging-form.tpl.php:56
2642
- #, fuzzy
2643
- msgid "Additional info."
2644
- msgstr "Información adicional."
2645
-
2646
- #. translators: %s: listing title
2647
- #: templates/listing-flagging-form.tpl.php:71
2648
- #, fuzzy
2649
- msgid "You already reported the listing \"%s\" as inappropriate."
2650
- msgstr "Está a punto de reportar el listado “<b>%s</b>” como inapropiado."
2651
-
2652
- #. translators: %1$s: open link html, %2$s close link html
2653
- #: templates/listing-flagging-form.tpl.php:78
2654
- #, fuzzy
2655
- msgid "Return to %1$slisting%2$s."
2656
- msgstr "Regresar al listado."
2657
-
2658
- #: templates/login.tpl.php:30 templates/parts/login-required.tpl.php:16
2659
- #, fuzzy
2660
- msgid ""
2661
- "You are not currently logged in. Please login or register first. When "
2662
- "registering, you will receive an activation email. Be sure to check your "
2663
- "spam if you don't see it in your email within 60 minutes."
2664
- msgstr ""
2665
- "No ha ingresado aún. Por favor ingrese o regístrese primero. Cuando se "
2666
- "registre, recibirá un correo electrónico de activación. Asegúrese de revisar "
2667
- "en SPAM si no ve el correo en su buzón dentro de los siguientes 60 minutos."
2668
-
2669
- #: templates/login.tpl.php:36 templates/parts/login-required.tpl.php:19
2670
- #, fuzzy
2671
- msgid "Login"
2672
- msgstr "Ingresar"
2673
-
2674
- #: templates/login.tpl.php:41 templates/parts/login-required.tpl.php:40
2675
- #, fuzzy
2676
- msgid "Not yet registered?"
2677
- msgstr "No se ha registrado?"
2678
-
2679
- #: templates/login.tpl.php:43 templates/parts/login-required.tpl.php:42
2680
- #, fuzzy
2681
- msgid "Lost your password?"
2682
- msgstr "Perdió su contraseña?"
2683
-
2684
- #: templates/login.tpl.php:49
2685
- #, fuzzy
2686
- msgid "... or use an Access Key"
2687
- msgstr "… o use una clave de acceso"
2688
-
2689
- #: templates/login.tpl.php:57
2690
- #, fuzzy
2691
- msgid "Please enter your access key and email address."
2692
- msgstr ""
2693
- "Por favor ingrese su clave de acceso y su dirección de correo electrónico."
2694
-
2695
- #: templates/login.tpl.php:73
2696
- #, fuzzy
2697
- msgid "Use Access Key"
2698
- msgstr "Use una clave de acceso"
2699
-
2700
- #: templates/login.tpl.php:74
2701
- #, fuzzy
2702
- msgid "Request access key?"
2703
- msgstr "¿Necesita una clave de acceso?"
2704
-
2705
- #: templates/manage-listings.tpl.php:3
2706
- #, fuzzy
2707
- msgid ""
2708
- "Your current listings are shown below. To edit a listing click the edit "
2709
- "button. To delete a listing click the delete button."
2710
- msgstr ""
2711
- "Sus listados actuales se muestran abajo. Para editar un listado haga click "
2712
- "en el botón de Editar. Para eliminar un listado haga click en el botón de "
2713
- "Eliminar."
2714
-
2715
- #: templates/manage-listings.tpl.php:9 templates/manage_listings.tpl.php:11
2716
- #, fuzzy
2717
- msgid "You do not currently have any listings in the directory."
2718
- msgstr "Actualmente no tiene listados en el Directorio."
2719
-
2720
- #. translators: %1$s: amount, %2$s: number of days
2721
- #: templates/manage-recurring-cancel.tpl.php:20
2722
- #, fuzzy
2723
- msgid "%1$s every %2$s days."
2724
- msgstr "%s cada %s día(s)."
2725
-
2726
- #. translators: %1$s: amount, %2$s: number of days, %3$s: expiration date
2727
- #: templates/manage-recurring.tpl.php:29
2728
- #, fuzzy
2729
- msgid "%1$s each %2$s days. Next renewal is on %3$s."
2730
- msgstr "%s cada %s días. La siguiente renovación es en %s."
2731
-
2732
- #: templates/parts/listing-buttons.tpl.php:40
2733
- #, fuzzy
2734
- msgid "Return to Directory"
2735
- msgstr "Regresar al Directorio."
2736
-
2737
- #: templates/parts/pagination.tpl.php:7
2738
- #, fuzzy
2739
- msgid "&larr; Previous "
2740
- msgstr "&laquo; Anterior "
2741
-
2742
- #: templates/parts/pagination.tpl.php:8
2743
- #, fuzzy
2744
- msgid "Next &rarr;"
2745
- msgstr "Siguiente &raquo;"
2746
-
2747
- #: templates/payment/payment_items.tpl.php:4
2748
- #, fuzzy
2749
- msgid "Item"
2750
- msgstr "Ítem"
2751
-
2752
- #: templates/plan-selection-plan.tpl.php:41
2753
- #, fuzzy
2754
- msgid "Recurring"
2755
- msgstr "Recurrente"
2756
-
2757
- #: templates/plan-selection-plan.tpl.php:45
2758
- #, fuzzy
2759
- msgid "Never Expires"
2760
- msgstr "Nunca expira"
2761
-
2762
- #: templates/plan-selection-plan.tpl.php:66
2763
- #, fuzzy
2764
- msgid "Select"
2765
- msgstr "Seleccionar Todos"
2766
-
2767
- #: templates/plan-selection-plan.tpl.php:76
2768
- #, fuzzy
2769
- msgid ""
2770
- "This plan can't be used for admin submits. For a recurring plan to work, end "
2771
- "users need to pay for it using a supported gateway."
2772
- msgstr ""
2773
- "Esta comisión no se puede usar para publicar listados como administrador. "
2774
- "Para que una comisión recurrente funcione, el usuario debe realizar un pago "
2775
- "utilizando alguna de las pasarelas de pago soportadas."
2776
-
2777
- #: templates/plan-selection-plan.tpl.php:81
2778
- #, fuzzy
2779
- msgid "Private fee plan"
2780
- msgstr "Plan de tarifa privado"
2781
-
2782
- #: templates/search.tpl.php:25
2783
- #, fuzzy
2784
- msgid "Return to Search"
2785
- msgstr "Regresar a la Búsqueda Avanzada"
2786
-
2787
- #: templates/submit-listing-images-single.tpl.php:30
2788
- #, fuzzy
2789
- msgid "Image caption or description"
2790
- msgstr "Descripción de la imagen"
2791
-
2792
- #: templates/submit-listing-images-single.tpl.php:32
2793
- #, fuzzy
2794
- msgid "Delete image"
2795
- msgstr "Eliminar imagen"
2796
-
2797
- #: templates/submit-listing-images-single.tpl.php:36
2798
- #, fuzzy
2799
- msgid "Thumbnail image"
2800
- msgstr "Imágenes miniatura"
2801
-
2802
- #: templates/submit-listing-images-upload-form.tpl.php:25
2803
- #, fuzzy
2804
- msgid "Upload Images"
2805
- msgstr "Subir Imágenes"
2806
-
2807
- #: templates/submit-listing-images-upload-form.tpl.php:40
2808
- #: templates/submit-listing-images-upload-form.tpl.php:47
2809
- #, fuzzy
2810
- msgid "or"
2811
- msgstr "o"
2812
-
2813
- #: templates/submit-listing-images-upload-form.tpl.php:46
2814
- #, fuzzy
2815
- msgid "Drop files here"
2816
- msgstr "Suelte sus archivos aquí"
2817
-
2818
- #: templates/submit-listing-images-upload-form.tpl.php:48
2819
- #, fuzzy
2820
- msgid "Select images from your hard drive"
2821
- msgstr "Elija las imágenes del disco duro"
2822
-
2823
- #. translators: %s is the number of uploaded files.
2824
- #: templates/submit-listing-images-upload-form.tpl.php:55
2825
- #, fuzzy
2826
- msgid "Uploading %s file(s)... Please wait."
2827
- msgstr "Subiendo %s archivo(s)... Por favor espere."
2828
-
2829
- #: templates/submit-listing-images-upload-form.tpl.php:60
2830
- #, fuzzy
2831
- msgid ""
2832
- "Your image slots are all full. You may click \"Delete Image\" to upload a "
2833
- "new image."
2834
- msgstr ""
2835
- "Sus casillas de imagen están todas ocupadas. Puede hacer click en \"Continuar"
2836
- "\" cuando termine o en \"Eliminar Imagen\" para subir una nueva imagen en "
2837
- "lugar de alguna de las actuales."
2838
-
2839
- #: templates/submit-listing-images.tpl.php:10
2840
- msgid "Current Images"
2841
- msgstr "Imágenes Actuales"
2842
-
2843
- #: templates/submit-listing-section.tpl.php:18
2844
- msgid "Back"
2845
- msgstr ""
2846
-
2847
- #: templates/submit-listing-section.tpl.php:28
2848
- #, fuzzy
2849
- msgid "Complete Listing"
2850
- msgstr "Completar listado"
2851
-
2852
- #: templates/submit-listing-section.tpl.php:32
2853
- #, fuzzy
2854
- msgid "Continue to Payment"
2855
- msgstr "Continuar al pago"
2856
-
2857
- #. Author URI of the plugin/theme
2858
- msgid "https://businessdirectoryplugin.com"
2859
- msgstr ""
2860
-
2861
- #. Description of the plugin/theme
2862
- msgid ""
2863
- "Provides the ability to maintain a free or paid business directory on your "
2864
- "WordPress powered site."
2865
- msgstr ""
2866
- "Ofrece la habilidad de tener un directorio de negocios pago o gratuito en su "
2867
- "sitio de WordPress."
2868
-
2869
- #. Author of the plugin/theme
2870
- msgid "Business Directory Team"
2871
- msgstr ""
2872
-
2873
- #: includes/admin/class-admin-controller.php:82
2874
- msgctxt "admin confirm"
2875
- msgid "No, go back"
2876
- msgstr "No, regresar"
2877
-
2878
- #: includes/admin/class-admin-controller.php:83
2879
- msgctxt "admin confirm"
2880
- msgid "Yes, I'm sure"
2881
- msgstr "Sí, estoy seguro"
2882
-
2883
- #: includes/admin/class-admin-csv.php:37
2884
- msgctxt "admin csv-import"
2885
- msgid "See an example CSV import file"
2886
- msgstr "Vea un ejemplo de un archivo CSV de importación"
2887
-
2888
- #: includes/admin/class-csv-import.php:512
2889
- msgctxt "admin csv-import"
2890
- msgid ""
2891
- "Could not create listing category \"<category-name>\". The operation failed "
2892
- "with the following error: <error-message>."
2893
- msgstr ""
2894
- "No fue posible crear la categoría “<category-name>”. La operación falló con "
2895
- "el siguiente error: <error-message>."
2896
-
2897
- #: includes/admin/class-csv-import.php:518
2898
- msgctxt "admin csv-import"
2899
- msgid "Could not create listing category \"%s\""
2900
- msgstr "No se pudo crear la categoría \"%s\""
2901
-
2902
- #: includes/admin/class-csv-import.php:709
2903
- msgctxt "admin csv-import"
2904
- msgid "Username \"%s\" does not exist"
2905
- msgstr "El usuario \"%s\" no existe"
2906
-
2907
- #: includes/admin/class-csv-import.php:736
2908
- msgctxt "admin csv-import"
2909
- msgid "There is no Fee Plan with ID = <fee-id>"
2910
- msgstr "No existe una comisión con ID = <fee-id>"
2911
-
2912
- #: includes/admin/class-csv-import.php:767
2913
- msgctxt "admin csv-import"
2914
- msgid "Missing required field: %s"
2915
- msgstr "Falta campo requerido: %s"
2916
-
2917
- #: includes/admin/class-csv-import.php:812
2918
- msgctxt "admin csv-import"
2919
- msgid "Listing category \"%s\" does not exist"
2920
- msgstr "La categoría \"%s\" no existe"
2921
-
2922
- #: includes/admin/class-csv-import.php:883
2923
- msgctxt "admin csv-import"
2924
- msgid "The string <string> couldn't be converted into a valid date."
2925
- msgstr "La cadena <string> no pudo ser interpretada como una fecha válida."
2926
-
2927
- #: includes/admin/csv-import.php:176
2928
- msgctxt "admin csv-import"
2929
- msgid "Whatever"
2930
- msgstr "Lo que sea"
2931
-
2932
- #: includes/admin/csv-import.php:181
2933
- msgctxt "admin csv-import"
2934
- msgid "Example CSV Import File"
2935
- msgstr "Archivo CSV de ejemplo"
2936
-
2937
- #: includes/admin/csv-import.php:182
2938
- msgctxt "admin csv-import"
2939
- msgid "← Return to \"CSV Import\""
2940
- msgstr "← Regresar a \"Importar CSV\""
2941
-
2942
- #: includes/admin/csv-import.php:339
2943
- msgctxt "admin csv-import"
2944
- msgid "Please upload or select a CSV file."
2945
- msgstr "Por favor suba o elija un archivo CSV."
2946
-
2947
- #: includes/admin/csv-import.php:368
2948
- msgctxt "admin csv-import"
2949
- msgid ""
2950
- "An error was detected while validating the CSV file for import. Please fix "
2951
- "this before proceeding."
2952
- msgstr ""
2953
- "Un error se detectó mientras se validaba el archivo CSV para importarlo. Por "
2954
- "favor repárelo antes de proceder."
2955
-
2956
- #: includes/admin/csv-import.php:377
2957
- msgctxt "admin csv-import"
2958
- msgid "Import is in \"test mode\". Nothing will be inserted into the database."
2959
- msgstr ""
2960
- "La importación es en modo de prueba. Nada será insertado en la base de datos."
2961
-
2962
- #: templates/admin/csv-import-progress.tpl.php:5
2963
- msgctxt "admin csv-import"
2964
- msgid "A fatal error occurred during the import. The reason given was: \"%s\"."
2965
- msgstr ""
2966
- "Un error grave ocurrió durante la importación. La razón dada fue: \"%s\"."
2967
-
2968
- #: templates/admin/csv-import-progress.tpl.php:9
2969
- msgctxt "admin csv-import"
2970
- msgid ""
2971
- "A fatal error occurred during the import. If connection wasn't lost during "
2972
- "the import, please make sure that you have enough free disk space and memory "
2973
- "available to PHP. Check your error logs for details."
2974
- msgstr ""
2975
- "Un error grave ocurrió durante la importación. Si la conexión no se perdió, "
2976
- "por favor revise que tenga suficiente espacio en disco y memoria disponible "
2977
- "para PHP. Revise los registros de su servidor para detalles."
2978
-
2979
- #: templates/admin/csv-import-progress.tpl.php:12
2980
- #: templates/admin/csv-import-progress.tpl.php:19
2981
- msgctxt "admin csv-import"
2982
- msgid "← Return to CSV Import"
2983
- msgstr "← Regresar a \"Importar CSV\""
2984
-
2985
- #: templates/admin/csv-import-progress.tpl.php:17
2986
- msgctxt "admin csv-import"
2987
- msgid "Import Canceled"
2988
- msgstr "Importación Cancelada"
2989
-
2990
- #: templates/admin/csv-import-progress.tpl.php:18
2991
- msgctxt "admin csv-import"
2992
- msgid "The import has been canceled."
2993
- msgstr "La importación ha sido cancelada."
2994
-
2995
- #: templates/admin/csv-import-progress.tpl.php:25
2996
- msgctxt "admin csv-import"
2997
- msgid "Import Progress"
2998
- msgstr "Progreso de Importación"
2999
-
3000
- #: templates/admin/csv-import-progress.tpl.php:28
3001
- msgctxt "admin csv-import"
3002
- msgid "Files"
3003
- msgstr "Archivos"
3004
-
3005
- #: templates/admin/csv-import-progress.tpl.php:31
3006
- msgctxt "admin csv-import"
3007
- msgid "Rows in file"
3008
- msgstr "Filas en el archivo"
3009
-
3010
- #: templates/admin/csv-import-progress.tpl.php:34
3011
- msgctxt "admin csv-import"
3012
- msgid "Progress"
3013
- msgstr "Progreso"
3014
-
3015
- #: templates/admin/csv-import-progress.tpl.php:38
3016
- msgctxt "admin csv-import"
3017
- msgid "Import has not started. Click \"Start Import\" to begin."
3018
- msgstr ""
3019
- "La importación no ha comenzado. Haga clic en \"Iniciar Importación\" para "
3020
- "comenzar."
3021
-
3022
- #: templates/admin/csv-import-progress.tpl.php:39
3023
- msgctxt "admin csv-import"
3024
- msgid "Importing CSV file..."
3025
- msgstr "Importando archivo CSV..."
3026
-
3027
- #: templates/admin/csv-import-progress.tpl.php:45
3028
- msgctxt "admin csv-import"
3029
- msgid "Start Import"
3030
- msgstr "Iniciar Importación"
3031
-
3032
- #: templates/admin/csv-import-progress.tpl.php:46
3033
- msgctxt "admin csv-import"
3034
- msgid "Cancel Import"
3035
- msgstr "Cancelar Importación"
3036
-
3037
- #: templates/admin/csv-import-progress.tpl.php:53
3038
- msgctxt "admin csv-import"
3039
- msgid "Import finished"
3040
- msgstr "Importación terminada"
3041
-
3042
- #: templates/admin/csv-import-progress.tpl.php:56
3043
- msgctxt "admin csv-import"
3044
- msgid "Import was completed successfully."
3045
- msgstr "La importación se completó satisfactoriamente."
3046
-
3047
- #: templates/admin/csv-import-progress.tpl.php:60
3048
- msgctxt "admin csv-import"
3049
- msgid "Import was completed but some rows were rejected."
3050
- msgstr "La importación se completó con algunas filas rechazadas."
3051
-
3052
- #: templates/admin/csv-import-progress.tpl.php:63
3053
- msgctxt "admin csv-import"
3054
- msgid "Import Summary"
3055
- msgstr "Resumen de la Importación"
3056
-
3057
- #: templates/admin/csv-import-progress.tpl.php:65
3058
- msgctxt "admin csv-import"
3059
- msgid "Rows in file:"
3060
- msgstr "Filas en el archivo:"
3061
-
3062
- #: templates/admin/csv-import-progress.tpl.php:68
3063
- msgctxt "admin csv-import"
3064
- msgid "Imported rows:"
3065
- msgstr "Filas importadas:"
3066
-
3067
- #: templates/admin/csv-import-progress.tpl.php:71
3068
- msgctxt "admin csv-import"
3069
- msgid "Rejected rows:"
3070
- msgstr "Filas rechazadas:"
3071
-
3072
- #: templates/admin/csv-import-progress.tpl.php:76
3073
- msgctxt "admin csv-import"
3074
- msgid "Import Warnings"
3075
- msgstr "Errores de Importación"
3076
-
3077
- #: templates/admin/csv-import-progress.tpl.php:79
3078
- msgctxt "admin csv-import"
3079
- msgid "Line #"
3080
- msgstr "Línea #"
3081
-
3082
- #: templates/admin/csv-import-progress.tpl.php:80
3083
- msgctxt "admin csv-import"
3084
- msgid "Line"
3085
- msgstr "Línea"
3086
-
3087
- #: templates/admin/csv-import-progress.tpl.php:81
3088
- msgctxt "admin csv-import"
3089
- msgid "Warning"
3090
- msgstr "Advertencia"
3091
-
3092
- #: templates/admin/csv-import.tpl.php:27
3093
- msgctxt "admin csv-import"
3094
- msgid "Here, you can import data into your directory using the CSV format."
3095
- msgstr ""
3096
- "Aquí puede importar información al directorio utilizando el formato CSV."
3097
-
3098
- #: templates/admin/csv-import.tpl.php:35
3099
- msgctxt "admin csv-import"
3100
- msgid ""
3101
- "We strongly recommend reading our <a>CSV import documentation</a> first to "
3102
- "help you do things in the right order."
3103
- msgstr ""
3104
- "Recomendamos leer nuestra <a>documentación sobre importación CSV</a> primero "
3105
- "para ayudarle a efectuar todo de la manera correcta."
3106
-
3107
- #: templates/admin/csv-import.tpl.php:45
3108
- msgctxt "admin csv-import"
3109
- msgid "Import Files"
3110
- msgstr "Archivos de Importación"
3111
-
3112
- #: templates/admin/csv-import.tpl.php:50
3113
- msgctxt "admin csv-import"
3114
- msgid "CSV File"
3115
- msgstr "Archivo CSV"
3116
-
3117
- #: templates/admin/csv-import.tpl.php:62 templates/admin/csv-import.tpl.php:93
3118
- msgctxt "admin csv-import"
3119
- msgid "... or <a>select a file uploaded to the imports folder</a>"
3120
- msgstr "... o <a>elija un archivo dentro del directorio \"imports\"</a>"
3121
-
3122
- #: templates/admin/csv-import.tpl.php:72 templates/admin/csv-import.tpl.php:103
3123
- msgctxt "admin csv-import"
3124
- msgid "(Upload new file)"
3125
- msgstr "(Subir un nuevo archivo)"
3126
-
3127
- #: templates/admin/csv-import.tpl.php:81
3128
- msgctxt "admin csv-import"
3129
- msgid "ZIP file containing images"
3130
- msgstr "Archivo ZIP con imágenes"
3131
-
3132
- #: templates/admin/csv-import.tpl.php:112
3133
- msgctxt "admin csv-import"
3134
- msgid "CSV File Settings"
3135
- msgstr "Configuraciones de archivo CSV"
3136
-
3137
- #: templates/admin/csv-import.tpl.php:116
3138
- msgctxt "admin csv-import"
3139
- msgid "Column Separator"
3140
- msgstr "Separador de columna"
3141
-
3142
- #: templates/admin/csv-import.tpl.php:124
3143
- msgctxt "admin csv-import"
3144
- msgid "Comma (,)"
3145
- msgstr "Coma (,)"
3146
-
3147
- #: templates/admin/csv-import.tpl.php:130
3148
- msgctxt "admin csv-import"
3149
- msgid "Semicolon (;)"
3150
- msgstr "Punto y coma (;)"
3151
-
3152
- #: templates/admin/csv-import.tpl.php:136
3153
- msgctxt "admin csv-import"
3154
- msgid "TAB"
3155
- msgstr "TAB"
3156
-
3157
- #: templates/admin/csv-import.tpl.php:142
3158
- msgctxt "admin csv-import"
3159
- msgid "Image Separator"
3160
- msgstr "Separador de imágenes"
3161
-
3162
- #: templates/admin/csv-import.tpl.php:153
3163
- msgctxt "admin csv-import"
3164
- msgid "Category Separator"
3165
- msgstr "Separador de categorías"
3166
-
3167
- #: templates/admin/csv-import.tpl.php:164
3168
- msgctxt "admin csv-import"
3169
- msgid "Import settings"
3170
- msgstr "Configuraciones de Importación"
3171
-
3172
- #: templates/admin/csv-import.tpl.php:168
3173
- msgctxt "admin csv-import"
3174
- msgid "Post status of new imported listings"
3175
- msgstr "Estado de los nuevos listados importados"
3176
-
3177
- #: templates/admin/csv-import.tpl.php:183
3178
- msgctxt "admin csv-import"
3179
- msgid "Post status of existing imported listings"
3180
- msgstr "Estado de los listados importados existentes"
3181
-
3182
- #: templates/admin/csv-import.tpl.php:187
3183
- msgctxt "admin csv-import"
3184
- msgid "Preserve existing status"
3185
- msgstr "Conservar estado del Listado"
3186
-
3187
- #: templates/admin/csv-import.tpl.php:199
3188
- msgctxt "admin csv-import"
3189
- msgid "Missing categories handling"
3190
- msgstr "Manejo de categorías inexistentes"
3191
-
3192
- #: templates/admin/csv-import.tpl.php:204
3193
- msgctxt "admin csv-import"
3194
- msgid "Auto-create categories"
3195
- msgstr "Crear categorías automáticamente"
3196
-
3197
- #: templates/admin/csv-import.tpl.php:207
3198
- msgctxt "admin csv-import"
3199
- msgid "Generate errors when a category is not found"
3200
- msgstr "Generar errores cuando una categoría no exista"
3201
-
3202
- #: templates/admin/csv-import.tpl.php:212
3203
- msgctxt "admin csv-import"
3204
- msgid "Keep existing listing images?"
3205
- msgstr "Mantener imágenes existentes?"
3206
-
3207
- #: templates/admin/csv-import.tpl.php:217
3208
- msgctxt "admin csv-import"
3209
- msgid "Keep existing images."
3210
- msgstr "Preservar imágenes existentes."
3211
-
3212
- #: templates/admin/csv-import.tpl.php:218
3213
- msgctxt "admin csv-import"
3214
- msgid "Appends new images while keeping current ones."
3215
- msgstr "Adiciona nuevas imágenes mientras mantiene las existentes."
3216
-
3217
- #: templates/admin/csv-import.tpl.php:223
3218
- msgctxt "admin csv-import"
3219
- msgid "Assign listings to a user?"
3220
- msgstr "Asignar listados a un usuario?"
3221
-
3222
- #: templates/admin/csv-import.tpl.php:229
3223
- msgctxt "admin csv-import"
3224
- msgid "Assign listings to a user."
3225
- msgstr "Asignar listados a un usuario."
3226
-
3227
- #: templates/admin/csv-import.tpl.php:234
3228
- msgctxt "admin csv-import"
3229
- msgid "Use a default user for listings?"
3230
- msgstr "¿Utilizar un usuario por defecto para los listados?"
3231
-
3232
- #: templates/admin/csv-import.tpl.php:240
3233
- msgctxt "admin csv-import"
3234
- msgid ""
3235
- "Select a default user to be used if the username column is not present in "
3236
- "the CSV file."
3237
- msgstr ""
3238
- "Elija un usuario por defecto para utilizar si la columna \"username\" no "
3239
- "está presente en el archivo CSV."
3240
-
3241
- #: templates/admin/csv-import.tpl.php:245
3242
- msgctxt "admin csv-import"
3243
- msgid "Default listing user"
3244
- msgstr "Usuario a usar por defecto"
3245
-
3246
- #: templates/admin/csv-import.tpl.php:251
3247
- msgctxt "admin csv-import"
3248
- msgid ""
3249
- "This user will be used if the username column is not present in the CSV file."
3250
- msgstr ""
3251
- "Este usuario será utilizado si la columna \"username\" no está presente en "
3252
- "el archivo CSV."
3253
-
3254
- #: templates/admin/csv-import.tpl.php:256
3255
- msgctxt "admin csv-import"
3256
- msgid "Number of listings imported on every cycle"
3257
- msgstr "Número de listados a importar en cada ciclo"
3258
-
3259
- #: templates/admin/csv-import.tpl.php:264
3260
- msgctxt "admin csv-import"
3261
- msgid ""
3262
- "If you are having trouble importing listings due to memory problems, try "
3263
- "reducing the import batch size to 5 or 1 and then re-attempt. This will "
3264
- "result in a longer batch import time, but will increase the chance of "
3265
- "success on shared hosting platforms and other resource-constrained servers."
3266
- msgstr ""
3267
- "Si tiene problemas al importar listados debido a problemas de memoria, "
3268
- "intente reducir el tamaño del lote a 5 ó 1 e intente nuevamente. Esto "
3269
- "incrementará los tiempos de importación, pero aumentará la posibilidad de "
3270
- "éxito en plataformas de alojamiento compartido y otros servidores con "
3271
- "recursos limitados."
3272
-
3273
- #: templates/admin/csv-import.tpl.php:283
3274
- msgctxt "admin csv-import"
3275
- msgid "Test Import"
3276
- msgstr "Importación de Verificación"
3277
-
3278
- #: templates/admin/csv-import.tpl.php:284
3279
- msgctxt "admin csv-import"
3280
- msgid "Import Listings"
3281
- msgstr "Importar Listados"
3282
-
3283
- #: templates/admin/csv-import.tpl.php:291
3284
- msgctxt "admin csv-import"
3285
- msgid ""
3286
- "The following are the valid header names to be used in the CSV file. "
3287
- "Multivalued fields (such as category or tags) can appear multiple times in "
3288
- "the file. Click <a href=\"%s\">\"See an example CSV import file\"</a> to see "
3289
- "how an import file should look like."
3290
- msgstr ""
3291
- "Los siguientes son los nombres de columna a utilizar en la cabecera del "
3292
- "archivo CSV. Campos multivaluados (como cateogrías y etiquetas) pueden "
3293
- "aparecer varias veces en el archivo. Haga click en <a href=\"%s\">\"Ver un "
3294
- "archivo CSV de ejemplo\"</a> para ver cómo debe lucir un archivo de "
3295
- "importación válido."
3296
-
3297
- #: templates/admin/csv-import.tpl.php:298
3298
- msgctxt "admin csv-import"
3299
- msgid "Header name/label"
3300
- msgstr "Nombre de cabecera"
3301
-
3302
- #: templates/admin/csv-import.tpl.php:299
3303
- msgctxt "admin csv-import"
3304
- msgid "Field"
3305
- msgstr "Campo"
3306
-
3307
- #: templates/admin/csv-import.tpl.php:301
3308
- msgctxt "admin csv-import"
3309
- msgid "Required?"
3310
- msgstr "Requerido?"
3311
-
3312
- #: templates/admin/csv-import.tpl.php:302
3313
- msgctxt "admin csv-import"
3314
- msgid "Multivalued?"
3315
- msgstr "Multivaluado?"
3316
-
3317
- #: templates/admin/csv-import.tpl.php:327
3318
- msgctxt "admin csv-import"
3319
- msgid ""
3320
- "Fee ID (integer) associated to a listing. Use this column when adding or "
3321
- "updating listings from external sources."
3322
- msgstr ""
3323
- "ID del plan de pagos (entero) asociado al listado. Use esta columna cuando "
3324
- "agregue o actualice listados desde fuentes externas."
3325
-
3326
- #: templates/admin/csv-import.tpl.php:334
3327
- msgctxt "admin csv-import"
3328
- msgid "Semicolon separated list of listing images (from the ZIP file)"
3329
- msgstr ""
3330
- "Lista de imágenes del listado separadas con punto y coma (deben encontrarse "
3331
- "en el archivo ZIP)"
3332
-
3333
- #: templates/admin/csv-import.tpl.php:341
3334
- msgctxt "admin csv-import"
3335
- msgid "Listing author's username"
3336
- msgstr "Autor del listado (nombre de usuario)"
3337
-
3338
- #: templates/admin/csv-import.tpl.php:348
3339
- msgctxt "admin csv-import"
3340
- msgid ""
3341
- "Internal Sequence ID used to allow listing updates from external sources."
3342
- msgstr ""
3343
- "ID de secuencia interno utilizado para permitir actualizaciones a los "
3344
- "listados desde fuentes externas."
3345
-
3346
- #: templates/admin/csv-import.tpl.php:355
3347
- msgctxt "admin csv-import"
3348
- msgid ""
3349
- "Date of listing expiration formatted as YYYY-MM-DD. Use this column when "
3350
- "adding or updating listings from external sources."
3351
- msgstr ""
3352
- "Fecha de expiración del listado en formato AAAA-MM-DD. Utilice esta columna "
3353
- "cuando esté agregando o actualizando listados desde fuentes externas."
3354
-
3355
- #: includes/admin/class-admin-csv.php:44
3356
- msgctxt "admin csv"
3357
- msgid "Import"
3358
- msgstr "Importar"
3359
-
3360
- #: includes/admin/class-admin-csv.php:45
3361
- msgctxt "admin csv"
3362
- msgid "Export"
3363
- msgstr "Exportar"
3364
-
3365
- #: includes/admin/class-admin-listings.php:62
3366
- msgctxt "admin category filter"
3367
- msgid "All categories"
3368
- msgstr "Todas las categorías"
3369
-
3370
- #: includes/admin/class-admin-listings.php:177
3371
- msgctxt "admin listings"
3372
- msgid ""
3373
- "This listing doesn't have a fee plan assigned. This is required in order to "
3374
- "determine the features available to this listing, as well as handling "
3375
- "renewals."
3376
- msgstr ""
3377
- "Este listado no tiene plan de pago asignado. Al menos una categoría (y su "
3378
- "respectiva comisión) es requerida para determinar las características "
3379
- "disponibles para el listado, así como gestionar las renovaciones."
3380
-
3381
- #: includes/admin/class-admin-listings.php:313
3382
- msgctxt "admin listings"
3383
- msgid "Never"
3384
- msgstr "Nunca"
3385
-
3386
- #: includes/admin/class-admin-listings.php:339
3387
- msgctxt "admin listings"
3388
- msgid "Featured"
3389
- msgstr "Destacado"
3390
-
3391
- #: includes/admin/class-admin-listings.php:343
3392
- msgctxt "admin listings"
3393
- msgid "Recurring"
3394
- msgstr "Recurrente"
3395
-
3396
- #: includes/admin/class-admin-listings.php:347
3397
- msgctxt "admin listings"
3398
- msgid "Free"
3399
- msgstr "Gratuito"
3400
-
3401
- #: includes/admin/class-admin-listings.php:351
3402
- msgctxt "admin listings"
3403
- msgid "Payment Not Found"
3404
- msgstr "Pago no encontrado"
3405
-
3406
- #: includes/admin/class-admin-listings.php:355
3407
- msgctxt "admin listings"
3408
- msgid "Payment %s"
3409
- msgstr "Pago %s"
3410
-
3411
- #: includes/admin/class-admin-listings.php:364
3412
- msgctxt "admin listings"
3413
- msgid "Reported"
3414
- msgstr "Reportado"
3415
-
3416
- #: includes/admin/class-admin-listings.php:726
3417
- msgctxt "admin listings"
3418
- msgid "Listing's payment history successfully deleted"
3419
- msgstr "El historial de pagos del listado se eliminó correctamente"
3420
-
3421
- #: templates/admin/metaboxes-listing-flagging-row.tpl.php:29
3422
- msgctxt "admin listings"
3423
- msgid "Selected Option: "
3424
- msgstr "Opción seleccionada: "
3425
-
3426
- #: templates/admin/metaboxes-listing-flagging-row.tpl.php:33
3427
- msgctxt "admin listings"
3428
- msgid "Aditional Info: "
3429
- msgstr "Información adicional: "
3430
-
3431
- #: templates/admin/metaboxes-listing-flagging.tpl.php:8
3432
- msgctxt "admin listings"
3433
- msgid "This listing has not been reported."
3434
- msgstr "Este listado no ha sido reportado."
3435
-
3436
- #: templates/admin/metaboxes-listing-flagging.tpl.php:30
3437
- msgctxt "admin listings"
3438
- msgid "Clear listing reports."
3439
- msgstr "Eliminar los reportes de este listado."
3440
-
3441
- #: includes/admin/class-admin-listings.php:203
3442
- msgctxt "admin"
3443
- msgid "Directory Listing Fields / Images"
3444
- msgstr "Campos del Listado / Imágenes"
3445
-
3446
- #: includes/admin/class-admin-listings.php:267
3447
- msgctxt "admin"
3448
- msgid "Categories"
3449
- msgstr "Categorías"
3450
-
3451
- #: includes/admin/class-admin.php:220
3452
- msgctxt "admin"
3453
- msgid "Business Directory"
3454
- msgstr "Directorio de Negocios"
3455
-
3456
- #: includes/admin/class-admin.php:235
3457
- msgctxt "admin"
3458
- msgid "You're all set. Visit your new <a>Business Directory</a> page."
3459
- msgstr ""
3460
- "Está todo listo. Visite la página de su nuevo <a>Directorio de Negocios</a>."
3461
-
3462
- #: includes/admin/class-admin.php:410
3463
- msgctxt "admin"
3464
- msgid "Untitled Menu"
3465
- msgstr "Menú sin título"
3466
-
3467
- #: includes/admin/class-admin.php:715
3468
- msgctxt "admin"
3469
- msgid "Dismiss this notice."
3470
- msgstr "Ignorar."
3471
-
3472
- #: includes/admin/class-admin.php:779 includes/admin/class-admin.php:789
3473
- msgctxt "admin"
3474
- msgid "The listing has been updated."
3475
- msgid_plural "The listings have been updated."
3476
- msgstr[0] "El listado ha sido actualizado."
3477
- msgstr[1] "Los listados han sido actualizados."
3478
-
3479
- #: includes/admin/class-admin.php:815
3480
- msgctxt "admin"
3481
- msgid "The fee was successfully assigned."
3482
- msgstr "La comisión se asignó satisfactoriamente."
3483
-
3484
- #: includes/admin/class-admin.php:825
3485
- msgctxt "admin"
3486
- msgid "Listing was renewed."
3487
- msgid_plural "Listings were renewed."
3488
- msgstr[0] "El listado ha sido renovado."
3489
- msgstr[1] "Los listados fueron renovados."
3490
-
3491
- #: includes/admin/class-admin.php:837
3492
- msgctxt "admin"
3493
- msgid "Renewal email sent."
3494
- msgstr "Mensaje de correo electrónico de renovación enviado."
3495
-
3496
- #: includes/admin/class-admin.php:841
3497
- msgctxt "admin"
3498
- msgid ""
3499
- "Could not send renewal email, notice template at listing expiration not "
3500
- "found."
3501
- msgstr ""
3502
- "No se pudo enviar el correo electrónico de renovación, no se encontró la "
3503
- "plantilla de notificación al momento de expirar e listado."
3504
-
3505
- #: includes/admin/class-admin.php:850
3506
- msgctxt "admin"
3507
- msgid "Listing report deleted."
3508
- msgid_plural "Listing reports deleted."
3509
- msgstr[0] "Reporte eliminado."
3510
- msgstr[1] "Reportes eliminados."
3511
-
3512
- #: includes/admin/class-admin.php:899
3513
- msgctxt "admin"
3514
- msgid "Access keys sent."
3515
- msgstr "Claves de acceso enviadas."
3516
-
3517
- #: includes/admin/class-admin.php:901
3518
- msgctxt "admin"
3519
- msgid "The access keys couldn't be sent."
3520
- msgstr "No se pudo enviar las claves de acceso."
3521
-
3522
- #: includes/admin/class-admin.php:1058
3523
- msgctxt "admin"
3524
- msgid ""
3525
- "<b>Business Directory Plugin</b> requires a page with the "
3526
- "<tt>[businessdirectory]</tt> shortcode to function properly."
3527
- msgstr ""
3528
- "<b>Business Directory Plugin</b> requiere una página con el shortcode "
3529
- "<tt>[businessdirectory]</tt> para funcionar adecuadamente."
3530
-
3531
- #: includes/admin/class-admin.php:1060
3532
- msgctxt "admin"
3533
- msgid ""
3534
- "You can create this page by yourself or let Business Directory do this for "
3535
- "you automatically."
3536
- msgstr ""
3537
- "Puede crear esta página usted mismo o dejar que Business Directory lo haga "
3538
- "por usted automáticamente."
3539
-
3540
- #: includes/admin/class-admin.php:1065
3541
- msgctxt "admin"
3542
- msgid "Create required pages for me"
3543
- msgstr "Crear las páginas requeridas por mi"
3544
-
3545
- #: includes/admin/class-admin.php:1098
3546
- msgctxt "admin"
3547
- msgid ""
3548
- "<strong>Business Directory Plugin</strong> requires <strong>PHP 5.6</strong> "
3549
- "or later, but your server is running version <strong>%s</strong>. Please ask "
3550
- "your provider to upgrade in order to prevent any issues with the plugin."
3551
- msgstr ""
3552
- "<strong>Business Directory Plugin</strong> requiere <strong>PHP 5.6</strong> "
3553
- "o superior, pero su servidor está ejecutando la versión <strong>%s</strong>. "
3554
- "Por favor comuníquese con su proveedor de hosting para actualizar su sistema "
3555
- "y evitar problemas de compatibilidad."
3556
-
3557
- #: includes/admin/class-admin.php:1122
3558
- #, fuzzy
3559
- msgctxt "admin"
3560
- msgid ""
3561
- "We noticed you want your Business Directory users to register before posting "
3562
- "listings, but Registration for your site is currently disabled. Go [here] "
3563
- "and check \"Anyone can register\"."
3564
- msgstr ""
3565
- "Hemos notado que quiere que sus usuarios del Directorio de Negocios se "
3566
- "registren antes de publicar listados, pero el registro de usuarios para su "
3567
- "sitio está actualmente deshabilitado. Vaya [aquí] y revise las "
3568
- "configuraciones para asegurarse de que Business Directory funcione "
3569
- "correctamente."
3570
-
3571
- #: includes/admin/class-listing-fields-metabox.php:24
3572
- msgctxt "admin"
3573
- msgid "Fields"
3574
- msgstr "Campos"
3575
-
3576
- #: includes/admin/class-listing-fields-metabox.php:26
3577
- msgctxt "admin"
3578
- msgid "Images (%s)"
3579
- msgstr "Imágenes (%s)"
3580
-
3581
- #: includes/admin/class-listing-fields-metabox.php:27
3582
- msgctxt "admin"
3583
- msgid "Images"
3584
- msgstr "Imágenes"
3585
-
3586
- #: includes/admin/form-fields.php:211
3587
- msgctxt "admin"
3588
- msgid ""
3589
- "<b>Business Directory Plugin</b> requires fields with the following "
3590
- "associations in order to work correctly: <b>%s</b>."
3591
- msgstr ""
3592
- "<b>Business Directory Plugin</b> requiere campos con las siguientes "
3593
- "asociaciones para funcionar correctamente: <b>%s</b>."
3594
-
3595
- #: includes/admin/form-fields.php:213
3596
- msgctxt "admin"
3597
- msgid ""
3598
- "<b>Business Directory Plugin</b> requires a field with a <b>%s</b> "
3599
- "association in order to work correctly."
3600
- msgstr ""
3601
- "<b>Business Directory Plugin</b> requiere un campo con la asociación <b>%s</"
3602
- "b> para funcionar correctamente."
3603
-
3604
- #: includes/admin/form-fields.php:227
3605
- msgctxt "admin"
3606
- msgid "Create these required fields for me"
3607
- msgstr "Crear estos campos requeridos por mi"
3608
-
3609
- #: includes/payment.php:175
3610
- msgctxt "admin"
3611
- msgid "Pending Abandonment"
3612
- msgstr "Casi abandonado"
3613
-
3614
- #: includes/payment.php:180
3615
- msgctxt "admin"
3616
- msgid "Abandoned"
3617
- msgstr "Abandonados"
3618
-
3619
- #: includes/admin/class-admin-listings.php:324
3620
- msgctxt "listing attribute"
3621
- msgid "No Fee Plan"
3622
- msgstr "Sin Plan de Pago"
3623
-
3624
- #: includes/admin/class-admin-listings.php:424
3625
- msgctxt "listing status"
3626
- msgid "Reported"
3627
- msgstr "Reportado"
3628
-
3629
- #: includes/class-listing.php:886
3630
- msgctxt "listing status"
3631
- msgid "Unknown"
3632
- msgstr "Desconocido"
3633
-
3634
- #: includes/class-listing.php:887
3635
- msgctxt "listing status"
3636
- msgid "Legacy"
3637
- msgstr "Antiguo"
3638
-
3639
- #: includes/class-listing.php:888
3640
- msgctxt "listing status"
3641
- msgid "Incomplete"
3642
- msgstr "Incompleto"
3643
-
3644
- #: includes/class-listing.php:889
3645
- msgctxt "listing status"
3646
- msgid "Pending Payment"
3647
- msgstr "Pendiente de pago"
3648
-
3649
- #: includes/class-listing.php:890
3650
- msgctxt "listing status"
3651
- msgid "Complete"
3652
- msgstr "Completado"
3653
-
3654
- #: includes/class-listing.php:891
3655
- msgctxt "listing status"
3656
- msgid "Pending Upgrade"
3657
- msgstr "Pendiente de mejora"
3658
-
3659
- #: includes/class-listing.php:892
3660
- msgctxt "listing status"
3661
- msgid "Expired"
3662
- msgstr "Expirado"
3663
-
3664
- #: includes/class-listing.php:893
3665
- msgctxt "listing status"
3666
- msgid "Pending Renewal"
3667
- msgstr "Pendientes de renovación"
3668
-
3669
- #: includes/class-listing.php:894
3670
- msgctxt "listing status"
3671
- msgid "Abandoned"
3672
- msgstr "Abandonado"
3673
-
3674
- #: includes/admin/class-admin-listings.php:478
3675
- msgctxt "admin actions"
3676
- msgid "Delete Listing"
3677
- msgstr "Eliminar Listado"
3678
-
3679
- #: includes/admin/class-admin-listings.php:489
3680
- msgctxt "admin actions"
3681
- msgid "View Payments"
3682
- msgstr "Ver Pagos"
3683
-
3684
- #: includes/admin/class-admin-listings.php:494
3685
- msgctxt "admin actions"
3686
- msgid "View Payment"
3687
- msgstr "Ver Pago"
3688
-
3689
- #: includes/admin/class-admin-listings.php:659
3690
- msgctxt "admin actions"
3691
- msgid "Publish listings"
3692
- msgstr "Publicar Listado"
3693
-
3694
- #: includes/admin/class-admin-listings.php:660
3695
- msgctxt "admin actions"
3696
- msgid "Mark as \"Pending Review\""
3697
- msgstr "Marcar como “Pendiente de Revisión”"
3698
-
3699
- #: includes/admin/class-admin-listings.php:661
3700
- msgctxt "admin actions"
3701
- msgid "Hide from directory (mark as \"Draft\")"
3702
- msgstr "No mostrar en el directorio (marcar como “Borrador”)"
3703
-
3704
- #: includes/admin/class-admin-listings.php:663
3705
- msgctxt "admin actions"
3706
- msgid "Renew listings"
3707
- msgstr "Renovar listados"
3708
-
3709
- #: includes/admin/class-admin-listings.php:664
3710
- msgctxt "admin actions"
3711
- msgid "Set listings as \"Expired\""
3712
- msgstr "Marcar listados como “Expirados”"
3713
-
3714
- #: includes/admin/class-admin-listings.php:671
3715
- msgctxt "admin actions"
3716
- msgid "Send access keys"
3717
- msgstr "Enviar claves de acceso"
3718
-
3719
- #: includes/admin/class-admin.php:188
3720
- msgctxt "drip pointer"
3721
- msgid "Email Address:"
3722
- msgstr "Correo electrónico:"
3723
-
3724
- #: includes/admin/class-admin.php:314
3725
- msgctxt "admin menu"
3726
- msgid "Payment History"
3727
- msgstr "Historia Transaccional"
3728
-
3729
- #: includes/admin/class-admin.php:317
3730
- msgctxt "admin menu"
3731
- msgid "Import & Export"
3732
- msgstr "Importar/Exportar"
3733
-
3734
- #: includes/admin/class-admin.php:320
3735
- msgctxt "admin menu"
3736
- msgid "Debug"
3737
- msgstr "Depuración"
3738
-
3739
- #: includes/admin/settings/class-settings-admin.php:44
3740
- msgctxt "admin menu"
3741
- msgid "Settings"
3742
- msgstr "Configuración"
3743
-
3744
- #: includes/admin/class-csv-exporter.php:100
3745
- msgctxt "admin csv-export"
3746
- msgid "Could not create a temporary directory for handling this CSV export."
3747
- msgstr ""
3748
- "No se pudo crear un directorio temporal para exportar este archivo CSV."
3749
-
3750
- #: includes/admin/class-csv-exporter.php:103
3751
- msgctxt "admin csv-export"
3752
- msgid "Could not create wpbdp-csv-exports directory."
3753
- msgstr "No se pudo crear el directorio \"wpbdp-csv-exports\"."
3754
-
3755
- #: includes/admin/class-csv-exporter.php:108
3756
- msgctxt "admin csv-export"
3757
- msgid "Error while creating a temporary directory for CSV export: %s"
3758
- msgstr ""
3759
- "Se presentó un error mientras se creaba el directorio temporal para exportar "
3760
- "el archivo CSV: %s"
3761
-
3762
- #: includes/admin/csv-export.php:49
3763
- msgctxt "admin csv-export"
3764
- msgid "Could not decode export state information."
3765
- msgstr "No se detectó información de una operación de exportar anterior."
3766
-
3767
- #: templates/admin/csv-export.tpl.php:13
3768
- msgctxt "admin csv-export"
3769
- msgid ""
3770
- "Please note that the export process is a resource intensive task. If your "
3771
- "export does not succeed try disabling other plugins first and/or increasing "
3772
- "the values of the 'memory_limit' and 'max_execution_time' directives in your "
3773
- "server's php.ini configuration file."
3774
- msgstr ""
3775
- "Tenga en cuenta que la exportación es un procedimiento costoso para el "
3776
- "servidor. Si su exportación no funciona trate deshabitando primero otros "
3777
- "plugins y/o aumentando los valores de 'memory_limit' y 'max_execution_time' "
3778
- "en el archivo de configuración php.ini de su servidor."
3779
-
3780
- #: templates/admin/csv-export.tpl.php:27
3781
- msgctxt "admin csv-export"
3782
- msgid "Export Configuration"
3783
- msgstr "Configuración de Exportación"
3784
-
3785
- #: templates/admin/csv-export.tpl.php:30
3786
- msgctxt "admin csv-export"
3787
- msgid "Export settings"
3788
- msgstr "Configuraciones de Exportación"
3789
-
3790
- #: templates/admin/csv-export.tpl.php:34
3791
- msgctxt "admin csv-export"
3792
- msgid "Which listings to export?"
3793
- msgstr "Cuáles listados exportar?"
3794
-
3795
- #: templates/admin/csv-export.tpl.php:38
3796
- msgctxt "admin csv-export"
3797
- msgid "All"
3798
- msgstr "Todos"
3799
-
3800
- #: templates/admin/csv-export.tpl.php:39
3801
- msgctxt "admin csv-export"
3802
- msgid "Active Only"
3803
- msgstr "Activos únicamente"
3804
-
3805
- #: templates/admin/csv-export.tpl.php:40
3806
- msgctxt "admin csv-export"
3807
- msgid "Active + Pending Renewal"
3808
- msgstr "Activos y Pendientes de Renovación"
3809
-
3810
- #: templates/admin/csv-export.tpl.php:46
3811
- msgctxt "admin csv-export"
3812
- msgid "Export images?"
3813
- msgstr "Exportar imágenes?"
3814
-
3815
- #: templates/admin/csv-export.tpl.php:51
3816
- msgctxt "admin csv-export"
3817
- msgid "Export images"
3818
- msgstr "Exportar imágenes"
3819
-
3820
- #: templates/admin/csv-export.tpl.php:53
3821
- msgctxt "admin csv-export"
3822
- msgid ""
3823
- "When checked, instead of just a CSV file a ZIP file will be generated with "
3824
- "both a CSV file and listing images."
3825
- msgstr ""
3826
- "Cuando está activa, en lugar de crear un archivo CSV únicamente, se creará "
3827
- "un archivo ZIP con el CSV y las imágenes."
3828
-
3829
- #: templates/admin/csv-export.tpl.php:59
3830
- msgctxt "admin csv-export"
3831
- msgid "Additional metadata to export:"
3832
- msgstr "Información adicional para exportar:"
3833
-
3834
- #: templates/admin/csv-export.tpl.php:64
3835
- msgctxt "admin csv-export"
3836
- msgid "Include unique IDs for each listing (sequence_id column)."
3837
- msgstr "Incluír IDs únicos para cada listado (columna \"sequence_id\")"
3838
-
3839
- #: templates/admin/csv-export.tpl.php:72
3840
- msgctxt "admin csv-export"
3841
- msgid "Author information (username)"
3842
- msgstr "Información de autor (nombre de usuario)"
3843
-
3844
- #: templates/admin/csv-export.tpl.php:77
3845
- msgctxt "admin csv-export"
3846
- msgid "Listing expiration date"
3847
- msgstr "Fecha de expiración del listado"
3848
-
3849
- #: templates/admin/csv-export.tpl.php:81
3850
- msgctxt "admin csv-export"
3851
- msgid "Listing created date"
3852
- msgstr "Fecha de creación del listado"
3853
-
3854
- #: templates/admin/csv-export.tpl.php:85
3855
- msgctxt "admin csv-export"
3856
- msgid "Listing last updated date"
3857
- msgstr "Fecha de última actualización del listado"
3858
-
3859
- #: templates/admin/csv-export.tpl.php:89
3860
- msgctxt "admin csv-export"
3861
- msgid "Listing T&C acceptance date"
3862
- msgstr "Fecha de aceptación de T&C del listado"
3863
-
3864
- #: templates/admin/csv-export.tpl.php:94
3865
- msgctxt "admin csv-export"
3866
- msgid "CSV File Settings"
3867
- msgstr "Configuraciones de archivo CSV"
3868
-
3869
- #: templates/admin/csv-export.tpl.php:98
3870
- msgctxt "admin csv-export"
3871
- msgid "What operating system will you use to edit the CSV file?"
3872
- msgstr "¿Qué sistema operativo utilizará para editar el archivo CSV?"
3873
-
3874
- #: templates/admin/csv-export.tpl.php:105
3875
- msgctxt "admin csv-export"
3876
- msgid "Windows"
3877
- msgstr "Windows"
3878
-
3879
- #: templates/admin/csv-export.tpl.php:110
3880
- msgctxt "admin csv-export"
3881
- msgid "macOS"
3882
- msgstr "macOS"
3883
-
3884
- #: templates/admin/csv-export.tpl.php:112
3885
- msgctxt "admin csv-export"
3886
- msgid ""
3887
- "Windows and macOS versions of MS Excel handle CSV files differently. To make "
3888
- "sure all your listings information is displayed properly when you view or "
3889
- "edit the CSV file, we need to generate different versions of the file for "
3890
- "each operating system."
3891
- msgstr ""
3892
- "Las versiones de MS Excel en Windows y MacOS tratan los archivos CSV de "
3893
- "forma diferente. Business Directory Plugin debe generar diferentes versiones "
3894
- "de los archivos CSV para cada sistema operativo, para garantizar que la "
3895
- "información de los listados es mostrada correctamente cuando esté revisando "
3896
- "o editando el archivo."
3897
-
3898
- #: templates/admin/csv-export.tpl.php:117
3899
- msgctxt "admin csv-export"
3900
- msgid "Image Separator"
3901
- msgstr "Separador de Imágenes"
3902
-
3903
- #: templates/admin/csv-export.tpl.php:128
3904
- msgctxt "admin csv-export"
3905
- msgid "Category Separator"
3906
- msgstr "Separador de categorías"
3907
-
3908
- #: templates/admin/csv-export.tpl.php:140
3909
- msgctxt "admin csv-export"
3910
- msgid "Export Listings"
3911
- msgstr "Exportar Listados"
3912
-
3913
- #: templates/admin/csv-export.tpl.php:146
3914
- msgctxt "admin csv-export"
3915
- msgid "Export in Progress..."
3916
- msgstr "Proceso de exportación en progreso..."
3917
-
3918
- #: templates/admin/csv-export.tpl.php:147
3919
- msgctxt "admin csv-export"
3920
- msgid ""
3921
- "Your export file is being prepared. Please <u>do not leave</u> this page "
3922
- "until the export finishes."
3923
- msgstr ""
3924
- "Su archivo está siendo preparado. Por favor <u>no abandone</u> esta página "
3925
- "hasta que el proceso termine."
3926
-
3927
- #: templates/admin/csv-export.tpl.php:150
3928
- msgctxt "admin csv-export"
3929
- msgid "No. of listings:"
3930
- msgstr "Número de listados:"
3931
-
3932
- #: templates/admin/csv-export.tpl.php:152
3933
- msgctxt "admin csv-export"
3934
- msgid "Approximate export file size:"
3935
- msgstr "Tamaño aproximado del archivo exportado:"
3936
-
3937
- #: templates/admin/csv-export.tpl.php:159
3938
- msgctxt "admin csv-export"
3939
- msgid "Cancel Export"
3940
- msgstr "Cancelar Proceso"
3941
-
3942
- #: templates/admin/csv-export.tpl.php:164
3943
- msgctxt "admin csv-export"
3944
- msgid "Export Complete"
3945
- msgstr "Exportación Completada"
3946
-
3947
- #: templates/admin/csv-export.tpl.php:165
3948
- msgctxt "admin csv-export"
3949
- msgid ""
3950
- "Your export file has been successfully created and it is now ready for "
3951
- "download."
3952
- msgstr ""
3953
- "Su archivo ha sido creado satisfactoriamente y se encuentra listo para ser "
3954
- "descargado."
3955
-
3956
- #: templates/admin/csv-export.tpl.php:169
3957
- msgctxt "admin csv-export"
3958
- msgid "Download %1$s (%2$s)"
3959
- msgstr "Descargar %1$s (%2$s)"
3960
-
3961
- #: templates/admin/csv-export.tpl.php:176
3962
- msgctxt "admin csv-export"
3963
- msgid ""
3964
- "Click \"Cleanup\" once the file has been downloaded in order to remove all "
3965
- "temporary data created by Business Directory during the export process."
3966
- msgstr ""
3967
- "Haga clic en \"Limpiar\" una vez el archivo haya sido descargado para "
3968
- "eliminar todos los datos temporales creados durante el proceso de "
3969
- "exportación."
3970
-
3971
- #: templates/admin/csv-export.tpl.php:177
3972
- msgctxt "admin csv-export"
3973
- msgid "Cleanup"
3974
- msgstr "Limpiar"
3975
-
3976
- #: templates/admin/csv-export.tpl.php:182
3977
- msgctxt "admin csv-export"
3978
- msgid "Export Canceled"
3979
- msgstr "Exportación Cancelada"
3980
-
3981
- #: templates/admin/csv-export.tpl.php:183
3982
- msgctxt "admin csv-export"
3983
- msgid "The export has been canceled."
3984
- msgstr "La exportación ha sido cancelada."
3985
-
3986
- #: templates/admin/csv-export.tpl.php:184
3987
- msgctxt "admin csv-export"
3988
- msgid "← Return to CSV Export"
3989
- msgstr "← Regresar a \"Exportar CSV\""
3990
-
3991
- #: includes/admin/class-listings-with-no-fee-plan-view.php:58
3992
- msgctxt "listings view"
3993
- msgid "No Fee Plan"
3994
- msgstr "Sin Plan de Pago"
3995
-
3996
- #: includes/admin/class-themes-admin.php:45
3997
- msgctxt "themes"
3998
- msgid "Directory Themes"
3999
- msgstr "Temas del Directorio"
4000
-
4001
- #: includes/admin/class-themes-admin.php:148
4002
- msgctxt "themes"
4003
- msgid "Could not change the active theme to \"%s\"."
4004
- msgstr "No se pudo cambiar el tema activo a \"%s\"."
4005
-
4006
- #: includes/admin/class-themes-admin.php:191
4007
- msgctxt "themes"
4008
- msgid "Active theme changed to \"%s\"."
4009
- msgstr "Tema activo cambiado a \"%s\"."
4010
-
4011
- #: includes/admin/class-themes-admin.php:194
4012
- msgctxt "themes"
4013
- msgid ""
4014
- "%s requires that you tag your existing fields to match some places we want "
4015
- "to put your data on the theme. Below are fields we think are missing."
4016
- msgstr ""
4017
- "%s requiere que etiquete algunos campos que corresponden a ciertos lugares "
4018
- "en el tema donde se pretende mostrar la información. Abajo están los campos "
4019
- "que creemos hacen falta."
4020
-
4021
- #: includes/admin/class-themes-admin.php:205
4022
- msgctxt "themes"
4023
- msgid "Map My Fields"
4024
- msgstr "Asociar Mis Campos"
4025
-
4026
- #: includes/admin/class-themes-admin.php:213
4027
- msgctxt "themes"
4028
- msgid "Suggested fields created successfully."
4029
- msgstr "Campos sugeridos creados satisfactoriamente."
4030
-
4031
- #: includes/admin/class-themes-admin.php:216
4032
- msgctxt "themes"
4033
- msgid "Theme installed successfully."
4034
- msgstr "Tema instalado correctamente."
4035
-
4036
- #: includes/admin/class-themes-admin.php:219
4037
- msgctxt "themes"
4038
- msgid "Theme was deleted successfully."
4039
- msgstr "Tema eliminado correctamente."
4040
-
4041
- #: includes/admin/class-themes-admin.php:222
4042
- msgctxt "themes"
4043
- msgid "Could not delete theme directory. Check permissions."
4044
- msgstr "No se pudo eliminar el directorio del tema. Revise los permisos."
4045
-
4046
- #: includes/admin/class-themes-admin.php:272
4047
- msgctxt "themes"
4048
- msgid "Please upload a valid theme file."
4049
- msgstr "Por favor suba un archivo de tema válido."
4050
-
4051
- #: includes/admin/class-themes-admin.php:281
4052
- msgctxt "themes"
4053
- msgid "Could not move \"%s\" to a temporary directory."
4054
- msgstr "No se pudo mover \"%s\" a un directorio temporal."
4055
-
4056
- #: includes/admin/class-themes-admin.php:367
4057
- msgctxt "themes"
4058
- msgid "Activate your <a>license key</a> to use this theme."
4059
- msgstr "Active su <a>clave de licencia</a> para utilizar este tema."
4060
-
4061
- #: includes/admin/class-themes-admin.php:410
4062
- msgctxt "themes"
4063
- msgid "Invalid theme ID"
4064
- msgstr "El ID del tema es inválido"
4065
-
4066
- #: includes/admin/class-themes-admin.php:416
4067
- #: includes/admin/upgrades/class-themes-updater.php:169
4068
- msgctxt "themes"
4069
- msgid "Could not update theme: %s"
4070
- msgstr "No se pudo actualizar el tema: %s"
4071
-
4072
- #: includes/admin/upgrades/class-themes-updater.php:131
4073
- msgctxt "themes"
4074
- msgid "Updating theme..."
4075
- msgstr "Actualizando tema..."
4076
-
4077
- #: includes/admin/upgrades/class-themes-updater.php:132
4078
- msgctxt "themes"
4079
- msgid "Theme updated."
4080
- msgstr "Tema actualizado."
4081
-
4082
- #: includes/admin/upgrades/class-themes-updater.php:134
4083
- msgctxt "themes"
4084
- msgid "New version available (<b>%s</b>). <a>Update now.</a>"
4085
- msgstr "Nueva versión disponible (<b>%s</b>). <a>Actualizar ahora.</a>"
4086
-
4087
- #: includes/admin/upgrades/class-themes-updater.php:175
4088
- msgctxt "themes"
4089
- msgid "Theme was updated successfully."
4090
- msgstr "El tema fue actualizado correctamente."
4091
-
4092
- #: includes/themes.php:938
4093
- msgctxt "themes"
4094
- msgid "Could not create themes directory."
4095
- msgstr "No se pudo crear el directorio de los temas."
4096
-
4097
- #: includes/themes.php:949
4098
- msgctxt "themes"
4099
- msgid "Could not remove previous theme directory \"%s\"."
4100
- msgstr "No se pudo remover el directorio anterior \"%s\"."
4101
-
4102
- #: includes/themes.php:957
4103
- msgctxt "themes"
4104
- msgid "Could not move new theme into theme directory."
4105
- msgstr "No se pudo mover el nuevo tema al directorio de temas."
4106
-
4107
- #: includes/admin/class-themes-admin.php:98
4108
- msgctxt "admin themes"
4109
- msgid ""
4110
- "Business Directory Plugin - Your template overrides need to be reviewed!"
4111
- msgstr ""
4112
- "Business Directory Plugin - ¡Las plantillas que sobreescribió deben ser "
4113
- "revisadas!"
4114
-
4115
- #: includes/admin/class-themes-admin.php:100
4116
- msgctxt "admin themes"
4117
- msgid ""
4118
- "Starting with version 4.0, Business Directory is using a new theming system "
4119
- "that is not compatible with the templates used in previous versions."
4120
- msgstr ""
4121
- "A partir de la versión 4.0, Business Directory utiliza un nuevo sistema de "
4122
- "plantillas y temas que no es compatible con las plantillas utilizadas en "
4123
- "versiones previas."
4124
-
4125
- #: includes/admin/class-themes-admin.php:102
4126
- msgctxt "admin themes"
4127
- msgid ""
4128
- "Because of this, your template overrides below have been disabled. You "
4129
- "should <a>review our documentation on customization</a> in order adjust your "
4130
- "templates."
4131
- msgstr ""
4132
- "Debido a esto, las plantillas que sobreescribió han sido deshabilitadas. "
4133
- "Debe <a>revisar nuestra documentación</a> para ajustar sus plantillas."
4134
-
4135
- #: includes/admin/csv-import.php:295
4136
- msgctxt "csv import"
4137
- msgid ""
4138
- "A valid temporary directory with write permissions is required for CSV "
4139
- "imports to function properly. Your server is using \"%s\" but this path does "
4140
- "not seem to be writable. Please consult with your host."
4141
- msgstr ""
4142
- "Se requiere un directorio temporal válido con permisos de escritura para que "
4143
- "la importación CSV funcione correctamente. Su servidor está utilizando \"%s"
4144
- "\" pero no es posible escribir en esa ruta. Consulte con su proveedor."
4145
-
4146
- #: includes/admin/fees.php:45
4147
- msgctxt "fees order"
4148
- msgid "Label"
4149
- msgstr "Nombre"
4150
-
4151
- #: includes/admin/fees.php:47
4152
- msgctxt "fees order"
4153
- msgid "Duration"
4154
- msgstr "Duración"
4155
-
4156
- #: includes/admin/fees.php:49
4157
- msgctxt "fees order"
4158
- msgid "Custom Order"
4159
- msgstr "Orden Especial"
4160
-
4161
- #: includes/admin/fees.php:99
4162
- msgctxt "fees admin"
4163
- msgid "Fee plan added."
4164
- msgstr "Comisión agregada."
4165
-
4166
- #: includes/admin/fees.php:101
4167
- msgctxt "fees admin"
4168
- msgid "Fee plan updated."
4169
- msgstr "Comisión actualizada."
4170
-
4171
- #: includes/admin/fees.php:135
4172
- msgctxt "fees admin"
4173
- msgid "Fee \"%s\" deleted."
4174
- msgstr "Comisión “%s” eliminada."
4175
-
4176
- #: includes/admin/fees.php:147
4177
- msgctxt "fees admin"
4178
- msgid "Fee disabled."
4179
- msgstr "Comisión deshabilitada."
4180
-
4181
- #: includes/admin/helpers/class-fees-table.php:20
4182
- msgctxt "fees admin"
4183
- msgid "fee"
4184
- msgstr "comisión"
4185
-
4186
- #: includes/admin/helpers/class-fees-table.php:21
4187
- msgctxt "fees admin"
4188
- msgid "fees"
4189
- msgstr "comisiones"
4190
-
4191
- #: includes/admin/helpers/class-fees-table.php:32
4192
- msgctxt "fees admin"
4193
- msgid "There are no fees right now. You can <a>create one</a>, if you want."
4194
- msgstr ""
4195
- "No hay comisiones configuradas ahora. Puede <a>crear una</a> si lo desea."
4196
-
4197
- #: includes/admin/helpers/class-fees-table.php:39
4198
- #: includes/admin/helpers/class-fees-table.php:382
4199
- msgctxt "fees admin"
4200
- msgid "Active"
4201
- msgstr "Activas"
4202
-
4203
- #: includes/admin/helpers/class-fees-table.php:42
4204
- msgctxt "fees admin"
4205
- msgid "Not Available"
4206
- msgstr "No Disponibles"
4207
-
4208
- #: includes/admin/helpers/class-fees-table.php:45
4209
- #: includes/admin/helpers/class-fees-table.php:378
4210
- msgctxt "fees admin"
4211
- msgid "Disabled"
4212
- msgstr "Deshabilitadas"
4213
-
4214
- #: includes/admin/helpers/class-fees-table.php:55
4215
- msgctxt "fees admin"
4216
- msgid ""
4217
- "There are no \"%s\" fees right now. You can <a>create one</a>, if you want."
4218
- msgstr "No hay comisiones \"%s\" ahora. Puede <a>crear una</a> si lo desea."
4219
-
4220
- #: includes/admin/helpers/class-fees-table.php:121
4221
- msgctxt "fees admin"
4222
- msgid "Label"
4223
- msgstr "Nombre"
4224
-
4225
- #: includes/admin/helpers/class-fees-table.php:123
4226
- msgctxt "fees admin"
4227
- msgid "Duration"
4228
- msgstr "Duración"
4229
-
4230
- #: includes/admin/helpers/class-fees-table.php:125
4231
- msgctxt "fees admin"
4232
- msgid "Attributes"
4233
- msgstr "Atributos"
4234
-
4235
- #: includes/admin/helpers/class-fees-table.php:188
4236
- msgctxt "fees admin"
4237
- msgid ""
4238
- "This is the default free plan for your directory. You can't delete it and "
4239
- "it's always free, but you can edit the name and other settings. It's only "
4240
- "available when the directory is in Free mode. You can always create other "
4241
- "fee plans, including ones for 0.00 (free) if you wish."
4242
- msgstr ""
4243
- "Este es el plan de comisión gratuito por defecto. No se puede eliminar y es "
4244
- "siempre gratis, pero puede editar su nombre y demás configuraciones. Está "
4245
- "disponible únicamente cuando el directorio opera en modo gratuito. Siempre "
4246
- "puede crear otras comisiones, incluyendo gratuitas (0.00) si lo desea."
4247
-
4248
- #: includes/admin/helpers/class-fees-table.php:249
4249
- msgctxt "fees admin"
4250
- msgid "Edit"
4251
- msgstr "Editar"
4252
-
4253
- #: includes/admin/helpers/class-fees-table.php:269
4254
- msgctxt "fees admin"
4255
- msgid "Disable"
4256
- msgstr "Deshabilitar"
4257
-
4258
- #: includes/admin/helpers/class-fees-table.php:283
4259
- msgctxt "fees admin"
4260
- msgid "Enable"
4261
- msgstr "Habilitar"
4262
-
4263
- #: includes/admin/helpers/class-fees-table.php:308
4264
- msgctxt "fees admin"
4265
- msgid "<strong>Fee ID:</strong> <fee-id>"
4266
- msgstr "<strong>ID de la comisión:</strong> <fee-id>"
4267
-
4268
- #: includes/admin/helpers/class-fees-table.php:332
4269
- msgctxt "fees admin"
4270
- msgid "Variable"
4271
- msgstr "Variable"
4272
-
4273
- #: includes/admin/helpers/class-fees-table.php:337
4274
- msgctxt "fees admin"
4275
- msgid "%1$s + %2$s per category"
4276
- msgstr "%1$s + %2$s por categoría"
4277
-
4278
- #: includes/admin/helpers/class-fees-table.php:345
4279
- msgctxt "fees admin"
4280
- msgid "Forever"
4281
- msgstr "Para siempre"
4282
-
4283
- #: includes/admin/helpers/class-fees-table.php:347
4284
- msgctxt "fees admin"
4285
- msgid "%d day"
4286
- msgid_plural "%d days"
4287
- msgstr[0] "%d día"
4288
- msgstr[1] "%d días"
4289
-
4290
- #: includes/admin/helpers/class-fees-table.php:351
4291
- msgctxt "fees admin"
4292
- msgid "%d image"
4293
- msgid_plural "%d images"
4294
- msgstr[0] "%d imagen"
4295
- msgstr[1] "%d imágenes"
4296
-
4297
- #: includes/admin/helpers/class-fees-table.php:356
4298
- msgctxt "fees admin"
4299
- msgid "All categories"
4300
- msgstr "Todas las categorías"
4301
-
4302
- #: includes/admin/helpers/class-fees-table.php:380
4303
- msgctxt "fees admin"
4304
- msgid "Unavailable"
4305
- msgstr "No disponible"
4306
-
4307
- #: includes/admin/helpers/class-fees-table.php:389
4308
- msgctxt "fees admin"
4309
- msgid "Sticky"
4310
- msgstr "Destacado"
4311
-
4312
- #: includes/admin/helpers/class-fees-table.php:393
4313
- msgctxt "fees admin"
4314
- msgid "Recurring"
4315
- msgstr "Recurrente"
4316
-
4317
- #: includes/admin/helpers/class-fees-table.php:397
4318
- msgctxt "fees admin"
4319
- msgid "Private"
4320
- msgstr "Privado"
4321
-
4322
- #: includes/admin/helpers/class-payments-table.php:53
4323
- msgctxt "fees admin"
4324
- msgid "Listing"
4325
- msgstr "Listado"
4326
-
4327
- #: includes/admin/helpers/class-payments-table.php:55
4328
- msgctxt "fees admin"
4329
- msgid "Date"
4330
- msgstr "Fecha"
4331
-
4332
- #: includes/admin/helpers/class-payments-table.php:56
4333
- msgctxt "fees admin"
4334
- msgid "Payment History"
4335
- msgstr "Historia Transaccional"
4336
-
4337
- #: includes/admin/helpers/class-payments-table.php:58
4338
- msgctxt "fees admin"
4339
- msgid "Status"
4340
- msgstr "Estado"
4341
-
4342
- #: templates/admin/fees-form.tpl.php:135
4343
- msgctxt "fees admin"
4344
- msgid "Plan Category Policy:"
4345
- msgstr "Configuración de categorías:"
4346
-
4347
- #: templates/admin/fees-form.tpl.php:140
4348
- msgctxt "fees admin"
4349
- msgid "Plan applies to all categories"
4350
- msgstr "La comisión aplica para todas las categorías"
4351
-
4352
- #: templates/admin/fees-form.tpl.php:141
4353
- msgctxt "fees admin"
4354
- msgid "Plan applies to only certain categories"
4355
- msgstr "La comisión aplica solo para ciertas categorías"
4356
-
4357
- #: templates/admin/fees-form.tpl.php:145
4358
- msgctxt "fees admin"
4359
- msgid "Limit plan to the following categories:"
4360
- msgstr "Limitar el uso de esta comisión a las siguientes categorías:"
4361
-
4362
- #: templates/admin/fees-form.tpl.php:169
4363
- msgctxt "fees admin"
4364
- msgid "Click to add categories to the selection."
4365
- msgstr "Haga click para agregar categorías a la selección."
4366
-
4367
- #: templates/admin/fees-form.tpl.php:183
4368
- msgctxt "fees admin"
4369
- msgid "Pricing"
4370
- msgstr "Precio"
4371
-
4372
- #: templates/admin/fees-form.tpl.php:191
4373
- msgctxt "fees admin"
4374
- msgid "Pricing model"
4375
- msgstr "Modelo de precio"
4376
-
4377
- #: templates/admin/fees-form.tpl.php:195
4378
- msgctxt "fees admin"
4379
- msgid "Flat price"
4380
- msgstr "Precio fijo"
4381
-
4382
- #: templates/admin/fees-form.tpl.php:196
4383
- msgctxt "fees admin"
4384
- msgid "Different price for different categories"
4385
- msgstr "Diferente para diferentes categorías"
4386
-
4387
- #: templates/admin/fees-form.tpl.php:197
4388
- msgctxt "fees admin"
4389
- msgid "Base price plus an extra amount per category"
4390
- msgstr "Precio base más una cantidad adicional por cada categoría"
4391
-
4392
- #: templates/admin/fees-form.tpl.php:203
4393
- msgctxt "fees admin"
4394
- msgid "Fee Price"
4395
- msgstr "Precio"
4396
-
4397
- #: templates/admin/fees-form.tpl.php:211
4398
- msgctxt "fees admin"
4399
- msgid "Prices per category"
4400
- msgstr "Precios por categoría"
4401
-
4402
- #: templates/admin/fees-form.tpl.php:217
4403
- msgctxt "fees admin"
4404
- msgid "Price"
4405
- msgstr "Precio"
4406
-
4407
- #: templates/admin/fees-form.tpl.php:231
4408
- msgctxt "fees admin"
4409
- msgid "Extra amount (per category)"
4410
- msgstr "Cantidad extra (por categoría)"
4411
-
4412
- #: includes/admin/form-fields.php:20
4413
- msgctxt "form-fields admin"
4414
- msgid "form field"
4415
- msgstr "campo de formulario"
4416
-
4417
- #: includes/admin/form-fields.php:21
4418
- msgctxt "form-fields admin"
4419
- msgid "form fields"
4420
- msgstr "campos de formulario"
4421
-
4422
- #: includes/admin/form-fields.php:29
4423
- msgctxt "form-fields admin"
4424
- msgid "Order"
4425
- msgstr "Orden"
4426
-
4427
- #: includes/admin/form-fields.php:30
4428
- msgctxt "form-fields admin"
4429
- msgid "Label / Association"
4430
- msgstr "Nombre / Asociación"
4431
-
4432
- #: includes/admin/form-fields.php:32
4433
- msgctxt "form-fields admin"
4434
- msgid "Validator"
4435
- msgstr "Validador"
4436
-
4437
- #: includes/admin/form-fields.php:33
4438
- msgctxt "form-fields admin"
4439
- msgid "Field Attributes"
4440
- msgstr "Atributos de Campo"
4441
-
4442
- #: includes/admin/form-fields.php:133
4443
- msgctxt "form-fields admin"
4444
- msgid "Shortname"
4445
- msgstr "Nombre corto"
4446
-
4447
- #: includes/admin/form-fields.php:155
4448
- msgctxt "form-fields admin"
4449
- msgid "Required"
4450
- msgstr "Requerido"
4451
-
4452
- #: includes/admin/form-fields.php:155
4453
- msgctxt "form-fields admin"
4454
- msgid "Optional"
4455
- msgstr "Opcional"
4456
-
4457
- #: includes/admin/form-fields.php:162
4458
- msgctxt "form-fields admin"
4459
- msgid "Private"
4460
- msgstr "Privado"
4461
-
4462
- #: includes/admin/form-fields.php:169
4463
- msgctxt "form-fields admin"
4464
- msgid "This field value is shown in the excerpt view of a listing."
4465
- msgstr ""
4466
- "El valor de este campo se muestra en la vista de resumen de un listado."
4467
-
4468
- #: includes/admin/form-fields.php:170
4469
- msgctxt "form-fields admin"
4470
- msgid "In Excerpt"
4471
- msgstr "En Resumen"
4472
-
4473
- #: includes/admin/form-fields.php:177
4474
- msgctxt "form-fields admin"
4475
- msgid "This field value is shown in the single view of a listing."
4476
- msgstr ""
4477
- "El valor de este campo es mostrado en la vista individual de un listado."
4478
-
4479
- #: includes/admin/form-fields.php:178
4480
- msgctxt "form-fields admin"
4481
- msgid "In Listing"
4482
- msgstr "En vista completa"
4483
-
4484
- #: includes/admin/form-fields.php:308
4485
- msgctxt "form-fields admin"
4486
- msgid "Form Preview"
4487
- msgstr "Previsualización del Formulario"
4488
-
4489
- #: includes/admin/form-fields.php:369
4490
- msgctxt "form-fields admin"
4491
- msgid "Form fields updated."
4492
- msgstr "Campo de formulario actualizado."
4493
-
4494
- #: includes/admin/form-fields.php:392
4495
- msgctxt "form-fields admin"
4496
- msgid ""
4497
- "<b>Important</b>: Since the \"<a>Display email address fields publicly?</a>"
4498
- "\" setting is disabled, display settings below will not be honored and this "
4499
- "field will not be displayed on the frontend. If you want e-mail addresses to "
4500
- "show on the frontend, you can <a>enable public display of e-mails</a>."
4501
- msgstr ""
4502
- "<b>Importante</b>: Como \"<a>Mostrar direcciones de correo electrónico "
4503
- "públicamente?</a>\" está deshabilitado, la configuración de presentación "
4504
- "abajo no será preservada y este campo no se mostrará en el sitio. Si quiere "
4505
- "que las direcciones de correo electrónico se muestren, puede <a>habilitar la "
4506
- "opción</a>."
4507
-
4508
- #: includes/admin/form-fields.php:470
4509
- msgctxt "form-fields admin"
4510
- msgid "Field deleted."
4511
- msgstr "Campo eliminado."
4512
-
4513
- #: includes/admin/form-fields.php:512
4514
- msgctxt "form-fields admin"
4515
- msgid "Required fields created successfully."
4516
- msgstr "Campos requeridos creados satisfactoriamente."
4517
-
4518
- #: includes/admin/form-fields.php:564
4519
- msgctxt "form-fields admin"
4520
- msgid "Tags updated."
4521
- msgstr "Etiquetas actualizadas."
4522
-
4523
- #: includes/fields/class-fieldtypes-checkbox.php:92
4524
- msgctxt "form-fields admin"
4525
- msgid "Select All"
4526
- msgstr "Seleccionar Todos"
4527
-
4528
- #: includes/fields/class-fieldtypes-checkbox.php:110
4529
- #: includes/fields/class-fieldtypes-radiobutton.php:90
4530
- msgctxt "form-fields admin"
4531
- msgid "Field Options (for select lists, radio buttons and checkboxes)."
4532
- msgstr ""
4533
- "Opciones del Campo (para listas de selección, botones de radio y casillas de "
4534
- "verificación)."
4535
-
4536
- #: includes/fields/class-fieldtypes-checkbox.php:122
4537
- msgctxt "form-fields admin"
4538
- msgid "Include \"Select all\"?"
4539
- msgstr "Incluir “Seleccionar todos”?"
4540
-
4541
- #: includes/fields/class-fieldtypes-checkbox.php:126
4542
- msgctxt "form-fields admin"
4543
- msgid "Display \"Select all\" option among options above."
4544
- msgstr "Agregar la opción “Seleccionar todos” con las demás opciones."
4545
-
4546
- #: includes/fields/class-fieldtypes-checkbox.php:142
4547
- #: includes/fields/class-fieldtypes-radiobutton.php:112
4548
- msgctxt "form-fields admin"
4549
- msgid "Field list of options is required."
4550
- msgstr "La lista de opciones del campo es requerida."
4551
-
4552
- #: includes/fields/class-fieldtypes-image.php:58
4553
- msgctxt "form-fields admin"
4554
- msgid "Field Caption required?"
4555
- msgstr "Es requerida la leyenda del campo?"
4556
-
4557
- #: includes/fields/class-fieldtypes-textarea.php:193
4558
- msgctxt "form-fields admin"
4559
- msgid "Allow HTML input for this field?"
4560
- msgstr "Permitir entrada HTML en este campo?"
4561
-
4562
- #: includes/fields/class-fieldtypes-textarea.php:196
4563
- msgctxt "form-fields admin"
4564
- msgid "Allow IFRAME tags in content?"
4565
- msgstr "¿Permitir tags IFRAME en el contenido?"
4566
-
4567
- #: includes/fields/class-fieldtypes-textarea.php:206
4568
- msgctxt "form-fields admin"
4569
- msgid "Allow WordPress shortcodes in this field?"
4570
- msgstr "Permitir shortcodes de WordPress en este campo?"
4571
-
4572
- #: includes/fields/class-fieldtypes-textarea.php:211
4573
- msgctxt "form-fields admin"
4574
- msgid "Display a WYSIWYG editor on the frontend?"
4575
- msgstr "Mostrar un editor WYSIWYG en la cara del sitio?"
4576
-
4577
- #: includes/fields/class-fieldtypes-textarea.php:218
4578
- msgctxt "form-fields admin"
4579
- msgid ""
4580
- "<b>Advanced users only!</b> Unless you've been told to change this, don't "
4581
- "switch it unless you know what you're doing."
4582
- msgstr ""
4583
- "<b>¡Usuarios avanzados únicamente!</b> No cambie esta configuración salvo si "
4584
- "está seguro de lo que está haciendo."
4585
-
4586
- #: includes/fields/class-fieldtypes-textarea.php:219
4587
- msgctxt "form-fields admin"
4588
- msgid "Apply \"the_content\" filter before displaying this field?"
4589
- msgstr ""
4590
- "Aplicar el filtro \"the_content\" antes de mostrar el contenido de este "
4591
- "campo?"
4592
-
4593
- #: includes/fields/class-fieldtypes-textarea.php:222
4594
- msgctxt "form-fields admin"
4595
- msgid "Use shortened version of Description field as excerpt"
4596
- msgstr "Utilizar la versión abreviada del campo Descripción como extracto"
4597
-
4598
- #: includes/fields/class-fieldtypes-textarea.php:223
4599
- msgctxt "form-fields admin"
4600
- msgid ""
4601
- "Enable always (override the Short Description given with a shortened Long "
4602
- "Description)"
4603
- msgstr ""
4604
- "Habilitar siempre (sobre escribir la descripción corta con una versión "
4605
- "abreviada de la descripción larga)"
4606
-
4607
- #: includes/fields/class-fieldtypes-textarea.php:224
4608
- msgctxt "form-fields admin"
4609
- msgid ""
4610
- "Enable conditionally (override ONLY when Short Description is empty with a "
4611
- "shortened Long Description)"
4612
- msgstr ""
4613
- "Habilitar condicionalmente (Sobre escribir con una versión abreviada de la "
4614
- "descripción larga SOLO cuando la descripción corta esté vacía)"
4615
-
4616
- #: includes/fields/class-fieldtypes-textarea.php:225
4617
- msgctxt "form-fields admin"
4618
- msgid "Disable (use the Short Description all the time, empty or not)"
4619
- msgstr "Inhabilitar (usar la descripción corta siempre, aún si está vacía)"
4620
-
4621
- #: includes/fields/class-fieldtypes-textarea.php:227
4622
- msgctxt "form-fields admin"
4623
- msgid ""
4624
- "Truncates the description field to the value set here. To display all of the "
4625
- "description, set to 0."
4626
- msgstr ""
4627
- "Acorta el contenido del campo descripción al número de caracteres "
4628
- "especificado aquí. Para mostrar toda la descripción, ingrese 0."
4629
-
4630
- #: includes/fields/class-fieldtypes-textarea.php:228
4631
- msgctxt "form-fields admin"
4632
- msgid ""
4633
- "Number of Characters from Short Description/Excerpt to Display in List View "
4634
- "(only)"
4635
- msgstr ""
4636
- "Número de caracteres de la descripción corta/extracto para mostrar en la "
4637
- "vista de listado"
4638
-
4639
- #: includes/fields/class-fieldtypes-textarea.php:233
4640
- msgctxt "form-fields admin"
4641
- msgid "Automatically generate excerpt from content field?"
4642
- msgstr "¿Generar resumen automáticamente del campo de contenido?"
4643
-
4644
- #: includes/fields/class-fieldtypes-twitter.php:83
4645
- msgctxt "form-fields admin"
4646
- msgid "Show followers count?"
4647
- msgstr "¿Mostrar conteo de seguidores?"
4648
-
4649
- #: templates/admin/form-fields-addoredit.tpl.php:29
4650
- msgctxt "form-fields admin"
4651
- msgid "Field Association"
4652
- msgstr "Asociación del Campo"
4653
-
4654
- #: templates/admin/form-fields-addoredit.tpl.php:29
4655
- #: templates/admin/form-fields-addoredit.tpl.php:54
4656
- #: templates/admin/form-fields-addoredit.tpl.php:77
4657
- msgctxt "form-fields admin"
4658
- msgid "required"
4659
- msgstr "requerido"
4660
-
4661
- #: templates/admin/form-fields-addoredit.tpl.php:54
4662
- msgctxt "form-fields admin"
4663
- msgid "Field Type"
4664
- msgstr "Tipo del Campo"
4665
-
4666
- #: templates/admin/form-fields-addoredit.tpl.php:77
4667
- msgctxt "form-fields admin"
4668
- msgid "Field Label"
4669
- msgstr "Nombre del Campo"
4670
-
4671
- #: templates/admin/form-fields-addoredit.tpl.php:87
4672
- msgctxt "form-fields admin"
4673
- msgid "Field description"
4674
- msgstr "Descripción del Campo"
4675
-
4676
- #: templates/admin/form-fields-addoredit.tpl.php:87
4677
- msgctxt "form-fields admin"
4678
- msgid "optional"
4679
- msgstr "opcional"
4680
-
4681
- #: templates/admin/form-fields-addoredit.tpl.php:104
4682
- msgctxt "form-fields admin"
4683
- msgid "Field-specific settings"
4684
- msgstr "Configuración específica del campo"
4685
-
4686
- #: templates/admin/form-fields-addoredit.tpl.php:113
4687
- msgctxt "form-fields admin"
4688
- msgid "Field validation options"
4689
- msgstr "Opciones de validación del campo"
4690
-
4691
- #: templates/admin/form-fields-addoredit.tpl.php:117
4692
- msgctxt "form-fields admin"
4693
- msgid "Field Validator"
4694
- msgstr "Validador del Campo"
4695
-
4696
- #: templates/admin/form-fields-addoredit.tpl.php:121
4697
- msgctxt "form-fields admin"
4698
- msgid "No validation"
4699
- msgstr "Ninguna validación"
4700
-
4701
- #: templates/admin/form-fields-addoredit.tpl.php:133
4702
- msgctxt "form-fields admin"
4703
- msgid "Number of words"
4704
- msgstr "Número de palabras"
4705
-
4706
- #: templates/admin/form-fields-addoredit.tpl.php:143
4707
- msgctxt "form-fields admin"
4708
- msgid "Is field required?"
4709
- msgstr "Es este campo requerido?"
4710
-
4711
- #: templates/admin/form-fields-addoredit.tpl.php:149
4712
- msgctxt "form-fields admin"
4713
- msgid "This field is required."
4714
- msgstr "Este campo es requerido."
4715
-
4716
- #: templates/admin/form-fields-addoredit.tpl.php:157
4717
- msgctxt "form-fields admin"
4718
- msgid "Field display options"
4719
- msgstr "Opciones de presentación del Campo"
4720
-
4721
- #: templates/admin/form-fields-addoredit.tpl.php:161
4722
- msgctxt "form-fields admin"
4723
- msgid "Field Category Policy:"
4724
- msgstr "Política de categoría de campo:"
4725
-
4726
- #: templates/admin/form-fields-addoredit.tpl.php:166
4727
- msgctxt "form-fields admin"
4728
- msgid "Field applies to all categories"
4729
- msgstr "El campo aplica para todas las categorías"
4730
-
4731
- #: templates/admin/form-fields-addoredit.tpl.php:167
4732
- msgctxt "form-fields admin"
4733
- msgid "Field applies to only certain categories"
4734
- msgstr "El campo se aplica a algunas categorías"
4735
-
4736
- #: templates/admin/form-fields-addoredit.tpl.php:171
4737
- msgctxt "form-fields admin"
4738
- msgid "Limit field to the following categories:"
4739
- msgstr "Limitar el campo a las siguientes categorías:"
4740
-
4741
- #: templates/admin/form-fields-addoredit.tpl.php:195
4742
- msgctxt "form-fields admin"
4743
- msgid "Click to add categories to the selection."
4744
- msgstr "Haga click para agregar categorías a la selección."
4745
-
4746
- #: templates/admin/form-fields-addoredit.tpl.php:208
4747
- msgctxt "form-fields admin"
4748
- msgid "Show this field to admin users only?"
4749
- msgstr "¿Mostrar este campo solo para usuarios administradores?"
4750
-
4751
- #: templates/admin/form-fields-addoredit.tpl.php:214
4752
- msgctxt "form-fields admin"
4753
- msgid "Display this field to admin users only in the edit listing view."
4754
- msgstr ""
4755
- "Mostrar este campo solo para usuarios administradores en vista de edición."
4756
-
4757
- #: templates/admin/form-fields-addoredit.tpl.php:220
4758
- msgctxt "form-fields admin"
4759
- msgid "Show this value in excerpt view?"
4760
- msgstr "Mostrar este valor en la vista de resumen?"
4761
-
4762
- #: templates/admin/form-fields-addoredit.tpl.php:226
4763
- msgctxt "form-fields admin"
4764
- msgid "Display this value in post excerpt view."
4765
- msgstr "Mostrar este valor en la vista de resumen de un listado."
4766
-
4767
- #: templates/admin/form-fields-addoredit.tpl.php:232
4768
- msgctxt "form-fields admin"
4769
- msgid "Show this value in listing view?"
4770
- msgstr "Mostrar este valor en la vista individual?"
4771
-
4772
- #: templates/admin/form-fields-addoredit.tpl.php:238
4773
- msgctxt "form-fields admin"
4774
- msgid "Display this value in the listing view."
4775
- msgstr "Mostrar este valor en la vista individual de un listado."
4776
-
4777
- #: templates/admin/form-fields-addoredit.tpl.php:244
4778
- msgctxt "form-fields admin"
4779
- msgid "Include this field in the search form?"
4780
- msgstr "Incluir este campo en el formulario de búsqueda?"
4781
-
4782
- #: templates/admin/form-fields-addoredit.tpl.php:250
4783
- msgctxt "form-fields admin"
4784
- msgid "Include this field in the search form."
4785
- msgstr "Incluir este campo en el formulario de búsqueda."
4786
-
4787
- #: templates/admin/form-fields-addoredit.tpl.php:256
4788
- msgctxt "form-fields admin"
4789
- msgid "Is this field required for searching?"
4790
- msgstr "¿Este campo es necesario para buscar?"
4791
-
4792
- #: templates/admin/form-fields-addoredit.tpl.php:269
4793
- msgctxt "form-fields admin"
4794
- msgid "Hide this field's label?"
4795
- msgstr "Ocultar el nombre de este campo?"
4796
-
4797
- #: templates/admin/form-fields-addoredit.tpl.php:275
4798
- msgctxt "form-fields admin"
4799
- msgid "Hide this field's label when displaying it."
4800
- msgstr "Ocultar el nombre de este campo cuando se esté mostrando."
4801
-
4802
- #: templates/admin/form-fields-addoredit.tpl.php:282
4803
- msgctxt "form-fields admin"
4804
- msgid "Field privacy options"
4805
- msgstr "Opciones de privacidad del Campo"
4806
-
4807
- #: templates/admin/form-fields-addoredit.tpl.php:286
4808
- msgctxt "form-fields admin"
4809
- msgid "This field contains sensitive or private information?"
4810
- msgstr "Éste campo contiene información sensible o privada?"
4811
-
4812
- #: templates/admin/form-fields-addoredit.tpl.php:294
4813
- msgctxt "form-fields admin"
4814
- msgid "Add this field when exporting or deleting user's personal data."
4815
- msgstr "Agregar este campo al exportar o eliminar la información del usuario."
4816
-
4817
- #: templates/admin/form-fields-addoredit.tpl.php:301
4818
- msgctxt "form-fields admin"
4819
- msgid "Update Field"
4820
- msgstr "Actualizar Campo"
4821
-
4822
- #: templates/admin/form-fields-addoredit.tpl.php:303
4823
- msgctxt "form-fields admin"
4824
- msgid "Add Field"
4825
- msgstr "Agregar Campo"
4826
-
4827
- #: templates/admin/form-fields-tags.tpl.php:5
4828
- msgctxt "form-fields admin"
4829
- msgid "-- None --"
4830
- msgstr "— Ninguno --"
4831
-
4832
- #: templates/admin/form-fields-tags.tpl.php:14
4833
- msgctxt "form-fields admin"
4834
- msgid "Theme Tags"
4835
- msgstr "Etiquetas de Tema"
4836
-
4837
- #: templates/admin/form-fields-tags.tpl.php:19
4838
- msgctxt "form-fields admin"
4839
- msgid ""
4840
- "Before you create fields, make sure you've mapped all of your EXISTING ones "
4841
- "first, otherwise you'll appear to be \"missing data\" on your listings."
4842
- msgstr ""
4843
- "Antes de crear los campos, revise si no ha asociado ya todos sus campos "
4844
- "existentes primero. De lo contrario, parecerá que a sus listados les hace "
4845
- "falta información."
4846
-
4847
- #: templates/admin/form-fields-tags.tpl.php:22
4848
- msgctxt "form-fields admin"
4849
- msgid "Create Missing Fields"
4850
- msgstr "Crear campos faltantes"
4851
-
4852
- #: templates/admin/form-fields.tpl.php:4
4853
- msgctxt "form-fields admin"
4854
- msgid "Add New Form Field"
4855
- msgstr "Agregar Nuevo Campo de Formulario"
4856
-
4857
- #: templates/admin/form-fields.tpl.php:11
4858
- msgctxt "form-fields admin"
4859
- msgid "Preview Form"
4860
- msgstr "Previsualizar Formulario"
4861
-
4862
- #: templates/admin/form-fields.tpl.php:17
4863
- msgctxt "form-fields admin"
4864
- msgid "Manage Theme Tags"
4865
- msgstr "Administrar Etiquetas del Tema"
4866
-
4867
- #: templates/admin/form-fields.tpl.php:28
4868
- msgctxt "form-fields admin"
4869
- msgid ""
4870
- "Here, you can create new fields for your listings, edit or delete existing "
4871
- "ones, change the order and visibility of the fields as well as configure "
4872
- "special options for them."
4873
- msgstr ""
4874
- "Aquí puede crear nuevos campos para sus listados, editar o eliminar los "
4875
- "existentes, cambiar el orden y visibilidad de los campos y hacer otras "
4876
- "configuraciones especiales para ellos."
4877
-
4878
- #: templates/admin/form-fields.tpl.php:39
4879
- msgctxt "form-fields admin"
4880
- msgid "Please see the <a>Form Fields documentation</a> for more details."
4881
- msgstr ""
4882
- "Por favor vea la <a>documentación de Campos de Formulario</a> para más "
4883
- "detalles."
4884
-
4885
- #: includes/admin/helpers/class-fees-table.php:80
4886
- msgctxt "admin fees table"
4887
- msgid "All"
4888
- msgstr "Todas"
4889
-
4890
- #: includes/admin/helpers/class-fees-table.php:94
4891
- msgctxt "admin fees table"
4892
- msgid "Active"
4893
- msgstr "Activas"
4894
-
4895
- #: includes/admin/helpers/class-fees-table.php:104
4896
- msgctxt "admin fees table"
4897
- msgid "Not Available"
4898
- msgstr "No Disponibles"
4899
-
4900
- #: includes/admin/helpers/class-fees-table.php:112
4901
- msgctxt "admin fees table"
4902
- msgid "Disabled"
4903
- msgstr "Deshabilitadas"
4904
-
4905
- #: includes/admin/helpers/class-listing-information-metabox.php:15
4906
- msgctxt "listing metabox"
4907
- msgid "Listing"
4908
- msgstr "Listado"
4909
-
4910
- #: includes/admin/helpers/class-listing-information-metabox.php:19
4911
- msgctxt "listing metabox"
4912
- msgid "Recent Payments"
4913
- msgstr "Pagos recientes"
4914
-
4915
- #: includes/admin/helpers/class-listing-information-metabox.php:23
4916
- msgctxt "listing metabox"
4917
- msgid "Access Key"
4918
- msgstr "Clave de acceso"
4919
-
4920
- #: templates/admin/metaboxes-listing-information-payments.tpl.php:14
4921
- msgctxt "listing metabox"
4922
- msgid "Click a transaction to see its details (and approve/reject)."
4923
- msgstr "Haga clic ver los detalles o aprobar/rechazar la transacción."
4924
-
4925
- #: templates/admin/metaboxes-listing-information-payments.tpl.php:35
4926
- msgctxt "listing metabox"
4927
- msgid "No payments available."
4928
- msgstr "No hay pagos disponibles."
4929
-
4930
- #: templates/admin/metaboxes-listing-information-plan.tpl.php:12
4931
- msgctxt "listing metabox"
4932
- msgid "General Info"
4933
- msgstr "Información General"
4934
-
4935
- #: templates/admin/metaboxes-listing-information-plan.tpl.php:14
4936
- msgctxt "listing metabox"
4937
- msgid "Listing Status"
4938
- msgstr "Estado del Listado"
4939
-
4940
- #: templates/admin/metaboxes-listing-information-plan.tpl.php:20
4941
- #: templates/admin/metaboxes-listing-information-plan.tpl.php:29
4942
- msgctxt "listing metabox"
4943
- msgid "N/A"
4944
- msgstr "N/A"
4945
-
4946
- #: templates/admin/metaboxes-listing-information-plan.tpl.php:25
4947
- msgctxt "listing metabox"
4948
- msgid "Last renew date"
4949
- msgstr "Fecha de renovación"
4950
-
4951
- #: templates/admin/metaboxes-listing-information-plan.tpl.php:33
4952
- msgctxt "listing metabox"
4953
- msgid "Plan Details"
4954
- msgstr "Detalles del Plan"
4955
-
4956
- #: templates/admin/metaboxes-listing-information-plan.tpl.php:35
4957
- msgctxt "listing metabox"
4958
- msgid "Fee Plan"
4959
- msgstr "Plan de Pago"
4960
-
4961
- #: templates/admin/metaboxes-listing-information-plan.tpl.php:44
4962
- msgctxt "listing metabox"
4963
- msgid "Change plan"
4964
- msgstr "Cambiar plan de pago"
4965
-
4966
- #: templates/admin/metaboxes-listing-information-plan.tpl.php:65
4967
- #: templates/admin/metaboxes-listing-information-plan.tpl.php:85
4968
- #: templates/admin/metaboxes-listing-information-plan.tpl.php:99
4969
- msgctxt "listing metabox"
4970
- msgid "OK"
4971
- msgstr "OK"
4972
-
4973
- #: templates/admin/metaboxes-listing-information-plan.tpl.php:66
4974
- #: templates/admin/metaboxes-listing-information-plan.tpl.php:86
4975
- #: templates/admin/metaboxes-listing-information-plan.tpl.php:100
4976
- msgctxt "listing metabox"
4977
- msgid "Cancel"
4978
- msgstr "Cancelar"
4979
-
4980
- #: templates/admin/metaboxes-listing-information-plan.tpl.php:75
4981
- msgctxt "listing metabox"
4982
- msgid "Expires On"
4983
- msgstr "Expira en"
4984
-
4985
- #: templates/admin/metaboxes-listing-information-plan.tpl.php:80
4986
- #: templates/admin/metaboxes-listing-information-plan.tpl.php:95
4987
- msgctxt "listing metabox"
4988
- msgid "Edit"
4989
- msgstr "Editar"
4990
-
4991
- #: templates/admin/metaboxes-listing-information-plan.tpl.php:82
4992
- msgctxt "listing metabox"
4993
- msgid "Never"
4994
- msgstr "Nunca"
4995
-
4996
- #: templates/admin/metaboxes-listing-information-plan.tpl.php:90
4997
- msgctxt "listing metabox"
4998
- msgid "# of images"
4999
- msgstr "# de imágenes"
5000
-
5001
- #: templates/admin/metaboxes-listing-information-plan.tpl.php:103
5002
- msgctxt "listing metabox"
5003
- msgid "Is Featured?"
5004
- msgstr "¿Es destacado?"
5005
-
5006
- #: templates/admin/metaboxes-listing-information-plan.tpl.php:110
5007
- msgctxt "listing metabox"
5008
- msgid "Is Recurring?"
5009
- msgstr "¿Es recurrente?"
5010
-
5011
- #: includes/admin/helpers/class-listing-timeline.php:111
5012
- msgctxt "listing timeline"
5013
- msgid "Listing created"
5014
- msgstr "Listado creado"
5015
-
5016
- #: includes/admin/helpers/class-listing-timeline.php:116
5017
- msgctxt "listing timeline"
5018
- msgid "Listing expired"
5019
- msgstr "Listado expiró"
5020
-
5021
- #: includes/admin/helpers/class-listing-timeline.php:126
5022
- msgctxt "listing timeline"
5023
- msgid "T&C acceptance date"
5024
- msgstr "Fecha de aceptación de T&C"
5025
-
5026
- #: includes/admin/helpers/class-listing-timeline.php:141
5027
- msgctxt "listing timeline"
5028
- msgid "Paid as admin"
5029
- msgstr "Pagado como administrador"
5030
-
5031
- #: includes/admin/helpers/class-listing-timeline.php:143
5032
- msgctxt "listing timeline"
5033
- msgid "Listing imported"
5034
- msgstr "Listado importado"
5035
-
5036
- #: includes/admin/helpers/class-listing-timeline.php:145
5037
- msgctxt "listing timeline"
5038
- msgid "Initial Payment"
5039
- msgstr "Pago Inicial"
5040
-
5041
- #: includes/admin/helpers/class-payments-table.php:12
5042
- msgctxt "payments admin"
5043
- msgid "payment"
5044
- msgstr "pago"
5045
-
5046
- #: includes/admin/helpers/class-payments-table.php:13
5047
- msgctxt "payments admin"
5048
- msgid "payments"
5049
- msgstr "pagos"
5050
-
5051
- #: includes/admin/helpers/class-payments-table.php:19
5052
- msgctxt "payments admin"
5053
- msgid "No payments found."
5054
- msgstr "No se encontraron pagos."
5055
-
5056
- #: includes/admin/helpers/class-payments-table.php:32
5057
- msgctxt "payments admin"
5058
- msgid "All"
5059
- msgstr "Todos"
5060
-
5061
- #: includes/admin/helpers/class-payments-table.php:120
5062
- msgctxt "payments admin"
5063
- msgid "View Payment History"
5064
- msgstr "Ver Historial de Transacciones"
5065
-
5066
- #: includes/admin/payments.php:19
5067
- msgctxt "payments admin"
5068
- msgid "Payment deleted."
5069
- msgstr "Pago eliminado."
5070
-
5071
- #: includes/admin/payments.php:37
5072
- msgctxt "payments admin"
5073
- msgid ""
5074
- "You're seeing payments related to listing: \"%1$s\" (ID #%2$d). <a>Click "
5075
- "here</a> to see all payments."
5076
- msgstr ""
5077
- "Está viendo pagos relacionados con el listado: “%1$s” (ID: #%2%d). Haga "
5078
- "<a>click aquí</a> para ver todo los pagos."
5079
-
5080
- #: includes/admin/payments.php:51
5081
- msgctxt "payments admin"
5082
- msgid "Payment details updated."
5083
- msgstr "Detalles del pago actualizados."
5084
-
5085
- #: includes/admin/settings/class-settings-admin.php:370
5086
- msgctxt "admin settings"
5087
- msgid "Remove"
5088
- msgstr "Eliminar"
5089
-
5090
- #: includes/admin/settings/class-settings-admin.php:432
5091
- msgctxt "admin settings"
5092
- msgid "Valid placeholders: %s"
5093
- msgstr "Comodines válidos: %s"
5094
-
5095
- #: includes/admin/settings/class-settings-bootstrap.php:100
5096
- msgctxt "admin settings"
5097
- msgid ""
5098
- "<strong>IMPORTANT:</strong> subpages of the main directory page cannot be "
5099
- "accesed while this setting is checked."
5100
- msgstr ""
5101
- "<strong>IMPORTANTE:</strong> las sub-páginas de la página principal del "
5102
- "directorio no se podrán acceder mientras esta opción esté habilitada."
5103
-
5104
- #: includes/admin/settings/class-settings-bootstrap.php:309
5105
- msgctxt "admin settings"
5106
- msgid "Above results"
5107
- msgstr "Encima de los resultados"
5108
-
5109
- #: includes/admin/settings/class-settings-bootstrap.php:310
5110
- msgctxt "admin settings"
5111
- msgid "Below results"
5112
- msgstr "Debajo de los resultados"
5113
-
5114
- #: includes/admin/settings/class-settings-bootstrap.php:311
5115
- msgctxt "admin settings"
5116
- msgid "Don't show with results"
5117
- msgstr "No mostrar con los resultados"
5118
-
5119
- #: includes/admin/settings/class-settings-bootstrap.php:347
5120
- msgctxt "admin settings"
5121
- msgid ""
5122
- "Check this if you are having trouble with BD, particularly when importing or "
5123
- "exporting CSV files."
5124
- msgstr ""
5125
- "Seleccione esta opción si está teniendo problemas con BD, particularmente al "
5126
- "importar o exportar archivos CSV."
5127
-
5128
- #: includes/admin/settings/class-settings-bootstrap.php:411
5129
- msgctxt "admin settings"
5130
- msgid ""
5131
- "You have selected a textarea field to be included in quick searches. "
5132
- "Searches involving those fields are very expensive and could result in "
5133
- "timeouts and/or general slowness."
5134
- msgstr ""
5135
- "Ha elegido un campo de tipo área de texto para ser incluído en las búsquedas "
5136
- "rápidas. Búsquedas que involucran este tipo de campos son costosas y pueden "
5137
- "resultar en timeouts o lentitud en general."
5138
-
5139
- #: includes/admin/settings/class-settings-bootstrap.php:414
5140
- msgctxt "admin settings"
5141
- msgid ""
5142
- "If no fields are selected, the following fields will be used in Quick "
5143
- "Searches:"
5144
- msgstr ""
5145
- "Si ningún campo es seleccionado, los siguientes campos se usarán en "
5146
- "Búsquedas Rápidas:"
5147
-
5148
- #: includes/admin/settings/class-settings-bootstrap.php:578
5149
- msgctxt "admin settings"
5150
- msgid "Do not include comments in listings"
5151
- msgstr "No incluir formulario de comentario en listados"
5152
-
5153
- #: includes/admin/settings/class-settings-bootstrap.php:602
5154
- msgctxt "admin settings"
5155
- msgid "Directory view."
5156
- msgstr "Página principal del directorio."
5157
-
5158
- #: includes/admin/settings/class-settings-bootstrap.php:603
5159
- msgctxt "admin settings"
5160
- msgid "All Listings view."
5161
- msgstr "La vista de todos los listados."
5162
-
5163
- #: includes/admin/settings/class-settings-bootstrap.php:604
5164
- msgctxt "admin settings"
5165
- msgid "Category view."
5166
- msgstr "Página de categoría."
5167
-
5168
- #: includes/admin/settings/class-settings-bootstrap.php:605
5169
- msgctxt "admin settings"
5170
- msgid "Search view."
5171
- msgstr "Resultados de búsqueda."
5172
-
5173
- #: includes/admin/settings/class-settings-bootstrap.php:694
5174
- msgctxt "admin settings"
5175
- msgid "Slug"
5176
- msgstr "Slug"
5177
-
5178
- #: includes/admin/settings/class-settings-bootstrap.php:707
5179
- #: includes/admin/settings/class-settings-bootstrap.php:775
5180
- msgctxt "admin settings"
5181
- msgid "Ascending"
5182
- msgstr "Ascendente"
5183
-
5184
- #: includes/admin/settings/class-settings-bootstrap.php:708
5185
- #: includes/admin/settings/class-settings-bootstrap.php:776
5186
- msgctxt "admin settings"
5187
- msgid "Descending"
5188
- msgstr "Descendente"
5189
-
5190
- #: includes/admin/settings/class-settings-bootstrap.php:741
5191
- #, fuzzy
5192
- msgctxt "admin settings"
5193
- msgid "Fee Plan Custom Order can be changed under <a>Fee Plans</a>"
5194
- msgstr ""
5195
- "El orden personalizado de las comisiones puede ser cambiado en "
5196
- "<a>Administrar Comisiones</a>"
5197
-
5198
- #: includes/admin/settings/class-settings-bootstrap.php:754
5199
- msgctxt "admin settings"
5200
- msgid "Author"
5201
- msgstr "Autor"
5202
-
5203
- #: includes/admin/settings/class-settings-bootstrap.php:755
5204
- #: includes/functions.php:1182
5205
- msgctxt "admin settings"
5206
- msgid "Date posted"
5207
- msgstr "Fecha de publicación"
5208
-
5209
- #: includes/admin/settings/class-settings-bootstrap.php:756
5210
- #: includes/functions.php:1183
5211
- msgctxt "admin settings"
5212
- msgid "Date last modified"
5213
- msgstr "Fecha de última modificación"
5214
-
5215
- #: includes/admin/settings/class-settings-bootstrap.php:757
5216
- msgctxt "admin settings"
5217
- msgid "Random"
5218
- msgstr "Aleatorio"
5219
-
5220
- #: includes/admin/settings/class-settings-bootstrap.php:758
5221
- msgctxt "admin settings"
5222
- msgid "Paid first then free. Inside each group by date."
5223
- msgstr "Pagos primero, luego gratuitos. Dentro de cada grupo, por fecha."
5224
-
5225
- #: includes/admin/settings/class-settings-bootstrap.php:759
5226
- msgctxt "admin settings"
5227
- msgid "Paid first then free. Inside each group by title."
5228
- msgstr "Pagos primero, luego gratuitos. Dentro de cada grupo por título."
5229
-
5230
- #: includes/admin/settings/class-settings-bootstrap.php:760
5231
- msgctxt "admin settings"
5232
- msgid "Fee Plan Custom Order, then Date"
5233
- msgstr "Orden personalizado para comisiones, luego fecha"
5234
-
5235
- #: includes/admin/settings/class-settings-bootstrap.php:761
5236
- msgctxt "admin settings"
5237
- msgid "Fee Plan Custom Order, then Title"
5238
- msgstr "Orden personalizado para comisiones, luego título"
5239
-
5240
- #: includes/admin/settings/class-settings-bootstrap.php:1026
5241
- msgctxt "admin settings"
5242
- msgid ""
5243
- "For paid listing images, configure that by adding or editing a <a>Fee Plan</"
5244
- "a> instead of this setting, which is ignored for paid listings."
5245
- msgstr ""
5246
- "Configure las imágenes de listados pagos agregando o editando una "
5247
- "<a>comisión</a> pues este valor será ignorado para listados pagos."
5248
-
5249
- #: includes/admin/settings/class-settings-bootstrap.php:1037
5250
- #: includes/admin/settings/class-settings-bootstrap.php:1090
5251
- msgctxt "admin settings"
5252
- msgid "Excerpt view."
5253
- msgstr "Resumen."
5254
-
5255
- #: includes/admin/settings/class-settings-bootstrap.php:1038
5256
- #: includes/admin/settings/class-settings-bootstrap.php:1091
5257
- msgctxt "admin settings"
5258
- msgid "Detail view."
5259
- msgstr "Vista detallada."
5260
-
5261
- #: includes/admin/settings/class-settings-bootstrap.php:1150
5262
- msgctxt "admin settings"
5263
- msgid "Australian Dollar (AUD)"
5264
- msgstr "Dólar Australiano (AUD)"
5265
-
5266
- #: includes/admin/settings/class-settings-bootstrap.php:1151
5267
- msgctxt "admin settings"
5268
- msgid "Brazilian Real (BRL)"
5269
- msgstr "Real Brasilero (BRL)"
5270
-
5271
- #: includes/admin/settings/class-settings-bootstrap.php:1152
5272
- msgctxt "admin settings"
5273
- msgid "Canadian Dollar (CAD)"
5274
- msgstr "Dólar Canadiense (CAD)"
5275
-
5276
- #: includes/admin/settings/class-settings-bootstrap.php:1153
5277
- msgctxt "admin settings"
5278
- msgid "Czech Koruna (CZK)"
5279
- msgstr "Corona Checa (CZK)"
5280
-
5281
- #: includes/admin/settings/class-settings-bootstrap.php:1154
5282
- msgctxt "admin settings"
5283
- msgid "Danish Krone (DKK)"
5284
- msgstr "Corona Danesa (DKK)"
5285
-
5286
- #: includes/admin/settings/class-settings-bootstrap.php:1155
5287
- msgctxt "admin settings"
5288
- msgid "United Arab Emirates Dirham (AED)"
5289
- msgstr "United Arab Emirates Dirham (AED)"
5290
-
5291
- #: includes/admin/settings/class-settings-bootstrap.php:1156
5292
- msgctxt "admin settings"
5293
- msgid "Euro (EUR)"
5294
- msgstr "Euro (EUR)"
5295
-
5296
- #: includes/admin/settings/class-settings-bootstrap.php:1157
5297
- msgctxt "admin settings"
5298
- msgid "Hong Kong Dollar (HKD)"
5299
- msgstr "Dólar de Hong Kong (HKD)"
5300
-
5301
- #: includes/admin/settings/class-settings-bootstrap.php:1158
5302
- msgctxt "admin settings"
5303
- msgid "Hungarian Forint (HUF)"
5304
- msgstr "Forinte Húngaro (HUF)"
5305
-
5306
- #: includes/admin/settings/class-settings-bootstrap.php:1159
5307
- msgctxt "admin settings"
5308
- msgid "Israeli New Shequel (ILS)"
5309
- msgstr "Nuevo Shékel Israelí (ILS)"
5310
-
5311
- #: includes/admin/settings/class-settings-bootstrap.php:1160
5312
- msgctxt "admin settings"
5313
- msgid "Japanese Yen (JPY)"
5314
- msgstr "Yen Japonés (JPY)"
5315
-
5316
- #: includes/admin/settings/class-settings-bootstrap.php:1161
5317
- msgctxt "admin settings"
5318
- msgid "Moroccan Dirham (MAD)"
5319
- msgstr "Moroccan Dirham (MAD)"
5320
-
5321
- #: includes/admin/settings/class-settings-bootstrap.php:1162
5322
- msgctxt "admin settings"
5323
- msgid "Malasian Ringgit (MYR)"
5324
- msgstr "Ringgit de Malasia (MYR)"
5325
-
5326
- #: includes/admin/settings/class-settings-bootstrap.php:1163
5327
- msgctxt "admin settings"
5328
- msgid "Mexican Peso (MXN)"
5329
- msgstr "Peso Mexicano (MXN)"
5330
-
5331
- #: includes/admin/settings/class-settings-bootstrap.php:1164
5332
- msgctxt "admin settings"
5333
- msgid "Norwegian Krone (NOK)"
5334
- msgstr "Corona Noruega (NOK)"
5335
-
5336
- #: includes/admin/settings/class-settings-bootstrap.php:1165
5337
- msgctxt "admin settings"
5338
- msgid "New Zealand Dollar (NZD)"
5339
- msgstr "Dólar de Nueva Zelanda (NZD)"
5340
-
5341
- #: includes/admin/settings/class-settings-bootstrap.php:1166
5342
- msgctxt "admin settings"
5343
- msgid "Philippine Peso (PHP)"
5344
- msgstr "Peso Filipino (PHP)"
5345
-
5346
- #: includes/admin/settings/class-settings-bootstrap.php:1167
5347
- msgctxt "admin settings"
5348
- msgid "Polish Zloty (PLN)"
5349
- msgstr "Zloty Polaco (PLN)"
5350
-
5351
- #: includes/admin/settings/class-settings-bootstrap.php:1168
5352
- msgctxt "admin settings"
5353
- msgid "Pound Sterling (GBP)"
5354
- msgstr "Libra Esterlina (GBP)"
5355
-
5356
- #: includes/admin/settings/class-settings-bootstrap.php:1169
5357
- msgctxt "admin settings"
5358
- msgid "Singapore Dollar (SGD)"
5359
- msgstr "Dólar de Singapur (SGD)"
5360
-
5361
- #: includes/admin/settings/class-settings-bootstrap.php:1170
5362
- msgctxt "admin settings"
5363
- msgid "Swedish Krona (SEK)"
5364
- msgstr "Corona Sueca (SEK)"
5365
-
5366
- #: includes/admin/settings/class-settings-bootstrap.php:1171
5367
- msgctxt "admin settings"
5368
- msgid "Swiss Franc (CHF)"
5369
- msgstr "Franco Suizo (CHF)"
5370
-
5371
- #: includes/admin/settings/class-settings-bootstrap.php:1172
5372
- msgctxt "admin settings"
5373
- msgid "Taiwan Dollar (TWD)"
5374
- msgstr "Dólar de Taiwán (TWD)"
5375
-
5376
- #: includes/admin/settings/class-settings-bootstrap.php:1173
5377
- msgctxt "admin settings"
5378
- msgid "Thai Baht (THB)"
5379
- msgstr "Baht de Tailandia (THB)"
5380
-
5381
- #: includes/admin/settings/class-settings-bootstrap.php:1174
5382
- msgctxt "admin settings"
5383
- msgid "Turkish Lira (TRY)"
5384
- msgstr "Lira Turca (TRY)"
5385
-
5386
- #: includes/admin/settings/class-settings-bootstrap.php:1175
5387
- msgctxt "admin settings"
5388
- msgid "U.S. Dollar (USD)"
5389
- msgstr "Dólar Americano (USD)"
5390
-
5391
- #: includes/admin/settings/class-settings-bootstrap.php:1199
5392
- msgctxt "admin settings"
5393
- msgid "Show currency symbol on the left"
5394
- msgstr "Mostrar el símbolo de moneda a la izquierda"
5395
-
5396
- #: includes/admin/settings/class-settings-bootstrap.php:1200
5397
- msgctxt "admin settings"
5398
- msgid "Show currency symbol on the right"
5399
- msgstr "Mostrar el símbolo de moneda a la derecha"
5400
-
5401
- #: includes/admin/settings/class-settings-bootstrap.php:1201
5402
- msgctxt "admin settings"
5403
- msgid "Do not show currency symbol"
5404
- msgstr "No mostrar el símbolo de moneda"
5405
-
5406
- #. translators: %1$s: gateway name, %2$s: explanation string
5407
- #: includes/admin/settings/class-settings-bootstrap.php:1249
5408
- msgctxt "admin settings"
5409
- msgid "AED currency is not supported by %1$s. %2$s"
5410
- msgstr "La moneda de AED no es compatible con %1$s. %2$s"
5411
-
5412
- #: includes/admin/settings/class-settings-bootstrap.php:1288
5413
- #, fuzzy
5414
- msgctxt "admin settings"
5415
- msgid ""
5416
- "Listings with pending payments are marked as abandoned after this time. You "
5417
- "can also <a>customize the email</a> users receive."
5418
- msgstr ""
5419
- "Listados con pagos pendientes son marcados como abandonados luego de este "
5420
- "tiempo. También puede <a>personalizar el correo-e</a> que los usuarios "
5421
- "reciben."
5422
-
5423
- #: includes/admin/settings/class-settings-bootstrap.php:1318
5424
- msgctxt "admin settings"
5425
- msgid "Try listing's email field first, then author's email."
5426
- msgstr "Intentar con el correo-e del listado, luego el del autor."
5427
-
5428
- #: includes/admin/settings/class-settings-bootstrap.php:1319
5429
- msgctxt "admin settings"
5430
- msgid "Try author's email first and then listing's email field."
5431
- msgstr ""
5432
- "Intentar con el correo-e del autor primero, luego el del campo de correo del "
5433
- "listado."
5434
-
5435
- #: includes/admin/settings/class-settings-bootstrap.php:1332
5436
- msgctxt "admin settings"
5437
- msgid "Plain (text/plain)"
5438
- msgstr "Texto plano (text/plain)"
5439
-
5440
- #: includes/admin/settings/class-settings-bootstrap.php:1333
5441
- msgctxt "admin settings"
5442
- msgid "HTML (text/html)"
5443
- msgstr "HTML (text/html)"
5444
-
5445
- #: includes/admin/settings/class-settings-bootstrap.php:1334
5446
- msgctxt "admin settings"
5447
- msgid "Both (multipart/alternative)"
5448
- msgstr "Ambos (multipart/alternative)"
5449
-
5450
- #: includes/admin/settings/class-settings-bootstrap.php:1348
5451
- msgctxt "admin settings"
5452
- msgid "A new listing is submitted."
5453
- msgstr "Un nuevo listado ha sido enviado."
5454
-
5455
- #: includes/admin/settings/class-settings-bootstrap.php:1349
5456
- msgctxt "admin settings"
5457
- msgid "A listing is edited."
5458
- msgstr "Un listado es editado."
5459
-
5460
- #: includes/admin/settings/class-settings-bootstrap.php:1350
5461
- msgctxt "admin settings"
5462
- msgid "A listing expires."
5463
- msgstr "Un listado expira."
5464
-
5465
- #: includes/admin/settings/class-settings-bootstrap.php:1351
5466
- msgctxt "admin settings"
5467
- msgid "A listing is renewed."
5468
- msgstr "Un listado es renovado."
5469
-
5470
- #: includes/admin/settings/class-settings-bootstrap.php:1352
5471
- msgctxt "admin settings"
5472
- msgid "A listing payment is completed."
5473
- msgstr "Se completó el pago de un listado."
5474
-
5475
- #: includes/admin/settings/class-settings-bootstrap.php:1353
5476
- msgctxt "admin settings"
5477
- msgid "A listing has been reported as inappropriate."
5478
- msgstr "Un listado ha sido reportado como inapropiado."
5479
-
5480
- #: includes/admin/settings/class-settings-bootstrap.php:1354
5481
- msgctxt "admin settings"
5482
- msgid "A contact message is sent to a listing's owner."
5483
- msgstr "Un mensaje de contacto es enviado al dueño del listado."
5484
-
5485
- #: includes/admin/settings/class-settings-bootstrap.php:1381
5486
- msgctxt "admin settings"
5487
- msgid "Their listing is submitted."
5488
- msgstr "Su listado ha sido recibido."
5489
-
5490
- #: includes/admin/settings/class-settings-bootstrap.php:1382
5491
- msgctxt "admin settings"
5492
- msgid "Their listing is approved/published."
5493
- msgstr "Su listado ha sido aprobado/publicado."
5494
-
5495
- #: includes/admin/settings/class-settings-bootstrap.php:1383
5496
- msgctxt "admin settings"
5497
- msgid "A payment for their listing is completed."
5498
- msgstr "Se ha completado su pago del listado."
5499
-
5500
- #: includes/admin/settings/class-settings-bootstrap.php:1384
5501
- msgctxt "admin settings"
5502
- msgid "Their listing expired or is about to expire."
5503
- msgstr "Su listado ha expirado o está a punto de expirar."
5504
-
5505
- #: includes/admin/settings/class-settings-bootstrap.php:1402
5506
- #: includes/admin/settings/class-settings-bootstrap.php:1421
5507
- #: includes/admin/settings/class-settings-bootstrap.php:1453
5508
- #: includes/admin/settings/class-settings-bootstrap.php:1488
5509
- #: includes/admin/settings/class-settings-bootstrap.php:1525
5510
- msgctxt "admin settings"
5511
- msgid "Listing's title"
5512
- msgstr "Título del Listado"
5513
-
5514
- #: includes/admin/settings/class-settings-bootstrap.php:1403
5515
- #: includes/admin/settings/class-settings-bootstrap.php:1489
5516
- msgctxt "admin settings"
5517
- msgid "Listing's fee plan name"
5518
- msgstr "Nombre del plan de tarifas del listado"
5519
-
5520
- #: includes/admin/settings/class-settings-bootstrap.php:1404
5521
- #: includes/admin/settings/class-settings-bootstrap.php:1490
5522
- msgctxt "admin settings"
5523
- msgid "Listing's fee plan description"
5524
- msgstr "Descripción del plan de tarifas del listado"
5525
-
5526
- #: includes/admin/settings/class-settings-bootstrap.php:1405
5527
- #: includes/admin/settings/class-settings-bootstrap.php:1491
5528
- msgctxt "admin settings"
5529
- msgid "Listing's fee plan details"
5530
- msgstr "Detalles del plan de tarifas del listado"
5531
-
5532
- #: includes/admin/settings/class-settings-bootstrap.php:1418
5533
- msgctxt "admin settings"
5534
- msgid ""
5535
- "Your listing \"[listing]\" is now available at [listing-url] and can be "
5536
- "viewed by the public."
5537
- msgstr ""
5538
- "Su listado \"[listing]\" está ahora disponible en [listing-url] y puede ser "
5539
- "visto por el público."
5540
-
5541
- #: includes/admin/settings/class-settings-bootstrap.php:1422
5542
- #: includes/admin/settings/class-settings-bootstrap.php:1452
5543
- msgctxt "admin settings"
5544
- msgid "Listing's URL"
5545
- msgstr "URL del listado"
5546
-
5547
- #: includes/admin/settings/class-settings-bootstrap.php:1423
5548
- #: includes/admin/settings/class-settings-bootstrap.php:1458
5549
- msgctxt "admin settings"
5550
- msgid "Listing's Access Key"
5551
- msgstr "Clave de acceso del listado"
5552
-
5553
- #: includes/admin/settings/class-settings-bootstrap.php:1454
5554
- msgctxt "admin settings"
5555
- msgid "Sender's name"
5556
- msgstr "Nombre del remitente"
5557
-
5558
- #: includes/admin/settings/class-settings-bootstrap.php:1456
5559
- msgctxt "admin settings"
5560
- msgid "Contact message"
5561
- msgstr "Mensaje de contacto"
5562
-
5563
- #: includes/admin/settings/class-settings-bootstrap.php:1457
5564
- msgctxt "admin settings"
5565
- msgid "Date and time the message was sent"
5566
- msgstr "Fecha y hora de envío del mensaje"
5567
-
5568
- #: includes/admin/settings/class-settings-bootstrap.php:1492
5569
- msgctxt "admin settings"
5570
- msgid "Payment items details."
5571
- msgstr "Detalles de elementos del pago."
5572
-
5573
- #: includes/admin/settings/class-settings-bootstrap.php:1493
5574
- msgctxt "admin settings"
5575
- msgid "URL where user can review and print payment receipt."
5576
- msgstr "URL donde el usuario puede revisar e imprimir el recibo de pago."
5577
-
5578
- #: includes/admin/settings/class-settings-bootstrap.php:1494
5579
- msgctxt "admin settings"
5580
- msgid "Gateway used to process listing's payment."
5581
- msgstr "Pasarela de pago utilizada para procesar el pago del listado."
5582
-
5583
- #: includes/admin/settings/class-settings-bootstrap.php:1526
5584
- msgctxt "admin settings"
5585
- msgid "Checkout URL link"
5586
- msgstr "Link a la URL de pago"
5587
-
5588
- #: includes/admin/settings/class-settings-bootstrap.php:1663
5589
- msgctxt "admin settings"
5590
- msgid "Uploaded Image (no resize)"
5591
- msgstr "Imagen original (sin redimensionar)"
5592
-
5593
- #: includes/functions.php:1180
5594
- msgctxt "admin settings"
5595
- msgid "User"
5596
- msgstr "Usuario"
5597
-
5598
- #: includes/functions.php:1181
5599
- msgctxt "admin settings"
5600
- msgid "User registration date"
5601
- msgstr "Fecha de registro del usuario"
5602
-
5603
- #: includes/admin/settings/class-settings-admin.php:502
5604
- msgctxt "expiration notices"
5605
- msgid "Add notice"
5606
- msgstr "Agregar notificación"
5607
-
5608
- #: includes/admin/settings/class-settings-admin.php:521
5609
- msgctxt "expiration notices"
5610
- msgid "No notices configured."
5611
- msgstr "No hay notificaciones configuradas."
5612
-
5613
- #: includes/admin/settings/class-settings-admin.php:563
5614
- msgctxt "expiration notices"
5615
- msgid "recurring and non-recurring"
5616
- msgstr "recurrente y no recurrente"
5617
-
5618
- #: includes/admin/settings/class-settings-admin.php:565
5619
- msgctxt "expiration notices"
5620
- msgid "recurring only"
5621
- msgstr "solo recurrente"
5622
-
5623
- #: includes/admin/settings/class-settings-admin.php:567
5624
- msgctxt "expiration notices"
5625
- msgid "non-recurring only"
5626
- msgstr "solo no recurrente"
5627
-
5628
- #: includes/admin/settings/class-settings-admin.php:571
5629
- msgctxt "expiration notices"
5630
- msgid "Sent when a listing (%s) is renewed."
5631
- msgstr "Enviada cuando un listado (%s) es renovado."
5632
-
5633
- #: includes/admin/settings/class-settings-admin.php:576
5634
- msgctxt "expiration notices"
5635
- msgid "Sent when a listing (%s) expires."
5636
- msgstr "Enviado cuando un listado (%s) expira."
5637
-
5638
- #: includes/admin/settings/class-settings-admin.php:584
5639
- msgctxt "expiration notices"
5640
- msgid "%d day"
5641
- msgid_plural "%d days"
5642
- msgstr[0] "%d día"
5643
- msgstr[1] "%d días"
5644
-
5645
- #: includes/admin/settings/class-settings-admin.php:587
5646
- msgctxt "expiration notices"
5647
- msgid "%d week"
5648
- msgid_plural "%d weeks"
5649
- msgstr[0] "%d semana"
5650
- msgstr[1] "%d semanas"
5651
-
5652
- #: includes/admin/settings/class-settings-admin.php:590
5653
- msgctxt "expiration notices"
5654
- msgid "%d month"
5655
- msgid_plural "%d months"
5656
- msgstr[0] "mes"
5657
- msgstr[1] "meses"
5658
-
5659
- #. translators: 1: relative time (e.g. 3 days), 2: recurring modifier (e.g.
5660
- #. non-recuring only)
5661
- #: includes/admin/settings/class-settings-admin.php:596
5662
- msgctxt "expiration notices"
5663
- msgid "Sent %1$s before a listing (%2$s) expires."
5664
- msgstr "Enviar %1$s antes de que un listado (%2$s) expire."
5665
-
5666
- #. translators: 1: relative time (e.g. 3 days), 2: recurring modifier (e.g.
5667
- #. non-recuring only)
5668
- #: includes/admin/settings/class-settings-admin.php:599
5669
- msgctxt "expiration notices"
5670
- msgid "Sent %1$s after a listing (%2$s) expires."
5671
- msgstr "Enviar %1$s después de que un listado (%2$s) expire."
5672
-
5673
- #: includes/admin/settings/class-settings-admin.php:616
5674
- msgctxt "expiration notices"
5675
- msgid "At the time of expiration"
5676
- msgstr "Cuando el listado expire"
5677
-
5678
- #: includes/admin/settings/class-settings-admin.php:617
5679
- msgctxt "expiration notices"
5680
- msgid "Right after a successful renewal"
5681
- msgstr "Justo después de renovar un listado"
5682
-
5683
- #: includes/admin/settings/class-settings-admin.php:628
5684
- msgctxt "expiration notices"
5685
- msgid "%d day before expiration"
5686
- msgid_plural "%d days before expiration"
5687
- msgstr[0] "%d día antes de expirar"
5688
- msgstr[1] "%d días antes de expirar"
5689
-
5690
- #: includes/admin/settings/class-settings-admin.php:628
5691
- msgctxt "expiration notices"
5692
- msgid "%d day after expiration"
5693
- msgid_plural "%d days after expiration"
5694
- msgstr[0] "%d día después de expirar"
5695
- msgstr[1] "%d días después de expirar"
5696
-
5697
- #: includes/admin/settings/class-settings-admin.php:631
5698
- msgctxt "expiration notices"
5699
- msgid "%d week before expiration"
5700
- msgid_plural "%d weeks before expiration"
5701
- msgstr[0] "%d semana antes de expirar"
5702
- msgstr[1] "%d semanas antes de expirar"
5703
-
5704
- #: includes/admin/settings/class-settings-admin.php:631
5705
- msgctxt "expiration notices"
5706
- msgid "%d week after expiration"
5707
- msgid_plural "%d weeks after expiration"
5708
- msgstr[0] "%d semana después de expirar"
5709
- msgstr[1] "%d semanas después de expirar"
5710
-
5711
- #: includes/admin/settings/class-settings-admin.php:634
5712
- msgctxt "expiration notices"
5713
- msgid "%d month before expiration"
5714
- msgid_plural "%d months before expiration"
5715
- msgstr[0] "%d mes antes de expirar"
5716
- msgstr[1] "%d meses antes de expirar"
5717
-
5718
- #: includes/admin/settings/class-settings-admin.php:634
5719
- msgctxt "expiration notices"
5720
- msgid "%d month after expiration"
5721
- msgid_plural "%d months after expiration"
5722
- msgstr[0] "%d mes después de expirar"
5723
- msgstr[1] "%d meses después de expirar"
5724
-
5725
- #: includes/admin/settings/class-settings-admin.php:661
5726
- msgctxt "expiration notices"
5727
- msgid "Applies to"
5728
- msgstr "Aplica a"
5729
-
5730
- #: includes/admin/settings/class-settings-admin.php:664
5731
- msgctxt "expiration notices"
5732
- msgid "Non-recurring listings"
5733
- msgstr "Listados no recurrentes"
5734
-
5735
- #: includes/admin/settings/class-settings-admin.php:665
5736
- msgctxt "expiration notices"
5737
- msgid "Recurring listings"
5738
- msgstr "Listados recurrentes"
5739
-
5740
- #: includes/admin/settings/class-settings-admin.php:666
5741
- msgctxt "expiration notices"
5742
- msgid "Recurring and non-recurring listings"
5743
- msgstr "Listados recurrentes y no recurrentes"
5744
-
5745
- #: includes/admin/settings/class-settings-admin.php:671
5746
- msgctxt "expiration notices"
5747
- msgid "When to send?"
5748
- msgstr "¿Cuando desea enviar esta notificación?"
5749
-
5750
- #: includes/admin/settings/class-settings-admin.php:538
5751
- msgctxt "settings"
5752
- msgid "Site title (with link)"
5753
- msgstr "Título del sitio (con enlace)"
5754
-
5755
- #: includes/admin/settings/class-settings-admin.php:539
5756
- msgctxt "settings"
5757
- msgid "Author's name"
5758
- msgstr "Autor del listado"
5759
-
5760
- #: includes/admin/settings/class-settings-admin.php:540
5761
- msgctxt "settings"
5762
- msgid "Listing's name (with link)"
5763
- msgstr "Título del listado (con enlace)"
5764
-
5765
- #: includes/admin/settings/class-settings-admin.php:541
5766
- msgctxt "settings"
5767
- msgid "Listing's expiration date"
5768
- msgstr "Fecha de expiración del listado"
5769
-
5770
- #: includes/admin/settings/class-settings-admin.php:542
5771
- msgctxt "settings"
5772
- msgid "Listing's renewal link, formatted with an anchor tag"
5773
- msgstr ""
5774
- "Enlace de renovación del listado, formateado con una etiqueta de enlace"
5775
-
5776
- #: includes/admin/settings/class-settings-admin.php:543
5777
- msgctxt "settings"
5778
- msgid "Listing's renewal URL, unformatted by any tags"
5779
- msgstr "URL de renovación del listado, sin formato por cualquier etiqueta"
5780
-
5781
- #: includes/admin/settings/class-settings-admin.php:544
5782
- msgctxt "settings"
5783
- msgid "Listing's categories"
5784
- msgstr "Categorías del Listado"
5785
-
5786
- #: includes/admin/settings/class-settings-admin.php:545
5787
- msgctxt "settings"
5788
- msgid "Listing's last payment date"
5789
- msgstr "Fecha de pago del listado"
5790
-
5791
- #: includes/admin/settings/class-settings-admin.php:546
5792
- msgctxt "settings"
5793
- msgid "Listing's access key"
5794
- msgstr "Clave de acceso para su listado"
5795
-
5796
- #: includes/admin/settings/class-settings-admin.php:703
5797
- msgctxt "settings"
5798
- msgid "Settings reset to default."
5799
- msgstr "Restablecer ajustes por defecto."
5800
-
5801
- #: includes/admin/settings/class-settings-bootstrap.php:8
5802
- msgctxt "settings"
5803
- msgid "General"
5804
- msgstr "General"
5805
-
5806
- #: includes/admin/settings/class-settings-bootstrap.php:10
5807
- #: includes/admin/settings/class-settings-bootstrap.php:1008
5808
- msgctxt "settings"
5809
- msgid "Listings"
5810
- msgstr "Listados"
5811
-
5812
- #: includes/admin/settings/class-settings-bootstrap.php:11
5813
- #: includes/admin/settings/class-settings-bootstrap.php:14
5814
- #: includes/admin/settings/class-settings-bootstrap.php:17
5815
- #: includes/admin/settings/class-settings-bootstrap.php:36
5816
- #: includes/admin/settings/class-settings-bootstrap.php:1299
5817
- #: includes/admin/settings/class-settings.php:335
5818
- msgctxt "settings"
5819
- msgid "General Settings"
5820
- msgstr "Configuración General"
5821
-
5822
- #: includes/admin/settings/class-settings-bootstrap.php:16
5823
- msgctxt "settings"
5824
- msgid "Payment"
5825
- msgstr "Pago"
5826
-
5827
- #: includes/admin/settings/class-settings-bootstrap.php:19
5828
- msgctxt "settings"
5829
- msgid "Appearance"
5830
- msgstr "Apariencia"
5831
-
5832
- #: includes/admin/settings/class-settings-bootstrap.php:59
5833
- msgctxt "settings"
5834
- msgid "Permalink Settings"
5835
- msgstr "Configuración de enlaces permanentes"
5836
-
5837
- #: includes/admin/settings/class-settings-bootstrap.php:64
5838
- msgctxt "settings"
5839
- msgid "Directory Listings Slug"
5840
- msgstr "Slug de listados"
5841
-
5842
- #: includes/admin/settings/class-settings-bootstrap.php:74
5843
- msgctxt "settings"
5844
- msgid "Categories Slug"
5845
- msgstr "Slug de categorías"
5846
-
5847
- #: includes/admin/settings/class-settings-bootstrap.php:75
5848
- msgctxt "settings"
5849
- msgid ""
5850
- "The slug can't be in use by another term. Avoid \"category\", for instance."
5851
- msgstr ""
5852
- "Este slug no puede estar siendo usado por otro término. Evite \"category\" "
5853
- "por ejemplo."
5854
-
5855
- #: includes/admin/settings/class-settings-bootstrap.php:86
5856
- msgctxt "settings"
5857
- msgid "Tags Slug"
5858
- msgstr "Slug de etiquetas"
5859
-
5860
- #: includes/admin/settings/class-settings-bootstrap.php:87
5861
- msgctxt "settings"
5862
- msgid "The slug can't be in use by another term. Avoid \"tag\", for instance."
5863
- msgstr ""
5864
- "Este slug no puede estar siendo usado por otro término. Evite \"tag\" por "
5865
- "ejemplo."
5866
-
5867
- #: includes/admin/settings/class-settings-bootstrap.php:98
5868
- msgctxt "settings"
5869
- msgid "Remove listing ID from directory URLs?"
5870
- msgstr "¿Remover el ID del listado de las URLs del directorio?"
5871
-
5872
- #: includes/admin/settings/class-settings-bootstrap.php:99
5873
- msgctxt "settings"
5874
- msgid "Check this setting to remove the ID for better SEO."
5875
- msgstr ""
5876
- "Marque esta opción para remover el ID del listado de la URLs utilizadas en "
5877
- "el directorio."
5878
-
5879
- #: includes/admin/settings/class-settings-bootstrap.php:100
5880
- msgctxt "settings"
5881
- msgid ""
5882
- "Prior to 3.5.1, we included the ID in the listing URL, like \"/business-"
5883
- "directory/1809/listing-title\"."
5884
- msgstr ""
5885
- "Antes de 3.5.1, incluíamos el ID en la URL generada, como \"/directorio/1809/"
5886
- "titulo-listado\"."
5887
-
5888
- #: includes/admin/settings/class-settings-bootstrap.php:111
5889
- msgctxt "settings"
5890
- msgid "Need API keys for reCAPTCHA? Get them <a>here</a>."
5891
- msgstr "¿Necesita las claves de API para reCAPTCHA? Obténgalas <a>aquí</a>."
5892
-
5893
- #: includes/admin/settings/class-settings-bootstrap.php:118
5894
- msgctxt "settings"
5895
- msgid "Use reCAPTCHA for contact forms"
5896
- msgstr "Utilizar reCAPTCHA para formularios de contacto"
5897
-
5898
- #: includes/admin/settings/class-settings-bootstrap.php:126
5899
- msgctxt "settings"
5900
- msgid "Turn off reCAPTCHA for logged in users?"
5901
- msgstr "¿Deshabilitar reCAPTCHA para usuarios autenticados?"
5902
-
5903
- #: includes/admin/settings/class-settings-bootstrap.php:134
5904
- msgctxt "settings"
5905
- msgid "Use reCAPTCHA for listing submits"
5906
- msgstr "Utilizar reCAPTCHA para envíos de listados"
5907
-
5908
- #: includes/admin/settings/class-settings-bootstrap.php:142
5909
- msgctxt "settings"
5910
- msgid "Use reCAPTCHA for edit listings"
5911
- msgstr "Utilizar reCAPTCHA para editar listados"
5912
-
5913
- #: includes/admin/settings/class-settings-bootstrap.php:150
5914
- msgctxt "settings"
5915
- msgid "Use reCAPTCHA for report listings"
5916
- msgstr "Utilizar reCAPTCHA para reportar listados"
5917
-
5918
- #: includes/admin/settings/class-settings-bootstrap.php:158
5919
- msgctxt "settings"
5920
- msgid "Use reCAPTCHA for listing comments?"
5921
- msgstr "Utilizar reCAPTCHA para comentarios?"
5922
-
5923
- #: includes/admin/settings/class-settings-bootstrap.php:166
5924
- msgctxt "settings"
5925
- msgid "reCAPTCHA Public Key"
5926
- msgstr "Clave pública de reCAPTCHA"
5927
-
5928
- #: includes/admin/settings/class-settings-bootstrap.php:175
5929
- msgctxt "settings"
5930
- msgid "reCAPTCHA Private Key"
5931
- msgstr "Clave privada de reCAPTCHA"
5932
-
5933
- #: includes/admin/settings/class-settings-bootstrap.php:184
5934
- msgctxt "settings"
5935
- msgid "reCAPTCHA version"
5936
- msgstr "Versión de reCAPTCHA"
5937
-
5938
- #: includes/admin/settings/class-settings-bootstrap.php:197
5939
- msgctxt "settings"
5940
- msgid "reCAPTCHA V3 threshold score"
5941
- msgstr "Puntaje límite para reCAPTCHA V3"
5942
-
5943
- #: includes/admin/settings/class-settings-bootstrap.php:202
5944
- msgctxt "settings"
5945
- msgid ""
5946
- "reCAPTCHA v3 returns a score (1.0 is very likely a good interaction, 0.0 is "
5947
- "very likely a bot). Based on the score, you can take variable action in the "
5948
- "context of your site. You can set here the score threshold, scores under "
5949
- "this value will result in reCAPTCHA validation error."
5950
- msgstr ""
5951
- "reCAPTCHA v3 entrega un puntaje (1.0 es muy probable que sea una buena "
5952
- "interacción, 0.0 es muy probable que sea un bot). Con base en el puntaje, se "
5953
- "pueden tomar diferentes acciones en el contexto de su sitio. Puede "
5954
- "establecer aquí el puntaje límite, puntajes menores a este valor resultarán "
5955
- "en un error al procesar reCAPTCHA."
5956
-
5957
- #: includes/admin/settings/class-settings-bootstrap.php:207
5958
- msgctxt "settings"
5959
- msgid "Registration"
5960
- msgstr "Registro"
5961
-
5962
- #: includes/admin/settings/class-settings-bootstrap.php:207
5963
- msgctxt "settings"
5964
- msgid ""
5965
- "We expect that a membership plugin supports the 'redirect_to' parameter for "
5966
- "the URLs below to work. If the plugin does not support them, these settings "
5967
- "will not function as expected. Please contact the membership plugin and ask "
5968
- "them to support the WP standard 'redirect_to' query parameter."
5969
- msgstr ""
5970
- "Esperamos que el plugin de membresía soporte el parámetro 'redirect_to' para "
5971
- "que las URLs de abajo funcionen. Si el plugin no lo soporta, estas "
5972
- "configuraciones no funcionarán como es esperado. Por favor contacte el "
5973
- "personal de apoyo para el plugin de membresía y solicite que agreguen "
5974
- "soporte para `redirect_to`, el parámetro de URL estándar que WordPress usa "
5975
- "para redirigir."
5976
-
5977
- #: includes/admin/settings/class-settings-bootstrap.php:212
5978
- msgctxt "settings"
5979
- msgid "Require login to post listings?"
5980
- msgstr "¿Es necesario iniciar sesión para publicar listados?"
5981
-
5982
- #: includes/admin/settings/class-settings-bootstrap.php:221
5983
- msgctxt "settings"
5984
- msgid "Allow anonymous users to edit/manage listings with an access key?"
5985
- msgstr ""
5986
- "¿Permitir que usuarios no autenticados editen o administren anuncios con una "
5987
- "clave de acceso?"
5988
-
5989
- #: includes/admin/settings/class-settings-bootstrap.php:229
5990
- msgctxt "settings"
5991
- msgid "Login URL"
5992
- msgstr "URL de login"
5993
-
5994
- #: includes/admin/settings/class-settings-bootstrap.php:230
5995
- msgctxt "settings"
5996
- msgid "Only enter this if using a membership plugin or custom login page."
5997
- msgstr ""
5998
- "URL para la página de login de su plugin de membresía. Ingrese esta "
5999
- "información únicamente si utiliza un plugin de membresía o una página de "
6000
- "login especial."
6001
-
6002
- #: includes/admin/settings/class-settings-bootstrap.php:231
6003
- msgctxt "settings"
6004
- msgid "URL of your membership plugin's login page."
6005
- msgstr "URL de la página de login que utiliza su plugin de membresía."
6006
-
6007
- #: includes/admin/settings/class-settings-bootstrap.php:240
6008
- msgctxt "settings"
6009
- msgid "Registration URL"
6010
- msgstr "URL de Registro"
6011
-
6012
- #: includes/admin/settings/class-settings-bootstrap.php:241
6013
- msgctxt "settings"
6014
- msgid ""
6015
- "Only enter this if using a membership plugin or custom registration page."
6016
- msgstr ""
6017
- "URL para la página de registro de su plugin de membresía. Ingrese esta "
6018
- "información únicamente si utiliza un plugin de membresía o una página de "
6019
- "registro especial."
6020
-
6021
- #: includes/admin/settings/class-settings-bootstrap.php:242
6022
- msgctxt "settings"
6023
- msgid "URL of your membership plugin's registration page."
6024
- msgstr "URL de la página de registro que utiliza su plugin de membresía."
6025
-
6026
- #: includes/admin/settings/class-settings-bootstrap.php:251
6027
- msgctxt "settings"
6028
- msgid "Allow users to create accounts during listing submit?"
6029
- msgstr ""
6030
- "¿Permitir que los usuarios creen una cuenta en el sitio cuando están "
6031
- "publicando un listado?"
6032
-
6033
- #: includes/admin/settings/class-settings-bootstrap.php:278
6034
- msgctxt "settings"
6035
- msgid ""
6036
- "Enter text or a URL starting with http. If you use a URL, the Terms and "
6037
- "Conditions text will be replaced by a link to the appropiate page."
6038
- msgstr ""
6039
- "Ingrese un texto o una URL que empiece con http. Si utiliza una URL, el "
6040
- "texto de Términos y Condiciones será reemplazado por un enlace a la página "
6041
- "apropiada."
6042
-
6043
- #: includes/admin/settings/class-settings-bootstrap.php:280
6044
- msgctxt "settings"
6045
- msgid "Terms and Conditions text goes here."
6046
- msgstr "Ingrese el texto de los términos y condiciones aquí."
6047
-
6048
- #: includes/admin/settings/class-settings-bootstrap.php:323
6049
- msgctxt "settings"
6050
- msgid "Enable high performance searches?"
6051
- msgstr "¿Habilitar búsquedas de alto desempeño?"
6052
-
6053
- #: includes/admin/settings/class-settings-bootstrap.php:332
6054
- msgctxt "settings"
6055
- msgid "Advanced"
6056
- msgstr "Avanzado"
6057
-
6058
- #: includes/admin/settings/class-settings-bootstrap.php:338
6059
- msgctxt "settings"
6060
- msgid "Disable advanced CPT integration?"
6061
- msgstr "¿Deshabilitar integración avanzada con Custom Post Types?"
6062
-
6063
- #: includes/admin/settings/class-settings-bootstrap.php:346
6064
- msgctxt "settings"
6065
- msgid "Enable AJAX compatibility mode?"
6066
- msgstr "¿Habilitar modo de compatibilidad AJAX?"
6067
-
6068
- #: includes/admin/settings/class-settings-bootstrap.php:348
6069
- msgctxt "settings"
6070
- msgid ""
6071
- "If this compatibility mode doesn't solve your issue, you may be experiencing "
6072
- "a more serious conflict. <a>Here is an article</a> about how to test for "
6073
- "theme and plugin conflicts with Business Directory."
6074
- msgstr ""
6075
- "Si este modo de compatibilidad no resuelve su problema, su sitio puede estar "
6076
- "sufriendo de un conflicto más serio. <a>Aquí hay un artículo</a> sobre cómo "
6077
- "revisar este tipo de conflictos con Business Directory."
6078
-
6079
- #: includes/admin/settings/class-settings-bootstrap.php:357
6080
- msgctxt "settings"
6081
- msgid "Disable Frontend Listing Submission?"
6082
- msgstr "¿Deshabilitar envío de listados desde el frontend?"
6083
-
6084
- #: includes/admin/settings/class-settings-bootstrap.php:358
6085
- msgctxt "settings"
6086
- msgid ""
6087
- "Prevents the Submit Listing button from showing on the main UI, but allows a "
6088
- "shortcode for submit listing to function on other pages."
6089
- msgstr ""
6090
- "Impide que el botón “Enviar listado” se muestre en la interfaz de usuario, "
6091
- "pero permite que el shortcode para Enviar Listado funcione en otras páginas."
6092
-
6093
- #: includes/admin/settings/class-settings-bootstrap.php:366
6094
- msgctxt "settings"
6095
- msgid "Enqueue Business Directory's FontAwesome styles?"
6096
- msgstr "Agregar los estilos de FontAwesome incluidos en Business Directory?"
6097
-
6098
- #: includes/admin/settings/class-settings-bootstrap.php:367
6099
- msgctxt "settings"
6100
- msgid ""
6101
- "This helps to prevent conflicts with other plugins that already do this. "
6102
- "Disable this only if you're having an issue with FontAwesome icons and have "
6103
- "performed a conflict test to validate this is a multiple styles enqueueing "
6104
- "issue."
6105
- msgstr ""
6106
- "Esta opción ayuda a evitar conflictos con otros complementos que ya lo "
6107
- "hacen. Deshabilítelo solo si tiene un problema con los íconos de FontAwesome "
6108
- "y ha realizado una prueba de conflicto para validar que se trata de un "
6109
- "problema de puesta en cola de múltiples estilos."
6110
-
6111
- #: includes/admin/settings/class-settings-bootstrap.php:389
6112
- msgctxt "settings"
6113
- msgid "Quick search fields"
6114
- msgstr "Campos de búsqueda rápida"
6115
-
6116
- #: includes/admin/settings/class-settings-bootstrap.php:416
6117
- msgctxt "settings"
6118
- msgid ""
6119
- "Choosing too many fields for inclusion into Quick Search can result in very "
6120
- "slow search performance."
6121
- msgstr ""
6122
- "Utilice Ctrl-Click para incluír múltiples campos en la búsqueda. Elegir "
6123
- "muchos campos puede resultar en desempeño de búsquedas disminuído."
6124
-
6125
- #: includes/admin/settings/class-settings-bootstrap.php:444
6126
- msgctxt "settings"
6127
- msgid "Contact Form"
6128
- msgstr "Formulario de contacto"
6129
-
6130
- #: includes/admin/settings/class-settings-bootstrap.php:452
6131
- msgctxt "settings"
6132
- msgid "Listings per page"
6133
- msgstr "Listados por página"
6134
-
6135
- #: includes/admin/settings/class-settings-bootstrap.php:453
6136
- msgctxt "settings"
6137
- msgid ""
6138
- "Number of listings to show per page. Use a value of \"0\" to show all "
6139
- "listings."
6140
- msgstr ""
6141
- "Número de listados a mostrar por página. Utilice un valor de \"0\" para "
6142
- "mostrar todos los listados."
6143
-
6144
- #: includes/admin/settings/class-settings-bootstrap.php:464
6145
- msgctxt "settings"
6146
- msgid "Listing duration for no-fee sites (in days)"
6147
- msgstr "Duración de listado para sitios gratuitos (en días)"
6148
-
6149
- #: includes/admin/settings/class-settings-bootstrap.php:465
6150
- msgctxt "settings"
6151
- msgid ""
6152
- "Use a value of \"0\" to keep a listing alive indefinitely or enter a number "
6153
- "less than 10 years (3650 days)."
6154
- msgstr ""
6155
- "Utilice un valor de \"0\" para mantener los listados publicados "
6156
- "indefinidamente o ingrese un número menor a 10 años (3650 días)."
6157
-
6158
- #: includes/admin/settings/class-settings-bootstrap.php:477
6159
- msgctxt "settings"
6160
- msgid "Turn on listing renewal option?"
6161
- msgstr "¿Habilitar la renovación de listados?"
6162
-
6163
- #: includes/admin/settings/class-settings-bootstrap.php:486
6164
- msgctxt "settings"
6165
- msgid "Open detailed view of listing in new tab?"
6166
- msgstr ""
6167
- "¿Abrir vista detallada de un listado en una pestaña o ventana del navegador "
6168
- "nueva?"
6169
-
6170
- #: includes/admin/settings/class-settings-bootstrap.php:496
6171
- msgctxt "settings"
6172
- msgid "Include button to report listings?"
6173
- msgstr "¿Incluir un botón para reportar los listados?"
6174
-
6175
- #: includes/admin/settings/class-settings-bootstrap.php:505
6176
- msgctxt "settings"
6177
- msgid "Enable report listing for registered users only"
6178
- msgstr "Permitir que solo usuarios registrados puedan reportar listados"
6179
-
6180
- #: includes/admin/settings/class-settings-bootstrap.php:515
6181
- msgctxt "settings"
6182
- msgid "Report listing option list"
6183
- msgstr "Listad de razones para reportar un listado"
6184
-
6185
- #: includes/admin/settings/class-settings-bootstrap.php:516
6186
- msgctxt "settings"
6187
- msgid ""
6188
- "Form option list to report a listing as inappropriate. One option per line."
6189
- msgstr ""
6190
- "Razones para reportar un listado como inapropiado. Una opción por línea."
6191
-
6192
- #: includes/admin/settings/class-settings-bootstrap.php:527
6193
- msgctxt "settings"
6194
- msgid "Include listing contact form on listing pages?"
6195
- msgstr "¿Incluir el formulario de contacto en las páginas de los listados?"
6196
-
6197
- #: includes/admin/settings/class-settings-bootstrap.php:528
6198
- msgctxt "settings"
6199
- msgid ""
6200
- "Allows visitors to contact listing authors privately. Authors will receive "
6201
- "the messages via email."
6202
- msgstr ""
6203
- "Permite a los visitantes contactar a los dueños de los listados de manera "
6204
- "privada. Los dueños recibirán mensajes vía correo electrónico."
6205
-
6206
- #: includes/admin/settings/class-settings-bootstrap.php:537
6207
- msgctxt "settings"
6208
- msgid "Require login for using the contact form?"
6209
- msgstr "¿Es necesario iniciar sesión para utilizar el formulario de contacto?"
6210
-
6211
- #: includes/admin/settings/class-settings-bootstrap.php:548
6212
- msgctxt "settings"
6213
- msgid "Maximum number of daily contact form submits from registered users"
6214
- msgstr "Número máximo de mensajes de contacto por día de usuarios registrado"
6215
-
6216
- #: includes/admin/settings/class-settings-bootstrap.php:549
6217
- msgctxt "settings"
6218
- msgid ""
6219
- "Use this to prevent spamming of listing owners from logged in users. 0 means "
6220
- "unlimited submits per day."
6221
- msgstr ""
6222
- "Utilice esta opción para prevenir el SPAM a los dueños de los listados de "
6223
- "usuarios registrado. 0 significa ilimitados contactos por día."
6224
-
6225
- #: includes/admin/settings/class-settings-bootstrap.php:561
6226
- msgctxt "settings"
6227
- msgid "Maximum number of contact form submits for each listing per day"
6228
- msgstr "Número máximo de mensajes de contacto por día para cada listado"
6229
-
6230
- #: includes/admin/settings/class-settings-bootstrap.php:562
6231
- msgctxt "settings"
6232
- msgid ""
6233
- "Use this to set contact submits limit for each listing in the directory. 0 "
6234
- "means unlimited submits per day."
6235
- msgstr ""
6236
- "Utilice esta opción para el numero de contactos por día para cada listado. 0 "
6237
- "significa ilimitados contactos por día."
6238
-
6239
- #: includes/admin/settings/class-settings-bootstrap.php:574
6240
- msgctxt "settings"
6241
- msgid "Include comment form on listing pages?"
6242
- msgstr "¿Incluir el formulario de comentarios en las páginas de los listados?"
6243
-
6244
- #: includes/admin/settings/class-settings-bootstrap.php:589
6245
- msgctxt "settings"
6246
- msgid "Show listings under categories on main page?"
6247
- msgstr "¿Mostrar listados bajo las categorías en la página principal?"
6248
-
6249
- #: includes/admin/settings/class-settings-bootstrap.php:599
6250
- msgctxt "settings"
6251
- msgid ""
6252
- "Prevents featured listings from floating to the top of the selected page."
6253
- msgstr ""
6254
- "Evita que aparezcan listados desacatados en la parte superior de la página "
6255
- "seleccionada."
6256
-
6257
- #: includes/admin/settings/class-settings-bootstrap.php:629
6258
- #, fuzzy
6259
- msgctxt "settings"
6260
- msgid ""
6261
- "The user ID or login of an existing user account. If login is not required "
6262
- "to submit listings, this user will own them. A site admin or another user "
6263
- "that will not a be posting a listing is best."
6264
- msgstr ""
6265
- "Los nuevos listados deben tener un autor, si no es necesario iniciar sesión "
6266
- "para enviar listados, este usuario será el propietario, generalmente el "
6267
- "administrador del sitio o algún otro usuario que nunca gestionará un listado."
6268
-
6269
- #: includes/admin/settings/class-settings-bootstrap.php:651
6270
- msgctxt "settings"
6271
- msgid "Edit post status"
6272
- msgstr "Estado tras la edición de un listado"
6273
-
6274
- #: includes/admin/settings/class-settings-bootstrap.php:666
6275
- msgctxt "settings"
6276
- msgid "Status of deleted listings"
6277
- msgstr "Estado de los listados eliminados"
6278
-
6279
- #: includes/admin/settings/class-settings-bootstrap.php:679
6280
- msgctxt "settings"
6281
- msgid "Submit Listing instructions message"
6282
- msgstr "Mensaje de instrucciones para enviar un listado"
6283
-
6284
- #: includes/admin/settings/class-settings-bootstrap.php:690
6285
- msgctxt "settings"
6286
- msgid "Order categories list by"
6287
- msgstr "Ordenar la lista de categorías por"
6288
-
6289
- #: includes/admin/settings/class-settings-bootstrap.php:704
6290
- msgctxt "settings"
6291
- msgid "Sort order for categories"
6292
- msgstr "Orden de las categorías"
6293
-
6294
- #: includes/admin/settings/class-settings-bootstrap.php:717
6295
- msgctxt "settings"
6296
- msgid "Show category post count?"
6297
- msgstr "¿Mostrar conteo de listados para cada categoría?"
6298
-
6299
- #: includes/admin/settings/class-settings-bootstrap.php:726
6300
- msgctxt "settings"
6301
- msgid "Hide empty categories?"
6302
- msgstr "¿Ocultar categorías vacías?"
6303
-
6304
- #: includes/admin/settings/class-settings-bootstrap.php:735
6305
- msgctxt "settings"
6306
- msgid "Show only parent categories in category list?"
6307
- msgstr ""
6308
- "¿Mostrar únicamente las categorías de primer nivel en la lista de categorías?"
6309
-
6310
- #: includes/admin/settings/class-settings-bootstrap.php:747
6311
- msgctxt "settings"
6312
- msgid "Order directory listings by"
6313
- msgstr "Ordenar los listados del directorio por"
6314
-
6315
- #: includes/admin/settings/class-settings-bootstrap.php:771
6316
- msgctxt "settings"
6317
- msgid "Sort directory listings by"
6318
- msgstr "Ordenar los listados de forma"
6319
-
6320
- #: includes/admin/settings/class-settings-bootstrap.php:772
6321
- msgctxt "settings"
6322
- msgid "Ascending for ascending order A-Z, Descending for descending order Z-A"
6323
- msgstr ""
6324
- "Ascendente para orden alfabético A-Z; Descendente para orden alfabético Z-A"
6325
-
6326
- #: includes/admin/settings/class-settings-bootstrap.php:785
6327
- msgctxt "settings"
6328
- msgid "Enable sort bar?"
6329
- msgstr "¿Habilitar barra de ordenamiento?"
6330
-
6331
- #: includes/admin/settings/class-settings-bootstrap.php:794
6332
- msgctxt "settings"
6333
- msgid "Sortbar Fields"
6334
- msgstr "Campos de la barra de ordenamiento"
6335
-
6336
- #: includes/admin/settings/class-settings-bootstrap.php:812
6337
- msgctxt "settings"
6338
- msgid "Show the \"Submit listing\" button."
6339
- msgstr "Mostrar el botón \"Enviar Listado\"."
6340
-
6341
- #: includes/admin/settings/class-settings-bootstrap.php:813
6342
- msgctxt "settings"
6343
- msgid ""
6344
- "Hides the button used by the main UI to allow listing submission, but does "
6345
- "not shut off the use of the link for submitting listings (allows you to "
6346
- "customize the submit listing button on your own)"
6347
- msgstr ""
6348
- "Oculta el botón utilizado por la interfaz de usuario principal para permitir "
6349
- "agregar listados, pero no desactiva el uso del enlace para agregar listados "
6350
- "(le permite personalizar el botón de envío de listados por su cuenta)"
6351
-
6352
- #: includes/admin/settings/class-settings-bootstrap.php:823
6353
- msgctxt "settings"
6354
- msgid "Show \"Search listings\"."
6355
- msgstr "Mostrar \"Buscar Listados\"."
6356
-
6357
- #: includes/admin/settings/class-settings-bootstrap.php:832
6358
- msgctxt "settings"
6359
- msgid "Show the \"View Listings\" button."
6360
- msgstr "Mostrar el botón \"Ver Listados\"."
6361
-
6362
- #: includes/admin/settings/class-settings-bootstrap.php:841
6363
- msgctxt "settings"
6364
- msgid "Show the \"Manage Listings\" button."
6365
- msgstr "Mostrar el botón “Administrar Listados\"."
6366
-
6367
- #: includes/admin/settings/class-settings-bootstrap.php:850
6368
- msgctxt "settings"
6369
- msgid "Show the \"Directory\" button."
6370
- msgstr "Mostrar el botón \"Directorio\"."
6371
-
6372
- #: includes/admin/settings/class-settings-bootstrap.php:885
6373
- msgctxt "settings"
6374
- msgid "Image Settings"
6375
- msgstr "Configuración de imágenes"
6376
-
6377
- #: includes/admin/settings/class-settings-bootstrap.php:890
6378
- msgctxt "settings"
6379
- msgid "Allow images?"
6380
- msgstr "¿Permitir imágenes?"
6381
-
6382
- #: includes/admin/settings/class-settings-bootstrap.php:901
6383
- msgctxt "settings"
6384
- msgid "Min Image File Size (KB)"
6385
- msgstr "Tamaño mínimo de imagen (KB)"
6386
-
6387
- #: includes/admin/settings/class-settings-bootstrap.php:912
6388
- msgctxt "settings"
6389
- msgid "Max Image File Size (KB)"
6390
- msgstr "Tamaño máximo de imagen (KB)"
6391
-
6392
- #: includes/admin/settings/class-settings-bootstrap.php:923
6393
- msgctxt "settings"
6394
- msgid "Min image width (px)"
6395
- msgstr "Ancho mínimo de imagen (en px)"
6396
-
6397
- #: includes/admin/settings/class-settings-bootstrap.php:932
6398
- msgctxt "settings"
6399
- msgid "Min image height (px)"
6400
- msgstr "Alto mínimo de imagen (en px)"
6401
-
6402
- #: includes/admin/settings/class-settings-bootstrap.php:945
6403
- msgctxt "settings"
6404
- msgid "Max image width (px)"
6405
- msgstr "Ancho máximo de imagen (en px)"
6406
-
6407
- #: includes/admin/settings/class-settings-bootstrap.php:956
6408
- msgctxt "settings"
6409
- msgid "Max image height (px)"
6410
- msgstr "Alto máximo de imagen (en px)"
6411
-
6412
- #: includes/admin/settings/class-settings-bootstrap.php:967
6413
- msgctxt "settings"
6414
- msgid "Turn on thickbox/lightbox?"
6415
- msgstr "Activar Thickbox/Lightbox?"
6416
-
6417
- #: includes/admin/settings/class-settings-bootstrap.php:968
6418
- msgctxt "settings"
6419
- msgid ""
6420
- "Uncheck if it conflicts with other elements or plugins installed on your site"
6421
- msgstr ""
6422
- "Desmarque si entra en conflicto con otros elementos o plugins instalados en "
6423
- "su sitio"
6424
-
6425
- #: includes/admin/settings/class-settings-bootstrap.php:974
6426
- msgctxt "settings"
6427
- msgid "Thumbnails"
6428
- msgstr "Imágenes miniatura"
6429
-
6430
- #: includes/admin/settings/class-settings-bootstrap.php:981
6431
- msgctxt "settings"
6432
- msgid "Thumbnail width (px)"
6433
- msgstr "Ancho de la imagen miniatura (en px)"
6434
-
6435
- #: includes/admin/settings/class-settings-bootstrap.php:992
6436
- msgctxt "settings"
6437
- msgid "Thumbnail height (px)"
6438
- msgstr "Alto de la imagen miniatura (en px)"
6439
-
6440
- #: includes/admin/settings/class-settings-bootstrap.php:1001
6441
- msgctxt "settings"
6442
- msgid "Crop thumbnails to exact dimensions?"
6443
- msgstr "¿Cortar imágenes miniatura a las dimensiones exactas?"
6444
-
6445
- #: includes/admin/settings/class-settings-bootstrap.php:1002
6446
- msgctxt "settings"
6447
- msgid ""
6448
- "When enabled images will match exactly the dimensions above but part of the "
6449
- "image may be cropped out. If disabled, image thumbnails will be resized to "
6450
- "match the specified width and their height will be adjusted proportionally. "
6451
- "Depending on the uploaded images, thumbnails may have different heights."
6452
- msgstr ""
6453
- "Con esta opción habilitada las imágenes coincidirán exactamente con las "
6454
- "dimensiones arriba configuradas pero parte de la imagen podría perderse. Si "
6455
- "se deshabilita, las imágenes serán redimensionadas de acuerdo al ancho y el "
6456
- "alto será ajustado proporcionalmente. Dependiendo de las imágenes que se "
6457
- "hayan utilizado, estas podrían tener diferentes alturas."
6458
-
6459
- #: includes/admin/settings/class-settings-bootstrap.php:1013
6460
- msgctxt "settings"
6461
- msgid "Enforce image upload on submit/edit?"
6462
- msgstr ""
6463
- "¿Exigir que se suba al menos una imagen cuando se publica o se edita una "
6464
- "imagen?"
6465
-
6466
- #: includes/admin/settings/class-settings-bootstrap.php:1022
6467
- msgctxt "settings"
6468
- msgid "Number of free images"
6469
- msgstr "Número de imágenes gratuitas"
6470
-
6471
- #: includes/admin/settings/class-settings-bootstrap.php:1034
6472
- msgctxt "settings"
6473
- msgid "Use \"Coming Soon\" photo for listings without any (primary) images?"
6474
- msgstr ""
6475
- "¿Usar la foto de \"próximamente\" para los listados sin ninguna imagen "
6476
- "(primaria)?"
6477
-
6478
- #: includes/admin/settings/class-settings-bootstrap.php:1047
6479
- msgctxt "settings"
6480
- msgid "Default thumbnail image size"
6481
- msgstr "Tamaño predeterminado de imagen en miniatura"
6482
-
6483
- #: includes/admin/settings/class-settings-bootstrap.php:1050
6484
- msgctxt "settings"
6485
- msgid ""
6486
- "This indicates the size of the thumbnail to be used both in excerpt and "
6487
- "detail views. For CROPPED image size values, we use the EXACT size defined. "
6488
- "For all other values, we preserve the aspect ratio of the image and use the "
6489
- "width as the starting point."
6490
- msgstr ""
6491
- "Esto indica el tamaño de la miniatura que se utilizará tanto en las vistas "
6492
- "de extracto como de detalle. Para los valores de tamaño de imagen "
6493
- "“recortado”, usamos el tamaño exacto definido. Para todos los demás valores, "
6494
- "conservaremos la relación de aspecto de la imagen y usaremos el ancho como "
6495
- "punto de partida."
6496
-
6497
- #: includes/admin/settings/class-settings-bootstrap.php:1058
6498
- msgctxt "settings"
6499
- msgid "Show Thumbnail on main listings page?"
6500
- msgstr "¿Mostrar imágenes miniatura en las páginas principales?"
6501
-
6502
- #: includes/admin/settings/class-settings-bootstrap.php:1067
6503
- msgctxt "settings"
6504
- msgid "Featured Badge image"
6505
- msgstr "Imagen insignia de listado destacado"
6506
-
6507
- #: includes/admin/settings/class-settings-bootstrap.php:1076
6508
- msgctxt "settings"
6509
- msgid "Featured Badge URL"
6510
- msgstr "URL para imagen insignia"
6511
-
6512
- #: includes/admin/settings/class-settings-bootstrap.php:1077
6513
- msgctxt "settings"
6514
- msgid "Use this to set Featured Badge image as a link to a defined URL."
6515
- msgstr ""
6516
- "Use esta opción para establecer una URL como enlace de la imagen insignia de "
6517
- "listado destacado."
6518
-
6519
- #: includes/admin/settings/class-settings-bootstrap.php:1087
6520
- msgctxt "settings"
6521
- msgid "Display featured (sticky) badge on listing:"
6522
- msgstr "Mostrar insignia de listado destacado en:"
6523
-
6524
- #: includes/admin/settings/class-settings-bootstrap.php:1103
6525
- msgctxt "settings"
6526
- msgid "Fee Order"
6527
- msgstr "Orden de las comisiones"
6528
-
6529
- #: includes/admin/settings/class-settings-bootstrap.php:1116
6530
- msgctxt "settings"
6531
- msgid "Turn On payments?"
6532
- msgstr "¿Activar pagos?"
6533
-
6534
- #: includes/admin/settings/class-settings-bootstrap.php:1125
6535
- msgctxt "settings"
6536
- msgid "Put payment gateways in test mode?"
6537
- msgstr "Utilizar las pasarelas de pago en modo de prueba?"
6538
-
6539
- #: includes/admin/settings/class-settings-bootstrap.php:1135
6540
- msgctxt "settings"
6541
- msgid "Perform checkouts on the secure (HTTPS) version of your site?"
6542
- msgstr "¿Realizar pagos utilizando la versión segura (HTTPS) de su sitio?"
6543
-
6544
- #: includes/admin/settings/class-settings-bootstrap.php:1136
6545
- msgctxt "settings"
6546
- msgid ""
6547
- "Recommended for added security. For this to work you need to enable HTTPS on "
6548
- "your server and obtain an SSL certificate."
6549
- msgstr ""
6550
- "Recomendado para seguridad extra. Para que funcione debe tener habilitado "
6551
- "HTTPS en su servidor y <a>obtener un certificado SSL</a>."
6552
-
6553
- #: includes/admin/settings/class-settings-bootstrap.php:1147
6554
- msgctxt "settings"
6555
- msgid "Currency Code"
6556
- msgstr "Código de moneda"
6557
-
6558
- #: includes/admin/settings/class-settings-bootstrap.php:1186
6559
- msgctxt "settings"
6560
- msgid "Currency Symbol"
6561
- msgstr "Símbolo de moneda"
6562
-
6563
- #: includes/admin/settings/class-settings-bootstrap.php:1196
6564
- msgctxt "settings"
6565
- msgid "Currency symbol display"
6566
- msgstr "Presentación de símbolo de moneda"
6567
-
6568
- #: includes/admin/settings/class-settings-bootstrap.php:1211
6569
- msgctxt "settings"
6570
- msgid "Include fee description in receipt?"
6571
- msgstr "Incluir la descripción del plan en el recibo?"
6572
-
6573
- #: includes/admin/settings/class-settings-bootstrap.php:1221
6574
- msgctxt "settings"
6575
- msgid "Thank you for payment message"
6576
- msgstr "Mensaje de agradecimiento por el pago"
6577
-
6578
- #: includes/admin/settings/class-settings-bootstrap.php:1275
6579
- msgctxt "settings"
6580
- msgid "Ask users to come back for abandoned payments?"
6581
- msgstr ""
6582
- "¿Contactar a los usuarios para pedirles que regresen a pagar pagos "
6583
- "pendientes?"
6584
-
6585
- #: includes/admin/settings/class-settings-bootstrap.php:1287
6586
- msgctxt "settings"
6587
- msgid "Listing abandonment threshold (hours)"
6588
- msgstr "Tiempo tras el cual el listado es considerado abandonado (en horas)"
6589
-
6590
- #: includes/admin/settings/class-settings-bootstrap.php:1304
6591
- msgctxt "settings"
6592
- msgid "Display email address fields publicly?"
6593
- msgstr "¿Mostrar direcciones de correo electrónico públicamente?"
6594
-
6595
- #: includes/admin/settings/class-settings-bootstrap.php:1305
6596
- msgctxt "settings"
6597
- msgid ""
6598
- "Shows the email address of the listing owner to all web users. NOT "
6599
- "RECOMMENDED as this increases spam to the address and allows spam bots to "
6600
- "harvest it for future use."
6601
- msgstr ""
6602
- "Permite mostrar las direcciones de correo electrónico del dueño del listado "
6603
- "a todos los usuarios. NO RECOMENDADO pues puede resultar en un aumento de "
6604
- "spam."
6605
-
6606
- #: includes/admin/settings/class-settings-bootstrap.php:1314
6607
- msgctxt "settings"
6608
- msgid "How to determine the listing's email address?"
6609
- msgstr "¿Cómo determinar el correo electrónico de un listado?"
6610
-
6611
- #: includes/admin/settings/class-settings-bootstrap.php:1315
6612
- msgctxt "settings"
6613
- msgid ""
6614
- "This affects emails sent to listing owners via contact forms or when their "
6615
- "listings expire."
6616
- msgstr ""
6617
- "Esta configuración afecta cómo los dueños de los listados son contactados "
6618
- "cuando sus listados expiran o a través de los formularios de contacto."
6619
-
6620
- #: includes/admin/settings/class-settings-bootstrap.php:1328
6621
- msgctxt "settings"
6622
- msgid "Email Content-Type header"
6623
- msgstr "Valor para la cabecera Content-Type"
6624
-
6625
- #: includes/admin/settings/class-settings-bootstrap.php:1329
6626
- msgctxt "settings"
6627
- msgid ""
6628
- "Use this setting to control the format of the emails explicitly. Some "
6629
- "plugins for email do not correctly support Content Type unless explicitly "
6630
- "set, you can do that here. If you're unsure, try \"HTML\", \"Plain\" and "
6631
- "then \"Both\"."
6632
- msgstr ""
6633
- "Utilice esta opción para controlar de manera explicita el formato de los "
6634
- "mensajes de correo electrónico. Algunos plugins que procesan correos "
6635
- "requirentes no soportan ciertos valores para la cabecera Content-Type; esta "
6636
- "opción le permite elegir un valor soportado. Si tiene problemas, intente "
6637
- "eligiendo “HTML”, “Texto plano” y luego ambos."
6638
-
6639
- #: includes/admin/settings/class-settings-bootstrap.php:1390
6640
- msgctxt "settings"
6641
- msgid "Templates"
6642
- msgstr "Plantillas"
6643
-
6644
- #: includes/admin/settings/class-settings-bootstrap.php:1395
6645
- msgctxt "settings"
6646
- msgid "Email confirmation message"
6647
- msgstr "Mensaje para el correo de confirmación"
6648
-
6649
- #: includes/admin/settings/class-settings-bootstrap.php:1396
6650
- msgctxt "settings"
6651
- msgid "Sent after a listing has been submitted."
6652
- msgstr "Enviado luego de que el listado ha sido recibido."
6653
-
6654
- #: includes/admin/settings/class-settings-bootstrap.php:1414
6655
- msgctxt "settings"
6656
- msgid "Listing published message"
6657
- msgstr "Mensaje enviado cuando un listado es publicado"
6658
-
6659
- #: includes/admin/settings/class-settings-bootstrap.php:1415
6660
- msgctxt "settings"
6661
- msgid "Sent when the listing has been published or approved by an admin."
6662
- msgstr ""
6663
- "Enviado cuando el listado ha sido publicado o aprobado por un administrador."
6664
-
6665
- #: includes/admin/settings/class-settings-bootstrap.php:1432
6666
- msgctxt "settings"
6667
- msgid "Listing Contact Message"
6668
- msgstr "Mensaje de contacto"
6669
-
6670
- #: includes/admin/settings/class-settings-bootstrap.php:1433
6671
- msgctxt "settings"
6672
- msgid ""
6673
- "Sent to listing owners when someone uses the contact form on their listing "
6674
- "pages."
6675
- msgstr ""
6676
- "Enviado a los dueños de listados cuando alguien utiliza el formulario de "
6677
- "contacto en sus páginas."
6678
-
6679
- #: includes/admin/settings/class-settings-bootstrap.php:1468
6680
- msgctxt "settings"
6681
- msgid "Payment completed message"
6682
- msgstr "Mensaje de pago completado"
6683
-
6684
- #: includes/admin/settings/class-settings-bootstrap.php:1469
6685
- msgctxt "settings"
6686
- msgid "Sent after a Listing's payment is verified by Gateway or admins."
6687
- msgstr ""
6688
- "Enviado luego de verificar el pago del listado por parte de la pasarela de "
6689
- "pago o el administrador."
6690
-
6691
- #: includes/admin/settings/class-settings-bootstrap.php:1505
6692
- msgctxt "settings"
6693
- msgid "Payment abandoned reminder message"
6694
- msgstr "Mensaje para el recordatorio de pagos abandonados"
6695
-
6696
- #: includes/admin/settings/class-settings-bootstrap.php:1506
6697
- msgctxt "settings"
6698
- msgid "Sent some time after a pending payment is abandoned by users."
6699
- msgstr ""
6700
- "Enviado algún tiempo después de que un pago pendiente es abandonado por los "
6701
- "usuarios."
6702
-
6703
- #: includes/admin/settings/class-settings-bootstrap.php:1684
6704
- msgctxt "settings"
6705
- msgid "Cropped"
6706
- msgstr "Recortado"
6707
-
6708
- #: includes/admin/settings/class-settings.php:488
6709
- #: includes/admin/settings/class-settings.php:499
6710
- msgctxt "settings"
6711
- msgid "\"%s\" can not be empty."
6712
- msgstr "“%s” no puede estar vacío."
6713
-
6714
- #: includes/admin/settings/class-settings.php:506
6715
- msgctxt "settings"
6716
- msgid "The slug \"%s\" is already in use for another taxonomy."
6717
- msgstr "El slug “%s” ya está siendo utilizado por otra taxonomía."
6718
-
6719
- #: includes/licensing.php:246
6720
- msgctxt "settings"
6721
- msgid "Themes"
6722
- msgstr "Temas"
6723
-
6724
- #: includes/licensing.php:317 includes/licensing.php:318
6725
- msgctxt "settings"
6726
- msgid "Please wait..."
6727
- msgstr "Por favor espere…"
6728
-
6729
- #: includes/licensing.php:318
6730
- #, fuzzy
6731
- msgctxt "settings"
6732
- msgid "Deauthorize"
6733
- msgstr "Authorize.net"
6734
-
6735
- #: includes/admin/settings/class-settings-bootstrap.php:641
6736
- #: includes/admin/settings/class-settings-bootstrap.php:654
6737
- msgctxt "post status"
6738
- msgid "Published"
6739
- msgstr "Publicado"
6740
-
6741
- #: includes/admin/settings/class-settings-bootstrap.php:669
6742
- msgctxt "post status"
6743
- msgid "Draft"
6744
- msgstr "Borrador"
6745
-
6746
- #: includes/admin/settings/class-settings-bootstrap.php:670
6747
- msgctxt "post status"
6748
- msgid "Trash"
6749
- msgstr "Papelera"
6750
-
6751
- #. translators: %s: url shortcode
6752
- #: includes/admin/settings/class-settings-bootstrap.php:1438
6753
- msgctxt "contact email"
6754
- msgid "You have received a reply from your listing at %s."
6755
- msgstr "Ha recibido una comunicación para su listado en %s."
6756
-
6757
- #. translators: %s: name shortcode
6758
- #: includes/admin/settings/class-settings-bootstrap.php:1441
6759
- msgctxt "contact email"
6760
- msgid "Name: %s"
6761
- msgstr "Nombre: %s"
6762
-
6763
- #: includes/admin/settings/class-settings-bootstrap.php:1445
6764
- msgctxt "contact email"
6765
- msgid "Message:"
6766
- msgstr "Mensaje:"
6767
-
6768
- #. translators: %s: date shortcode
6769
- #: includes/admin/settings/class-settings-bootstrap.php:1449
6770
- msgctxt "contact email"
6771
- msgid "Time: %s"
6772
- msgstr "Hora: %s"
6773
-
6774
- #: includes/admin/tracking.php:189
6775
- msgctxt "tracking"
6776
- msgid "Help Improve Business Directory"
6777
- msgstr "Ayúdenos a Mejorar el Directorio de Negocios"
6778
-
6779
- #: includes/admin/tracking.php:191
6780
- msgctxt "tracking"
6781
- msgid ""
6782
- "Can Business Directory keep track of your theme, plugins, and other non-"
6783
- "personal, non-identifying information to help us in testing the plugin for "
6784
- "future releases?"
6785
- msgstr ""
6786
- "Quiere permitir a Business Directory enviar información anónima sobre su "
6787
- "tema, plugins instalados y otros datos técnicos (no personales) para "
6788
- "ayudarnos a mejorar nuestro producto en futuras versiones?"
6789
-
6790
- #: includes/admin/tracking.php:193
6791
- msgctxt "tracking"
6792
- msgid "What do you track?"
6793
- msgstr "Qué información se incluye? (en inglés)"
6794
-
6795
- #: includes/admin/upgrades/class-manual-upgrade-helper.php:164
6796
- msgctxt "manual-upgrade"
6797
- msgid "Continue"
6798
- msgstr "Continuar"
6799
-
6800
- #: includes/admin/upgrades/class-manual-upgrade-helper.php:178
6801
- msgctxt "manual-upgrade"
6802
- msgid "Start Upgrade"
6803
- msgstr "Iniciar Actualización"
6804
-
6805
- #: includes/admin/upgrades/class-manual-upgrade-helper.php:180
6806
- msgctxt "manual-upgrade"
6807
- msgid "Pause Upgrade"
6808
- msgstr "Detener Actualización"
6809
-
6810
- #: includes/admin/upgrades/class-manual-upgrade-helper.php:186
6811
- msgctxt "manual-upgrade"
6812
- msgid ""
6813
- "The upgrade was successfully performed. Business Directory Plugin is now "
6814
- "available."
6815
- msgstr ""
6816
- "La actualización fue ejecutada con éxito. Business Directory Plugin ahora se "
6817
- "encuentra disponible para su uso."
6818
-
6819
- #: includes/admin/upgrades/class-manual-upgrade-helper.php:190
6820
- msgctxt "manual-upgrade"
6821
- msgid "Go to \"Directory Admin\""
6822
- msgstr "Ir a \"Administración del Directorio\""
6823
-
6824
- #: includes/admin/upgrades/class-migration.php:29
6825
- msgctxt "installer"
6826
- msgid "Migrating Business Directory database to version <version>."
6827
- msgstr ""
6828
- "Migrando la base de datos de Business Directory a la versión <version>."
6829
-
6830
- #: includes/admin/upgrades/migrations/migration-17_0.php:77
6831
- msgctxt "installer"
6832
- msgid ""
6833
- "Cleaning up stored meta data for Checkbox, Radio and Select fields... (%d "
6834
- "records left)"
6835
- msgstr ""
6836
- "Limpiando meta data para campos Checkbox, Radio y Select… (%d registros "
6837
- "pendientes)"
6838
-
6839
- #: includes/admin/upgrades/migrations/migration-18_0.php:87
6840
- msgctxt "installer"
6841
- msgid "Migrating license information to new format..."
6842
- msgstr "Migrando la información de las licencias al nuevo formato..."
6843
-
6844
- #: includes/admin/upgrades/migrations/migration-18_0.php:196
6845
- msgctxt "installer"
6846
- msgid "Migrating email notices to new format..."
6847
- msgstr "Migrando notificaciones de correo electrónico al nuevo formato..."
6848
-
6849
- #: includes/admin/upgrades/migrations/migration-18_0.php:207
6850
- msgctxt "installer"
6851
- msgid "Migrating fee plans..."
6852
- msgstr "Migrando comisiones…"
6853
-
6854
- #: includes/admin/upgrades/migrations/migration-18_0.php:251
6855
- msgctxt "installer"
6856
- msgid "! Could not migrate fee \"%s\" (%d)"
6857
- msgstr "! No se pudo migrar la comisión “%s” (%d)"
6858
-
6859
- #: includes/admin/upgrades/migrations/migration-18_0.php:324
6860
- msgctxt "installer"
6861
- msgid "! Could not migrate payment #%d"
6862
- msgstr "! No se pudo migrar el pago #%d"
6863
-
6864
- #: includes/admin/upgrades/migrations/migration-18_0.php:329
6865
- msgctxt "installer"
6866
- msgid "Updating payment items format: %d items remaining..."
6867
- msgstr ""
6868
- "Actualizando el formato de los detalles del pago: %d detalles pendientes…"
6869
-
6870
- #: includes/admin/upgrades/migrations/migration-18_0.php:391
6871
- msgctxt "installer"
6872
- msgid "Migrating listing information: %d items remaining..."
6873
- msgstr "Migrando la información de los listados: %d listados pendientes..."
6874
-
6875
- #: includes/admin/upgrades/migrations/migration-3_2.php:77
6876
- msgctxt "installer"
6877
- msgid ""
6878
- "<b>Business Directory Plugin - Regions Module</b> was disabled because it is "
6879
- "incompatible with the current version of Business Directory. Please update "
6880
- "the Regions module."
6881
- msgstr ""
6882
- "<b>Business Directory Plugin - Regions Module</b> fue deshabilitado porque "
6883
- "es incompatible con la versión actual de Business Directory. Por favor "
6884
- "actualice el módulode Regions."
6885
-
6886
- #: includes/admin/upgrades/migrations/migration-3_7.php:37
6887
- msgctxt "installer"
6888
- msgid "Migrating payments information."
6889
- msgstr "Migrando la información de los pagos."
6890
-
6891
- #: includes/admin/upgrades/migrations/migration-3_7.php:61
6892
- msgctxt "installer"
6893
- msgid "Cleaning up listing fees information... %d/%d"
6894
- msgstr "Actualizando información de comisiones de listados... %d/%d"
6895
-
6896
- #: includes/admin/upgrades/migrations/migration-3_7.php:119
6897
- msgctxt "installer"
6898
- msgid "Migrating previous transactions to new Payments API... %d/%d"
6899
- msgstr "Migrando transacciones anteriores a la nueva API de pagos... %d/%d"
6900
-
6901
- #: includes/admin/upgrades/migrations/migration-3_7.php:148
6902
- msgctxt "installer"
6903
- msgid "Initial listing payment (BD < 3.4)"
6904
- msgstr "Pago inicial de listado (BD < 3.4)"
6905
-
6906
- #: includes/admin/upgrades/migrations/migration-3_7.php:159
6907
- msgctxt "installer"
6908
- msgid "Listing edit payment (BD < 3.4)"
6909
- msgstr "Pago por edición de listado (BD < 3.4)"
6910
-
6911
- #: includes/admin/upgrades/migrations/migration-3_7.php:180
6912
- msgctxt "installer"
6913
- msgid "Renewal fee \"%s\" for category \"%s\""
6914
- msgstr "Comisión de renovación \"%s\" para categoría \"%s\""
6915
-
6916
- #: includes/admin/upgrades/migrations/migration-3_7.php:199
6917
- msgctxt "installer"
6918
- msgid "Listing upgrade to featured"
6919
- msgstr "Mejora a Destacado"
6920
-
6921
- #: includes/installer.php:62
6922
- msgctxt "installer"
6923
- msgid "Default Fee"
6924
- msgstr "Comisión por Defecto"
6925
-
6926
- #: includes/admin/upgrades/migrations/manual-upgrade-18_0-featured-levels.php:182
6927
- msgctxt "listings-api"
6928
- msgid "Featured Listing"
6929
- msgstr "Listado Destacado"
6930
-
6931
- #: includes/admin/upgrades/migrations/manual-upgrade-18_0-featured-levels.php:193
6932
- msgctxt "migrate-18"
6933
- msgid "Featured Levels migration is complete."
6934
- msgstr "La migración de los niveles destacados está completa."
6935
-
6936
- #: includes/admin/upgrades/migrations/manual-upgrade-18_0-featured-levels.php:210
6937
- msgctxt "migrate-18"
6938
- msgid ""
6939
- "Business Directory <b>version 5.0</b> is changing how Featured Levels plugin "
6940
- "works. We are leaving restricted features for fee plans, but removing the "
6941
- "confusing notion of a \"featured level\" that was limited to sticky listings."
6942
- msgstr ""
6943
- "La <b>versión 5.0</b> de Business Directory cambió la forma en que el plugin "
6944
- "de Niveles Destacados funciona. La configuración de características "
6945
- "restringidas se mantendrá, pero vamos a remover el concepto confuso de "
6946
- "“nivel destacado” que estaba limitado mostrar listados destacados."
6947
-
6948
- #: includes/admin/upgrades/migrations/manual-upgrade-18_0-featured-levels.php:212
6949
- msgctxt "migrate-18"
6950
- msgid ""
6951
- "We need to migrate your existing \"featured levels\" to fee plans for use by "
6952
- "the upgrade. YOUR DATA WILL NOT BE LOST HERE! Our new setup will make it "
6953
- "easier to configure and manage your listings with restricted feature access. "
6954
- "If you are unsure about what to do here, <support-link>contact support</"
6955
- "support-link> and <cancel-link>cancel migration</cancel-link>."
6956
- msgstr ""
6957
- "Es necesario migrar los “niveles destacados” existentes para convertirlos en "
6958
- "comisiones. NO SE PERDERÁ NINGUNA INFORMACIÓN AL REALIZAR ESTE PROCESO! La "
6959
- "nueva página de configuración le permitirá configurar y administrar sus "
6960
- "listados con características restringidas de forma más fácil. Si no está "
6961
- "seguro sobre que hacer aquí, por favor <support-link>contacté el servicio de "
6962
- "soporte</support-link> y <cancel-link>cancele la migración</cancel-link>."
6963
-
6964
- #: includes/admin/upgrades/migrations/manual-upgrade-18_0-featured-levels.php:214
6965
- msgctxt "migrate-18"
6966
- msgid ""
6967
- "Before we do the migration, we need to ask a few simple questions to move "
6968
- "your data from the old \"featured level\" to the new \"restricted feature "
6969
- "fee plan\" that is right for you."
6970
- msgstr ""
6971
- "Antes de realizar la migración, debe responder las siguientes preguntas para "
6972
- "mover la información de los “niveles destacados” anteriores a las nuevas "
6973
- "“comisiones con características restringidas” de manera adecuada."
6974
-
6975
- #: includes/admin/upgrades/migrations/manual-upgrade-18_0-featured-levels.php:259
6976
- msgctxt "migrate-18"
6977
- msgid "Move to: "
6978
- msgstr "Mover a: "
6979
-
6980
- #: includes/admin/upgrades/migrations/manual-upgrade-18_0-featured-levels.php:269
6981
- msgctxt "migrate-18"
6982
- msgid "New plan summary"
6983
- msgstr "Resumen de la nueva comisión"
6984
-
6985
- #: includes/admin/upgrades/migrations/manual-upgrade-18_0-featured-levels.php:296
6986
- msgctxt "migrate-18"
6987
- msgid "Perform migration"
6988
- msgstr "Realizar migración"
6989
-
6990
- #: includes/admin/upgrades/migrations/manual-upgrade-18_0-featured-levels.php:340
6991
- msgctxt "migrate-18"
6992
- msgid "Business Directory Plugin - Featured Levels migration required."
6993
- msgstr ""
6994
- "Business Directory Plugin - Debe ejecutar una migración para Niveles "
6995
- "Destacados."
6996
-
6997
- #: includes/admin/upgrades/migrations/manual-upgrade-18_0-featured-levels.php:345
6998
- msgctxt "migrate-18"
6999
- msgid ""
7000
- "Featured levels were removed in 5.0. You need to perform your <a>Featured "
7001
- "Levels migration here</a>."
7002
- msgstr ""
7003
- "Los niveles destacados fueron eliminados en 5.0. Debe <a>ejecutar la "
7004
- "migración para el plugin Niveles Destacados aquí</a>."
7005
-
7006
- #: includes/admin/upgrades/migrations/manual-upgrade-18_0-featured-levels.php:195
7007
- msgctxt "upgrade-18"
7008
- msgid "← Return to Directory dashboard"
7009
- msgstr "← Regresar al panel de control del Directorio"
7010
-
7011
- #: includes/admin/upgrades/migrations/manual-upgrade-18_0-featured-levels.php:206
7012
- msgctxt "upgrade-18"
7013
- msgid "Configure Plan"
7014
- msgstr "Configurar comisión"
7015
-
7016
- #: includes/admin/upgrades/migrations/manual-upgrade-18_0-featured-levels.php:231
7017
- msgctxt "upgrade-18"
7018
- msgid "Featured Level"
7019
- msgstr "Niveles Destacados"
7020
-
7021
- #: includes/admin/upgrades/migrations/manual-upgrade-18_0-featured-levels.php:232
7022
- msgctxt "upgrade-18"
7023
- msgid "What to do with it?"
7024
- msgstr "¿Qué hacer con este nivel destacado?"
7025
-
7026
- #: includes/admin/upgrades/migrations/manual-upgrade-18_0-featured-levels.php:241
7027
- msgctxt "upgrade-18"
7028
- msgid "%d listing is on this level."
7029
- msgid_plural "%d listings are on this level."
7030
- msgstr[0] "Hay %d listado en este nivel."
7031
- msgstr[1] "Hay %d listados en este nivel."
7032
-
7033
- #: includes/admin/upgrades/migrations/manual-upgrade-18_0-featured-levels.php:245
7034
- msgctxt "upgrade-18"
7035
- msgid "Select an option"
7036
- msgstr "Seleccione una opción"
7037
-
7038
- #: includes/admin/upgrades/migrations/manual-upgrade-18_0-featured-levels.php:246
7039
- msgctxt "upgrade-18"
7040
- msgid "Remove \"sticky\" status for listings."
7041
- msgstr "Retirar el estado “destacado” de los listados."
7042
-
7043
- #: includes/admin/upgrades/migrations/manual-upgrade-18_0-featured-levels.php:246
7044
- msgctxt "upgrade-18"
7045
- msgid "Remove this (old) level, and leave the listing on the old fee plan."
7046
- msgstr "Eliminar este nivel y dejar los listados en la comisión original."
7047
-
7048
- #: includes/admin/upgrades/migrations/manual-upgrade-18_0-featured-levels.php:249
7049
- msgctxt "upgrade-18"
7050
- msgid "May change \"sticky\" status depending on fee plan."
7051
- msgstr "Puede cambiar el estado “destacado” dependiendo de la comisión."
7052
-
7053
- #: includes/admin/upgrades/migrations/manual-upgrade-18_0-featured-levels.php:249
7054
- msgctxt "upgrade-18"
7055
- msgid "Move listings with this level to existing fee plan."
7056
- msgstr "Mover los listados en este nivel a una comisión existente."
7057
-
7058
- #: includes/admin/upgrades/migrations/manual-upgrade-18_0-featured-levels.php:252
7059
- msgctxt "upgrade-18"
7060
- msgid "Keep \"sticky\" status of listings."
7061
- msgstr "Mantener el estado “destacado” de los listados."
7062
-
7063
- #: includes/admin/upgrades/migrations/manual-upgrade-18_0-featured-levels.php:252
7064
- msgctxt "upgrade-18"
7065
- msgid "Replace this level with a new fee plan."
7066
- msgstr "Reemplazar este nivel con una comisión nueva."
7067
-
7068
- #: includes/class-cpt-integration.php:15
7069
- msgctxt "post type general name"
7070
- msgid "Directory"
7071
- msgstr "Directorio"
7072
-
7073
- #: includes/class-cpt-integration.php:16
7074
- msgctxt "post type singular name"
7075
- msgid "Listing"
7076
- msgstr "Listado"
7077
-
7078
- #: includes/class-cpt-integration.php:17
7079
- msgctxt "listing"
7080
- msgid "Add New Listing"
7081
- msgstr "Agregar Nuevo Listado"
7082
-
7083
- #: includes/class-listing.php:389
7084
- msgctxt "listing"
7085
- msgid "Listing has no registered payments"
7086
- msgstr "El listado no tiene pagos registrados"
7087
-
7088
- #: includes/class-listing.php:397
7089
- msgctxt "listing"
7090
- msgid "Can't delete payment"
7091
- msgstr "No se puede eliminar el pago"
7092
-
7093
- #: includes/class-listing.php:435
7094
- msgctxt "listing"
7095
- msgid "Listing expired"
7096
- msgstr "El listado expiró"
7097
-
7098
- #: includes/class-listing.php:623
7099
- msgctxt "listing"
7100
- msgid "(Unavailable Plan)"
7101
- msgstr "(Comisión no disponible)"
7102
-
7103
- #: includes/class-listing.php:783
7104
- msgctxt "listing"
7105
- msgid "Plan \"%s\" (recurring)"
7106
- msgstr "Comisión “%s” (recurrente)"
7107
-
7108
- #: includes/class-listing.php:785
7109
- msgctxt "listing"
7110
- msgid "Plan \"%s\""
7111
- msgstr "Comisión “%s”"
7112
-
7113
- #: includes/class-cpt-integration.php:18
7114
- msgctxt "post type"
7115
- msgid "Add New Listing"
7116
- msgstr "Agregar Nuevo Listado"
7117
-
7118
- #: includes/class-fee-plan.php:162
7119
- msgctxt "fee plan"
7120
- msgid "No images allowed."
7121
- msgstr "No permite imágenes."
7122
-
7123
- #: includes/class-fee-plan.php:164
7124
- msgctxt "fee plan"
7125
- msgid "%d image allowed."
7126
- msgid_plural "%d images allowed."
7127
- msgstr[0] "%d imagen permitida."
7128
- msgstr[1] "%d imágenes permitidas."
7129
-
7130
- #: includes/class-fee-plan.php:340
7131
- msgctxt "fees-api"
7132
- msgid "Fee label is required."
7133
- msgstr "El nombre de la Comisión es requerido."
7134
-
7135
- #: includes/class-fee-plan.php:346
7136
- msgctxt "fees-api"
7137
- msgid "Fee listing duration must be a number less than 10 years (3650 days)."
7138
- msgstr ""
7139
- "La duración del listado debe ser un número menor a 10 años (3650 días)."
7140
-
7141
- #: includes/class-fee-plan.php:351
7142
- msgctxt "fees-api"
7143
- msgid ""
7144
- "To set this fee as \"Recurring\" you must have a time for the listing to "
7145
- "renew (e.g. 30 days). To avoid issues with the listing, please edit the "
7146
- "<a>fee plan</a> appropriately."
7147
- msgstr ""
7148
- "Para configurar este plan como “Recurrente” debe establecer un tiempo para "
7149
- "renovar los listados (ej. 30 días). Para prevenir inconvenientes con los "
7150
- "listados, por favor edite el <a>plan de pago</a> apropiadamente."
7151
-
7152
- #: includes/class-fee-plan.php:354
7153
- msgctxt "fees-api"
7154
- msgid ""
7155
- "To set this fee as \"Recurring\" you must set a price for your fee plan. To "
7156
- "avoid issues with the listing, please edit the <a>fee plan</a> appropriately."
7157
- msgstr ""
7158
- "Para configurar este plan como “Recurrente” debe establecer un precio para "
7159
- "el plan de pago. Para prevenir inconvenientes con los listados, por favor "
7160
- "edite el <a>plan de pago</a> apropiadamente."
7161
-
7162
- #. translators: [%s] is the name of the blog.
7163
- #: includes/class-listing-email-notification.php:233
7164
- msgctxt "notify email"
7165
- msgid "[%s] New listing notification"
7166
- msgstr "[%s] Notificación de nuevo listado"
7167
-
7168
- #. translators: [%s] is the name of the blog.
7169
- #: includes/class-listing-email-notification.php:301
7170
- msgctxt "notify email"
7171
- msgid "[%s] Listing edit notification"
7172
- msgstr "[%s] Notificación de listado editado"
7173
-
7174
- #. translators: %s is the name of the blog.
7175
- #: includes/class-listing-email-notification.php:372
7176
- msgctxt "notify email"
7177
- msgid "[%s] Reported listing notification"
7178
- msgstr "[%s] Notificación de listado reportado"
7179
-
7180
- #. translators: [%s] is the name of the blog.
7181
- #: includes/class-listing-email-notification.php:419
7182
- msgctxt "notify email"
7183
- msgid "[%s] New payment notification"
7184
- msgstr "[%s] Notificación de nuevo pago"
7185
-
7186
- #: templates/email/listing-added.tpl.php:15
7187
- #: templates/email/listing-edited.tpl.php:21
7188
- #: templates/email/listing-reported.tpl.php:15
7189
- msgctxt "notify email"
7190
- msgid "Admin URL"
7191
- msgstr "URL de administración"
7192
-
7193
- #: templates/email/listing-added.tpl.php:27
7194
- #: templates/email/listing-edited.tpl.php:32
7195
- #: templates/email/listing-reported.tpl.php:19
7196
- msgctxt "notify email"
7197
- msgid "Posted By"
7198
- msgstr "Publicado Por"
7199
-
7200
- #: templates/email/listing-added.tpl.php:36
7201
- msgctxt "notify email"
7202
- msgid "Annonymous User"
7203
- msgstr "Usuario Anónimo"
7204
-
7205
- #: templates/email/listing-payment-completed.tpl.php:7
7206
- msgctxt "notify email"
7207
- msgid "Payment ID"
7208
- msgstr "ID del pago"
7209
-
7210
- #: templates/email/listing-payment-completed.tpl.php:18
7211
- msgctxt "notify email"
7212
- msgid "Payment Details"
7213
- msgstr "Detalles del Pago"
7214
-
7215
- #: templates/email/listing-payment-completed.tpl.php:25
7216
- msgctxt "notify email"
7217
- msgid "Plan"
7218
- msgstr "Plan de Pago"
7219
-
7220
- #: templates/email/listing-payment-completed.tpl.php:32
7221
- msgctxt "notify email"
7222
- msgid "Listing URL"
7223
- msgstr "URL del listado"
7224
-
7225
- #: templates/email/listing-payment-completed.tpl.php:34
7226
- msgctxt "notify email"
7227
- msgid "Listing admin URL"
7228
- msgstr "URL de administración del listado"
7229
-
7230
- #: templates/email/listing-reported.tpl.php:17
7231
- msgctxt "notify email"
7232
- msgid "Categories"
7233
- msgstr "Categorías"
7234
-
7235
- #: templates/email/listing-reported.tpl.php:21
7236
- msgctxt "notify email"
7237
- msgid "Report Information"
7238
- msgstr "Información del reporte"
7239
-
7240
- #: templates/email/listing-reported.tpl.php:24
7241
- msgctxt "notify email"
7242
- msgid "User name"
7243
- msgstr "Nombre de usuario"
7244
-
7245
- #: templates/email/listing-reported.tpl.php:28
7246
- msgctxt "notify email"
7247
- msgid "User Email"
7248
- msgstr "Correo electrónico del usuario"
7249
-
7250
- #: templates/email/listing-reported.tpl.php:31
7251
- msgctxt "notify email"
7252
- msgid "Report IP"
7253
- msgstr "Dirección IP"
7254
-
7255
- #: templates/email/listing-reported.tpl.php:33
7256
- msgctxt "notify email"
7257
- msgid "Report selected option"
7258
- msgstr "Reporte la opción seleccionada"
7259
-
7260
- #: templates/email/listing-reported.tpl.php:35
7261
- msgctxt "notify email"
7262
- msgid "Report additional info"
7263
- msgstr "Información adicional del reporte"
7264
-
7265
- #: includes/class-meta.php:37
7266
- msgctxt "rss feed"
7267
- msgid "%s Feed"
7268
- msgstr "Feed %s"
7269
-
7270
- #: includes/class-meta.php:160
7271
- msgctxt "title"
7272
- msgid "Find a Listing"
7273
- msgstr "Encontrar un listado"
7274
-
7275
- #: includes/class-meta.php:194
7276
- msgctxt "title"
7277
- msgid "Listings tagged: %s"
7278
- msgstr "Listados etiquetados: %s"
7279
-
7280
- #: includes/class-payment-gateways.php:95
7281
- msgctxt "payment-gateways"
7282
- msgid "Enable %s?"
7283
- msgstr "¿Habilitar %s?"
7284
-
7285
- #: includes/class-payment-gateways.php:129
7286
- msgctxt "payment-gateways"
7287
- msgid ""
7288
- "The <gateway> gateway is enabled but not properly configured. The gateway "
7289
- "won't be available until the following problems are fixed: <problems>."
7290
- msgstr ""
7291
- "La pasarela <gateway> se encuentra activada pero no ha sido configurada "
7292
- "correctamente. La pasarela no estará disponible hasta que se resuelvan los "
7293
- "siguientes problemas: <problems>."
7294
-
7295
- #: includes/class-payment-gateways.php:131
7296
- msgctxt "payment-gateways"
7297
- msgid "Please check the <link>payment settings</link>."
7298
- msgstr "Por favor revise la <link>configuración de pagos</link>."
7299
-
7300
- #: includes/class-payment-gateways.php:142
7301
- msgctxt "payment-gateways"
7302
- msgid ""
7303
- "You have payments turned on but no gateway is active and properly "
7304
- "configured. Go to <link>Manage Options - Payment</link> to change the "
7305
- "payment settings. Until you change this, the directory will operate in "
7306
- "<i>Free Mode</i>."
7307
- msgstr ""
7308
- "Tiene los pagos habilitados pero no hay ninguna pasarela activada y "
7309
- "correctamente configurada. Vaya a la <link>configuración de pagos</link> "
7310
- "para cambiar las configuración. Hasta tanto, el directorio operará en "
7311
- "<i>Modo Gratuito</i>."
7312
-
7313
- #: includes/class-payment.php:83
7314
- msgctxt "payment"
7315
- msgid "Payment status changed from \"%1$s\" to \"%2$s\"."
7316
- msgstr "El estado del pago cambió de “%1$s” a “%2$s”."
7317
-
7318
- #: includes/class-payment.php:128
7319
- msgctxt "payment"
7320
- msgid "Initial payment (\"%s\")"
7321
- msgstr "Pago inicial (“%s”)"
7322
-
7323
- #: includes/class-payment.php:131
7324
- msgctxt "payment"
7325
- msgid "Renewal payment (\"%s\")"
7326
- msgstr "Pago de renovación (“%s”)"
7327
-
7328
- #: includes/class-payment.php:368
7329
- msgctxt "payment"
7330
- msgid "Pending"
7331
- msgstr "Pendiente"
7332
-
7333
- #: includes/class-payment.php:369
7334
- msgctxt "payment"
7335
- msgid "Failed"
7336
- msgstr "Fallido"
7337
-
7338
- #: includes/class-payment.php:370
7339
- msgctxt "payment"
7340
- msgid "Completed"
7341
- msgstr "Completado"
7342
-
7343
- #: includes/class-payment.php:371
7344
- msgctxt "payment"
7345
- msgid "Canceled"
7346
- msgstr "Cancelado"
7347
-
7348
- #: includes/class-payment.php:372
7349
- msgctxt "payment"
7350
- msgid "On Hold"
7351
- msgstr "En espera"
7352
-
7353
- #: includes/class-payment.php:373
7354
- msgctxt "payment"
7355
- msgid "Refunded"
7356
- msgstr "Reintegrado"
7357
-
7358
- #: includes/class-payment.php:143
7359
- msgctxt "payment summary"
7360
- msgid "%s. Admin Posted."
7361
- msgstr "%s. Publicado por el administrador."
7362
-
7363
- #: includes/class-payment.php:145
7364
- msgctxt "payment summary"
7365
- msgid "%s. Imported Listing."
7366
- msgstr "%s. Listado importado."
7367
-
7368
- #: includes/class-payment.php:252
7369
- msgctxt "submit listing"
7370
- msgid "Listing submitted by admin. Payment skipped."
7371
- msgstr "El listado fue publicado por el administrador. No se realizó pago."
7372
-
7373
- #: includes/views/submit_listing.php:67
7374
- msgctxt "submit listing"
7375
- msgid "Click this field to add categories"
7376
- msgstr "Haga click en este campo para agregar categorías"
7377
-
7378
- #: includes/views/submit_listing.php:68
7379
- msgctxt "submit listing"
7380
- msgid "Complete Listing"
7381
- msgstr "Completar listado"
7382
-
7383
- #: includes/views/submit_listing.php:69
7384
- msgctxt "submit listing"
7385
- msgid "Continue to Payment"
7386
- msgstr "Continuar al pago"
7387
-
7388
- #: includes/views/submit_listing.php:71
7389
- msgctxt "submit listing"
7390
- msgid "Please wait a moment!"
7391
- msgstr "Por favor espere un momento!"
7392
-
7393
- #: includes/views/submit_listing.php:72
7394
- msgctxt "submit listing"
7395
- msgid "Something went wrong!"
7396
- msgstr "Algo salió mal!"
7397
-
7398
- #: includes/views/submit_listing.php:97
7399
- msgctxt "submit listing"
7400
- msgid "No listing ID was specified."
7401
- msgstr "No especificó el ID de un listado."
7402
-
7403
- #: includes/views/submit_listing.php:99
7404
- msgctxt "submit listing"
7405
- msgid "You can't edit this listing."
7406
- msgstr "Usted no puede editar este listado."
7407
-
7408
- #: includes/views/submit_listing.php:157
7409
- msgctxt "submit listing"
7410
- msgid ""
7411
- "This listing can't be edited at this time because it has no fee plan "
7412
- "associated. Please <a>edit the listing</a> on the backend and associate it "
7413
- "to a fee plan."
7414
- msgstr ""
7415
- "Este listado no puede ser editado en este momento porque no está asociado a "
7416
- "una comisión. Por favor <a>edite el listado en el panel de administración</"
7417
- "a> para asociar una comisión."
7418
-
7419
- #: includes/views/submit_listing.php:163
7420
- msgctxt "submit listing"
7421
- msgid ""
7422
- "This listing can't be edited at this time. Please try again later or contact "
7423
- "the admin if the problem persists."
7424
- msgstr ""
7425
- "Este listado no puede ser editado en este momento. Por favor intente más "
7426
- "tarde o contacte al administrador si el problema persiste."
7427
-
7428
- #: includes/views/submit_listing.php:187
7429
- msgctxt "submit listing"
7430
- msgid "You're logged in as admin, payment will be skipped."
7431
- msgstr ""
7432
- "Ha ingresado como administrador. Todos los pasos de pago serán saltados."
7433
-
7434
- #: includes/views/submit_listing.php:492
7435
- msgctxt "submit listing"
7436
- msgid "Category selection"
7437
- msgstr "Selección de categoría"
7438
-
7439
- #: includes/views/submit_listing.php:492
7440
- msgctxt "submit listing"
7441
- msgid "Category & plan selection"
7442
- msgstr "Selección de categoría y comisión"
7443
-
7444
- #: includes/views/submit_listing.php:773
7445
- msgctxt "submit listing"
7446
- msgid "Can not submit a listing at this moment. Please try again later."
7447
- msgstr ""
7448
- "No puede publicar un listado en este momento. Por favor intente más tarde."
7449
-
7450
- #: includes/views/submit_listing.php:822 includes/views/submit_listing.php:944
7451
- msgctxt "submit listing"
7452
- msgid "Please select a category."
7453
- msgstr "Por favor seleccione una categoría."
7454
-
7455
- #: includes/views/submit_listing.php:845
7456
- msgctxt "submit listing"
7457
- msgid "Please choose a valid category for your plan."
7458
- msgstr "Por favor seleccione una categoría válida para su comisión."
7459
-
7460
- #: includes/views/submit_listing.php:847
7461
- msgctxt "submit listing"
7462
- msgid "Please choose a valid fee plan for your category selection."
7463
- msgstr "Por favor elija una comisión válida para la categoría seleccionada."
7464
-
7465
- #: includes/views/submit_listing.php:1153
7466
- msgctxt "submit listing"
7467
- msgid "Please enter your desired username."
7468
- msgstr "Por favor ingrese su nombre de usuario."
7469
-
7470
- #: includes/views/submit_listing.php:1158
7471
- msgctxt "submit listing"
7472
- msgid "Please enter the e-mail for your new account."
7473
- msgstr ""
7474
- "Por favor ingrese la dirección de correo electrónico para su nueva cuenta."
7475
-
7476
- #: includes/views/submit_listing.php:1163
7477
- msgctxt "submit listing"
7478
- msgid "The username you chose is already in use. Please use a different one."
7479
- msgstr ""
7480
- "El nombre de usuario que eligió ya está en uso. Por favor elija un nombre de "
7481
- "usuario diferente."
7482
-
7483
- #: includes/views/submit_listing.php:1168
7484
- msgctxt "submit listing"
7485
- msgid "The e-mail address you chose for your account is already in use."
7486
- msgstr ""
7487
- "La dirección de correo electrónico que eligió para su cuenta ya está siendo "
7488
- "utilizada."
7489
-
7490
- #: includes/class-recaptcha.php:32
7491
- msgctxt "recaptcha"
7492
- msgid "The reCAPTCHA wasn't entered correctly."
7493
- msgstr "El reCAPTCHA no fue ingresado correctamente."
7494
-
7495
- #: includes/class-recaptcha.php:32
7496
- msgctxt "recaptcha"
7497
- msgid "The reCAPTCHA validation score failed."
7498
- msgstr "Validación de puntaje de reCAPTCHA falló."
7499
-
7500
- #: includes/class-view.php:107
7501
- msgctxt "views"
7502
- msgid "Invalid credentials."
7503
- msgstr "Credenciales inválidas."
7504
-
7505
- #: includes/views/search.php:11
7506
- msgctxt "views"
7507
- msgid "Find A Listing"
7508
- msgstr "Encontrar un Listado"
7509
-
7510
- #: includes/class-wpbdp.php:394
7511
- msgctxt "listing image upload"
7512
- msgid "Can not upload any more images for this listing."
7513
- msgstr "No puede subir más imágenes para este listado."
7514
-
7515
- #: includes/class-wpbdp.php:398
7516
- msgctxt "listing image upload"
7517
- msgid ""
7518
- "You're trying to upload %d images, but only have %d slot available. Please "
7519
- "adjust your selection."
7520
- msgid_plural ""
7521
- "You're trying to upload %d images, but only have %d slots available. Please "
7522
- "adjust your selection."
7523
- msgstr[0] ""
7524
- "Usted está intentando cargar %d imágenes, pero tiene solo %d espacio "
7525
- "disponible. Por favor intente cargar solo el número de imágenes permitidas."
7526
- msgstr[1] ""
7527
- "Usted está intentando cargar %d imágenes, pero tiene solo %d espacios "
7528
- "disponible. Por favor intente cargar solo el número de imágenes permitidas."
7529
-
7530
- #: includes/compatibility/class-navxt-integration.php:196
7531
- msgctxt "navxt"
7532
- msgid "Submit Listing"
7533
- msgstr "Enviar Listado"
7534
-
7535
- #: includes/compatibility/class-navxt-integration.php:204
7536
- msgctxt "navxt"
7537
- msgid "Search"
7538
- msgstr "Buscar"
7539
-
7540
- #: includes/fields/class-fieldtypes-checkbox.php:18
7541
- msgctxt "form-fields api"
7542
- msgid "Checkbox"
7543
- msgstr "Casilla de verificación"
7544
-
7545
- #: includes/fields/class-fieldtypes-date.php:9
7546
- msgctxt "form-fields api"
7547
- msgid "Date Field"
7548
- msgstr "Campo de Fecha"
7549
-
7550
- #: includes/fields/class-fieldtypes-date.php:43
7551
- msgctxt "form-fields api"
7552
- msgid "Date Format"
7553
- msgstr "Formato de Fecha"
7554
-
7555
- #: includes/fields/class-fieldtypes-facebook.php:6
7556
- msgctxt "form-fields api"
7557
- msgid "Social Site (Facebook page)"
7558
- msgstr "Sitio Social (Página de Facebook)"
7559
-
7560
- #: includes/fields/class-fieldtypes-image.php:11
7561
- msgctxt "form-fields api"
7562
- msgid "Image (file upload)"
7563
- msgstr "Imagen (archivo)"
7564
-
7565
- #: includes/fields/class-fieldtypes-linkedin.php:14
7566
- msgctxt "form-fields api"
7567
- msgid "Social Site (LinkedIn profile)"
7568
- msgstr "Sitio Social (Perfil de LinkedIn)"
7569
-
7570
- #: includes/fields/class-fieldtypes-linkedin.php:29
7571
- msgctxt "form-fields api"
7572
- msgid "You can add your Company ID or profile URL here."
7573
- msgstr "Puede ingresar el ID de su compañía o la URL del perfil aquí."
7574
-
7575
- #: includes/fields/class-fieldtypes-multiselect.php:6
7576
- msgctxt "form-fields api"
7577
- msgid "Multiple select list"
7578
- msgstr "Lista de selección múltiple"
7579
-
7580
- #: includes/fields/class-fieldtypes-multiselect.php:11
7581
- msgctxt "form-fields api"
7582
- msgid "Multiselect List"
7583
- msgstr "Lista de selección múltiple"
7584
-
7585
- #: includes/fields/class-fieldtypes-radiobutton.php:18
7586
- msgctxt "form-fields api"
7587
- msgid "Radio button"
7588
- msgstr "Botón de radio"
7589
-
7590
- #: includes/fields/class-fieldtypes-social.php:31
7591
- msgctxt "form-fields api"
7592
- msgid "Social Site (Other)"
7593
- msgstr "Sitio Social (Otro)"
7594
-
7595
- #: includes/fields/class-fieldtypes-textarea.php:12
7596
- msgctxt "form-fields api"
7597
- msgid "Textarea"
7598
- msgstr "Área de texto"
7599
-
7600
- #: includes/fields/class-fieldtypes-textfield.php:9
7601
- msgctxt "form-fields api"
7602
- msgid "Textfield"
7603
- msgstr "Campo de texto"
7604
-
7605
- #: includes/fields/class-fieldtypes-textfield.php:53
7606
- msgctxt "form-fields api"
7607
- msgid "Format 01/31/1969"
7608
- msgstr "Formato 01/31/1969"
7609
-
7610
- #: includes/fields/class-fieldtypes-twitter.php:6
7611
- msgctxt "form-fields api"
7612
- msgid "Social Site (Twitter handle)"
7613
- msgstr "Sitio Social (Twitter @)"
7614
-
7615
- #: includes/fields/class-form-field.php:739
7616
- msgctxt "form-fields api"
7617
- msgid ""
7618
- "This form field can't be deleted because it is required for the plugin to "
7619
- "work."
7620
- msgstr ""
7621
- "Este campo de formulario no puede eliminarse porque es requerido para el "
7622
- "funcionamiento del plugin."
7623
-
7624
- #: includes/fields/class-fieldtypes-checkbox.php:51
7625
- msgctxt "checkbox form field"
7626
- msgid "Select all"
7627
- msgstr "Seleccionar todos"
7628
-
7629
- #: includes/fields/class-fieldtypes-image.php:41
7630
- msgctxt "date field"
7631
- msgid "Caption for %s is required."
7632
- msgstr "Se requiere leyenda para %s."
7633
-
7634
- #: includes/fields/class-fieldtypes-image.php:110
7635
- #: includes/fields/class-fieldtypes-social.php:176
7636
- msgctxt "form-fields-api"
7637
- msgid "Remove"
7638
- msgstr "Eliminar"
7639
-
7640
- #: includes/fields/class-form-field.php:66
7641
- msgctxt "form-fields-api"
7642
- msgid "Invalid form field type"
7643
- msgstr "Tipo de campo inválido"
7644
-
7645
- #: includes/fields/class-form-field.php:618
7646
- msgctxt "form-fields-api"
7647
- msgid "Field label is required."
7648
- msgstr "El nombre del campo es requerido."
7649
-
7650
- #: includes/fields/class-form-field.php:622
7651
- msgctxt "form-fields-api"
7652
- msgid "Field label max length is 255 characters."
7653
- msgstr "La longitud máxima de la etiqueta del campo es de 255 caracteres."
7654
-
7655
- #: includes/fields/class-form-field.php:626
7656
- msgctxt "form-fields-api"
7657
- msgid "Field description max length is 255 characters."
7658
- msgstr "La longitud máxima de la descripción del campo es de 255 caracteres."
7659
-
7660
- #: includes/fields/class-form-field.php:637
7661
- msgctxt "form-fields-api"
7662
- msgid ""
7663
- "You can't change from %2$s field type to the one you wanted--the types are "
7664
- "incompatible internally. If you want to switch to a field of type %1$s, "
7665
- "delete this current field and create a NEW field of type %1$s instead."
7666
- msgstr ""
7667
- "No se puede cambiar de tipo de campo de %2$s a la que querías, los tipos son "
7668
- "incompatibles internamente. Si usted desea cambiar a un campo de tipo %1$s, "
7669
- "debe eliminar el campo actual y crear un nuevo campo de tipo %1$s en su "
7670
- "lugar."
7671
-
7672
- #: includes/fields/class-form-field.php:640
7673
- msgctxt "form-fields-api"
7674
- msgid ""
7675
- "<strong>WARNING</strong>: If you delete this field, the data from it in "
7676
- "existing listings will be deleted as well."
7677
- msgstr ""
7678
- "<strong>ADVERTENCIA</strong>: si se elimina este campo, también se "
7679
- "eliminarán los datos de éste en los listados existentes."
7680
-
7681
- #: includes/fields/class-form-field.php:674
7682
- msgctxt "form-fields-api"
7683
- msgid ""
7684
- "There can only be one field with association \"%s\". Please select another "
7685
- "association."
7686
- msgstr ""
7687
- "Solo puede haber un campo con asociación \"%s\". Por favor elija otra "
7688
- "asociación."
7689
-
7690
- #: includes/fields/class-form-field.php:684
7691
- msgctxt "form-fields-api"
7692
- msgid "\"%s\" is an invalid field type for this association."
7693
- msgstr "\"%s\" es un tipo de campo inválido para esta asociación."
7694
-
7695
- #: includes/fields/class-form-field.php:729
7696
- msgctxt "form-fields-api"
7697
- msgid "Invalid field ID"
7698
- msgstr "ID de campo inválido"
7699
-
7700
- #: includes/fields/class-form-field.php:754
7701
- msgctxt "form-fields-api"
7702
- msgid "An error occurred while trying to delete this field."
7703
- msgstr "Un error ocurrió mientras se trataba de eliminar este campo."
7704
-
7705
- #: includes/fields/class-fieldtypes-image.php:159
7706
- msgctxt "templates image upload"
7707
- msgid "or"
7708
- msgstr "o"
7709
-
7710
- #: includes/fields/class-fieldtypes-multiselect.php:25
7711
- msgctxt "form-fields-admin"
7712
- msgid "Number of options visible without scrolling"
7713
- msgstr "Número de opciones visibles sin hacer scroll"
7714
-
7715
- #: includes/fields/class-fieldtypes-multiselect.php:26
7716
- msgctxt "form-fields-admin"
7717
- msgid ""
7718
- "The height of the list will be adjusted to accommodate the specified number "
7719
- "of options."
7720
- msgstr ""
7721
- "La altura de la lista será ajustada para incluir el número especificado de "
7722
- "opciones."
7723
-
7724
- #: includes/fields/class-fieldtypes-textarea.php:199
7725
- msgctxt "admin form-fields"
7726
- msgid ""
7727
- "Enabling iframe support in your listings can allow users to execute "
7728
- "arbitrary scripts on a page if they want, which can possibly infect your "
7729
- "site with malware. We do NOT recommend using this setting UNLESS you are "
7730
- "posting the listings yourself and have sole control over the content. Are "
7731
- "you sure you want to enable this?"
7732
- msgstr ""
7733
- "Habilitar soporte para IFRAME en sus listados puede permitir a los usuarios "
7734
- "ejecutar scripts arbitrarios en la página, lo que pudiera infectar su sitio. "
7735
- "No recomendamos que utilice esta opción a menos que usted tenga el control "
7736
- "completo sobre el contenido de los listados. ¿Está seguro de que desea "
7737
- "habilitar esta opción?"
7738
-
7739
- #: includes/functions.php:1260
7740
- msgctxt "templates"
7741
- msgid "Return to results"
7742
- msgstr "Regresar a resultados"
7743
-
7744
- #: includes/payment.php:270 templates/renew-resume.tpl.php:34
7745
- msgctxt "templates"
7746
- msgid "Return to fee selection"
7747
- msgstr "Regresar a la selección de tarifa"
7748
-
7749
- #: includes/templates-ui.php:223
7750
- msgctxt "templates"
7751
- msgid "No listing categories found."
7752
- msgstr "No se encontraron categorías."
7753
-
7754
- #: includes/templates-ui.php:372
7755
- msgctxt "templates"
7756
- msgid "Search Listings"
7757
- msgstr "Buscar Listados"
7758
-
7759
- #: includes/templates-ui.php:377
7760
- msgctxt "templates"
7761
- msgid "Advanced Search"
7762
- msgstr "Búsqueda Avanzada"
7763
-
7764
- #: includes/views/listing_contact.php:196
7765
- msgctxt "templates"
7766
- msgid "Contact listing owner"
7767
- msgstr "Enviar Mensaje al dueño del Listado"
7768
-
7769
- #: includes/views/listing_contact.php:200
7770
- msgctxt "templates"
7771
- msgid "Send Message to listing owner"
7772
- msgstr "Enviar Mensaje al dueño del Listado"
7773
-
7774
- #: includes/views/main.php:9
7775
- msgctxt "templates"
7776
- msgid ""
7777
- "There are no categories assigned to the business directory yet. You need to "
7778
- "assign some categories to the business directory. Only admins can see this "
7779
- "message. Regular users are seeing a message that there are currently no "
7780
- "listings in the directory. Listings cannot be added until you assign "
7781
- "categories to the business directory."
7782
- msgstr ""
7783
- "No hay categorías asignadas al Directorio de Negocios. Necesita agregar "
7784
- "algunas categorías al Directorio. Solo los administradores pueden ver este "
7785
- "mensaje. Los usuarios regulares están viendo un mensaje que les indica que "
7786
- "no pueden enviar listados en este momento. No pueden agregarse nuevos "
7787
- "listados hasta tanto haya categorías en el Directorio de Negocios."
7788
-
7789
- #: includes/views/main.php:11
7790
- msgctxt "templates"
7791
- msgid "There are currently no listings in the directory."
7792
- msgstr "No hay listados en el Directorio."
7793
-
7794
- #: includes/views/main.php:17
7795
- msgctxt "templates"
7796
- msgid ""
7797
- "You have \"Hide Empty Categories\" on and some categories that don't have "
7798
- "listings in them. That means they won't show up on the front end of your "
7799
- "site. If you didn't want that, click <a>here</a> to change the setting."
7800
- msgstr ""
7801
- "Tiene \"Ocultar categorías vacías\" habilitado y algunas categorías vacías. "
7802
- "Esto significa que no aparecerán acá. Si desea mostrar las categorías "
7803
- "vacías, haga <a>clic aquí</a> para cambiar la configuración."
7804
-
7805
- #: includes/views/submit_listing.php:406
7806
- msgctxt "templates"
7807
- msgid ""
7808
- "<b>View not available</b>. Do you have the \"Disable Frontend Listing "
7809
- "Submission?\" setting checked?"
7810
- msgstr ""
7811
- "<b>Vista no disponible</b>. ¿Tiene \"Deshabilitar envío de listados desde el "
7812
- "frontend\" habilitado?"
7813
-
7814
- #: includes/views/submit_listing.php:408
7815
- msgctxt "templates"
7816
- msgid ""
7817
- "Listing submission has been disabled. Contact the administrator for details."
7818
- msgstr ""
7819
- "Se ha deshabilitado la opción para agregar listados. Contacte al "
7820
- "administrador para más detalles."
7821
-
7822
- #: includes/views/submit_listing.php:776
7823
- msgctxt "templates"
7824
- msgid ""
7825
- "<b>There are no Fee Plans available</b>, without a fee plan site users can't "
7826
- "submit a listing. %s to create a fee plan"
7827
- msgstr ""
7828
- "<b>No hay planes disponibles</b>, sin un plan de tarifas, los usuarios del "
7829
- "sitio no pueden crear listados. %s para crear un plan"
7830
-
7831
- #: includes/views/submit_listing.php:790
7832
- msgctxt "templates"
7833
- msgid ""
7834
- "Listing submission is not available at the moment. Contact the administrator "
7835
- "for details."
7836
- msgstr ""
7837
- "La opción para agregar listados no está disponible en el momento. Contacte "
7838
- "al administrador para más detalles."
7839
-
7840
- #: includes/views/submit_listing.php:793
7841
- msgctxt "templates"
7842
- msgid ""
7843
- "<b>View not available</b>, there is no \"Category\" association field. %s "
7844
- "and create a new field with this association, or assign this association to "
7845
- "an existing field"
7846
- msgstr ""
7847
- "<b>Vista no disponible</b>, no existe un campo con la asociación "
7848
- "“Categoría”. %s y cree un nuevo campo con dicha asociación, o asigne la "
7849
- "asociación a un campo existente"
7850
-
7851
- #: includes/views/submit_listing.php:1233
7852
- msgctxt "templates"
7853
- msgid "Please agree to the Terms and Conditions."
7854
- msgstr "Por favor acepte los Términos y Condiciones."
7855
-
7856
- #: includes/views/submit_listing.php:1247
7857
- msgctxt "templates"
7858
- msgid "I agree to the <a>Terms and Conditions</a>"
7859
- msgstr "Acepto los <a>Términos y Condiciones</a>"
7860
-
7861
- #: templates/listing-sticky-tag.tpl.php:11
7862
- #: templates/listing-sticky-tag.tpl.php:12
7863
- msgctxt "templates"
7864
- msgid "Featured Listing"
7865
- msgstr "Listado Destacado"
7866
-
7867
- #: templates/manage_listings.tpl.php:20
7868
- msgctxt "templates"
7869
- msgid ""
7870
- "Your current listings are shown below. To edit a listing click the edit "
7871
- "button. To delete a listing click the delete button."
7872
- msgstr ""
7873
- "Sus listados actuales se muestran abajo. Para editar un listado haga click "
7874
- "en el botón de Editar. Para eliminar un listado haga click en el botón de "
7875
- "Eliminar."
7876
-
7877
- #: templates/parts/listing-buttons.tpl.php:17
7878
- #: templates/parts/listing-buttons.tpl.php:51
7879
- msgctxt "templates"
7880
- msgid "Edit"
7881
- msgstr "Editar"
7882
-
7883
- #: templates/parts/listing-buttons.tpl.php:25
7884
- #: templates/parts/listing-buttons.tpl.php:59
7885
- msgctxt "templates"
7886
- msgid "Flag Listing"
7887
- msgstr "Reportar listado"
7888
-
7889
- #: templates/renew-listing-manage-subscription.tpl.php:2
7890
- msgctxt "templates"
7891
- msgid "Recurring Fee Management"
7892
- msgstr "Manejo de Pago Recurrente"
7893
-
7894
- #: templates/renew-listing.tpl.php:11
7895
- msgctxt "templates"
7896
- msgid "Renew Listing"
7897
- msgstr "Renovar Listado"
7898
-
7899
- #: templates/renew-listing.tpl.php:19
7900
- msgctxt "templates"
7901
- msgid "You are about to renew your listing \"%s\" publication."
7902
- msgstr "Está a punto de renovar la publicación de su listado “%”."
7903
-
7904
- #: templates/renew-listing.tpl.php:22
7905
- msgctxt "templates"
7906
- msgid ""
7907
- "Please select a fee option or click \"Do not renew my listing\" to remove "
7908
- "your listing from the directory."
7909
- msgstr ""
7910
- "Por favor elija una opción de pago o haga click en \"No renovar mi listado\" "
7911
- "para cancelar la renovación y eliminar el listado del directorio."
7912
-
7913
- #: templates/renew-listing.tpl.php:37
7914
- #: templates/submit-listing/extra-sections.tpl.php:6
7915
- msgctxt "templates"
7916
- msgid "Continue"
7917
- msgstr "Continuar"
7918
-
7919
- #: templates/renew-listing.tpl.php:42
7920
- msgctxt "templates"
7921
- msgid "Do not renew my listing"
7922
- msgstr "No renovar mi listado"
7923
-
7924
- #: templates/renew-resume.tpl.php:33
7925
- msgctxt "templates"
7926
- msgid "Continue to checkout"
7927
- msgstr "Continuar con el pago"
7928
-
7929
- #: templates/search-form.tpl.php:3
7930
- msgctxt "templates"
7931
- msgid "Find a listing"
7932
- msgstr "Encontrar un listado"
7933
-
7934
- #: templates/submit-listing/extra-sections.tpl.php:1
7935
- msgctxt "templates"
7936
- msgid "Additional Information"
7937
- msgstr "Información Adicional"
7938
-
7939
- #: templates/submit-listing-done.tpl.php:9
7940
- msgctxt "templates"
7941
- msgid "Submission Received"
7942
- msgstr "Envío Recibido"
7943
-
7944
- #: templates/submit-listing-done.tpl.php:12
7945
- msgctxt "templates"
7946
- msgid "Your listing has been submitted."
7947
- msgstr "Su listado fue enviado."
7948
-
7949
- #: templates/submit-listing-done.tpl.php:25
7950
- msgctxt "templates"
7951
- msgid "Your listing changes were saved."
7952
- msgstr "Los cambios a su listado fueron guardados."
7953
-
7954
- #: templates/submit-listing-done.tpl.php:30
7955
- msgctxt "templates"
7956
- msgid "Go to your listing"
7957
- msgstr "Ir a su listado"
7958
-
7959
- #: templates/submit-listing-done.tpl.php:32
7960
- msgctxt "templates"
7961
- msgid ""
7962
- "Your listing requires admin approval. You'll be notified once your listing "
7963
- "is approved."
7964
- msgstr ""
7965
- "Su listado debe ser aprobado por el administrador. Usted será notificado una "
7966
- "vez el listado sea aprobado."
7967
-
7968
- #: templates/submit-listing-images-upload-form.tpl.php:32
7969
- #, fuzzy
7970
- msgctxt "templates"
7971
- msgid "Image slots available"
7972
- msgstr "Casillas de imagen disponibles:"
7973
-
7974
- #: templates/submit-listing-images.tpl.php:54
7975
- #, fuzzy
7976
- msgctxt "templates"
7977
- msgid "File size"
7978
- msgstr "Tamaño de archivo:"
7979
-
7980
- #: templates/submit-listing-images.tpl.php:56
7981
- #: templates/submit-listing-images.tpl.php:64
7982
- #: templates/submit-listing-images.tpl.php:72
7983
- msgctxt "templates"
7984
- msgid "No limit"
7985
- msgstr "Sin límite"
7986
-
7987
- #: templates/submit-listing-images.tpl.php:62
7988
- #, fuzzy
7989
- msgctxt "templates"
7990
- msgid "Image width"
7991
- msgstr "Ancho de imagen:"
7992
-
7993
- #: templates/submit-listing-images.tpl.php:70
7994
- #, fuzzy
7995
- msgctxt "templates"
7996
- msgid "Image height"
7997
- msgstr "Alto de imagen:"
7998
-
7999
- #: includes/gateways/class-gateway-authorize-net.php:20
8000
- msgctxt "authorize-net"
8001
- msgid "Authorize.net"
8002
- msgstr "Authorize.net"
8003
-
8004
- #: includes/gateways/class-gateway-authorize-net.php:38
8005
- msgctxt "authorize-net"
8006
- msgid "Login ID"
8007
- msgstr "Login ID"
8008
-
8009
- #: includes/gateways/class-gateway-authorize-net.php:39
8010
- msgctxt "authorize-net"
8011
- msgid "Transaction Key"
8012
- msgstr "Clave Transaccional"
8013
-
8014
- #: includes/gateways/class-gateway-authorize-net.php:71
8015
- msgctxt "authorize-net"
8016
- msgid "Login ID is missing."
8017
- msgstr "Falta el \"Login ID\"."
8018
-
8019
- #: includes/gateways/class-gateway-authorize-net.php:74
8020
- msgctxt "authorize-net"
8021
- msgid "Transaction Key is missing."
8022
- msgstr "Falta la clave de transacciones."
8023
-
8024
- #: includes/gateways/class-gateway-authorize-net.php:103
8025
- msgctxt "authorize-net"
8026
- msgid ""
8027
- "Payment is being held for review by the payment gateway. The following "
8028
- "reason was given: \"%s\"."
8029
- msgstr ""
8030
- "Su pago está en proceso de verificación por la pasarela de pago. La razón "
8031
- "dada fue: \"%s\"."
8032
-
8033
- #: includes/gateways/class-gateway-authorize-net.php:112
8034
- msgctxt "authorize-net"
8035
- msgid ""
8036
- "The payment gateway didn't accept the credit card or billing information. "
8037
- "The following reason was given: \"%s\"."
8038
- msgstr ""
8039
- "La pasarela de pago no aceptó su tarjeta de crédito o información de pago. "
8040
- "La razón dada fue \"%s\"."
8041
-
8042
- #: includes/gateways/class-gateway-authorize-net.php:121
8043
- msgctxt "authorize-net"
8044
- msgid "Payment was rejected. The following reason was given: \"%s\"."
8045
- msgstr "El pago fue rechazado. La razón dada fue: \"%s\"."
8046
-
8047
- #: includes/gateways/class-gateway-authorize-net.php:179
8048
- msgctxt "authorize-net"
8049
- msgid "Payment failed. Reason: %s"
8050
- msgstr "El pago falló. La razón dada fue: %s"
8051
-
8052
- #: includes/gateways/class-gateway-authorize-net.php:204
8053
- msgctxt "authorize-net"
8054
- msgid "Listing #%d"
8055
- msgstr "Listado #%d"
8056
-
8057
- #: includes/helpers/class-access-keys-sender.php:20
8058
- msgctxt "access keys sender"
8059
- msgid "<email-address> is not a valid e-mail address."
8060
- msgstr "La dirección de correo electrónico <email-address> no es válida."
8061
-
8062
- #: includes/helpers/class-access-keys-sender.php:29
8063
- msgctxt "access keys sender"
8064
- msgid "There are no listings associated to e-mail address <email-address>."
8065
- msgstr ""
8066
- "No hay listados asociados a la dirección de correo electrónico <email-"
8067
- "address>."
8068
-
8069
- #: includes/helpers/class-access-keys-sender.php:46
8070
- msgctxt "access keys sender"
8071
- msgid "Listing Access Keys"
8072
- msgstr "Claves de acceso para sus listados"
8073
-
8074
- #: includes/helpers/class-access-keys-sender.php:50
8075
- msgctxt "access keys sender"
8076
- msgid ""
8077
- "An error occurred while sending the access keys for e-mail address <email-"
8078
- "address>. Please try again."
8079
- msgstr ""
8080
- "Un error ocurrió mientras se enviaban las claves de acceso para la dirección "
8081
- "de correo electrónico <email-address>. Por favor intente de nuevo."
8082
-
8083
- #: includes/helpers/class-fs.php:112
8084
- msgctxt "fs helper"
8085
- msgid "Destination dir \"%s\" is not writable."
8086
- msgstr "El directorio de destino \"%s\" no se puede escribir."
8087
-
8088
- #: includes/helpers/listing_flagging.php:42
8089
- #: includes/helpers/listing_flagging.php:65
8090
- msgctxt "flag listing"
8091
- msgid "Listing ID is required to save a report"
8092
- msgstr "El ID de listado es necesario para guardar un reporte"
8093
-
8094
- #: includes/helpers/listing_flagging.php:73
8095
- msgctxt "flag listing"
8096
- msgid "User ID or IP address is required to save a report"
8097
- msgstr ""
8098
- "El ID del usuario o la dirección IP son necesarias para guardar un reporte"
8099
-
8100
- #: includes/helpers/listing_flagging.php:80
8101
- msgctxt "flag listing"
8102
- msgid "Report reason is required to save a report"
8103
- msgstr "La razón del reporte es necesaria para guardarlo"
8104
-
8105
- #: includes/helpers/listing_flagging.php:84
8106
- msgctxt "flag listing"
8107
- msgid "Report comment is required to save a report"
8108
- msgstr "Comentario del reporte es necesario para guardarlo"
8109
-
8110
- #: includes/installer.php:53
8111
- msgctxt "default category name"
8112
- msgid "General"
8113
- msgstr "General"
8114
-
8115
- #: includes/licensing.php:569
8116
- msgctxt "licensing"
8117
- msgid "Could not contact licensing server"
8118
- msgstr "No se pudo contactar el servidor de licencias"
8119
-
8120
- #: includes/licensing.php:582
8121
- msgctxt "licensing"
8122
- msgid ""
8123
- "It was not possible to establish a connection with Business Directory's "
8124
- "server. cURL was not found in your system"
8125
- msgstr ""
8126
- "No fue posible establecer una conexión con el servidor de Business "
8127
- "Directory. cURL no se encontró en su sistema"
8128
-
8129
- #: includes/licensing.php:584 includes/licensing.php:614
8130
- msgctxt "licensing"
8131
- msgid ""
8132
- "To ensure the security of our systems and adhere to industry best practices, "
8133
- "we require that your server uses a recent version of cURL and a version of "
8134
- "OpenSSL that supports TLSv1.2 (minimum version with support is OpenSSL "
8135
- "1.0.1c)."
8136
- msgstr ""
8137
- "Para garantizar las seguridad de nuestros sistemas y adherir las prácticas "
8138
- "recomendadas de la industria, requerimos que su servidor use una versión "
8139
- "reciente de cURL and una versión de OpenSSL que soporte TLSv1.2 (la versión "
8140
- "mínimo con este soporte es OpenSSL 1.0.1c)."
8141
-
8142
- #: includes/licensing.php:586 includes/licensing.php:616
8143
- msgctxt "licensing"
8144
- msgid ""
8145
- "Upgrading your system will not only allow you to communicate with Business "
8146
- "Directory servers but also help you prepare your website to interact with "
8147
- "services using the latest security standards."
8148
- msgstr ""
8149
- "Actualizar su sistema no solo le permitirá comunicarse con los servidores de "
8150
- "Business Directory, también lo ayudará a prepararse para interactuar con "
8151
- "otros servicios que usen los últimos estándares de seguridad."
8152
-
8153
- #: includes/licensing.php:588
8154
- msgctxt "licensing"
8155
- msgid ""
8156
- "Please contact your hosting provider and ask them to upgrade your system. "
8157
- "Include this message if necessary"
8158
- msgstr ""
8159
- "Por favor contacte a su proveedor de hospedaje y solicite que actualicen su "
8160
- "sistema. Incluya este mensaje si es necesario"
8161
-
8162
- #: includes/licensing.php:618
8163
- msgctxt "licensing"
8164
- msgid ""
8165
- "Please contact your hosting provider and ask them to upgrade your system. "
8166
- "Include this message if necessary."
8167
- msgstr ""
8168
- "Por favor contacte a su proveedor de hospedaje y solicite que actualicen su "
8169
- "sistema. Incluya este mensaje si es necesario."
8170
-
8171
- #: includes/licensing.php:654
8172
- msgctxt "licensing"
8173
- msgid "The server returned a 403 Forbidden error."
8174
- msgstr "El servidor retornó un error 403 Forbidden."
8175
-
8176
- #: includes/licensing.php:885
8177
- msgctxt "licensing"
8178
- msgid "Could not activate license: %s."
8179
- msgstr "No se pudo activar la licencia: %s."
8180
-
8181
- #: includes/licensing.php:889
8182
- msgctxt "licensing"
8183
- msgid "License activated"
8184
- msgstr "Licencia activada"
8185
-
8186
- #: includes/licensing.php:914
8187
- msgctxt "licensing"
8188
- msgid "Could not deactivate license: %s."
8189
- msgstr "No se pudo desactivar la licencia: %s."
8190
-
8191
- #: includes/licensing.php:916
8192
- msgctxt "licensing"
8193
- msgid "License deactivated"
8194
- msgstr "Licencia desactivada"
8195
-
8196
- #. translators: "<module-name>" version <version-number> is not...
8197
- #: includes/licensing.php:1125
8198
- msgctxt "deprecation"
8199
- msgid ""
8200
- "\"%1$s\" version %2$s is not compatible with Business Directory Plugin 5.0. "
8201
- "Please update this module to the latest available version."
8202
- msgstr ""
8203
- "“%1$s”, en su versión %2$s, no es compatible con Business Directory Plugin "
8204
- "5.0. Por favor actualice el module a la versión disponible más reciente."
8205
-
8206
- #: includes/payment.php:61
8207
- msgctxt "payments"
8208
- msgid "Payment #%s"
8209
- msgstr "Pago #%s"
8210
-
8211
- #: includes/payment.php:92
8212
- msgctxt "checkout"
8213
- msgid "Print Receipt"
8214
- msgstr "Imprimir recibo"
8215
-
8216
- #: includes/views/checkout.php:111
8217
- msgctxt "checkout"
8218
- msgid "Can not process a payment at this time. Please try again later."
8219
- msgstr ""
8220
- "No podemos procesar su pago en este momento. Por favor intente más tarde."
8221
-
8222
- #: includes/views/checkout.php:149
8223
- msgctxt "checkout"
8224
- msgid "Invalid nonce received."
8225
- msgstr "El código de verificación recibido es inválido."
8226
-
8227
- #: includes/views/checkout.php:164
8228
- msgctxt "checkout"
8229
- msgid "Invalid gateway selected."
8230
- msgstr "La pasarela de pago seleccionada es inválida."
8231
-
8232
- #: includes/views/checkout.php:169
8233
- msgctxt "checkout"
8234
- msgid "Selected gateway does not support payment's currency."
8235
- msgstr "La pasarela de pago seleccionada no soporta la moneda de este pago."
8236
-
8237
- #: includes/views/checkout.php:178
8238
- msgctxt "checkout"
8239
- msgid "Pay Now"
8240
- msgstr "Pagar ahora"
8241
-
8242
- #: includes/views/checkout.php:225
8243
- msgctxt "checkout"
8244
- msgid "Unknown gateway error."
8245
- msgstr "Error desconocido en la pasarela de pago."
8246
-
8247
- #: includes/views/checkout.php:245
8248
- msgctxt "checkout"
8249
- msgid ""
8250
- "There was an error trying to process your request. No gateway is selected."
8251
- msgstr ""
8252
- "Ocurrió un error mientras estábamos procesando su petición. No se seleccionó "
8253
- "ninguna pasarela de pago."
8254
-
8255
- #: templates/checkout-confirmation.tpl.php:7
8256
- msgctxt "checkout"
8257
- msgid ""
8258
- "Your payment is on hold. Please contact the admin if you need further "
8259
- "details."
8260
- msgstr ""
8261
- "Su pago está en espera. Por favor contacte el administrador si necesita "
8262
- "detalles adicionales."
8263
-
8264
- #: templates/checkout-confirmation.tpl.php:10
8265
- msgctxt "checkout"
8266
- msgid ""
8267
- "Your payment was rejected. Please contact the admin for further details."
8268
- msgstr ""
8269
- "El pago fue rechazado por la pasarela de pago. Por favor contacte el "
8270
- "administrador del sitio para obtener información adicional."
8271
-
8272
- #: templates/checkout-confirmation.tpl.php:13
8273
- msgctxt "checkout"
8274
- msgid "The payment (#%s) was canceled at your request."
8275
- msgstr "El pago (#%s) fue cancelado atendiendo su solicitud."
8276
-
8277
- #: templates/checkout-confirmation.tpl.php:17
8278
- msgctxt "checkout"
8279
- msgid "Your payment is awaiting verification by the gateway."
8280
- msgstr ""
8281
- "Su pago está pendiente de ser verificado por parte de la pasarela de pago."
8282
-
8283
- #: templates/checkout-confirmation.tpl.php:19
8284
- msgctxt "checkout"
8285
- msgid ""
8286
- "Verification usually takes some minutes. This page will automatically "
8287
- "refresh if there's an update."
8288
- msgstr ""
8289
- "La verificación usualmente toma unos minutos. Está página se actualizará "
8290
- "automáticamente cuando haya un cambio en el estado del pago."
8291
-
8292
- #: templates/checkout.tpl.php:10
8293
- msgctxt "checkout"
8294
- msgid "Checkout"
8295
- msgstr "Pago"
8296
-
8297
- #: templates/checkout.tpl.php:31
8298
- msgctxt "checkout"
8299
- msgid ""
8300
- "Recurring fee plans require a payment method to renew your listing at the "
8301
- "end of the term."
8302
- msgstr ""
8303
- "Planes recurrentes requieren un método de pago para renovar el listado al "
8304
- "final del periodo."
8305
-
8306
- #: templates/checkout.tpl.php:37
8307
- msgctxt "checkout"
8308
- msgid "Select a Payment Method"
8309
- msgstr "Método de pago"
8310
-
8311
- #: includes/templates-ui.php:404
8312
- msgctxt "templates sort"
8313
- msgid "Sort By:"
8314
- msgstr "Ordenar Por:"
8315
-
8316
- #: includes/utils.php:416
8317
- msgctxt "utils"
8318
- msgid ""
8319
- "POSTed data exceeds PHP config. maximum. See \"post_max_size\" directive."
8320
- msgstr ""
8321
- "Los datos enviados via POST superan el valor máximo configurado en PHP. "
8322
- "Revise la directiva \"post_max_size\" de su configuración."
8323
-
8324
- #: includes/utils.php:463
8325
- msgctxt "utils"
8326
- msgid "File size (%s) exceeds maximum file size of %s"
8327
- msgstr "El tamaño de archivo (%s) excede el tamaño máximo permitido de %s"
8328
-
8329
- #: includes/utils.php:471
8330
- msgctxt "utils"
8331
- msgid "File size (%s) is inferior to the required minimum file size of %s"
8332
- msgstr "El tamaño de archivo (%s) es inferior al tamaño mínimo requerido de %s"
8333
-
8334
- #: includes/utils.php:480 includes/utils.php:487
8335
- msgctxt "utils"
8336
- msgid "File type \"%s\" is not allowed"
8337
- msgstr "El tipo de archivo \"%s\" no está permitido"
8338
-
8339
- #: includes/utils.php:494
8340
- msgctxt "utils"
8341
- msgid "Unkown error while uploading file."
8342
- msgstr "Error desconocido mientras se subía el archivo."
8343
-
8344
- #: includes/utils.php:513
8345
- msgctxt "utils"
8346
- msgid "Uploaded file is not an image"
8347
- msgstr "El archivo subido no es una imagen"
8348
-
8349
- #: includes/utils.php:522
8350
- msgctxt "utils"
8351
- msgid "Image width (%s px) is inferior to minimum required width of %s px."
8352
- msgstr ""
8353
- "El ancho de la imagen (%s px) es inferior al mínimo requerido de %s px."
8354
-
8355
- #: includes/utils.php:528
8356
- msgctxt "utils"
8357
- msgid "Image height (%s px) is inferior to minimum required height of %s px."
8358
- msgstr "El alto de la imagen (%s px) es inferior al mínimo requerido de %s px."
8359
-
8360
- #: includes/utils.php:534
8361
- msgctxt "utils"
8362
- msgid "Image width (%s px) is greater than maximum allowed width of %s px."
8363
- msgstr ""
8364
- "El ancho de la imagen (%s px) es superior al máximo permitido de %s px."
8365
-
8366
- #: includes/utils.php:540
8367
- msgctxt "utils"
8368
- msgid "Image height (%s px) is greater than maximum required height of %s px."
8369
- msgstr "El alto de la imagen (%s px) es superior al máximo permitido de %s px."
8370
-
8371
- #: includes/utils.php:554
8372
- msgctxt "utils"
8373
- msgid "Error while uploading file"
8374
- msgstr "Ocurrió un error mientras se subía el archivo"
8375
-
8376
- #: includes/views/delete_listing.php:36
8377
- msgctxt "delete listing"
8378
- msgid "Your listing has been deleted."
8379
- msgstr "Su listado ha sido eliminado."
8380
-
8381
- #: templates/delete-listing-confirm.tpl.php:7
8382
- msgctxt "delete listing"
8383
- msgid ""
8384
- "Your listing is associated to a recurring payment. If you don't cancel the "
8385
- "recurring payment before deleting the listing, you might be charged for "
8386
- "additional periods even though your listing won't be available."
8387
- msgstr ""
8388
- "Su listado está asociado a un pago recurrente. Si no cancela los pagos "
8389
- "recurrentes antes de eliminar el listado, puede que se le cobren más "
8390
- "períodos aún cuando su listado no estaría disponible."
8391
-
8392
- #: templates/delete-listing-confirm.tpl.php:12
8393
- msgctxt "delete listing"
8394
- msgid ""
8395
- "Please visit <a>Manage recurring payments</a> to review your current "
8396
- "recurring payments."
8397
- msgstr ""
8398
- "Por favor visite <a>Administrar pagos recurrentes</a> para revisar sus pagos "
8399
- "recurrentes actuales."
8400
-
8401
- #: templates/delete-listing-confirm.tpl.php:18
8402
- msgctxt "delete listing"
8403
- msgid "You are about to remove your listing \"%s\" from the directory."
8404
- msgstr "Está a punto de eliminar su listado \"%\" del directorio."
8405
-
8406
- #: templates/delete-listing-confirm.tpl.php:24
8407
- msgctxt "delete listing"
8408
- msgid "No. Take me back to the directory."
8409
- msgstr "No. Regresar al Directorio."
8410
-
8411
- #: templates/delete-listing-confirm.tpl.php:25
8412
- msgctxt "delete listing"
8413
- msgid "Yes. Delete my listing."
8414
- msgstr "Sí. Eliminar mi listado."
8415
-
8416
- #: includes/views/listing_contact.php:51
8417
- msgctxt "contact-message"
8418
- msgid "Please enter your name."
8419
- msgstr "Por favor ingrese su nombre."
8420
-
8421
- #: includes/views/listing_contact.php:55
8422
- msgctxt "contact-message"
8423
- msgid "Please enter a valid email."
8424
- msgstr "Por favor ingrese un correo electrónico válido."
8425
-
8426
- #: includes/views/listing_contact.php:59
8427
- msgctxt "contact-message"
8428
- msgid "You did not enter a message."
8429
- msgstr "No ingresó mensaje alguno."
8430
-
8431
- #: includes/views/listing_contact.php:268
8432
- msgctxt "contact-message"
8433
- msgid "Your message has been sent."
8434
- msgstr "Su mensaje ha sido enviado."
8435
-
8436
- #: includes/views/listing_contact.php:290
8437
- msgctxt "contact-message"
8438
- msgid "There was a problem encountered. Your message has not been sent"
8439
- msgstr "Se ha encontrado un problema. Su mensaje no fue enviado"
8440
-
8441
- #: includes/views/listing_contact.php:293
8442
- msgctxt "contact-message"
8443
- msgid "Return to listing."
8444
- msgstr "Regresar al listado."
8445
-
8446
- #: includes/views/listing_contact.php:78
8447
- msgctxt "contact form"
8448
- msgid "Please <a>log in</a> to be able to send messages to the listing owner."
8449
- msgstr "Por favor <a>ingrese</a> para enviar mensajes al dueño del listado."
8450
-
8451
- #: includes/views/listing_contact.php:177
8452
- msgctxt "contact form"
8453
- msgid "This contact form is temporarily disabled. Please try again later."
8454
- msgstr ""
8455
- "El formulario de contacto está temporalmente deshabilitado. Por favor "
8456
- "intente más tarde."
8457
-
8458
- #: includes/views/login.php:47
8459
- msgctxt "views:login"
8460
- msgid "Please enter a valid e-mail/access key combination."
8461
- msgstr ""
8462
- "Por favor ingrese una combinación válida de dirección de correo electrónico "
8463
- "y clave de acceso."
8464
-
8465
- #: includes/views/manage_listings.php:26
8466
- msgctxt "view:manage-listings"
8467
- msgid "Please <a>login</a> to manage your listings."
8468
- msgstr "Por favor <a>ingrese</a> para administrar sus listados."
8469
-
8470
- #: includes/views/manage_listings.php:97
8471
- msgctxt "view:manage-listings"
8472
- msgid "Renew Listing"
8473
- msgstr "Renovar Listado"
8474
-
8475
- #: includes/views/manage_recurring.php:36
8476
- msgctxt "manage subscription"
8477
- msgid "The listing with id = <listing-id> doesn't exists."
8478
- msgstr "El listado con ID = <listing-id> no existe."
8479
-
8480
- #: includes/views/manage_recurring.php:45
8481
- msgctxt "manage subscriptions"
8482
- msgid ""
8483
- "You are not authorized to cancel this subscription. The link you followed is "
8484
- "invalid."
8485
- msgstr ""
8486
- "Usted no está autorizado para cancelar esta subscripción. El enlace que "
8487
- "siguió no es válido."
8488
-
8489
- #: includes/views/manage_recurring.php:56
8490
- msgctxt "manage subscriptions"
8491
- msgid "Invalid subscription."
8492
- msgstr "Suscripción inválida."
8493
-
8494
- #: includes/views/manage_recurring.php:79
8495
- msgctxt "manage subscriptions"
8496
- msgid "Your subscription was canceled."
8497
- msgstr "Suscripción cancelada."
8498
-
8499
- #: templates/manage-recurring.tpl.php:6
8500
- msgctxt "manage subscriptions"
8501
- msgid "Subscription / Fee Plan"
8502
- msgstr "Suscripción / Comisión"
8503
-
8504
- #: includes/views/manage_recurring.php:96
8505
- msgctxt "manage listings"
8506
- msgid "You are not on recurring payments for any of your listings."
8507
- msgstr "No tiene pagos recurrentes configurados para ninguno de sus listados."
8508
-
8509
- #: includes/views/renew_listing.php:22
8510
- msgctxt "renewal"
8511
- msgid "Listing renewal is disabled at this moment. Please try again later."
8512
- msgstr ""
8513
- "La renovación de listados está desactivada en este momento. Por favor "
8514
- "intente más tarde."
8515
-
8516
- #: includes/views/renew_listing.php:30
8517
- msgctxt "renewal"
8518
- msgid ""
8519
- "Your renewal ID is invalid. Please use the URL you were given on the renewal "
8520
- "e-mail message."
8521
- msgstr ""
8522
- "Su ID de renovación es inválido. Por favor utilice la URL que le fue enviada "
8523
- "con el mensaje de correo electrónico de renovación."
8524
-
8525
- #: includes/views/renew_listing.php:66
8526
- msgctxt "renewal"
8527
- msgid "Your listing has been removed from the directory."
8528
- msgstr "Su listado ha sido eliminado."
8529
-
8530
- #: includes/views/renew_listing.php:68
8531
- msgctxt "renewal"
8532
- msgid "Could not remove listing from directory."
8533
- msgstr "No se pudo eliminar el listado."
8534
-
8535
- #: templates/renew-listing-manage-subscription.tpl.php:6
8536
- msgctxt "renewal"
8537
- msgid "Current Fee Details"
8538
- msgstr "Detalles de Comisión"
8539
-
8540
- #: templates/renew-listing-manage-subscription.tpl.php:9
8541
- msgctxt "renewal"
8542
- msgid "Name:"
8543
- msgstr "Nombre:"
8544
-
8545
- #: templates/renew-listing-manage-subscription.tpl.php:11
8546
- msgctxt "renewal"
8547
- msgid "Number of images:"
8548
- msgstr "Número de imágenes:"
8549
-
8550
- #: templates/renew-listing-manage-subscription.tpl.php:13
8551
- msgctxt "renewal"
8552
- msgid "Expiration date:"
8553
- msgstr "Fecha de expiración:"
8554
-
8555
- #: templates/renew-listing.tpl.php:15
8556
- msgctxt "renewal"
8557
- msgid "Proceed to Checkout"
8558
- msgstr "Proceder al pago"
8559
-
8560
- #: templates/renew-listing.tpl.php:40
8561
- msgctxt "renewal"
8562
- msgid ""
8563
- "Clicking the button below will cause your listing to be permanently removed "
8564
- "from the directory."
8565
- msgstr ""
8566
- "Una vez haga click en el botón que está debajo su listado será eliminado del "
8567
- "directorio permenentemente."
8568
-
8569
- #: templates/renew-resume.tpl.php:10
8570
- msgctxt "renewal"
8571
- msgid "Renew Fee Resume"
8572
- msgstr "Resumen de tarifa de renovación"
8573
-
8574
- #: templates/renew-resume.tpl.php:15
8575
- msgctxt "renewal"
8576
- msgid "You are about to renew the listing %s."
8577
- msgstr "Está a punto de renovar el listado “%”."
8578
-
8579
- #: templates/renew-resume.tpl.php:20
8580
- msgctxt "renewal"
8581
- msgid "In order to complete the renewal, please confirm fee selection."
8582
- msgstr "Para completar la renovación, por favor confirme la tarifa."
8583
-
8584
- #: includes/views/renew_listing.php:149
8585
- msgctxt "listings"
8586
- msgid "Fee \"%s\" renewal."
8587
- msgstr "Renovación de comisión “%s”."
8588
-
8589
- #: includes/views/request_access_keys.php:13
8590
- msgctxt "request_access_keys"
8591
- msgid "Did you mean to <a>access the Directory</a>?"
8592
- msgstr "¿Esta intentando <a>ingresar al directorio</a>?"
8593
-
8594
- #: includes/views/request_access_keys.php:39
8595
- msgctxt "request_access_keys"
8596
- msgid "Access keys have been sent to your e-mail address."
8597
- msgstr "Las claves de acceso han sido enviadas a su dirección de correo."
8598
-
8599
- #: includes/views/request_access_keys.php:44
8600
- msgctxt "request_access_keys"
8601
- msgid "← Return to previous page"
8602
- msgstr "← Regresar a la página anterior"
8603
-
8604
- #: includes/views/search.php:42
8605
- msgctxt "search"
8606
- msgid "\"%s\" is required."
8607
- msgstr "“%s” es requerido."
8608
-
8609
- #: templates/search-form.tpl.php:27
8610
- msgctxt "search"
8611
- msgid "Clear"
8612
- msgstr "Limpiar"
8613
-
8614
- #: templates/search-form.tpl.php:28 templates/search.tpl.php:3
8615
- msgctxt "search"
8616
- msgid "Search"
8617
- msgstr "Buscar"
8618
-
8619
- #: templates/search.tpl.php:10
8620
- msgctxt "search"
8621
- msgid "Search Results"
8622
- msgstr "Resultados de Búsqueda"
8623
-
8624
- #: includes/views/show_listing.php:12
8625
- msgctxt "preview"
8626
- msgid "This is just a preview. The listing has not been published yet."
8627
- msgstr ""
8628
- "Esta es tan solo una previsualización. El listado no ha sido publicado aún."
8629
-
8630
- #: includes/views/submit_listing.php:1111
8631
- msgctxt "listing submit"
8632
- msgid ""
8633
- "Image upload is required, please provide at least one image and submit again."
8634
- msgstr "Es necesario subir al menos una imagen para publicar un listado."
8635
-
8636
- #: templates/submit-listing-plan-selection-complete.tpl.php:25
8637
- msgctxt "listing submit"
8638
- msgid "Change category/plan"
8639
- msgstr "Cambiar categoría y comisión"
8640
-
8641
- #: includes/widgets/class-listings-widget.php:45
8642
- #: includes/widgets/widget-search.php:22
8643
- msgctxt "widgets"
8644
- msgid "Title:"
8645
- msgstr "Título:"
8646
-
8647
- #: includes/widgets/class-listings-widget.php:51
8648
- msgctxt "widgets"
8649
- msgid "Number of listings to display:"
8650
- msgstr "Número de listados a mostrar:"
8651
-
8652
- #: includes/widgets/class-listings-widget.php:60
8653
- msgctxt "widgets"
8654
- msgid "Thumbnails"
8655
- msgstr "Imagen de previsualización"
8656
-
8657
- #: includes/widgets/class-listings-widget.php:68
8658
- msgctxt "widgets"
8659
- msgid "Show thumbnails"
8660
- msgstr "Mostrar imágenes destacadas"
8661
-
8662
- #: includes/widgets/class-listings-widget.php:72
8663
- msgctxt "widgets"
8664
- msgid "Image width (in px):"
8665
- msgstr "Ancho de imagen (en px):"
8666
-
8667
- #: includes/widgets/class-listings-widget.php:78
8668
- msgctxt "widgets"
8669
- msgid "Leave blank for automatic width."
8670
- msgstr "Deje en blanco para ancho automático."
8671
-
8672
- #: includes/widgets/class-listings-widget.php:83
8673
- msgctxt "widgets"
8674
- msgid "Image height (in px):"
8675
- msgstr "Alto de imagen (en px):"
8676
-
8677
- #: includes/widgets/class-listings-widget.php:89
8678
- msgctxt "widgets"
8679
- msgid "Leave blank for automatic height."
8680
- msgstr "Deje en blanco para alto automático."
8681
-
8682
- #: includes/widgets/widget-featured-listings.php:11
8683
- msgctxt "widgets"
8684
- msgid "Business Directory - Featured Listings"
8685
- msgstr "Directorio de Negocios - Listados Destacados"
8686
-
8687
- #: includes/widgets/widget-featured-listings.php:12
8688
- msgctxt "widgets"
8689
- msgid "Displays a list of the featured/sticky listings in the directory."
8690
- msgstr "Muestra una lista de listados destacados en el Directorio."
8691
-
8692
- #: includes/widgets/widget-featured-listings.php:14
8693
- msgctxt "widgets"
8694
- msgid "Featured Listings"
8695
- msgstr "Listados Destacados"
8696
-
8697
- #: includes/widgets/widget-featured-listings.php:23
8698
- msgctxt "widgets"
8699
- msgid "Display listings in random order"
8700
- msgstr "Mostrar listados en orden aleatorio"
8701
-
8702
- #: includes/widgets/widget-latest-listings.php:11
8703
- msgctxt "widgets"
8704
- msgid "Business Directory - Latest Listings"
8705
- msgstr "Directorio de Negocios - Últimos Listados"
8706
-
8707
- #: includes/widgets/widget-latest-listings.php:12
8708
- msgctxt "widgets"
8709
- msgid "Displays a list of the latest listings in the Business Directory."
8710
- msgstr "Muestra una lista de los últimos listados del Directorio de Negocios."
8711
-
8712
- #: includes/widgets/widget-latest-listings.php:14
8713
- msgctxt "widgets"
8714
- msgid "Latest Listings"
8715
- msgstr "Últimos Listados"
8716
-
8717
- #: includes/widgets/widget-random-listings.php:11
8718
- msgctxt "widgets"
8719
- msgid "Business Directory - Random Listings"
8720
- msgstr "Directorio de Negocios - Listados Aleatorios"
8721
-
8722
- #: includes/widgets/widget-random-listings.php:12
8723
- msgctxt "widgets"
8724
- msgid "Displays a list of random listings from the Business Directory."
8725
- msgstr "Muestra una lista aleatoria de listados del Directorio de Negocios."
8726
-
8727
- #: includes/widgets/widget-random-listings.php:14
8728
- msgctxt "widgets"
8729
- msgid "Random Listings"
8730
- msgstr "Listados Aleatorios"
8731
-
8732
- #: includes/widgets/widget-search.php:10
8733
- msgctxt "widgets"
8734
- msgid "Business Directory - Search"
8735
- msgstr "Directorio de Negocios - Búsqueda"
8736
-
8737
- #: includes/widgets/widget-search.php:11
8738
- msgctxt "widgets"
8739
- msgid "Displays a search form to look for Business Directory listings."
8740
- msgstr ""
8741
- "Muestra un formulario de búsqueda para encontrar listados del Directorio de "
8742
- "Negocios."
8743
-
8744
- #: includes/widgets/widget-search.php:18
8745
- msgctxt "widgets"
8746
- msgid "Search the Business Directory"
8747
- msgstr "Buscar en el Directorio de Negocios"
8748
-
8749
- #: includes/widgets/widget-search.php:29
8750
- msgctxt "widgets"
8751
- msgid "Form Style:"
8752
- msgstr "Estilo de Formulario:"
8753
-
8754
- #: includes/widgets/widget-search.php:37
8755
- msgctxt "widgets"
8756
- msgid "Basic"
8757
- msgstr "Básico"
8758
-
8759
- #: includes/widgets/widget-search.php:45
8760
- msgctxt "widgets"
8761
- msgid "Advanced"
8762
- msgstr "Avanzado"
8763
-
8764
- #: includes/widgets/widget-search.php:49
8765
- msgctxt "widgets"
8766
- msgid "Search Fields (advanced mode):"
8767
- msgstr "Campos de Búsqueda (modo avanzado):"
8768
-
8769
- #: includes/widgets/widget-search.php:50
8770
- msgctxt "widgets"
8771
- msgid "Display the following fields in the form."
8772
- msgstr "Mostrar los siguientes campos en el formulario."
8773
-
8774
- #: includes/widgets/widget-search.php:111
8775
- msgctxt "widgets"
8776
- msgid "Search"
8777
- msgstr "Buscar"
8778
-
8779
- #: templates/admin/csv-export.tpl.php:98 templates/admin/csv-export.tpl.php:117
8780
- #: templates/admin/csv-export.tpl.php:128 templates/admin/csv-import.tpl.php:50
8781
- #: templates/admin/csv-import.tpl.php:116
8782
- #: templates/admin/csv-import.tpl.php:142
8783
- #: templates/admin/csv-import.tpl.php:153
8784
- #: templates/admin/csv-import.tpl.php:199
8785
- msgctxt "admin forms"
8786
- msgid "required"
8787
- msgstr "requerido"
8788
-
8789
- #: templates/admin/home.tpl.php:12
8790
- msgctxt "admin home"
8791
- msgid "Welcome to Business Directory Plugin. You are using %s."
8792
- msgstr "Bienvenido a Business Directory Plugin."
8793
-
8794
- #: templates/admin/home.tpl.php:15
8795
- msgctxt "admin home"
8796
- msgid ""
8797
- "Thanks for choosing us. There's a lot you probably want to get done, so "
8798
- "let's jump right in!"
8799
- msgstr ""
8800
- "Gracias por elegirnos. Probablemente hay mucho que desea hacer, así que "
8801
- "¡entremos en materia!"
8802
-
8803
- #: templates/admin/home.tpl.php:28
8804
- msgctxt "admin home"
8805
- msgid ""
8806
- "Our complete documentation is <a>here</a> which we encourage you to use "
8807
- "while setting things up."
8808
- msgstr ""
8809
- "Le sugerimos leer nuestra documentación completa que se encuentra <a>aquí</"
8810
- "a> mientras configura su sitio."
8811
-
8812
- #: templates/admin/home.tpl.php:36
8813
- msgctxt "admin home"
8814
- msgid ""
8815
- "We have some quick-start scenarios that you will find useful regarding setup "
8816
- "and configuration <a>here</a>."
8817
- msgstr ""
8818
- "Tenemos <a>aquí</a> algunos escenarios de \"inicio rápido\" que podría "
8819
- "encontrar útiles."
8820
-
8821
- #: templates/admin/home.tpl.php:45
8822
- msgctxt "admin home"
8823
- msgid ""
8824
- "If you have questions, please post a comment on <a>support forum</a> and "
8825
- "we'll answer it within 24 hours most days."
8826
- msgstr ""
8827
- "Si tiene preguntas, por favor escríbanos un comentario en el <a>foro de "
8828
- "soporte</a> y le estaremos respondiendo en un plazo de 24 horas "
8829
- "aproximadamente."
8830
-
8831
- #: templates/admin/metaboxes-listing-information-plan.tpl.php:120
8832
- msgctxt "admin infometabox"
8833
- msgid "Renewal url (copy & paste)"
8834
- msgstr "URL de renovación (copiar y pegar)"
8835
-
8836
- #: templates/admin/metaboxes-listing-information-plan.tpl.php:120
8837
- msgctxt "admin infometabox"
8838
- msgid "Get renewal URL"
8839
- msgstr "Obtener nueva URL"
8840
-
8841
- #: templates/admin/metaboxes-listing-information-plan.tpl.php:134
8842
- msgctxt "admin infometabox"
8843
- msgid "Send renewal e-mail"
8844
- msgstr "Enviar correo electrónico de renovación"
8845
-
8846
- #: templates/admin/metaboxes-listing-information-plan.tpl.php:139
8847
- msgctxt "admin infometabox"
8848
- msgid "Renew listing"
8849
- msgstr "Renovar listado"
8850
-
8851
- #: templates/admin/sidebar.tpl.php:47
8852
- msgctxt "admin sidebar"
8853
- msgid "If you've found a bug or need support <a>let us know!</a>"
8854
- msgstr "Si ha encontrado un error o necesita soporte <a>¡contáctenos!</a>"
8855
-
8856
- #: templates/admin/sidebar.tpl.php:52
8857
- msgctxt "admin sidebar"
8858
- msgid "Full plugin documentation"
8859
- msgstr "Documentación completa del plugin"
8860
-
8861
- #: templates/admin/sidebar.tpl.php:53
8862
- msgctxt "admin sidebar"
8863
- msgid "Quick Start Guide"
8864
- msgstr "Guía de Inicio Rápido"
8865
-
8866
- #: templates/admin/sidebar.tpl.php:54
8867
- msgctxt "admin sidebar"
8868
- msgid "Video Tutorials"
8869
- msgstr "Videotutoriales"
8870
-
8871
- #: templates/admin/themes-delete-confirm.tpl.php:1
8872
- #: templates/admin/themes-delete-confirm.tpl.php:13
8873
- msgctxt "themes admin"
8874
- msgid "Delete Directory Theme"
8875
- msgstr "Eliminar Tema del Directorio"
8876
-
8877
- #: templates/admin/themes-delete-confirm.tpl.php:3
8878
- msgctxt "themes admin"
8879
- msgid "Are you sure you want to delete the directory theme \"%s\"?"
8880
- msgstr "¿Está seguro de que desea eliminar el tema \"%s\"?"
8881
-
8882
- #: templates/admin/themes-delete-confirm.tpl.php:12
8883
- msgctxt "themes admin"
8884
- msgid "Cancel"
8885
- msgstr "Cancelar"
8886
-
8887
- #: templates/admin/uninstall-capture-form.tpl.php:5
8888
- msgctxt "uninstall"
8889
- msgid "It doesn't work with my theme/plugins/site"
8890
- msgstr "No funciona con mi sitio, temas o plugins"
8891
-
8892
- #: templates/admin/uninstall-capture-form.tpl.php:6
8893
- msgctxt "uninstall"
8894
- msgid "I can't set it up/Too complicated"
8895
- msgstr "No puedo configurarlo / Muy complicado"
8896
-
8897
- #: templates/admin/uninstall-capture-form.tpl.php:7
8898
- msgctxt "uninstall"
8899
- msgid "Doesn't solve my problem"
8900
- msgstr "No resuelve mis necesidades"
8901
-
8902
- #: templates/admin/uninstall-capture-form.tpl.php:8
8903
- msgctxt "uninstall"
8904
- msgid "Don't need it anymore/Not using it"
8905
- msgstr "No lo necesito más / No lo estoy usando"
8906
-
8907
- #: templates/admin/uninstall-capture-form.tpl.php:9
8908
- msgctxt "uninstall"
8909
- msgid "Other"
8910
- msgstr "Otra razón"
8911
-
8912
- #: templates/admin/uninstall-capture-form.tpl.php:16
8913
- msgctxt "uninstall"
8914
- msgid ""
8915
- "We're sorry to see you leave. Could you take 10 seconds and answer one "
8916
- "question for us to help us make the product better for everyone in the "
8917
- "future?"
8918
- msgstr ""
8919
- "Lamentamos que desee desinstalar nuestro producto. ¿Podría tomarse 10 "
8920
- "segundos y responder una pregunta para ayudarnos a hacer un mejor producto "
8921
- "para todos en el futuro?"
8922
-
8923
- #: templates/admin/uninstall-capture-form.tpl.php:19
8924
- msgctxt "uninstall"
8925
- msgid "Why are you deleting Business Directory Plugin?"
8926
- msgstr "¿Por qué está desinstalando Business Directory Plugin?"
8927
-
8928
- #: templates/admin/uninstall-capture-form.tpl.php:22
8929
- msgctxt "uninstall"
8930
- msgid "Please choose an option."
8931
- msgstr "Por favor seleccione una opción."
8932
-
8933
- #: templates/admin/uninstall-capture-form.tpl.php:34
8934
- msgctxt "uninstall"
8935
- msgid "Please tell us why are you deleting Business Directory Plugin."
8936
- msgstr ""
8937
- "Por favor díganos por qué está desinstalando Business Directory Plugin."
8938
-
8939
- #: templates/admin/uninstall-capture-form.tpl.php:37
8940
- msgctxt "uninstall"
8941
- msgid "Please enter your reasons."
8942
- msgstr "Por favor ingrese sus razones."
8943
-
8944
- #: templates/admin/uninstall-capture-form.tpl.php:46
8945
- msgctxt "uninstall"
8946
- msgid "Uninstall Plugin"
8947
- msgstr "Desinstalar"
8948
-
8949
- #: templates/admin/uninstall-confirm.tpl.php:19
8950
- msgctxt "uninstall"
8951
- msgid "Uninstalling Business Directory Plugin will do the following:"
8952
- msgstr ""
8953
- "Desinstalar Business Directory Plugin realizará las siguientes acciones:"
8954
-
8955
- #: templates/admin/uninstall-confirm.tpl.php:22
8956
- msgctxt "uninstall"
8957
- msgid "Remove ALL directory listings"
8958
- msgstr "Remover TODOS los listados del directorio"
8959
-
8960
- #: templates/admin/uninstall-confirm.tpl.php:23
8961
- msgctxt "uninstall"
8962
- msgid "Remove ALL directory categories"
8963
- msgstr "Remover TODAS las categorías del directorio"
8964
-
8965
- #: templates/admin/uninstall-confirm.tpl.php:24
8966
- msgctxt "uninstall"
8967
- msgid "Remove ALL directory settings"
8968
- msgstr "Remover la configuración del directorio"
8969
-
8970
- #: templates/admin/uninstall-confirm.tpl.php:25
8971
- msgctxt "uninstall"
8972
- msgid ""
8973
- "Remove ALL premium module configuration data (regions, maps, ratings, "
8974
- "featured levels)"
8975
- msgstr ""
8976
- "Remover TODA la información asociada a módulos premium (regiones, mapas, "
8977
- "calificaciones, restricción de características)"
8978
-
8979
- #: templates/admin/uninstall-confirm.tpl.php:26
8980
- msgctxt "uninstall"
8981
- msgid "Deactivate the plugin from the file system"
8982
- msgstr "Desactivar el plugin"
8983
-
8984
- #: templates/admin/uninstall-confirm.tpl.php:29
8985
- msgctxt "uninstall"
8986
- msgid "ONLY do this if you are sure you're OK with LOSING ALL OF YOUR DATA."
8987
- msgstr "Proceda SOLAMENTE si está de acuerdo con PERDER TODA SU INFORMACIÓN."
8988
-
8989
- #: templates/admin/uninstall-confirm.tpl.php:32
8990
- msgctxt "uninstall"
8991
- msgid "Yes, I want to uninstall"
8992
- msgstr "Sí, quiero deinstalar"
8993
-
8994
- #: templates/admin/uninstall-confirm.tpl.php:36
8995
- msgctxt "uninstall"
8996
- msgid "If you just need to reinstall the plugin, please do the following:"
8997
- msgstr "Si está intentando reinstalar el plugin, por favor haga lo siguiente:"
8998
-
8999
- #: templates/delete-listing-confirm.tpl.php:3
9000
- msgctxt "manage recurring"
9001
- msgid "Delete Listing"
9002
- msgstr "Eliminar Listado"
9003
-
9004
- #: templates/manage-recurring-cancel.tpl.php:1
9005
- msgctxt "manage recurring"
9006
- msgid "Manage Recurring Payments - Cancel Subscription"
9007
- msgstr "Administrar pagos recurrentes - Cancelar subscripción"
9008
-
9009
- #: templates/manage-recurring-cancel.tpl.php:4
9010
- msgctxt "manage recurring"
9011
- msgid "Plan Details"
9012
- msgstr "Detalles del Plan"
9013
-
9014
- #: templates/manage-recurring-cancel.tpl.php:8
9015
- msgctxt "manage recurring"
9016
- msgid "Name:"
9017
- msgstr "Nombre:"
9018
-
9019
- #: templates/manage-recurring-cancel.tpl.php:14
9020
- msgctxt "manage recurring"
9021
- msgid "Cost:"
9022
- msgstr "Costo:"
9023
-
9024
- #: templates/manage-recurring-cancel.tpl.php:27
9025
- msgctxt "manage recurring"
9026
- msgid "Number of images:"
9027
- msgstr "Número de imágenes:"
9028
-
9029
- #: templates/manage-recurring-cancel.tpl.php:33
9030
- msgctxt "manage recurring"
9031
- msgid "Expires on:"
9032
- msgstr "Expira en:"
9033
-
9034
- #: templates/manage-recurring-cancel.tpl.php:41
9035
- msgctxt "manage recurring"
9036
- msgid "Are you sure you want to cancel this subscription?"
9037
- msgstr "¿Está seguro de que desea cancelar esta subscripción?"
9038
-
9039
- #: templates/manage-recurring-cancel.tpl.php:43
9040
- msgctxt "manage recurring"
9041
- msgid "Yes, cancel subscription"
9042
- msgstr "Sí, cancelar subscripción"
9043
-
9044
- #: templates/manage-recurring-cancel.tpl.php:44
9045
- msgctxt "manage recurring"
9046
- msgid "No, go back to my subscriptions"
9047
- msgstr "No, regrese a mis subscripciones"
9048
-
9049
- #: templates/manage-recurring.tpl.php:1
9050
- msgctxt "manage recurring"
9051
- msgid "Manage Recurring Payments"
9052
- msgstr "Administrar Pagos Recurrentes"
9053
-
9054
- #: templates/manage-recurring.tpl.php:5
9055
- msgctxt "manage recurring"
9056
- msgid "Listing"
9057
- msgstr "Listado"
9058
-
9059
- #: templates/manage-recurring.tpl.php:40
9060
- msgctxt "manage recurring"
9061
- msgid "Cancel recurring payment"
9062
- msgstr "Cancelar pago recurrente"
9063
-
9064
- #: templates/email/listing-added.tpl.php:2
9065
- msgctxt "emails"
9066
- msgid ""
9067
- "A new listing has been submitted to the directory. Listing details can be "
9068
- "found below."
9069
- msgstr ""
9070
- "Un nuevo listado ha sido enviado al Directorio. Los detalles del listado "
9071
- "aparecen abajo."
9072
-
9073
- #: templates/email/listing-edited.tpl.php:8
9074
- msgctxt "emails"
9075
- msgid ""
9076
- "A listing in the directory has been edited recently. Listing details can be "
9077
- "found below."
9078
- msgstr ""
9079
- "Un listado en el directorio ha sido editado recientemente. Los detalles se "
9080
- "encuentran abajo."
9081
-
9082
- #: templates/email/listing-payment-completed.tpl.php:2
9083
- msgctxt "emails"
9084
- msgid ""
9085
- "A new listing payment has been completed. Payment details can be found below."
9086
- msgstr ""
9087
- "Se ha completado un nuevo pago de listado. Los detalles del pago aparecen "
9088
- "abajo."
9089
-
9090
- #: templates/email/listing-reported.tpl.php:2
9091
- msgctxt "emails"
9092
- msgid ""
9093
- "A listing has been reported as inappropriate. Listing details can be found "
9094
- "below."
9095
- msgstr ""
9096
- "Un listado ha sido reportado como inapropiado. Los detalles del listado se "
9097
- "pueden encontrar a continuación."
9098
-
9099
- #: templates/main-box.tpl.php:23
9100
- msgctxt "main box"
9101
- msgid "Find listings for <keywords>"
9102
- msgstr "Buscar listados según <palabras clave>"
9103
-
9104
- #: templates/main-box.tpl.php:29
9105
- msgctxt "main box"
9106
- msgid "Find Listings"
9107
- msgstr "Buscar Listados"
9108
-
9109
- #: templates/main-box.tpl.php:30
9110
- msgctxt "main box"
9111
- msgid "Advanced Search"
9112
- msgstr "Búsqueda Avanzada"
9113
-
9114
- #: templates/renew-listing-manage-subscription.tpl.php:4
9115
- msgctxt "renew"
9116
- msgid ""
9117
- "Because you are on a recurring fee plan you don't have to renew your listing "
9118
- "right now as this will be handled automatically when renewal comes."
9119
- msgstr ""
9120
- "Debido a que se encuentra en cobro recurrente no debe renovar su listado "
9121
- "ahora mismo ya que esto se hará automáticamente cuando llegue el momento "
9122
- "indicado."
9123
-
9124
- #: templates/renew-listing-manage-subscription.tpl.php:26
9125
- msgctxt "renew"
9126
- msgid ""
9127
- "However, if you want to cancel your subscription you can do that on <manage-"
9128
- "recurring-link>the manage recurring payments page</manage-recurring-link>. "
9129
- "When the renewal time comes you'll be able to change your settings again."
9130
- msgstr ""
9131
- "Sin embargo, si desea cancelar su suscripción puede hacerlo en la <manage-"
9132
- "recurring-link>página administrar pagos recurrentes</manage.-recurring-"
9133
- "link>. Cuando llegue el momento de la renovación le será posible cambiar sus "
9134
- "preferencias de cobro de nuevo."
9135
-
9136
- #: templates/renew-listing-manage-subscription.tpl.php:33
9137
- msgctxt "renew"
9138
- msgid "Go to Manage Recurring Payments page"
9139
- msgstr "Visite la página administrar pagos recurrentes"
9140
-
9141
- #: templates/send-access-keys.tpl.php:7
9142
- msgctxt "send-access-keys"
9143
- msgid "Enter your e-mail address"
9144
- msgstr "Ingrese su dirección de correo-e"
9145
-
9146
- #: templates/send-access-keys.tpl.php:11
9147
- msgctxt "send-access-keys"
9148
- msgid "Continue"
9149
- msgstr "Continuar"
9150
-
9151
- #~ msgctxt "settings"
9152
- #~ msgid "Default new post status"
9153
- #~ msgstr "Estado por defecto para los listados nuevos"
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
languages/business-directory-plugin-fr_FR.po CHANGED
@@ -5,7 +5,7 @@ msgstr ""
5
  "Project-Id-Version: Business Directory Plugin v5.7.3\n"
6
  "Report-Msgid-Bugs-To: https://wordpress.org/support/plugin/business-"
7
  "directory-plugin\n"
8
- "POT-Creation-Date: 2021-03-03 23:16:40+00:00\n"
9
  "PO-Revision-Date: 2020-06-17 15:32-0500\n"
10
  "Last-Translator: Laurent Provin <lprovin@yahoo.fr>\n"
11
  "Language-Team: BD Team <support@businessdirectoryplugin.com>\n"
@@ -292,7 +292,7 @@ msgstr "Aller à \"Gestion des Champs\""
292
  msgid "Go back"
293
  msgstr "Non, reviens"
294
 
295
- #: includes/admin/form-fields.php:525
296
  #: includes/admin/settings/class-settings-bootstrap.php:753
297
  #: templates/email/listing-added.tpl.php:10
298
  #: templates/email/listing-edited.tpl.php:16
@@ -301,87 +301,87 @@ msgstr "Non, reviens"
301
  msgid "Title"
302
  msgstr "Titre"
303
 
304
- #: includes/admin/form-fields.php:526 templates/admin/fees-form.tpl.php:216
305
  #: templates/email/listing-added.tpl.php:21
306
  #: templates/email/listing-edited.tpl.php:29
307
  #, fuzzy
308
  msgid "Category"
309
  msgstr "Catégorie"
310
 
311
- #: includes/admin/form-fields.php:527
312
  #, fuzzy
313
  msgid "Excerpt"
314
  msgstr "Extrait"
315
 
316
- #: includes/admin/form-fields.php:528
317
  #, fuzzy
318
  msgid "Content"
319
  msgstr "Contenu"
320
 
321
- #: includes/admin/form-fields.php:529
322
  #, fuzzy
323
  msgid "Tags"
324
  msgstr "Étiquettes (tags)"
325
 
326
- #: includes/admin/form-fields.php:530 includes/form-fields.php:445
327
  #: templates/checkout-billing-form.tpl.php:75
328
  #: themes/default/templates/excerpt_content.tpl.php:22
329
  #, fuzzy
330
  msgid "Address"
331
  msgstr "Adresse"
332
 
333
- #: includes/admin/form-fields.php:531
334
  #, fuzzy
335
  msgid "Address 2"
336
  msgstr "Adresse"
337
 
338
- #: includes/admin/form-fields.php:532
339
  #: templates/admin/payments-details.tpl.php:160
340
  #: templates/checkout-billing-form.tpl.php:87
341
  #, fuzzy
342
  msgid "City"
343
  msgstr "Ville"
344
 
345
- #: includes/admin/form-fields.php:533
346
  #: templates/admin/payments-details.tpl.php:156
347
  #, fuzzy
348
  msgid "State"
349
  msgstr "Région"
350
 
351
- #: includes/admin/form-fields.php:534
352
  #: templates/admin/payments-details.tpl.php:152
353
  #: templates/checkout-billing-form.tpl.php:102
354
  #, fuzzy
355
  msgid "Country"
356
  msgstr "Pays"
357
 
358
- #: includes/admin/form-fields.php:535 includes/form-fields.php:453
359
  #: templates/admin/payments-details.tpl.php:164
360
  msgid "ZIP Code"
361
  msgstr "Code postal"
362
 
363
- #: includes/admin/form-fields.php:536
364
  #, fuzzy
365
  msgid "FAX Number"
366
  msgstr "Numéro de fax"
367
 
368
- #: includes/admin/form-fields.php:537
369
  #: includes/fields/class-fieldtypes-phone-number.php:13
370
  #, fuzzy
371
  msgid "Phone Number"
372
  msgstr "Numéro de téléphone"
373
 
374
- #: includes/admin/form-fields.php:538
375
  #, fuzzy
376
  msgid "Ratings Field"
377
  msgstr "Champs d'évaluation"
378
 
379
- #: includes/admin/form-fields.php:539
380
  #, fuzzy
381
  msgid "Twitter"
382
  msgstr "Twitter"
383
 
384
- #: includes/admin/form-fields.php:540 includes/form-fields.php:411
385
  #, fuzzy
386
  msgid "Website"
387
  msgstr "Site Internet"
@@ -615,7 +615,7 @@ msgstr "Aller vers votre annonce"
615
 
616
  #: includes/admin/settings/class-settings-bootstrap.php:638
617
  #, fuzzy
618
- msgid "Default free listings status"
619
  msgstr "Annonce par défault de l'utilisateur"
620
 
621
  #: includes/admin/settings/class-settings-bootstrap.php:642
@@ -771,6 +771,10 @@ msgstr ""
771
  msgid "Uninstall"
772
  msgstr "Désinstaller"
773
 
 
 
 
 
774
  #: includes/admin/tracking.php:222
775
  #, fuzzy
776
  msgid "Allow Tracking"
@@ -4560,17 +4564,17 @@ msgstr ""
4560
  "s'affichent publiquement, vous pouvez <a>activer l'affichage public des e-"
4561
  "mails</a>."
4562
 
4563
- #: includes/admin/form-fields.php:470
4564
  msgctxt "form-fields admin"
4565
  msgid "Field deleted."
4566
  msgstr "Champ effacé."
4567
 
4568
- #: includes/admin/form-fields.php:512
4569
  msgctxt "form-fields admin"
4570
  msgid "Required fields created successfully."
4571
  msgstr "Champs requis créés avec succès."
4572
 
4573
- #: includes/admin/form-fields.php:564
4574
  msgctxt "form-fields admin"
4575
  msgid "Tags updated."
4576
  msgstr "Étiquettes mises à jour."
@@ -6769,7 +6773,7 @@ msgctxt "settings"
6769
  msgid "\"%s\" can not be empty."
6770
  msgstr "\"%s\" ne peut pas être vide."
6771
 
6772
- #: includes/admin/settings/class-settings.php:506
6773
  msgctxt "settings"
6774
  msgid "The slug \"%s\" is already in use for another taxonomy."
6775
  msgstr "L'élément \"%s\" est déjà utilisé pour une autre taxinomie."
5
  "Project-Id-Version: Business Directory Plugin v5.7.3\n"
6
  "Report-Msgid-Bugs-To: https://wordpress.org/support/plugin/business-"
7
  "directory-plugin\n"
8
+ "POT-Creation-Date: 2021-03-16 22:30:36+00:00\n"
9
  "PO-Revision-Date: 2020-06-17 15:32-0500\n"
10
  "Last-Translator: Laurent Provin <lprovin@yahoo.fr>\n"
11
  "Language-Team: BD Team <support@businessdirectoryplugin.com>\n"
292
  msgid "Go back"
293
  msgstr "Non, reviens"
294
 
295
+ #: includes/admin/form-fields.php:524
296
  #: includes/admin/settings/class-settings-bootstrap.php:753
297
  #: templates/email/listing-added.tpl.php:10
298
  #: templates/email/listing-edited.tpl.php:16
301
  msgid "Title"
302
  msgstr "Titre"
303
 
304
+ #: includes/admin/form-fields.php:525 templates/admin/fees-form.tpl.php:216
305
  #: templates/email/listing-added.tpl.php:21
306
  #: templates/email/listing-edited.tpl.php:29
307
  #, fuzzy
308
  msgid "Category"
309
  msgstr "Catégorie"
310
 
311
+ #: includes/admin/form-fields.php:526
312
  #, fuzzy
313
  msgid "Excerpt"
314
  msgstr "Extrait"
315
 
316
+ #: includes/admin/form-fields.php:527
317
  #, fuzzy
318
  msgid "Content"
319
  msgstr "Contenu"
320
 
321
+ #: includes/admin/form-fields.php:528
322
  #, fuzzy
323
  msgid "Tags"
324
  msgstr "Étiquettes (tags)"
325
 
326
+ #: includes/admin/form-fields.php:529 includes/form-fields.php:445
327
  #: templates/checkout-billing-form.tpl.php:75
328
  #: themes/default/templates/excerpt_content.tpl.php:22
329
  #, fuzzy
330
  msgid "Address"
331
  msgstr "Adresse"
332
 
333
+ #: includes/admin/form-fields.php:530
334
  #, fuzzy
335
  msgid "Address 2"
336
  msgstr "Adresse"
337
 
338
+ #: includes/admin/form-fields.php:531
339
  #: templates/admin/payments-details.tpl.php:160
340
  #: templates/checkout-billing-form.tpl.php:87
341
  #, fuzzy
342
  msgid "City"
343
  msgstr "Ville"
344
 
345
+ #: includes/admin/form-fields.php:532
346
  #: templates/admin/payments-details.tpl.php:156
347
  #, fuzzy
348
  msgid "State"
349
  msgstr "Région"
350
 
351
+ #: includes/admin/form-fields.php:533
352
  #: templates/admin/payments-details.tpl.php:152
353
  #: templates/checkout-billing-form.tpl.php:102
354
  #, fuzzy
355
  msgid "Country"
356
  msgstr "Pays"
357
 
358
+ #: includes/admin/form-fields.php:534 includes/form-fields.php:453
359
  #: templates/admin/payments-details.tpl.php:164
360
  msgid "ZIP Code"
361
  msgstr "Code postal"
362
 
363
+ #: includes/admin/form-fields.php:535
364
  #, fuzzy
365
  msgid "FAX Number"
366
  msgstr "Numéro de fax"
367
 
368
+ #: includes/admin/form-fields.php:536
369
  #: includes/fields/class-fieldtypes-phone-number.php:13
370
  #, fuzzy
371
  msgid "Phone Number"
372
  msgstr "Numéro de téléphone"
373
 
374
+ #: includes/admin/form-fields.php:537
375
  #, fuzzy
376
  msgid "Ratings Field"
377
  msgstr "Champs d'évaluation"
378
 
379
+ #: includes/admin/form-fields.php:538
380
  #, fuzzy
381
  msgid "Twitter"
382
  msgstr "Twitter"
383
 
384
+ #: includes/admin/form-fields.php:539 includes/form-fields.php:411
385
  #, fuzzy
386
  msgid "Website"
387
  msgstr "Site Internet"
615
 
616
  #: includes/admin/settings/class-settings-bootstrap.php:638
617
  #, fuzzy
618
+ msgid "Default listing status"
619
  msgstr "Annonce par défault de l'utilisateur"
620
 
621
  #: includes/admin/settings/class-settings-bootstrap.php:642
771
  msgid "Uninstall"
772
  msgstr "Désinstaller"
773
 
774
+ #: includes/admin/settings/class-settings.php:508
775
+ msgid "%s cannot include spaces, commas, or &"
776
+ msgstr ""
777
+
778
  #: includes/admin/tracking.php:222
779
  #, fuzzy
780
  msgid "Allow Tracking"
4564
  "s'affichent publiquement, vous pouvez <a>activer l'affichage public des e-"
4565
  "mails</a>."
4566
 
4567
+ #: includes/admin/form-fields.php:471
4568
  msgctxt "form-fields admin"
4569
  msgid "Field deleted."
4570
  msgstr "Champ effacé."
4571
 
4572
+ #: includes/admin/form-fields.php:511
4573
  msgctxt "form-fields admin"
4574
  msgid "Required fields created successfully."
4575
  msgstr "Champs requis créés avec succès."
4576
 
4577
+ #: includes/admin/form-fields.php:563
4578
  msgctxt "form-fields admin"
4579
  msgid "Tags updated."
4580
  msgstr "Étiquettes mises à jour."
6773
  msgid "\"%s\" can not be empty."
6774
  msgstr "\"%s\" ne peut pas être vide."
6775
 
6776
+ #: includes/admin/settings/class-settings.php:516
6777
  msgctxt "settings"
6778
  msgid "The slug \"%s\" is already in use for another taxonomy."
6779
  msgstr "L'élément \"%s\" est déjà utilisé pour une autre taxinomie."
languages/business-directory-plugin-it_IT.po CHANGED
@@ -3,7 +3,7 @@ msgstr ""
3
  "Project-Id-Version: Business Directory Plugin v5.7.3\n"
4
  "Report-Msgid-Bugs-To: https://wordpress.org/support/plugin/business-"
5
  "directory-plugin\n"
6
- "POT-Creation-Date: 2021-03-03 23:16:40+00:00\n"
7
  "PO-Revision-Date: 2020-06-17 15:33-0500\n"
8
  "Last-Translator: \n"
9
  "Language-Team: \n"
@@ -294,7 +294,7 @@ msgstr "Vai a \"Gestire i campi dei moduli\"."
294
  msgid "Go back"
295
  msgstr "Va indietro"
296
 
297
- #: includes/admin/form-fields.php:525
298
  #: includes/admin/settings/class-settings-bootstrap.php:753
299
  #: templates/email/listing-added.tpl.php:10
300
  #: templates/email/listing-edited.tpl.php:16
@@ -303,87 +303,87 @@ msgstr "Va indietro"
303
  msgid "Title"
304
  msgstr "Titolo"
305
 
306
- #: includes/admin/form-fields.php:526 templates/admin/fees-form.tpl.php:216
307
  #: templates/email/listing-added.tpl.php:21
308
  #: templates/email/listing-edited.tpl.php:29
309
  #, fuzzy
310
  msgid "Category"
311
  msgstr "Categoria"
312
 
313
- #: includes/admin/form-fields.php:527
314
  #, fuzzy
315
  msgid "Excerpt"
316
  msgstr "Estratto"
317
 
318
- #: includes/admin/form-fields.php:528
319
  #, fuzzy
320
  msgid "Content"
321
  msgstr "Contenuto"
322
 
323
- #: includes/admin/form-fields.php:529
324
  #, fuzzy
325
  msgid "Tags"
326
  msgstr "Tags"
327
 
328
- #: includes/admin/form-fields.php:530 includes/form-fields.php:445
329
  #: templates/checkout-billing-form.tpl.php:75
330
  #: themes/default/templates/excerpt_content.tpl.php:22
331
  #, fuzzy
332
  msgid "Address"
333
  msgstr "Indirizzo"
334
 
335
- #: includes/admin/form-fields.php:531
336
  #, fuzzy
337
  msgid "Address 2"
338
  msgstr "Indirizzo"
339
 
340
- #: includes/admin/form-fields.php:532
341
  #: templates/admin/payments-details.tpl.php:160
342
  #: templates/checkout-billing-form.tpl.php:87
343
  #, fuzzy
344
  msgid "City"
345
  msgstr "Città"
346
 
347
- #: includes/admin/form-fields.php:533
348
  #: templates/admin/payments-details.tpl.php:156
349
  #, fuzzy
350
  msgid "State"
351
  msgstr "Stato"
352
 
353
- #: includes/admin/form-fields.php:534
354
  #: templates/admin/payments-details.tpl.php:152
355
  #: templates/checkout-billing-form.tpl.php:102
356
  #, fuzzy
357
  msgid "Country"
358
  msgstr "Nazione"
359
 
360
- #: includes/admin/form-fields.php:535 includes/form-fields.php:453
361
  #: templates/admin/payments-details.tpl.php:164
362
  msgid "ZIP Code"
363
  msgstr "Codice Postale"
364
 
365
- #: includes/admin/form-fields.php:536
366
  #, fuzzy
367
  msgid "FAX Number"
368
  msgstr "Numero di fax"
369
 
370
- #: includes/admin/form-fields.php:537
371
  #: includes/fields/class-fieldtypes-phone-number.php:13
372
  #, fuzzy
373
  msgid "Phone Number"
374
  msgstr "Numero di telefono"
375
 
376
- #: includes/admin/form-fields.php:538
377
  #, fuzzy
378
  msgid "Ratings Field"
379
  msgstr "Campo votazione"
380
 
381
- #: includes/admin/form-fields.php:539
382
  #, fuzzy
383
  msgid "Twitter"
384
  msgstr "Twitter"
385
 
386
- #: includes/admin/form-fields.php:540 includes/form-fields.php:411
387
  #, fuzzy
388
  msgid "Website"
389
  msgstr "Sito web"
@@ -613,7 +613,7 @@ msgstr "Vai al tuo annuncio"
613
 
614
  #: includes/admin/settings/class-settings-bootstrap.php:638
615
  #, fuzzy
616
- msgid "Default free listings status"
617
  msgstr "Utente predefinito"
618
 
619
  #: includes/admin/settings/class-settings-bootstrap.php:642
@@ -774,6 +774,10 @@ msgstr ""
774
  msgid "Uninstall"
775
  msgstr "Disinstalla"
776
 
 
 
 
 
777
  #: includes/admin/tracking.php:222
778
  #, fuzzy
779
  msgid "Allow Tracking"
@@ -4574,17 +4578,17 @@ msgstr ""
4574
  "posta elettronica siano mostrati sul frontend, è possibile <a>consentire "
4575
  "l'esposizione pubblica delle e-mail</a>."
4576
 
4577
- #: includes/admin/form-fields.php:470
4578
  msgctxt "form-fields admin"
4579
  msgid "Field deleted."
4580
  msgstr "Campo eliminato"
4581
 
4582
- #: includes/admin/form-fields.php:512
4583
  msgctxt "form-fields admin"
4584
  msgid "Required fields created successfully."
4585
  msgstr "Campi obbligatori creati con successo."
4586
 
4587
- #: includes/admin/form-fields.php:564
4588
  msgctxt "form-fields admin"
4589
  msgid "Tags updated."
4590
  msgstr "Tag aggiornati."
@@ -6788,7 +6792,7 @@ msgctxt "settings"
6788
  msgid "\"%s\" can not be empty."
6789
  msgstr "\"%s\" non può essere vuoto."
6790
 
6791
- #: includes/admin/settings/class-settings.php:506
6792
  msgctxt "settings"
6793
  msgid "The slug \"%s\" is already in use for another taxonomy."
6794
  msgstr "Lo slug \"%s\" è già in uso per un'altra tassonomia."
3
  "Project-Id-Version: Business Directory Plugin v5.7.3\n"
4
  "Report-Msgid-Bugs-To: https://wordpress.org/support/plugin/business-"
5
  "directory-plugin\n"
6
+ "POT-Creation-Date: 2021-03-16 22:30:36+00:00\n"
7
  "PO-Revision-Date: 2020-06-17 15:33-0500\n"
8
  "Last-Translator: \n"
9
  "Language-Team: \n"
294
  msgid "Go back"
295
  msgstr "Va indietro"
296
 
297
+ #: includes/admin/form-fields.php:524
298
  #: includes/admin/settings/class-settings-bootstrap.php:753
299
  #: templates/email/listing-added.tpl.php:10
300
  #: templates/email/listing-edited.tpl.php:16
303
  msgid "Title"
304
  msgstr "Titolo"
305
 
306
+ #: includes/admin/form-fields.php:525 templates/admin/fees-form.tpl.php:216
307
  #: templates/email/listing-added.tpl.php:21
308
  #: templates/email/listing-edited.tpl.php:29
309
  #, fuzzy
310
  msgid "Category"
311
  msgstr "Categoria"
312
 
313
+ #: includes/admin/form-fields.php:526
314
  #, fuzzy
315
  msgid "Excerpt"
316
  msgstr "Estratto"
317
 
318
+ #: includes/admin/form-fields.php:527
319
  #, fuzzy
320
  msgid "Content"
321
  msgstr "Contenuto"
322
 
323
+ #: includes/admin/form-fields.php:528
324
  #, fuzzy
325
  msgid "Tags"
326
  msgstr "Tags"
327
 
328
+ #: includes/admin/form-fields.php:529 includes/form-fields.php:445
329
  #: templates/checkout-billing-form.tpl.php:75
330
  #: themes/default/templates/excerpt_content.tpl.php:22
331
  #, fuzzy
332
  msgid "Address"
333
  msgstr "Indirizzo"
334
 
335
+ #: includes/admin/form-fields.php:530
336
  #, fuzzy
337
  msgid "Address 2"
338
  msgstr "Indirizzo"
339
 
340
+ #: includes/admin/form-fields.php:531
341
  #: templates/admin/payments-details.tpl.php:160
342
  #: templates/checkout-billing-form.tpl.php:87
343
  #, fuzzy
344
  msgid "City"
345
  msgstr "Città"
346
 
347
+ #: includes/admin/form-fields.php:532
348
  #: templates/admin/payments-details.tpl.php:156
349
  #, fuzzy
350
  msgid "State"
351
  msgstr "Stato"
352
 
353
+ #: includes/admin/form-fields.php:533
354
  #: templates/admin/payments-details.tpl.php:152
355
  #: templates/checkout-billing-form.tpl.php:102
356
  #, fuzzy
357
  msgid "Country"
358
  msgstr "Nazione"
359
 
360
+ #: includes/admin/form-fields.php:534 includes/form-fields.php:453
361
  #: templates/admin/payments-details.tpl.php:164
362
  msgid "ZIP Code"
363
  msgstr "Codice Postale"
364
 
365
+ #: includes/admin/form-fields.php:535
366
  #, fuzzy
367
  msgid "FAX Number"
368
  msgstr "Numero di fax"
369
 
370
+ #: includes/admin/form-fields.php:536
371
  #: includes/fields/class-fieldtypes-phone-number.php:13
372
  #, fuzzy
373
  msgid "Phone Number"
374
  msgstr "Numero di telefono"
375
 
376
+ #: includes/admin/form-fields.php:537
377
  #, fuzzy
378
  msgid "Ratings Field"
379
  msgstr "Campo votazione"
380
 
381
+ #: includes/admin/form-fields.php:538
382
  #, fuzzy
383
  msgid "Twitter"
384
  msgstr "Twitter"
385
 
386
+ #: includes/admin/form-fields.php:539 includes/form-fields.php:411
387
  #, fuzzy
388
  msgid "Website"
389
  msgstr "Sito web"
613
 
614
  #: includes/admin/settings/class-settings-bootstrap.php:638
615
  #, fuzzy
616
+ msgid "Default listing status"
617
  msgstr "Utente predefinito"
618
 
619
  #: includes/admin/settings/class-settings-bootstrap.php:642
774
  msgid "Uninstall"
775
  msgstr "Disinstalla"
776
 
777
+ #: includes/admin/settings/class-settings.php:508
778
+ msgid "%s cannot include spaces, commas, or &"
779
+ msgstr ""
780
+
781
  #: includes/admin/tracking.php:222
782
  #, fuzzy
783
  msgid "Allow Tracking"
4578
  "posta elettronica siano mostrati sul frontend, è possibile <a>consentire "
4579
  "l'esposizione pubblica delle e-mail</a>."
4580
 
4581
+ #: includes/admin/form-fields.php:471
4582
  msgctxt "form-fields admin"
4583
  msgid "Field deleted."
4584
  msgstr "Campo eliminato"
4585
 
4586
+ #: includes/admin/form-fields.php:511
4587
  msgctxt "form-fields admin"
4588
  msgid "Required fields created successfully."
4589
  msgstr "Campi obbligatori creati con successo."
4590
 
4591
+ #: includes/admin/form-fields.php:563
4592
  msgctxt "form-fields admin"
4593
  msgid "Tags updated."
4594
  msgstr "Tag aggiornati."
6792
  msgid "\"%s\" can not be empty."
6793
  msgstr "\"%s\" non può essere vuoto."
6794
 
6795
+ #: includes/admin/settings/class-settings.php:516
6796
  msgctxt "settings"
6797
  msgid "The slug \"%s\" is already in use for another taxonomy."
6798
  msgstr "Lo slug \"%s\" è già in uso per un'altra tassonomia."
languages/business-directory-plugin-nl_NL.po CHANGED
@@ -3,7 +3,7 @@ msgstr ""
3
  "Project-Id-Version: Business Directory Plugin v5.7.3\n"
4
  "Report-Msgid-Bugs-To: https://wordpress.org/support/plugin/business-"
5
  "directory-plugin\n"
6
- "POT-Creation-Date: 2021-03-03 23:16:40+00:00\n"
7
  "PO-Revision-Date: 2020-06-17 15:33-0500\n"
8
  "Last-Translator: admin <info@nederlofcentrum.nl>\n"
9
  "Language-Team: Dutch\n"
@@ -272,7 +272,7 @@ msgstr "Ga naar \"instellen formulier velden\""
272
  msgid "Go back"
273
  msgstr ""
274
 
275
- #: includes/admin/form-fields.php:525
276
  #: includes/admin/settings/class-settings-bootstrap.php:753
277
  #: templates/email/listing-added.tpl.php:10
278
  #: templates/email/listing-edited.tpl.php:16
@@ -281,85 +281,85 @@ msgstr ""
281
  msgid "Title"
282
  msgstr "Titel"
283
 
284
- #: includes/admin/form-fields.php:526 templates/admin/fees-form.tpl.php:216
285
  #: templates/email/listing-added.tpl.php:21
286
  #: templates/email/listing-edited.tpl.php:29
287
  #, fuzzy
288
  msgid "Category"
289
  msgstr "Categorie"
290
 
291
- #: includes/admin/form-fields.php:527
292
  #, fuzzy
293
  msgid "Excerpt"
294
  msgstr "Uittreksel"
295
 
296
- #: includes/admin/form-fields.php:528
297
  #, fuzzy
298
  msgid "Content"
299
  msgstr "Inhoud"
300
 
301
- #: includes/admin/form-fields.php:529
302
  msgid "Tags"
303
  msgstr ""
304
 
305
- #: includes/admin/form-fields.php:530 includes/form-fields.php:445
306
  #: templates/checkout-billing-form.tpl.php:75
307
  #: themes/default/templates/excerpt_content.tpl.php:22
308
  #, fuzzy
309
  msgid "Address"
310
  msgstr "Adres"
311
 
312
- #: includes/admin/form-fields.php:531
313
  #, fuzzy
314
  msgid "Address 2"
315
  msgstr "Adres"
316
 
317
- #: includes/admin/form-fields.php:532
318
  #: templates/admin/payments-details.tpl.php:160
319
  #: templates/checkout-billing-form.tpl.php:87
320
  #, fuzzy
321
  msgid "City"
322
  msgstr "Stad"
323
 
324
- #: includes/admin/form-fields.php:533
325
  #: templates/admin/payments-details.tpl.php:156
326
  #, fuzzy
327
  msgid "State"
328
  msgstr "Provincie"
329
 
330
- #: includes/admin/form-fields.php:534
331
  #: templates/admin/payments-details.tpl.php:152
332
  #: templates/checkout-billing-form.tpl.php:102
333
  #, fuzzy
334
  msgid "Country"
335
  msgstr "Land"
336
 
337
- #: includes/admin/form-fields.php:535 includes/form-fields.php:453
338
  #: templates/admin/payments-details.tpl.php:164
339
  msgid "ZIP Code"
340
  msgstr ""
341
 
342
- #: includes/admin/form-fields.php:536
343
  #, fuzzy
344
  msgid "FAX Number"
345
  msgstr "Tel nr"
346
 
347
- #: includes/admin/form-fields.php:537
348
  #: includes/fields/class-fieldtypes-phone-number.php:13
349
  #, fuzzy
350
  msgid "Phone Number"
351
  msgstr "Tel nr"
352
 
353
- #: includes/admin/form-fields.php:538
354
  #, fuzzy
355
  msgid "Ratings Field"
356
  msgstr "Waardering veld"
357
 
358
- #: includes/admin/form-fields.php:539
359
  msgid "Twitter"
360
  msgstr ""
361
 
362
- #: includes/admin/form-fields.php:540 includes/form-fields.php:411
363
  msgid "Website"
364
  msgstr ""
365
 
@@ -583,7 +583,7 @@ msgstr "ga naar de registratie"
583
 
584
  #: includes/admin/settings/class-settings-bootstrap.php:638
585
  #, fuzzy
586
- msgid "Default free listings status"
587
  msgstr "Standaard status nieuwe registratie"
588
 
589
  #: includes/admin/settings/class-settings-bootstrap.php:642
@@ -724,6 +724,10 @@ msgstr ""
724
  msgid "Uninstall"
725
  msgstr ""
726
 
 
 
 
 
727
  #: includes/admin/tracking.php:222
728
  msgid "Allow Tracking"
729
  msgstr ""
@@ -4204,17 +4208,17 @@ msgid ""
4204
  "show on the frontend, you can <a>enable public display of e-mails</a>."
4205
  msgstr ""
4206
 
4207
- #: includes/admin/form-fields.php:470
4208
  msgctxt "form-fields admin"
4209
  msgid "Field deleted."
4210
  msgstr "Veld verwijderd"
4211
 
4212
- #: includes/admin/form-fields.php:512
4213
  msgctxt "form-fields admin"
4214
  msgid "Required fields created successfully."
4215
  msgstr ""
4216
 
4217
- #: includes/admin/form-fields.php:564
4218
  msgctxt "form-fields admin"
4219
  msgid "Tags updated."
4220
  msgstr ""
@@ -6460,7 +6464,7 @@ msgctxt "settings"
6460
  msgid "\"%s\" can not be empty."
6461
  msgstr ""
6462
 
6463
- #: includes/admin/settings/class-settings.php:506
6464
  msgctxt "settings"
6465
  msgid "The slug \"%s\" is already in use for another taxonomy."
6466
  msgstr ""
3
  "Project-Id-Version: Business Directory Plugin v5.7.3\n"
4
  "Report-Msgid-Bugs-To: https://wordpress.org/support/plugin/business-"
5
  "directory-plugin\n"
6
+ "POT-Creation-Date: 2021-03-16 22:30:36+00:00\n"
7
  "PO-Revision-Date: 2020-06-17 15:33-0500\n"
8
  "Last-Translator: admin <info@nederlofcentrum.nl>\n"
9
  "Language-Team: Dutch\n"
272
  msgid "Go back"
273
  msgstr ""
274
 
275
+ #: includes/admin/form-fields.php:524
276
  #: includes/admin/settings/class-settings-bootstrap.php:753
277
  #: templates/email/listing-added.tpl.php:10
278
  #: templates/email/listing-edited.tpl.php:16
281
  msgid "Title"
282
  msgstr "Titel"
283
 
284
+ #: includes/admin/form-fields.php:525 templates/admin/fees-form.tpl.php:216
285
  #: templates/email/listing-added.tpl.php:21
286
  #: templates/email/listing-edited.tpl.php:29
287
  #, fuzzy
288
  msgid "Category"
289
  msgstr "Categorie"
290
 
291
+ #: includes/admin/form-fields.php:526
292
  #, fuzzy
293
  msgid "Excerpt"
294
  msgstr "Uittreksel"
295
 
296
+ #: includes/admin/form-fields.php:527
297
  #, fuzzy
298
  msgid "Content"
299
  msgstr "Inhoud"
300
 
301
+ #: includes/admin/form-fields.php:528
302
  msgid "Tags"
303
  msgstr ""
304
 
305
+ #: includes/admin/form-fields.php:529 includes/form-fields.php:445
306
  #: templates/checkout-billing-form.tpl.php:75
307
  #: themes/default/templates/excerpt_content.tpl.php:22
308
  #, fuzzy
309
  msgid "Address"
310
  msgstr "Adres"
311
 
312
+ #: includes/admin/form-fields.php:530
313
  #, fuzzy
314
  msgid "Address 2"
315
  msgstr "Adres"
316
 
317
+ #: includes/admin/form-fields.php:531
318
  #: templates/admin/payments-details.tpl.php:160
319
  #: templates/checkout-billing-form.tpl.php:87
320
  #, fuzzy
321
  msgid "City"
322
  msgstr "Stad"
323
 
324
+ #: includes/admin/form-fields.php:532
325
  #: templates/admin/payments-details.tpl.php:156
326
  #, fuzzy
327
  msgid "State"
328
  msgstr "Provincie"
329
 
330
+ #: includes/admin/form-fields.php:533
331
  #: templates/admin/payments-details.tpl.php:152
332
  #: templates/checkout-billing-form.tpl.php:102
333
  #, fuzzy
334
  msgid "Country"
335
  msgstr "Land"
336
 
337
+ #: includes/admin/form-fields.php:534 includes/form-fields.php:453
338
  #: templates/admin/payments-details.tpl.php:164
339
  msgid "ZIP Code"
340
  msgstr ""
341
 
342
+ #: includes/admin/form-fields.php:535
343
  #, fuzzy
344
  msgid "FAX Number"
345
  msgstr "Tel nr"
346
 
347
+ #: includes/admin/form-fields.php:536
348
  #: includes/fields/class-fieldtypes-phone-number.php:13
349
  #, fuzzy
350
  msgid "Phone Number"
351
  msgstr "Tel nr"
352
 
353
+ #: includes/admin/form-fields.php:537
354
  #, fuzzy
355
  msgid "Ratings Field"
356
  msgstr "Waardering veld"
357
 
358
+ #: includes/admin/form-fields.php:538
359
  msgid "Twitter"
360
  msgstr ""
361
 
362
+ #: includes/admin/form-fields.php:539 includes/form-fields.php:411
363
  msgid "Website"
364
  msgstr ""
365
 
583
 
584
  #: includes/admin/settings/class-settings-bootstrap.php:638
585
  #, fuzzy
586
+ msgid "Default listing status"
587
  msgstr "Standaard status nieuwe registratie"
588
 
589
  #: includes/admin/settings/class-settings-bootstrap.php:642
724
  msgid "Uninstall"
725
  msgstr ""
726
 
727
+ #: includes/admin/settings/class-settings.php:508
728
+ msgid "%s cannot include spaces, commas, or &"
729
+ msgstr ""
730
+
731
  #: includes/admin/tracking.php:222
732
  msgid "Allow Tracking"
733
  msgstr ""
4208
  "show on the frontend, you can <a>enable public display of e-mails</a>."
4209
  msgstr ""
4210
 
4211
+ #: includes/admin/form-fields.php:471
4212
  msgctxt "form-fields admin"
4213
  msgid "Field deleted."
4214
  msgstr "Veld verwijderd"
4215
 
4216
+ #: includes/admin/form-fields.php:511
4217
  msgctxt "form-fields admin"
4218
  msgid "Required fields created successfully."
4219
  msgstr ""
4220
 
4221
+ #: includes/admin/form-fields.php:563
4222
  msgctxt "form-fields admin"
4223
  msgid "Tags updated."
4224
  msgstr ""
6464
  msgid "\"%s\" can not be empty."
6465
  msgstr ""
6466
 
6467
+ #: includes/admin/settings/class-settings.php:516
6468
  msgctxt "settings"
6469
  msgid "The slug \"%s\" is already in use for another taxonomy."
6470
  msgstr ""
languages/business-directory-plugin-pl_PL.po CHANGED
@@ -3,7 +3,7 @@ msgstr ""
3
  "Project-Id-Version: Business Directory Plugin v5.7.3\n"
4
  "Report-Msgid-Bugs-To: https://wordpress.org/support/plugin/business-"
5
  "directory-plugin\n"
6
- "POT-Creation-Date: 2021-03-03 23:16:40+00:00\n"
7
  "PO-Revision-Date: 2020-06-17 15:33-0500\n"
8
  "Last-Translator: HomeSupport <admin@homesupport.pl>\n"
9
  "Language-Team: HomeSupport\n"
@@ -338,7 +338,7 @@ msgid "Go back"
338
  msgstr ""
339
 
340
  # @ WPBDM
341
- #: includes/admin/form-fields.php:525
342
  #: includes/admin/settings/class-settings-bootstrap.php:753
343
  #: templates/email/listing-added.tpl.php:10
344
  #: templates/email/listing-edited.tpl.php:16
@@ -348,7 +348,7 @@ msgid "Title"
348
  msgstr "Tytuł"
349
 
350
  # @ WPBDM
351
- #: includes/admin/form-fields.php:526 templates/admin/fees-form.tpl.php:216
352
  #: templates/email/listing-added.tpl.php:21
353
  #: templates/email/listing-edited.tpl.php:29
354
  #, fuzzy
@@ -356,25 +356,25 @@ msgid "Category"
356
  msgstr "Kategorie"
357
 
358
  # @ WPBDM
359
- #: includes/admin/form-fields.php:527
360
  #, fuzzy
361
  msgid "Excerpt"
362
  msgstr "W wyciągu z oferty"
363
 
364
  # @ WPBDM
365
- #: includes/admin/form-fields.php:528
366
  #, fuzzy
367
  msgid "Content"
368
  msgstr "Zawartość Posta"
369
 
370
  # @ WPBDM
371
- #: includes/admin/form-fields.php:529
372
  #, fuzzy
373
  msgid "Tags"
374
  msgstr "Slug Tagów"
375
 
376
  # @ WPBDM
377
- #: includes/admin/form-fields.php:530 includes/form-fields.php:445
378
  #: templates/checkout-billing-form.tpl.php:75
379
  #: themes/default/templates/excerpt_content.tpl.php:22
380
  #, fuzzy
@@ -382,13 +382,13 @@ msgid "Address"
382
  msgstr "Adres e-mail:"
383
 
384
  # @ WPBDM
385
- #: includes/admin/form-fields.php:531
386
  #, fuzzy
387
  msgid "Address 2"
388
  msgstr "Adres e-mail:"
389
 
390
  # @ WPBDM
391
- #: includes/admin/form-fields.php:532
392
  #: templates/admin/payments-details.tpl.php:160
393
  #: templates/checkout-billing-form.tpl.php:87
394
  #, fuzzy
@@ -396,49 +396,49 @@ msgid "City"
396
  msgstr "Miasto:"
397
 
398
  # @ WPBDM
399
- #: includes/admin/form-fields.php:533
400
  #: templates/admin/payments-details.tpl.php:156
401
  #, fuzzy
402
  msgid "State"
403
  msgstr "Województwo:"
404
 
405
  # @ WPBDM
406
- #: includes/admin/form-fields.php:534
407
  #: templates/admin/payments-details.tpl.php:152
408
  #: templates/checkout-billing-form.tpl.php:102
409
  #, fuzzy
410
  msgid "Country"
411
  msgstr "Kraj:"
412
 
413
- #: includes/admin/form-fields.php:535 includes/form-fields.php:453
414
  #: templates/admin/payments-details.tpl.php:164
415
  msgid "ZIP Code"
416
  msgstr ""
417
 
418
  # @ WPBDM
419
- #: includes/admin/form-fields.php:536
420
  #, fuzzy
421
  msgid "FAX Number"
422
  msgstr "Numer karty kredytowej:"
423
 
424
  # @ WPBDM
425
- #: includes/admin/form-fields.php:537
426
  #: includes/fields/class-fieldtypes-phone-number.php:13
427
  #, fuzzy
428
  msgid "Phone Number"
429
  msgstr "Telefon"
430
 
431
  # @ WPBDM
432
- #: includes/admin/form-fields.php:538
433
  #, fuzzy
434
  msgid "Ratings Field"
435
  msgstr "Pola ofert"
436
 
437
- #: includes/admin/form-fields.php:539
438
  msgid "Twitter"
439
  msgstr ""
440
 
441
- #: includes/admin/form-fields.php:540 includes/form-fields.php:411
442
  msgid "Website"
443
  msgstr ""
444
 
@@ -690,7 +690,7 @@ msgstr "Przejdź do Twojej oferty."
690
  # @ WPBDM
691
  #: includes/admin/settings/class-settings-bootstrap.php:638
692
  #, fuzzy
693
- msgid "Default free listings status"
694
  msgstr "Domyślny użytkownik oferty"
695
 
696
  # @ WPBDM
@@ -854,6 +854,10 @@ msgstr ""
854
  msgid "Uninstall"
855
  msgstr "Odinstaluj "
856
 
 
 
 
 
857
  # @ WPBDM
858
  #: includes/admin/tracking.php:222
859
  #, fuzzy
@@ -5017,19 +5021,19 @@ msgid ""
5017
  msgstr ""
5018
 
5019
  # @ WPBDM
5020
- #: includes/admin/form-fields.php:470
5021
  msgctxt "form-fields admin"
5022
  msgid "Field deleted."
5023
  msgstr "Pole usunięte."
5024
 
5025
  # @ WPBDM
5026
- #: includes/admin/form-fields.php:512
5027
  msgctxt "form-fields admin"
5028
  msgid "Required fields created successfully."
5029
  msgstr "Pola wymagane zostały pomyślnie utworzone."
5030
 
5031
  # @ WPBDM
5032
- #: includes/admin/form-fields.php:564
5033
  msgctxt "form-fields admin"
5034
  msgid "Tags updated."
5035
  msgstr "Ustawienia zapisane"
@@ -7627,7 +7631,7 @@ msgctxt "settings"
7627
  msgid "\"%s\" can not be empty."
7628
  msgstr ""
7629
 
7630
- #: includes/admin/settings/class-settings.php:506
7631
  msgctxt "settings"
7632
  msgid "The slug \"%s\" is already in use for another taxonomy."
7633
  msgstr ""
3
  "Project-Id-Version: Business Directory Plugin v5.7.3\n"
4
  "Report-Msgid-Bugs-To: https://wordpress.org/support/plugin/business-"
5
  "directory-plugin\n"
6
+ "POT-Creation-Date: 2021-03-16 22:30:36+00:00\n"
7
  "PO-Revision-Date: 2020-06-17 15:33-0500\n"
8
  "Last-Translator: HomeSupport <admin@homesupport.pl>\n"
9
  "Language-Team: HomeSupport\n"
338
  msgstr ""
339
 
340
  # @ WPBDM
341
+ #: includes/admin/form-fields.php:524
342
  #: includes/admin/settings/class-settings-bootstrap.php:753
343
  #: templates/email/listing-added.tpl.php:10
344
  #: templates/email/listing-edited.tpl.php:16
348
  msgstr "Tytuł"
349
 
350
  # @ WPBDM
351
+ #: includes/admin/form-fields.php:525 templates/admin/fees-form.tpl.php:216
352
  #: templates/email/listing-added.tpl.php:21
353
  #: templates/email/listing-edited.tpl.php:29
354
  #, fuzzy
356
  msgstr "Kategorie"
357
 
358
  # @ WPBDM
359
+ #: includes/admin/form-fields.php:526
360
  #, fuzzy
361
  msgid "Excerpt"
362
  msgstr "W wyciągu z oferty"
363
 
364
  # @ WPBDM
365
+ #: includes/admin/form-fields.php:527
366
  #, fuzzy
367
  msgid "Content"
368
  msgstr "Zawartość Posta"
369
 
370
  # @ WPBDM
371
+ #: includes/admin/form-fields.php:528
372
  #, fuzzy
373
  msgid "Tags"
374
  msgstr "Slug Tagów"
375
 
376
  # @ WPBDM
377
+ #: includes/admin/form-fields.php:529 includes/form-fields.php:445
378
  #: templates/checkout-billing-form.tpl.php:75
379
  #: themes/default/templates/excerpt_content.tpl.php:22
380
  #, fuzzy
382
  msgstr "Adres e-mail:"
383
 
384
  # @ WPBDM
385
+ #: includes/admin/form-fields.php:530
386
  #, fuzzy
387
  msgid "Address 2"
388
  msgstr "Adres e-mail:"
389
 
390
  # @ WPBDM
391
+ #: includes/admin/form-fields.php:531
392
  #: templates/admin/payments-details.tpl.php:160
393
  #: templates/checkout-billing-form.tpl.php:87
394
  #, fuzzy
396
  msgstr "Miasto:"
397
 
398
  # @ WPBDM
399
+ #: includes/admin/form-fields.php:532
400
  #: templates/admin/payments-details.tpl.php:156
401
  #, fuzzy
402
  msgid "State"
403
  msgstr "Województwo:"
404
 
405
  # @ WPBDM
406
+ #: includes/admin/form-fields.php:533
407
  #: templates/admin/payments-details.tpl.php:152
408
  #: templates/checkout-billing-form.tpl.php:102
409
  #, fuzzy
410
  msgid "Country"
411
  msgstr "Kraj:"
412
 
413
+ #: includes/admin/form-fields.php:534 includes/form-fields.php:453
414
  #: templates/admin/payments-details.tpl.php:164
415
  msgid "ZIP Code"
416
  msgstr ""
417
 
418
  # @ WPBDM
419
+ #: includes/admin/form-fields.php:535
420
  #, fuzzy
421
  msgid "FAX Number"
422
  msgstr "Numer karty kredytowej:"
423
 
424
  # @ WPBDM
425
+ #: includes/admin/form-fields.php:536
426
  #: includes/fields/class-fieldtypes-phone-number.php:13
427
  #, fuzzy
428
  msgid "Phone Number"
429
  msgstr "Telefon"
430
 
431
  # @ WPBDM
432
+ #: includes/admin/form-fields.php:537
433
  #, fuzzy
434
  msgid "Ratings Field"
435
  msgstr "Pola ofert"
436
 
437
+ #: includes/admin/form-fields.php:538
438
  msgid "Twitter"
439
  msgstr ""
440
 
441
+ #: includes/admin/form-fields.php:539 includes/form-fields.php:411
442
  msgid "Website"
443
  msgstr ""
444
 
690
  # @ WPBDM
691
  #: includes/admin/settings/class-settings-bootstrap.php:638
692
  #, fuzzy
693
+ msgid "Default listing status"
694
  msgstr "Domyślny użytkownik oferty"
695
 
696
  # @ WPBDM
854
  msgid "Uninstall"
855
  msgstr "Odinstaluj "
856
 
857
+ #: includes/admin/settings/class-settings.php:508
858
+ msgid "%s cannot include spaces, commas, or &"
859
+ msgstr ""
860
+
861
  # @ WPBDM
862
  #: includes/admin/tracking.php:222
863
  #, fuzzy
5021
  msgstr ""
5022
 
5023
  # @ WPBDM
5024
+ #: includes/admin/form-fields.php:471
5025
  msgctxt "form-fields admin"
5026
  msgid "Field deleted."
5027
  msgstr "Pole usunięte."
5028
 
5029
  # @ WPBDM
5030
+ #: includes/admin/form-fields.php:511
5031
  msgctxt "form-fields admin"
5032
  msgid "Required fields created successfully."
5033
  msgstr "Pola wymagane zostały pomyślnie utworzone."
5034
 
5035
  # @ WPBDM
5036
+ #: includes/admin/form-fields.php:563
5037
  msgctxt "form-fields admin"
5038
  msgid "Tags updated."
5039
  msgstr "Ustawienia zapisane"
7631
  msgid "\"%s\" can not be empty."
7632
  msgstr ""
7633
 
7634
+ #: includes/admin/settings/class-settings.php:516
7635
  msgctxt "settings"
7636
  msgid "The slug \"%s\" is already in use for another taxonomy."
7637
  msgstr ""
languages/business-directory-plugin-ru_RU.po CHANGED
@@ -3,7 +3,7 @@ msgstr ""
3
  "Project-Id-Version: Business Directory Plugin v5.7.3\n"
4
  "Report-Msgid-Bugs-To: https://wordpress.org/support/plugin/business-"
5
  "directory-plugin\n"
6
- "POT-Creation-Date: 2021-03-03 23:16:40+00:00\n"
7
  "PO-Revision-Date: 2020-06-17 15:33-0500\n"
8
  "Last-Translator: Mick Levin <mikhaillevin@hotmail.com>\n"
9
  "Language-Team: BD Team <support@businessdirectoryplugin.com>\n"
@@ -299,7 +299,7 @@ msgstr "Перейти в раздел \"Управление / Форма\""
299
  msgid "Go back"
300
  msgstr ""
301
 
302
- #: includes/admin/form-fields.php:525
303
  #: includes/admin/settings/class-settings-bootstrap.php:753
304
  #: templates/email/listing-added.tpl.php:10
305
  #: templates/email/listing-edited.tpl.php:16
@@ -308,87 +308,87 @@ msgstr ""
308
  msgid "Title"
309
  msgstr "Название"
310
 
311
- #: includes/admin/form-fields.php:526 templates/admin/fees-form.tpl.php:216
312
  #: templates/email/listing-added.tpl.php:21
313
  #: templates/email/listing-edited.tpl.php:29
314
  #, fuzzy
315
  msgid "Category"
316
  msgstr "Рубрика"
317
 
318
- #: includes/admin/form-fields.php:527
319
  #, fuzzy
320
  msgid "Excerpt"
321
  msgstr "Цитата"
322
 
323
- #: includes/admin/form-fields.php:528
324
  #, fuzzy
325
  msgid "Content"
326
  msgstr "Содержимое"
327
 
328
- #: includes/admin/form-fields.php:529
329
  #, fuzzy
330
  msgid "Tags"
331
  msgstr "Метки"
332
 
333
- #: includes/admin/form-fields.php:530 includes/form-fields.php:445
334
  #: templates/checkout-billing-form.tpl.php:75
335
  #: themes/default/templates/excerpt_content.tpl.php:22
336
  #, fuzzy
337
  msgid "Address"
338
  msgstr "Адрес"
339
 
340
- #: includes/admin/form-fields.php:531
341
  #, fuzzy
342
  msgid "Address 2"
343
  msgstr "Адрес"
344
 
345
- #: includes/admin/form-fields.php:532
346
  #: templates/admin/payments-details.tpl.php:160
347
  #: templates/checkout-billing-form.tpl.php:87
348
  #, fuzzy
349
  msgid "City"
350
  msgstr "Город:"
351
 
352
- #: includes/admin/form-fields.php:533
353
  #: templates/admin/payments-details.tpl.php:156
354
  #, fuzzy
355
  msgid "State"
356
  msgstr "Провинция/Штат:"
357
 
358
- #: includes/admin/form-fields.php:534
359
  #: templates/admin/payments-details.tpl.php:152
360
  #: templates/checkout-billing-form.tpl.php:102
361
  #, fuzzy
362
  msgid "Country"
363
  msgstr "Страна:"
364
 
365
- #: includes/admin/form-fields.php:535 includes/form-fields.php:453
366
  #: templates/admin/payments-details.tpl.php:164
367
  msgid "ZIP Code"
368
  msgstr "Почтовый индекс"
369
 
370
- #: includes/admin/form-fields.php:536
371
  #, fuzzy
372
  msgid "FAX Number"
373
  msgstr "Номер факса"
374
 
375
- #: includes/admin/form-fields.php:537
376
  #: includes/fields/class-fieldtypes-phone-number.php:13
377
  #, fuzzy
378
  msgid "Phone Number"
379
  msgstr "Номер телефона"
380
 
381
- #: includes/admin/form-fields.php:538
382
  #, fuzzy
383
  msgid "Ratings Field"
384
  msgstr "Рейтинг"
385
 
386
- #: includes/admin/form-fields.php:539
387
  #, fuzzy
388
  msgid "Twitter"
389
  msgstr "Twitter"
390
 
391
- #: includes/admin/form-fields.php:540 includes/form-fields.php:411
392
  #, fuzzy
393
  msgid "Website"
394
  msgstr "адрес сайта"
@@ -610,7 +610,7 @@ msgstr "Перейти к Вашей записи"
610
 
611
  #: includes/admin/settings/class-settings-bootstrap.php:638
612
  #, fuzzy
613
- msgid "Default free listings status"
614
  msgstr "Пользователь по-умолчанию для новых записей:"
615
 
616
  #: includes/admin/settings/class-settings-bootstrap.php:642
@@ -761,6 +761,10 @@ msgstr ""
761
  msgid "Uninstall"
762
  msgstr "Удалить"
763
 
 
 
 
 
764
  #: includes/admin/tracking.php:222
765
  #, fuzzy
766
  msgid "Allow Tracking"
@@ -4445,17 +4449,17 @@ msgstr ""
4445
  "показывался всем посетителям, то Вым нужно <a>разрешить соответствующую "
4446
  "настройку</a>."
4447
 
4448
- #: includes/admin/form-fields.php:470
4449
  msgctxt "form-fields admin"
4450
  msgid "Field deleted."
4451
  msgstr "Поле удалено."
4452
 
4453
- #: includes/admin/form-fields.php:512
4454
  msgctxt "form-fields admin"
4455
  msgid "Required fields created successfully."
4456
  msgstr "Обязательное поле удачно создано."
4457
 
4458
- #: includes/admin/form-fields.php:564
4459
  msgctxt "form-fields admin"
4460
  msgid "Tags updated."
4461
  msgstr "Метки сохранены."
@@ -6798,7 +6802,7 @@ msgctxt "settings"
6798
  msgid "\"%s\" can not be empty."
6799
  msgstr ""
6800
 
6801
- #: includes/admin/settings/class-settings.php:506
6802
  msgctxt "settings"
6803
  msgid "The slug \"%s\" is already in use for another taxonomy."
6804
  msgstr ""
3
  "Project-Id-Version: Business Directory Plugin v5.7.3\n"
4
  "Report-Msgid-Bugs-To: https://wordpress.org/support/plugin/business-"
5
  "directory-plugin\n"
6
+ "POT-Creation-Date: 2021-03-16 22:30:36+00:00\n"
7
  "PO-Revision-Date: 2020-06-17 15:33-0500\n"
8
  "Last-Translator: Mick Levin <mikhaillevin@hotmail.com>\n"
9
  "Language-Team: BD Team <support@businessdirectoryplugin.com>\n"
299
  msgid "Go back"
300
  msgstr ""
301
 
302
+ #: includes/admin/form-fields.php:524
303
  #: includes/admin/settings/class-settings-bootstrap.php:753
304
  #: templates/email/listing-added.tpl.php:10
305
  #: templates/email/listing-edited.tpl.php:16
308
  msgid "Title"
309
  msgstr "Название"
310
 
311
+ #: includes/admin/form-fields.php:525 templates/admin/fees-form.tpl.php:216
312
  #: templates/email/listing-added.tpl.php:21
313
  #: templates/email/listing-edited.tpl.php:29
314
  #, fuzzy
315
  msgid "Category"
316
  msgstr "Рубрика"
317
 
318
+ #: includes/admin/form-fields.php:526
319
  #, fuzzy
320
  msgid "Excerpt"
321
  msgstr "Цитата"
322
 
323
+ #: includes/admin/form-fields.php:527
324
  #, fuzzy
325
  msgid "Content"
326
  msgstr "Содержимое"
327
 
328
+ #: includes/admin/form-fields.php:528
329
  #, fuzzy
330
  msgid "Tags"
331
  msgstr "Метки"
332
 
333
+ #: includes/admin/form-fields.php:529 includes/form-fields.php:445
334
  #: templates/checkout-billing-form.tpl.php:75
335
  #: themes/default/templates/excerpt_content.tpl.php:22
336
  #, fuzzy
337
  msgid "Address"
338
  msgstr "Адрес"
339
 
340
+ #: includes/admin/form-fields.php:530
341
  #, fuzzy
342
  msgid "Address 2"
343
  msgstr "Адрес"
344
 
345
+ #: includes/admin/form-fields.php:531
346
  #: templates/admin/payments-details.tpl.php:160
347
  #: templates/checkout-billing-form.tpl.php:87
348
  #, fuzzy
349
  msgid "City"
350
  msgstr "Город:"
351
 
352
+ #: includes/admin/form-fields.php:532
353
  #: templates/admin/payments-details.tpl.php:156
354
  #, fuzzy
355
  msgid "State"
356
  msgstr "Провинция/Штат:"
357
 
358
+ #: includes/admin/form-fields.php:533
359
  #: templates/admin/payments-details.tpl.php:152
360
  #: templates/checkout-billing-form.tpl.php:102
361
  #, fuzzy
362
  msgid "Country"
363
  msgstr "Страна:"
364
 
365
+ #: includes/admin/form-fields.php:534 includes/form-fields.php:453
366
  #: templates/admin/payments-details.tpl.php:164
367
  msgid "ZIP Code"
368
  msgstr "Почтовый индекс"
369
 
370
+ #: includes/admin/form-fields.php:535
371
  #, fuzzy
372
  msgid "FAX Number"
373
  msgstr "Номер факса"
374
 
375
+ #: includes/admin/form-fields.php:536
376
  #: includes/fields/class-fieldtypes-phone-number.php:13
377
  #, fuzzy
378
  msgid "Phone Number"
379
  msgstr "Номер телефона"
380
 
381
+ #: includes/admin/form-fields.php:537
382
  #, fuzzy
383
  msgid "Ratings Field"
384
  msgstr "Рейтинг"
385
 
386
+ #: includes/admin/form-fields.php:538
387
  #, fuzzy
388
  msgid "Twitter"
389
  msgstr "Twitter"
390
 
391
+ #: includes/admin/form-fields.php:539 includes/form-fields.php:411
392
  #, fuzzy
393
  msgid "Website"
394
  msgstr "адрес сайта"
610
 
611
  #: includes/admin/settings/class-settings-bootstrap.php:638
612
  #, fuzzy
613
+ msgid "Default listing status"
614
  msgstr "Пользователь по-умолчанию для новых записей:"
615
 
616
  #: includes/admin/settings/class-settings-bootstrap.php:642
761
  msgid "Uninstall"
762
  msgstr "Удалить"
763
 
764
+ #: includes/admin/settings/class-settings.php:508
765
+ msgid "%s cannot include spaces, commas, or &"
766
+ msgstr ""
767
+
768
  #: includes/admin/tracking.php:222
769
  #, fuzzy
770
  msgid "Allow Tracking"
4449
  "показывался всем посетителям, то Вым нужно <a>разрешить соответствующую "
4450
  "настройку</a>."
4451
 
4452
+ #: includes/admin/form-fields.php:471
4453
  msgctxt "form-fields admin"
4454
  msgid "Field deleted."
4455
  msgstr "Поле удалено."
4456
 
4457
+ #: includes/admin/form-fields.php:511
4458
  msgctxt "form-fields admin"
4459
  msgid "Required fields created successfully."
4460
  msgstr "Обязательное поле удачно создано."
4461
 
4462
+ #: includes/admin/form-fields.php:563
4463
  msgctxt "form-fields admin"
4464
  msgid "Tags updated."
4465
  msgstr "Метки сохранены."
6802
  msgid "\"%s\" can not be empty."
6803
  msgstr ""
6804
 
6805
+ #: includes/admin/settings/class-settings.php:516
6806
  msgctxt "settings"
6807
  msgid "The slug \"%s\" is already in use for another taxonomy."
6808
  msgstr ""
languages/business-directory-plugin-sv_SE.po CHANGED
@@ -5,7 +5,7 @@ msgstr ""
5
  "Project-Id-Version: Business Directory Plugin v5.7.3\n"
6
  "Report-Msgid-Bugs-To: https://wordpress.org/support/plugin/business-"
7
  "directory-plugin\n"
8
- "POT-Creation-Date: 2021-03-03 23:16:40+00:00\n"
9
  "PO-Revision-Date: 2020-06-17 15:33-0500\n"
10
  "Last-Translator: \n"
11
  "Language-Team: \n"
@@ -290,7 +290,7 @@ msgstr "Gå till \"Hantera formulärfält\""
290
  msgid "Go back"
291
  msgstr "Nej, gå tillbaka"
292
 
293
- #: includes/admin/form-fields.php:525
294
  #: includes/admin/settings/class-settings-bootstrap.php:753
295
  #: templates/email/listing-added.tpl.php:10
296
  #: templates/email/listing-edited.tpl.php:16
@@ -299,87 +299,87 @@ msgstr "Nej, gå tillbaka"
299
  msgid "Title"
300
  msgstr "Titel"
301
 
302
- #: includes/admin/form-fields.php:526 templates/admin/fees-form.tpl.php:216
303
  #: templates/email/listing-added.tpl.php:21
304
  #: templates/email/listing-edited.tpl.php:29
305
  #, fuzzy
306
  msgid "Category"
307
  msgstr "Kategori"
308
 
309
- #: includes/admin/form-fields.php:527
310
  #, fuzzy
311
  msgid "Excerpt"
312
  msgstr "Utdrag"
313
 
314
- #: includes/admin/form-fields.php:528
315
  #, fuzzy
316
  msgid "Content"
317
  msgstr "Innehåll"
318
 
319
- #: includes/admin/form-fields.php:529
320
  #, fuzzy
321
  msgid "Tags"
322
  msgstr "Tagg"
323
 
324
- #: includes/admin/form-fields.php:530 includes/form-fields.php:445
325
  #: templates/checkout-billing-form.tpl.php:75
326
  #: themes/default/templates/excerpt_content.tpl.php:22
327
  #, fuzzy
328
  msgid "Address"
329
  msgstr "Adress"
330
 
331
- #: includes/admin/form-fields.php:531
332
  #, fuzzy
333
  msgid "Address 2"
334
  msgstr "Adress"
335
 
336
- #: includes/admin/form-fields.php:532
337
  #: templates/admin/payments-details.tpl.php:160
338
  #: templates/checkout-billing-form.tpl.php:87
339
  #, fuzzy
340
  msgid "City"
341
  msgstr "Stad/ort"
342
 
343
- #: includes/admin/form-fields.php:533
344
  #: templates/admin/payments-details.tpl.php:156
345
  #, fuzzy
346
  msgid "State"
347
  msgstr "Län"
348
 
349
- #: includes/admin/form-fields.php:534
350
  #: templates/admin/payments-details.tpl.php:152
351
  #: templates/checkout-billing-form.tpl.php:102
352
  #, fuzzy
353
  msgid "Country"
354
  msgstr "Land"
355
 
356
- #: includes/admin/form-fields.php:535 includes/form-fields.php:453
357
  #: templates/admin/payments-details.tpl.php:164
358
  msgid "ZIP Code"
359
  msgstr "Postnummer"
360
 
361
- #: includes/admin/form-fields.php:536
362
  #, fuzzy
363
  msgid "FAX Number"
364
  msgstr "faxnummer"
365
 
366
- #: includes/admin/form-fields.php:537
367
  #: includes/fields/class-fieldtypes-phone-number.php:13
368
  #, fuzzy
369
  msgid "Phone Number"
370
  msgstr "Telefonnummer"
371
 
372
- #: includes/admin/form-fields.php:538
373
  #, fuzzy
374
  msgid "Ratings Field"
375
  msgstr "Fält för omdöme"
376
 
377
- #: includes/admin/form-fields.php:539
378
  #, fuzzy
379
  msgid "Twitter"
380
  msgstr "Twitter"
381
 
382
- #: includes/admin/form-fields.php:540 includes/form-fields.php:411
383
  #, fuzzy
384
  msgid "Website"
385
  msgstr "Webbplats"
@@ -608,7 +608,7 @@ msgstr "Gå till din annons."
608
 
609
  #: includes/admin/settings/class-settings-bootstrap.php:638
610
  #, fuzzy
611
- msgid "Default free listings status"
612
  msgstr "standardanvändare"
613
 
614
  #: includes/admin/settings/class-settings-bootstrap.php:642
@@ -765,6 +765,10 @@ msgstr ""
765
  msgid "Uninstall"
766
  msgstr "Avinstallera"
767
 
 
 
 
 
768
  #: includes/admin/tracking.php:222
769
  #, fuzzy
770
  msgid "Allow Tracking"
@@ -4506,17 +4510,17 @@ msgstr ""
4506
  "område kommer inte att visas på frontend. Om du vill att e-postadresser "
4507
  "visas på frontend, kan du <a>aktivera offentlig visning av e-post</a> ."
4508
 
4509
- #: includes/admin/form-fields.php:470
4510
  msgctxt "form-fields admin"
4511
  msgid "Field deleted."
4512
  msgstr "Fält raderas."
4513
 
4514
- #: includes/admin/form-fields.php:512
4515
  msgctxt "form-fields admin"
4516
  msgid "Required fields created successfully."
4517
  msgstr "Obligatoriska fält skapats."
4518
 
4519
- #: includes/admin/form-fields.php:564
4520
  msgctxt "form-fields admin"
4521
  msgid "Tags updated."
4522
  msgstr "Taggar uppdateras."
@@ -6689,7 +6693,7 @@ msgctxt "settings"
6689
  msgid "\"%s\" can not be empty."
6690
  msgstr "\"%s\" får inte vara tomt."
6691
 
6692
- #: includes/admin/settings/class-settings.php:506
6693
  msgctxt "settings"
6694
  msgid "The slug \"%s\" is already in use for another taxonomy."
6695
  msgstr "Sluggen “%s” används redan för en annan taxonomi."
5
  "Project-Id-Version: Business Directory Plugin v5.7.3\n"
6
  "Report-Msgid-Bugs-To: https://wordpress.org/support/plugin/business-"
7
  "directory-plugin\n"
8
+ "POT-Creation-Date: 2021-03-16 22:30:36+00:00\n"
9
  "PO-Revision-Date: 2020-06-17 15:33-0500\n"
10
  "Last-Translator: \n"
11
  "Language-Team: \n"
290
  msgid "Go back"
291
  msgstr "Nej, gå tillbaka"
292
 
293
+ #: includes/admin/form-fields.php:524
294
  #: includes/admin/settings/class-settings-bootstrap.php:753
295
  #: templates/email/listing-added.tpl.php:10
296
  #: templates/email/listing-edited.tpl.php:16
299
  msgid "Title"
300
  msgstr "Titel"
301
 
302
+ #: includes/admin/form-fields.php:525 templates/admin/fees-form.tpl.php:216
303
  #: templates/email/listing-added.tpl.php:21
304
  #: templates/email/listing-edited.tpl.php:29
305
  #, fuzzy
306
  msgid "Category"
307
  msgstr "Kategori"
308
 
309
+ #: includes/admin/form-fields.php:526
310
  #, fuzzy
311
  msgid "Excerpt"
312
  msgstr "Utdrag"
313
 
314
+ #: includes/admin/form-fields.php:527
315
  #, fuzzy
316
  msgid "Content"
317
  msgstr "Innehåll"
318
 
319
+ #: includes/admin/form-fields.php:528
320
  #, fuzzy
321
  msgid "Tags"
322
  msgstr "Tagg"
323
 
324
+ #: includes/admin/form-fields.php:529 includes/form-fields.php:445
325
  #: templates/checkout-billing-form.tpl.php:75
326
  #: themes/default/templates/excerpt_content.tpl.php:22
327
  #, fuzzy
328
  msgid "Address"
329
  msgstr "Adress"
330
 
331
+ #: includes/admin/form-fields.php:530
332
  #, fuzzy
333
  msgid "Address 2"
334
  msgstr "Adress"
335
 
336
+ #: includes/admin/form-fields.php:531
337
  #: templates/admin/payments-details.tpl.php:160
338
  #: templates/checkout-billing-form.tpl.php:87
339
  #, fuzzy
340
  msgid "City"
341
  msgstr "Stad/ort"
342
 
343
+ #: includes/admin/form-fields.php:532
344
  #: templates/admin/payments-details.tpl.php:156
345
  #, fuzzy
346
  msgid "State"
347
  msgstr "Län"
348
 
349
+ #: includes/admin/form-fields.php:533
350
  #: templates/admin/payments-details.tpl.php:152
351
  #: templates/checkout-billing-form.tpl.php:102
352
  #, fuzzy
353
  msgid "Country"
354
  msgstr "Land"
355
 
356
+ #: includes/admin/form-fields.php:534 includes/form-fields.php:453
357
  #: templates/admin/payments-details.tpl.php:164
358
  msgid "ZIP Code"
359
  msgstr "Postnummer"
360
 
361
+ #: includes/admin/form-fields.php:535
362
  #, fuzzy
363
  msgid "FAX Number"
364
  msgstr "faxnummer"
365
 
366
+ #: includes/admin/form-fields.php:536
367
  #: includes/fields/class-fieldtypes-phone-number.php:13
368
  #, fuzzy
369
  msgid "Phone Number"
370
  msgstr "Telefonnummer"
371
 
372
+ #: includes/admin/form-fields.php:537
373
  #, fuzzy
374
  msgid "Ratings Field"
375
  msgstr "Fält för omdöme"
376
 
377
+ #: includes/admin/form-fields.php:538
378
  #, fuzzy
379
  msgid "Twitter"
380
  msgstr "Twitter"
381
 
382
+ #: includes/admin/form-fields.php:539 includes/form-fields.php:411
383
  #, fuzzy
384
  msgid "Website"
385
  msgstr "Webbplats"
608
 
609
  #: includes/admin/settings/class-settings-bootstrap.php:638
610
  #, fuzzy
611
+ msgid "Default listing status"
612
  msgstr "standardanvändare"
613
 
614
  #: includes/admin/settings/class-settings-bootstrap.php:642
765
  msgid "Uninstall"
766
  msgstr "Avinstallera"
767
 
768
+ #: includes/admin/settings/class-settings.php:508
769
+ msgid "%s cannot include spaces, commas, or &"
770
+ msgstr ""
771
+
772
  #: includes/admin/tracking.php:222
773
  #, fuzzy
774
  msgid "Allow Tracking"
4510
  "område kommer inte att visas på frontend. Om du vill att e-postadresser "
4511
  "visas på frontend, kan du <a>aktivera offentlig visning av e-post</a> ."
4512
 
4513
+ #: includes/admin/form-fields.php:471
4514
  msgctxt "form-fields admin"
4515
  msgid "Field deleted."
4516
  msgstr "Fält raderas."
4517
 
4518
+ #: includes/admin/form-fields.php:511
4519
  msgctxt "form-fields admin"
4520
  msgid "Required fields created successfully."
4521
  msgstr "Obligatoriska fält skapats."
4522
 
4523
+ #: includes/admin/form-fields.php:563
4524
  msgctxt "form-fields admin"
4525
  msgid "Tags updated."
4526
  msgstr "Taggar uppdateras."
6693
  msgid "\"%s\" can not be empty."
6694
  msgstr "\"%s\" får inte vara tomt."
6695
 
6696
+ #: includes/admin/settings/class-settings.php:516
6697
  msgctxt "settings"
6698
  msgid "The slug \"%s\" is already in use for another taxonomy."
6699
  msgstr "Sluggen “%s” används redan för en annan taxonomi."
languages/business-directory-plugin.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.11\n"
6
  "Report-Msgid-Bugs-To: "
7
  "https://wordpress.org/support/plugin/business-directory-plugin\n"
8
- "POT-Creation-Date: 2021-03-03 23:16:40+00:00\n"
9
  "MIME-Version: 1.0\n"
10
  "Content-Type: text/plain; charset=utf-8\n"
11
  "Content-Transfer-Encoding: 8bit\n"
@@ -244,7 +244,7 @@ msgstr ""
244
  msgid "Go back"
245
  msgstr ""
246
 
247
- #: includes/admin/form-fields.php:525
248
  #: includes/admin/settings/class-settings-bootstrap.php:753
249
  #: templates/email/listing-added.tpl.php:10
250
  #: templates/email/listing-edited.tpl.php:16
@@ -252,74 +252,74 @@ msgstr ""
252
  msgid "Title"
253
  msgstr ""
254
 
255
- #: includes/admin/form-fields.php:526 templates/admin/fees-form.tpl.php:216
256
  #: templates/email/listing-added.tpl.php:21
257
  #: templates/email/listing-edited.tpl.php:29
258
  msgid "Category"
259
  msgstr ""
260
 
261
- #: includes/admin/form-fields.php:527
262
  msgid "Excerpt"
263
  msgstr ""
264
 
265
- #: includes/admin/form-fields.php:528
266
  msgid "Content"
267
  msgstr ""
268
 
269
- #: includes/admin/form-fields.php:529
270
  msgid "Tags"
271
  msgstr ""
272
 
273
- #: includes/admin/form-fields.php:530 includes/form-fields.php:445
274
  #: templates/checkout-billing-form.tpl.php:75
275
  #: themes/default/templates/excerpt_content.tpl.php:22
276
  msgid "Address"
277
  msgstr ""
278
 
279
- #: includes/admin/form-fields.php:531
280
  msgid "Address 2"
281
  msgstr ""
282
 
283
- #: includes/admin/form-fields.php:532
284
  #: templates/admin/payments-details.tpl.php:160
285
  #: templates/checkout-billing-form.tpl.php:87
286
  msgid "City"
287
  msgstr ""
288
 
289
- #: includes/admin/form-fields.php:533
290
  #: templates/admin/payments-details.tpl.php:156
291
  msgid "State"
292
  msgstr ""
293
 
294
- #: includes/admin/form-fields.php:534
295
  #: templates/admin/payments-details.tpl.php:152
296
  #: templates/checkout-billing-form.tpl.php:102
297
  msgid "Country"
298
  msgstr ""
299
 
300
- #: includes/admin/form-fields.php:535 includes/form-fields.php:453
301
  #: templates/admin/payments-details.tpl.php:164
302
  msgid "ZIP Code"
303
  msgstr ""
304
 
305
- #: includes/admin/form-fields.php:536
306
  msgid "FAX Number"
307
  msgstr ""
308
 
309
- #: includes/admin/form-fields.php:537
310
  #: includes/fields/class-fieldtypes-phone-number.php:13
311
  msgid "Phone Number"
312
  msgstr ""
313
 
314
- #: includes/admin/form-fields.php:538
315
  msgid "Ratings Field"
316
  msgstr ""
317
 
318
- #: includes/admin/form-fields.php:539
319
  msgid "Twitter"
320
  msgstr ""
321
 
322
- #: includes/admin/form-fields.php:540 includes/form-fields.php:411
323
  msgid "Website"
324
  msgstr ""
325
 
@@ -501,7 +501,7 @@ msgid "Owner of anonymous listings"
501
  msgstr ""
502
 
503
  #: includes/admin/settings/class-settings-bootstrap.php:638
504
- msgid "Default free listings status"
505
  msgstr ""
506
 
507
  #: includes/admin/settings/class-settings-bootstrap.php:642
@@ -628,6 +628,10 @@ msgstr ""
628
  msgid "Uninstall"
629
  msgstr ""
630
 
 
 
 
 
631
  #: includes/admin/tracking.php:222
632
  msgid "Allow Tracking"
633
  msgstr ""
@@ -3871,17 +3875,17 @@ msgid ""
3871
  "of e-mails</a>."
3872
  msgstr ""
3873
 
3874
- #: includes/admin/form-fields.php:470
3875
  msgctxt "form-fields admin"
3876
  msgid "Field deleted."
3877
  msgstr ""
3878
 
3879
- #: includes/admin/form-fields.php:512
3880
  msgctxt "form-fields admin"
3881
  msgid "Required fields created successfully."
3882
  msgstr ""
3883
 
3884
- #: includes/admin/form-fields.php:564
3885
  msgctxt "form-fields admin"
3886
  msgid "Tags updated."
3887
  msgstr ""
@@ -5920,7 +5924,7 @@ msgctxt "settings"
5920
  msgid "\"%s\" can not be empty."
5921
  msgstr ""
5922
 
5923
- #: includes/admin/settings/class-settings.php:506
5924
  msgctxt "settings"
5925
  msgid "The slug \"%s\" is already in use for another taxonomy."
5926
  msgstr ""
2
  # This file is distributed under the GPLv2 or any later version.
3
  msgid ""
4
  msgstr ""
5
+ "Project-Id-Version: Business Directory Plugin 5.11.1\n"
6
  "Report-Msgid-Bugs-To: "
7
  "https://wordpress.org/support/plugin/business-directory-plugin\n"
8
+ "POT-Creation-Date: 2021-03-16 22:50:04+00:00\n"
9
  "MIME-Version: 1.0\n"
10
  "Content-Type: text/plain; charset=utf-8\n"
11
  "Content-Transfer-Encoding: 8bit\n"
244
  msgid "Go back"
245
  msgstr ""
246
 
247
+ #: includes/admin/form-fields.php:524
248
  #: includes/admin/settings/class-settings-bootstrap.php:753
249
  #: templates/email/listing-added.tpl.php:10
250
  #: templates/email/listing-edited.tpl.php:16
252
  msgid "Title"
253
  msgstr ""
254
 
255
+ #: includes/admin/form-fields.php:525 templates/admin/fees-form.tpl.php:216
256
  #: templates/email/listing-added.tpl.php:21
257
  #: templates/email/listing-edited.tpl.php:29
258
  msgid "Category"
259
  msgstr ""
260
 
261
+ #: includes/admin/form-fields.php:526
262
  msgid "Excerpt"
263
  msgstr ""
264
 
265
+ #: includes/admin/form-fields.php:527
266
  msgid "Content"
267
  msgstr ""
268
 
269
+ #: includes/admin/form-fields.php:528
270
  msgid "Tags"
271
  msgstr ""
272
 
273
+ #: includes/admin/form-fields.php:529 includes/form-fields.php:445
274
  #: templates/checkout-billing-form.tpl.php:75
275
  #: themes/default/templates/excerpt_content.tpl.php:22
276
  msgid "Address"
277
  msgstr ""
278
 
279
+ #: includes/admin/form-fields.php:530
280
  msgid "Address 2"
281
  msgstr ""
282
 
283
+ #: includes/admin/form-fields.php:531
284
  #: templates/admin/payments-details.tpl.php:160
285
  #: templates/checkout-billing-form.tpl.php:87
286
  msgid "City"
287
  msgstr ""
288
 
289
+ #: includes/admin/form-fields.php:532
290
  #: templates/admin/payments-details.tpl.php:156
291
  msgid "State"
292
  msgstr ""
293
 
294
+ #: includes/admin/form-fields.php:533
295
  #: templates/admin/payments-details.tpl.php:152
296
  #: templates/checkout-billing-form.tpl.php:102
297
  msgid "Country"
298
  msgstr ""
299
 
300
+ #: includes/admin/form-fields.php:534 includes/form-fields.php:453
301
  #: templates/admin/payments-details.tpl.php:164
302
  msgid "ZIP Code"
303
  msgstr ""
304
 
305
+ #: includes/admin/form-fields.php:535
306
  msgid "FAX Number"
307
  msgstr ""
308
 
309
+ #: includes/admin/form-fields.php:536
310
  #: includes/fields/class-fieldtypes-phone-number.php:13
311
  msgid "Phone Number"
312
  msgstr ""
313
 
314
+ #: includes/admin/form-fields.php:537
315
  msgid "Ratings Field"
316
  msgstr ""
317
 
318
+ #: includes/admin/form-fields.php:538
319
  msgid "Twitter"
320
  msgstr ""
321
 
322
+ #: includes/admin/form-fields.php:539 includes/form-fields.php:411
323
  msgid "Website"
324
  msgstr ""
325
 
501
  msgstr ""
502
 
503
  #: includes/admin/settings/class-settings-bootstrap.php:638
504
+ msgid "Default listing status"
505
  msgstr ""
506
 
507
  #: includes/admin/settings/class-settings-bootstrap.php:642
628
  msgid "Uninstall"
629
  msgstr ""
630
 
631
+ #: includes/admin/settings/class-settings.php:508
632
+ msgid "%s cannot include spaces, commas, or &"
633
+ msgstr ""
634
+
635
  #: includes/admin/tracking.php:222
636
  msgid "Allow Tracking"
637
  msgstr ""
3875
  "of e-mails</a>."
3876
  msgstr ""
3877
 
3878
+ #: includes/admin/form-fields.php:471
3879
  msgctxt "form-fields admin"
3880
  msgid "Field deleted."
3881
  msgstr ""
3882
 
3883
+ #: includes/admin/form-fields.php:511
3884
  msgctxt "form-fields admin"
3885
  msgid "Required fields created successfully."
3886
  msgstr ""
3887
 
3888
+ #: includes/admin/form-fields.php:563
3889
  msgctxt "form-fields admin"
3890
  msgid "Tags updated."
3891
  msgstr ""
5924
  msgid "\"%s\" can not be empty."
5925
  msgstr ""
5926
 
5927
+ #: includes/admin/settings/class-settings.php:516
5928
  msgctxt "settings"
5929
  msgid "The slug \"%s\" is already in use for another taxonomy."
5930
  msgstr ""
templates/manage_listings.tpl.php CHANGED
@@ -15,8 +15,8 @@
15
  esc_attr( wpbdp_get_page_link( 'main' ) ),
16
  esc_html__( 'Return to directory', 'business-directory-plugin' )
17
  );
18
- ?>
19
- <?php else : ?>
20
  <p><?php echo esc_html_x( 'Your current listings are shown below. To edit a listing click the edit button. To delete a listing click the delete button.', 'templates', 'business-directory-plugin' ); ?></p>
21
  <?php
22
  while ( $query->have_posts() ) :
@@ -33,8 +33,6 @@
33
  ),
34
  true
35
  );
36
- ?>
37
-
38
- </div>
39
- <?php endif; ?>
40
  </div>
15
  esc_attr( wpbdp_get_page_link( 'main' ) ),
16
  esc_html__( 'Return to directory', 'business-directory-plugin' )
17
  );
18
+ else :
19
+ ?>
20
  <p><?php echo esc_html_x( 'Your current listings are shown below. To edit a listing click the edit button. To delete a listing click the delete button.', 'templates', 'business-directory-plugin' ); ?></p>
21
  <?php
22
  while ( $query->have_posts() ) :
33
  ),
34
  true
35
  );
36
+ endif;
37
+ ?>
 
 
38
  </div>
themes/default/theme.json CHANGED
@@ -1,7 +1,7 @@
1
  {
2
  "name": "Default Theme",
3
  "description": "The default look of Business Directory. A clean, basic look. This theme is always installed and cannot be removed.",
4
- "version": "5.11",
5
  "author": "Business Directory Team",
6
  "author_email": "support@businessdirectoryplugin.com",
7
  "author_url": "https://businessdirectoryplugin.com",
1
  {
2
  "name": "Default Theme",
3
  "description": "The default look of Business Directory. A clean, basic look. This theme is always installed and cannot be removed.",
4
+ "version": "5.11.1",
5
  "author": "Business Directory Team",
6
  "author_email": "support@businessdirectoryplugin.com",
7
  "author_url": "https://businessdirectoryplugin.com",
vendors/anet_php_sdk/tests/AuthorizeNetAIM_Test.php DELETED
@@ -1,888 +0,0 @@
1
- <?php
2
-
3
- require_once 'AuthorizeNet_Test_Config.php';
4
-
5
- class AuthorizeNetAIM_Sandbox_Test extends PHPUnit_Framework_TestCase
6
- {
7
-
8
- public function testAuthCapture()
9
- {
10
- $sale = new AuthorizeNetAIM;
11
- $sale->setFields(
12
- array(
13
- 'amount' => rand(1, 1000),
14
- 'card_num' => '4111111111111111',
15
- 'exp_date' => '0415'
16
- )
17
- );
18
- $response = $sale->authorizeAndCapture();
19
- $this->assertTrue($response->approved);
20
- }
21
-
22
- public function testAuthCaptureSingleDigitMonth()
23
- {
24
- $sale = new AuthorizeNetAIM;
25
- $sale->setFields(
26
- array(
27
- 'amount' => rand(1, 1000),
28
- 'card_num' => '4111111111111111',
29
- 'exp_date' => '415'
30
- )
31
- );
32
- $response = $sale->authorizeAndCapture();
33
- $this->assertTrue($response->approved);
34
- }
35
-
36
- public function testAuthCaptureSingleDigitMonthWithSlash()
37
- {
38
- $sale = new AuthorizeNetAIM;
39
- $sale->setFields(
40
- array(
41
- 'amount' => rand(1, 1000),
42
- 'card_num' => '4111111111111111',
43
- 'exp_date' => '4/15'
44
- )
45
- );
46
- $response = $sale->authorizeAndCapture();
47
- $this->assertTrue($response->approved);
48
- }
49
-
50
- public function testAuthCaptureTwoDigitMonthWithSlash()
51
- {
52
- $sale = new AuthorizeNetAIM;
53
- $sale->setFields(
54
- array(
55
- 'amount' => rand(1, 1000),
56
- 'card_num' => '4111111111111111',
57
- 'exp_date' => '04/15'
58
- )
59
- );
60
- $response = $sale->authorizeAndCapture();
61
- $this->assertTrue($response->approved);
62
- }
63
-
64
- public function testAuthCaptureAlternate()
65
- {
66
- $sale = new AuthorizeNetAIM;
67
- $sale->amount = rand(1, 10000);
68
- $sale->card_num = '6011000000000012';
69
- $sale->exp_date = '04/15';
70
- $response = $sale->authorizeAndCapture();
71
- $this->assertTrue($response->approved);
72
- }
73
-
74
- public function testAuthCaptureShort()
75
- {
76
- $sale = new AuthorizeNetAIM;
77
- $response = $sale->authorizeAndCapture(rand(1, 100), '6011000000000012', '04/16');
78
- $this->assertTrue($response->approved);
79
- }
80
-
81
- public function testAuthCapturePartial()
82
- {
83
- $amount = 3.69;
84
-
85
- $sale = new AuthorizeNetAIM;
86
- $sale->amount = $amount;
87
- $sale->card_num = '4222222222222';
88
- $sale->zip = "46225";
89
- $sale->exp_date = '04/15';
90
- $sale->allow_partial_auth = true;
91
- $response = $sale->authorizeAndCapture();
92
- $this->assertTrue($response->held);
93
- $this->assertEquals("1.23", $response->amount);
94
- $this->assertEquals($amount, $response->requested_amount);
95
- $split_tender_id = $response->split_tender_id;
96
-
97
- // Pay the balance with a different card
98
- $sale = new AuthorizeNetAIM;
99
- $sale->amount = $amount - $response->amount;
100
- $sale->card_num = '6011000000000012';
101
- $sale->exp_date = '04/20';
102
- $sale->split_tender_id = $split_tender_id;
103
- $sale->allow_partial_auth = true;
104
- $response = $sale->authorizeAndCapture();
105
- $this->assertTrue($response->approved);
106
-
107
-
108
- }
109
-
110
- public function testAuthCaptureShortNoVerify()
111
- {
112
- $sale = new AuthorizeNetAIM;
113
- $sale->VERIFY_PEER = false;
114
- $response = $sale->authorizeAndCapture(rand(1, 100), '6011000000000012', '04/19');
115
- $this->assertTrue($response->approved);
116
- }
117
-
118
- // public function testVisaVerify()
119
- // {
120
- // return; // Remove to enable test
121
- // $verify = new AuthorizeNetAIM;
122
- // $verify->amount = "0.00";
123
- // $verify->card_num = '4012888818888';
124
- // $verify->exp_date = "0517";
125
- // $verify->address = "123 Main Street";
126
- // $verify->zip = "94110";
127
- // $verify->authentication_indicator = "5";
128
- // $verify->cardholder_authentication_value = "512";
129
- // $response = $verify->authorizeOnly();
130
- // $this->assertTrue($response->approved);
131
- // }
132
- //
133
- // public function testVisaVerifyFail()
134
- // {
135
- // return; // Remove to enable test
136
- // $verify = new AuthorizeNetAIM;
137
- // $verify->amount = "0.00";
138
- // $verify->card_num = '4012888818888';
139
- // $verify->exp_date = "0517";
140
- // $verify->address = "123 Main Street";
141
- // $verify->zip = "94110";
142
- // $verify->authentication_indicator = "5";
143
- // $verify->cardholder_authentication_value = "";
144
- // $response = $verify->authorizeOnly();
145
- // $this->assertTrue($response->declined);
146
- // }
147
- //
148
- // public function testMastercardVerify()
149
- // {
150
- // return; // Remove to enable test
151
- // $verify = new AuthorizeNetAIM;
152
- // $verify->amount = "0.00";
153
- // $verify->card_num = '5424000000000015';
154
- // $verify->exp_date = "0517";
155
- // $verify->address = "123 Main Street";
156
- // $verify->zip = "94110";
157
- // $verify->authentication_indicator = "2";
158
- // $verify->cardholder_authentication_value = "512";
159
- // $response = $verify->authorizeOnly();
160
- // $this->assertTrue($response->approved);
161
- // }
162
- //
163
- // public function testMastercardVerifyFail()
164
- // {
165
- // return; // Remove to enable test
166
- // $verify = new AuthorizeNetAIM;
167
- // $verify->amount = "0.00";
168
- // $verify->card_num = '5424000000000015';
169
- // $verify->exp_date = "0517";
170
- // $verify->address = "123 Main Street";
171
- // $verify->zip = "94110";
172
- // $verify->authentication_indicator = "2";
173
- // $verify->cardholder_authentication_value = "";
174
- // $response = $verify->authorizeOnly();
175
- // $this->assertTrue($response->declined);
176
- // }
177
-
178
- public function testAimResponseFields()
179
- {
180
-
181
- $sale = new AuthorizeNetAIM;
182
- $sale->card_num = '4111111111111111';
183
- $sale->exp_date = '04/16';
184
- $sale->amount = $amount = rand(1,99);
185
- $sale->description = $description = "Sale description";
186
- $sale->first_name = $first_name = "Jane";
187
- $sale->last_name = $last_name = "Smith";
188
- $sale->company = $company = "Jane Smith Enterprises Inc.";
189
- $sale->address = $address = "20 Main Street";
190
- $sale->city = $city = "San Francisco";
191
- $sale->state = $state = "CA";
192
- $sale->zip = $zip = "94110";
193
- $sale->country = $country = "US";
194
- $sale->phone = $phone = "415-555-5557";
195
- $sale->fax = $fax = "415-555-5556";
196
- $sale->email = $email = "foo@example.com";
197
- $sale->cust_id = $customer_id = "55";
198
- $sale->customer_ip = "98.5.5.5";
199
- $sale->invoice_num = $invoice_number = "123";
200
- $sale->ship_to_first_name = $ship_to_first_name = "John";
201
- $sale->ship_to_last_name = $ship_to_last_name = "Smith";
202
- $sale->ship_to_company = $ship_to_company = "Smith Enterprises Inc.";
203
- $sale->ship_to_address = $ship_to_address = "10 Main Street";
204
- $sale->ship_to_city = $ship_to_city = "San Francisco";
205
- $sale->ship_to_state = $ship_to_state = "CA";
206
- $sale->ship_to_zip = $ship_to_zip_code = "94110";
207
- $sale->ship_to_country = $ship_to_country = "US";
208
- $sale->tax = $tax = "0.00";
209
- $sale->freight = $freight = "Freight<|>ground overnight<|>12.95";
210
- $sale->duty = $duty = "Duty1<|>export<|>15.00";
211
- $sale->tax_exempt = $tax_exempt = "FALSE";
212
- $sale->po_num = $po_num = "12";
213
-
214
-
215
-
216
- $response = $sale->authorizeAndCapture();
217
- $this->assertTrue($response->approved);
218
- $this->assertEquals("1", $response->response_code);
219
- $this->assertEquals("1", $response->response_subcode);
220
- $this->assertEquals("1", $response->response_reason_code);
221
- $this->assertEquals("This transaction has been approved.", $response->response_reason_text);
222
- $this->assertGreaterThan(1, strlen($response->authorization_code));
223
- $this->assertEquals("Y", $response->avs_response);
224
- $this->assertGreaterThan(1, strlen($response->transaction_id));
225
- $this->assertEquals($invoice_number, $response->invoice_number);
226
- $this->assertEquals($description, $response->description);
227
- $this->assertEquals($amount, $response->amount);
228
- $this->assertEquals("CC", $response->method);
229
- $this->assertEquals("auth_capture", $response->transaction_type);
230
- $this->assertEquals($customer_id, $response->customer_id);
231
- $this->assertEquals($first_name, $response->first_name);
232
- $this->assertEquals($last_name, $response->last_name);
233
- $this->assertEquals($company, $response->company);
234
- $this->assertEquals($address, $response->address);
235
- $this->assertEquals($city, $response->city);
236
- $this->assertEquals($state, $response->state);
237
- $this->assertEquals($zip, $response->zip_code);
238
- $this->assertEquals($country, $response->country);
239
- $this->assertEquals($phone, $response->phone);
240
- $this->assertEquals($fax, $response->fax);
241
- $this->assertEquals($email, $response->email_address);
242
- $this->assertEquals($ship_to_first_name, $response->ship_to_first_name);
243
- $this->assertEquals($ship_to_last_name, $response->ship_to_last_name);
244
- $this->assertEquals($ship_to_company, $response->ship_to_company);
245
- $this->assertEquals($ship_to_address, $response->ship_to_address);
246
- $this->assertEquals($ship_to_city, $response->ship_to_city);
247
- $this->assertEquals($ship_to_state, $response->ship_to_state);
248
- $this->assertEquals($ship_to_zip_code, $response->ship_to_zip_code);
249
- $this->assertEquals($ship_to_country, $response->ship_to_country);
250
- $this->assertEquals($tax, $response->tax);
251
- $this->assertEquals("15.00", $response->duty);
252
- $this->assertEquals("12.95", $response->freight);
253
- $this->assertEquals($tax_exempt, $response->tax_exempt);
254
- $this->assertEquals($po_num, $response->purchase_order_number);
255
- $this->assertGreaterThan(1, strlen($response->md5_hash));
256
- $this->assertEquals("", $response->card_code_response);
257
- $this->assertEquals("2", $response->cavv_response);
258
- $this->assertEquals("XXXX1111", $response->account_number);
259
- $this->assertEquals("Visa", $response->card_type);
260
- $this->assertEquals("", $response->split_tender_id);
261
- $this->assertEquals("", $response->requested_amount);
262
- $this->assertEquals("", $response->balance_on_card);
263
-
264
-
265
- }
266
-
267
-
268
- public function testVoid()
269
- {
270
- // First create transaction to void.
271
- $amount = rand(1, 1000);
272
- $sale = new AuthorizeNetAIM;
273
- $sale->setFields(
274
- array(
275
- 'amount' => $amount,
276
- 'card_num' => '6011000000000012',
277
- 'exp_date' => '0415'
278
- )
279
- );
280
- $response = $sale->authorizeAndCapture();
281
- $this->assertTrue($response->approved);
282
-
283
- $void = new AuthorizeNetAIM;
284
- $void->setFields(
285
- array(
286
- 'amount' => $amount,
287
- 'card_num' => '6011000000000012',
288
- 'trans_id' => $response->transaction_id,
289
- )
290
- );
291
- $void_response = $void->Void();
292
- $this->assertTrue($void_response->approved);
293
- }
294
-
295
- public function testVoidShort()
296
- {
297
- // First create transaction to void.
298
- $amount = rand(1, 1000);
299
- $card_num = '6011000000000012';
300
- $exp_date = '0415';
301
- $sale = new AuthorizeNetAIM;
302
- $response = $sale->authorizeAndCapture($amount, $card_num, $exp_date);
303
- $this->assertTrue($response->approved);
304
-
305
- $void = new AuthorizeNetAIM;
306
- $void_response = $void->void($response->transaction_id);
307
- $this->assertTrue($void_response->approved);
308
- }
309
-
310
- public function testAuthCaptureECheckSandbox()
311
- {
312
- $sale = new AuthorizeNetAIM;
313
- $sale->setFields(
314
- array(
315
- 'amount' => rand(1, 1000),
316
- 'method' => 'echeck',
317
- 'bank_aba_code' => '121042882',
318
- 'bank_acct_num' => '123456789123',
319
- 'bank_acct_type' => 'CHECKING',
320
- 'bank_name' => 'Bank of Earth',
321
- 'bank_acct_name' => 'Jane Doe',
322
- 'echeck_type' => 'WEB',
323
- )
324
- );
325
- $response = $sale->authorizeAndCapture();
326
- $this->assertEquals("ECHECK", $response->method);
327
- $this->assertTrue($response->approved);
328
-
329
- }
330
-
331
- public function testAmex()
332
- {
333
- $sale = new AuthorizeNetAIM;
334
- $response = $sale->authorizeAndCapture(rand(1, 100), '370000000000002', '04/16');
335
- $this->assertTrue($response->approved);
336
- }
337
-
338
- public function testDiscover()
339
- {
340
- $sale = new AuthorizeNetAIM;
341
- $response = $sale->authorizeAndCapture(rand(1, 100), '6011000000000012', '04/16');
342
- $this->assertTrue($response->approved);
343
- }
344
-
345
- public function testVisa()
346
- {
347
- $sale = new AuthorizeNetAIM;
348
- $response = $sale->authorizeAndCapture(rand(1, 100), '4012888818888', '04/16');
349
- $this->assertTrue($response->approved);
350
- }
351
-
352
- // public function testJCB()
353
- // {
354
- // return; // Remove to enable test
355
- // $sale = new AuthorizeNetAIM;
356
- // $response = $sale->authorizeAndCapture(rand(1, 100), '3088000000000017', '0905');
357
- // $this->assertTrue($response->approved);
358
- // }
359
- //
360
- // public function testDinersClub()
361
- // {
362
- // return; // Remove to enable test
363
- // $sale = new AuthorizeNetAIM;
364
- // $response = $sale->authorizeAndCapture(rand(1, 100), '38000000000006', '0905');
365
- // $this->assertTrue($response->approved);
366
- // }
367
-
368
- public function testAuthOnly()
369
- {
370
- $auth = new AuthorizeNetAIM;
371
- $auth->setFields(
372
- array(
373
- 'amount' => rand(1, 1000),
374
- 'card_num' => '6011000000000012',
375
- 'exp_date' => '0415'
376
- )
377
- );
378
- $response = $auth->authorizeOnly();
379
- $this->assertTrue($response->approved);
380
- }
381
-
382
- public function testAuthCaptureVoid()
383
- {
384
- $amount = rand(1, 1000);
385
- $auth = new AuthorizeNetAIM;
386
- $auth->setFields(
387
- array(
388
- 'amount' => $amount,
389
- 'card_num' => '6011000000000012',
390
- 'exp_date' => '0415'
391
- )
392
- );
393
- $auth_response = $auth->authorizeOnly();
394
- $this->assertTrue($auth_response->approved);
395
-
396
- // Now capture.
397
- $capture = new AuthorizeNetAIM;
398
- $capture->setFields(
399
- array(
400
- 'amount' => $amount,
401
- 'card_num' => '6011000000000012',
402
- 'exp_date' => '0415',
403
- 'trans_id' => $auth_response->transaction_id,
404
- )
405
- );
406
- $capture_response = $capture->priorAuthCapture();
407
- $this->assertTrue($capture_response->approved);
408
-
409
- // Now void
410
- $void = new AuthorizeNetAIM;
411
- $void->setFields(
412
- array(
413
- 'amount' => $amount,
414
- 'card_num' => '0012',
415
- 'trans_id' => $auth_response->transaction_id,
416
- )
417
- );
418
- $void_response = $void->void();
419
- $this->assertTrue($void_response->approved);
420
- }
421
-
422
- // public function testCredit()
423
- // {
424
- //
425
- // }
426
- //
427
- // public function testPriorAuthCapture()
428
- // {
429
- //
430
- // }
431
- //
432
- // public function testCaptureOnly()
433
- // {
434
- //
435
- // }
436
-
437
- public function testAdvancedAIM()
438
- {
439
- $auth = new AuthorizeNetAIM;
440
- $auth->amount = "45.00";
441
-
442
- // Use eCheck:
443
- $auth->setECheck(
444
- '121042882',
445
- '123456789123',
446
- 'CHECKING',
447
- 'Bank of Earth',
448
- 'Jane Doe',
449
- 'WEB'
450
- );
451
-
452
- // Set multiple line items:
453
- $auth->addLineItem('item1', 'Golf tees', 'Blue tees', '2', '5.00', 'N');
454
- $auth->addLineItem('item2', 'Golf shirt', 'XL', '1', '40.00', 'N');
455
-
456
- // Set Invoice Number:
457
- $auth->invoice_num = time();
458
-
459
- // Set a Merchant Defined Field:
460
- $auth->setCustomField("entrance_source", "Search Engine");
461
-
462
- // Authorize Only:
463
- $response = $auth->authorizeOnly();
464
- $this->assertTrue($response->approved);
465
- if ($response->approved) {
466
- $auth_code = $response->transaction_id;
467
-
468
- // Now capture:
469
- $capture = new AuthorizeNetAIM;
470
- $capture_response = $capture->priorAuthCapture($auth_code);
471
- $this->assertTrue($capture_response->approved);
472
-
473
- // Now void:
474
- $void = new AuthorizeNetAIM;
475
- $void_response = $void->void($capture_response->transaction_id);
476
- $this->assertTrue($void_response->approved);
477
- }
478
- }
479
-
480
- public function testAuthCaptureCustomFields()
481
- {
482
- $sale = new AuthorizeNetAIM;
483
- $sale->setFields(
484
- array(
485
- 'amount' => rand(1, 1000),
486
- 'card_num' => '6011000000000012',
487
- 'exp_date' => '0415'
488
- )
489
- );
490
- $sale->setCustomField("foo", "bar");
491
- $sale->setCustomField("foo2", "bar2");
492
- $sale->setCustomField("foo3", "bar3");
493
- $sale->setCustomField("foo4", "bar4");
494
- $sale->setCustomField("foo5", "bar5");
495
- $sale->setCustomField("My_MerchantField6", "My Merchant Value6");
496
- $sale->setCustomField("foo7", "bar7");
497
- $response = $sale->authorizeAndCapture();
498
- $this->assertTrue($response->approved);
499
- $this->assertEquals("bar", $response->foo);
500
- $this->assertEquals("bar2", $response->foo2);
501
- }
502
-
503
- public function testEncapCharacter()
504
- {
505
- $description = "john doe's present, with comma";
506
- $amount = rand(1, 1000);
507
- $sale = new AuthorizeNetAIM;
508
- $sale->setFields(
509
- array(
510
- 'amount' => $amount,
511
- 'card_num' => '6011000000000012',
512
- 'exp_date' => '0415',
513
- 'encap_char' => '$',
514
- 'description' => $description,
515
- )
516
- );
517
- $response = $sale->authorizeAndCapture();
518
- $this->assertTrue($response->approved);
519
- $this->assertEquals($amount, $response->amount);
520
- $this->assertEquals($description, $response->description);
521
- }
522
-
523
- public function testAuthCaptureSetMultipleCustomFields()
524
- {
525
- $sale = new AuthorizeNetAIM;
526
- $sale->setFields(
527
- array(
528
- 'amount' => rand(1, 1000),
529
- 'card_num' => '6011000000000012',
530
- 'exp_date' => '0415'
531
- )
532
- );
533
- $sale->setCustomFields(array("foo" => "bar", "foo2" => "bar2"));
534
- $response = $sale->authorizeAndCapture();
535
- $this->assertTrue($response->approved);
536
- $this->assertEquals("bar", $response->foo);
537
- $this->assertEquals("bar2", $response->foo2);
538
- }
539
-
540
- public function testInvalidMerchantCredentials()
541
- {
542
- $auth = new AuthorizeNetAIM('d', 'd');
543
- $response = $auth->AuthorizeOnly();
544
- $this->assertTrue($response->error);
545
- $this->assertEquals($response->response_subcode, 2);
546
- $this->assertEquals($response->response_reason_code, 13);
547
- }
548
-
549
- public function testInvalidCreditCard()
550
- {
551
- $sale = new AuthorizeNetAIM;
552
- $sale->setFields(
553
- array(
554
- 'amount' => rand(1, 1000),
555
- 'card_num' => '123',
556
- 'exp_date' => '0415'
557
- )
558
- );
559
- $response = $sale->authorizeAndCapture();
560
- $this->assertFalse($response->approved);
561
- $this->assertTrue($response->error);
562
- }
563
-
564
- public function testError()
565
- {
566
- $sale = new AuthorizeNetAIM;
567
- $sale->unsetField("login");
568
- $sale->unsetField("tran_key");
569
- $sale->unsetField("delim_data");
570
-
571
- $sale->unsetField("version");
572
- $sale->unsetField("relay_response");
573
-
574
- $response = $sale->authorizeAndCapture();
575
- // An exception should have been thrown.
576
- $this->assertFalse($response->approved);
577
- $this->assertTrue($response->error);
578
-
579
- }
580
-
581
- public function testMultipleLineItems()
582
- {
583
- $merchant = (object)array();
584
- $merchant->login = AUTHORIZENET_API_LOGIN_ID;
585
- $merchant->tran_key = AUTHORIZENET_TRANSACTION_KEY;
586
- $merchant->allow_partial_auth = "false";
587
-
588
- $creditCard = array(
589
- 'exp_date' => '02/2012',
590
- 'card_num' => '6011000000000012',
591
- 'card_code' => '452',
592
- );
593
-
594
- $transaction = array(
595
- 'amount' => rand(100, 1000),
596
- 'duplicate_window' => '10',
597
- // 'email_customer' => 'true',
598
- 'footer_email_receipt' => 'thank you for your business!',
599
- 'header_email_receipt' => 'a copy of your receipt is below',
600
- );
601
-
602
- $order = array(
603
- 'description' => 'Johns Bday Gift',
604
- 'invoice_num' => '3123',
605
- 'line_item' => 'item1<|>golf balls<|><|>2<|>18.95<|>Y',
606
- );
607
-
608
- $customer = (object)array();
609
- $customer->first_name = "Jane";
610
- $customer->last_name = "Smith";
611
- $customer->company = "Jane Smith Enterprises Inc.";
612
- $customer->address = "20 Main Street";
613
- $customer->city = "San Francisco";
614
- $customer->state = "CA";
615
- $customer->zip = "94110";
616
- $customer->country = "US";
617
- $customer->phone = "415-555-5557";
618
- $customer->fax = "415-555-5556";
619
- $customer->email = "foo@example.com";
620
- $customer->cust_id = "55";
621
- $customer->customer_ip = "98.5.5.5";
622
-
623
- $shipping_info = (object)array();
624
- $shipping_info->ship_to_first_name = "John";
625
- $shipping_info->ship_to_last_name = "Smith";
626
- $shipping_info->ship_to_company = "Smith Enterprises Inc.";
627
- $shipping_info->ship_to_address = "10 Main Street";
628
- $shipping_info->ship_to_city = "San Francisco";
629
- $shipping_info->ship_to_state = "CA";
630
- $shipping_info->ship_to_zip = "94110";
631
- $shipping_info->ship_to_country = "US";
632
- $shipping_info->tax = "CA";
633
- $shipping_info->freight = "Freight<|>ground overnight<|>12.95";
634
- $shipping_info->duty = "Duty1<|>export<|>15.00";
635
- $shipping_info->tax_exempt = "false";
636
- $shipping_info->po_num = "12";
637
-
638
- $sale = new AuthorizeNetAIM;
639
- $sale->setFields($creditCard);
640
- $sale->setFields($shipping_info);
641
- $sale->setFields($customer);
642
- $sale->setFields($order);
643
- $sale->setFields($merchant);
644
- $sale->setFields($transaction);
645
-
646
- $sale->addLineItem('item2', 'golf tees', 'titanium tees', '2', '2.95', 'Y');
647
- $sale->addLineItem('item3', 'golf shirt', 'red, large', '2', '3.95', 'Y');
648
-
649
- $response = $sale->authorizeAndCapture();
650
-
651
- $this->assertTrue($response->approved);
652
- }
653
-
654
- public function testAllFieldsLongMethod()
655
- {
656
- $merchant = (object)array();
657
- $merchant->login = AUTHORIZENET_API_LOGIN_ID;
658
- $merchant->tran_key = AUTHORIZENET_TRANSACTION_KEY;
659
- $merchant->allow_partial_auth = "false";
660
-
661
- $creditCard = array(
662
- 'exp_date' => '02/2012',
663
- 'card_num' => '6011000000000012',
664
- 'card_code' => '452',
665
- );
666
-
667
- $transaction = array(
668
- 'amount' => rand(100, 1000),
669
- 'duplicate_window' => '10',
670
- // 'email_customer' => 'true',
671
- 'footer_email_receipt' => 'thank you for your business!',
672
- 'header_email_receipt' => 'a copy of your receipt is below',
673
- );
674
-
675
- $order = array(
676
- 'description' => 'Johns Bday Gift',
677
- 'invoice_num' => '3123',
678
- 'line_item' => 'item1<|>golf balls<|><|>2<|>18.95<|>Y',
679
- );
680
-
681
- $customer = (object)array();
682
- $customer->first_name = "Jane";
683
- $customer->last_name = "Smith";
684
- $customer->company = "Jane Smith Enterprises Inc.";
685
- $customer->address = "20 Main Street";
686
- $customer->city = "San Francisco";
687
- $customer->state = "CA";
688
- $customer->zip = "94110";
689
- $customer->country = "US";
690
- $customer->phone = "415-555-5557";
691
- $customer->fax = "415-555-5556";
692
- $customer->email = "foo@example.com";
693
- $customer->cust_id = "55";
694
- $customer->customer_ip = "98.5.5.5";
695
-
696
- $shipping_info = (object)array();
697
- $shipping_info->ship_to_first_name = "John";
698
- $shipping_info->ship_to_last_name = "Smith";
699
- $shipping_info->ship_to_company = "Smith Enterprises Inc.";
700
- $shipping_info->ship_to_address = "10 Main Street";
701
- $shipping_info->ship_to_city = "San Francisco";
702
- $shipping_info->ship_to_state = "CA";
703
- $shipping_info->ship_to_zip = "94110";
704
- $shipping_info->ship_to_country = "US";
705
- $shipping_info->tax = "CA";
706
- $shipping_info->freight = "Freight<|>ground overnight<|>12.95";
707
- $shipping_info->duty = "Duty1<|>export<|>15.00";
708
- $shipping_info->tax_exempt = "false";
709
- $shipping_info->po_num = "12";
710
-
711
- $sale = new AuthorizeNetAIM;
712
- $sale->setFields($creditCard);
713
- $sale->setFields($shipping_info);
714
- $sale->setFields($customer);
715
- $sale->setFields($order);
716
- $sale->setFields($merchant);
717
- $sale->setFields($transaction);
718
- $response = $sale->authorizeAndCapture();
719
-
720
- $this->assertTrue($response->approved);
721
- }
722
-
723
- public function testResponseMethods()
724
- {
725
- $amount = rand(1, 1000);
726
- $zipcode = "02301";
727
-
728
- $sale = new AuthorizeNetAIM;
729
- $sale->setFields(
730
- array(
731
- 'amount' => $amount,
732
- 'card_num' => '6011000000000012',
733
- 'exp_date' => '0415',
734
- 'zip' => $zipcode,
735
- )
736
- );
737
-
738
- $sale->setCustomField("custom1", "custom1value");
739
- $sale->setCustomField("custom2", "custom2value");
740
- $result = $sale->authorizeAndCapture();
741
- $this->assertTrue($result->approved);
742
-
743
- $this->assertEquals("custom2value", $result->custom2);
744
- $this->assertEquals($amount, $result->amount);
745
- $this->assertEquals("CC", $result->method);
746
- $this->assertEquals("auth_capture", $result->transaction_type);
747
- $this->assertEquals("Discover", $result->card_type);
748
- $this->assertEquals($zipcode, $result->zip_code);
749
- }
750
-
751
- public function testSetBadField()
752
- {
753
- try {
754
- $amount = rand(1, 1000);
755
- $zipcode = "02301";
756
-
757
- $sale = new AuthorizeNetAIM;
758
- $sale->setFields(
759
- array(
760
- 'amount' => $amount,
761
- 'card_num' => '6011000000000012',
762
- 'exp_date' => '0415',
763
- 'zipcode' => $zipcode, // Should actually be just "zip"
764
- )
765
- );
766
-
767
- $result = $sale->authorizeAndCapture();
768
- $this->assertTrue($result->approved);
769
- // should have thrown an exception by now
770
- $this->assertFalse(true);
771
- }
772
- catch (AuthorizeNetException $e){
773
- $this->assertTrue(true);
774
-
775
- }
776
- }
777
-
778
- }
779
-
780
-
781
- class AuthorizeNetAIM_Live_Test extends PHPUnit_Framework_TestCase
782
- {
783
-
784
- public function testAuthCaptureSetECheckMethod()
785
- {
786
- if (MERCHANT_LIVE_API_LOGIN_ID) {
787
- // $this->markTestIncomplete('Depends on whether eChecks is enabled');
788
- $sale = new AuthorizeNetAIM(MERCHANT_LIVE_API_LOGIN_ID,MERCHANT_LIVE_TRANSACTION_KEY);
789
- $sale->setSandbox(false);
790
- $sale->test_request = 'TRUE';
791
- $sale->amount = "4.99";
792
- $sale->setECheck(
793
- '121042882',
794
- '123456789123',
795
- 'CHECKING',
796
- 'Bank of Earth',
797
- 'Jane Doe',
798
- 'WEB'
799
- );
800
- $response = $sale->authorizeAndCapture();
801
- $this->assertEquals("ECHECK", $response->method);
802
- $this->assertEquals("18", $response->response_reason_code);
803
- // $this->assertTrue($response->approved);
804
- }
805
- }
806
-
807
- public function testAuthCaptureECheck()
808
- {
809
- if (MERCHANT_LIVE_API_LOGIN_ID) {
810
- // $this->markTestIncomplete('Depends on whether eChecks is enabled');
811
- $sale = new AuthorizeNetAIM(MERCHANT_LIVE_API_LOGIN_ID,MERCHANT_LIVE_TRANSACTION_KEY);
812
- $sale->setSandbox(false);
813
- $sale->test_request = 'TRUE';
814
- $sale->setFields(
815
- array(
816
- 'amount' => rand(1, 1000),
817
- 'method' => 'echeck',
818
- 'bank_aba_code' => '121042882',
819
- 'bank_acct_num' => '123456789123',
820
- 'bank_acct_type' => 'CHECKING',
821
- 'bank_name' => 'Bank of Earth',
822
- 'bank_acct_name' => 'Jane Doe',
823
- 'echeck_type' => 'WEB',
824
- )
825
- );
826
- $response = $sale->authorizeAndCapture();
827
- $this->assertEquals("ECHECK", $response->method);
828
- $this->assertEquals("18", $response->response_reason_code);
829
- // $this->assertTrue($response->approved);
830
- }
831
- }
832
-
833
- public function testAuthCaptureLiveServerTestRequest()
834
- {
835
- if (MERCHANT_LIVE_API_LOGIN_ID) {
836
- $sale = new AuthorizeNetAIM(MERCHANT_LIVE_API_LOGIN_ID,MERCHANT_LIVE_TRANSACTION_KEY);
837
- $sale->setSandbox(false);
838
- $sale->setFields(
839
- array(
840
- 'amount' => rand(1, 1000),
841
- 'card_num' => '6011000000000012',
842
- 'exp_date' => '0415'
843
- )
844
- );
845
- $sale->setField('test_request', 'TRUE');
846
- $response = $sale->authorizeAndCapture();
847
- $this->assertTrue($response->approved);
848
- }
849
- }
850
-
851
- public function testAuthCaptureLiveServer()
852
- {
853
- if (MERCHANT_LIVE_API_LOGIN_ID) {
854
- $sale = new AuthorizeNetAIM(MERCHANT_LIVE_API_LOGIN_ID,MERCHANT_LIVE_TRANSACTION_KEY);
855
- $sale->setSandbox(false);
856
- $sale->test_request = 'TRUE';
857
- $sale->setFields(
858
- array(
859
- 'amount' => rand(1, 1000),
860
- 'card_num' => '6011000000000012',
861
- 'exp_date' => '0415'
862
- )
863
- );
864
- $response = $sale->authorizeAndCapture();
865
- $this->assertTrue($response->approved);
866
- }
867
- }
868
-
869
- public function testInvalidCredentials()
870
- {
871
- if (MERCHANT_LIVE_API_LOGIN_ID) {
872
- // Post a response to live server using invalid credentials.
873
- $sale = new AuthorizeNetAIM('a','a');
874
- $sale->setSandbox(false);
875
- $sale->setFields(
876
- array(
877
- 'amount' => rand(1, 1000),
878
- 'card_num' => '6011000000000012',
879
- 'exp_date' => '0415'
880
- )
881
- );
882
- $response = $sale->authorizeAndCapture();
883
- $this->assertTrue($response->error);
884
- $this->assertEquals("13", $response->response_reason_code);
885
- }
886
- }
887
-
888
- }
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
vendors/anet_php_sdk/tests/AuthorizeNetARB_Test.php DELETED
@@ -1,201 +0,0 @@
1
- <?php
2
-
3
- require_once 'AuthorizeNet_Test_Config.php';
4
-
5
- class AuthorizeNetARB_Test extends PHPUnit_Framework_TestCase
6
- {
7
-
8
- public function testAllMethods()
9
- {
10
- // Set the subscription fields.
11
- $subscription = new AuthorizeNet_Subscription;
12
- $subscription->name = "Short subscription";
13
- $subscription->intervalLength = "1";
14
- $subscription->intervalUnit = "months";
15
- $subscription->startDate = "2011-03-12";
16
- $subscription->totalOccurrences = "14";
17
- $subscription->amount = rand(1,100);
18
- $subscription->creditCardCardNumber = "6011000000000012";
19
- $subscription->creditCardExpirationDate = "2018-10";
20
- $subscription->creditCardCardCode = "123";
21
- $subscription->billToFirstName = "john";
22
- $subscription->billToLastName = "doe";
23
-
24
- // Create the subscription.
25
- $request = new AuthorizeNetARB;
26
- $response = $request->createSubscription($subscription);
27
- $this->assertTrue($response->isOk());
28
- $subscription_id = $response->getSubscriptionId();
29
-
30
- // Get the subscription status
31
- $status_request = new AuthorizeNetARB;
32
- $status_response = $status_request->getSubscriptionStatus($subscription_id);
33
- $this->assertEquals("active",$status_response->getSubscriptionStatus());
34
-
35
- // Update the subscription
36
- $update_request = new AuthorizeNetARB;
37
- $updated_subscription_info = new AuthorizeNet_Subscription;
38
- $updated_subscription_info->billToFirstName = "jane";
39
- $updated_subscription_info->billToLastName = "smith";
40
- $updated_subscription_info->creditCardCardNumber = "6011000000000012";
41
- $updated_subscription_info->creditCardExpirationDate = "2019-10";
42
- $updated_subscription_info->creditCardCardCode = "423";
43
- $update_response = $update_request->updateSubscription($subscription_id, $updated_subscription_info);
44
- $this->assertTrue($update_response->isOk());
45
-
46
- // Cancel the subscription
47
- $cancellation = new AuthorizeNetARB;
48
- $cancel_response = $cancellation->cancelSubscription($subscription_id);
49
- $this->assertTrue($cancel_response->isOk());
50
-
51
- // Get the subscription status
52
- $status_request = new AuthorizeNetARB;
53
- $status_response = $status_request->getSubscriptionStatus($subscription_id);
54
- $this->assertEquals("canceled", $status_response->getSubscriptionStatus());
55
-
56
- }
57
-
58
-
59
- public function testCreateSubscriptionLong()
60
- {
61
-
62
- $subscription = new AuthorizeNet_Subscription;
63
- $subscription->name = "test subscription";
64
- $subscription->intervalLength = "1";
65
- $subscription->intervalUnit = "months";
66
- $subscription->startDate = "2015-03-12";
67
- $subscription->totalOccurrences = "14";
68
- $subscription->trialOccurrences = "";
69
- $subscription->amount = "6.99";
70
- $subscription->trialAmount = "";
71
- $subscription->creditCardCardNumber = "6011000000000012";
72
- $subscription->creditCardExpirationDate = "2018-10";
73
- $subscription->creditCardCardCode = "123";
74
- $subscription->bankAccountAccountType = "";
75
- $subscription->bankAccountRoutingNumber = "";
76
- $subscription->bankAccountAccountNumber = "";
77
- $subscription->bankAccountNameOnAccount = "";
78
- $subscription->bankAccountEcheckType = "";
79
- $subscription->bankAccountBankName = "";
80
- $subscription->orderInvoiceNumber = "";
81
- $subscription->orderDescription = "";
82
- $subscription->customerId = "12";
83
- $subscription->customerEmail = "foo@domain.com";
84
- $subscription->customerPhoneNumber = "";
85
- $subscription->customerFaxNumber = "";
86
- $subscription->billToFirstName = "john";
87
- $subscription->billToLastName = "doe";
88
- $subscription->billToCompany = "";
89
- $subscription->billToAddress = "";
90
- $subscription->billToCity = "";
91
- $subscription->billToState = "";
92
- $subscription->billToZip = "";
93
- $subscription->billToCountry = "";
94
- $subscription->shipToFirstName = "";
95
- $subscription->shipToLastName = "";
96
- $subscription->shipToCompany = "";
97
- $subscription->shipToAddress = "";
98
- $subscription->shipToCity = "";
99
- $subscription->shipToState = "";
100
- $subscription->shipToZip = "";
101
- $subscription->shipToCountry = "";
102
-
103
- $refId = "ref" . time();
104
-
105
- // Create the request and send it.
106
- $request = new AuthorizeNetARB;
107
- $request->setRefId($refId);
108
- $response = $request->createSubscription($subscription);
109
-
110
-
111
- // Handle the response.
112
-
113
- $this->assertTrue($response->isOk());
114
- $this->assertEquals($response->getMessageCode(), "I00001");
115
- $this->assertEquals($response->getMessageText(), "Successful.");
116
- $this->assertEquals($response->getRefId(), $refId);
117
- $this->assertEquals($response->getResultCode(), "Ok");
118
-
119
- // Cancel the subscription to avoid duplicate errors in future
120
-
121
- $cancellation = new AuthorizeNetARB;
122
- $cancellation->setRefId($refId);
123
- $cancel_response = $cancellation->cancelSubscription($response->getSubscriptionId());
124
-
125
-
126
-
127
- $this->assertTrue($cancel_response->isOk());
128
-
129
- }
130
-
131
- public function testCreateSubscriptionECheck()
132
- {
133
-
134
- $subscription = new AuthorizeNet_Subscription;
135
- $subscription->name = "my test echeck subscription";
136
- $subscription->intervalLength = "1";
137
- $subscription->intervalUnit = "months";
138
- $subscription->startDate = "2015-04-12";
139
- $subscription->totalOccurrences = "2";
140
- $subscription->trialOccurrences = "";
141
- $subscription->amount = "11.99";
142
- $subscription->trialAmount = "";
143
- $subscription->bankAccountAccountType = "checking";
144
- $subscription->bankAccountRoutingNumber = "121000248";
145
- $subscription->bankAccountAccountNumber = "12345678";
146
- $subscription->bankAccountNameOnAccount = "John Doe";
147
- $subscription->bankAccountEcheckType = "WEB";
148
- $subscription->bankAccountBankName = "Bank of Earth";
149
- $subscription->orderInvoiceNumber = "";
150
- $subscription->orderDescription = "";
151
- $subscription->customerId = "12";
152
- $subscription->customerEmail = "foo@domain.com";
153
- $subscription->customerPhoneNumber = "";
154
- $subscription->customerFaxNumber = "";
155
- $subscription->billToFirstName = "john";
156
- $subscription->billToLastName = "doe";
157
- $subscription->billToCompany = "";
158
- $subscription->billToAddress = "";
159
- $subscription->billToCity = "";
160
- $subscription->billToState = "";
161
- $subscription->billToZip = "";
162
- $subscription->billToCountry = "";
163
- $subscription->shipToFirstName = "";
164
- $subscription->shipToLastName = "";
165
- $subscription->shipToCompany = "";
166
- $subscription->shipToAddress = "";
167
- $subscription->shipToCity = "";
168
- $subscription->shipToState = "";
169
- $subscription->shipToZip = "";
170
- $subscription->shipToCountry = "";
171
-
172
- $refId = "ref" . time();
173
-
174
- // Create the request and send it.
175
- $request = new AuthorizeNetARB;
176
- $request->setRefId($refId);
177
-
178
- $response = $request->createSubscription($subscription);
179
-
180
-
181
- // Handle the response.
182
-
183
- $this->assertTrue($response->isOk());
184
- $this->assertEquals($response->getMessageCode(), "I00001");
185
- $this->assertEquals($response->getMessageText(), "Successful.");
186
- $this->assertEquals($response->getRefId(), $refId);
187
- $this->assertEquals($response->getResultCode(), "Ok");
188
-
189
-
190
- // Cancel the subscription to avoid duplicate errors in future
191
-
192
-
193
- $cancellation = new AuthorizeNetARB;
194
- $cancellation->setRefId($refId);
195
- $cancel_response = $cancellation->cancelSubscription($response->getSubscriptionId());
196
-
197
- $this->assertTrue($cancel_response->isOk());
198
-
199
- }
200
-
201
- }
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
vendors/anet_php_sdk/tests/AuthorizeNetCIM_Test.php DELETED
@@ -1,355 +0,0 @@
1
- <?php
2
-
3
- require_once 'AuthorizeNet_Test_Config.php';
4
-
5
-
6
- class AuthorizeNetCIM_Test extends PHPUnit_Framework_TestCase
7
- {
8
-
9
- public function testDeleteAllCustomerProfiles()
10
- {
11
- $request = new AuthorizeNetCIM;
12
- $response = $request->getCustomerProfileIds();
13
- $customers = $response->getCustomerProfileIds();
14
-
15
- foreach ($customers as $customer) {
16
- $response = $request->deleteCustomerProfile($customer);
17
- $this->assertTrue($response->isOk());
18
- }
19
-
20
-
21
- }
22
-
23
- public function testXPath()
24
- {
25
-
26
- // Create new customer profile
27
- $request = new AuthorizeNetCIM;
28
- $customerProfile = new AuthorizeNetCustomer;
29
- $customerProfile->description = $description = "Some Description of customer 2";
30
- $customerProfile->merchantCustomerId = $merchantCustomerId = time().rand(1,150);
31
- $customerProfile->email = $email = "test2@domain.com";
32
-
33
- // Add payment profile.
34
- $paymentProfile = new AuthorizeNetPaymentProfile;
35
- $paymentProfile->customerType = "individual";
36
- $paymentProfile->payment->creditCard->cardNumber = "4111111111111111";
37
- $paymentProfile->payment->creditCard->expirationDate = "2021-04";
38
- $customerProfile->paymentProfiles[] = $paymentProfile;
39
-
40
- $response = $request->createCustomerProfile($customerProfile);
41
- $this->assertTrue($response->isOk());
42
- $array = $response->xpath('customerProfileId');
43
- $this->assertEquals($response->getCustomerProfileId(), "{$array[0]}");
44
-
45
- $profile = $request->getCustomerProfile($response->getCustomerProfileId());
46
-
47
- $this->assertEquals($email, (string)array_pop($profile->xpath('profile/email')));
48
- $this->assertEquals($email, (string)array_pop($profile->xpath('profile/email')));
49
- $this->assertEquals($description, (string)array_pop($profile->xpath('profile/description')));
50
- $this->assertEquals($merchantCustomerId, (string)array_pop($profile->xpath('profile/merchantCustomerId')));
51
-
52
- }
53
-
54
-
55
-
56
- public function testCreateCustomerProfile()
57
- {
58
- // Create new customer profile
59
- $request = new AuthorizeNetCIM;
60
- $customerProfile = new AuthorizeNetCustomer;
61
- $customerProfile->description = "Description of customer";
62
- $customerProfile->merchantCustomerId = time().rand(1,100);
63
- $customerProfile->email = "blahbla@domain.com";
64
-
65
- // Add payment profile.
66
- $paymentProfile = new AuthorizeNetPaymentProfile;
67
- $paymentProfile->customerType = "individual";
68
- $paymentProfile->payment->creditCard->cardNumber = "4111111111111111";
69
- $paymentProfile->payment->creditCard->expirationDate = "2015-10";
70
- $customerProfile->paymentProfiles[] = $paymentProfile;
71
-
72
- // Add another payment profile.
73
- $paymentProfile2 = new AuthorizeNetPaymentProfile;
74
- $paymentProfile2->customerType = "business";
75
- $paymentProfile2->payment->bankAccount->accountType = "businessChecking";
76
- $paymentProfile2->payment->bankAccount->routingNumber = "121042882";
77
- $paymentProfile2->payment->bankAccount->accountNumber = "123456789123";
78
- $paymentProfile2->payment->bankAccount->nameOnAccount = "Jane Doe";
79
- $paymentProfile2->payment->bankAccount->echeckType = "WEB";
80
- $paymentProfile2->payment->bankAccount->bankName = "Pandora Bank";
81
- $customerProfile->paymentProfiles[] = $paymentProfile2;
82
-
83
-
84
- // Add shipping address.
85
- $address = new AuthorizeNetAddress;
86
- $address->firstName = "john";
87
- $address->lastName = "Doe";
88
- $address->company = "John Doe Company";
89
- $address->address = "1 Main Street";
90
- $address->city = "Boston";
91
- $address->state = "MA";
92
- $address->zip = "02412";
93
- $address->country = "USA";
94
- $address->phoneNumber = "555-555-5555";
95
- $address->faxNumber = "555-555-5556";
96
- $customerProfile->shipToList[] = $address;
97
-
98
- // Add another shipping address.
99
- $address2 = new AuthorizeNetAddress;
100
- $address2->firstName = "jane";
101
- $address2->lastName = "Doe";
102
- $address2->address = "11 Main Street";
103
- $address2->city = "Boston";
104
- $address2->state = "MA";
105
- $address2->zip = "02412";
106
- $address2->country = "USA";
107
- $address2->phoneNumber = "555-512-5555";
108
- $address2->faxNumber = "555-523-5556";
109
- $customerProfile->shipToList[] = $address2;
110
-
111
- $response = $request->createCustomerProfile($customerProfile);
112
- $this->assertTrue($response->isOk());
113
- $this->assertEquals(2, count($response->getCustomerShippingAddressIds()));
114
- $this->assertEquals(2, count($response->getCustomerPaymentProfileIds()));
115
- $customerProfileId = $response->getCustomerProfileId();
116
-
117
- $this->assertEquals($response->getCustomerProfileId(), "{$response->xml->customerProfileId}");
118
-
119
-
120
-
121
- $response = $request->getCustomerProfile($customerProfileId);
122
- $this->assertEquals($customerProfile->description, (string)$response->xml->profile->description);
123
- $this->assertEquals($customerProfile->merchantCustomerId, (string)$response->xml->profile->merchantCustomerId);
124
- $this->assertEquals($customerProfile->email, (string)$response->xml->profile->email);
125
- $this->assertEquals(substr($customerProfile->paymentProfiles[0]->payment->creditCard->cardNumber, -4, 4), substr((string)$response->xml->profile->paymentProfiles->payment->creditCard->cardNumber, -4, 4));
126
-
127
-
128
-
129
- $this->assertTrue($response->isOk());
130
-
131
-
132
- }
133
-
134
- public function testGetCustomerProfile()
135
- {
136
- // Create new customer profile
137
- $request = new AuthorizeNetCIM;
138
- $customerProfile = new AuthorizeNetCustomer;
139
- $customerProfile->description = "Description of customer";
140
- $customerProfile->merchantCustomerId = time().rand(1,10);
141
- $customerProfile->email = "blahlah@domain.com";
142
- $response = $request->createCustomerProfile($customerProfile);
143
- $this->assertTrue($response->isOk());
144
- $customerProfileId = $response->getCustomerProfileId();
145
-
146
- $response = $request->getCustomerProfile($customerProfileId);
147
-
148
- $this->assertTrue($response->isOk());
149
-
150
- }
151
-
152
- public function testCreateCustomerProfileWithValidationMode()
153
- {
154
- // Create new customer profile
155
- $request = new AuthorizeNetCIM;
156
- $customerProfile = new AuthorizeNetCustomer;
157
- $customerProfile->description = "Some Description of customer 2";
158
- $customerProfile->merchantCustomerId = time().rand(1,10);
159
- $customerProfile->email = "test2@domain.com";
160
-
161
- // Add payment profile.
162
- $paymentProfile = new AuthorizeNetPaymentProfile;
163
- $paymentProfile->customerType = "individual";
164
- $paymentProfile->payment->creditCard->cardNumber = "4111111111111111";
165
- $paymentProfile->payment->creditCard->expirationDate = "2015-04";
166
- $customerProfile->paymentProfiles[] = $paymentProfile;
167
-
168
- // Add another payment profile.
169
- $paymentProfile2 = new AuthorizeNetPaymentProfile;
170
- $paymentProfile2->customerType = "individual";
171
- $paymentProfile2->payment->creditCard->cardNumber = "4222222222222";
172
- $paymentProfile2->payment->creditCard->expirationDate = "2019-10";
173
- $customerProfile->paymentProfiles[] = $paymentProfile2;
174
-
175
- $response = $request->createCustomerProfile($customerProfile, "testMode");
176
-
177
- $this->assertTrue($response->isOk());
178
-
179
- $validationResponses = $response->getValidationResponses();
180
- foreach ($validationResponses as $vr) {
181
- $this->assertTrue($vr->approved);
182
- }
183
-
184
- }
185
-
186
- public function testUpdateSplitTenderGroup()
187
- {
188
- // Create a partial auth test transaction
189
- $amount = 4.92;
190
-
191
- $sale = new AuthorizeNetAIM;
192
- $sale->amount = $amount;
193
- $sale->card_num = '4222222222222';
194
- $sale->zip = "46225";
195
- $sale->exp_date = '04/24';
196
- $sale->allow_partial_auth = true;
197
- $response = $sale->authorizeAndCapture();
198
- $this->assertTrue($response->held);
199
- $this->assertEquals("1.23", $response->amount);
200
- $this->assertEquals($amount, $response->requested_amount);
201
- $split_tender_id = $response->split_tender_id;
202
-
203
- // Charge a bit more
204
- $sale = new AuthorizeNetAIM;
205
- $sale->amount = 1.23;
206
- $sale->card_num = '6011000000000012';
207
- $sale->exp_date = '04/26';
208
- $sale->split_tender_id = $split_tender_id;
209
- $sale->allow_partial_auth = true;
210
- $response = $sale->authorizeAndCapture();
211
- $this->assertTrue($response->approved);
212
-
213
- // Void the group of partial auths.
214
-
215
- $request = new AuthorizeNetCIM;
216
- $response = $request->updateSplitTenderGroup($split_tender_id, "voided");
217
- $this->assertTrue($response->isOk());
218
- }
219
-
220
- public function testAll()
221
- {
222
- // Create new customer profile
223
- $request = new AuthorizeNetCIM;
224
- $customerProfile = new AuthorizeNetCustomer;
225
- $customerProfile->description = "Description of customer";
226
- $customerProfile->merchantCustomerId = time().rand(1,10);
227
- $customerProfile->email = "blahblahblah@domain.com";
228
- $response = $request->createCustomerProfile($customerProfile);
229
- $this->assertTrue($response->isOk());
230
- $customerProfileId = $response->getCustomerProfileId();
231
-
232
- // Update customer profile
233
- $customerProfile->description = "New description";
234
- $customerProfile->email = "newemail@domain.com";
235
- $response = $request->updateCustomerProfile($customerProfileId, $customerProfile);
236
- $this->assertTrue($response->isOk());
237
-
238
- // Add payment profile.
239
- $paymentProfile = new AuthorizeNetPaymentProfile;
240
- $paymentProfile->customerType = "individual";
241
- $paymentProfile->payment->creditCard->cardNumber = "4111111111111111";
242
- $paymentProfile->payment->creditCard->expirationDate = "2015-10";
243
- $response = $request->createCustomerPaymentProfile($customerProfileId, $paymentProfile);
244
- $this->assertTrue($response->isOk());
245
- $paymentProfileId = $response->getPaymentProfileId();
246
-
247
- // Update payment profile.
248
- $paymentProfile->payment->creditCard->cardNumber = "4111111111111111";
249
- $paymentProfile->payment->creditCard->expirationDate = "2017-11";
250
- $response = $request->updateCustomerPaymentProfile($customerProfileId,$paymentProfileId, $paymentProfile);
251
- $this->assertTrue($response->isOk());
252
-
253
- // Add shipping address.
254
- $address = new AuthorizeNetAddress;
255
- $address->firstName = "john";
256
- $address->lastName = "Doe";
257
- $address->company = "John Doe Company";
258
- $address->address = "1 Main Street";
259
- $address->city = "Boston";
260
- $address->state = "MA";
261
- $address->zip = "02412";
262
- $address->country = "USA";
263
- $address->phoneNumber = "555-555-5555";
264
- $address->faxNumber = "555-555-5556";
265
- $response = $request->createCustomerShippingAddress($customerProfileId, $address);
266
- $this->assertTrue($response->isOk());
267
- $customerAddressId = $response->getCustomerAddressId();
268
-
269
- // Update shipping address.
270
- $address->address = "2 First Street";
271
- $response = $request->updateCustomerShippingAddress($customerProfileId, $customerAddressId, $address);
272
- $this->assertTrue($response->isOk());
273
-
274
- // Create Auth & Capture Transaction
275
- $transaction = new AuthorizeNetTransaction;
276
- $transaction->amount = "9.79";
277
- $transaction->customerProfileId = $customerProfileId;
278
- $transaction->customerPaymentProfileId = $paymentProfileId;
279
- $transaction->customerShippingAddressId = $customerAddressId;
280
-
281
- $lineItem = new AuthorizeNetLineItem;
282
- $lineItem->itemId = "4";
283
- $lineItem->name = "Cookies";
284
- $lineItem->description = "Chocolate Chip";
285
- $lineItem->quantity = "4";
286
- $lineItem->unitPrice = "1.00";
287
- $lineItem->taxable = "true";
288
-
289
- $lineItem2 = new AuthorizeNetLineItem;
290
- $lineItem2->itemId = "4";
291
- $lineItem2->name = "Cookies";
292
- $lineItem2->description= "Peanut Butter";
293
- $lineItem2->quantity = "4";
294
- $lineItem2->unitPrice = "1.00";
295
- $lineItem2->taxable = "true";
296
-
297
- $transaction->lineItems[] = $lineItem;
298
- $transaction->lineItems[] = $lineItem2;
299
-
300
-
301
- $response = $request->createCustomerProfileTransaction("AuthCapture", $transaction);
302
- $this->assertTrue($response->isOk());
303
- $transactionResponse = $response->getTransactionResponse();
304
- $this->assertTrue($transactionResponse->approved);
305
- $transactionId = $transactionResponse->transaction_id;
306
-
307
- // Void the transaction
308
- $transaction = new AuthorizeNetTransaction;
309
- $transaction->transId = $transactionId;
310
- $response = $request->createCustomerProfileTransaction("Void", $transaction);
311
- $this->assertTrue($response->isOk());
312
- $transactionResponse = $response->getTransactionResponse();
313
- $this->assertTrue($transactionResponse->approved);
314
-
315
-
316
- // Delete Shipping Address
317
- $response = $request->deleteCustomerShippingAddress($customerProfileId, $customerAddressId);
318
- $this->assertTrue($response->isOk());
319
-
320
- // Delete payment profile.
321
- $response = $request->deleteCustomerPaymentProfile($customerProfileId, $paymentProfileId);
322
- $this->assertTrue($response->isOk());
323
-
324
-
325
- // Delete the profile id for future testing.
326
- $response = $request->deleteCustomerProfile($customerProfileId);
327
- $this->assertTrue($response->isOk());
328
- }
329
-
330
-
331
-
332
-
333
- public function testGetCustomerProfileIds()
334
- {
335
- // Create new customer profile
336
- $request = new AuthorizeNetCIM;
337
- $customerProfile = new AuthorizeNetCustomer;
338
- $customerProfile->description = "Description of customer";
339
- $customerProfile->merchantCustomerId = time().rand(1,10);
340
- $customerProfile->email = "blahblahblah@domain.com";
341
- $response = $request->createCustomerProfile($customerProfile);
342
- $this->assertTrue($response->isOk());
343
- $customerProfileId = $response->getCustomerProfileId();
344
-
345
- $response = $request->getCustomerProfileIds();
346
- $this->assertTrue($response->isOk());
347
- $this->assertTrue(in_array($customerProfileId, $response->getCustomerProfileIds()));
348
-
349
-
350
- }
351
-
352
-
353
-
354
-
355
- }
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
vendors/anet_php_sdk/tests/AuthorizeNetCP_Test.php DELETED
@@ -1,179 +0,0 @@
1
- <?php
2
-
3
- require_once 'AuthorizeNet_Test_Config.php';
4
-
5
- class AuthorizeNetCP_Test extends PHPUnit_Framework_TestCase
6
- {
7
-
8
- public function testAuthCapture()
9
- {
10
- $sale = new AuthorizeNetCP(CP_API_LOGIN_ID, CP_TRANSACTION_KEY);
11
- $sale->setFields(
12
- array(
13
- 'amount' => rand(1, 1000),
14
- 'card_num' => '4111111111111111',
15
- 'exp_date' => '0415',
16
- 'device_type' => '4',
17
- )
18
- );
19
- $response = $sale->authorizeAndCapture();
20
- $this->assertTrue($response->approved);
21
- }
22
-
23
- // public function testMd5()
24
- // {
25
- // return;
26
- // $sale = new AuthorizeNetCP(CP_API_LOGIN_ID, CP_TRANSACTION_KEY);
27
- // $sale->setFields(
28
- // array(
29
- // 'amount' => rand(1, 1000),
30
- // 'card_num' => '4111111111111111',
31
- // 'exp_date' => '0415',
32
- // 'device_type' => '4',
33
- // )
34
- // );
35
- // $response = $sale->authorizeAndCapture();
36
- // $this->assertTrue($response->approved);
37
- // $this->assertTrue($response->isAuthorizeNet(CP_API_LOGIN_ID));
38
- // }
39
-
40
- public function testAuthCaptureTrack1()
41
- {
42
- $sale = new AuthorizeNetCP(CP_API_LOGIN_ID, CP_TRANSACTION_KEY);
43
- $sale->setFields(
44
- array(
45
- 'amount' => rand(1, 1000),
46
- 'device_type' => '4',
47
- )
48
- );
49
- $sale->setTrack1Data('%B4111111111111111^CARDUSER/JOHN^1803101000000000020000831000000?');
50
- $response = $sale->authorizeAndCapture();
51
- $this->assertTrue($response->approved);
52
- }
53
-
54
- public function testAuthCaptureTrack2()
55
- {
56
- $sale = new AuthorizeNetCP(CP_API_LOGIN_ID, CP_TRANSACTION_KEY);
57
- $sale->setFields(
58
- array(
59
- 'amount' => rand(1, 1000),
60
- 'device_type' => '4',
61
- )
62
- );
63
- $sale->setTrack2Data('4111111111111111=1803101000020000831?');
64
- $response = $sale->authorizeAndCapture();
65
- $this->assertTrue($response->approved);
66
- }
67
-
68
- public function testAuthCaptureTrack2Error()
69
- {
70
- $sale = new AuthorizeNetCP(CP_API_LOGIN_ID, CP_TRANSACTION_KEY);
71
- $sale->setFields(
72
- array(
73
- 'amount' => rand(1, 1000),
74
- 'device_type' => '4',
75
- )
76
- );
77
- $sale->setTrack2Data('4411111111111111=1803101000020000831?');
78
- $response = $sale->authorizeAndCapture();
79
- $this->assertFalse($response->approved);
80
- $this->assertTrue($response->error);
81
- $this->assertEquals(6, $response->response_reason_code);
82
- }
83
-
84
- public function testResponseFields()
85
- {
86
- $sale = new AuthorizeNetCP(CP_API_LOGIN_ID, CP_TRANSACTION_KEY);
87
- $sale->setFields(
88
- array(
89
- 'amount' => rand(1, 1000),
90
- 'device_type' => '4',
91
- )
92
- );
93
- $sale->user_ref = $user_ref = "someCustomVariable123";
94
- $sale->setTrack1Data('%B4111111111111111^CARDUSER/JOHN^1803101000000000020000831000000?');
95
- $response = $sale->authorizeAndCapture();
96
-
97
-
98
- $this->assertTrue($response->approved);
99
- $this->assertEquals('1.0',$response->version);
100
- $this->assertEquals('1',$response->response_code);
101
- $this->assertEquals('1',$response->response_reason_code);
102
- $this->assertEquals('(TESTMODE) This transaction has been approved.',$response->response_reason_text);
103
- $this->assertEquals('000000',$response->authorization_code);
104
- $this->assertEquals('P',$response->avs_code);
105
- $this->assertEquals('',$response->card_code_response);
106
- $this->assertEquals('0',$response->transaction_id);
107
- $this->assertStringMatchesFormat('%x',$response->md5_hash);
108
- $this->assertEquals($user_ref, $response->user_ref);
109
- $this->assertEquals('XXXX1111',$response->card_num);
110
- $this->assertEquals('Visa',$response->card_type);
111
-
112
-
113
- }
114
-
115
- public function testXmlResponse()
116
- {
117
- $sale = new AuthorizeNetCP(CP_API_LOGIN_ID, CP_TRANSACTION_KEY);
118
- $sale->setFields(
119
- array(
120
- 'amount' => rand(1, 1000),
121
- 'device_type' => '4',
122
- 'response_format' => '0',
123
- )
124
- );
125
- $sale->user_ref = $user_ref = "dummyvalue323";
126
- $sale->setTrack1Data('%B4111111111111111^CARDUSER/JOHN^1803101000000000020000831000000?');
127
- $response = $sale->authorizeAndCapture();
128
-
129
-
130
- $this->assertTrue($response->approved);
131
- $this->assertEquals('1.0',$response->version);
132
- $this->assertEquals('1',$response->response_code);
133
- $this->assertEquals('1',$response->response_reason_code);
134
- $this->assertEquals('This transaction has been approved.',$response->response_reason_text);
135
- $this->assertEquals('000000',$response->authorization_code);
136
- $this->assertEquals('P',$response->avs_code);
137
- $this->assertEquals('',$response->card_code_response);
138
- $this->assertEquals('0',$response->transaction_id);
139
- $this->assertStringMatchesFormat('%x',$response->md5_hash);
140
- $this->assertEquals($user_ref, $response->user_ref);
141
- $this->assertEquals('XXXX1111',$response->card_num);
142
- $this->assertEquals('Visa',$response->card_type);
143
-
144
-
145
- }
146
-
147
- public function testXmlResponseFailure()
148
- {
149
- $sale = new AuthorizeNetCP(CP_API_LOGIN_ID, CP_TRANSACTION_KEY);
150
- $sale->setFields(
151
- array(
152
- 'amount' => rand(1, 1000),
153
- 'device_type' => '4',
154
- 'response_format' => '0',
155
- )
156
- );
157
- $sale->user_ref = $user_ref = "dummyvalue323";
158
- $sale->setTrack1Data('%B4111111111111^CARDUSER/JOHN^1803101000000000020000831000000?');
159
- $response = $sale->authorizeAndCapture();
160
-
161
-
162
- $this->assertTrue($response->error);
163
- $this->assertEquals('1.0',$response->version);
164
- $this->assertEquals('3',$response->response_code);
165
- $this->assertEquals('6',$response->response_reason_code);
166
- $this->assertEquals('The credit card number is invalid.',$response->response_reason_text);
167
- $this->assertEquals('000000',$response->authorization_code);
168
- $this->assertEquals('P',$response->avs_code);
169
- $this->assertEquals('',$response->card_code_response);
170
- $this->assertEquals('0',$response->transaction_id);
171
- $this->assertStringMatchesFormat('%x',$response->md5_hash);
172
- $this->assertEquals($user_ref, $response->user_ref);
173
- $this->assertEquals('XXXX1111',$response->card_num);
174
-
175
-
176
- }
177
-
178
-
179
- }
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
vendors/anet_php_sdk/tests/AuthorizeNetDPM_Test.php DELETED
@@ -1,25 +0,0 @@
1
- <?php
2
-
3
- require_once 'AuthorizeNet_Test_Config.php';
4
-
5
- class AuthorizeNetDPM_Test extends PHPUnit_Framework_TestCase
6
- {
7
- public function testGenerateFingerprint()
8
- {
9
- $this->assertEquals("db88bbebb8f699acdbe70daad897a68a",AuthorizeNetDPM::getFingerprint("123","123","123","123","123"));
10
- }
11
-
12
- public function testGetCreditCardForm()
13
- {
14
- $fp_sequence = "12345";
15
- $this->assertContains('<input type="hidden" name="x_fp_sequence" value="'.$fp_sequence.'">',AuthorizeNetDPM::getCreditCardForm('2', $fp_sequence, 'ht', '2', '1', true));
16
- }
17
-
18
- public function testRelayResponseUrl()
19
- {
20
- $return_url = 'http://yourdomain.com';
21
-
22
- $this->assertContains('window.location="'.$return_url.'";', AuthorizeNetDPM::getRelayResponseSnippet($return_url));
23
- }
24
-
25
- }
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
vendors/anet_php_sdk/tests/AuthorizeNetSIM_Test.php DELETED
@@ -1,56 +0,0 @@
1
- <?php
2
-
3
- require_once 'AuthorizeNet_Test_Config.php';
4
-
5
- class AuthorizeNetSIM_Test extends PHPUnit_Framework_TestCase
6
- {
7
-
8
- public function testGenerateHash()
9
- {
10
- $_POST['x_amount'] = "4.12";
11
- $_POST['x_trans_id'] = "123";
12
- $message = new AuthorizeNetSIM("528udYYwz","test");
13
- $this->assertEquals("8FC33C32ABB3EDD8BBC4BE3E904CB47E",$message->generateHash());
14
- }
15
-
16
- public function testAmount()
17
- {
18
- $_POST['x_amount'] = "4.12";
19
- $_POST['x_response_code'] = "1";
20
- $message = new AuthorizeNetSIM("528udYYwz","test");
21
- $this->assertEquals("4.12",$message->amount);
22
- $this->assertTrue($message->approved);
23
- }
24
-
25
- public function testIsAuthNet()
26
- {
27
- $_POST['x_amount'] = "4.12";
28
- $_POST['x_trans_id'] = "123";
29
- $_POST['x_MD5_Hash'] = "8FC33C32ABB3EDD8BBC4BE3E904CB47E";
30
- $message = new AuthorizeNetSIM("528udYYwz","test");
31
- $this->assertTrue($message->isAuthorizeNet());
32
-
33
-
34
- $_POST['x_amount'] = "4.12";
35
- $_POST['x_trans_id'] = "123";
36
- $_POST['x_MD5_Hash'] = "8FC33C32BB3EDD8BBC4BE3E904CB47E";
37
- $message = new AuthorizeNetSIM("528udYYwz","test");
38
- $this->assertFalse($message->isAuthorizeNet());
39
- }
40
-
41
- public function testIsError()
42
- {
43
- $_POST['x_amount'] = "4.12";
44
- $_POST['x_response_code'] = "3";
45
- $_POST['x_ship_to_state'] = "CA";
46
- $message = new AuthorizeNetSIM("528udYYwz","test");
47
- $this->assertEquals("3",$message->response_code);
48
- $this->assertTrue($message->error);
49
- $this->assertFalse($message->approved);
50
- $this->assertEquals("CA",$message->ship_to_state);
51
- }
52
-
53
-
54
-
55
-
56
- }
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
vendors/anet_php_sdk/tests/AuthorizeNetSSL_Test.php DELETED
@@ -1,23 +0,0 @@
1
- <?php
2
-
3
- class AuthorizeNetTD_Test extends PHPUnit_Framework_TestCase {
4
- public function testSandboxSSLCertIsValid()
5
- {
6
- exec("echo | openssl s_client -connect test.authorize.net:443 -showcerts -verify 10 -CAfile ../lib/ssl/cert.pem 2>&1", $output, $return_value);
7
- $this->assertEquals(0, $return_value);
8
- $this->assertTrue(in_array('Verify return code: 0 (ok)', array_map('trim', $output)));
9
- exec("echo | openssl s_client -connect apitest.authorize.net:443 -showcerts -verify 10 -CAfile ../lib/ssl/cert.pem 2>&1", $output, $return_value);
10
- $this->assertEquals(0, $return_value);
11
- $this->assertTrue(in_array('Verify return code: 0 (ok)', array_map('trim', $output)));
12
- }
13
-
14
- public function testLiveSSLCertIsValid()
15
- {
16
- exec("echo | openssl s_client -connect secure.authorize.net:443 -showcerts -verify 10 -CAfile ../lib/ssl/cert.pem 2>&1", $output, $return_value);
17
- $this->assertEquals(0, $return_value);
18
- $this->assertTrue(in_array('Verify return code: 0 (ok)', array_map('trim', $output)));
19
- exec("echo | openssl s_client -connect api.authorize.net:443 -showcerts -verify 10 -CAfile ../lib/ssl/cert.pem 2>&1", $output, $return_value);
20
- $this->assertEquals(0, $return_value);
21
- $this->assertTrue(in_array('Verify return code: 0 (ok)', array_map('trim', $output)));
22
- }
23
- }
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
vendors/anet_php_sdk/tests/AuthorizeNetTD_Test.php DELETED
@@ -1,96 +0,0 @@
1
- <?php
2
-
3
- require_once 'AuthorizeNet_Test_Config.php';
4
-
5
-
6
- class AuthorizeNetTD_Test extends PHPUnit_Framework_TestCase
7
- {
8
-
9
-
10
- public function testGetSettledBatchList()
11
- {
12
- $request = new AuthorizeNetTD;
13
- $response = $request->getSettledBatchList();
14
- $this->assertTrue($response->isOk());
15
- $this->assertEquals("I00001",(string)array_pop($response->xpath("messages/message/code")));
16
- }
17
-
18
- public function testGetSettledBatchListIncludeStatistics()
19
- {
20
- $request = new AuthorizeNetTD;
21
- $response = $request->getSettledBatchList(true);
22
- $this->assertTrue($response->isOk());
23
- }
24
-
25
- public function testGetSettledBatchListForMonth()
26
- {
27
- $request = new AuthorizeNetTD;
28
- $response = $request->getSettledBatchListForMonth();
29
- $this->assertTrue($response->isOk());
30
- }
31
-
32
- public function testGetTransactionsForDay()
33
- {
34
- $request = new AuthorizeNetTD;
35
- $transactions = $request->getTransactionsForDay(12, 8, 2010);
36
- $this->assertTrue(is_array($transactions));
37
- }
38
-
39
- public function testGetTransactionList()
40
- {
41
- $request = new AuthorizeNetTD;
42
- $response = $request->getSettledBatchList();
43
- $this->assertTrue($response->isOk());
44
- $batches = $response->xpath("batchList/batch");
45
- $batch_id = (string)$batches[0]->batchId;
46
- $response = $request->getTransactionList($batch_id);
47
- $this->assertTrue($response->isOk());
48
- }
49
-
50
- public function testGetTransactionDetails()
51
- {
52
- $sale = new AuthorizeNetAIM;
53
- $amount = rand(1, 100);
54
- $response = $sale->authorizeAndCapture($amount, '4012888818888', '04/17');
55
- $this->assertTrue($response->approved);
56
-
57
- $transId = $response->transaction_id;
58
-
59
- $request = new AuthorizeNetTD;
60
- $response = $request->getTransactionDetails($transId);
61
- $this->assertTrue($response->isOk());
62
-
63
- $this->assertEquals($transId, (string)$response->xml->transaction->transId);
64
- $this->assertEquals($amount, (string)$response->xml->transaction->authAmount);
65
- $this->assertEquals("Visa", (string)$response->xml->transaction->payment->creditCard->cardType);
66
-
67
- }
68
-
69
- public function testGetUnsettledTransactionList()
70
- {
71
- $sale = new AuthorizeNetAIM;
72
- $amount = rand(1, 100);
73
- $response = $sale->authorizeAndCapture($amount, '4012888818888', '04/17');
74
- $this->assertTrue($response->approved);
75
-
76
- $request = new AuthorizeNetTD;
77
- $response = $request->getUnsettledTransactionList();
78
- $this->assertTrue($response->isOk());
79
- $this->assertTrue($response->xml->transactions->count() >= 1);
80
- }
81
-
82
- public function testGetBatchStatistics()
83
- {
84
- $request = new AuthorizeNetTD;
85
- $response = $request->getSettledBatchList();
86
- $this->assertTrue($response->isOk());
87
- $this->assertTrue($response->xml->batchList->count() >= 1);
88
- $batchId = $response->xml->batchList->batch[0]->batchId;
89
-
90
- $request = new AuthorizeNetTD;
91
- $response = $request->getBatchStatistics($batchId);
92
- $this->assertTrue($response->isOk());
93
- }
94
-
95
-
96
- }
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
vendors/anet_php_sdk/tests/AuthorizeNet_SOAP_Test.php DELETED
@@ -1,31 +0,0 @@
1
- <?php
2
-
3
- require_once 'AuthorizeNet_Test_Config.php';
4
-
5
- class AuthorizeNet_SOAP_Test extends PHPUnit_Framework_TestCase
6
- {
7
-
8
- public function testSaveSoapDoc ()
9
- {
10
- $filepath = dirname(__FILE__) . "/soap_doc.php";
11
- $client = new AuthorizeNetSOAP;
12
- $this->assertTrue($client->saveSoapDocumentation($filepath) > 1);
13
- unlink($filepath);
14
- }
15
-
16
- public function testGetCustomerIds ()
17
- {
18
- $client = new AuthorizeNetSOAP;
19
- $result = $client->GetCustomerProfileIds(
20
- array(
21
- 'merchantAuthentication' => array(
22
- 'name' => AUTHORIZENET_API_LOGIN_ID,
23
- 'transactionKey' => AUTHORIZENET_TRANSACTION_KEY,
24
- ),
25
- )
26
- );
27
- $customer_ids = $result->GetCustomerProfileIdsResult->ids->long;
28
- $this->assertTrue(is_array($customer_ids));
29
- }
30
-
31
- }
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
vendors/anet_php_sdk/tests/AuthorizeNet_Test_Config.php DELETED
@@ -1,47 +0,0 @@
1
- <?php
2
- /**
3
- * Tests for the AuthorizeNet PHP SDK
4
- */
5
-
6
- /**
7
- * Enter your test account credentials to run tests against sandbox.
8
- */
9
- define("AUTHORIZENET_API_LOGIN_ID", "");
10
- define("AUTHORIZENET_TRANSACTION_KEY", "");
11
- define("AUTHORIZENET_MD5_SETTING", "");
12
- /**
13
- * Enter your live account credentials to run tests against production gateway.
14
- */
15
- define("MERCHANT_LIVE_API_LOGIN_ID", "");
16
- define("MERCHANT_LIVE_TRANSACTION_KEY", "");
17
-
18
- /**
19
- * Card Present Sandbox Credentials
20
- */
21
- define("CP_API_LOGIN_ID", "");
22
- define("CP_TRANSACTION_KEY", "");
23
-
24
-
25
- define("AUTHORIZENET_LOG_FILE", dirname(__FILE__) . "/log");
26
- // Clear logfile
27
- file_put_contents(AUTHORIZENET_LOG_FILE, "");
28
-
29
-
30
-
31
-
32
-
33
- if (!function_exists('curl_init')) {
34
- throw new Exception('AuthorizeNetSDK needs the CURL PHP extension.');
35
- }
36
-
37
-
38
- if (!function_exists('simplexml_load_file')) {
39
- throw new Exception('The AuthorizeNet SDK requires the SimpleXML PHP extension.');
40
- }
41
-
42
- require_once dirname(dirname(__FILE__)) . '/AuthorizeNet.php';
43
- require_once 'PHPUnit/Framework.php';
44
-
45
- if (AUTHORIZENET_API_LOGIN_ID == "") {
46
- die('Enter your merchant credentials in '.__FILE__.' before running the test suite.');
47
- }
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
vendors/anet_php_sdk/tests/README DELETED
@@ -1,17 +0,0 @@
1
- By:
2
- Authorize.Net
3
- http://developer.authorize.net
4
- http://community.developer.authorize.net
5
-
6
- About:
7
- Integration tests for the AuthorizeNet SDK. These tests are mainly
8
- for SDK development. However, you can also browse through these
9
- tests to find more usage examples for the various APIs.
10
-
11
- Requirements:
12
- - PHPUnit
13
- - An Authorize.Net Test Account and/or Merchant Account. You can get a
14
- free test account at http://developer.authorize.net/testaccount/
15
-
16
- Usage:
17
- - On the command line in this folder run: phpunit .
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
vendors/anet_php_sdk/tests/domain.crt DELETED
@@ -1,51 +0,0 @@
1
- CONNECTED(00000003)
2
- ---
3
- Certificate chain
4
- 0 s:/C=US/ST=Utah/L=American Fork/O=Authorize.Net Corp./OU=AUTHORIZE.NET CORP./CN=secure.authorize.net
5
- i:/C=ZA/O=Thawte Consulting (Pty) Ltd./CN=Thawte SGC CA
6
- 1 s:/C=ZA/O=Thawte Consulting (Pty) Ltd./CN=Thawte SGC CA
7
- i:/C=US/O=VeriSign, Inc./OU=Class 3 Public Primary Certification Authority
8
- ---
9
- Server certificate
10
- -----BEGIN CERTIFICATE-----
11
- MIIDSTCCArKgAwIBAgIQfmO9EP9/fYY45sRzhqgfGzANBgkqhkiG9w0BAQUFADBM
12
- MQswCQYDVQQGEwJaQTElMCMGA1UEChMcVGhhd3RlIENvbnN1bHRpbmcgKFB0eSkg
13
- THRkLjEWMBQGA1UEAxMNVGhhd3RlIFNHQyBDQTAeFw0wOTA0MDkwMDAwMDBaFw0x
14
- MTA0MTEyMzU5NTlaMIGPMQswCQYDVQQGEwJVUzENMAsGA1UECBMEVXRhaDEWMBQG
15
- A1UEBxMNQW1lcmljYW4gRm9yazEcMBoGA1UEChMTQXV0aG9yaXplLk5ldCBDb3Jw
16
- LjEcMBoGA1UECxMTQVVUSE9SSVpFLk5FVCBDT1JQLjEdMBsGA1UEAxMUc2VjdXJl
17
- LmF1dGhvcml6ZS5uZXQwgZ8wDQYJKoZIhvcNAQEBBQADgY0AMIGJAoGBAN0dh86L
18
- 70MHbun7wTNGV0pNXsnebt3z9mCpndLUiBp5J/b57hQO5/HvevkhkDyCrky/Dn7y
19
- 4SEJh6RHYuP4ZBk30DS8iH5dWCRHqSQgpMKhUl/+D7KHbVqgPzOpOR44TiSa1P5m
20
- Fv0qicvRR3iwSK/6ESywNvEJk1iiYPnpnnlvAgMBAAGjgecwgeQwDAYDVR0TAQH/
21
- BAIwADA2BgNVHR8ELzAtMCugKaAnhiVodHRwOi8vY3JsLnRoYXd0ZS5jb20vVGhh
22
- d3RlU0dDQ0EuY3JsMCgGA1UdJQQhMB8GCCsGAQUFBwMBBggrBgEFBQcDAgYJYIZI
23
- AYb4QgQBMHIGCCsGAQUFBwEBBGYwZDAiBggrBgEFBQcwAYYWaHR0cDovL29jc3Au
24
- dGhhd3RlLmNvbTA+BggrBgEFBQcwAoYyaHR0cDovL3d3dy50aGF3dGUuY29tL3Jl
25
- cG9zaXRvcnkvVGhhd3RlX1NHQ19DQS5jcnQwDQYJKoZIhvcNAQEFBQADgYEARa0l
26
- PaGn4TOw3KOMVu8eiSdho4Nmal6u9AWE3rWHDakO2/a1AkZTM2/Wpt6KI3fp6WWK
27
- LSsa9wLoVYSJ6pI7bmiJTvyx42yPP0PZXQSz05PHgTEGyW2jAn4N1hFvbTj28mZT
28
- jv2jd12xgrmX34nulLdydNaM8J7CauhMvqwwvZ0=
29
- -----END CERTIFICATE-----
30
- subject=/C=US/ST=Utah/L=American Fork/O=Authorize.Net Corp./OU=AUTHORIZE.NET CORP./CN=secure.authorize.net
31
- issuer=/C=ZA/O=Thawte Consulting (Pty) Ltd./CN=Thawte SGC CA
32
- ---
33
- No client certificate CA names sent
34
- ---
35
- SSL handshake has read 1791 bytes and written 306 bytes
36
- ---
37
- New, TLSv1/SSLv3, Cipher is RC4-MD5
38
- Server public key is 1024 bit
39
- Compression: NONE
40
- Expansion: NONE
41
- SSL-Session:
42
- Protocol : TLSv1
43
- Cipher : RC4-MD5
44
- Session-ID: 03130000B43AEDC6A4B731EB5FA519E70B6CAC52856869A8593521601F677C28
45
- Session-ID-ctx:
46
- Master-Key: C92AA33E812EFC279AAFF16922CFB3519F94FDA820ED3158A72BD97D3BB2D0EC938E7E71817958DB545EA2E147CCC84A
47
- Key-Arg : None
48
- Start Time: 1297707939
49
- Timeout : 300 (sec)
50
- Verify return code: 20 (unable to get local issuer certificate)
51
- ---
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
vendors/anet_php_sdk/tests/report.html DELETED
@@ -1 +0,0 @@
1
- <html><body><h2 id="AuthorizeNet_SOAP_Test">AuthorizeNet_SOAP_</h2><ul><li>Save soap doc</li><li>Get customer ids</li></ul><h2 id="AuthorizeNetAIM_Sandbox_Test">AuthorizeNetAIM_Sandbox_</h2><ul><li>Auth capture</li><li>Auth capture alternate</li><li>Auth capture short</li><li>Auth capture partial</li><li>Auth capture short no verify</li><li>Aim response fields</li><li>Void</li><li>Void short</li><li>Auth capture e check sandbox</li><li>Amex</li><li>Discover</li><li>Visa</li><li>Auth only</li><li>Auth capture void</li><li>Advanced a i m</li><li>Auth capture custom fields</li><li>Encap character</li><li>Auth capture set multiple custom fields</li><li>Invalid merchant credentials</li><li>Invalid credit card</li><li>Error</li><li>Multiple line items</li><li>All fields long method</li><li>Response methods</li><li>Set bad field</li></ul><h2 id="AuthorizeNetAIM_Live_Test">AuthorizeNetAIM_Live_</h2><ul><li>Auth capture set e check method</li><li>Auth capture e check</li><li>Auth capture live server test request</li><li>Auth capture live server</li><li>Invalid credentials</li></ul><h2 id="AuthorizeNetARB_Test">AuthorizeNetARB_</h2><ul><li><strike>All methods</strike></li><li>Create subscription long</li><li>Create subscription e check</li></ul><h2 id="AuthorizeNetCIM_Test">AuthorizeNetCIM_</h2><ul><li>Delete all customer profiles</li><li>X path</li><li>Create customer profile</li><li>Get customer profile</li><li>Create customer profile with validation mode</li><li>Update split tender group</li><li>All</li><li>Get customer profile ids</li></ul><h2 id="AuthorizeNetCP_Test">AuthorizeNetCP_</h2><ul><li>Auth capture</li><li>Auth capture track 1</li><li>Auth capture track</li><li>Auth capture track 2 error</li><li>Response fields</li><li>Xml response</li><li>Xml response failure</li></ul><h2 id="AuthorizeNetDPM_Test">AuthorizeNetDPM_</h2><ul><li>Generate fingerprint</li><li>Get credit card form</li><li>Relay response url</li></ul><h2 id="AuthorizeNetSIM_Test">AuthorizeNetSIM_</h2><ul><li>Generate hash</li><li>Amount</li><li>Is auth net</li><li>Is error</li></ul><h2 id="AuthorizeNetTD_Test">AuthorizeNetTD_</h2><ul><li>Get settled batch list</li><li>Get settled batch list include statistics</li><li>Get settled batch list for month</li><li>Get transactions for day</li><li>Get transaction list</li><li>Get transaction details</li></ul></body></html>