myCRED - Version 1.4.6

Version Description

Improvement of Email Notifications, Invite Anyone and bug fixes.

=

Download this release

Release Info

Developer designbymerovingi
Plugin Icon 128x128 myCRED
Version 1.4.6
Comparing to
See all releases

Code changes from version 1.4.5 to 1.4.6

abstracts/mycred-abstract-module.php CHANGED
@@ -326,11 +326,11 @@ if ( ! class_exists( 'myCRED_Module' ) ) {
326
  /**
327
  * Add Admin Menu Item
328
  * @since 0.1
329
- * @version 1.2
330
  */
331
  function add_menu() {
332
  // Network Setting for Multisites
333
- if ( mycred_override_settings() && $GLOBALS['blog_id'] > 1 && substr( $this->screen_id, 0, 6 ) == 'myCRED' ) return;
334
 
335
  if ( ! empty( $this->labels ) && ! empty( $this->screen_id ) ) {
336
  // Menu Slug
326
  /**
327
  * Add Admin Menu Item
328
  * @since 0.1
329
+ * @version 1.2.1
330
  */
331
  function add_menu() {
332
  // Network Setting for Multisites
333
+ if ( mycred_override_settings() && $GLOBALS['blog_id'] > 1 && substr( $this->screen_id, 0, 6 ) == 'myCRED' && strlen( $this->screen_id ) > 6 ) return;
334
 
335
  if ( ! empty( $this->labels ) && ! empty( $this->screen_id ) ) {
336
  // Menu Slug
addons/buy-creds/abstracts/mycred-abstract-payment-gateway.php CHANGED
@@ -5,7 +5,7 @@ if ( ! defined( 'myCRED_VERSION' ) ) exit;
5
  * myCRED_Payment_Gateway class
6
  * @see http://mycred.me/add-ons/mycred_payment_gateway/
7
  * @since 0.1
8
- * @version 1.1.1
9
  */
10
  if ( ! class_exists( 'myCRED_Payment_Gateway' ) ) {
11
  abstract class myCRED_Payment_Gateway {
@@ -15,7 +15,7 @@ if ( ! class_exists( 'myCRED_Payment_Gateway' ) ) {
15
  public $prefs = false;
16
 
17
  protected $current_user_id = 0;
18
- protected $sandbox_mode = false;
19
  public $gateway_logo_url = '';
20
 
21
  protected $response;
@@ -795,7 +795,7 @@ if ( ! class_exists( 'myCRED_Payment_Gateway' ) ) {
795
  'TWD' => 'Taiwan New Dollars',
796
  'THB' => 'Thai Baht'
797
  );
798
- $currencies = apply_filters( 'mycred_dropdown_currencies', $currencies );
799
  $currencies = apply_filters( 'mycred_dropdown_currencies_' . $this->id, $currencies );
800
 
801
  if ( ! empty( $js ) )
5
  * myCRED_Payment_Gateway class
6
  * @see http://mycred.me/add-ons/mycred_payment_gateway/
7
  * @since 0.1
8
+ * @version 1.1
9
  */
10
  if ( ! class_exists( 'myCRED_Payment_Gateway' ) ) {
11
  abstract class myCRED_Payment_Gateway {
15
  public $prefs = false;
16
 
17
  protected $current_user_id = 0;
18
+ protected $sandbox_mode = NULL;
19
  public $gateway_logo_url = '';
20
 
21
  protected $response;
795
  'TWD' => 'Taiwan New Dollars',
796
  'THB' => 'Thai Baht'
797
  );
798
+ $currencies = apply_filters( 'mycred_dropdown_currencies', $currencies, $this->id );
799
  $currencies = apply_filters( 'mycred_dropdown_currencies_' . $this->id, $currencies );
800
 
801
  if ( ! empty( $js ) )
addons/buy-creds/myCRED-addon-buy-creds.php CHANGED
@@ -70,6 +70,10 @@ if ( ! class_exists( 'myCRED_buyCRED_Module' ) ) {
70
  add_filter( 'mycred_parse_log_entry', array( $this, 'render_gift_tags' ), 10, 2 );
71
  }
72
 
 
 
 
 
73
  public function load() {
74
  add_action( 'mycred_init', array( $this, 'module_init' ) );
75
 
@@ -552,7 +556,7 @@ if ( ! class_exists( 'myCRED_buyCRED_Module' ) ) {
552
  <input type="checkbox" name="mycred_pref_buycreds[active][]" id="mycred-gateway-<?php echo $key; ?>" value="<?php echo $key; ?>"<?php if ( $this->is_active( $key ) ) echo ' checked="checked"'; ?> />
553
  </li>
554
  </ol>
555
- <?php if ( isset( $this->gateway_prefs[ $key ]['sandbox'] ) ) : ?>
556
 
557
  <label class="subheader" for="mycred-gateway-<?php echo $key; ?>-sandbox"><?php _e( 'Sandbox Mode', 'mycred' ); ?></label>
558
  <ol>
@@ -898,7 +902,7 @@ jQuery(function($) {
898
  * Render Shortcode Basic
899
  * This shortcode returns a link element to a specified payment gateway.
900
  * @since 0.1
901
- * @version 1.1.1
902
  */
903
  public function render_shortcode_basic( $atts, $title = '' ) {
904
  // Make sure the add-on has been setup
@@ -1010,7 +1014,7 @@ jQuery(function($) {
1010
  'button' => '',
1011
  'gateway' => '',
1012
  'amount' => '',
1013
- 'gift_to' => false,
1014
  'login' => $this->core->template_tags_general( $this->core->buy_creds['login'] ),
1015
  ), $atts ) );
1016
 
@@ -1040,7 +1044,7 @@ jQuery(function($) {
1040
 
1041
  // Gift to specific member (if allowed)
1042
  elseif ( $this->core->buy_creds['gifting']['members'] == 1 && is_integer( $gift_to ) ) {
1043
- $user_id = abs( $gift_to );
1044
  $buy_member = true;
1045
  }
1046
 
70
  add_filter( 'mycred_parse_log_entry', array( $this, 'render_gift_tags' ), 10, 2 );
71
  }
72
 
73
+ /**
74
+ * Load
75
+ * @version 1.0
76
+ */
77
  public function load() {
78
  add_action( 'mycred_init', array( $this, 'module_init' ) );
79
 
556
  <input type="checkbox" name="mycred_pref_buycreds[active][]" id="mycred-gateway-<?php echo $key; ?>" value="<?php echo $key; ?>"<?php if ( $this->is_active( $key ) ) echo ' checked="checked"'; ?> />
557
  </li>
558
  </ol>
559
+ <?php if ( isset( $this->gateway_prefs[ $key ]['sandbox'] ) && $this->gateway_prefs[ $key ]['sandbox'] !== NULL ) : ?>
560
 
561
  <label class="subheader" for="mycred-gateway-<?php echo $key; ?>-sandbox"><?php _e( 'Sandbox Mode', 'mycred' ); ?></label>
562
  <ol>
902
  * Render Shortcode Basic
903
  * This shortcode returns a link element to a specified payment gateway.
904
  * @since 0.1
905
+ * @version 1.1.2
906
  */
907
  public function render_shortcode_basic( $atts, $title = '' ) {
908
  // Make sure the add-on has been setup
1014
  'button' => '',
1015
  'gateway' => '',
1016
  'amount' => '',
1017
+ 'gift_to' => '',
1018
  'login' => $this->core->template_tags_general( $this->core->buy_creds['login'] ),
1019
  ), $atts ) );
1020
 
1044
 
1045
  // Gift to specific member (if allowed)
1046
  elseif ( $this->core->buy_creds['gifting']['members'] == 1 && is_integer( $gift_to ) ) {
1047
+ $user_id = absint( $gift_to );
1048
  $buy_member = true;
1049
  }
1050
 
addons/email-notices/myCRED-addon-email-notices.php CHANGED
@@ -2,7 +2,7 @@
2
  /**
3
  * Addon: Email Notices
4
  * Addon URI: http://mycred.me/add-ons/email-notices/
5
- * Version: 1.2
6
  * Description: Create email notices for any type of myCRED instance.
7
  * Author: Gabriel S Merovingi
8
  * Author URI: http://www.merovingi.com
@@ -40,7 +40,9 @@ if ( ! class_exists( 'myCRED_Email_Notice_Module' ) ) {
40
  ),
41
  'use_html' => true,
42
  'content' => '',
43
- 'styling' => ''
 
 
44
  ),
45
  'register' => false,
46
  'add_to_core' => true
@@ -50,14 +52,30 @@ if ( ! class_exists( 'myCRED_Email_Notice_Module' ) ) {
50
  /**
51
  * Hook into Init
52
  * @since 1.1
53
- * @version 1.0.1
54
  */
55
  public function module_init() {
56
  $this->register_post_type();
57
  $this->setup_instances();
58
 
59
- add_action( 'mycred_admin_enqueue', array( $this, 'enqueue_scripts' ) );
60
- add_filter( 'mycred_add', array( $this, 'email_check' ), 199, 3 );
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
61
  }
62
 
63
  /**
@@ -93,10 +111,7 @@ if ( ! class_exists( 'myCRED_Email_Notice_Module' ) ) {
93
  $screen = get_current_screen();
94
  if ( $screen->id == 'mycred_email_notice' && $this->emailnotices['use_html'] === false ) {
95
  remove_action( 'media_buttons', 'media_buttons' );
96
- echo '
97
- <style type="text/css">
98
- #ed_toolbar { display: none !important; }
99
- </style>';
100
  }
101
  }
102
 
@@ -164,6 +179,7 @@ if ( ! class_exists( 'myCRED_Email_Notice_Module' ) ) {
164
  'publicly_queryable' => false,
165
  'show_ui' => true,
166
  'show_in_menu' => 'myCRED',
 
167
  'capability_type' => 'page',
168
  'supports' => array( 'title', 'editor' )
169
  );
@@ -175,7 +191,7 @@ if ( ! class_exists( 'myCRED_Email_Notice_Module' ) ) {
175
  * @since 1.1
176
  * @version 1.1
177
  */
178
- protected function setup_instances() {
179
  $instances[''] = __( 'Select', 'mycred' );
180
  $instances['general'] = array(
181
  'label' => __( 'General', 'mycred' ),
@@ -230,7 +246,7 @@ if ( ! class_exists( 'myCRED_Email_Notice_Module' ) ) {
230
  * @since 1.1
231
  * @version 1.0
232
  */
233
- protected function get_instance( $key = '', $detail = NULL ) {
234
  $instance_keys = explode( '|', $key );
235
  if ( $instance_keys === false || empty( $instance_keys ) || count( $instance_keys ) != 2 ) return NULL;
236
 
@@ -247,13 +263,11 @@ if ( ! class_exists( 'myCRED_Email_Notice_Module' ) ) {
247
  /**
248
  * Add to General Settings
249
  * @since 1.1
250
- * @version 1.0
251
  */
252
  public function after_general_settings() {
253
- if ( $this->emailnotices['use_html'] === true )
254
- $use_html = 1;
255
- else
256
- $use_html = 0; ?>
257
 
258
  <h4><div class="icon icon-active"></div><?php _e( 'Email Notices', 'mycred' ); ?></h4>
259
  <div class="body" style="display:none;">
@@ -261,11 +275,11 @@ if ( ! class_exists( 'myCRED_Email_Notice_Module' ) ) {
261
  <label class="subheader" for="<?php echo $this->field_id( array( 'use_html' => 'no' ) ); ?>"><?php _e( 'Email Format', 'mycred' ); ?></label>
262
  <ol id="myCRED-email-notice-use-html">
263
  <li>
264
- <input type="radio" name="<?php echo $this->field_name( 'use_html' ); ?>" id="<?php echo $this->field_id( array( 'use_html' => 'no' ) ); ?>" <?php checked( $use_html, 0 ); ?> value="0" />
265
  <label for="<?php echo $this->field_id( array( 'use_html' => 'no' ) ); ?>"><?php _e( 'Plain text emails only.', 'mycred' ); ?></label>
266
  </li>
267
  <li>
268
- <input type="radio" name="<?php echo $this->field_name( 'use_html' ); ?>" id="<?php echo $this->field_id( array( 'use_html' => 'yes' ) ); ?>" <?php checked( $use_html, 1 ); ?> value="1" />
269
  <label for="<?php echo $this->field_id( array( 'use_html' => 'yes' ) ); ?>"><?php _e( 'HTML or Plain text emails.', 'mycred' ); ?></label>
270
  </li>
271
  </ol>
@@ -280,6 +294,43 @@ if ( ! class_exists( 'myCRED_Email_Notice_Module' ) ) {
280
  <label for="<?php echo $this->field_id( array( 'filter' => 'content' ) ); ?>"><?php _e( 'Allow WordPress and Third Party Plugins to filter the email content before an email is sent.', 'mycred' ); ?></label>
281
  </li>
282
  </ol>
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
283
  <p><?php _e( 'Default email settings. These settings can be individually overridden when editing emails.', 'mycred' ); ?></p>
284
  <label class="subheader"><?php _e( 'Email Settings', 'mycred' ); ?></label>
285
  <ol id="myCRED-email-default-sender">
@@ -317,9 +368,12 @@ if ( ! class_exists( 'myCRED_Email_Notice_Module' ) ) {
317
  /**
318
  * Save Settings
319
  * @since 1.1
320
- * @version 1.0
321
  */
322
  public function sanitize_extra_settings( $new_data, $data, $core ) {
 
 
 
323
  $new_data['emailnotices']['use_html'] = ( $data['emailnotices']['use_html'] == 1 ) ? true : false;
324
 
325
  $new_data['emailnotices']['filter']['subject'] = ( isset( $data['emailnotices']['filter']['subject'] ) ) ? true : false;
@@ -332,61 +386,89 @@ if ( ! class_exists( 'myCRED_Email_Notice_Module' ) ) {
332
  $new_data['emailnotices']['content'] = sanitize_text_field( $data['emailnotices']['content'] );
333
  $new_data['emailnotices']['styling'] = sanitize_text_field( $data['emailnotices']['styling'] );
334
 
 
 
 
 
 
 
 
335
  return $new_data;
336
  }
337
 
338
  /**
339
  * Email Notice Check
340
- * @since 1.1
341
- * @version 1.3
342
  */
343
- public function email_check( $reply, $request, $mycred ) {
344
- // Override - something has already determaned that this should not be executed
345
- if ( $reply === false || $request['type'] != 'mycred_default' ) return $reply;
346
 
347
- // Construct events
348
- $event = array( 'all' );
349
- $amount = $request['amount'];
350
 
351
- // Event: Account gains or loses amount
 
 
352
  if ( $amount < $mycred->zero() )
353
- $event[] = 'negative';
354
- elseif ( $amount > $mycred->zero() )
355
- $event[] = 'positive';
356
-
357
- // Event: Account reaches zero or goes minus
358
- $balance = $mycred->get_users_cred( $request['user_id'] );
359
- if ( $amount < $mycred->zero() && $balance-$amount < $mycred->zero() )
360
- $event[] = 'minus';
361
- elseif ( $balance-$amount == $mycred->zero() )
362
- $event[] = 'zero';
363
-
364
- // Do Ranks first
 
365
  if ( function_exists( 'mycred_get_users_rank' ) ) {
366
- $rank_id = mycred_find_users_rank( $request['user_id'], false, $request['amount'], '' );
367
- if ( $rank_id !== NULL && mycred_user_got_demoted( $request['user_id'], $rank_id ) )
368
- $this->do_email_notices( 'ranks', $event, $request );
369
 
370
- elseif ( $rank_id !== NULL && mycred_user_got_promoted( $request['user_id'], $rank_id ) )
371
- $this->do_email_notices( 'ranks', $event, $request );
372
  }
373
 
374
- // Before we send a notice, lets execute the request
375
- // so that emails show the correct details
376
- $mycred->update_users_balance( $request['user_id'], $request['amount'] );
377
- $mycred->add_to_log( $request['ref'], $request['user_id'], $request['amount'], $request['entry'], $request['ref_id'], $request['data'], $request['type'] );
378
 
379
- // Start with general events
380
- $this->do_email_notices( 'general', $event, $request );
381
 
382
- // At this stage, remove 'all'
383
- unset( $event[0] );
 
 
 
 
 
 
 
 
 
 
 
384
 
385
- // Add-on specific events
386
- $this->do_email_notices( $request['ref'], $event, $request );
387
 
388
- // Return the reply that we have already done this
389
- return 'done';
 
 
 
 
 
 
 
 
 
 
 
 
 
 
390
  }
391
 
392
  /**
@@ -394,33 +476,51 @@ if ( ! class_exists( 'myCRED_Email_Notice_Module' ) ) {
394
  * @since 1.1
395
  * @version 1.1
396
  */
397
- protected function do_email_notices( $reference = NULL, $events = array(), $request = array() ) {
398
- if ( $reference === NULL || ( ! is_array( $events ) || empty( $events ) ) || ( ! is_array( $request ) || empty( $request ) ) ) return;
 
 
 
 
 
 
399
 
400
  global $wpdb;
401
 
 
402
  foreach ( $events as $event ) {
403
 
 
404
  $notice = $wpdb->get_row( $wpdb->prepare( "
405
  SELECT *
406
  FROM {$wpdb->posts} notices
407
 
408
  LEFT JOIN {$wpdb->postmeta} instances
409
- ON ( notices.ID = instances.post_id )
410
 
411
  WHERE instances.meta_value = %s
412
- AND instances.meta_key = %s
413
- AND notices.post_type = %s
414
- AND notices.post_status = %s;", $reference . '|' . $event, 'mycred_email_instance', 'mycred_email_notice', 'publish' ) );
415
 
 
416
  if ( $notice !== NULL ) {
417
-
 
 
 
 
418
  $settings = $this->get_email_settings( $notice->ID );
419
 
420
  // Send to user
421
- $user = get_user_by( 'id', $request['user_id'] );
422
- $to = $user->user_email;
423
- unset( $user );
 
 
 
 
 
 
424
 
425
  // Filtered Subject
426
  if ( $this->emailnotices['filter']['subject'] === true )
@@ -439,16 +539,20 @@ if ( ! class_exists( 'myCRED_Email_Notice_Module' ) ) {
439
  $headers = array();
440
  $attachments = '';
441
 
442
- // Construct headers
443
- if ( $this->emailnotices['use_html'] === true ) {
444
- $headers[] = 'MIME-Version: 1.0';
445
- $headers[] = 'Content-Type: text/HTML; charset="' . get_option( 'blog_charset' ) . '"';
446
- }
447
- $headers[] = 'From: ' . $settings['senders_name'] . ' <' . $settings['senders_email'] . '>';
 
 
448
 
449
- // Reply-To
450
- if ( ! empty( $settings['reply_to'] ) )
451
- $headers[] = 'Reply-To: ' . $settings['reply_to'];
 
 
452
 
453
  // Both means we blank carbon copy the admin so the user does not see email
454
  if ( $settings['recipient'] == 'both' )
@@ -465,28 +569,24 @@ if ( ! class_exists( 'myCRED_Email_Notice_Module' ) ) {
465
  /**
466
  * WP Mail
467
  * @since 1.1
468
- * @version 1.1
469
  */
470
  public function wp_mail( $to, $subject, $message, $headers, $attachments, $request, $email_id ) {
 
471
  // Let others play before we do our thing
472
  $filtered = apply_filters( 'mycred_email_before_send', compact( 'to', 'subject', 'message', 'headers', 'attachments', 'request', 'email_id' ) );
473
 
474
- // Parse Subject Template Tags
475
- $subject = $this->core->template_tags_general( $filtered['subject'] );
476
- $subject = $this->core->template_tags_amount( $subject, $filtered['request']['amount'] );
477
- if ( $filtered['request']['user_id'] == get_current_user_id() )
478
- $subject = $this->core->template_tags_user( $subject, false, wp_get_current_user() );
479
- else
480
- $subject = $this->core->template_tags_user( $subject, $filtered['request']['user_id'] );
481
 
482
- // Parse Message Template Tags
483
- $message = $this->core->template_tags_general( $filtered['message'] );
484
- $message = $this->core->template_tags_amount( $message, $filtered['request']['amount'] );
485
- if ( $filtered['request']['user_id'] == get_current_user_id() )
486
- $message = $this->core->template_tags_user( $message, false, wp_get_current_user() );
487
- else
488
- $message = $this->core->template_tags_user( $message, $filtered['request']['user_id'] );
489
- $message = $this->template_tags_request( $message, $filtered['request'] );
 
490
 
491
  // Construct HTML Content
492
  if ( $this->emailnotices['use_html'] === true ) {
@@ -503,6 +603,7 @@ if ( ! class_exists( 'myCRED_Email_Notice_Module' ) ) {
503
  do_action( 'mycred_email_sent', $filtered );
504
 
505
  return $result;
 
506
  }
507
 
508
  /**
@@ -520,7 +621,7 @@ if ( ! class_exists( 'myCRED_Email_Notice_Module' ) ) {
520
  /**
521
  * Request Related Template Tags
522
  * @since 1.1
523
- * @version 1.0
524
  */
525
  public function template_tags_request( $content, $request ) {
526
  $content = $this->core->template_tags_amount( $content, $request['amount'] );
@@ -529,26 +630,37 @@ if ( ! class_exists( 'myCRED_Email_Notice_Module' ) ) {
529
  $content = str_replace( '%entry%', $request['entry'], $content );
530
  $content = str_replace( '%data%', print_r( $request['data'], true ), $content );
531
 
 
 
 
 
 
 
532
  return $content;
533
  }
534
 
535
  /**
536
  * Get Email Settings
537
  * @since 1.1
538
- * @version 1.0
539
  */
540
- protected function get_email_settings( $post_id ) {
541
  $settings = get_post_meta( $post_id, 'mycred_email_settings', true );
 
 
 
542
  // Defaults
543
- if ( empty( $settings ) )
544
- return array(
545
- 'recipient' => 'user',
546
- 'senders_name' => $this->emailnotices['from']['name'],
547
- 'senders_email' => $this->emailnotices['from']['email'],
548
- 'reply_to' => $this->emailnotices['from']['reply_to']
549
- );
 
 
550
 
551
- return $settings;
552
  }
553
 
554
  /**
@@ -556,7 +668,7 @@ if ( ! class_exists( 'myCRED_Email_Notice_Module' ) ) {
556
  * @since 1.1
557
  * @version 1.0
558
  */
559
- protected function get_email_styling( $post_id ) {
560
  if ( $this->emailnotices['use_html'] === false ) return '';
561
  $style = get_post_meta( $post_id, 'mycred_email_styling', true );
562
  // Defaults
@@ -726,7 +838,7 @@ if ( ! class_exists( 'myCRED_Email_Notice_Module' ) ) {
726
  /**
727
  * Email Settings Metabox
728
  * @since 1.1
729
- * @version 1.0
730
  */
731
  public function email_settings( $post ) {
732
  // Get instance
@@ -774,6 +886,10 @@ if ( ! class_exists( 'myCRED_Email_Notice_Module' ) ) {
774
  <input type="radio" name="mycred_email[recipient]" id="mycred-email-recipient-both" value="both" <?php checked( $settings['recipient'], 'both' ); ?> /> <label for="mycred-email-recipient-both"><?php _e( 'Both', 'mycred' ); ?></label>
775
  </div>
776
  </div>
 
 
 
 
777
  <div class="misc-pub-section">
778
  <label for="mycred-email-senders-name"><?php _e( 'Senders Name:', 'mycred' ); ?></label><br />
779
  <input type="text" name="mycred_email[senders_name]" id="mycred-email-senders-name" value="<?php echo $settings['senders_name']; ?>" /><br />
@@ -826,7 +942,7 @@ if ( ! class_exists( 'myCRED_Email_Notice_Module' ) ) {
826
  /**
827
  * Save Email Notice Details
828
  * @since 1.1
829
- * @version 1.0
830
  */
831
  public function save_email_notice( $post_id ) {
832
  // Make sure this is the correct post type
@@ -873,6 +989,8 @@ if ( ! class_exists( 'myCRED_Email_Notice_Module' ) ) {
873
  else
874
  $settings['reply_to'] = $this->emailnotices['from']['reply_to'];
875
 
 
 
876
  // Save settings
877
  update_post_meta( $post_id, 'mycred_email_settings', $settings );
878
 
@@ -928,9 +1046,140 @@ if ( ! class_exists( 'myCRED_Email_Notice_Module' ) ) {
928
  else
929
  echo '<p>' . __( 'This email notice is active.', 'mycred' ) . '</p>';
930
  }
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
931
  }
932
 
933
  $email_notice = new myCRED_Email_Notice_Module();
934
  $email_notice->load();
935
  }
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
936
  ?>
2
  /**
3
  * Addon: Email Notices
4
  * Addon URI: http://mycred.me/add-ons/email-notices/
5
+ * Version: 1.3
6
  * Description: Create email notices for any type of myCRED instance.
7
  * Author: Gabriel S Merovingi
8
  * Author URI: http://www.merovingi.com
40
  ),
41
  'use_html' => true,
42
  'content' => '',
43
+ 'styling' => '',
44
+ 'send' => '',
45
+ 'override' => 0
46
  ),
47
  'register' => false,
48
  'add_to_core' => true
52
  /**
53
  * Hook into Init
54
  * @since 1.1
55
+ * @version 1.1
56
  */
57
  public function module_init() {
58
  $this->register_post_type();
59
  $this->setup_instances();
60
 
61
+ add_action( 'mycred_admin_enqueue', array( $this, 'enqueue_scripts' ) );
62
+ add_filter( 'mycred_add', array( $this, 'email_check' ), 999, 3 );
63
+ add_action( 'mycred_send_email_notices', 'mycred_email_notice_cron_job' );
64
+
65
+ add_shortcode( 'mycred_email_subscriptions', array( $this, 'render_subscription_shortcode' ) );
66
+
67
+ // Schedule Cron
68
+ if ( ! isset( $this->emailnotices['send'] ) ) return;
69
+
70
+ if ( $this->emailnotices['send'] == 'hourly' && ! wp_next_scheduled( 'mycred_send_email_notices' ) )
71
+ wp_schedule_event( date_i18n( 'U' ), 'hourly', 'mycred_send_email_notices' );
72
+
73
+ elseif ( $this->emailnotices['send'] == 'daily' && ! wp_next_scheduled( 'mycred_send_email_notices' ) )
74
+ wp_schedule_event( date_i18n( 'U' ), 'daily', 'mycred_send_email_notices' );
75
+
76
+ elseif ( $this->emailnotices['send'] == '' && wp_next_scheduled( 'mycred_send_email_notices' ) !== false )
77
+ wp_clear_scheduled_hook( 'mycred_send_email_notices' );
78
+
79
  }
80
 
81
  /**
111
  $screen = get_current_screen();
112
  if ( $screen->id == 'mycred_email_notice' && $this->emailnotices['use_html'] === false ) {
113
  remove_action( 'media_buttons', 'media_buttons' );
114
+ echo '<style type="text/css">#ed_toolbar { display: none !important; }</style>';
 
 
 
115
  }
116
  }
117
 
179
  'publicly_queryable' => false,
180
  'show_ui' => true,
181
  'show_in_menu' => 'myCRED',
182
+ 'hierarchical' => true,
183
  'capability_type' => 'page',
184
  'supports' => array( 'title', 'editor' )
185
  );
191
  * @since 1.1
192
  * @version 1.1
193
  */
194
+ public function setup_instances() {
195
  $instances[''] = __( 'Select', 'mycred' );
196
  $instances['general'] = array(
197
  'label' => __( 'General', 'mycred' ),
246
  * @since 1.1
247
  * @version 1.0
248
  */
249
+ public function get_instance( $key = '', $detail = NULL ) {
250
  $instance_keys = explode( '|', $key );
251
  if ( $instance_keys === false || empty( $instance_keys ) || count( $instance_keys ) != 2 ) return NULL;
252
 
263
  /**
264
  * Add to General Settings
265
  * @since 1.1
266
+ * @version 1.1
267
  */
268
  public function after_general_settings() {
269
+
270
+ $this->emailnotices = mycred_apply_defaults( $this->default_prefs, $this->emailnotices ); ?>
 
 
271
 
272
  <h4><div class="icon icon-active"></div><?php _e( 'Email Notices', 'mycred' ); ?></h4>
273
  <div class="body" style="display:none;">
275
  <label class="subheader" for="<?php echo $this->field_id( array( 'use_html' => 'no' ) ); ?>"><?php _e( 'Email Format', 'mycred' ); ?></label>
276
  <ol id="myCRED-email-notice-use-html">
277
  <li>
278
+ <input type="radio" name="<?php echo $this->field_name( 'use_html' ); ?>" id="<?php echo $this->field_id( array( 'use_html' => 'no' ) ); ?>" <?php checked( $this->emailnotices['use_html'], 0 ); ?> value="0" />
279
  <label for="<?php echo $this->field_id( array( 'use_html' => 'no' ) ); ?>"><?php _e( 'Plain text emails only.', 'mycred' ); ?></label>
280
  </li>
281
  <li>
282
+ <input type="radio" name="<?php echo $this->field_name( 'use_html' ); ?>" id="<?php echo $this->field_id( array( 'use_html' => 'yes' ) ); ?>" <?php checked( $this->emailnotices['use_html'], 1 ); ?> value="1" />
283
  <label for="<?php echo $this->field_id( array( 'use_html' => 'yes' ) ); ?>"><?php _e( 'HTML or Plain text emails.', 'mycred' ); ?></label>
284
  </li>
285
  </ol>
294
  <label for="<?php echo $this->field_id( array( 'filter' => 'content' ) ); ?>"><?php _e( 'Allow WordPress and Third Party Plugins to filter the email content before an email is sent.', 'mycred' ); ?></label>
295
  </li>
296
  </ol>
297
+ <?php if ( defined( 'DISABLE_WP_CRON' ) && DISABLE_WP_CRON ) : ?>
298
+
299
+ <label class="subheader" for="<?php echo $this->field_id( 'send' ); ?>"><?php _e( 'Email Schedule', 'mycred' ); ?></label>
300
+ <ol id="myCRED-email-notice-schedule">
301
+ <li><?php _e( 'WordPress Cron is disabled. Emails will be sent immediately.', 'mycred' ); ?><input type="hidden" name="<?php echo $this->field_name( 'send' ); ?>" value="" /></li>
302
+
303
+ <?php else : ?>
304
+
305
+ <label class="subheader" for="<?php echo $this->field_id( 'send' ); ?>"><?php _e( 'Email Schedule', 'mycred' ); ?></label>
306
+ <ol id="myCRED-email-notice-schedule">
307
+ <li>
308
+ <input type="radio" name="<?php echo $this->field_name( 'send' ); ?>" id="<?php echo $this->field_id( 'send' ); ?>-hourly" <?php checked( $this->emailnotices['send'], '' ); ?> value="" />
309
+ <label for="<?php echo $this->field_id( 'send' ); ?>-hourly"><?php _e( 'Send emails immediately', 'mycred' ); ?></label>
310
+ </li>
311
+ <li>
312
+ <input type="radio" name="<?php echo $this->field_name( 'send' ); ?>" id="<?php echo $this->field_id( 'send' ); ?>" <?php checked( $this->emailnotices['send'], 'hourly' ); ?> value="hourly" />
313
+ <label for="<?php echo $this->field_id( 'send' ); ?>"><?php _e( 'Send emails once an hour', 'mycred' ); ?></label>
314
+ </li>
315
+ <li>
316
+ <input type="radio" name="<?php echo $this->field_name( 'send' ); ?>" id="<?php echo $this->field_id( 'send' ); ?>-daily" <?php checked( $this->emailnotices['send'], 'daily' ); ?> value="daily" />
317
+ <label for="<?php echo $this->field_id( 'send' ); ?>-daily"><?php _e( 'Send emails once a day', 'mycred' ); ?></label>
318
+ </li>
319
+ </ol>
320
+ <label class="subheader" for="<?php echo $this->field_id( 'send' ); ?>"><?php _e( 'Subscriptions', 'mycred' ); ?></label>
321
+ <ol id="myCRED-email-notice-schedule">
322
+ <li><?php printf( __( 'Use the %s shortcode to allow users to subscribe / unsubscribe to email updates.', 'mycred' ), '<a href="http://codex.mycred.me/shortcodes/mycred_email_subscriptions/">mycred_email_subscriptions</a>' ); ?></p></li>
323
+ </ol>
324
+
325
+ <?php endif; ?>
326
+
327
+ <label class="subheader" for="<?php echo $this->field_id( 'override' ); ?>"><?php _e( 'SMTP Override', 'mycred' ); ?></label>
328
+ <ol id="myCRED-email-notice-override">
329
+ <li>
330
+ <input type="checkbox" name="<?php echo $this->field_name( 'override' ); ?>" id="<?php echo $this->field_id( 'override' ); ?>" <?php checked( $this->emailnotices['override'], 1 ); ?> value="1" />
331
+ <label for="<?php echo $this->field_id( 'override' ); ?>"><?php _e( 'SMTP Debug. Enable if you are experiencing issues with wp_mail() or if you use a SMTP plugin for emails.', 'mycred' ); ?></label>
332
+ </li>
333
+ </ol>
334
  <p><?php _e( 'Default email settings. These settings can be individually overridden when editing emails.', 'mycred' ); ?></p>
335
  <label class="subheader"><?php _e( 'Email Settings', 'mycred' ); ?></label>
336
  <ol id="myCRED-email-default-sender">
368
  /**
369
  * Save Settings
370
  * @since 1.1
371
+ * @version 1.1
372
  */
373
  public function sanitize_extra_settings( $new_data, $data, $core ) {
374
+ if ( ! isset( $data['emailnotices']['use_html'] ) )
375
+ $data['emailnotices']['use_html'] = 0;
376
+
377
  $new_data['emailnotices']['use_html'] = ( $data['emailnotices']['use_html'] == 1 ) ? true : false;
378
 
379
  $new_data['emailnotices']['filter']['subject'] = ( isset( $data['emailnotices']['filter']['subject'] ) ) ? true : false;
386
  $new_data['emailnotices']['content'] = sanitize_text_field( $data['emailnotices']['content'] );
387
  $new_data['emailnotices']['styling'] = sanitize_text_field( $data['emailnotices']['styling'] );
388
 
389
+ $new_data['emailnotices']['send'] = sanitize_text_field( $data['emailnotices']['send'] );
390
+
391
+ if ( ! isset( $data['emailnotices']['override'] ) )
392
+ $data['emailnotices']['override'] = 0;
393
+
394
+ $new_data['emailnotices']['override'] = ( $data['emailnotices']['override'] == 1 ) ? true : false;
395
+
396
  return $new_data;
397
  }
398
 
399
  /**
400
  * Email Notice Check
401
+ * @since 1.4.6
402
+ * @version 1.0
403
  */
404
+ public function get_events_from_instance( $request, $mycred ) {
 
 
405
 
406
+ extract( $request );
 
 
407
 
408
+ $events = array();
409
+
410
+ // Events based on amount being given or taken
411
  if ( $amount < $mycred->zero() )
412
+ $events[] = 'general|negative';
413
+ else
414
+ $events[] = 'general|positive';
415
+
416
+ // Events based on this transaction leading to the users balance
417
+ // reaching or surpassing zero
418
+ $users_current_balance = $mycred->get_users_balance( $user_id, $type );
419
+ if ( ( $users_current_balance - $amount ) < $mycred->zero() )
420
+ $events[] = 'general|minus';
421
+ elseif ( ( $users_current_balance - $amount ) == $mycred->zero() )
422
+ $events[] = 'general|zero';
423
+
424
+ // Ranks Related
425
  if ( function_exists( 'mycred_get_users_rank' ) ) {
426
+ $rank_id = mycred_find_users_rank( $user_id, false, $amount );
427
+ if ( $rank_id !== NULL && mycred_user_got_demoted( $user_id, $rank_id ) )
428
+ $events[] = 'ranks|negative';
429
 
430
+ elseif ( $rank_id !== NULL && mycred_user_got_promoted( $user_id, $rank_id ) )
431
+ $events[] = 'ranks|positive';
432
  }
433
 
434
+ // Let others play
435
+ return apply_filters( 'mycred_get_email_events', $events, $request, $mycred );
 
 
436
 
437
+ }
 
438
 
439
+ /**
440
+ * Email Notice Check
441
+ * @since 1.1
442
+ * @version 1.4
443
+ */
444
+ public function email_check( $reply, $request, $mycred ) {
445
+ // Exit now if reply is false or new settings is not yet saved.
446
+ if ( $reply === false || ! isset( $this->emailnotices['send'] ) ) return $reply;
447
+
448
+ $user_id = absint( $request['user_id'] );
449
+
450
+ // Construct events
451
+ $events = $this->get_events_from_instance( $request, $mycred );
452
 
453
+ // Do not send emails now
454
+ if ( $this->emailnotices['send'] != '' ) {
455
 
456
+ // Save for cron job
457
+ add_user_meta( $user_id, 'mycred_scheduled_email_notices', array(
458
+ 'events' => $events,
459
+ 'request' => $request
460
+ ) );
461
+
462
+ }
463
+
464
+ // Send emails now
465
+ else {
466
+
467
+ $this->do_email_notices( $events, $request );
468
+
469
+ }
470
+
471
+ return $reply;
472
  }
473
 
474
  /**
476
  * @since 1.1
477
  * @version 1.1
478
  */
479
+ public function do_email_notices( $events = array(), $request = array() ) {
480
+
481
+ if ( ! isset( $request['user_id'] ) || empty( $events ) ) return;
482
+
483
+ extract( $request );
484
+
485
+ // Get all notices that a user has unsubscribed to
486
+ $unsubscriptions = (array) get_user_meta( $user_id, 'mycred_email_unsubscriptions', true );
487
 
488
  global $wpdb;
489
 
490
+ // Loop though events
491
  foreach ( $events as $event ) {
492
 
493
+ // Get the email notice post object
494
  $notice = $wpdb->get_row( $wpdb->prepare( "
495
  SELECT *
496
  FROM {$wpdb->posts} notices
497
 
498
  LEFT JOIN {$wpdb->postmeta} instances
499
+ ON ( notices.ID = instances.post_id AND instances.meta_key = 'mycred_email_instance' )
500
 
501
  WHERE instances.meta_value = %s
502
+ AND notices.post_type = 'mycred_email_notice'
503
+ AND notices.post_status = 'publish';", $event ) );
 
504
 
505
+ // Notice found
506
  if ( $notice !== NULL ) {
507
+
508
+ // Ignore unsubscribed events
509
+ if ( in_array( $notice->ID, $unsubscriptions ) ) continue;
510
+
511
+ // Get notice setup
512
  $settings = $this->get_email_settings( $notice->ID );
513
 
514
  // Send to user
515
+ if ( $settings['recipient'] == 'user' ) {
516
+ $user = get_user_by( 'id', $user_id );
517
+ $to = $user->user_email;
518
+ unset( $user );
519
+ }
520
+
521
+ elseif ( $settings['recipient'] == 'admin' ) {
522
+ $to = get_option( 'admin_email' );
523
+ }
524
 
525
  // Filtered Subject
526
  if ( $this->emailnotices['filter']['subject'] === true )
539
  $headers = array();
540
  $attachments = '';
541
 
542
+ if ( ! $this->emailnotices['override'] ) {
543
+
544
+ // Construct headers
545
+ if ( $this->emailnotices['use_html'] === true ) {
546
+ $headers[] = 'MIME-Version: 1.0';
547
+ $headers[] = 'Content-Type: text/HTML; charset="' . get_option( 'blog_charset' ) . '"';
548
+ }
549
+ $headers[] = 'From: ' . $settings['senders_name'] . ' <' . $settings['senders_email'] . '>';
550
 
551
+ // Reply-To
552
+ if ( ! empty( $settings['reply_to'] ) )
553
+ $headers[] = 'Reply-To: ' . $settings['reply_to'];
554
+
555
+ }
556
 
557
  // Both means we blank carbon copy the admin so the user does not see email
558
  if ( $settings['recipient'] == 'both' )
569
  /**
570
  * WP Mail
571
  * @since 1.1
572
+ * @version 1.2
573
  */
574
  public function wp_mail( $to, $subject, $message, $headers, $attachments, $request, $email_id ) {
575
+
576
  // Let others play before we do our thing
577
  $filtered = apply_filters( 'mycred_email_before_send', compact( 'to', 'subject', 'message', 'headers', 'attachments', 'request', 'email_id' ) );
578
 
579
+ if ( ! isset( $filtered['request'] ) || ! is_array( $filtered['request'] ) ) return false;
 
 
 
 
 
 
580
 
581
+ $subject = $this->template_tags_request( $filtered['subject'], $filtered['request'] );
582
+ $message = $this->template_tags_request( $filtered['message'], $filtered['request'] );
583
+
584
+ $entry = new stdClass();
585
+ foreach ( $filtered['request'] as $key => $value )
586
+ $entry->$key = $value;
587
+
588
+ $subject = $this->core->parse_template_tags( $subject, $entry );
589
+ $message = $this->core->parse_template_tags( $message, $entry );
590
 
591
  // Construct HTML Content
592
  if ( $this->emailnotices['use_html'] === true ) {
603
  do_action( 'mycred_email_sent', $filtered );
604
 
605
  return $result;
606
+
607
  }
608
 
609
  /**
621
  /**
622
  * Request Related Template Tags
623
  * @since 1.1
624
+ * @version 1.1
625
  */
626
  public function template_tags_request( $content, $request ) {
627
  $content = $this->core->template_tags_amount( $content, $request['amount'] );
630
  $content = str_replace( '%entry%', $request['entry'], $content );
631
  $content = str_replace( '%data%', print_r( $request['data'], true ), $content );
632
 
633
+ $content = str_replace( '%blog_name%', get_option( 'blogname' ), $content );
634
+ $content = str_replace( '%blog_url%', get_option( 'home' ), $content );
635
+ $content = str_replace( '%blog_info%', get_option( 'blogdescription' ), $content );
636
+ $content = str_replace( '%admin_email%', get_option( 'admin_email' ), $content );
637
+ $content = str_replace( '%num_members%', $this->core->count_members(), $content );
638
+
639
  return $content;
640
  }
641
 
642
  /**
643
  * Get Email Settings
644
  * @since 1.1
645
+ * @version 1.1
646
  */
647
+ public function get_email_settings( $post_id ) {
648
  $settings = get_post_meta( $post_id, 'mycred_email_settings', true );
649
+ if ( $settings == '' )
650
+ $settings = array();
651
+
652
  // Defaults
653
+ $default = array(
654
+ 'recipient' => 'user',
655
+ 'senders_name' => $this->emailnotices['from']['name'],
656
+ 'senders_email' => $this->emailnotices['from']['email'],
657
+ 'reply_to' => $this->emailnotices['from']['reply_to'],
658
+ 'label' => ''
659
+ );
660
+
661
+ $settings = mycred_apply_defaults( $default, $settings );
662
 
663
+ return apply_filters( 'mycred_email_notice_settings', $settings, $post_id );
664
  }
665
 
666
  /**
668
  * @since 1.1
669
  * @version 1.0
670
  */
671
+ public function get_email_styling( $post_id ) {
672
  if ( $this->emailnotices['use_html'] === false ) return '';
673
  $style = get_post_meta( $post_id, 'mycred_email_styling', true );
674
  // Defaults
838
  /**
839
  * Email Settings Metabox
840
  * @since 1.1
841
+ * @version 1.1
842
  */
843
  public function email_settings( $post ) {
844
  // Get instance
886
  <input type="radio" name="mycred_email[recipient]" id="mycred-email-recipient-both" value="both" <?php checked( $settings['recipient'], 'both' ); ?> /> <label for="mycred-email-recipient-both"><?php _e( 'Both', 'mycred' ); ?></label>
887
  </div>
888
  </div>
889
+ <div class="misc-pub-section">
890
+ <label for="mycred-email-reply-to"><?php _e( 'Label', 'mycred' ); ?></label><br />
891
+ <input type="text" name="mycred_email[label]" id="mycred-email-label" value="<?php echo $settings['label']; ?>" />
892
+ </div>
893
  <div class="misc-pub-section">
894
  <label for="mycred-email-senders-name"><?php _e( 'Senders Name:', 'mycred' ); ?></label><br />
895
  <input type="text" name="mycred_email[senders_name]" id="mycred-email-senders-name" value="<?php echo $settings['senders_name']; ?>" /><br />
942
  /**
943
  * Save Email Notice Details
944
  * @since 1.1
945
+ * @version 1.1
946
  */
947
  public function save_email_notice( $post_id ) {
948
  // Make sure this is the correct post type
989
  else
990
  $settings['reply_to'] = $this->emailnotices['from']['reply_to'];
991
 
992
+ $settings['label'] = sanitize_text_field( $_POST['mycred_email']['label'] );
993
+
994
  // Save settings
995
  update_post_meta( $post_id, 'mycred_email_settings', $settings );
996
 
1046
  else
1047
  echo '<p>' . __( 'This email notice is active.', 'mycred' ) . '</p>';
1048
  }
1049
+
1050
+ /**
1051
+ * Subscription Shortcode
1052
+ * @since 1.4.6
1053
+ * @version 1.0
1054
+ */
1055
+ public function render_subscription_shortcode( $attr, $content = NULL ) {
1056
+
1057
+ extract( shortcode_atts( array(
1058
+ 'success' => __( 'Settings saved.', 'mycred' )
1059
+ ), $attr ) );
1060
+
1061
+ if ( ! is_user_logged_in() ) return $content;
1062
+
1063
+ $user_id = get_current_user_id();
1064
+
1065
+ $unsubscriptions = get_user_meta( $user_id, 'mycred_email_unsubscriptions', true );
1066
+ if ( $unsubscriptions == '' )
1067
+ $unsubscriptions = array();
1068
+
1069
+ // Save
1070
+ $saved = false;
1071
+ if ( isset( $_REQUEST['do'] ) && $_REQUEST['do'] == 'mycred-unsubscribe' && wp_verify_nonce( $_REQUEST['token'], 'update-mycred-email-subscriptions' ) ) {
1072
+
1073
+ if ( isset( $_POST['mycred_email_unsubscribe'] ) && ! empty( $_POST['mycred_email_unsubscribe'] ) )
1074
+ $new_selection = $_POST['mycred_email_unsubscribe'];
1075
+ else
1076
+ $new_selection = array();
1077
+
1078
+ update_user_meta( $user_id, 'mycred_email_unsubscriptions', $new_selection );
1079
+ $unsubscriptions = $new_selection;
1080
+ $saved = true;
1081
+
1082
+ }
1083
+
1084
+ global $wpdb;
1085
+
1086
+ $email_notices = $wpdb->get_results( $wpdb->prepare( "
1087
+ SELECT *
1088
+ FROM {$wpdb->posts} notices
1089
+
1090
+ LEFT JOIN {$wpdb->postmeta} prefs
1091
+ ON ( notices.ID = prefs.post_id AND prefs.meta_key = 'mycred_email_settings' )
1092
+
1093
+ WHERE notices.post_type = 'mycred_email_notice'
1094
+ AND notices.post_status = 'publish'
1095
+ AND ( prefs.meta_value LIKE %s OR prefs.meta_value LIKE %s );", '%s:9:"recipient";s:4:"user";%', '%s:9:"recipient";s:4:"both";%' ) );
1096
+
1097
+ ob_start();
1098
+
1099
+ if ( $saved )
1100
+ echo '<p class="updated-email-subscriptions">' . $success . '</p>'; ?>
1101
+
1102
+ <form action="<?php echo add_query_arg( array( 'do' => 'mycred-unsubscribe', 'user' => get_current_user_id(), 'token' => wp_create_nonce( 'update-mycred-email-subscriptions' ) ) ); ?>" id="mycred-email-subscriptions" method="post">
1103
+ <table class="table">
1104
+ <thead>
1105
+ <tr>
1106
+ <th class="check"><?php _e( 'Unsubscribe', 'mycred' ); ?></th>
1107
+ <th class="notice-title"><?php _e( 'Email Notice', 'mycred' ); ?></th>
1108
+ </tr>
1109
+ </thead>
1110
+ <tbody>
1111
+ <?php if ( ! empty( $email_notices ) ) : ?>
1112
+
1113
+ <?php foreach ( $email_notices as $notice ) : $settings = $this->get_email_settings( $notice->ID ); ?>
1114
+
1115
+ <?php if ( $settings['label'] == '' ) continue; ?>
1116
+
1117
+ <tr>
1118
+ <td class="check"><input type="checkbox" name="mycred_email_unsubscribe[]"<?php if ( in_array( $notice->ID, $unsubscriptions ) ) echo ' checked="checked"'; ?> value="<?php echo $notice->ID; ?>" /></td>
1119
+ <td class="notice-title"><?php echo $settings['label']; ?></td>
1120
+ </tr>
1121
+
1122
+ <?php endforeach; ?>
1123
+
1124
+ <?php else : ?>
1125
+
1126
+ <tr>
1127
+ <td colspan="2"><?php _e( 'There are no email notifications yet.', 'mycred' ); ?></td>
1128
+ </tr>
1129
+
1130
+ <?php endif; ?>
1131
+ </tbody>
1132
+ </table>
1133
+ <input type="submit" class="btn btn-primary button button-primary pull-right" value="<?php _e( 'Save Changes', 'mycred' ); ?>" />
1134
+ </form>
1135
+ <?php
1136
+ $content = ob_get_contents();
1137
+ ob_end_clean();
1138
+
1139
+ return apply_filters( 'mycred_render_email_subscriptions', $content, $attr );
1140
+
1141
+ }
1142
+
1143
  }
1144
 
1145
  $email_notice = new myCRED_Email_Notice_Module();
1146
  $email_notice->load();
1147
  }
1148
+
1149
+ /**
1150
+ * myCRED Email Notifications Cron Job
1151
+ * @since 1.2
1152
+ * @version 1.0.1
1153
+ */
1154
+ if ( ! function_exists( 'mycred_email_notice_cron_job' ) ) :
1155
+ function mycred_email_notice_cron_job() {
1156
+ if ( ! class_exists( 'myCRED_Email_Notice_Module' ) ) return;
1157
+
1158
+ $email_notice = new myCRED_Email_Notice_Module();
1159
+
1160
+ global $wpdb;
1161
+
1162
+ $pending = $wpdb->get_results( "
1163
+ SELECT *
1164
+ FROM {$wpdb->usermeta}
1165
+ WHERE meta_key = 'mycred_scheduled_email_notices';" );
1166
+
1167
+ if ( $pending ) {
1168
+
1169
+ foreach ( $pending as $instance ) {
1170
+
1171
+ $_instance = maybe_unserialize( $instance->meta_value );
1172
+ $email_notice->do_email_notices( $_instance['events'], $_instance['request'] );
1173
+
1174
+ $wpdb->delete(
1175
+ $wpdb->usermeta,
1176
+ array( 'umeta_id' => $instance->umeta_id ),
1177
+ array( '%d' )
1178
+ );
1179
+
1180
+ }
1181
+
1182
+ }
1183
+ }
1184
+ endif;
1185
  ?>
addons/ranks/includes/mycred-rank-functions.php CHANGED
@@ -43,7 +43,7 @@ if ( ! function_exists( 'mycred_get_published_ranks_count' ) ) {
43
  * appropriate ranks.
44
  * @returns (int) number of users effected by rank change or -1 if all users were effected.
45
  * @since 1.3.2
46
- * @version 1.1
47
  */
48
  if ( ! function_exists( 'mycred_assign_ranks' ) ) {
49
  function mycred_assign_ranks() {
@@ -51,11 +51,10 @@ if ( ! function_exists( 'mycred_assign_ranks' ) ) {
51
 
52
  $mycred = mycred();
53
 
54
- // Get key
55
- if ( $mycred->rank['base'] == 'total' )
56
- $key = $mycred->get_cred_id() . '_total';
57
- else
58
- $key = $mycred->get_cred_id();
59
 
60
  do_action( 'mycred_assign_ranks_start' );
61
 
@@ -64,6 +63,7 @@ if ( ! function_exists( 'mycred_assign_ranks' ) ) {
64
 
65
  // Only one rank exists
66
  if ( $published_ranks == 1 ) {
 
67
  // Get this single rank
68
  $rank_id = $wpdb->get_var( "
69
  SELECT ID FROM {$wpdb->posts}
@@ -73,13 +73,24 @@ if ( ! function_exists( 'mycred_assign_ranks' ) ) {
73
  $wpdb->query( $wpdb->prepare( "
74
  UPDATE {$wpdb->usermeta}
75
  SET meta_value = %d
76
- WHERE meta_key = 'mycred_rank';", $rank_id ) );
77
 
78
  $wpdb->flush();
79
  return 0-1;
 
80
  }
81
  // Multiple ranks exists
82
  elseif ( $published_ranks > 1 ) {
 
 
 
 
 
 
 
 
 
 
83
  /*
84
  Get all user balances
85
  $users = array(
@@ -90,9 +101,9 @@ if ( ! function_exists( 'mycred_assign_ranks' ) ) {
90
  );
91
  */
92
  $users = $wpdb->get_results( $wpdb->prepare( "
93
- SELECT user_id AS ID, meta_value AS balance
94
- FROM {$wpdb->usermeta}
95
- WHERE meta_key = %s;", $key ), 'ARRAY_A' );
96
 
97
  /*
98
  Get rank ids with each ranks min and max values
@@ -105,20 +116,20 @@ WHERE meta_key = %s;", $key ), 'ARRAY_A' );
105
  );
106
  */
107
  $ranks = $wpdb->get_results( "
108
- SELECT rank.ID AS ID, min.meta_value AS min, max.meta_value AS max
109
- FROM {$wpdb->posts} rank
110
- INNER JOIN {$wpdb->postmeta} min
111
- ON ( min.post_id = rank.ID AND min.meta_key = 'mycred_rank_min' )
112
- INNER JOIN {$wpdb->postmeta} max
113
- ON ( max.post_id = rank.ID AND max.meta_key = 'mycred_rank_max' )
114
- WHERE rank.post_type = 'mycred_rank'
115
- AND rank.post_status = 'publish';", 'ARRAY_A' );
116
 
117
  $count = 0;
118
  foreach ( $users as $user ) {
119
  foreach ( $ranks as $rank ) {
120
  if ( $rank['min'] <= $user['balance'] && $rank['max'] >= $user['balance'] ) {
121
- update_user_meta( $user['ID'], 'mycred_rank', $rank['ID'] );
122
  $count = $count+1;
123
  break 1;
124
  }
@@ -172,7 +183,7 @@ if ( ! function_exists( 'mycred_get_rank' ) ) {
172
  * @uses get_the_title()
173
  * @returns (string) rank object item requested or - if no ranks exists
174
  * @since 1.1
175
- * @version 1.1
176
  */
177
  if ( ! function_exists( 'mycred_get_users_rank' ) ) {
178
  function mycred_get_users_rank( $user_id = NULL, $return = 'post_title', $logo_size = 'post-thumbnail', $attr = NULL ) {
@@ -180,8 +191,12 @@ if ( ! function_exists( 'mycred_get_users_rank' ) ) {
180
  if ( $user_id === NULL )
181
  return __( 'mycred_get_users_rank() : Missing required user id', 'mycred' );
182
 
 
 
 
 
183
  // Get users rank
184
- $rank_id = get_user_meta( $user_id, 'mycred_rank', true );
185
 
186
  // If empty, get the users rank now and save it
187
  if ( empty( $rank_id ) ) {
@@ -220,17 +235,17 @@ if ( ! function_exists( 'mycred_get_users_rank' ) ) {
220
  * @param $user_id (int) required user id
221
  * @param $save (bool) option to save the rank to the given users meta data
222
  * @param $amount (int|float) optional amount to add to current balance
223
- * @param $type (string) optional cred type to check
224
  * @uses $wpdb
225
  * @returns (string) users rank ID.
226
  * @since 1.1
227
- * @version 1.4
228
  */
229
  if ( ! function_exists( 'mycred_find_users_rank' ) ) {
230
- function mycred_find_users_rank( $user_id = NULL, $save = false, $amount = 0, $type = '' ) {
231
  global $wpdb;
232
 
233
- $mycred = mycred();
 
234
 
235
  // Check for exclusion
236
  if ( $mycred->exclude_user( $user_id ) ) return false;
@@ -241,21 +256,22 @@ if ( ! function_exists( 'mycred_find_users_rank' ) ) {
241
 
242
  if ( ! isset( $mycred->rank ) ) return false;
243
 
244
- // In case the type is not set
245
- if ( $type == '' && isset( $mycred->rank['base'] ) ) {
246
- if ( $mycred->rank['base'] == 'total' )
247
- $type = 'mycred_default_total';
248
- else
249
- $type = 'mycred_default';
250
- }
251
 
252
- // Get the balance as get_user_meta() will return the previous value if it was just
253
- // changed.
254
  $balance = $wpdb->get_var( $wpdb->prepare( "
255
- SELECT meta_value
256
- FROM {$wpdb->usermeta}
257
- WHERE user_id = %d
258
- AND meta_key = %s;", $user_id, $type ) );
 
 
 
259
 
260
  // The new balance before it is saved
261
  if ( $amount < 0 )
@@ -268,16 +284,16 @@ if ( ! function_exists( 'mycred_find_users_rank' ) ) {
268
  $balance_format = '%f';
269
 
270
  $rank_id = $wpdb->get_var( $wpdb->prepare( "
271
- SELECT rank.ID
272
- FROM {$wpdb->posts} rank
273
- INNER JOIN {$wpdb->postmeta} min
274
- ON ( min.post_id = rank.ID AND min.meta_key = 'mycred_rank_min' )
275
- INNER JOIN {$wpdb->postmeta} max
276
- ON ( max.post_id = rank.ID AND max.meta_key = 'mycred_rank_max' )
277
- WHERE rank.post_type = 'mycred_rank'
278
- AND rank.post_status = 'publish'
279
- AND {$balance_format} BETWEEN min.meta_value AND max.meta_value
280
- LIMIT 0,1;", $balance ) );
281
 
282
  // Let others play
283
  if ( $rank_id !== NULL ) {
@@ -292,10 +308,17 @@ if ( ! function_exists( 'mycred_find_users_rank' ) ) {
292
  }
293
 
294
  // Save if requested
295
- if ( $save && $rank_id !== NULL )
296
- update_user_meta( $user_id, 'mycred_rank', $rank_id );
 
 
 
297
 
298
- return apply_filters( 'mycred_find_users_rank', $rank_id, $user_id, $save, $amount, $type );
 
 
 
 
299
  }
300
  }
301
 
@@ -387,7 +410,7 @@ if ( ! function_exists( 'mycred_get_ranks' ) ) {
387
  * @param $number (int) number of users to return
388
  * @returns (array) empty if no users were found or associative array with user ID as key and display name as value
389
  * @since 1.1
390
- * @version 1.1
391
  */
392
  if ( ! function_exists( 'mycred_get_users_of_rank' ) ) {
393
  function mycred_get_users_of_rank( $rank_id, $number = NULL, $order = 'DESC' ) {
@@ -398,14 +421,37 @@ if ( ! function_exists( 'mycred_get_users_of_rank' ) ) {
398
 
399
  global $wpdb;
400
 
 
 
 
 
 
 
 
 
 
 
 
 
 
401
  $sql = "
402
- SELECT rank.user_id
403
- FROM {$wpdb->usermeta} rank
404
- INNER JOIN {$wpdb->usermeta} balance
405
- ON ( rank.user_id = balance.user_id AND balance.meta_key = 'mycred_default' )
406
- WHERE rank.meta_key = 'mycred_rank'
407
- AND rank.meta_value = %d
408
- ORDER BY balance.meta_value+0";
 
 
 
 
 
 
 
 
 
 
409
 
410
  // Order
411
  if ( $order == 'ASC' )
@@ -420,7 +466,7 @@ ORDER BY balance.meta_value+0";
420
  $sql .= ';';
421
 
422
  // Run query
423
- $users = $wpdb->get_results( $wpdb->prepare( $sql, $rank_id ), 'ARRAY_A' );
424
  $wpdb->flush();
425
 
426
  return apply_filters( 'mycred_get_users_of_rank', $users, $rank_id, $number, $order );
@@ -482,11 +528,15 @@ if ( ! function_exists( 'mycred_get_rank_logo' ) ) {
482
  * User Got Demoted
483
  * Checks if a user got demoted.
484
  * @since 1.3.3
485
- * @version 1.0
486
  */
487
  if ( ! function_exists( 'mycred_user_got_demoted' ) ) {
488
  function mycred_user_got_demoted( $user_id = NULL, $rank_id = NULL ) {
489
- $current_rank_id = get_user_meta( $user_id, 'mycred_rank', true );
 
 
 
 
490
  if ( $current_rank_id == $rank_id ) return false;
491
  if ( empty( $current_rank_id ) && ! empty( $rank_id ) ) return false;
492
 
@@ -503,11 +553,15 @@ if ( ! function_exists( 'mycred_user_got_demoted' ) ) {
503
  * User Got Promoted
504
  * Checks if a user got promoted.
505
  * @since 1.3.3
506
- * @version 1.0
507
  */
508
  if ( ! function_exists( 'mycred_user_got_promoted' ) ) {
509
  function mycred_user_got_promoted( $user_id = NULL, $rank_id = NULL ) {
510
- $current_rank_id = get_user_meta( $user_id, 'mycred_rank', true );
 
 
 
 
511
  if ( $current_rank_id == $rank_id ) return false;
512
  if ( empty( $current_rank_id ) && ! empty( $rank_id ) ) return true;
513
 
43
  * appropriate ranks.
44
  * @returns (int) number of users effected by rank change or -1 if all users were effected.
45
  * @since 1.3.2
46
+ * @version 1.2
47
  */
48
  if ( ! function_exists( 'mycred_assign_ranks' ) ) {
49
  function mycred_assign_ranks() {
51
 
52
  $mycred = mycred();
53
 
54
+ // Get rank key
55
+ $rank_meta_key = 'mycred_rank';
56
+ if ( $mycred->is_multisite && $GLOBALS['blog_id'] > 1 && ! $mycred->use_central_logging )
57
+ $rank_meta_key .= $GLOBALS['blog_id'];
 
58
 
59
  do_action( 'mycred_assign_ranks_start' );
60
 
63
 
64
  // Only one rank exists
65
  if ( $published_ranks == 1 ) {
66
+
67
  // Get this single rank
68
  $rank_id = $wpdb->get_var( "
69
  SELECT ID FROM {$wpdb->posts}
73
  $wpdb->query( $wpdb->prepare( "
74
  UPDATE {$wpdb->usermeta}
75
  SET meta_value = %d
76
+ WHERE meta_key = %s;", $rank_id, $rank_meta_key ) );
77
 
78
  $wpdb->flush();
79
  return 0-1;
80
+
81
  }
82
  // Multiple ranks exists
83
  elseif ( $published_ranks > 1 ) {
84
+
85
+ // Get balance key
86
+ $balance_key = 'mycred_default';
87
+
88
+ if ( $mycred->is_multisite && $GLOBALS['blog_id'] > 1 && ! $mycred->use_central_logging )
89
+ $balance_key .= '_' . $GLOBALS['blog_id'];
90
+
91
+ if ( $mycred->rank['base'] == 'total' )
92
+ $balance_key .= '_total';
93
+
94
  /*
95
  Get all user balances
96
  $users = array(
101
  );
102
  */
103
  $users = $wpdb->get_results( $wpdb->prepare( "
104
+ SELECT user_id AS ID, meta_value AS balance
105
+ FROM {$wpdb->usermeta}
106
+ WHERE meta_key = %s;", $balance_key ), 'ARRAY_A' );
107
 
108
  /*
109
  Get rank ids with each ranks min and max values
116
  );
117
  */
118
  $ranks = $wpdb->get_results( "
119
+ SELECT rank.ID AS ID, min.meta_value AS min, max.meta_value AS max
120
+ FROM {$wpdb->posts} rank
121
+ INNER JOIN {$wpdb->postmeta} min
122
+ ON ( min.post_id = rank.ID AND min.meta_key = 'mycred_rank_min' )
123
+ INNER JOIN {$wpdb->postmeta} max
124
+ ON ( max.post_id = rank.ID AND max.meta_key = 'mycred_rank_max' )
125
+ WHERE rank.post_type = 'mycred_rank'
126
+ AND rank.post_status = 'publish';", 'ARRAY_A' );
127
 
128
  $count = 0;
129
  foreach ( $users as $user ) {
130
  foreach ( $ranks as $rank ) {
131
  if ( $rank['min'] <= $user['balance'] && $rank['max'] >= $user['balance'] ) {
132
+ update_user_meta( $user['ID'], $rank_meta_key, $rank['ID'] );
133
  $count = $count+1;
134
  break 1;
135
  }
183
  * @uses get_the_title()
184
  * @returns (string) rank object item requested or - if no ranks exists
185
  * @since 1.1
186
+ * @version 1.1.1
187
  */
188
  if ( ! function_exists( 'mycred_get_users_rank' ) ) {
189
  function mycred_get_users_rank( $user_id = NULL, $return = 'post_title', $logo_size = 'post-thumbnail', $attr = NULL ) {
191
  if ( $user_id === NULL )
192
  return __( 'mycred_get_users_rank() : Missing required user id', 'mycred' );
193
 
194
+ $rank_meta_key = 'mycred_rank';
195
+ if ( is_multisite() && ! mycred_override_settings() )
196
+ $rank_meta_key .= $GLOBALS['blog_id'];
197
+
198
  // Get users rank
199
+ $rank_id = get_user_meta( $user_id, $rank_meta_key, true );
200
 
201
  // If empty, get the users rank now and save it
202
  if ( empty( $rank_id ) ) {
235
  * @param $user_id (int) required user id
236
  * @param $save (bool) option to save the rank to the given users meta data
237
  * @param $amount (int|float) optional amount to add to current balance
 
238
  * @uses $wpdb
239
  * @returns (string) users rank ID.
240
  * @since 1.1
241
+ * @version 1.4.1
242
  */
243
  if ( ! function_exists( 'mycred_find_users_rank' ) ) {
244
+ function mycred_find_users_rank( $user_id = NULL, $save = false, $amount = 0 ) {
245
  global $wpdb;
246
 
247
+ $balance_key = 'mycred_default';
248
+ $mycred = mycred( $balance_key );
249
 
250
  // Check for exclusion
251
  if ( $mycred->exclude_user( $user_id ) ) return false;
256
 
257
  if ( ! isset( $mycred->rank ) ) return false;
258
 
259
+ // Get balance key
260
+ if ( $mycred->is_multisite && $GLOBALS['blog_id'] > 1 && ! $mycred->use_central_logging )
261
+ $balance_key .= '_' . $GLOBALS['blog_id'];
262
+
263
+ if ( isset( $mycred->rank['base'] ) && $mycred->rank['base'] == 'total' )
264
+ $balance_key .= '_total';
 
265
 
266
+ // Get the balance as get_user_meta() will return the previous value if it was just changed.
 
267
  $balance = $wpdb->get_var( $wpdb->prepare( "
268
+ SELECT meta_value
269
+ FROM {$wpdb->usermeta}
270
+ WHERE user_id = %d
271
+ AND meta_key = %s;", $user_id, $balance_key ) );
272
+
273
+ if ( $balance === NULL || $balance == 0 )
274
+ $balance = $mycred->get_users_balance( $user_id, 'mycred_default' );
275
 
276
  // The new balance before it is saved
277
  if ( $amount < 0 )
284
  $balance_format = '%f';
285
 
286
  $rank_id = $wpdb->get_var( $wpdb->prepare( "
287
+ SELECT rank.ID
288
+ FROM {$wpdb->posts} rank
289
+ INNER JOIN {$wpdb->postmeta} min
290
+ ON ( min.post_id = rank.ID AND min.meta_key = 'mycred_rank_min' )
291
+ INNER JOIN {$wpdb->postmeta} max
292
+ ON ( max.post_id = rank.ID AND max.meta_key = 'mycred_rank_max' )
293
+ WHERE rank.post_type = 'mycred_rank'
294
+ AND rank.post_status = 'publish'
295
+ AND {$balance_format} BETWEEN min.meta_value AND max.meta_value
296
+ LIMIT 0,1;", $balance ) );
297
 
298
  // Let others play
299
  if ( $rank_id !== NULL ) {
308
  }
309
 
310
  // Save if requested
311
+ if ( $save && $rank_id !== NULL ) {
312
+
313
+ $rank_meta_key = 'mycred_rank';
314
+ if ( is_multisite() && ! mycred_override_settings() )
315
+ $rank_meta_key .= $GLOBALS['blog_id'];
316
 
317
+ update_user_meta( $user_id, $rank_meta_key, $rank_id );
318
+
319
+ }
320
+
321
+ return apply_filters( 'mycred_find_users_rank', $rank_id, $user_id, $save, $amount );
322
  }
323
  }
324
 
410
  * @param $number (int) number of users to return
411
  * @returns (array) empty if no users were found or associative array with user ID as key and display name as value
412
  * @since 1.1
413
+ * @version 1.1.1
414
  */
415
  if ( ! function_exists( 'mycred_get_users_of_rank' ) ) {
416
  function mycred_get_users_of_rank( $rank_id, $number = NULL, $order = 'DESC' ) {
421
 
422
  global $wpdb;
423
 
424
+ $mycred = mycred();
425
+
426
+ $type = 'mycred_default';
427
+ if ( isset( $mycred->rank['base'] ) && $mycred->rank['base'] == 'total' )
428
+ $type = 'mycred_default_total';
429
+
430
+ if ( $mycred->is_multisite && $GLOBALS['blog_id'] > 1 && ! $mycred->use_central_logging )
431
+ $type .= '_' . $GLOBALS['blog_id'];
432
+
433
+ $rank_meta_key = 'mycred_rank';
434
+ if ( $mycred->is_multisite && ! $mycred->use_master_template )
435
+ $rank_meta_key .= $GLOBALS['blog_id'];
436
+
437
  $sql = "
438
+ SELECT rank.user_id
439
+ FROM {$wpdb->usermeta} rank
440
+ INNER JOIN {$wpdb->usermeta} balance
441
+ ON ( rank.user_id = balance.user_id AND balance.meta_key = %s )";
442
+
443
+ if ( $mycred->is_multisite ) {
444
+ $blog_id = absint( $GLOBALS['blog_id'] );
445
+
446
+ $sql .= "
447
+ INNER JOIN {$wpdb->usermeta} blog
448
+ ON ( rank.user_id = blog.user_id AND blog.meta_key = 'primary_blog' AND blog.meta_value = {$blog_id} )";
449
+ }
450
+
451
+ $sql .= "
452
+ WHERE rank.meta_key = %s
453
+ AND rank.meta_value = %d
454
+ ORDER BY balance.meta_value+0";
455
 
456
  // Order
457
  if ( $order == 'ASC' )
466
  $sql .= ';';
467
 
468
  // Run query
469
+ $users = $wpdb->get_results( $wpdb->prepare( $sql, $type, $rank_meta_key, $rank_id ), 'ARRAY_A' );
470
  $wpdb->flush();
471
 
472
  return apply_filters( 'mycred_get_users_of_rank', $users, $rank_id, $number, $order );
528
  * User Got Demoted
529
  * Checks if a user got demoted.
530
  * @since 1.3.3
531
+ * @version 1.1
532
  */
533
  if ( ! function_exists( 'mycred_user_got_demoted' ) ) {
534
  function mycred_user_got_demoted( $user_id = NULL, $rank_id = NULL ) {
535
+ $rank_meta_key = 'mycred_rank';
536
+ if ( is_multisite() && ! mycred_override_settings() )
537
+ $rank_meta_key .= $GLOBALS['blog_id'];
538
+
539
+ $current_rank_id = get_user_meta( $user_id, $rank_meta_key, true );
540
  if ( $current_rank_id == $rank_id ) return false;
541
  if ( empty( $current_rank_id ) && ! empty( $rank_id ) ) return false;
542
 
553
  * User Got Promoted
554
  * Checks if a user got promoted.
555
  * @since 1.3.3
556
+ * @version 1.1
557
  */
558
  if ( ! function_exists( 'mycred_user_got_promoted' ) ) {
559
  function mycred_user_got_promoted( $user_id = NULL, $rank_id = NULL ) {
560
+ $rank_meta_key = 'mycred_rank';
561
+ if ( is_multisite() && ! mycred_override_settings() )
562
+ $rank_meta_key .= $GLOBALS['blog_id'];
563
+
564
+ $current_rank_id = get_user_meta( $user_id, $rank_meta_key, true );
565
  if ( $current_rank_id == $rank_id ) return false;
566
  if ( empty( $current_rank_id ) && ! empty( $rank_id ) ) return true;
567
 
addons/ranks/myCRED-addon-ranks.php CHANGED
@@ -2,7 +2,7 @@
2
  /**
3
  * Addon: Ranks
4
  * Addon URI: http://mycred.me/add-ons/ranks/
5
- * Version: 1.2
6
  * Description: Create ranks for users reaching a certain number of %_plural% with the option to add logos for each rank.
7
  * Author: Gabriel S Merovingi
8
  * Author URI: http://www.merovingi.com
@@ -292,7 +292,7 @@ if ( ! class_exists( 'myCRED_Ranks_Module' ) ) {
292
  /**
293
  * AJAX: Calculate Totals
294
  * @since 1.2
295
- * @version 1.1
296
  */
297
  public function calculate_totals() {
298
  // Security
@@ -305,7 +305,28 @@ if ( ! class_exists( 'myCRED_Ranks_Module' ) ) {
305
  FROM {$this->core->log_table}
306
  GROUP BY user_id;", 'manual' ), $this ) );
307
 
308
- $total_key = apply_filters( 'mycred_ranks_total_key', 'mycred_default_total', $this );
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
309
 
310
  $count = 0;
311
  if ( $users ) {
@@ -313,7 +334,7 @@ if ( ! class_exists( 'myCRED_Ranks_Module' ) ) {
313
  if ( $user->total == 0 ) continue;
314
 
315
  update_user_meta( $user->ID, $total_key, $user->total );
316
- mycred_find_users_rank( $user->ID, true, 0, $total_key );
317
 
318
  $count = $count+1;
319
  }
@@ -371,7 +392,11 @@ if ( ! class_exists( 'myCRED_Ranks_Module' ) ) {
371
  else
372
  do_action( 'mycred_find_users_rank', $user_id, $rank_id );
373
 
374
- update_user_meta( $user_id, 'mycred_rank', $rank_id );
 
 
 
 
375
  }
376
  }
377
 
2
  /**
3
  * Addon: Ranks
4
  * Addon URI: http://mycred.me/add-ons/ranks/
5
+ * Version: 1.2.1
6
  * Description: Create ranks for users reaching a certain number of %_plural% with the option to add logos for each rank.
7
  * Author: Gabriel S Merovingi
8
  * Author URI: http://www.merovingi.com
292
  /**
293
  * AJAX: Calculate Totals
294
  * @since 1.2
295
+ * @version 1.2
296
  */
297
  public function calculate_totals() {
298
  // Security
305
  FROM {$this->core->log_table}
306
  GROUP BY user_id;", 'manual' ), $this ) );
307
 
308
+ // Get total key
309
+ $total_key = 'mycred_default';
310
+ if ( $this->core->is_multisite && $GLOBALS['blog_id'] > 1 && ! $this->core->use_central_logging ) {
311
+ $total_key .= '_' . $GLOBALS['blog_id'];
312
+
313
+ // Clean up old keys
314
+ $wpdb->delete(
315
+ $wpdb->usermeta,
316
+ array( 'meta_key' => $total_key ),
317
+ array( '%s' )
318
+ );
319
+ }
320
+ $total_key .= '_total';
321
+
322
+ // Clean up old keys
323
+ $wpdb->delete(
324
+ $wpdb->usermeta,
325
+ array( 'meta_key' => $total_key ),
326
+ array( '%s' )
327
+ );
328
+
329
+ $total_key = apply_filters( 'mycred_ranks_total_key', $total_key, $this );
330
 
331
  $count = 0;
332
  if ( $users ) {
334
  if ( $user->total == 0 ) continue;
335
 
336
  update_user_meta( $user->ID, $total_key, $user->total );
337
+ mycred_find_users_rank( $user->ID, true, 0 );
338
 
339
  $count = $count+1;
340
  }
392
  else
393
  do_action( 'mycred_find_users_rank', $user_id, $rank_id );
394
 
395
+ $rank_meta_key = 'mycred_rank';
396
+ if ( is_multisite() && ! mycred_override_settings() )
397
+ $rank_meta_key .= $GLOBALS['blog_id'];
398
+
399
+ update_user_meta( $user_id, $rank_meta_key, $rank_id );
400
  }
401
  }
402
 
addons/sell-content/myCRED-addon-sell-content.php CHANGED
@@ -739,14 +739,14 @@ jQuery(function($) {
739
  * @param $post_id (int) required post id
740
  * @returns (bool) true or false
741
  * @since 0.1
742
- * @version 1.3.1
743
  */
744
  public function user_paid( $user_id, $post_id ) {
745
  // Admins can view
746
  if ( $this->core->can_edit_plugin( $user_id ) || $this->core->can_edit_creds( $user_id ) ) return true;
747
  // Authors can view
748
  $the_post = get_post( $post_id );
749
- if ( ! isset( $the_post->post_author ) && $the_post->post_author == $user_id ) return true;
750
 
751
  global $wpdb;
752
 
739
  * @param $post_id (int) required post id
740
  * @returns (bool) true or false
741
  * @since 0.1
742
+ * @version 1.3.2
743
  */
744
  public function user_paid( $user_id, $post_id ) {
745
  // Admins can view
746
  if ( $this->core->can_edit_plugin( $user_id ) || $this->core->can_edit_creds( $user_id ) ) return true;
747
  // Authors can view
748
  $the_post = get_post( $post_id );
749
+ if ( ! isset( $the_post->post_author ) || $the_post->post_author == $user_id ) return true;
750
 
751
  global $wpdb;
752
 
addons/transfer/myCRED-addon-transfer.php CHANGED
@@ -909,7 +909,7 @@ if ( ! function_exists( 'mycred_user_can_transfer' ) ) {
909
  $account_limit = $mycred->number( apply_filters( 'mycred_transfer_acc_limit', $zero ) );
910
 
911
  // Check if users balance is below the account limit
912
- if ( $balance <= $account_limit ) return 'low';
913
 
914
  // If there are no limits, return the current balance
915
  if ( $pref['limit']['limit'] == 'none' ) return $balance;
909
  $account_limit = $mycred->number( apply_filters( 'mycred_transfer_acc_limit', $zero ) );
910
 
911
  // Check if users balance is below the account limit
912
+ if ( $balance < $account_limit ) return 'low';
913
 
914
  // If there are no limits, return the current balance
915
  if ( $pref['limit']['limit'] == 'none' ) return $balance;
includes/importers/mycred-balances.php CHANGED
@@ -128,11 +128,11 @@ if ( class_exists( 'WP_Importer' ) ) {
128
 
129
  $method = trim( $_POST['method'] );
130
  if ( $method == 'add' ) {
131
- $current_balance = get_user_meta( $user->ID, 'mycred_default', true );
132
  $balance = $current_balance+$balance;
133
  }
134
 
135
- update_user_meta( $user->ID, 'mycred_default', $balance );
136
 
137
  if ( ! empty( $log_entry ) ) {
138
  $wpdb->insert(
128
 
129
  $method = trim( $_POST['method'] );
130
  if ( $method == 'add' ) {
131
+ $current_balance = get_user_meta( $user->ID, $point_type, true );
132
  $balance = $current_balance+$balance;
133
  }
134
 
135
+ update_user_meta( $user->ID, $point_type, $balance );
136
 
137
  if ( ! empty( $log_entry ) ) {
138
  $wpdb->insert(
includes/mycred-admin.php CHANGED
@@ -253,7 +253,7 @@ LEFT JOIN {$wpdb->usermeta}
253
  * Customize User Columns Content
254
  * @filter 'mycred_user_row_actions'
255
  * @since 0.1
256
- * @version 1.3
257
  */
258
  public function custom_user_column_content( $value, $column_name, $user_id ) {
259
  global $mycred_types;
@@ -270,6 +270,12 @@ LEFT JOIN {$wpdb->usermeta}
270
  $ubalance = $mycred->get_users_cred( $user_id, $column_name );
271
  $balance = '<div id="mycred-user-' . $user_id . '-balance-' . $column_name . '">' . $mycred->before . ' <span>' . $mycred->format_number( $ubalance ) . '</span> ' . $mycred->after . '</div>';
272
 
 
 
 
 
 
 
273
  $page = 'myCRED';
274
  if ( $column_name != 'mycred_default' )
275
  $page .= '_' . $column_name;
@@ -377,7 +383,7 @@ LEFT JOIN {$wpdb->usermeta}
377
  </td>
378
  </tr>
379
  <?php
380
- if ( IS_PROFILE_PAGE ) return;
381
 
382
  $mycred_types = mycred_get_types();
383
 
253
  * Customize User Columns Content
254
  * @filter 'mycred_user_row_actions'
255
  * @since 0.1
256
+ * @version 1.3.1
257
  */
258
  public function custom_user_column_content( $value, $column_name, $user_id ) {
259
  global $mycred_types;
270
  $ubalance = $mycred->get_users_cred( $user_id, $column_name );
271
  $balance = '<div id="mycred-user-' . $user_id . '-balance-' . $column_name . '">' . $mycred->before . ' <span>' . $mycred->format_number( $ubalance ) . '</span> ' . $mycred->after . '</div>';
272
 
273
+ if ( isset( $mycred->rank['base'] ) && $mycred->rank['base'] == 'total' ) {
274
+ $total = get_user_meta( $user_id, $column_name . '_total', true );
275
+ if ( $total != '' )
276
+ $balance .= '<small style="display:block;">' . sprintf( __( 'Total: %s', 'mycred' ), $mycred->format_number( $total ) ) . '</small>';
277
+ }
278
+
279
  $page = 'myCRED';
280
  if ( $column_name != 'mycred_default' )
281
  $page .= '_' . $column_name;
383
  </td>
384
  </tr>
385
  <?php
386
+ if ( IS_PROFILE_PAGE ) return;
387
 
388
  $mycred_types = mycred_get_types();
389
 
includes/mycred-functions.php CHANGED
@@ -1771,18 +1771,23 @@ endif;
1771
  * @param $type (string), optional cred type to check for
1772
  * @returns zero if user id is not set or if no total were found, else returns creds
1773
  * @since 1.2
1774
- * @version 1.1
1775
  */
1776
  if ( ! function_exists( 'mycred_get_users_total' ) ) :
1777
  function mycred_get_users_total( $user_id = '', $type = 'mycred_default' )
1778
  {
1779
- if ( empty( $user_id ) ) return 0;
1780
 
 
1781
  $mycred = mycred( $type );
1782
- if ( empty( $type ) ) $type = $mycred->get_cred_id();
1783
 
1784
- $total = get_user_meta( $user_id, $type . '_total', true );
1785
- if ( empty( $total ) ) $total = $mycred->get_users_cred( $user_id, $type );
 
 
 
 
 
1786
 
1787
  return $mycred->number( $total );
1788
  }
@@ -1797,7 +1802,7 @@ endif;
1797
  * @param $mycred (myCRED_Settings object), required myCRED settings object
1798
  * @returns zero if user id is not set or if no total were found, else returns total
1799
  * @since 1.2
1800
- * @version 1.1
1801
  */
1802
  if ( ! function_exists( 'mycred_update_users_total' ) ) :
1803
  function mycred_update_users_total( $type = 'mycred_default', $request = NULL, $mycred = NULL )
@@ -1805,11 +1810,16 @@ if ( ! function_exists( 'mycred_update_users_total' ) ) :
1805
  if ( $request === NULL || ! is_object( $mycred ) || ! isset( $request['user_id'] ) || ! isset( $request['amount'] ) ) return false;
1806
  if ( empty( $type ) ) $type = $mycred->get_cred_id();
1807
 
 
 
 
 
 
1808
  do_action( 'mycred_update_users_total', $request, $type, $mycred );
1809
 
1810
  $amount = $mycred->number( $request['amount'] );
1811
  $user_id = $request['user_id'];
1812
- $users_total = get_user_meta( $user_id, $type . '_total', true );
1813
  if ( empty( $users_total ) ) {
1814
  global $wpdb;
1815
  $users_total = $wpdb->get_var( $wpdb->prepare( "
@@ -1821,7 +1831,8 @@ if ( ! function_exists( 'mycred_update_users_total' ) ) :
1821
  }
1822
 
1823
  $new_total = $mycred->number( $users_total+$amount );
1824
- update_user_meta( $user_id, $type . '_total', $new_total );
 
1825
  return $new_total;
1826
  }
1827
  endif;
1771
  * @param $type (string), optional cred type to check for
1772
  * @returns zero if user id is not set or if no total were found, else returns creds
1773
  * @since 1.2
1774
+ * @version 1.2
1775
  */
1776
  if ( ! function_exists( 'mycred_get_users_total' ) ) :
1777
  function mycred_get_users_total( $user_id = '', $type = 'mycred_default' )
1778
  {
1779
+ if ( $user_id == '' ) return 0;
1780
 
1781
+ if ( $type == '' ) $type = 'mycred_default';
1782
  $mycred = mycred( $type );
 
1783
 
1784
+ if ( $mycred->is_multisite && $GLOBALS['blog_id'] > 1 && ! $mycred->use_central_logging )
1785
+ $type .= '_' . $GLOBALS['blog_id'];
1786
+
1787
+ $type .= '_total';
1788
+
1789
+ $total = get_user_meta( $user_id, $type, true );
1790
+ if ( $total == '' ) $total = $mycred->get_users_cred( $user_id, $type );
1791
 
1792
  return $mycred->number( $total );
1793
  }
1802
  * @param $mycred (myCRED_Settings object), required myCRED settings object
1803
  * @returns zero if user id is not set or if no total were found, else returns total
1804
  * @since 1.2
1805
+ * @version 1.2
1806
  */
1807
  if ( ! function_exists( 'mycred_update_users_total' ) ) :
1808
  function mycred_update_users_total( $type = 'mycred_default', $request = NULL, $mycred = NULL )
1810
  if ( $request === NULL || ! is_object( $mycred ) || ! isset( $request['user_id'] ) || ! isset( $request['amount'] ) ) return false;
1811
  if ( empty( $type ) ) $type = $mycred->get_cred_id();
1812
 
1813
+ if ( $mycred->is_multisite && $GLOBALS['blog_id'] > 1 && ! $mycred->use_central_logging )
1814
+ $type .= '_' . $GLOBALS['blog_id'];
1815
+
1816
+ $type .= '_total';
1817
+
1818
  do_action( 'mycred_update_users_total', $request, $type, $mycred );
1819
 
1820
  $amount = $mycred->number( $request['amount'] );
1821
  $user_id = $request['user_id'];
1822
+ $users_total = get_user_meta( $user_id, $type, true );
1823
  if ( empty( $users_total ) ) {
1824
  global $wpdb;
1825
  $users_total = $wpdb->get_var( $wpdb->prepare( "
1831
  }
1832
 
1833
  $new_total = $mycred->number( $users_total+$amount );
1834
+ update_user_meta( $user_id, $type, $new_total );
1835
+
1836
  return $new_total;
1837
  }
1838
  endif;
includes/mycred-install.php CHANGED
@@ -27,7 +27,7 @@ if ( ! class_exists( 'myCRED_Install' ) ) {
27
  * Compat
28
  * Check to make sure we reach minimum requirements for this plugin to work propery.
29
  * @since 0.1
30
- * @version 1.0.1
31
  */
32
  public function compat() {
33
  global $wpdb;
@@ -48,6 +48,10 @@ if ( ! class_exists( 'myCRED_Install' ) ) {
48
  if ( version_compare( $sql_version, '5.0', '<' ) )
49
  $message[] = __( 'myCRED requires SQL 5.0 or higher. Version detected: ', 'mycred' ) . ' ' . $sql_version;
50
 
 
 
 
 
51
  // Not empty $message means there are issues
52
  if ( ! empty( $message ) ) {
53
  $error_message = implode( "\n", $message );
27
  * Compat
28
  * Check to make sure we reach minimum requirements for this plugin to work propery.
29
  * @since 0.1
30
+ * @version 1.1
31
  */
32
  public function compat() {
33
  global $wpdb;
48
  if ( version_compare( $sql_version, '5.0', '<' ) )
49
  $message[] = __( 'myCRED requires SQL 5.0 or higher. Version detected: ', 'mycred' ) . ' ' . $sql_version;
50
 
51
+ // mcrypt library check (if missing, this will cause a fatal error)
52
+ if ( ! function_exists( 'mcrypt_get_iv_size' ) )
53
+ $message[] = __( 'The mcrypt PHP library must be enabled in order to use this plugin! Please check your PHP configuration or contact your host and ask them to enable it for you!', 'mycred' );
54
+
55
  // Not empty $message means there are issues
56
  if ( ! empty( $message ) ) {
57
  $error_message = implode( "\n", $message );
includes/mycred-network.php CHANGED
@@ -153,7 +153,7 @@ h4.ui-accordion-header:before { content: "<?php _e( 'click to open', 'mycred' );
153
  /**
154
  * Network Settings Page
155
  * @since 0.1
156
- * @version 1.0
157
  */
158
  public function admin_page_settings() {
159
  // Security
@@ -170,7 +170,7 @@ h4.ui-accordion-header:before { content: "<?php _e( 'click to open', 'mycred' );
170
  <?php
171
 
172
  // Inform user that myCRED has not yet been setup
173
- $setup = get_blog_option( 1, 'mycred_version', false );
174
  if ( $setup === false )
175
  echo '<div class="error"><p>' . sprintf( __( 'Note! %s has not yet been setup.', 'mycred' ), $name ) . '</p></div>';
176
 
153
  /**
154
  * Network Settings Page
155
  * @since 0.1
156
+ * @version 1.1
157
  */
158
  public function admin_page_settings() {
159
  // Security
170
  <?php
171
 
172
  // Inform user that myCRED has not yet been setup
173
+ $setup = get_blog_option( 1, 'mycred_setup_completed', false );
174
  if ( $setup === false )
175
  echo '<div class="error"><p>' . sprintf( __( 'Note! %s has not yet been setup.', 'mycred' ), $name ) . '</p></div>';
176
 
includes/mycred-shortcodes.php CHANGED
@@ -136,7 +136,7 @@ if ( ! function_exists( 'mycred_render_shortcode_history' ) ) {
136
  * myCRED Shortcode: mycred_leaderboard
137
  * @see http://codex.mycred.me/shortcodes/mycred_leaderboard/
138
  * @since 0.1
139
- * @version 1.3.2
140
  */
141
  if ( ! function_exists( 'mycred_render_leaderboard' ) ) {
142
  function mycred_render_leaderboard( $atts, $content = '' )
@@ -178,7 +178,7 @@ if ( ! function_exists( 'mycred_render_leaderboard' ) ) {
178
  if ( ! empty( $leaderboard ) ) {
179
 
180
  // Check if current user is in the leaderboard
181
- if ( $current && is_user_logged_in() ) {
182
 
183
  // Find the current user in the leaderboard
184
  foreach ( $leaderboard as $position => $user ) {
@@ -237,7 +237,7 @@ if ( ! function_exists( 'mycred_render_leaderboard' ) ) {
237
  $leaderboard = NULL;
238
 
239
  // Current user is not in list but we want to show his position
240
- if ( ! $in_list && is_user_logged_in() ) {
241
 
242
  // Flush previous query
243
  $wpdb->flush();
@@ -303,13 +303,14 @@ if ( ! function_exists( 'mycred_render_leaderboard' ) ) {
303
  * myCRED Shortcode: mycred_my_ranking
304
  * @see http://codex.mycred.me/shortcodes/mycred_my_ranking/
305
  * @since 0.1
306
- * @version 1.2
307
  */
308
  if ( ! function_exists( 'mycred_render_my_ranking' ) ) {
309
  function mycred_render_my_ranking( $atts )
310
  {
311
  extract( shortcode_atts( array(
312
- 'user_id' => NULL
 
313
  ), $atts ) );
314
 
315
  // If no id is given
@@ -319,8 +320,34 @@ if ( ! function_exists( 'mycred_render_my_ranking' ) ) {
319
  // Get current user id
320
  $user_id = get_current_user_id();
321
  }
322
-
323
- return mycred_leaderboard_position( $user_id );
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
324
  }
325
  }
326
 
136
  * myCRED Shortcode: mycred_leaderboard
137
  * @see http://codex.mycred.me/shortcodes/mycred_leaderboard/
138
  * @since 0.1
139
+ * @version 1.3.3
140
  */
141
  if ( ! function_exists( 'mycred_render_leaderboard' ) ) {
142
  function mycred_render_leaderboard( $atts, $content = '' )
178
  if ( ! empty( $leaderboard ) ) {
179
 
180
  // Check if current user is in the leaderboard
181
+ if ( $current == 1 && is_user_logged_in() ) {
182
 
183
  // Find the current user in the leaderboard
184
  foreach ( $leaderboard as $position => $user ) {
237
  $leaderboard = NULL;
238
 
239
  // Current user is not in list but we want to show his position
240
+ if ( ! $in_list && $current == 1 && is_user_logged_in() ) {
241
 
242
  // Flush previous query
243
  $wpdb->flush();
303
  * myCRED Shortcode: mycred_my_ranking
304
  * @see http://codex.mycred.me/shortcodes/mycred_my_ranking/
305
  * @since 0.1
306
+ * @version 1.3
307
  */
308
  if ( ! function_exists( 'mycred_render_my_ranking' ) ) {
309
  function mycred_render_my_ranking( $atts )
310
  {
311
  extract( shortcode_atts( array(
312
+ 'user_id' => NULL,
313
+ 'ctype' => 'mycred_default'
314
  ), $atts ) );
315
 
316
  // If no id is given
320
  // Get current user id
321
  $user_id = get_current_user_id();
322
  }
323
+
324
+ // If no type is given
325
+ if ( $ctype == '' )
326
+ $ctype = 'mycred_default';
327
+
328
+ global $wpdb;
329
+
330
+ // Get a complete leaderboard with just user IDs
331
+ $full_leaderboard = $wpdb->get_results( $wpdb->prepare( "
332
+ SELECT u.ID
333
+ FROM {$wpdb->users} u
334
+ INNER JOIN {$wpdb->usermeta} um
335
+ ON ( u.ID = um.user_id )
336
+ WHERE um.meta_key = %s
337
+ ORDER BY um.meta_value+0 DESC;", $ctype ), 'ARRAY_A' );
338
+
339
+ $position = 0;
340
+ if ( ! empty( $full_leaderboard ) ) {
341
+
342
+ // Get current users position
343
+ $current_position = array_search( array( 'ID' => $user_id ), $full_leaderboard );
344
+ $position = $current_position+1;
345
+
346
+ }
347
+
348
+ $full_leaderboard = NULL;
349
+
350
+ return apply_filters( 'mycred_get_leaderboard_position', $position, $user_id, $ctype );
351
  }
352
  }
353
 
includes/mycred-update.php CHANGED
@@ -4,13 +4,31 @@ if ( ! defined( 'myCRED_VERSION' ) ) exit;
4
  /**
5
  * myCRED 1.4 Update
6
  * Updated existing myCRED installations to 1.4
 
 
7
  */
8
  if ( ! function_exists( 'mycred_update_to_onefour' ) ) :
9
  add_action( 'mycred_reactivation', 'mycred_update_to_onefour' );
10
  function mycred_update_to_onefour() {
 
 
 
 
 
 
 
 
 
 
 
 
11
  // Check if we should update
12
  $version = get_option( 'mycred_version', myCRED_VERSION );
13
- if ( $version == myCRED_VERSION ) return;
 
 
 
 
14
 
15
  // Rankings are renamed to Leaderboard
16
  delete_transient( 'mycred_default_leaderboard' );
4
  /**
5
  * myCRED 1.4 Update
6
  * Updated existing myCRED installations to 1.4
7
+ * @since 1.4
8
+ * @version 1.1
9
  */
10
  if ( ! function_exists( 'mycred_update_to_onefour' ) ) :
11
  add_action( 'mycred_reactivation', 'mycred_update_to_onefour' );
12
  function mycred_update_to_onefour() {
13
+
14
+ // Clean up after the 1.4.6 Email Notice bug
15
+ $cron = get_option( 'cron' );
16
+ if ( ! empty( $cron ) ) {
17
+ foreach ( $cron as $time => $job ) {
18
+ if ( isset( $job['mycred_send_email_notices'] ) )
19
+ unset( $cron[ $time ] );
20
+
21
+ }
22
+ update_option( 'cron', $cron );
23
+ }
24
+
25
  // Check if we should update
26
  $version = get_option( 'mycred_version', myCRED_VERSION );
27
+ if ( version_compare( $version, '1.4', '>=' ) ) {
28
+ delete_option( 'mycred_update_req_settings' );
29
+ delete_option( 'mycred_update_req_hooks' );
30
+ return;
31
+ }
32
 
33
  // Rankings are renamed to Leaderboard
34
  delete_transient( 'mycred_default_leaderboard' );
lang/mycred-en_US.mo CHANGED
Binary file
lang/mycred-en_US.po CHANGED
@@ -3,8 +3,8 @@ msgstr ""
3
  "Project-Id-Version: myCRED\n"
4
  "Report-Msgid-Bugs-To: http://mycred.me\n"
5
  "POT-Creation-Date: 2014-03-20 14:26+0100\n"
6
- "PO-Revision-Date: Wed May 28 2014 12:03:12 GMT+0200 (CEST)\n"
7
- "Last-Translator: Gabriel <gabrieldk@merovingi.com>\n"
8
  "Language-Team: LANGUAGE <support@mycred.me>\n"
9
  "Language: English (USA)\n"
10
  "Plural-Forms: nplurals=2; plural=n != 1\n"
@@ -14,115 +14,124 @@ msgstr ""
14
  "X-Poedit-SourceCharset: UTF-8\n"
15
  "X-Generator: Loco - https://localise.biz/\n"
16
  "X-Poedit-Basepath: .\n"
17
- "X-Poedit-KeywordsList: _:1;gettext:1;dgettext:2;ngettext:1,2;dngettext:2,3;__:1;"
18
- "_e:1;_c:1;_n:1,2;_n_noop:1,2;_nc:1,2;__ngettext:1,2;__ngettext_noop:1,2;_x:1,2c;"
19
- "_ex:1,2c;_nx:1,2,4c;_nx_noop:1,2,3c;_n_js:1,2;_nx_js:1,2,3c;esc_attr__:1;"
20
- "esc_html__:1;esc_attr_e:1;esc_html_e:1;esc_attr_x:1,2c;esc_html_x:1,2c;"
21
- "comments_number_link:2,3;t:1;st:1;trans:1;transChoice:1,2\n"
22
- "X-Poedit-SearchPath-0: /Users/gabriel/Sites/paypana/wp-content/plugins/mycred\n"
 
23
  "X-Poedit-SearchPath-1: .\n"
24
  "X-Loco-Target-Locale: en_US"
25
 
26
- #: ../mycred.php:398
27
  msgid "Balance"
28
  msgstr ""
29
 
30
- #: ../mycred.php:423
31
  msgid "%label% History"
32
  msgstr ""
33
 
34
- #: ../mycred.php:476
35
  msgid "No balances available."
36
  msgstr ""
37
 
38
- #: ../mycred.php:522
 
39
  msgid "About %s"
40
  msgstr ""
41
 
42
- #: ../mycred.php:531
43
  msgid "Awesome People"
44
  msgstr ""
45
 
46
- #: ../mycred.php:616 ../mycred.php:640 ../addons/ranks/myCRED-addon-ranks.php:230 ../addons/ranks/myCRED-addon-ranks.php:897 ../addons/sell-content/myCRED-addon-sell-content.php:309 ../addons/transfer/myCRED-addon-transfer.php:132 ../includes/mycred-shortcodes.php:535
 
 
 
47
  msgid "Processing..."
48
  msgstr ""
49
 
50
- #: ../mycred.php:617
51
  msgid ""
52
- "Warning! All entries in your log will be permanently removed! This can not be "
53
- "undone!"
54
  msgstr ""
55
 
56
- #: ../mycred.php:618
57
  msgid ""
58
  "All log entries belonging to deleted users will be permanently deleted! This "
59
  "can not be undone!"
60
  msgstr ""
61
 
62
- #: ../mycred.php:619
63
  msgid "Warning! All user balances will be set to zero! This can not be undone!"
64
  msgstr ""
65
 
66
- #: ../mycred.php:620
67
  msgid "Done!"
68
  msgstr ""
69
 
70
- #: ../mycred.php:621 ../mycred.php:639 ../mycred.php:657
71
  msgid "Close"
72
  msgstr ""
73
 
74
- #: ../mycred.php:622
75
  msgid "Export users %plural%"
76
  msgstr ""
77
 
78
- #: ../mycred.php:638
79
  msgid "Edit Users Balance"
80
  msgstr ""
81
 
82
- #: ../mycred.php:656
83
  msgid "Edit Log Entry"
84
  msgstr ""
85
 
86
- #: ../mycred.php:658
87
  msgid "Updating..."
88
  msgstr ""
89
 
90
- #: ../mycred.php:660
91
  msgid "Are you sure you want to delete this log entry? This can not be undone!"
92
  msgstr ""
93
 
94
- #: ../mycred.php:661
95
  msgid "Log entry updated"
96
  msgstr ""
97
 
98
- #: ../mycred.php:713 ../mycred.php:734 ../addons/email-notices/myCRED-addon-email-notices.php:595 ../addons/gateway/event-booking/mycred-eventsmanager-pro.php:458 ../addons/gateway/event-booking/mycred-eventsmanager.php:537
 
 
99
  msgid "Setup"
100
  msgstr ""
101
 
102
- #: ../mycred.php:715 ../addons/gateway/carts/mycred-marketpress.php:360 ../includes/mycred-network.php:186 ../modules/mycred-module-settings.php:20 ../modules/mycred-module-settings.php:21 ../modules/mycred-module-settings.php:22
 
 
103
  msgid "Settings"
104
  msgstr ""
105
 
106
- #: ../mycred.php:738 ../modules/mycred-module-addons.php:360
107
  msgid "About"
108
  msgstr ""
109
 
110
- #: ../mycred.php:739
111
  msgid "Tutorials"
112
  msgstr ""
113
 
114
- #: ../mycred.php:740
115
  msgid "Codex"
116
  msgstr ""
117
 
118
- #: ../mycred.php:741
119
  msgid "Store"
120
  msgstr ""
121
 
122
- #: ../mycred.php:755
123
  msgid ""
124
- "Make sure to backup your database and files before updating, in case anything "
125
- "goes wrong!"
126
  msgstr ""
127
 
128
  #: ../abstracts/mycred-abstract-hook.php:70
@@ -133,7 +142,8 @@ msgstr ""
133
  msgid "This Hook has no settings"
134
  msgstr ""
135
 
136
- #: ../abstracts/mycred-abstract-hook.php:157 ../modules/mycred-module-hooks.php:1192
 
137
  msgid "No limit"
138
  msgstr ""
139
 
@@ -153,7 +163,13 @@ msgstr ""
153
  msgid "Once per day (reset at midnight)"
154
  msgstr ""
155
 
156
- #: ../abstracts/mycred-abstract-hook.php:168 ../addons/banking/abstracts/mycred-abstract-service.php:342 ../addons/buy-creds/myCRED-addon-buy-creds.php:390 ../addons/buy-creds/myCRED-addon-buy-creds.php:411 ../addons/buy-creds/abstracts/mycred-abstract-payment-gateway.php:805 ../addons/buy-creds/abstracts/mycred-abstract-payment-gateway.php:828 ../addons/buy-creds/gateways/zombaio.php:375 ../addons/email-notices/myCRED-addon-email-notices.php:179 ../addons/email-notices/myCRED-addon-email-notices.php:745
 
 
 
 
 
 
157
  msgid "Select"
158
  msgstr ""
159
 
@@ -161,7 +177,8 @@ msgstr ""
161
  msgid "myCRED_Module() Error. A Module ID is required!"
162
  msgstr ""
163
 
164
- #: ../abstracts/mycred-abstract-module.php:343 ../abstracts/mycred-abstract-module.php:351
 
165
  msgid "Surprise"
166
  msgstr ""
167
 
@@ -173,11 +190,14 @@ msgstr ""
173
  msgid "click to open"
174
  msgstr ""
175
 
176
- #: ../abstracts/mycred-abstract-module.php:472 ../addons/banking/myCRED-addon-banking.php:163 ../addons/buy-creds/myCRED-addon-buy-creds.php:488
 
177
  msgid "Settings Updated"
178
  msgstr ""
179
 
180
- #: ../addons/banking/myCRED-addon-banking.php:42 ../addons/banking/myCRED-addon-banking.php:43 ../addons/banking/myCRED-addon-banking.php:44 ../modules/mycred-module-addons.php:146
 
 
181
  msgid "Banking"
182
  msgstr ""
183
 
@@ -186,11 +206,12 @@ msgid "Compound Interest"
186
  msgstr ""
187
 
188
  #: ../addons/banking/myCRED-addon-banking.php:104
 
189
  msgid ""
190
  "Apply an interest rate on your users %_plural% balances. Interest rate is "
191
  "annual and is compounded daily as long as this service is enabled. Positive "
192
- "interest rate leads to users gaining %_plural% while a negative interest rate "
193
- "will to users loosing %_plural%."
194
  msgstr ""
195
 
196
  #: ../addons/banking/myCRED-addon-banking.php:110
@@ -198,20 +219,27 @@ msgid "Recurring Payouts"
198
  msgstr ""
199
 
200
  #: ../addons/banking/myCRED-addon-banking.php:111
 
201
  msgid ""
202
- "Give your users %_plural% on a regular basis with the option to set the number "
203
- "of times you want this payout to run (cycles)."
204
  msgstr ""
205
 
206
- #: ../addons/banking/myCRED-addon-banking.php:156 ../addons/buy-creds/myCRED-addon-buy-creds.php:473 ../addons/buy-creds/myCRED-addon-buy-creds.php:603 ../includes/mycred-network.php:160 ../modules/mycred-module-addons.php:266 ../modules/mycred-module-hooks.php:157 ../modules/mycred-module-log.php:322 ../modules/mycred-module-log.php:575 ../modules/mycred-module-settings.php:312
 
 
 
 
207
  msgid "Access Denied"
208
  msgstr ""
209
 
210
  #: ../addons/banking/myCRED-addon-banking.php:167
 
211
  msgid "%s Banking"
212
  msgstr ""
213
 
214
- #: ../addons/banking/myCRED-addon-banking.php:168 ../modules/mycred-module-addons.php:147
 
215
  msgid "Setup recurring payouts or offer / charge interest on user account balances."
216
  msgstr ""
217
 
@@ -223,11 +251,13 @@ msgstr ""
223
  msgid "Warning! This add-on requires WP - Cron to work."
224
  msgstr ""
225
 
226
- #: ../addons/banking/myCRED-addon-banking.php:188 ../addons/buy-creds/myCRED-addon-buy-creds.php:549 ../modules/mycred-module-hooks.php:182
 
227
  msgid "Enable"
228
  msgstr ""
229
 
230
- #: ../addons/banking/myCRED-addon-banking.php:201 ../modules/mycred-module-hooks.php:197
 
231
  msgid "Update Changes"
232
  msgstr ""
233
 
@@ -283,7 +313,8 @@ msgstr ""
283
  msgid "The interest rate can be either positive or negative and is compounded daily."
284
  msgstr ""
285
 
286
- #: ../addons/banking/services/mycred-bank-service-interest.php:291 ../addons/coupons/myCRED-addon-coupons.php:392
 
287
  msgid "Minimum Balance"
288
  msgstr ""
289
 
@@ -291,19 +322,36 @@ msgstr ""
291
  msgid "The minimum requires balance for interest to apply."
292
  msgstr ""
293
 
294
- #: ../addons/banking/services/mycred-bank-service-interest.php:298 ../addons/banking/services/mycred-bank-service-payouts.php:252 ../addons/buy-creds/myCRED-addon-buy-creds.php:368 ../addons/buy-creds/myCRED-addon-buy-creds.php:427 ../addons/coupons/myCRED-addon-coupons.php:440 ../addons/gateway/carts/mycred-marketpress.php:384 ../addons/gateway/carts/mycred-marketpress.php:417 ../addons/gateway/carts/mycred-woocommerce.php:98 ../addons/gateway/carts/mycred-woocommerce.php:164 ../addons/gateway/carts/mycred-wpecommerce.php:367 ../modules/mycred-module-hooks.php:520 ../modules/mycred-module-hooks.php:1389 ../modules/mycred-module-hooks.php:1729 ../plugins/mycred-hook-badgeOS.php:115 ../plugins/mycred-hook-badgeOS.php:117 ../plugins/mycred-hook-badgeOS.php:126 ../plugins/mycred-hook-events-manager-light.php:153 ../plugins/mycred-hook-events-manager-light.php:166 ../plugins/mycred-hook-gd-star-rating.php:109 ../plugins/mycred-hook-gd-star-rating.php:122 ../plugins/mycred-hook-wp-favorite-posts.php:135 ../plugins/mycred-hook-wp-favorite-posts.php:148 ../plugins/mycred-hook-wp-polls.php:136
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
295
  msgid "Log Template"
296
  msgstr ""
297
 
298
- #: ../addons/banking/services/mycred-bank-service-interest.php:305 ../addons/banking/services/mycred-bank-service-payouts.php:259
 
299
  msgid "Run Time"
300
  msgstr ""
301
 
302
- #: ../addons/banking/services/mycred-bank-service-interest.php:309 ../addons/banking/services/mycred-bank-service-payouts.php:263
 
303
  msgid ""
304
- "For large websites, if you are running into time out issues during payouts, you "
305
- "can set the number of seconds a process can run. Use zero for unlimited, but be "
306
- "careful especially if you are on a shared server."
307
  msgstr ""
308
 
309
  #: ../addons/banking/services/mycred-bank-service-payouts.php:21
@@ -318,7 +366,10 @@ msgstr ""
318
  msgid "Pay Users"
319
  msgstr ""
320
 
321
- #: ../addons/banking/services/mycred-bank-service-payouts.php:222 ../addons/buy-creds/myCRED-addon-buy-creds.php:653 ../addons/buy-creds/myCRED-addon-buy-creds.php:1156 ../addons/buy-creds/abstracts/mycred-abstract-payment-gateway.php:425 ../includes/mycred-admin.php:371 ../includes/mycred-admin.php:482
 
 
 
322
  msgid "Amount"
323
  msgstr ""
324
 
@@ -326,11 +377,14 @@ msgstr ""
326
  msgid "Can not be zero."
327
  msgstr ""
328
 
329
- #: ../addons/banking/services/mycred-bank-service-payouts.php:228 ../addons/banking/services/mycred-bank-service-payouts.php:241 ../modules/mycred-module-hooks.php:1744
 
 
330
  msgid "Interval"
331
  msgstr ""
332
 
333
- #: ../addons/banking/services/mycred-bank-service-payouts.php:233 ../addons/banking/services/mycred-bank-service-payouts.php:242
 
334
  msgid "Cycles"
335
  msgstr ""
336
 
@@ -345,14 +399,15 @@ msgstr ""
345
  #: ../addons/banking/services/mycred-bank-service-payouts.php:241
346
  msgid ""
347
  "Select how often you want to award %_plural%. Note that when this service is "
348
- "enabled, the first payout will be in the beginning of the next period. So with "
349
- "a \"Daily\" interval, the first payout will occur first thing in the morning."
 
350
  msgstr ""
351
 
352
  #: ../addons/banking/services/mycred-bank-service-payouts.php:242
353
  msgid ""
354
- "Cycles let you choose how many intervals this service should run. Each time a "
355
- "cycle runs, the value will decrease until it hits zero, in which case this "
356
  "service will deactivate itself. Use -1 to run unlimited times."
357
  msgstr ""
358
 
@@ -362,12 +417,13 @@ msgstr ""
362
 
363
  #: ../addons/banking/services/mycred-bank-service-payouts.php:243
364
  msgid ""
365
- "You can always stop payouts by deactivating this service. Just remember that if "
366
- "you deactivate while there are cycles left, this service will continue on when "
367
- "it gets re-activated. Set cycles to zero to reset."
368
  msgstr ""
369
 
370
- #: ../addons/banking/services/mycred-bank-service-payouts.php:245 ../includes/mycred-install.php:559 ../modules/mycred-module-settings.php:393
 
371
  msgid "Excludes"
372
  msgstr ""
373
 
@@ -377,244 +433,283 @@ msgid ""
377
  "allowed!"
378
  msgstr ""
379
 
380
- #: ../addons/buy-creds/myCRED-addon-buy-creds.php:55 ../addons/buy-creds/myCRED-addon-buy-creds.php:56 ../addons/buy-creds/myCRED-addon-buy-creds.php:57
 
381
  msgid "Payment Gateways"
382
  msgstr ""
383
 
384
- #: ../addons/buy-creds/myCRED-addon-buy-creds.php:188
385
  msgid "buyCRED Purchase Log"
386
  msgstr ""
387
 
388
- #: ../addons/buy-creds/myCRED-addon-buy-creds.php:189 ../addons/buy-creds/myCRED-addon-buy-creds.php:417 ../addons/buy-creds/myCRED-addon-buy-creds.php:484
 
389
  msgid "Purchase Log"
390
  msgstr ""
391
 
392
- #: ../addons/buy-creds/myCRED-addon-buy-creds.php:277 ../addons/gateway/event-booking/mycred-eventespresso3.php:26 ../addons/gateway/event-booking/mycred-eventsmanager-pro.php:475 ../addons/gateway/event-booking/mycred-eventsmanager.php:540 ../addons/sell-content/myCRED-addon-sell-content.php:361
 
 
 
393
  msgid "Payments"
394
  msgstr ""
395
 
396
- #: ../addons/buy-creds/myCRED-addon-buy-creds.php:307
397
  msgid "Please login to purchase %_plural%"
398
  msgstr ""
399
 
400
- #: ../addons/buy-creds/myCRED-addon-buy-creds.php:322
 
401
  msgid "Gift purchase from %display_name%."
402
  msgstr ""
403
 
404
- #: ../addons/buy-creds/myCRED-addon-buy-creds.php:340 ../addons/ranks/myCRED-addon-ranks.php:624
 
405
  msgid "Minimum %plural%"
406
  msgstr ""
407
 
408
- #: ../addons/buy-creds/myCRED-addon-buy-creds.php:344
409
  msgid "Minimum amount of %plural% a user must purchase. Will default to 1."
410
  msgstr ""
411
 
412
- #: ../addons/buy-creds/myCRED-addon-buy-creds.php:349 ../addons/coupons/myCRED-addon-coupons.php:315 ../addons/gateway/carts/mycred-marketpress.php:378 ../addons/gateway/carts/mycred-woocommerce.php:108 ../addons/gateway/carts/mycred-wpecommerce.php:350 ../addons/gateway/event-booking/mycred-eventespresso3.php:437 ../addons/gateway/event-booking/mycred-eventsmanager-pro.php:463 ../addons/gateway/event-booking/mycred-eventsmanager.php:550 ../addons/sell-content/myCRED-addon-sell-content.php:349 ../includes/mycred-widgets.php:204 ../includes/mycred-widgets.php:401 ../includes/importers/mycred-cubepoints.php:365
 
 
 
 
 
 
 
 
413
  msgid "Point Type"
414
  msgstr ""
415
 
416
- #: ../addons/buy-creds/myCRED-addon-buy-creds.php:361
417
  msgid "Login Template"
418
  msgstr ""
419
 
420
- #: ../addons/buy-creds/myCRED-addon-buy-creds.php:365
421
  msgid "Content to show when a user is not logged in."
422
  msgstr ""
423
 
424
- #: ../addons/buy-creds/myCRED-addon-buy-creds.php:375
425
  msgid "Thank You Page"
426
  msgstr ""
427
 
428
- #: ../addons/buy-creds/myCRED-addon-buy-creds.php:378 ../addons/buy-creds/myCRED-addon-buy-creds.php:399
 
429
  msgid "Custom URL"
430
  msgstr ""
431
 
432
- #: ../addons/buy-creds/myCRED-addon-buy-creds.php:383 ../addons/buy-creds/myCRED-addon-buy-creds.php:404
 
433
  msgid "Page"
434
  msgstr ""
435
 
436
- #: ../addons/buy-creds/myCRED-addon-buy-creds.php:396
437
  msgid "Cancellation Page"
438
  msgstr ""
439
 
440
- #: ../addons/buy-creds/myCRED-addon-buy-creds.php:419
441
  msgid "Show seperate log for %_plural% purchases."
442
  msgstr ""
443
 
444
- #: ../addons/buy-creds/myCRED-addon-buy-creds.php:421
445
  msgid "Gifting"
446
  msgstr ""
447
 
448
- #: ../addons/buy-creds/myCRED-addon-buy-creds.php:423
 
449
  msgid "Allow users to buy %_plural% for other users."
450
  msgstr ""
451
 
452
- #: ../addons/buy-creds/myCRED-addon-buy-creds.php:424
 
453
  msgid "Allow users to buy %_plural% for content authors."
454
  msgstr ""
455
 
456
- #: ../addons/buy-creds/myCRED-addon-buy-creds.php:484
 
457
  msgid "%s Payment Gateways"
458
  msgstr ""
459
 
460
- #: ../addons/buy-creds/myCRED-addon-buy-creds.php:484 ../addons/buy-creds/myCRED-addon-buy-creds.php:659
 
461
  msgid "buyCRED Settings"
462
  msgstr ""
463
 
464
- #: ../addons/buy-creds/myCRED-addon-buy-creds.php:490
465
  msgid "Select the payment gateways you want to offer your users to buy %plural%."
466
  msgstr ""
467
 
468
- #: ../addons/buy-creds/myCRED-addon-buy-creds.php:497
469
  msgid "Last Payment Notification"
470
  msgstr ""
471
 
472
- #: ../addons/buy-creds/myCRED-addon-buy-creds.php:499
473
  msgid ""
474
  "Here you can view the last payment confirmation that was sent to buyCRED for "
475
  "processing."
476
  msgstr ""
477
 
478
- #: ../addons/buy-creds/myCRED-addon-buy-creds.php:502
479
  msgid "Details"
480
  msgstr ""
481
 
482
- #: ../addons/buy-creds/myCRED-addon-buy-creds.php:505 ../modules/mycred-module-log.php:541
 
483
  msgid "Time"
484
  msgstr ""
485
 
486
- #: ../addons/buy-creds/myCRED-addon-buy-creds.php:509 ../addons/buy-creds/myCRED-addon-buy-creds.php:650 ../includes/mycred-overview.php:166 ../includes/mycred-overview.php:173 ../modules/mycred-module-addons.php:190
 
 
487
  msgid "Gateway"
488
  msgstr ""
489
 
490
- #: ../addons/buy-creds/myCRED-addon-buy-creds.php:513 ../addons/buy-creds/myCRED-addon-buy-creds.php:655
 
491
  msgid "Transaction ID"
492
  msgstr ""
493
 
494
- #: ../addons/buy-creds/myCRED-addon-buy-creds.php:517
495
  msgid "Outcome"
496
  msgstr ""
497
 
498
- #: ../addons/buy-creds/myCRED-addon-buy-creds.php:521
499
  msgid "Gateway Log"
500
  msgstr ""
501
 
502
- #: ../addons/buy-creds/myCRED-addon-buy-creds.php:529
503
  msgid "No recorded calls found."
504
  msgstr ""
505
 
506
- #: ../addons/buy-creds/myCRED-addon-buy-creds.php:542
507
  msgid "Test Mode"
508
  msgstr ""
509
 
510
- #: ../addons/buy-creds/myCRED-addon-buy-creds.php:544
511
  msgid "Enabled"
512
  msgstr ""
513
 
514
- #: ../addons/buy-creds/myCRED-addon-buy-creds.php:547
515
  msgid "Disabled"
516
  msgstr ""
517
 
518
- #: ../addons/buy-creds/myCRED-addon-buy-creds.php:557
519
  msgid "Sandbox Mode"
520
  msgstr ""
521
 
522
- #: ../addons/buy-creds/myCRED-addon-buy-creds.php:560
523
  msgid "Enable for test purchases."
524
  msgstr ""
525
 
526
- #: ../addons/buy-creds/myCRED-addon-buy-creds.php:577
527
  msgid "Update Gateway Settings"
528
  msgstr ""
529
 
530
- #: ../addons/buy-creds/myCRED-addon-buy-creds.php:651 ../addons/email-notices/myCRED-addon-email-notices.php:643 ../addons/email-notices/myCRED-addon-email-notices.php:772 ../includes/mycred-admin.php:477 ../includes/mycred-log.php:639 ../modules/mycred-module-log.php:540
 
 
 
531
  msgid "User"
532
  msgstr ""
533
 
534
- #: ../addons/buy-creds/myCRED-addon-buy-creds.php:652 ../includes/mycred-log.php:640
 
535
  msgid "Date"
536
  msgstr ""
537
 
538
- #: ../addons/buy-creds/myCRED-addon-buy-creds.php:654
539
  msgid "Payed"
540
  msgstr ""
541
 
542
- #: ../addons/buy-creds/myCRED-addon-buy-creds.php:659
543
  msgid "<strong>buy</strong>CRED Purchase Log"
544
  msgstr ""
545
 
546
- #: ../addons/buy-creds/myCRED-addon-buy-creds.php:659 ../addons/gateway/event-booking/mycred-eventespresso3.php:367
 
547
  msgid "Gateway Settings"
548
  msgstr ""
549
 
550
- #: ../addons/buy-creds/myCRED-addon-buy-creds.php:663
551
  msgid ""
552
  "Only completed purchases are shown here. Purchases that were cancelled or "
553
  "failed are not logged."
554
  msgstr ""
555
 
556
- #: ../addons/buy-creds/myCRED-addon-buy-creds.php:772 ../includes/mycred-log.php:743 ../modules/mycred-module-log.php:462
 
557
  msgid "User Missing"
558
  msgstr ""
559
 
560
- #: ../addons/buy-creds/myCRED-addon-buy-creds.php:835 ../addons/sell-content/myCRED-addon-sell-content.php:1112
 
561
  msgid "No purchases found"
562
  msgstr ""
563
 
564
- #: ../addons/buy-creds/myCRED-addon-buy-creds.php:907 ../addons/buy-creds/myCRED-addon-buy-creds.php:1004
 
565
  msgid "This Add-on needs to setup before you can use this shortcode."
566
  msgstr ""
567
 
568
- #: ../addons/buy-creds/myCRED-addon-buy-creds.php:925 ../addons/buy-creds/myCRED-addon-buy-creds.php:1022
 
569
  msgid "No gateways installed."
570
  msgstr ""
571
 
572
- #: ../addons/buy-creds/myCRED-addon-buy-creds.php:926 ../addons/buy-creds/myCRED-addon-buy-creds.php:1023
 
573
  msgid "Gateway does not exist."
574
  msgstr ""
575
 
576
- #: ../addons/buy-creds/myCRED-addon-buy-creds.php:962
577
  msgid "Yourself"
578
  msgstr ""
579
 
580
- #: ../addons/buy-creds/myCRED-addon-buy-creds.php:1024
581
  msgid "No active gateways found."
582
  msgstr ""
583
 
584
- #: ../addons/buy-creds/myCRED-addon-buy-creds.php:1025
585
  msgid "The selected gateway is not active."
586
  msgstr ""
587
 
588
- #: ../addons/buy-creds/myCRED-addon-buy-creds.php:1061
 
589
  msgid "Buy with %gateway%"
590
  msgstr ""
591
 
592
- #: ../addons/buy-creds/myCRED-addon-buy-creds.php:1067 ../addons/sell-content/myCRED-addon-sell-content.php:44
 
593
  msgid "Buy Now"
594
  msgstr ""
595
 
596
- #: ../addons/buy-creds/myCRED-addon-buy-creds.php:1107
597
  msgid "No users found"
598
  msgstr ""
599
 
600
- #: ../addons/buy-creds/myCRED-addon-buy-creds.php:1117
601
  msgid "To"
602
  msgstr ""
603
 
604
- #: ../addons/buy-creds/myCRED-addon-buy-creds.php:1134
605
  msgid "Select Amount"
606
  msgstr ""
607
 
608
- #: ../addons/buy-creds/myCRED-addon-buy-creds.php:1158
609
  msgid "min."
610
  msgstr ""
611
 
612
- #: ../addons/buy-creds/myCRED-addon-buy-creds.php:1166
613
  msgid "Select Gateway"
614
  msgstr ""
615
 
616
  #: ../addons/buy-creds/abstracts/mycred-abstract-payment-gateway.php:89
617
- msgid "function myCRED_Payment_Gateway::process() must be over-ridden in a sub-class."
 
 
618
  msgstr ""
619
 
620
  #: ../addons/buy-creds/abstracts/mycred-abstract-payment-gateway.php:98
@@ -630,6 +725,7 @@ msgid "Incoming confirmation call detected"
630
  msgstr ""
631
 
632
  #: ../addons/buy-creds/abstracts/mycred-abstract-payment-gateway.php:213
 
633
  msgid "Gateway identified itself as \"%s\""
634
  msgstr ""
635
 
@@ -641,7 +737,8 @@ msgstr ""
641
  msgid "Test Payment"
642
  msgstr ""
643
 
644
- #: ../addons/buy-creds/abstracts/mycred-abstract-payment-gateway.php:264 ../addons/gateway/carts/mycred-marketpress.php:179
 
645
  msgid "Payment"
646
  msgstr ""
647
 
@@ -649,11 +746,13 @@ msgstr ""
649
  msgid "Cancel purchase"
650
  msgstr ""
651
 
652
- #: ../addons/buy-creds/abstracts/mycred-abstract-payment-gateway.php:360 ../includes/mycred-admin.php:364 ../includes/mycred-admin.php:470
 
653
  msgid "required"
654
  msgstr ""
655
 
656
- #: ../addons/buy-creds/abstracts/mycred-abstract-payment-gateway.php:361 ../includes/mycred-admin.php:366 ../includes/mycred-admin.php:472
 
657
  msgid "optional"
658
  msgstr ""
659
 
@@ -694,10 +793,12 @@ msgid "Choose Country"
694
  msgstr ""
695
 
696
  #: ../addons/buy-creds/abstracts/mycred-abstract-payment-gateway.php:419
 
697
  msgid "%s Purchase"
698
  msgstr ""
699
 
700
- #: ../addons/buy-creds/abstracts/mycred-abstract-payment-gateway.php:424 ../addons/gateway/carts/mycred-wpecommerce.php:112
 
701
  msgid "Item"
702
  msgstr ""
703
 
@@ -711,10 +812,10 @@ msgstr ""
711
 
712
  #: ../addons/buy-creds/abstracts/mycred-abstract-payment-gateway.php:448
713
  msgid ""
714
- "Here you can see information that are collected and sent to this gateway. Debug "
715
- "information is only visible for administrators and are intended for "
716
- "troubleshooting / testing of this gateway. Please disable \"Sandbox Mode\" when "
717
- "you want to take this gateway online."
718
  msgstr ""
719
 
720
  #: ../addons/buy-creds/abstracts/mycred-abstract-payment-gateway.php:452
@@ -738,10 +839,12 @@ msgid "Gateway Response"
738
  msgstr ""
739
 
740
  #: ../addons/buy-creds/abstracts/mycred-abstract-payment-gateway.php:513
 
741
  msgid "Continue to %s"
742
  msgstr ""
743
 
744
- #: ../addons/buy-creds/abstracts/mycred-abstract-payment-gateway.php:514 ../addons/buy-creds/gateways/bitpay.php:240
 
745
  msgid "Click here if you are not automatically redirected"
746
  msgstr ""
747
 
@@ -777,47 +880,78 @@ msgstr ""
777
  msgid "Duplicate transaction"
778
  msgstr ""
779
 
780
- #: ../addons/buy-creds/gateways/bitpay.php:25 ../addons/buy-creds/gateways/netbilling.php:30 ../addons/buy-creds/gateways/paypal-standard.php:25 ../addons/buy-creds/gateways/skrill.php:30
 
 
781
  msgid "Purchase of myCRED %plural%"
782
  msgstr ""
783
 
784
- #: ../addons/buy-creds/gateways/bitpay.php:68 ../addons/buy-creds/gateways/netbilling.php:102 ../addons/buy-creds/gateways/paypal-standard.php:162 ../addons/buy-creds/gateways/skrill.php:134
 
 
785
  msgid "Sales Data is Valid"
786
  msgstr ""
787
 
788
- #: ../addons/buy-creds/gateways/bitpay.php:72 ../addons/buy-creds/gateways/netbilling.php:106 ../addons/buy-creds/gateways/paypal-standard.php:166 ../addons/buy-creds/gateways/skrill.php:138
 
 
789
  msgid "Failed to validate sale"
790
  msgstr ""
791
 
792
- #: ../addons/buy-creds/gateways/bitpay.php:78 ../addons/buy-creds/gateways/netbilling.php:112 ../addons/buy-creds/gateways/paypal-standard.php:172 ../addons/buy-creds/gateways/skrill.php:144 ../addons/buy-creds/gateways/zombaio.php:166
 
 
 
793
  msgid "Failed to verify caller"
794
  msgstr ""
795
 
796
- #: ../addons/buy-creds/gateways/bitpay.php:86 ../addons/buy-creds/gateways/netbilling.php:120 ../addons/buy-creds/gateways/paypal-standard.php:180 ../addons/buy-creds/gateways/skrill.php:152 ../addons/buy-creds/gateways/zombaio.php:171
 
 
 
 
797
  msgid "Attempting to credit %s to users account"
798
  msgstr ""
799
 
800
- #: ../addons/buy-creds/gateways/bitpay.php:97 ../addons/buy-creds/gateways/netbilling.php:132 ../addons/buy-creds/gateways/paypal-standard.php:193 ../addons/buy-creds/gateways/skrill.php:164 ../addons/buy-creds/gateways/zombaio.php:207
 
 
 
 
801
  msgid "%s was successfully credited to users account"
802
  msgstr ""
803
 
804
- #: ../addons/buy-creds/gateways/bitpay.php:104 ../addons/buy-creds/gateways/netbilling.php:139 ../addons/buy-creds/gateways/paypal-standard.php:200 ../addons/buy-creds/gateways/skrill.php:171 ../addons/buy-creds/gateways/zombaio.php:214
 
 
 
805
  msgid "Failed to credit the users account"
806
  msgstr ""
807
 
808
- #: ../addons/buy-creds/gateways/bitpay.php:107 ../addons/buy-creds/gateways/netbilling.php:142 ../addons/buy-creds/gateways/paypal-standard.php:203 ../addons/buy-creds/gateways/skrill.php:174
 
 
809
  msgid "Purchase not paid"
810
  msgstr ""
811
 
812
- #: ../addons/buy-creds/gateways/bitpay.php:111 ../addons/buy-creds/gateways/netbilling.php:146 ../addons/buy-creds/gateways/paypal-standard.php:207 ../addons/buy-creds/gateways/skrill.php:178 ../addons/buy-creds/gateways/zombaio.php:218
 
 
 
813
  msgid "Hanging up on caller"
814
  msgstr ""
815
 
816
- #: ../addons/buy-creds/gateways/bitpay.php:175 ../addons/buy-creds/gateways/netbilling.php:173 ../addons/buy-creds/gateways/paypal-standard.php:237 ../addons/buy-creds/gateways/skrill.php:208 ../addons/buy-creds/gateways/zombaio.php:241
 
 
 
817
  msgid "Please setup this gateway before attempting to make a purchase!"
818
  msgstr ""
819
 
820
- #: ../addons/buy-creds/gateways/bitpay.php:226 ../addons/buy-creds/gateways/bitpay.php:235 ../addons/buy-creds/gateways/netbilling.php:224 ../addons/buy-creds/gateways/paypal-standard.php:295 ../addons/buy-creds/gateways/skrill.php:301 ../addons/buy-creds/gateways/zombaio.php:271
 
 
 
821
  msgid "Processing payment &hellip;"
822
  msgstr ""
823
 
@@ -839,7 +973,9 @@ msgstr ""
839
  msgid "API Key"
840
  msgstr ""
841
 
842
- #: ../addons/buy-creds/gateways/bitpay.php:269 ../addons/buy-creds/gateways/paypal-standard.php:312 ../addons/buy-creds/gateways/skrill.php:319
 
 
843
  msgid "Currency"
844
  msgstr ""
845
 
@@ -847,19 +983,28 @@ msgstr ""
847
  msgid "Currency Code"
848
  msgstr ""
849
 
850
- #: ../addons/buy-creds/gateways/bitpay.php:276 ../addons/buy-creds/gateways/netbilling.php:260 ../addons/buy-creds/gateways/paypal-standard.php:326 ../addons/buy-creds/gateways/skrill.php:339
 
 
851
  msgid "Item Name"
852
  msgstr ""
853
 
854
- #: ../addons/buy-creds/gateways/bitpay.php:280 ../addons/buy-creds/gateways/netbilling.php:264 ../addons/buy-creds/gateways/paypal-standard.php:330 ../addons/buy-creds/gateways/skrill.php:343
 
 
855
  msgid "Description of the item being purchased by the user."
856
  msgstr ""
857
 
858
- #: ../addons/buy-creds/gateways/bitpay.php:283 ../addons/buy-creds/gateways/netbilling.php:267 ../addons/buy-creds/gateways/paypal-standard.php:333 ../addons/buy-creds/gateways/skrill.php:346
 
 
 
859
  msgid "%plural% Exchange Rate"
860
  msgstr ""
861
 
862
- #: ../addons/buy-creds/gateways/bitpay.php:286 ../addons/buy-creds/gateways/paypal-standard.php:336 ../addons/buy-creds/gateways/skrill.php:349
 
 
863
  msgid "Select currency"
864
  msgstr ""
865
 
@@ -883,19 +1028,24 @@ msgstr ""
883
  msgid "Full Notifications"
884
  msgstr ""
885
 
886
- #: ../addons/buy-creds/gateways/bitpay.php:318 ../includes/mycred-network.php:196 ../includes/mycred-network.php:210
 
887
  msgid "No"
888
  msgstr ""
889
 
890
- #: ../addons/buy-creds/gateways/bitpay.php:319 ../includes/mycred-network.php:192 ../includes/mycred-network.php:206
 
891
  msgid "Yes"
892
  msgstr ""
893
 
894
- #: ../addons/buy-creds/gateways/netbilling.php:57 ../addons/buy-creds/gateways/skrill.php:89 ../addons/buy-creds/gateways/zombaio.php:103
 
895
  msgid "Invalid Call"
896
  msgstr ""
897
 
898
- #: ../addons/buy-creds/gateways/netbilling.php:59 ../addons/buy-creds/gateways/skrill.php:91 ../addons/buy-creds/gateways/zombaio.php:105
 
 
899
  msgid "Caller verified as \"%s\""
900
  msgstr ""
901
 
@@ -922,8 +1072,8 @@ msgstr ""
922
  #: ../addons/buy-creds/gateways/netbilling.php:277
923
  msgid ""
924
  "For this gateway to work, you must login to your NETbilling account and edit "
925
- "your site. Under \"Default payment form settings\" make sure the Postback CGI URL "
926
- "is set to the above address and \"Return method\" is set to POST."
927
  msgstr ""
928
 
929
  #: ../addons/buy-creds/gateways/netbilling.php:312
@@ -955,10 +1105,12 @@ msgid "Connection established"
955
  msgstr ""
956
 
957
  #: ../addons/buy-creds/gateways/paypal-standard.php:92
 
958
  msgid "Attempt: %d failed. Error: %s : %s"
959
  msgstr ""
960
 
961
  #: ../addons/buy-creds/gateways/paypal-standard.php:103
 
962
  msgid "Secondary systems failing. Final note: %s : %s"
963
  msgstr ""
964
 
@@ -970,19 +1122,24 @@ msgstr ""
970
  msgid "Call rejected"
971
  msgstr ""
972
 
973
- #: ../addons/buy-creds/gateways/paypal-standard.php:223 ../addons/buy-creds/gateways/skrill.php:194
 
974
  msgid "Success"
975
  msgstr ""
976
 
977
- #: ../addons/buy-creds/gateways/paypal-standard.php:224 ../addons/buy-creds/gateways/skrill.php:195
 
978
  msgid "Thank you for your purchase"
979
  msgstr ""
980
 
981
- #: ../addons/buy-creds/gateways/paypal-standard.php:290 ../addons/buy-creds/gateways/skrill.php:247
 
982
  msgid "Return to "
983
  msgstr ""
984
 
985
- #: ../addons/buy-creds/gateways/paypal-standard.php:317 ../addons/buy-creds/gateways/skrill.php:376 ../addons/gateway/event-booking/mycred-eventespresso3.php:455
 
 
986
  msgid "Important!"
987
  msgstr ""
988
 
@@ -1004,9 +1161,9 @@ msgstr ""
1004
  #: ../addons/buy-creds/gateways/paypal-standard.php:343
1005
  msgid ""
1006
  "For this gateway to work, you must login to your PayPal account and under "
1007
- "\"Profile\" > \"Selling Tools\" enable \"Instant Payment Notifications\". Make sure "
1008
- "the \"Notification URL\" is set to the above address and that you have selected "
1009
- "\"Receive IPN messages (Enabled)\"."
1010
  msgstr ""
1011
 
1012
  #: ../addons/buy-creds/gateways/skrill.php:284
@@ -1045,7 +1202,11 @@ msgstr ""
1045
  msgid "Checkout Page"
1046
  msgstr ""
1047
 
1048
- #: ../addons/buy-creds/gateways/skrill.php:361 ../addons/gateway/carts/mycred-woocommerce.php:86 ../addons/ranks/myCRED-addon-ranks.php:767 ../addons/transfer/myCRED-addon-transfer.php:637 ../includes/mycred-widgets.php:197 ../includes/mycred-widgets.php:395 ../includes/mycred-widgets.php:587 ../modules/mycred-module-hooks.php:2302
 
 
 
 
1049
  msgid "Title"
1050
  msgstr ""
1051
 
@@ -1053,15 +1214,16 @@ msgstr ""
1053
  msgid "If left empty, your account email is used as title on the Skill Payment Page."
1054
  msgstr ""
1055
 
1056
- #: ../addons/buy-creds/gateways/skrill.php:366 ../addons/buy-creds/gateways/zombaio.php:306
 
1057
  msgid "Logo URL"
1058
  msgstr ""
1059
 
1060
  #: ../addons/buy-creds/gateways/skrill.php:368
1061
  msgid ""
1062
  "The URL to the image you want to use on the top of the gateway. For best "
1063
- "integration results we recommend you use logos with dimensions up to 200px in "
1064
- "width and 50px in height."
1065
  msgstr ""
1066
 
1067
  #: ../addons/buy-creds/gateways/skrill.php:371
@@ -1070,22 +1232,22 @@ msgstr ""
1070
 
1071
  #: ../addons/buy-creds/gateways/skrill.php:373
1072
  msgid ""
1073
- "Optional text to show user once a transaction has been successfully completed. "
1074
- "This text is shown by Skrill."
1075
  msgstr ""
1076
 
1077
  #: ../addons/buy-creds/gateways/skrill.php:377
1078
  msgid ""
1079
- "By default all Skrill Merchant account accept payments via Bank Transfers. When "
1080
- "a user selects this option, no %_plural% are awarded! You will need to manually "
1081
- "award these once the bank transfer is completed."
1082
  msgstr ""
1083
 
1084
  #: ../addons/buy-creds/gateways/skrill.php:378
1085
  msgid ""
1086
  "By default purchases made using Skrill will result in users having to signup "
1087
- "for a Skrill account (if they do not have one already). You can contact Skrill "
1088
- "Merchant Services and request to disable this feature."
1089
  msgstr ""
1090
 
1091
  #: ../addons/buy-creds/gateways/zombaio.php:154
@@ -1130,11 +1292,15 @@ msgid ""
1130
  "address and click validate."
1131
  msgstr ""
1132
 
1133
- #: ../addons/coupons/myCRED-addon-coupons.php:86 ../addons/coupons/myCRED-addon-coupons.php:92 ../addons/coupons/myCRED-addon-coupons.php:438 ../includes/mycred-overview.php:188 ../includes/mycred-overview.php:195 ../modules/mycred-module-addons.php:168
 
 
 
1134
  msgid "Coupons"
1135
  msgstr ""
1136
 
1137
- #: ../addons/coupons/myCRED-addon-coupons.php:87 ../addons/coupons/includes/mycred-coupon-shortcodes.php:69
 
1138
  msgid "Coupon"
1139
  msgstr ""
1140
 
@@ -1166,11 +1332,16 @@ msgstr ""
1166
  msgid "No coupons found in Trash"
1167
  msgstr ""
1168
 
1169
- #: ../addons/coupons/myCRED-addon-coupons.php:98 ../addons/email-notices/myCRED-addon-email-notices.php:148 ../addons/email-notices/myCRED-addon-email-notices.php:154 ../addons/email-notices/myCRED-addon-email-notices.php:160 ../addons/email-notices/myCRED-addon-email-notices.php:258 ../modules/mycred-module-addons.php:179
 
 
 
 
1170
  msgid "Email Notices"
1171
  msgstr ""
1172
 
1173
- #: ../addons/coupons/myCRED-addon-coupons.php:119 ../addons/coupons/myCRED-addon-coupons.php:122
 
1174
  msgid "Coupon updated."
1175
  msgstr ""
1176
 
@@ -1194,7 +1365,8 @@ msgstr ""
1194
  msgid "Coupon Code"
1195
  msgstr ""
1196
 
1197
- #: ../addons/coupons/myCRED-addon-coupons.php:157 ../addons/coupons/myCRED-addon-coupons.php:309
 
1198
  msgid "Value"
1199
  msgstr ""
1200
 
@@ -1202,7 +1374,9 @@ msgstr ""
1202
  msgid "Usage"
1203
  msgstr ""
1204
 
1205
- #: ../addons/coupons/myCRED-addon-coupons.php:159 ../addons/transfer/myCRED-addon-transfer.php:243 ../modules/mycred-module-hooks.php:1106 ../modules/mycred-module-hooks.php:1396
 
 
1206
  msgid "Limits"
1207
  msgstr ""
1208
 
@@ -1214,7 +1388,8 @@ msgstr ""
1214
  msgid "not yet used"
1215
  msgstr ""
1216
 
1217
- #: ../addons/coupons/myCRED-addon-coupons.php:198 ../modules/mycred-module-hooks.php:1834
 
1218
  msgid "Total"
1219
  msgstr ""
1220
 
@@ -1231,6 +1406,7 @@ msgid "Expired"
1231
  msgstr ""
1232
 
1233
  #: ../addons/coupons/myCRED-addon-coupons.php:213
 
1234
  msgid "In %s time"
1235
  msgstr ""
1236
 
@@ -1268,8 +1444,8 @@ msgstr ""
1268
 
1269
  #: ../addons/coupons/myCRED-addon-coupons.php:356
1270
  msgid ""
1271
- "The maximum number of times this coupon can be used. Note that the coupon will "
1272
- "be automatically trashed once this maximum is reached!"
1273
  msgstr ""
1274
 
1275
  #: ../addons/coupons/myCRED-addon-coupons.php:360
@@ -1282,8 +1458,8 @@ msgstr ""
1282
 
1283
  #: ../addons/coupons/myCRED-addon-coupons.php:395
1284
  msgid ""
1285
- "Optional minimum balance a user must have in order to use this coupon. Use zero "
1286
- "to disable."
1287
  msgstr ""
1288
 
1289
  #: ../addons/coupons/myCRED-addon-coupons.php:399
@@ -1292,11 +1468,12 @@ msgstr ""
1292
 
1293
  #: ../addons/coupons/myCRED-addon-coupons.php:402
1294
  msgid ""
1295
- "Optional maximum balance a user can have in order to use this coupon. Use zero "
1296
- "to disable."
1297
  msgstr ""
1298
 
1299
  #: ../addons/coupons/myCRED-addon-coupons.php:444
 
1300
  msgid ""
1301
  "Log entry for successful coupon redemption. Use %coupon% to show the coupon "
1302
  "code."
@@ -1332,8 +1509,8 @@ msgstr ""
1332
 
1333
  #: ../addons/coupons/myCRED-addon-coupons.php:472
1334
  msgid ""
1335
- "Message to show when a user does not meet the minimum balance requirement. (if "
1336
- "used)"
1337
  msgstr ""
1338
 
1339
  #: ../addons/coupons/myCRED-addon-coupons.php:475
@@ -1342,8 +1519,8 @@ msgstr ""
1342
 
1343
  #: ../addons/coupons/myCRED-addon-coupons.php:479
1344
  msgid ""
1345
- "Message to show when a user does not meet the maximum balance requirement. (if "
1346
- "used)"
1347
  msgstr ""
1348
 
1349
  #: ../addons/coupons/myCRED-addon-coupons.php:482
@@ -1362,329 +1539,422 @@ msgstr ""
1362
  msgid "Apply Coupon"
1363
  msgstr ""
1364
 
1365
- #: ../addons/email-notices/myCRED-addon-email-notices.php:149
 
1366
  msgid "Email Notice"
1367
  msgstr ""
1368
 
1369
- #: ../addons/email-notices/myCRED-addon-email-notices.php:150 ../addons/ranks/myCRED-addon-ranks.php:248
 
1370
  msgid "Add New"
1371
  msgstr ""
1372
 
1373
- #: ../addons/email-notices/myCRED-addon-email-notices.php:151
1374
  msgid "Add New Notice"
1375
  msgstr ""
1376
 
1377
- #: ../addons/email-notices/myCRED-addon-email-notices.php:152
1378
  msgid "Edit Notice"
1379
  msgstr ""
1380
 
1381
- #: ../addons/email-notices/myCRED-addon-email-notices.php:153
1382
  msgid "New Notice"
1383
  msgstr ""
1384
 
1385
- #: ../addons/email-notices/myCRED-addon-email-notices.php:155
1386
  msgid "View Notice"
1387
  msgstr ""
1388
 
1389
- #: ../addons/email-notices/myCRED-addon-email-notices.php:156
1390
  msgid "Search Email Notices"
1391
  msgstr ""
1392
 
1393
- #: ../addons/email-notices/myCRED-addon-email-notices.php:157
1394
  msgid "No email notices found"
1395
  msgstr ""
1396
 
1397
- #: ../addons/email-notices/myCRED-addon-email-notices.php:158
1398
  msgid "No email notices found in Trash"
1399
  msgstr ""
1400
 
1401
- #: ../addons/email-notices/myCRED-addon-email-notices.php:181 ../addons/gateway/carts/mycred-wpecommerce.php:337 ../includes/mycred-functions.php:589
 
 
1402
  msgid "General"
1403
  msgstr ""
1404
 
1405
- #: ../addons/email-notices/myCRED-addon-email-notices.php:182
1406
  msgid "users balance changes"
1407
  msgstr ""
1408
 
1409
- #: ../addons/email-notices/myCRED-addon-email-notices.php:183
1410
  msgid "user gains %_plural%"
1411
  msgstr ""
1412
 
1413
- #: ../addons/email-notices/myCRED-addon-email-notices.php:184
1414
  msgid "user lose %_plural%"
1415
  msgstr ""
1416
 
1417
- #: ../addons/email-notices/myCRED-addon-email-notices.php:185
1418
  msgid "users balance reaches zero"
1419
  msgstr ""
1420
 
1421
- #: ../addons/email-notices/myCRED-addon-email-notices.php:186
1422
  msgid "users balance goes minus"
1423
  msgstr ""
1424
 
1425
- #: ../addons/email-notices/myCRED-addon-email-notices.php:192
1426
  msgid "Sell Content Add-on"
1427
  msgstr ""
1428
 
1429
- #: ../addons/email-notices/myCRED-addon-email-notices.php:193
1430
  msgid "user buys content"
1431
  msgstr ""
1432
 
1433
- #: ../addons/email-notices/myCRED-addon-email-notices.php:194
1434
  msgid "authors content gets sold"
1435
  msgstr ""
1436
 
1437
- #: ../addons/email-notices/myCRED-addon-email-notices.php:201
1438
  msgid "buyCREDs Add-on"
1439
  msgstr ""
1440
 
1441
- #: ../addons/email-notices/myCRED-addon-email-notices.php:202
1442
  msgid "user buys %_plural%"
1443
  msgstr ""
1444
 
1445
- #: ../addons/email-notices/myCRED-addon-email-notices.php:209
1446
  msgid "Transfer Add-on"
1447
  msgstr ""
1448
 
1449
- #: ../addons/email-notices/myCRED-addon-email-notices.php:210
1450
  msgid "user sends %_plural%"
1451
  msgstr ""
1452
 
1453
- #: ../addons/email-notices/myCRED-addon-email-notices.php:211
1454
  msgid "user receives %_plural%"
1455
  msgstr ""
1456
 
1457
- #: ../addons/email-notices/myCRED-addon-email-notices.php:218
1458
  msgid "Ranks Add-on"
1459
  msgstr ""
1460
 
1461
- #: ../addons/email-notices/myCRED-addon-email-notices.php:219
1462
  msgid "user is demoted"
1463
  msgstr ""
1464
 
1465
- #: ../addons/email-notices/myCRED-addon-email-notices.php:220
1466
  msgid "user is promoted"
1467
  msgstr ""
1468
 
1469
- #: ../addons/email-notices/myCRED-addon-email-notices.php:260
1470
  msgid ""
1471
  "Settings that apply to all email notices and can not be overridden for "
1472
  "individual emails."
1473
  msgstr ""
1474
 
1475
- #: ../addons/email-notices/myCRED-addon-email-notices.php:261
1476
  msgid "Email Format"
1477
  msgstr ""
1478
 
1479
- #: ../addons/email-notices/myCRED-addon-email-notices.php:265
1480
  msgid "Plain text emails only."
1481
  msgstr ""
1482
 
1483
- #: ../addons/email-notices/myCRED-addon-email-notices.php:269
1484
  msgid "HTML or Plain text emails."
1485
  msgstr ""
1486
 
1487
- #: ../addons/email-notices/myCRED-addon-email-notices.php:272
1488
  msgid "Filters"
1489
  msgstr ""
1490
 
1491
- #: ../addons/email-notices/myCRED-addon-email-notices.php:276
1492
  msgid ""
1493
- "Allow WordPress and Third Party Plugins to filter the email subject before an "
1494
- "email is sent."
1495
  msgstr ""
1496
 
1497
- #: ../addons/email-notices/myCRED-addon-email-notices.php:280
1498
  msgid ""
1499
- "Allow WordPress and Third Party Plugins to filter the email content before an "
1500
- "email is sent."
 
 
 
 
 
 
 
 
 
 
 
 
 
1501
  msgstr ""
1502
 
1503
- #: ../addons/email-notices/myCRED-addon-email-notices.php:283
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1504
  msgid ""
1505
  "Default email settings. These settings can be individually overridden when "
1506
  "editing emails."
1507
  msgstr ""
1508
 
1509
- #: ../addons/email-notices/myCRED-addon-email-notices.php:284 ../addons/email-notices/myCRED-addon-email-notices.php:659
 
1510
  msgid "Email Settings"
1511
  msgstr ""
1512
 
1513
- #: ../addons/email-notices/myCRED-addon-email-notices.php:287 ../addons/email-notices/myCRED-addon-email-notices.php:778
 
1514
  msgid "Senders Name:"
1515
  msgstr ""
1516
 
1517
- #: ../addons/email-notices/myCRED-addon-email-notices.php:291 ../addons/email-notices/myCRED-addon-email-notices.php:780
 
1518
  msgid "Senders Email:"
1519
  msgstr ""
1520
 
1521
- #: ../addons/email-notices/myCRED-addon-email-notices.php:295
1522
  msgid "Reply-To:"
1523
  msgstr ""
1524
 
1525
- #: ../addons/email-notices/myCRED-addon-email-notices.php:299
1526
  msgid "Default Email Content"
1527
  msgstr ""
1528
 
1529
- #: ../addons/email-notices/myCRED-addon-email-notices.php:303
1530
  msgid "Default email content."
1531
  msgstr ""
1532
 
1533
- #: ../addons/email-notices/myCRED-addon-email-notices.php:306
1534
  msgid "Default Email Styling"
1535
  msgstr ""
1536
 
1537
- #: ../addons/email-notices/myCRED-addon-email-notices.php:310
1538
  msgid "Ignored if HTML is not allowed in emails."
1539
  msgstr ""
1540
 
1541
- #: ../addons/email-notices/myCRED-addon-email-notices.php:593 ../addons/email-notices/myCRED-addon-email-notices.php:708
 
1542
  msgid "Email Subject"
1543
  msgstr ""
1544
 
1545
- #: ../addons/email-notices/myCRED-addon-email-notices.php:594
1546
  msgid "Status"
1547
  msgstr ""
1548
 
1549
- #: ../addons/email-notices/myCRED-addon-email-notices.php:614
1550
  msgid "Not Active"
1551
  msgstr ""
1552
 
1553
- #: ../addons/email-notices/myCRED-addon-email-notices.php:616
 
1554
  msgid "Scheduled:<br /><strong>%1$s</strong>"
1555
  msgstr ""
1556
 
1557
- #: ../addons/email-notices/myCRED-addon-email-notices.php:620
1558
  msgid "Active"
1559
  msgstr ""
1560
 
1561
- #: ../addons/email-notices/myCRED-addon-email-notices.php:622
 
1562
  msgid "Active - Last run:<br /><strong>%1$s</strong>"
1563
  msgstr ""
1564
 
1565
- #: ../addons/email-notices/myCRED-addon-email-notices.php:632
1566
  msgid "Email is sent when"
1567
  msgstr ""
1568
 
1569
- #: ../addons/email-notices/myCRED-addon-email-notices.php:634
1570
  msgid "Missing instance for this notice!"
1571
  msgstr ""
1572
 
1573
- #: ../addons/email-notices/myCRED-addon-email-notices.php:643 ../addons/email-notices/myCRED-addon-email-notices.php:645 ../addons/email-notices/myCRED-addon-email-notices.php:647
 
 
1574
  msgid "Sent To"
1575
  msgstr ""
1576
 
1577
- #: ../addons/email-notices/myCRED-addon-email-notices.php:645 ../addons/email-notices/myCRED-addon-email-notices.php:773
 
1578
  msgid "Administrator"
1579
  msgstr ""
1580
 
1581
- #: ../addons/email-notices/myCRED-addon-email-notices.php:647
1582
  msgid "Both Administrator and User"
1583
  msgstr ""
1584
 
1585
- #: ../addons/email-notices/myCRED-addon-email-notices.php:668
1586
  msgid "Available Template Tags"
1587
  msgstr ""
1588
 
1589
- #: ../addons/email-notices/myCRED-addon-email-notices.php:679
1590
  msgid "Email Header"
1591
  msgstr ""
1592
 
1593
- #: ../addons/email-notices/myCRED-addon-email-notices.php:739
1594
  msgid "Send this email notice when..."
1595
  msgstr ""
1596
 
1597
- #: ../addons/email-notices/myCRED-addon-email-notices.php:770
1598
  msgid "Recipient:"
1599
  msgstr ""
1600
 
1601
- #: ../addons/email-notices/myCRED-addon-email-notices.php:774
1602
  msgid "Both"
1603
  msgstr ""
1604
 
1605
- #: ../addons/email-notices/myCRED-addon-email-notices.php:782
 
 
 
 
 
 
 
1606
  msgid "Reply-To Email:"
1607
  msgstr ""
1608
 
1609
- #: ../addons/email-notices/myCRED-addon-email-notices.php:788
1610
  msgid "Save"
1611
  msgstr ""
1612
 
1613
- #: ../addons/email-notices/myCRED-addon-email-notices.php:800
1614
  msgid "CSS Styling"
1615
  msgstr ""
1616
 
1617
- #: ../addons/email-notices/myCRED-addon-email-notices.php:816
1618
  msgid "Site Related"
1619
  msgstr ""
1620
 
1621
- #: ../addons/email-notices/myCRED-addon-email-notices.php:817
1622
  msgid "Your websites title"
1623
  msgstr ""
1624
 
1625
- #: ../addons/email-notices/myCRED-addon-email-notices.php:818
1626
  msgid "Your websites address"
1627
  msgstr ""
1628
 
1629
- #: ../addons/email-notices/myCRED-addon-email-notices.php:819
1630
  msgid "Your websites tagline (description)"
1631
  msgstr ""
1632
 
1633
- #: ../addons/email-notices/myCRED-addon-email-notices.php:820
1634
  msgid "Your websites admin email"
1635
  msgstr ""
1636
 
1637
- #: ../addons/email-notices/myCRED-addon-email-notices.php:821
1638
  msgid "Total number of blog members"
1639
  msgstr ""
1640
 
1641
- #: ../addons/email-notices/myCRED-addon-email-notices.php:897 ../addons/email-notices/myCRED-addon-email-notices.php:900
 
 
1642
  msgid "Email Notice Updated. View <a href=\"%1$s\">All Notices</a>."
1643
  msgstr ""
1644
 
1645
- #: ../addons/email-notices/myCRED-addon-email-notices.php:902
1646
  msgid "Email Notice Activated"
1647
  msgstr ""
1648
 
1649
- #: ../addons/email-notices/myCRED-addon-email-notices.php:903
1650
  msgid "Email Notice Saved"
1651
  msgstr ""
1652
 
1653
- #: ../addons/email-notices/myCRED-addon-email-notices.php:904
 
1654
  msgid "Email Notice Submitted for approval. View <a href=\"%1$s\">All Notices</a>."
1655
  msgstr ""
1656
 
1657
- #: ../addons/email-notices/myCRED-addon-email-notices.php:906
 
1658
  msgid "Email Notice scheduled for: <strong>%1$s</strong>."
1659
  msgstr ""
1660
 
1661
- #: ../addons/email-notices/myCRED-addon-email-notices.php:925
1662
  msgid ""
1663
- "Once a notice is \"published\" it becomes active! Select \"Save Draft\" if you are "
1664
- "not yet ready to use this email notice!"
1665
  msgstr ""
1666
 
1667
- #: ../addons/email-notices/myCRED-addon-email-notices.php:927
 
1668
  msgid "This notice will become active on:<br /><strong>%1$s</strong>"
1669
  msgstr ""
1670
 
1671
- #: ../addons/email-notices/myCRED-addon-email-notices.php:929
1672
  msgid "This email notice is active."
1673
  msgstr ""
1674
 
1675
- #: ../addons/gateway/carts/mycred-marketpress.php:147 ../addons/gateway/event-booking/mycred-eventespresso3.php:277 ../addons/gateway/event-booking/mycred-eventespresso3.php:301 ../addons/gateway/event-booking/mycred-eventsmanager.php:412 ../includes/mycred-admin.php:478
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1676
  msgid "Current Balance"
1677
  msgstr ""
1678
 
1679
- #: ../addons/gateway/carts/mycred-marketpress.php:151 ../addons/gateway/carts/mycred-wpecommerce.php:123 ../addons/gateway/event-booking/mycred-eventespresso3.php:281 ../addons/gateway/event-booking/mycred-eventespresso3.php:305 ../addons/gateway/event-booking/mycred-eventsmanager.php:416
 
 
 
 
1680
  msgid "Total Cost"
1681
  msgstr ""
1682
 
1683
- #: ../addons/gateway/carts/mycred-marketpress.php:155 ../addons/gateway/event-booking/mycred-eventespresso3.php:285 ../addons/gateway/event-booking/mycred-eventespresso3.php:309
 
 
1684
  msgid "Balance After Purchase"
1685
  msgstr ""
1686
 
1687
- #: ../addons/gateway/carts/mycred-marketpress.php:182 ../addons/gateway/carts/mycred-marketpress.php:231
 
1688
  msgid "Go Back"
1689
  msgstr ""
1690
 
@@ -1693,16 +1963,19 @@ msgid "will be deducted from your account."
1693
  msgstr ""
1694
 
1695
  #: ../addons/gateway/carts/mycred-marketpress.php:221
 
1696
  msgid ""
1697
- "Sorry, but you can not use this gateway as your account is excluded. Please <a "
1698
- "href=\"%s\">select a different payment method</a>."
1699
  msgstr ""
1700
 
1701
  #: ../addons/gateway/carts/mycred-marketpress.php:240
1702
  msgid "Paid"
1703
  msgstr ""
1704
 
1705
- #: ../addons/gateway/carts/mycred-marketpress.php:243 ../addons/gateway/carts/mycred-woocommerce.php:33 ../includes/mycred-network.php:57 ../includes/mycred-network.php:58 ../plugins/mycred-hook-badgeOS.php:81
 
 
1706
  msgid "myCRED"
1707
  msgstr ""
1708
 
@@ -1710,7 +1983,10 @@ msgstr ""
1710
  msgid "%_singular% Balance"
1711
  msgstr ""
1712
 
1713
- #: ../addons/gateway/carts/mycred-marketpress.php:348 ../addons/gateway/carts/mycred-woocommerce.php:101 ../addons/gateway/carts/mycred-wpecommerce.php:27
 
 
 
1714
  msgid "Payment for Order: #%order_id%"
1715
  msgstr ""
1716
 
@@ -1723,15 +1999,17 @@ msgid "Pay using your account balance."
1723
  msgstr ""
1724
 
1725
  #: ../addons/gateway/carts/mycred-marketpress.php:353
 
1726
  msgid ""
1727
  "TOTAL amount has been deducted from your account. Your current balance is: "
1728
  "%balance_f%"
1729
  msgstr ""
1730
 
1731
  #: ../addons/gateway/carts/mycred-marketpress.php:354
 
1732
  msgid ""
1733
- "Insufficient funds. Please select another form of payment. Your current balance "
1734
- "is: %balance_f%"
1735
  msgstr ""
1736
 
1737
  #: ../addons/gateway/carts/mycred-marketpress.php:355
@@ -1741,9 +2019,11 @@ msgid ""
1741
  msgstr ""
1742
 
1743
  #: ../addons/gateway/carts/mycred-marketpress.php:362
 
1744
  msgid ""
1745
  "Let your users pay for items in their shopping cart using their %s Account. "
1746
- "Note! This gateway requires your users to be logged in when making a purchase!"
 
1747
  msgstr ""
1748
 
1749
  #: ../addons/gateway/carts/mycred-marketpress.php:365
@@ -1760,15 +2040,27 @@ msgstr ""
1760
  msgid "Gateway Logo URL"
1761
  msgstr ""
1762
 
1763
- #: ../addons/gateway/carts/mycred-marketpress.php:393 ../addons/gateway/carts/mycred-woocommerce.php:124
 
 
1764
  msgid "How much is 1 %_singular% worth in %currency%?"
1765
  msgstr ""
1766
 
1767
- #: ../addons/gateway/carts/mycred-marketpress.php:398 ../addons/gateway/carts/mycred-woocommerce.php:129 ../addons/gateway/carts/mycred-wpecommerce.php:356 ../addons/gateway/event-booking/mycred-eventespresso3.php:450 ../addons/gateway/event-booking/mycred-eventsmanager-pro.php:499 ../addons/gateway/event-booking/mycred-eventsmanager.php:578
 
 
 
 
 
1768
  msgid "Exchange Rate"
1769
  msgstr ""
1770
 
1771
- #: ../addons/gateway/carts/mycred-marketpress.php:407 ../addons/gateway/carts/mycred-woocommerce.php:157 ../addons/gateway/carts/mycred-wpecommerce.php:360 ../addons/gateway/event-booking/mycred-eventespresso3.php:462 ../addons/gateway/event-booking/mycred-eventsmanager-pro.php:490 ../addons/gateway/event-booking/mycred-eventsmanager.php:569
 
 
 
 
 
1772
  msgid "Profit Sharing"
1773
  msgstr ""
1774
 
@@ -1776,15 +2068,26 @@ msgstr ""
1776
  msgid "Percentage"
1777
  msgstr ""
1778
 
1779
- #: ../addons/gateway/carts/mycred-marketpress.php:412 ../addons/gateway/carts/mycred-woocommerce.php:159 ../addons/gateway/carts/mycred-wpecommerce.php:364 ../addons/gateway/event-booking/mycred-eventespresso3.php:464 ../addons/gateway/event-booking/mycred-eventsmanager-pro.php:493 ../addons/gateway/event-booking/mycred-eventsmanager.php:572
 
 
 
 
 
1780
  msgid "Option to share sales with the product owner. Use zero to disable."
1781
  msgstr ""
1782
 
1783
- #: ../addons/gateway/carts/mycred-marketpress.php:424 ../addons/gateway/carts/mycred-wpecommerce.php:371 ../addons/gateway/event-booking/mycred-eventsmanager-pro.php:559 ../addons/gateway/event-booking/mycred-eventsmanager.php:626
 
 
 
1784
  msgid "Messages"
1785
  msgstr ""
1786
 
1787
- #: ../addons/gateway/carts/mycred-marketpress.php:427 ../addons/gateway/carts/mycred-wpecommerce.php:382 ../addons/gateway/event-booking/mycred-eventsmanager-pro.php:569 ../addons/gateway/event-booking/mycred-eventsmanager.php:636
 
 
 
1788
  msgid "Insufficient Funds"
1789
  msgstr ""
1790
 
@@ -1792,7 +2095,9 @@ msgstr ""
1792
  msgid "Message to show when the user can not use this gateway."
1793
  msgstr ""
1794
 
1795
- #: ../addons/gateway/carts/mycred-marketpress.php:435 ../addons/gateway/carts/mycred-wpecommerce.php:378 ../addons/gateway/event-booking/mycred-eventespresso3.php:490
 
 
1796
  msgid "Visitors"
1797
  msgstr ""
1798
 
@@ -1821,11 +2126,12 @@ msgid "Order Confirmation Email"
1821
  msgstr ""
1822
 
1823
  #: ../addons/gateway/carts/mycred-marketpress.php:461
 
1824
  msgid ""
1825
  "This is the email text to send to those who have made %s checkouts. It "
1826
- "overrides the default order checkout email. These codes will be replaced with "
1827
- "order details: CUSTOMERNAME, ORDERID, ORDERINFO, SHIPPINGINFO, PAYMENTINFO, "
1828
- "TOTAL, TRACKINGURL. No HTML allowed."
1829
  msgstr ""
1830
 
1831
  #: ../addons/gateway/carts/mycred-woocommerce.php:34
@@ -1842,8 +2148,8 @@ msgstr ""
1842
 
1843
  #: ../addons/gateway/carts/mycred-woocommerce.php:83
1844
  msgid ""
1845
- "Users who are not logged in or excluded from using myCRED will not have access "
1846
- "to this gateway!"
1847
  msgstr ""
1848
 
1849
  #: ../addons/gateway/carts/mycred-woocommerce.php:88
@@ -1859,6 +2165,7 @@ msgid "Customer Message"
1859
  msgstr ""
1860
 
1861
  #: ../addons/gateway/carts/mycred-woocommerce.php:95
 
1862
  msgid "Deduct the amount from your %_plural% balance."
1863
  msgstr ""
1864
 
@@ -1890,10 +2197,6 @@ msgstr ""
1890
  msgid "Show in Cart and on Checkout Page"
1891
  msgstr ""
1892
 
1893
- #: ../addons/gateway/carts/mycred-woocommerce.php:148 ../modules/mycred-module-settings.php:484 ../modules/mycred-module-settings.php:503 ../modules/mycred-module-settings.php:526
1894
- msgid "Label"
1895
- msgstr ""
1896
-
1897
  #: ../addons/gateway/carts/mycred-woocommerce.php:150
1898
  msgid "Order Total in %_plural%"
1899
  msgstr ""
@@ -1911,10 +2214,11 @@ msgid "myCRED Payment"
1911
  msgstr ""
1912
 
1913
  #: ../addons/gateway/carts/mycred-woocommerce.php:193
 
1914
  msgid ""
1915
  "Allows users to pay using their myCRED %_singular% balance. Please note that "
1916
- "users with insufficient funds and users who are not logged in will not see this "
1917
- "payment gateway on the checkout page."
1918
  msgstr ""
1919
 
1920
  #: ../addons/gateway/carts/mycred-woocommerce.php:214
@@ -1925,19 +2229,20 @@ msgstr ""
1925
  msgid "You can not use this gateway. Please try a different payment option."
1926
  msgstr ""
1927
 
1928
- #: ../addons/gateway/carts/mycred-woocommerce.php:233
1929
  msgid "Insufficient funds. Please try a different payment option."
1930
  msgstr ""
1931
 
1932
- #: ../addons/gateway/carts/mycred-woocommerce.php:295
1933
  msgid "Your account has successfully been charged."
1934
  msgstr ""
1935
 
1936
- #: ../addons/gateway/carts/mycred-woocommerce.php:314
1937
  msgid "Order Missing"
1938
  msgstr ""
1939
 
1940
- #: ../addons/gateway/carts/mycred-woocommerce.php:537 ../addons/gateway/carts/mycred-wpecommerce.php:131
 
1941
  msgid "Your current balance"
1942
  msgstr ""
1943
 
@@ -1966,6 +2271,7 @@ msgid "Log Template for Payments"
1966
  msgstr ""
1967
 
1968
  #: ../addons/gateway/carts/mycred-wpecommerce.php:357
 
1969
  msgid "How much is 1 %s worth in %s"
1970
  msgstr ""
1971
 
@@ -1979,8 +2285,8 @@ msgstr ""
1979
 
1980
  #: ../addons/gateway/carts/mycred-wpecommerce.php:375
1981
  msgid ""
1982
- "Optional instructions to show users when selecting this gateway. Leave empty to "
1983
- "hide."
1984
  msgstr ""
1985
 
1986
  #: ../addons/gateway/carts/mycred-wpecommerce.php:379
@@ -1993,7 +2299,9 @@ msgid ""
1993
  "gateway."
1994
  msgstr ""
1995
 
1996
- #: ../addons/gateway/event-booking/mycred-eventespresso3.php:27 ../addons/gateway/event-booking/mycred-eventsmanager-pro.php:39 ../addons/gateway/event-booking/mycred-eventsmanager.php:35
 
 
1997
  msgid "Pay Now"
1998
  msgstr ""
1999
 
@@ -2002,14 +2310,19 @@ msgid "Payment for Event Registration"
2002
  msgstr ""
2003
 
2004
  #: ../addons/gateway/event-booking/mycred-eventespresso3.php:343
 
2005
  msgid "Activate %s"
2006
  msgstr ""
2007
 
2008
  #: ../addons/gateway/event-booking/mycred-eventespresso3.php:351
 
2009
  msgid "Deactivate %s"
2010
  msgstr ""
2011
 
2012
- #: ../addons/gateway/event-booking/mycred-eventespresso3.php:399 ../addons/gateway/event-booking/mycred-eventsmanager-pro.php:449 ../addons/gateway/event-booking/mycred-eventsmanager.php:524
 
 
 
2013
  msgid "How many %s is 1 %s worth?"
2014
  msgstr ""
2015
 
@@ -2017,7 +2330,9 @@ msgstr ""
2017
  msgid "Gateways Settings Successfully Updated"
2018
  msgstr ""
2019
 
2020
- #: ../addons/gateway/event-booking/mycred-eventespresso3.php:415 ../addons/gateway/event-booking/mycred-eventsmanager-pro.php:535 ../addons/gateway/event-booking/mycred-eventsmanager.php:602
 
 
2021
  msgid "Labels"
2022
  msgstr ""
2023
 
@@ -2037,7 +2352,11 @@ msgstr ""
2037
  msgid "Title to show on receipts and logs"
2038
  msgstr ""
2039
 
2040
- #: ../addons/gateway/event-booking/mycred-eventespresso3.php:428 ../addons/gateway/event-booking/mycred-eventsmanager-pro.php:552 ../addons/gateway/event-booking/mycred-eventsmanager.php:619 ../addons/sell-content/myCRED-addon-sell-content.php:397 ../addons/sell-content/myCRED-addon-sell-content.php:590
 
 
 
 
2041
  msgid "Button Label"
2042
  msgstr ""
2043
 
@@ -2045,7 +2364,13 @@ msgstr ""
2045
  msgid "Pay Button"
2046
  msgstr ""
2047
 
2048
- #: ../addons/gateway/event-booking/mycred-eventespresso3.php:447 ../addons/gateway/event-booking/mycred-eventsmanager-pro.php:137 ../addons/gateway/event-booking/mycred-eventsmanager-pro.php:140 ../addons/gateway/event-booking/mycred-eventsmanager.php:336 ../addons/gateway/event-booking/mycred-eventsmanager.php:339 ../addons/sell-content/myCRED-addon-sell-content.php:388 ../addons/sell-content/myCRED-addon-sell-content.php:586
 
 
 
 
 
 
2049
  msgid "Price"
2050
  msgstr ""
2051
 
@@ -2059,11 +2384,13 @@ msgstr ""
2059
  msgid "Users must be logged in to use this gateway!"
2060
  msgstr ""
2061
 
2062
- #: ../addons/gateway/event-booking/mycred-eventespresso3.php:467 ../modules/mycred-module-log.php:22 ../modules/mycred-module-log.php:23
 
2063
  msgid "Log"
2064
  msgstr ""
2065
 
2066
- #: ../addons/gateway/event-booking/mycred-eventespresso3.php:470 ../includes/mycred-admin.php:483
 
2067
  msgid "Log Entry"
2068
  msgstr ""
2069
 
@@ -2077,8 +2404,8 @@ msgstr ""
2077
 
2078
  #: ../addons/gateway/event-booking/mycred-eventespresso3.php:482
2079
  msgid ""
2080
- "Message to show users on the payment page before they are charged. Leave empty "
2081
- "to hide."
2082
  msgstr ""
2083
 
2084
  #: ../addons/gateway/event-booking/mycred-eventespresso3.php:485
@@ -2093,39 +2420,49 @@ msgstr ""
2093
  msgid "Message to show visitors (users not logged in) on the payment page."
2094
  msgstr ""
2095
 
2096
- #: ../addons/gateway/event-booking/mycred-eventespresso3.php:502 ../modules/mycred-module-settings.php:540
 
2097
  msgid "Update Settings"
2098
  msgstr ""
2099
 
2100
- #: ../addons/gateway/event-booking/mycred-eventsmanager-pro.php:33 ../addons/gateway/event-booking/mycred-eventsmanager.php:29
 
2101
  msgid "Payment for tickets to %link_with_title%"
2102
  msgstr ""
2103
 
2104
- #: ../addons/gateway/event-booking/mycred-eventsmanager-pro.php:34 ../addons/gateway/event-booking/mycred-eventsmanager.php:30
 
2105
  msgid "Ticket refund for %link_with_title%"
2106
  msgstr ""
2107
 
2108
- #: ../addons/gateway/event-booking/mycred-eventsmanager-pro.php:38 ../addons/gateway/event-booking/mycred-eventsmanager.php:34
 
 
2109
  msgid "Pay using your %_plural% balance"
2110
  msgstr ""
2111
 
2112
- #: ../addons/gateway/event-booking/mycred-eventsmanager-pro.php:40 ../addons/gateway/event-booking/mycred-eventsmanager.php:36
 
2113
  msgid "Pay"
2114
  msgstr ""
2115
 
2116
- #: ../addons/gateway/event-booking/mycred-eventsmanager-pro.php:43 ../addons/gateway/event-booking/mycred-eventsmanager.php:39
 
2117
  msgid "Thank you for your payment!"
2118
  msgstr ""
2119
 
2120
- #: ../addons/gateway/event-booking/mycred-eventsmanager-pro.php:44 ../addons/gateway/event-booking/mycred-eventsmanager.php:40
 
2121
  msgid "I'm sorry but you can not pay for these tickets using %_plural%"
2122
  msgstr ""
2123
 
2124
- #: ../addons/gateway/event-booking/mycred-eventsmanager-pro.php:134 ../addons/gateway/event-booking/mycred-eventsmanager.php:333
 
2125
  msgid "Ticket Type"
2126
  msgstr ""
2127
 
2128
- #: ../addons/gateway/event-booking/mycred-eventsmanager-pro.php:143 ../addons/gateway/event-booking/mycred-eventsmanager.php:342
 
2129
  msgid "Spaces"
2130
  msgstr ""
2131
 
@@ -2137,7 +2474,9 @@ msgstr ""
2137
  msgid "Reject"
2138
  msgstr ""
2139
 
2140
- #: ../addons/gateway/event-booking/mycred-eventsmanager-pro.php:374 ../modules/mycred-module-log.php:500 ../modules/mycred-module-settings.php:488 ../modules/mycred-module-settings.php:507
 
 
2141
  msgid "Delete"
2142
  msgstr ""
2143
 
@@ -2145,19 +2484,25 @@ msgstr ""
2145
  msgid "Edit/View"
2146
  msgstr ""
2147
 
2148
- #: ../addons/gateway/event-booking/mycred-eventsmanager-pro.php:477 ../addons/gateway/event-booking/mycred-eventsmanager.php:542
 
2149
  msgid "Disabled - Users CAN NOT pay for tickets using %plural%."
2150
  msgstr ""
2151
 
2152
- #: ../addons/gateway/event-booking/mycred-eventsmanager-pro.php:478 ../addons/gateway/event-booking/mycred-eventsmanager.php:543
 
2153
  msgid "Single - Users can ONLY pay for tickets using %plural%."
2154
  msgstr ""
2155
 
2156
- #: ../addons/gateway/event-booking/mycred-eventsmanager-pro.php:479 ../addons/gateway/event-booking/mycred-eventsmanager.php:544
 
2157
  msgid "Multi - Users can pay for tickets using other gateways or %plural%."
2158
  msgstr ""
2159
 
2160
- #: ../addons/gateway/event-booking/mycred-eventsmanager-pro.php:483 ../addons/gateway/event-booking/mycred-eventsmanager-pro.php:516 ../addons/gateway/event-booking/mycred-eventsmanager.php:562 ../addons/gateway/event-booking/mycred-eventsmanager.php:595
 
 
 
2161
  msgid "Refunds"
2162
  msgstr ""
2163
 
@@ -2167,41 +2512,52 @@ msgid ""
2167
  "Use zero for no refunds. No refunds are given to \"Rejected\" bookings!"
2168
  msgstr ""
2169
 
2170
- #: ../addons/gateway/event-booking/mycred-eventsmanager-pro.php:506 ../addons/gateway/event-booking/mycred-eventsmanager.php:585
 
2171
  msgid "Log Templates"
2172
  msgstr ""
2173
 
2174
- #: ../addons/gateway/event-booking/mycred-eventsmanager-pro.php:509 ../addons/gateway/event-booking/mycred-eventsmanager.php:588
 
2175
  msgid "Purchases"
2176
  msgstr ""
2177
 
2178
- #: ../addons/gateway/event-booking/mycred-eventsmanager-pro.php:538 ../addons/gateway/event-booking/mycred-eventsmanager.php:605
 
2179
  msgid "Payment Link Label"
2180
  msgstr ""
2181
 
2182
- #: ../addons/gateway/event-booking/mycred-eventsmanager-pro.php:541 ../addons/gateway/event-booking/mycred-eventsmanager.php:608
 
2183
  msgid ""
2184
  "The payment link shows / hides the payment form under \"My Bookings\". No HTML "
2185
  "allowed."
2186
  msgstr ""
2187
 
2188
- #: ../addons/gateway/event-booking/mycred-eventsmanager-pro.php:545 ../addons/gateway/event-booking/mycred-eventsmanager.php:612
 
2189
  msgid "Payment Header"
2190
  msgstr ""
2191
 
2192
- #: ../addons/gateway/event-booking/mycred-eventsmanager-pro.php:548 ../addons/gateway/event-booking/mycred-eventsmanager.php:615
 
2193
  msgid "Shown on top of the payment form. No HTML allowed."
2194
  msgstr ""
2195
 
2196
- #: ../addons/gateway/event-booking/mycred-eventsmanager-pro.php:555 ../addons/gateway/event-booking/mycred-eventsmanager.php:622
 
2197
  msgid "The button label for payments. No HTML allowed!"
2198
  msgstr ""
2199
 
2200
- #: ../addons/gateway/event-booking/mycred-eventsmanager-pro.php:562 ../addons/gateway/event-booking/mycred-eventsmanager.php:629
 
2201
  msgid "Successful Payments"
2202
  msgstr ""
2203
 
2204
- #: ../addons/gateway/event-booking/mycred-eventsmanager-pro.php:565 ../addons/gateway/event-booking/mycred-eventsmanager-pro.php:572 ../addons/gateway/event-booking/mycred-eventsmanager.php:632 ../addons/gateway/event-booking/mycred-eventsmanager.php:639
 
 
 
2205
  msgid "No HTML allowed!"
2206
  msgstr ""
2207
 
@@ -2214,6 +2570,7 @@ msgid "Click to toggle"
2214
  msgstr ""
2215
 
2216
  #: ../addons/gateway/event-booking/mycred-eventsmanager.php:533
 
2217
  msgid "%s Payments"
2218
  msgstr ""
2219
 
@@ -2223,7 +2580,8 @@ msgid ""
2223
  "zero for no refunds. No refunds are given to \"Rejected\" bookings."
2224
  msgstr ""
2225
 
2226
- #: ../addons/notifications/myCRED-addon-notifications.php:166 ../modules/mycred-module-addons.php:201
 
2227
  msgid "Notifications"
2228
  msgstr ""
2229
 
@@ -2235,11 +2593,13 @@ msgstr ""
2235
  msgid "Use the included CSS Styling for notifications."
2236
  msgstr ""
2237
 
2238
- #: ../addons/notifications/myCRED-addon-notifications.php:175 ../modules/mycred-module-buddypress.php:410
 
2239
  msgid "Template"
2240
  msgstr ""
2241
 
2242
  #: ../addons/notifications/myCRED-addon-notifications.php:179
 
2243
  msgid "Use %entry% to show the log entry in the notice and %amount% for the amount."
2244
  msgstr ""
2245
 
@@ -2259,8 +2619,9 @@ msgstr ""
2259
 
2260
  #: ../addons/notifications/myCRED-addon-notifications.php:193
2261
  msgid ""
2262
- "The number of milliseconds a notice should be visible.<br />Use zero to require "
2263
- "that the user closes the notice manually. 1000 milliseconds = 1 second."
 
2264
  msgstr ""
2265
 
2266
  #: ../addons/ranks/myCRED-addon-ranks.php:231
@@ -2271,11 +2632,16 @@ msgstr ""
2271
  msgid "Are you sure you want to re-assign user ranks?"
2272
  msgstr ""
2273
 
2274
- #: ../addons/ranks/myCRED-addon-ranks.php:246 ../addons/ranks/myCRED-addon-ranks.php:252 ../addons/ranks/myCRED-addon-ranks.php:258 ../addons/ranks/myCRED-addon-ranks.php:762 ../addons/ranks/myCRED-addon-ranks.php:958 ../modules/mycred-module-addons.php:213
 
 
 
2275
  msgid "Ranks"
2276
  msgstr ""
2277
 
2278
- #: ../addons/ranks/myCRED-addon-ranks.php:247 ../addons/ranks/myCRED-addon-ranks.php:454 ../addons/ranks/myCRED-addon-ranks.php:473 ../addons/ranks/myCRED-addon-ranks.php:568
 
 
2279
  msgid "Rank"
2280
  msgstr ""
2281
 
@@ -2307,249 +2673,269 @@ msgstr ""
2307
  msgid "No ranks found in Trash"
2308
  msgstr ""
2309
 
2310
- #: ../addons/ranks/myCRED-addon-ranks.php:323
 
2311
  msgid "Completed - Total of %d users effected"
2312
  msgstr ""
2313
 
2314
- #: ../addons/ranks/myCRED-addon-ranks.php:325
2315
  msgid "Log is Empty"
2316
  msgstr ""
2317
 
2318
- #: ../addons/ranks/myCRED-addon-ranks.php:528 ../addons/ranks/myCRED-addon-ranks.php:531
 
 
2319
  msgid "Rank Updated. View <a href=\"%1$s\">All Ranks</a>."
2320
  msgstr ""
2321
 
2322
- #: ../addons/ranks/myCRED-addon-ranks.php:533
2323
  msgid "Rank Activated"
2324
  msgstr ""
2325
 
2326
- #: ../addons/ranks/myCRED-addon-ranks.php:534
2327
  msgid "Rank Saved"
2328
  msgstr ""
2329
 
2330
- #: ../addons/ranks/myCRED-addon-ranks.php:535
 
2331
  msgid "Rank Submitted for approval. View <a href=\"%1$s\">All Ranks</a>."
2332
  msgstr ""
2333
 
2334
- #: ../addons/ranks/myCRED-addon-ranks.php:537
 
2335
  msgid "Rank scheduled for: <strong>%1$s</strong>."
2336
  msgstr ""
2337
 
2338
- #: ../addons/ranks/myCRED-addon-ranks.php:594 ../addons/ranks/myCRED-addon-ranks.php:647
 
2339
  msgid "Rank Title"
2340
  msgstr ""
2341
 
2342
- #: ../addons/ranks/myCRED-addon-ranks.php:595
2343
  msgid "Logo"
2344
  msgstr ""
2345
 
2346
- #: ../addons/ranks/myCRED-addon-ranks.php:596
2347
  msgid "Requirement"
2348
  msgstr ""
2349
 
2350
- #: ../addons/ranks/myCRED-addon-ranks.php:597 ../modules/mycred-module-settings.php:451
 
2351
  msgid "Users"
2352
  msgstr ""
2353
 
2354
- #: ../addons/ranks/myCRED-addon-ranks.php:613
2355
  msgid "No Logo Set"
2356
  msgstr ""
2357
 
2358
- #: ../addons/ranks/myCRED-addon-ranks.php:622 ../addons/ranks/myCRED-addon-ranks.php:627
 
2359
  msgid "Any Value"
2360
  msgstr ""
2361
 
2362
- #: ../addons/ranks/myCRED-addon-ranks.php:629
2363
  msgid "Maximum %plural%"
2364
  msgstr ""
2365
 
2366
- #: ../addons/ranks/myCRED-addon-ranks.php:660
2367
  msgid "Rank Settings"
2368
  msgstr ""
2369
 
2370
- #: ../addons/ranks/myCRED-addon-ranks.php:682
2371
  msgid "Minimum %plural% to reach this rank"
2372
  msgstr ""
2373
 
2374
- #: ../addons/ranks/myCRED-addon-ranks.php:686
2375
  msgid "Maximum %plural% to be included in this rank"
2376
  msgstr ""
2377
 
2378
- #: ../addons/ranks/myCRED-addon-ranks.php:693
2379
  msgid "All Published Ranks"
2380
  msgstr ""
2381
 
2382
- #: ../addons/ranks/myCRED-addon-ranks.php:699 ../addons/ranks/myCRED-addon-ranks.php:701
 
2383
  msgid "Not Set"
2384
  msgstr ""
2385
 
2386
- #: ../addons/ranks/myCRED-addon-ranks.php:706
2387
  msgid "No Ranks found"
2388
  msgstr ""
2389
 
2390
- #: ../addons/ranks/myCRED-addon-ranks.php:764
2391
  msgid "Rank Features"
2392
  msgstr ""
2393
 
2394
- #: ../addons/ranks/myCRED-addon-ranks.php:768
2395
  msgid "%plural% requirement"
2396
  msgstr ""
2397
 
2398
- #: ../addons/ranks/myCRED-addon-ranks.php:769
2399
  msgid "Featured Image (Logo)"
2400
  msgstr ""
2401
 
2402
- #: ../addons/ranks/myCRED-addon-ranks.php:770
2403
  msgid "Content"
2404
  msgstr ""
2405
 
2406
- #: ../addons/ranks/myCRED-addon-ranks.php:771
2407
  msgid "Excerpt"
2408
  msgstr ""
2409
 
2410
- #: ../addons/ranks/myCRED-addon-ranks.php:772
2411
  msgid "Comments"
2412
  msgstr ""
2413
 
2414
- #: ../addons/ranks/myCRED-addon-ranks.php:773
2415
  msgid "Page Attributes"
2416
  msgstr ""
2417
 
2418
- #: ../addons/ranks/myCRED-addon-ranks.php:774
2419
  msgid "Custom Fields"
2420
  msgstr ""
2421
 
2422
- #: ../addons/ranks/myCRED-addon-ranks.php:777
2423
  msgid "Public"
2424
  msgstr ""
2425
 
2426
- #: ../addons/ranks/myCRED-addon-ranks.php:781
2427
  msgid ""
2428
- "If you want to create a template archive for each rank, you must select to have "
2429
- "ranks public. Defaults to disabled."
2430
  msgstr ""
2431
 
2432
- #: ../addons/ranks/myCRED-addon-ranks.php:784
2433
  msgid "Rank Basis"
2434
  msgstr ""
2435
 
2436
- #: ../addons/ranks/myCRED-addon-ranks.php:787
2437
  msgid "Users are ranked according to their current balance."
2438
  msgstr ""
2439
 
2440
- #: ../addons/ranks/myCRED-addon-ranks.php:790
2441
  msgid ""
2442
  "Users are ranked according to the total amount of %_plural% they have "
2443
  "accumulated."
2444
  msgstr ""
2445
 
2446
- #: ../addons/ranks/myCRED-addon-ranks.php:794 ../addons/ranks/myCRED-addon-ranks.php:799
 
2447
  msgid "Calculate Totals"
2448
  msgstr ""
2449
 
2450
- #: ../addons/ranks/myCRED-addon-ranks.php:797
2451
  msgid ""
2452
  "Use this button to calculate or re-calcualte your users totals. If not used, "
2453
  "the users current balance will be used as a starting point."
2454
  msgstr ""
2455
 
2456
- #: ../addons/ranks/myCRED-addon-ranks.php:797
2457
  msgid ""
2458
  "Once a users total has been calculated, they will be assigned to their "
2459
  "appropriate roles. For this reason, it is highly recommended that you first "
2460
  "setup your ranks!"
2461
  msgstr ""
2462
 
2463
- #: ../addons/ranks/myCRED-addon-ranks.php:798
2464
  msgid ""
2465
- "Depending on your log size and number of users this process may take a while. "
2466
- "Please do not leave, click \"Update Settings\" or re-fresh this page until this "
2467
- "is completed!"
2468
  msgstr ""
2469
 
2470
- #: ../addons/ranks/myCRED-addon-ranks.php:803
2471
  msgid "Archive URL"
2472
  msgstr ""
2473
 
2474
- #: ../addons/ranks/myCRED-addon-ranks.php:807
2475
  msgid "Ignored if Ranks are not public"
2476
  msgstr ""
2477
 
2478
- #: ../addons/ranks/myCRED-addon-ranks.php:810
2479
  msgid "Display Order"
2480
  msgstr ""
2481
 
2482
- #: ../addons/ranks/myCRED-addon-ranks.php:817
2483
  msgid "Ascending - Lowest rank to highest"
2484
  msgstr ""
2485
 
2486
- #: ../addons/ranks/myCRED-addon-ranks.php:818
2487
  msgid "Descending - Highest rank to lowest"
2488
  msgstr ""
2489
 
2490
- #: ../addons/ranks/myCRED-addon-ranks.php:827
2491
  msgid ""
2492
- "Select in what order ranks should be displayed in your admin area and/or front "
2493
- "if ranks are \"Public\""
2494
  msgstr ""
2495
 
2496
- #: ../addons/ranks/myCRED-addon-ranks.php:837 ../modules/mycred-module-buddypress.php:366 ../modules/mycred-module-buddypress.php:373
 
2497
  msgid "Do not show."
2498
  msgstr ""
2499
 
2500
- #: ../addons/ranks/myCRED-addon-ranks.php:838 ../modules/mycred-module-buddypress.php:367
 
2501
  msgid "Include in Profile Header."
2502
  msgstr ""
2503
 
2504
- #: ../addons/ranks/myCRED-addon-ranks.php:839 ../modules/mycred-module-buddypress.php:368
 
2505
  msgid "Include under the \"Profile\" tab"
2506
  msgstr ""
2507
 
2508
- #: ../addons/ranks/myCRED-addon-ranks.php:840 ../modules/mycred-module-buddypress.php:369
 
2509
  msgid "Include under the \"Profile\" tab and Profile Header."
2510
  msgstr ""
2511
 
2512
- #: ../addons/ranks/myCRED-addon-ranks.php:843
2513
  msgid "Rank in BuddyPress"
2514
  msgstr ""
2515
 
2516
- #: ../addons/ranks/myCRED-addon-ranks.php:911
2517
  msgid "Script Communication Error"
2518
  msgstr ""
2519
 
2520
- #: ../addons/ranks/myCRED-addon-ranks.php:961
2521
  msgid "Rank Post Type"
2522
  msgstr ""
2523
 
2524
- #: ../addons/ranks/myCRED-addon-ranks.php:965
2525
  msgid "No. of ranks"
2526
  msgstr ""
2527
 
2528
- #: ../addons/ranks/myCRED-addon-ranks.php:969 ../modules/mycred-module-log.php:368 ../modules/mycred-module-settings.php:440 ../modules/mycred-module-settings.php:455
 
 
2529
  msgid "Actions"
2530
  msgstr ""
2531
 
2532
- #: ../addons/ranks/myCRED-addon-ranks.php:970
2533
  msgid "Remove All Ranks"
2534
  msgstr ""
2535
 
2536
- #: ../addons/ranks/myCRED-addon-ranks.php:970
2537
  msgid "Assign Ranks to Users"
2538
  msgstr ""
2539
 
2540
- #: ../addons/ranks/includes/mycred-rank-functions.php:181
2541
  msgid "mycred_get_users_rank() : Missing required user id"
2542
  msgstr ""
2543
 
2544
- #: ../addons/ranks/includes/mycred-rank-functions.php:191
2545
  msgid "no rank"
2546
  msgstr ""
2547
 
2548
- #: ../addons/ranks/includes/mycred-rank-shortcodes.php:58 ../addons/ranks/includes/mycred-rank-shortcodes.php:134
 
2549
  msgid "No users found with this rank"
2550
  msgstr ""
2551
 
2552
- #: ../addons/ranks/includes/mycred-rank-shortcodes.php:63 ../includes/mycred-shortcodes.php:352 ../includes/mycred-shortcodes.php:355 ../includes/mycred-shortcodes.php:417 ../includes/mycred-shortcodes.php:478 ../includes/mycred-shortcodes.php:482 ../includes/mycred-shortcodes.php:486
 
 
 
2553
  msgid "error"
2554
  msgstr ""
2555
 
@@ -2585,7 +2971,9 @@ msgstr ""
2585
  msgid "Pay Content Author."
2586
  msgstr ""
2587
 
2588
- #: ../addons/sell-content/myCRED-addon-sell-content.php:339 ../includes/mycred-overview.php:141 ../includes/mycred-overview.php:148 ../modules/mycred-module-addons.php:224
 
 
2589
  msgid "Sell Content"
2590
  msgstr ""
2591
 
@@ -2632,16 +3020,19 @@ msgid "Sale Template for non members"
2632
  msgstr ""
2633
 
2634
  #: ../addons/sell-content/myCRED-addon-sell-content.php:415
 
2635
  msgid ""
2636
- "Do <strong>not</strong> use the %buy_button% in this template as a user must be "
2637
- "logged in to buy content!"
2638
  msgstr ""
2639
 
2640
  #: ../addons/sell-content/myCRED-addon-sell-content.php:419
2641
  msgid "Sale Template for members"
2642
  msgstr ""
2643
 
2644
- #: ../addons/sell-content/myCRED-addon-sell-content.php:423 ../addons/sell-content/myCRED-addon-sell-content.php:431
 
 
2645
  msgid "Your template must contain the %buy_button% tag for purchases to work!"
2646
  msgstr ""
2647
 
@@ -2658,10 +3049,12 @@ msgid "Log template for Sales"
2658
  msgstr ""
2659
 
2660
  #: ../addons/sell-content/myCRED-addon-sell-content.php:494
 
2661
  msgid "%s Sell This"
2662
  msgstr ""
2663
 
2664
  #: ../addons/sell-content/myCRED-addon-sell-content.php:548
 
2665
  msgid "%s Sell Content needs to be setup before you can use this feature."
2666
  msgstr ""
2667
 
@@ -2685,7 +3078,8 @@ msgstr ""
2685
  msgid "Thank you for your purchase!"
2686
  msgstr ""
2687
 
2688
- #: ../addons/sell-content/myCRED-addon-sell-content.php:1008 ../addons/sell-content/myCRED-addon-sell-content.php:1094
 
2689
  msgid "The following content is set for sale:"
2690
  msgstr ""
2691
 
@@ -2731,8 +3125,8 @@ msgstr ""
2731
 
2732
  #: ../addons/transfer/myCRED-addon-transfer.php:146
2733
  msgid ""
2734
- "This myCRED Add-on has not yet been setup! No transfers are allowed until this "
2735
- "has been done!"
2736
  msgstr ""
2737
 
2738
  #: ../addons/transfer/myCRED-addon-transfer.php:147
@@ -2763,11 +3157,13 @@ msgstr ""
2763
  msgid "User Email (user_email)"
2764
  msgstr ""
2765
 
2766
- #: ../addons/transfer/myCRED-addon-transfer.php:191 ../addons/transfer/myCRED-addon-transfer.php:631
 
2767
  msgid "Transfer %plural%"
2768
  msgstr ""
2769
 
2770
- #: ../addons/transfer/myCRED-addon-transfer.php:195 ../includes/mycred-widgets.php:593 ../modules/mycred-module-settings.php:469
 
2771
  msgid "Point Types"
2772
  msgstr ""
2773
 
@@ -2857,8 +3253,8 @@ msgstr ""
2857
 
2858
  #: ../addons/transfer/myCRED-addon-transfer.php:296
2859
  msgid ""
2860
- "Text to show when a users balance is to low for transfers. Leave empty to hide. "
2861
- "No HTML elements allowed!"
2862
  msgstr ""
2863
 
2864
  #: ../addons/transfer/myCRED-addon-transfer.php:300
@@ -2876,6 +3272,7 @@ msgid "Allow transfers between users."
2876
  msgstr ""
2877
 
2878
  #: ../addons/transfer/myCRED-addon-transfer.php:562
 
2879
  msgid "(%s) Transfer"
2880
  msgstr ""
2881
 
@@ -2900,6 +3297,7 @@ msgid "email"
2900
  msgstr ""
2901
 
2902
  #: ../addons/transfer/myCRED-addon-transfer.php:780
 
2903
  msgid "recipients %s"
2904
  msgstr ""
2905
 
@@ -2912,6 +3310,7 @@ msgid "Amount:"
2912
  msgstr ""
2913
 
2914
  #: ../includes/mycred-about.php:75
 
2915
  msgid "Welcome to %s %s"
2916
  msgstr ""
2917
 
@@ -2951,7 +3350,8 @@ msgstr ""
2951
  msgid "Excluded"
2952
  msgstr ""
2953
 
2954
- #: ../includes/mycred-admin.php:279 ../modules/mycred-module-log.php:250 ../modules/mycred-module-log.php:251
 
2955
  msgid "History"
2956
  msgstr ""
2957
 
@@ -2960,6 +3360,7 @@ msgid "Adjust"
2960
  msgstr ""
2961
 
2962
  #: ../includes/mycred-admin.php:335 ../includes/mycred-admin.php:394
 
2963
  msgid "%singular% balance"
2964
  msgstr ""
2965
 
@@ -3076,6 +3477,7 @@ msgid "incorrect unix timestamp (to):"
3076
  msgstr ""
3077
 
3078
  #: ../includes/mycred-importer.php:11
 
3079
  msgid "%s Log Import"
3080
  msgstr ""
3081
 
@@ -3084,6 +3486,7 @@ msgid "Import log entries via a CSV file."
3084
  msgstr ""
3085
 
3086
  #: ../includes/mycred-importer.php:43
 
3087
  msgid "%s Balance Import"
3088
  msgstr ""
3089
 
@@ -3092,10 +3495,12 @@ msgid "Import balances."
3092
  msgstr ""
3093
 
3094
  #: ../includes/mycred-importer.php:75
 
3095
  msgid "%s CubePoints Import"
3096
  msgstr ""
3097
 
3098
- #: ../includes/mycred-importer.php:76 ../includes/importers/mycred-cubepoints.php:344
 
3099
  msgid "Import CubePoints log entries and / or balances."
3100
  msgstr ""
3101
 
@@ -3117,8 +3522,8 @@ msgstr ""
3117
 
3118
  #: ../includes/mycred-install.php:54
3119
  msgid ""
3120
- "Sorry but your WordPress installation does not reach the minimum requirements "
3121
- "for running myCRED. The following errors were given:"
3122
  msgstr ""
3123
 
3124
  #: ../includes/mycred-install.php:243
@@ -3134,6 +3539,7 @@ msgid "myCRED Setup"
3134
  msgstr ""
3135
 
3136
  #: ../includes/mycred-install.php:385
 
3137
  msgid "%s Setup"
3138
  msgstr ""
3139
 
@@ -3143,8 +3549,8 @@ msgstr ""
3143
 
3144
  #: ../includes/mycred-install.php:411
3145
  msgid ""
3146
- "Click \"Begin Setup\" to install myCRED. You will be able to select your points "
3147
- "format, layout and security settings."
3148
  msgstr ""
3149
 
3150
  #: ../includes/mycred-install.php:412
@@ -3221,9 +3627,10 @@ msgstr ""
3221
 
3222
  #: ../includes/mycred-install.php:556 ../modules/mycred-module-settings.php:390
3223
  msgid ""
3224
- "As an added security, you can set the maximum amount a user can gain or loose "
3225
- "in a single instance. If used, make sure this is the maximum amount a user "
3226
- "would be able to transfer, buy, or spend in your store. Use zero to disable."
 
3227
  msgstr ""
3228
 
3229
  #: ../includes/mycred-install.php:563 ../modules/mycred-module-settings.php:397
@@ -3259,6 +3666,7 @@ msgid "Install & Run"
3259
  msgstr ""
3260
 
3261
  #: ../includes/mycred-log.php:389
 
3262
  msgid "Showing %d %s"
3263
  msgstr ""
3264
 
@@ -3281,6 +3689,7 @@ msgid "Current page"
3281
  msgstr ""
3282
 
3283
  #: ../includes/mycred-log.php:424
 
3284
  msgctxt "paging"
3285
  msgid "%1$s of %2$s"
3286
  msgstr ""
@@ -3319,8 +3728,8 @@ msgstr ""
3319
 
3320
  #: ../includes/mycred-log.php:609
3321
  msgid ""
3322
- "Log entries are exported to a CSV file and depending on the number of entries "
3323
- "selected, the process may take a few seconds."
3324
  msgstr ""
3325
 
3326
  #: ../includes/mycred-log.php:613
@@ -3343,7 +3752,8 @@ msgstr ""
3343
  msgid "search log entries"
3344
  msgstr ""
3345
 
3346
- #: ../includes/mycred-log.php:842 ../modules/mycred-module-buddypress.php:232 ../modules/mycred-module-buddypress.php:245
 
3347
  msgid "All"
3348
  msgstr ""
3349
 
@@ -3368,10 +3778,12 @@ msgid "Network Settings"
3368
  msgstr ""
3369
 
3370
  #: ../includes/mycred-network.php:169
 
3371
  msgid "%s Network"
3372
  msgstr ""
3373
 
3374
  #: ../includes/mycred-network.php:175
 
3375
  msgid "Note! %s has not yet been setup."
3376
  msgstr ""
3377
 
@@ -3380,6 +3792,7 @@ msgid "Network Settings Updated"
3380
  msgstr ""
3381
 
3382
  #: ../includes/mycred-network.php:181
 
3383
  msgid "Configure network settings for %s."
3384
  msgstr ""
3385
 
@@ -3388,9 +3801,10 @@ msgid "Master Template"
3388
  msgstr ""
3389
 
3390
  #: ../includes/mycred-network.php:199
 
3391
  msgid ""
3392
- "If enabled, %s will use your main site's settings for all other sites in your "
3393
- "network."
3394
  msgstr ""
3395
 
3396
  #: ../includes/mycred-network.php:202
@@ -3398,6 +3812,7 @@ msgid "Central Logging"
3398
  msgstr ""
3399
 
3400
  #: ../includes/mycred-network.php:213
 
3401
  msgid "If enabled, %s will log all site actions in your main site's log."
3402
  msgstr ""
3403
 
@@ -3406,6 +3821,7 @@ msgid "Site Block"
3406
  msgstr ""
3407
 
3408
  #: ../includes/mycred-network.php:220
 
3409
  msgid "Comma separated list of blog ids where %s is to be disabled."
3410
  msgstr ""
3411
 
@@ -3414,6 +3830,7 @@ msgid "Save Network Settings"
3414
  msgstr ""
3415
 
3416
  #: ../includes/mycred-overview.php:25
 
3417
  msgid "%s Overview"
3418
  msgstr ""
3419
 
@@ -3429,7 +3846,8 @@ msgstr ""
3429
  msgid "Deducted"
3430
  msgstr ""
3431
 
3432
- #: ../includes/mycred-overview.php:120 ../includes/mycred-overview.php:127 ../modules/mycred-module-addons.php:235
 
3433
  msgid "Transfers"
3434
  msgstr ""
3435
 
@@ -3488,7 +3906,9 @@ msgid "Incoming URI"
3488
  msgstr ""
3489
 
3490
  #: ../includes/mycred-remote.php:572
3491
- msgid "The incoming call address. Remote calls made to any other URL will be ignored."
 
 
3492
  msgstr ""
3493
 
3494
  #: ../includes/mycred-remote.php:575
@@ -3534,10 +3954,12 @@ msgid "A video ID is required for this shortcode"
3534
  msgstr ""
3535
 
3536
  #: ../includes/mycred-widgets.php:21
 
3537
  msgid "Show the current users %s balance"
3538
  msgstr ""
3539
 
3540
  #: ../includes/mycred-widgets.php:23
 
3541
  msgid "(%s) My Balance"
3542
  msgstr ""
3543
 
@@ -3590,10 +4012,12 @@ msgid "Message"
3590
  msgstr ""
3591
 
3592
  #: ../includes/mycred-widgets.php:323
 
3593
  msgid "Show a list of users sorted by their %s balance"
3594
  msgstr ""
3595
 
3596
  #: ../includes/mycred-widgets.php:325
 
3597
  msgid "(%s) Leaderboard"
3598
  msgstr ""
3599
 
@@ -3627,8 +4051,8 @@ msgstr ""
3627
 
3628
  #: ../includes/mycred-widgets.php:446
3629
  msgid ""
3630
- "If the current user is not in this leaderboard, you can select to append them "
3631
- "at the end with their current position."
3632
  msgstr ""
3633
 
3634
  #: ../includes/mycred-widgets.php:495
@@ -3636,6 +4060,7 @@ msgid "Shows the current users balances for each point type."
3636
  msgstr ""
3637
 
3638
  #: ../includes/mycred-widgets.php:497
 
3639
  msgid "(%s) Wallet"
3640
  msgstr ""
3641
 
@@ -3647,29 +4072,39 @@ msgstr ""
3647
  msgid "Row Layout"
3648
  msgstr ""
3649
 
3650
- #: ../includes/importers/mycred-balances.php:81 ../includes/importers/mycred-balances.php:159 ../includes/importers/mycred-balances.php:198 ../includes/importers/mycred-balances.php:213 ../includes/importers/mycred-log-entries.php:81 ../includes/importers/mycred-log-entries.php:126 ../includes/importers/mycred-log-entries.php:165 ../includes/importers/mycred-log-entries.php:180
 
 
 
 
 
3651
  msgid "Sorry, there has been an error."
3652
  msgstr ""
3653
 
3654
- #: ../includes/importers/mycred-balances.php:82 ../includes/importers/mycred-log-entries.php:82
 
3655
  msgid "The file does not exist, please try again."
3656
  msgstr ""
3657
 
3658
- #: ../includes/importers/mycred-balances.php:160 ../includes/importers/mycred-log-entries.php:127
 
3659
  msgid "The CSV is invalid."
3660
  msgstr ""
3661
 
3662
  #: ../includes/importers/mycred-balances.php:171
 
3663
  msgid ""
3664
  "Import complete - A total of <strong>%d</strong> balances were successfully "
3665
  "imported. <strong>%d</strong> was skipped."
3666
  msgstr ""
3667
 
3668
- #: ../includes/importers/mycred-balances.php:181 ../includes/importers/mycred-cubepoints.php:293 ../includes/importers/mycred-log-entries.php:148
 
3669
  msgid "View Log"
3670
  msgstr ""
3671
 
3672
- #: ../includes/importers/mycred-balances.php:181 ../includes/importers/mycred-cubepoints.php:293 ../includes/importers/mycred-log-entries.php:148
 
3673
  msgid "Import More"
3674
  msgstr ""
3675
 
@@ -3681,25 +4116,31 @@ msgstr ""
3681
  msgid "Import balances from a CSV file."
3682
  msgstr ""
3683
 
3684
- #: ../includes/importers/mycred-balances.php:252 ../includes/importers/mycred-log-entries.php:219
 
3685
  msgid ""
3686
  "Before you can upload your import file, you will need to fix the following "
3687
  "error:"
3688
  msgstr ""
3689
 
3690
- #: ../includes/importers/mycred-balances.php:261 ../includes/importers/mycred-log-entries.php:228
 
3691
  msgid "Choose a file from your computer:"
3692
  msgstr ""
3693
 
3694
- #: ../includes/importers/mycred-balances.php:267 ../includes/importers/mycred-log-entries.php:234
 
 
3695
  msgid "Maximum size: %s"
3696
  msgstr ""
3697
 
3698
- #: ../includes/importers/mycred-balances.php:272 ../includes/importers/mycred-log-entries.php:239
 
3699
  msgid "OR enter path to file:"
3700
  msgstr ""
3701
 
3702
- #: ../includes/importers/mycred-balances.php:279 ../includes/importers/mycred-log-entries.php:246
 
3703
  msgid "Delimiter"
3704
  msgstr ""
3705
 
@@ -3715,7 +4156,8 @@ msgstr ""
3715
  msgid "Adjust current balances according to the amount in this CSV file"
3716
  msgstr ""
3717
 
3718
- #: ../includes/importers/mycred-balances.php:292 ../includes/importers/mycred-log-entries.php:252
 
3719
  msgid "Upload file and import"
3720
  msgstr ""
3721
 
@@ -3727,7 +4169,9 @@ msgstr ""
3727
  msgid "No log entries were imported!"
3728
  msgstr ""
3729
 
3730
- #: ../includes/importers/mycred-cubepoints.php:282 ../includes/importers/mycred-log-entries.php:138
 
 
3731
  msgid ""
3732
  "Import complete - A total of <strong>%d</strong> entries were successfully "
3733
  "imported. <strong>%d</strong> was skipped."
@@ -3762,7 +4206,9 @@ msgid "Import"
3762
  msgstr ""
3763
 
3764
  #: ../includes/importers/mycred-cubepoints.php:360
3765
- msgid "Warning! Importing CubePoints balances will replace your users myCRED balance!"
 
 
3766
  msgstr ""
3767
 
3768
  #: ../includes/importers/mycred-cubepoints.php:378
@@ -3784,8 +4230,8 @@ msgstr ""
3784
  #: ../modules/mycred-module-addons.php:158
3785
  msgid ""
3786
  "The <strong>buy</strong>CRED Add-on allows your users to buy points using "
3787
- "PayPal, Skrill (Moneybookers) or NETbilling. <strong>buy</strong>CRED can also "
3788
- "let your users buy points for other members."
3789
  msgstr ""
3790
 
3791
  #: ../modules/mycred-module-addons.php:169
@@ -3811,8 +4257,8 @@ msgstr ""
3811
 
3812
  #: ../modules/mycred-module-addons.php:214
3813
  msgid ""
3814
- "Create ranks for users reaching a certain number of %_plural% with the option "
3815
- "to add logos for each rank."
3816
  msgstr ""
3817
 
3818
  #: ../modules/mycred-module-addons.php:225
@@ -3829,6 +4275,7 @@ msgid ""
3829
  msgstr ""
3830
 
3831
  #: ../modules/mycred-module-addons.php:272
 
3832
  msgid "%s Add-ons"
3833
  msgstr ""
3834
 
@@ -3845,6 +4292,7 @@ msgid "Add-ons can expand your current installation with further features."
3845
  msgstr ""
3846
 
3847
  #: ../modules/mycred-module-addons.php:306
 
3848
  msgid "You can find more add-ons in our %s."
3849
  msgstr ""
3850
 
@@ -3885,6 +4333,7 @@ msgid "My History"
3885
  msgstr ""
3886
 
3887
  #: ../modules/mycred-module-buddypress.php:31
 
3888
  msgid "%s's History"
3889
  msgstr ""
3890
 
@@ -3905,10 +4354,12 @@ msgid "BuddyPress"
3905
  msgstr ""
3906
 
3907
  #: ../modules/mycred-module-buddypress.php:389
 
3908
  msgid "%singular% Balance"
3909
  msgstr ""
3910
 
3911
  #: ../modules/mycred-module-buddypress.php:405
 
3912
  msgid "Members and visitors can other members %_singular% balance."
3913
  msgstr ""
3914
 
@@ -3929,6 +4380,7 @@ msgid "Title shown to me"
3929
  msgstr ""
3930
 
3931
  #: ../modules/mycred-module-buddypress.php:445
 
3932
  msgid "Title shown to others. Use %s to show the first name."
3933
  msgstr ""
3934
 
@@ -3952,51 +4404,62 @@ msgstr ""
3952
  msgid "Number of history entries to show"
3953
  msgstr ""
3954
 
3955
- #: ../modules/mycred-module-hooks.php:25 ../modules/mycred-module-hooks.php:26 ../modules/mycred-module-hooks.php:27
 
3956
  msgid "Hooks"
3957
  msgstr ""
3958
 
3959
  #: ../modules/mycred-module-hooks.php:87
 
3960
  msgid "%plural% for registrations"
3961
  msgstr ""
3962
 
3963
  #: ../modules/mycred-module-hooks.php:88
 
3964
  msgid "Award %_plural% for users joining your website."
3965
  msgstr ""
3966
 
3967
  #: ../modules/mycred-module-hooks.php:94
 
3968
  msgid "%plural% for logins"
3969
  msgstr ""
3970
 
3971
  #: ../modules/mycred-module-hooks.php:95
 
3972
  msgid ""
3973
  "Award %_plural% for logging in to your website. You can also set an optional "
3974
  "limit."
3975
  msgstr ""
3976
 
3977
  #: ../modules/mycred-module-hooks.php:101
 
3978
  msgid "%plural% for publishing content"
3979
  msgstr ""
3980
 
3981
  #: ../modules/mycred-module-hooks.php:102
 
3982
  msgid ""
3983
  "Award %_plural% for publishing content on your website. If your custom post "
3984
  "type is not shown bellow, make sure it is set to \"Public\"."
3985
  msgstr ""
3986
 
3987
  #: ../modules/mycred-module-hooks.php:108
 
3988
  msgid "%plural% for comments"
3989
  msgstr ""
3990
 
3991
  #: ../modules/mycred-module-hooks.php:108
 
3992
  msgid "%plural% for Disqus comments"
3993
  msgstr ""
3994
 
3995
  #: ../modules/mycred-module-hooks.php:109
 
3996
  msgid "Award %_plural% for making comments."
3997
  msgstr ""
3998
 
3999
  #: ../modules/mycred-module-hooks.php:115
 
4000
  msgid "%plural% for clicking on links"
4001
  msgstr ""
4002
 
@@ -4007,16 +4470,18 @@ msgid ""
4007
  msgstr ""
4008
 
4009
  #: ../modules/mycred-module-hooks.php:122
 
4010
  msgid "%plural% for viewing Videos"
4011
  msgstr ""
4012
 
4013
  #: ../modules/mycred-module-hooks.php:123
4014
  msgid ""
4015
- "Award %_plural% to users who watches videos embedded using the [mycred_video] "
4016
- "shortcode."
4017
  msgstr ""
4018
 
4019
  #: ../modules/mycred-module-hooks.php:129
 
4020
  msgid "%plural% for referrals"
4021
  msgstr ""
4022
 
@@ -4025,6 +4490,7 @@ msgid "Award %_plural% to users who refer either visitors and/or new member sign
4025
  msgstr ""
4026
 
4027
  #: ../modules/mycred-module-hooks.php:163
 
4028
  msgid "%s Hooks"
4029
  msgstr ""
4030
 
@@ -4034,23 +4500,61 @@ msgid ""
4034
  "depending on their actions around your website."
4035
  msgstr ""
4036
 
4037
- #: ../modules/mycred-module-hooks.php:326 ../modules/mycred-module-hooks.php:638 ../modules/mycred-module-hooks.php:651 ../modules/mycred-module-hooks.php:687 ../modules/mycred-module-hooks.php:1067 ../modules/mycred-module-hooks.php:1084 ../modules/mycred-module-hooks.php:1101 ../modules/mycred-module-hooks.php:2212 ../modules/mycred-module-hooks.php:2241 ../plugins/mycred-hook-badgeOS.php:281 ../plugins/mycred-hook-bbPress.php:471 ../plugins/mycred-hook-bbPress.php:484 ../plugins/mycred-hook-bbPress.php:497 ../plugins/mycred-hook-bbPress.php:515 ../plugins/mycred-hook-bbPress.php:528 ../plugins/mycred-hook-bbPress.php:547 ../plugins/mycred-hook-bbPress.php:575 ../plugins/mycred-hook-buddypress-gallery.php:104 ../plugins/mycred-hook-buddypress-links.php:254 ../plugins/mycred-hook-buddypress-links.php:267 ../plugins/mycred-hook-buddypress-links.php:280 ../plugins/mycred-hook-buddypress-links.php:291 ../plugins/mycred-hook-buddypress-links.php:304 ../plugins/mycred-hook-buddypress-links.php:317 ../plugins/mycred-hook-buddypress-media.php:170 ../plugins/mycred-hook-buddypress-media.php:180 ../plugins/mycred-hook-buddypress-media.php:190 ../plugins/mycred-hook-buddypress-media.php:203 ../plugins/mycred-hook-buddypress-media.php:213 ../plugins/mycred-hook-buddypress-media.php:223 ../plugins/mycred-hook-buddypress.php:381 ../plugins/mycred-hook-buddypress.php:394 ../plugins/mycred-hook-buddypress.php:407 ../plugins/mycred-hook-buddypress.php:420 ../plugins/mycred-hook-buddypress.php:433 ../plugins/mycred-hook-buddypress.php:446 ../plugins/mycred-hook-buddypress.php:459 ../plugins/mycred-hook-buddypress.php:472 ../plugins/mycred-hook-buddypress.php:926 ../plugins/mycred-hook-buddypress.php:939 ../plugins/mycred-hook-buddypress.php:952 ../plugins/mycred-hook-buddypress.php:965 ../plugins/mycred-hook-buddypress.php:978 ../plugins/mycred-hook-buddypress.php:991 ../plugins/mycred-hook-buddypress.php:1005 ../plugins/mycred-hook-buddypress.php:1018 ../plugins/mycred-hook-buddypress.php:1031 ../plugins/mycred-hook-buddypress.php:1044 ../plugins/mycred-hook-contact-form7.php:137 ../plugins/mycred-hook-gravityforms.php:113 ../plugins/mycred-hook-invite-anyone.php:160 ../plugins/mycred-hook-invite-anyone.php:181 ../plugins/mycred-hook-jetpack.php:506 ../plugins/mycred-hook-jetpack.php:519 ../plugins/mycred-hook-simplepress.php:330 ../plugins/mycred-hook-simplepress.php:343 ../plugins/mycred-hook-simplepress.php:356 ../plugins/mycred-hook-simplepress.php:380
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
4038
  msgid "Log template"
4039
  msgstr ""
4040
 
4041
- #: ../modules/mycred-module-hooks.php:527 ../modules/mycred-module-hooks.php:2220 ../modules/mycred-module-hooks.php:2249 ../plugins/mycred-hook-invite-anyone.php:165 ../plugins/mycred-hook-invite-anyone.php:186
 
 
4042
  msgid "Limit"
4043
  msgstr ""
4044
 
4045
  #: ../modules/mycred-module-hooks.php:632
 
4046
  msgid "%plural% for Posts"
4047
  msgstr ""
4048
 
4049
  #: ../modules/mycred-module-hooks.php:645
 
4050
  msgid "%plural% for Pages"
4051
  msgstr ""
4052
 
4053
  #: ../modules/mycred-module-hooks.php:681
 
4054
  msgid "%plural% for %s"
4055
  msgstr ""
4056
 
@@ -4064,11 +4568,13 @@ msgstr ""
4064
  msgid "Approved Comment"
4065
  msgstr ""
4066
 
4067
- #: ../modules/mycred-module-hooks.php:1058 ../modules/mycred-module-hooks.php:1075 ../modules/mycred-module-hooks.php:1092
 
4068
  msgid "Comment Author"
4069
  msgstr ""
4070
 
4071
- #: ../modules/mycred-module-hooks.php:1062 ../modules/mycred-module-hooks.php:1079 ../modules/mycred-module-hooks.php:1096
 
4072
  msgid "Content Author"
4073
  msgstr ""
4074
 
@@ -4099,7 +4605,9 @@ msgid "Number of comments per day that grants %_plural%. Use zero for unlimited.
4099
  msgstr ""
4100
 
4101
  #: ../modules/mycred-module-hooks.php:1122
4102
- msgid "%plural% is to be awarded even when comment authors reply to their own comment."
 
 
4103
  msgstr ""
4104
 
4105
  #: ../modules/mycred-module-hooks.php:1193
@@ -4112,11 +4620,12 @@ msgstr ""
4112
 
4113
  #: ../modules/mycred-module-hooks.php:1386
4114
  msgid ""
4115
- "The default amount to award for clicking on links. You can override this in the "
4116
- "shortcode."
4117
  msgstr ""
4118
 
4119
  #: ../modules/mycred-module-hooks.php:1393
 
4120
  msgid "Custom tags: %url%, %title% or %id%."
4121
  msgstr ""
4122
 
@@ -4127,8 +4636,9 @@ msgstr ""
4127
  #: ../modules/mycred-module-hooks.php:1404
4128
  msgid ""
4129
  "If no ID is set when using the mycred_link shortcode, the shortcode will "
4130
- "generate one automatically based on the value set under href. If you are using "
4131
- "this feature for \"sharing\" content, it is recommended that you limit by ID."
 
4132
  msgstr ""
4133
 
4134
  #: ../modules/mycred-module-hooks.php:1406 ../modules/mycred-module-hooks.php:1762
@@ -4144,6 +4654,7 @@ msgid "Award Logic"
4144
  msgstr ""
4145
 
4146
  #: ../modules/mycred-module-hooks.php:1738
 
4147
  msgid "Select when %_plural% should be awarded or deducted."
4148
  msgstr ""
4149
 
@@ -4175,9 +4686,9 @@ msgstr ""
4175
 
4176
  #: ../modules/mycred-module-hooks.php:1758
4177
  msgid ""
4178
- "Do not set this value to zero! A lot of thing can happen while a user watches a "
4179
- "movie and sometimes a few seconds can drop of the counter due to buffering or "
4180
- "play back errors."
4181
  msgstr ""
4182
 
4183
  #: ../modules/mycred-module-hooks.php:1826
@@ -4246,8 +4757,8 @@ msgstr ""
4246
 
4247
  #: ../modules/mycred-module-hooks.php:2298
4248
  msgid ""
4249
- "Option to inser the referral link in users profiles. Links will only be visible "
4250
- "to users viewing their own profiles or administrators."
4251
  msgstr ""
4252
 
4253
  #: ../modules/mycred-module-hooks.php:2304
@@ -4284,7 +4795,8 @@ msgstr ""
4284
  msgid "Available Shortcodes"
4285
  msgstr ""
4286
 
4287
- #: ../modules/mycred-module-log.php:185 ../modules/mycred-module-log.php:206 ../modules/mycred-module-settings.php:61 ../modules/mycred-module-settings.php:102
 
4288
  msgid "Access denied for this action"
4289
  msgstr ""
4290
 
@@ -4304,7 +4816,8 @@ msgstr ""
4304
  msgid "Entries"
4305
  msgstr ""
4306
 
4307
- #: ../modules/mycred-module-log.php:301 ../modules/mycred-module-log.php:381 ../modules/mycred-module-log.php:625 ../modules/mycred-module-settings.php:570
 
4308
  msgid "Export"
4309
  msgstr ""
4310
 
@@ -4313,6 +4826,7 @@ msgid "Search results for"
4313
  msgstr ""
4314
 
4315
  #: ../modules/mycred-module-log.php:375
 
4316
  msgid "%s Log"
4317
  msgstr ""
4318
 
@@ -4341,10 +4855,12 @@ msgid "Update Log Entry"
4341
  msgstr ""
4342
 
4343
  #: ../modules/mycred-module-log.php:619
 
4344
  msgid "My %s History"
4345
  msgstr ""
4346
 
4347
- #: ../modules/mycred-module-settings.php:65 ../modules/mycred-module-settings.php:106 ../modules/mycred-module-settings.php:148
 
4348
  msgid "Missing point type"
4349
  msgstr ""
4350
 
@@ -4357,10 +4873,12 @@ msgid "No users found to export"
4357
  msgstr ""
4358
 
4359
  #: ../modules/mycred-module-settings.php:330
 
4360
  msgid "%s Settings"
4361
  msgstr ""
4362
 
4363
  #: ../modules/mycred-module-settings.php:333
 
4364
  msgid "Adjust your core or add-on settings. Follow us on: %s %s"
4365
  msgstr ""
4366
 
@@ -4373,6 +4891,7 @@ msgid "Name"
4373
  msgstr ""
4374
 
4375
  #: ../modules/mycred-module-settings.php:345
 
4376
  msgid "Accessible though the %singular% template tag."
4377
  msgstr ""
4378
 
@@ -4400,7 +4919,8 @@ msgstr[1] ""
4400
  msgid "Edit Settings"
4401
  msgstr ""
4402
 
4403
- #: ../modules/mycred-module-settings.php:380 ../modules/mycred-module-settings.php:385
 
4404
  msgid "Capability to check for."
4405
  msgstr ""
4406
 
@@ -4444,7 +4964,8 @@ msgstr ""
4444
  msgid "Default"
4445
  msgstr ""
4446
 
4447
- #: ../modules/mycred-module-settings.php:480 ../modules/mycred-module-settings.php:499 ../modules/mycred-module-settings.php:521
 
4448
  msgid "Meta Key"
4449
  msgstr ""
4450
 
@@ -4478,8 +4999,8 @@ msgstr ""
4478
 
4479
  #: ../modules/mycred-module-settings.php:562
4480
  msgid ""
4481
- "Use ID if you intend to use this export as a backup of your current site while "
4482
- "Email is recommended if you want to export to a different site."
4483
  msgstr ""
4484
 
4485
  #: ../modules/mycred-module-settings.php:565
@@ -4487,9 +5008,10 @@ msgid "Import Log Entry"
4487
  msgstr ""
4488
 
4489
  #: ../modules/mycred-module-settings.php:567
 
4490
  msgid ""
4491
- "Optional log entry to use if you intend to import this file in a different %s "
4492
- "installation."
4493
  msgstr ""
4494
 
4495
  #: ../plugins/mycred-hook-badgeOS.php:20
@@ -4503,7 +5025,10 @@ msgid ""
4503
  msgstr ""
4504
 
4505
  #: ../plugins/mycred-hook-badgeOS.php:98
4506
- msgid "Please setup your <a href=\"%s\">default settings</a> before using this feature."
 
 
 
4507
  msgstr ""
4508
 
4509
  #: ../plugins/mycred-hook-badgeOS.php:109 ../plugins/mycred-hook-badgeOS.php:111
@@ -4519,6 +5044,7 @@ msgid "Deduction Log Template"
4519
  msgstr ""
4520
 
4521
  #: ../plugins/mycred-hook-badgeOS.php:261
 
4522
  msgid "Default %s for %s"
4523
  msgstr ""
4524
 
@@ -4535,50 +5061,65 @@ msgid "bbPress"
4535
  msgstr ""
4536
 
4537
  #: ../plugins/mycred-hook-bbPress.php:19
 
4538
  msgid "Awards %_plural% for bbPress actions."
4539
  msgstr ""
4540
 
4541
  #: ../plugins/mycred-hook-bbPress.php:464
 
4542
  msgid "%plural% for New Forum"
4543
  msgstr ""
4544
 
4545
  #: ../plugins/mycred-hook-bbPress.php:477
 
4546
  msgid "%plural% for Forum Deletion"
4547
  msgstr ""
4548
 
4549
- #: ../plugins/mycred-hook-bbPress.php:490 ../plugins/mycred-hook-simplepress.php:323
 
 
4550
  msgid "%plural% for New Topic"
4551
  msgstr ""
4552
 
4553
  #: ../plugins/mycred-hook-bbPress.php:504
 
4554
  msgid "Forum authors can receive %_plural% for creating new topics."
4555
  msgstr ""
4556
 
4557
- #: ../plugins/mycred-hook-bbPress.php:508 ../plugins/mycred-hook-bbPress.php:568 ../plugins/mycred-hook-simplepress.php:336
 
 
4558
  msgid "%plural% for Topic Deletion"
4559
  msgstr ""
4560
 
4561
  #: ../plugins/mycred-hook-bbPress.php:521
 
4562
  msgid "%plural% for Favorited Topic"
4563
  msgstr ""
4564
 
4565
- #: ../plugins/mycred-hook-bbPress.php:534 ../plugins/mycred-hook-bbPress.php:558 ../plugins/mycred-hook-buddypress.php:375 ../plugins/mycred-hook-simplepress.php:367
 
 
4566
  msgid "Daily Limit"
4567
  msgstr ""
4568
 
4569
- #: ../plugins/mycred-hook-bbPress.php:536 ../plugins/mycred-hook-bbPress.php:560 ../plugins/mycred-hook-simplepress.php:369
 
4570
  msgid "Use zero for unlimited"
4571
  msgstr ""
4572
 
4573
  #: ../plugins/mycred-hook-bbPress.php:540
 
4574
  msgid "%plural% for New Reply"
4575
  msgstr ""
4576
 
4577
  #: ../plugins/mycred-hook-bbPress.php:554
 
4578
  msgid "Topic authors can receive %_plural% for replying to their own Topic"
4579
  msgstr ""
4580
 
4581
  #: ../plugins/mycred-hook-bbPress.php:564
 
4582
  msgid "Show users %_plural% balance in replies"
4583
  msgstr ""
4584
 
@@ -4587,12 +5128,14 @@ msgid "BuddyPress: Gallery Actions"
4587
  msgstr ""
4588
 
4589
  #: ../plugins/mycred-hook-buddypress-gallery.php:20
 
4590
  msgid ""
4591
  "Awards %_plural% for creating a new gallery either using BP Album+ or BP "
4592
  "Gallery."
4593
  msgstr ""
4594
 
4595
  #: ../plugins/mycred-hook-buddypress-gallery.php:97
 
4596
  msgid "%plural% for New Gallery"
4597
  msgstr ""
4598
 
@@ -4601,14 +5144,17 @@ msgid "BuddyPress: Links"
4601
  msgstr ""
4602
 
4603
  #: ../plugins/mycred-hook-buddypress-links.php:20
 
4604
  msgid "Awards %_plural% for link related actions."
4605
  msgstr ""
4606
 
4607
  #: ../plugins/mycred-hook-buddypress-links.php:247
 
4608
  msgid "%plural% for New Links"
4609
  msgstr ""
4610
 
4611
  #: ../plugins/mycred-hook-buddypress-links.php:260
 
4612
  msgid "%plural% for Vote on Link"
4613
  msgstr ""
4614
 
@@ -4625,10 +5171,12 @@ msgid "Vote Down"
4625
  msgstr ""
4626
 
4627
  #: ../plugins/mycred-hook-buddypress-links.php:297
 
4628
  msgid "%plural% for Updating Links"
4629
  msgstr ""
4630
 
4631
  #: ../plugins/mycred-hook-buddypress-links.php:310
 
4632
  msgid "%plural% for Deleting Links"
4633
  msgstr ""
4634
 
@@ -4637,6 +5185,7 @@ msgid "rtMedia Galleries"
4637
  msgstr ""
4638
 
4639
  #: ../plugins/mycred-hook-buddypress-media.php:19
 
4640
  msgid "Award / Deduct %_plural% for users creating albums or uploading new photos."
4641
  msgstr ""
4642
 
@@ -4677,6 +5226,7 @@ msgid "BuddyPress: Members"
4677
  msgstr ""
4678
 
4679
  #: ../plugins/mycred-hook-buddypress.php:21
 
4680
  msgid "Awards %_plural% for profile related actions."
4681
  msgstr ""
4682
 
@@ -4685,12 +5235,14 @@ msgid "BuddyPress: Groups"
4685
  msgstr ""
4686
 
4687
  #: ../plugins/mycred-hook-buddypress.php:29
 
4688
  msgid ""
4689
  "Awards %_plural% for group related actions. Use minus to deduct %_plural% or "
4690
  "zero to disable a specific hook."
4691
  msgstr ""
4692
 
4693
  #: ../plugins/mycred-hook-buddypress.php:369
 
4694
  msgid "%plural% for Profile Updates"
4695
  msgstr ""
4696
 
@@ -4699,34 +5251,42 @@ msgid "Daily limit. Use zero for unlimited."
4699
  msgstr ""
4700
 
4701
  #: ../plugins/mycred-hook-buddypress.php:387
 
4702
  msgid "%plural% for New Avatar"
4703
  msgstr ""
4704
 
4705
  #: ../plugins/mycred-hook-buddypress.php:400
 
4706
  msgid "%plural% for New Friendships"
4707
  msgstr ""
4708
 
4709
  #: ../plugins/mycred-hook-buddypress.php:413
 
4710
  msgid "%plural% for Leaving Friendship"
4711
  msgstr ""
4712
 
4713
  #: ../plugins/mycred-hook-buddypress.php:426
 
4714
  msgid "%plural% for New Comment"
4715
  msgstr ""
4716
 
4717
  #: ../plugins/mycred-hook-buddypress.php:439
 
4718
  msgid "%plural% for Deleting Comment"
4719
  msgstr ""
4720
 
4721
  #: ../plugins/mycred-hook-buddypress.php:452
 
4722
  msgid "%plural% for New Messages"
4723
  msgstr ""
4724
 
4725
  #: ../plugins/mycred-hook-buddypress.php:465
 
4726
  msgid "%plural% for Sending Gift"
4727
  msgstr ""
4728
 
4729
  #: ../plugins/mycred-hook-buddypress.php:912
 
4730
  msgid "%plural% for Creating Groups"
4731
  msgstr ""
4732
 
@@ -4745,26 +5305,32 @@ msgid "Use zero to award %_plural% when group is created."
4745
  msgstr ""
4746
 
4747
  #: ../plugins/mycred-hook-buddypress.php:932
 
4748
  msgid "%plural% for Deleting Groups"
4749
  msgstr ""
4750
 
4751
  #: ../plugins/mycred-hook-buddypress.php:945
 
4752
  msgid "%plural% for New Forum Topic"
4753
  msgstr ""
4754
 
4755
  #: ../plugins/mycred-hook-buddypress.php:958
 
4756
  msgid "%plural% for Editing Forum Topic"
4757
  msgstr ""
4758
 
4759
  #: ../plugins/mycred-hook-buddypress.php:971
 
4760
  msgid "%plural% for New Forum Post"
4761
  msgstr ""
4762
 
4763
  #: ../plugins/mycred-hook-buddypress.php:984
 
4764
  msgid "%plural% for Editing Forum Post"
4765
  msgstr ""
4766
 
4767
  #: ../plugins/mycred-hook-buddypress.php:997
 
4768
  msgid "%plural% for Joining Groups"
4769
  msgstr ""
4770
 
@@ -4775,14 +5341,17 @@ msgid ""
4775
  msgstr ""
4776
 
4777
  #: ../plugins/mycred-hook-buddypress.php:1011
 
4778
  msgid "%plural% for Leaving Groups"
4779
  msgstr ""
4780
 
4781
  #: ../plugins/mycred-hook-buddypress.php:1024
 
4782
  msgid "%plural% for New Group Avatar"
4783
  msgstr ""
4784
 
4785
  #: ../plugins/mycred-hook-buddypress.php:1037
 
4786
  msgid "%plural% for New Group Comment"
4787
  msgstr ""
4788
 
@@ -4791,10 +5360,12 @@ msgid "Contact Form 7 Form Submissions"
4791
  msgstr ""
4792
 
4793
  #: ../plugins/mycred-hook-contact-form7.php:19
 
4794
  msgid "Awards %_plural% for successful form submissions (by logged in users)."
4795
  msgstr ""
4796
 
4797
- #: ../plugins/mycred-hook-contact-form7.php:110 ../plugins/mycred-hook-gravityforms.php:86
 
4798
  msgid "No forms found."
4799
  msgstr ""
4800
 
@@ -4803,6 +5374,7 @@ msgid "Events Manager"
4803
  msgstr ""
4804
 
4805
  #: ../plugins/mycred-hook-events-manager-light.php:19
 
4806
  msgid "Awards %_plural% for users attending events."
4807
  msgstr ""
4808
 
@@ -4819,6 +5391,7 @@ msgid "GD Star Rating"
4819
  msgstr ""
4820
 
4821
  #: ../plugins/mycred-hook-gd-star-rating.php:19
 
4822
  msgid "Awards %_plural% for users rate items using the GD Star Rating plugin."
4823
  msgstr ""
4824
 
@@ -4835,6 +5408,7 @@ msgid "Gravityform Submissions"
4835
  msgstr ""
4836
 
4837
  #: ../plugins/mycred-hook-gravityforms.php:19
 
4838
  msgid "Awards %_plural% for successful form submissions."
4839
  msgstr ""
4840
 
@@ -4843,28 +5417,32 @@ msgid "Invite Anyone Plugin"
4843
  msgstr ""
4844
 
4845
  #: ../plugins/mycred-hook-invite-anyone.php:19
 
4846
  msgid ""
4847
  "Awards %_plural% for sending invitations and/or %_plural% if the invite is "
4848
  "accepted."
4849
  msgstr ""
4850
 
4851
- #: ../plugins/mycred-hook-invite-anyone.php:153
 
4852
  msgid "%plural% for Sending An Invite"
4853
  msgstr ""
4854
 
4855
- #: ../plugins/mycred-hook-invite-anyone.php:169
4856
  msgid "Maximum number of invites that grants %_plural%. Use zero for unlimited."
4857
  msgstr ""
4858
 
4859
- #: ../plugins/mycred-hook-invite-anyone.php:173
 
4860
  msgid "%plural% for Accepting An Invite"
4861
  msgstr ""
4862
 
4863
- #: ../plugins/mycred-hook-invite-anyone.php:177
 
4864
  msgid "%plural% for each invited user that accepts an invitation."
4865
  msgstr ""
4866
 
4867
- #: ../plugins/mycred-hook-invite-anyone.php:190
4868
  msgid ""
4869
  "Maximum number of accepted invitations that grants %_plural%. Use zero for "
4870
  "unlimited."
@@ -4875,7 +5453,10 @@ msgid "Jetpack Subscriptions"
4875
  msgstr ""
4876
 
4877
  #: ../plugins/mycred-hook-jetpack.php:19
4878
- msgid "Awards %_plural% for users signing up for site or comment updates using Jetpack."
 
 
 
4879
  msgstr ""
4880
 
4881
  #: ../plugins/mycred-hook-jetpack.php:499
@@ -4891,18 +5472,22 @@ msgid "Simple:Press"
4891
  msgstr ""
4892
 
4893
  #: ../plugins/mycred-hook-simplepress.php:19
 
4894
  msgid "Awards %_plural% for Simple:Press actions."
4895
  msgstr ""
4896
 
4897
  #: ../plugins/mycred-hook-simplepress.php:349
 
4898
  msgid "%plural% for New Topic Post"
4899
  msgstr ""
4900
 
4901
  #: ../plugins/mycred-hook-simplepress.php:363
 
4902
  msgid "Topic authors can receive %_plural% for posting on their own Topic"
4903
  msgstr ""
4904
 
4905
  #: ../plugins/mycred-hook-simplepress.php:373
 
4906
  msgid "%plural% for Topic Post Deletion"
4907
  msgstr ""
4908
 
@@ -4911,6 +5496,7 @@ msgid "WP Favorite Posts"
4911
  msgstr ""
4912
 
4913
  #: ../plugins/mycred-hook-wp-favorite-posts.php:19
 
4914
  msgid "Awards %_plural% for users adding posts to their favorites."
4915
  msgstr ""
4916
 
@@ -4927,5 +5513,6 @@ msgid "WP-Polls"
4927
  msgstr ""
4928
 
4929
  #: ../plugins/mycred-hook-wp-polls.php:19
 
4930
  msgid "Awards %_plural% for users voting in polls."
4931
  msgstr ""
3
  "Project-Id-Version: myCRED\n"
4
  "Report-Msgid-Bugs-To: http://mycred.me\n"
5
  "POT-Creation-Date: 2014-03-20 14:26+0100\n"
6
+ "PO-Revision-Date: Wed Jun 11 2014 16:25:46 GMT+0200 (CEST)\n"
7
+ "Last-Translator: Gabriel <gabriel.s@merovingi.com>\n"
8
  "Language-Team: LANGUAGE <support@mycred.me>\n"
9
  "Language: English (USA)\n"
10
  "Plural-Forms: nplurals=2; plural=n != 1\n"
14
  "X-Poedit-SourceCharset: UTF-8\n"
15
  "X-Generator: Loco - https://localise.biz/\n"
16
  "X-Poedit-Basepath: .\n"
17
+ "X-Poedit-KeywordsList: _:1;gettext:1;dgettext:2;ngettext:1,2;dngettext:2,3;"
18
+ "__:1;_e:1;_c:1;_n:1,2;_n_noop:1,2;_nc:1,2;__ngettext:1,2;__ngettext_noop:1,2;"
19
+ "_x:1,2c;_ex:1,2c;_nx:1,2,4c;_nx_noop:1,2,3c;_n_js:1,2;_nx_js:1,2,3c;"
20
+ "esc_attr__:1;esc_html__:1;esc_attr_e:1;esc_html_e:1;esc_attr_x:1,2c;"
21
+ "esc_html_x:1,2c;comments_number_link:2,3;t:1;st:1;trans:1;transChoice:1,2\n"
22
+ "X-Poedit-SearchPath-0: /Users/gabriel/Sites/paypana/wp-"
23
+ "content/plugins/mycred\n"
24
  "X-Poedit-SearchPath-1: .\n"
25
  "X-Loco-Target-Locale: en_US"
26
 
27
+ #: ../mycred.php:400
28
  msgid "Balance"
29
  msgstr ""
30
 
31
+ #: ../mycred.php:425
32
  msgid "%label% History"
33
  msgstr ""
34
 
35
+ #: ../mycred.php:478
36
  msgid "No balances available."
37
  msgstr ""
38
 
39
+ #: ../mycred.php:524
40
+ #, php-format
41
  msgid "About %s"
42
  msgstr ""
43
 
44
+ #: ../mycred.php:533
45
  msgid "Awesome People"
46
  msgstr ""
47
 
48
+ #: ../mycred.php:618 ../mycred.php:642 ../addons/ranks/myCRED-addon-ranks.php:230
49
+ #: ../addons/ranks/myCRED-addon-ranks.php:922 ../addons/sell-content/myCRED-addon-
50
+ #: sell-content.php:309 ../addons/transfer/myCRED-addon-transfer.php:132 ..
51
+ #: includes/mycred-shortcodes.php:535
52
  msgid "Processing..."
53
  msgstr ""
54
 
55
+ #: ../mycred.php:619
56
  msgid ""
57
+ "Warning! All entries in your log will be permanently removed! This can not "
58
+ "be undone!"
59
  msgstr ""
60
 
61
+ #: ../mycred.php:620
62
  msgid ""
63
  "All log entries belonging to deleted users will be permanently deleted! This "
64
  "can not be undone!"
65
  msgstr ""
66
 
67
+ #: ../mycred.php:621
68
  msgid "Warning! All user balances will be set to zero! This can not be undone!"
69
  msgstr ""
70
 
71
+ #: ../mycred.php:622
72
  msgid "Done!"
73
  msgstr ""
74
 
75
+ #: ../mycred.php:623 ../mycred.php:641 ../mycred.php:659
76
  msgid "Close"
77
  msgstr ""
78
 
79
+ #: ../mycred.php:624
80
  msgid "Export users %plural%"
81
  msgstr ""
82
 
83
+ #: ../mycred.php:640
84
  msgid "Edit Users Balance"
85
  msgstr ""
86
 
87
+ #: ../mycred.php:658
88
  msgid "Edit Log Entry"
89
  msgstr ""
90
 
91
+ #: ../mycred.php:660
92
  msgid "Updating..."
93
  msgstr ""
94
 
95
+ #: ../mycred.php:662
96
  msgid "Are you sure you want to delete this log entry? This can not be undone!"
97
  msgstr ""
98
 
99
+ #: ../mycred.php:663
100
  msgid "Log entry updated"
101
  msgstr ""
102
 
103
+ #: ../mycred.php:715 ../mycred.php:736 ../addons/email-notices/myCRED-addon-email-
104
+ #: notices.php:738 ../addons/gateway/event-booking/mycred-eventsmanager-pro.php:
105
+ #: 458 ../addons/gateway/event-booking/mycred-eventsmanager.php:537
106
  msgid "Setup"
107
  msgstr ""
108
 
109
+ #: ../mycred.php:717 ../addons/gateway/carts/mycred-marketpress.php:360 ..
110
+ #: includes/mycred-network.php:186 ../modules/mycred-module-settings.php:20 ..
111
+ #: modules/mycred-module-settings.php:21 ../modules/mycred-module-settings.php:22
112
  msgid "Settings"
113
  msgstr ""
114
 
115
+ #: ../mycred.php:740 ../modules/mycred-module-addons.php:360
116
  msgid "About"
117
  msgstr ""
118
 
119
+ #: ../mycred.php:741
120
  msgid "Tutorials"
121
  msgstr ""
122
 
123
+ #: ../mycred.php:742
124
  msgid "Codex"
125
  msgstr ""
126
 
127
+ #: ../mycred.php:743
128
  msgid "Store"
129
  msgstr ""
130
 
131
+ #: ../mycred.php:757
132
  msgid ""
133
+ "Make sure to backup your database and files before updating, in case "
134
+ "anything goes wrong!"
135
  msgstr ""
136
 
137
  #: ../abstracts/mycred-abstract-hook.php:70
142
  msgid "This Hook has no settings"
143
  msgstr ""
144
 
145
+ #: ../abstracts/mycred-abstract-hook.php:157 ../modules/mycred-module-hooks.php:
146
+ #: 1192
147
  msgid "No limit"
148
  msgstr ""
149
 
163
  msgid "Once per day (reset at midnight)"
164
  msgstr ""
165
 
166
+ #: ../abstracts/mycred-abstract-hook.php:168 ../addons/banking/abstracts/mycred-
167
+ #: abstract-service.php:342 ../addons/buy-creds/myCRED-addon-buy-creds.php:394 ..
168
+ #: addons/buy-creds/myCRED-addon-buy-creds.php:415 ../addons/buy-
169
+ #: creds/abstracts/mycred-abstract-payment-gateway.php:805 ../addons/buy-
170
+ #: creds/abstracts/mycred-abstract-payment-gateway.php:828 ../addons/buy-
171
+ #: creds/gateways/zombaio.php:375 ../addons/email-notices/myCRED-addon-email-
172
+ #: notices.php:193 ../addons/email-notices/myCRED-addon-email-notices.php:888
173
  msgid "Select"
174
  msgstr ""
175
 
177
  msgid "myCRED_Module() Error. A Module ID is required!"
178
  msgstr ""
179
 
180
+ #: ../abstracts/mycred-abstract-module.php:343 ../abstracts/mycred-abstract-
181
+ #: module.php:351
182
  msgid "Surprise"
183
  msgstr ""
184
 
190
  msgid "click to open"
191
  msgstr ""
192
 
193
+ #: ../abstracts/mycred-abstract-module.php:472 ../addons/banking/myCRED-addon-
194
+ #: banking.php:163 ../addons/buy-creds/myCRED-addon-buy-creds.php:492
195
  msgid "Settings Updated"
196
  msgstr ""
197
 
198
+ #: ../addons/banking/myCRED-addon-banking.php:42 ../addons/banking/myCRED-addon-
199
+ #: banking.php:43 ../addons/banking/myCRED-addon-banking.php:44 ../modules/mycred-
200
+ #: module-addons.php:146
201
  msgid "Banking"
202
  msgstr ""
203
 
206
  msgstr ""
207
 
208
  #: ../addons/banking/myCRED-addon-banking.php:104
209
+ #, php-format
210
  msgid ""
211
  "Apply an interest rate on your users %_plural% balances. Interest rate is "
212
  "annual and is compounded daily as long as this service is enabled. Positive "
213
+ "interest rate leads to users gaining %_plural% while a negative interest "
214
+ "rate will to users loosing %_plural%."
215
  msgstr ""
216
 
217
  #: ../addons/banking/myCRED-addon-banking.php:110
219
  msgstr ""
220
 
221
  #: ../addons/banking/myCRED-addon-banking.php:111
222
+ #, php-format
223
  msgid ""
224
+ "Give your users %_plural% on a regular basis with the option to set the "
225
+ "number of times you want this payout to run (cycles)."
226
  msgstr ""
227
 
228
+ #: ../addons/banking/myCRED-addon-banking.php:156 ../addons/buy-creds/myCRED-
229
+ #: addon-buy-creds.php:477 ../addons/buy-creds/myCRED-addon-buy-creds.php:607 ..
230
+ #: includes/mycred-network.php:160 ../modules/mycred-module-addons.php:266 ..
231
+ #: modules/mycred-module-hooks.php:157 ../modules/mycred-module-log.php:322 ..
232
+ #: modules/mycred-module-log.php:575 ../modules/mycred-module-settings.php:312
233
  msgid "Access Denied"
234
  msgstr ""
235
 
236
  #: ../addons/banking/myCRED-addon-banking.php:167
237
+ #, php-format
238
  msgid "%s Banking"
239
  msgstr ""
240
 
241
+ #: ../addons/banking/myCRED-addon-banking.php:168 ../modules/mycred-module-addons.
242
+ #: php:147
243
  msgid "Setup recurring payouts or offer / charge interest on user account balances."
244
  msgstr ""
245
 
251
  msgid "Warning! This add-on requires WP - Cron to work."
252
  msgstr ""
253
 
254
+ #: ../addons/banking/myCRED-addon-banking.php:188 ../addons/buy-creds/myCRED-
255
+ #: addon-buy-creds.php:553 ../modules/mycred-module-hooks.php:182
256
  msgid "Enable"
257
  msgstr ""
258
 
259
+ #: ../addons/banking/myCRED-addon-banking.php:201 ../modules/mycred-module-hooks.
260
+ #: php:197
261
  msgid "Update Changes"
262
  msgstr ""
263
 
313
  msgid "The interest rate can be either positive or negative and is compounded daily."
314
  msgstr ""
315
 
316
+ #: ../addons/banking/services/mycred-bank-service-interest.php:291 ..
317
+ #: addons/coupons/myCRED-addon-coupons.php:392
318
  msgid "Minimum Balance"
319
  msgstr ""
320
 
322
  msgid "The minimum requires balance for interest to apply."
323
  msgstr ""
324
 
325
+ #: ../addons/banking/services/mycred-bank-service-interest.php:298 ..
326
+ #: addons/banking/services/mycred-bank-service-payouts.php:252 ../addons/buy-
327
+ #: creds/myCRED-addon-buy-creds.php:372 ../addons/buy-creds/myCRED-addon-buy-
328
+ #: creds.php:431 ../addons/coupons/myCRED-addon-coupons.php:440 ..
329
+ #: addons/gateway/carts/mycred-marketpress.php:384 ..
330
+ #: addons/gateway/carts/mycred-marketpress.php:417 ..
331
+ #: addons/gateway/carts/mycred-woocommerce.php:98 ../addons/gateway/carts/mycred-
332
+ #: woocommerce.php:164 ../addons/gateway/carts/mycred-wpecommerce.php:367 ..
333
+ #: modules/mycred-module-hooks.php:520 ../modules/mycred-module-hooks.php:1389 ..
334
+ #: modules/mycred-module-hooks.php:1729 ../plugins/mycred-hook-badgeOS.php:115 ..
335
+ #: plugins/mycred-hook-badgeOS.php:117 ../plugins/mycred-hook-badgeOS.php:126 ..
336
+ #: plugins/mycred-hook-events-manager-light.php:153 ../plugins/mycred-hook-
337
+ #: events-manager-light.php:166 ../plugins/mycred-hook-gd-star-rating.php:109 ..
338
+ #: plugins/mycred-hook-gd-star-rating.php:122 ../plugins/mycred-hook-wp-favorite-
339
+ #: posts.php:135 ../plugins/mycred-hook-wp-favorite-posts.php:148 ..
340
+ #: plugins/mycred-hook-wp-polls.php:136
341
  msgid "Log Template"
342
  msgstr ""
343
 
344
+ #: ../addons/banking/services/mycred-bank-service-interest.php:305 ..
345
+ #: addons/banking/services/mycred-bank-service-payouts.php:259
346
  msgid "Run Time"
347
  msgstr ""
348
 
349
+ #: ../addons/banking/services/mycred-bank-service-interest.php:309 ..
350
+ #: addons/banking/services/mycred-bank-service-payouts.php:263
351
  msgid ""
352
+ "For large websites, if you are running into time out issues during payouts, "
353
+ "you can set the number of seconds a process can run. Use zero for unlimited, "
354
+ "but be careful especially if you are on a shared server."
355
  msgstr ""
356
 
357
  #: ../addons/banking/services/mycred-bank-service-payouts.php:21
366
  msgid "Pay Users"
367
  msgstr ""
368
 
369
+ #: ../addons/banking/services/mycred-bank-service-payouts.php:222 ../addons/buy-
370
+ #: creds/myCRED-addon-buy-creds.php:657 ../addons/buy-creds/myCRED-addon-buy-
371
+ #: creds.php:1160 ../addons/buy-creds/abstracts/mycred-abstract-payment-gateway.
372
+ #: php:425 ../includes/mycred-admin.php:371 ../includes/mycred-admin.php:482
373
  msgid "Amount"
374
  msgstr ""
375
 
377
  msgid "Can not be zero."
378
  msgstr ""
379
 
380
+ #: ../addons/banking/services/mycred-bank-service-payouts.php:228 ..
381
+ #: addons/banking/services/mycred-bank-service-payouts.php:241 ../modules/mycred-
382
+ #: module-hooks.php:1744
383
  msgid "Interval"
384
  msgstr ""
385
 
386
+ #: ../addons/banking/services/mycred-bank-service-payouts.php:233 ..
387
+ #: addons/banking/services/mycred-bank-service-payouts.php:242
388
  msgid "Cycles"
389
  msgstr ""
390
 
399
  #: ../addons/banking/services/mycred-bank-service-payouts.php:241
400
  msgid ""
401
  "Select how often you want to award %_plural%. Note that when this service is "
402
+ "enabled, the first payout will be in the beginning of the next period. So "
403
+ "with a \"Daily\" interval, the first payout will occur first thing in the "
404
+ "morning."
405
  msgstr ""
406
 
407
  #: ../addons/banking/services/mycred-bank-service-payouts.php:242
408
  msgid ""
409
+ "Cycles let you choose how many intervals this service should run. Each time "
410
+ "a cycle runs, the value will decrease until it hits zero, in which case this "
411
  "service will deactivate itself. Use -1 to run unlimited times."
412
  msgstr ""
413
 
417
 
418
  #: ../addons/banking/services/mycred-bank-service-payouts.php:243
419
  msgid ""
420
+ "You can always stop payouts by deactivating this service. Just remember that "
421
+ "if you deactivate while there are cycles left, this service will continue on "
422
+ "when it gets re-activated. Set cycles to zero to reset."
423
  msgstr ""
424
 
425
+ #: ../addons/banking/services/mycred-bank-service-payouts.php:245 ..
426
+ #: includes/mycred-install.php:559 ../modules/mycred-module-settings.php:393
427
  msgid "Excludes"
428
  msgstr ""
429
 
433
  "allowed!"
434
  msgstr ""
435
 
436
+ #: ../addons/buy-creds/myCRED-addon-buy-creds.php:55 ../addons/buy-creds/myCRED-
437
+ #: addon-buy-creds.php:56 ../addons/buy-creds/myCRED-addon-buy-creds.php:57
438
  msgid "Payment Gateways"
439
  msgstr ""
440
 
441
+ #: ../addons/buy-creds/myCRED-addon-buy-creds.php:192
442
  msgid "buyCRED Purchase Log"
443
  msgstr ""
444
 
445
+ #: ../addons/buy-creds/myCRED-addon-buy-creds.php:193 ../addons/buy-creds/myCRED-
446
+ #: addon-buy-creds.php:421 ../addons/buy-creds/myCRED-addon-buy-creds.php:488
447
  msgid "Purchase Log"
448
  msgstr ""
449
 
450
+ #: ../addons/buy-creds/myCRED-addon-buy-creds.php:281 ../addons/gateway/event-
451
+ #: booking/mycred-eventespresso3.php:26 ../addons/gateway/event-booking/mycred-
452
+ #: eventsmanager-pro.php:475 ../addons/gateway/event-booking/mycred-eventsmanager.
453
+ #: php:540 ../addons/sell-content/myCRED-addon-sell-content.php:361
454
  msgid "Payments"
455
  msgstr ""
456
 
457
+ #: ../addons/buy-creds/myCRED-addon-buy-creds.php:311
458
  msgid "Please login to purchase %_plural%"
459
  msgstr ""
460
 
461
+ #: ../addons/buy-creds/myCRED-addon-buy-creds.php:326
462
+ #, php-format
463
  msgid "Gift purchase from %display_name%."
464
  msgstr ""
465
 
466
+ #: ../addons/buy-creds/myCRED-addon-buy-creds.php:344 ../addons/ranks/myCRED-
467
+ #: addon-ranks.php:649
468
  msgid "Minimum %plural%"
469
  msgstr ""
470
 
471
+ #: ../addons/buy-creds/myCRED-addon-buy-creds.php:348
472
  msgid "Minimum amount of %plural% a user must purchase. Will default to 1."
473
  msgstr ""
474
 
475
+ #: ../addons/buy-creds/myCRED-addon-buy-creds.php:353 ../addons/coupons/myCRED-
476
+ #: addon-coupons.php:315 ../addons/gateway/carts/mycred-marketpress.php:378 ..
477
+ #: addons/gateway/carts/mycred-woocommerce.php:108 ..
478
+ #: addons/gateway/carts/mycred-wpecommerce.php:350 ../addons/gateway/event-
479
+ #: booking/mycred-eventespresso3.php:437 ../addons/gateway/event-booking/mycred-
480
+ #: eventsmanager-pro.php:463 ../addons/gateway/event-booking/mycred-eventsmanager.
481
+ #: php:550 ../addons/sell-content/myCRED-addon-sell-content.php:349 ..
482
+ #: includes/mycred-widgets.php:204 ../includes/mycred-widgets.php:401 ..
483
+ #: includes/importers/mycred-cubepoints.php:365
484
  msgid "Point Type"
485
  msgstr ""
486
 
487
+ #: ../addons/buy-creds/myCRED-addon-buy-creds.php:365
488
  msgid "Login Template"
489
  msgstr ""
490
 
491
+ #: ../addons/buy-creds/myCRED-addon-buy-creds.php:369
492
  msgid "Content to show when a user is not logged in."
493
  msgstr ""
494
 
495
+ #: ../addons/buy-creds/myCRED-addon-buy-creds.php:379
496
  msgid "Thank You Page"
497
  msgstr ""
498
 
499
+ #: ../addons/buy-creds/myCRED-addon-buy-creds.php:382 ../addons/buy-creds/myCRED-
500
+ #: addon-buy-creds.php:403
501
  msgid "Custom URL"
502
  msgstr ""
503
 
504
+ #: ../addons/buy-creds/myCRED-addon-buy-creds.php:387 ../addons/buy-creds/myCRED-
505
+ #: addon-buy-creds.php:408
506
  msgid "Page"
507
  msgstr ""
508
 
509
+ #: ../addons/buy-creds/myCRED-addon-buy-creds.php:400
510
  msgid "Cancellation Page"
511
  msgstr ""
512
 
513
+ #: ../addons/buy-creds/myCRED-addon-buy-creds.php:423
514
  msgid "Show seperate log for %_plural% purchases."
515
  msgstr ""
516
 
517
+ #: ../addons/buy-creds/myCRED-addon-buy-creds.php:425
518
  msgid "Gifting"
519
  msgstr ""
520
 
521
+ #: ../addons/buy-creds/myCRED-addon-buy-creds.php:427
522
+ #, php-format
523
  msgid "Allow users to buy %_plural% for other users."
524
  msgstr ""
525
 
526
+ #: ../addons/buy-creds/myCRED-addon-buy-creds.php:428
527
+ #, php-format
528
  msgid "Allow users to buy %_plural% for content authors."
529
  msgstr ""
530
 
531
+ #: ../addons/buy-creds/myCRED-addon-buy-creds.php:488
532
+ #, php-format
533
  msgid "%s Payment Gateways"
534
  msgstr ""
535
 
536
+ #: ../addons/buy-creds/myCRED-addon-buy-creds.php:488 ../addons/buy-creds/myCRED-
537
+ #: addon-buy-creds.php:663
538
  msgid "buyCRED Settings"
539
  msgstr ""
540
 
541
+ #: ../addons/buy-creds/myCRED-addon-buy-creds.php:494
542
  msgid "Select the payment gateways you want to offer your users to buy %plural%."
543
  msgstr ""
544
 
545
+ #: ../addons/buy-creds/myCRED-addon-buy-creds.php:501
546
  msgid "Last Payment Notification"
547
  msgstr ""
548
 
549
+ #: ../addons/buy-creds/myCRED-addon-buy-creds.php:503
550
  msgid ""
551
  "Here you can view the last payment confirmation that was sent to buyCRED for "
552
  "processing."
553
  msgstr ""
554
 
555
+ #: ../addons/buy-creds/myCRED-addon-buy-creds.php:506
556
  msgid "Details"
557
  msgstr ""
558
 
559
+ #: ../addons/buy-creds/myCRED-addon-buy-creds.php:509 ../modules/mycred-module-
560
+ #: log.php:541
561
  msgid "Time"
562
  msgstr ""
563
 
564
+ #: ../addons/buy-creds/myCRED-addon-buy-creds.php:513 ../addons/buy-creds/myCRED-
565
+ #: addon-buy-creds.php:654 ../includes/mycred-overview.php:166 ../includes/mycred-
566
+ #: overview.php:173 ../modules/mycred-module-addons.php:190
567
  msgid "Gateway"
568
  msgstr ""
569
 
570
+ #: ../addons/buy-creds/myCRED-addon-buy-creds.php:517 ../addons/buy-creds/myCRED-
571
+ #: addon-buy-creds.php:659
572
  msgid "Transaction ID"
573
  msgstr ""
574
 
575
+ #: ../addons/buy-creds/myCRED-addon-buy-creds.php:521
576
  msgid "Outcome"
577
  msgstr ""
578
 
579
+ #: ../addons/buy-creds/myCRED-addon-buy-creds.php:525
580
  msgid "Gateway Log"
581
  msgstr ""
582
 
583
+ #: ../addons/buy-creds/myCRED-addon-buy-creds.php:533
584
  msgid "No recorded calls found."
585
  msgstr ""
586
 
587
+ #: ../addons/buy-creds/myCRED-addon-buy-creds.php:546
588
  msgid "Test Mode"
589
  msgstr ""
590
 
591
+ #: ../addons/buy-creds/myCRED-addon-buy-creds.php:548
592
  msgid "Enabled"
593
  msgstr ""
594
 
595
+ #: ../addons/buy-creds/myCRED-addon-buy-creds.php:551
596
  msgid "Disabled"
597
  msgstr ""
598
 
599
+ #: ../addons/buy-creds/myCRED-addon-buy-creds.php:561
600
  msgid "Sandbox Mode"
601
  msgstr ""
602
 
603
+ #: ../addons/buy-creds/myCRED-addon-buy-creds.php:564
604
  msgid "Enable for test purchases."
605
  msgstr ""
606
 
607
+ #: ../addons/buy-creds/myCRED-addon-buy-creds.php:581
608
  msgid "Update Gateway Settings"
609
  msgstr ""
610
 
611
+ #: ../addons/buy-creds/myCRED-addon-buy-creds.php:655 ../addons/email-
612
+ #: notices/myCRED-addon-email-notices.php:786 ../addons/email-notices/myCRED-
613
+ #: addon-email-notices.php:915 ../includes/mycred-admin.php:477 ..
614
+ #: includes/mycred-log.php:639 ../modules/mycred-module-log.php:540
615
  msgid "User"
616
  msgstr ""
617
 
618
+ #: ../addons/buy-creds/myCRED-addon-buy-creds.php:656 ../includes/mycred-log.php:
619
+ #: 640
620
  msgid "Date"
621
  msgstr ""
622
 
623
+ #: ../addons/buy-creds/myCRED-addon-buy-creds.php:658
624
  msgid "Payed"
625
  msgstr ""
626
 
627
+ #: ../addons/buy-creds/myCRED-addon-buy-creds.php:663
628
  msgid "<strong>buy</strong>CRED Purchase Log"
629
  msgstr ""
630
 
631
+ #: ../addons/buy-creds/myCRED-addon-buy-creds.php:663 ../addons/gateway/event-
632
+ #: booking/mycred-eventespresso3.php:367
633
  msgid "Gateway Settings"
634
  msgstr ""
635
 
636
+ #: ../addons/buy-creds/myCRED-addon-buy-creds.php:667
637
  msgid ""
638
  "Only completed purchases are shown here. Purchases that were cancelled or "
639
  "failed are not logged."
640
  msgstr ""
641
 
642
+ #: ../addons/buy-creds/myCRED-addon-buy-creds.php:776 ../includes/mycred-log.php:
643
+ #: 743 ../modules/mycred-module-log.php:462
644
  msgid "User Missing"
645
  msgstr ""
646
 
647
+ #: ../addons/buy-creds/myCRED-addon-buy-creds.php:839 ../addons/sell-
648
+ #: content/myCRED-addon-sell-content.php:1112
649
  msgid "No purchases found"
650
  msgstr ""
651
 
652
+ #: ../addons/buy-creds/myCRED-addon-buy-creds.php:911 ../addons/buy-creds/myCRED-
653
+ #: addon-buy-creds.php:1008
654
  msgid "This Add-on needs to setup before you can use this shortcode."
655
  msgstr ""
656
 
657
+ #: ../addons/buy-creds/myCRED-addon-buy-creds.php:929 ../addons/buy-creds/myCRED-
658
+ #: addon-buy-creds.php:1026
659
  msgid "No gateways installed."
660
  msgstr ""
661
 
662
+ #: ../addons/buy-creds/myCRED-addon-buy-creds.php:930 ../addons/buy-creds/myCRED-
663
+ #: addon-buy-creds.php:1027
664
  msgid "Gateway does not exist."
665
  msgstr ""
666
 
667
+ #: ../addons/buy-creds/myCRED-addon-buy-creds.php:966
668
  msgid "Yourself"
669
  msgstr ""
670
 
671
+ #: ../addons/buy-creds/myCRED-addon-buy-creds.php:1028
672
  msgid "No active gateways found."
673
  msgstr ""
674
 
675
+ #: ../addons/buy-creds/myCRED-addon-buy-creds.php:1029
676
  msgid "The selected gateway is not active."
677
  msgstr ""
678
 
679
+ #: ../addons/buy-creds/myCRED-addon-buy-creds.php:1065
680
+ #, php-format
681
  msgid "Buy with %gateway%"
682
  msgstr ""
683
 
684
+ #: ../addons/buy-creds/myCRED-addon-buy-creds.php:1071 ../addons/sell-
685
+ #: content/myCRED-addon-sell-content.php:44
686
  msgid "Buy Now"
687
  msgstr ""
688
 
689
+ #: ../addons/buy-creds/myCRED-addon-buy-creds.php:1111
690
  msgid "No users found"
691
  msgstr ""
692
 
693
+ #: ../addons/buy-creds/myCRED-addon-buy-creds.php:1121
694
  msgid "To"
695
  msgstr ""
696
 
697
+ #: ../addons/buy-creds/myCRED-addon-buy-creds.php:1138
698
  msgid "Select Amount"
699
  msgstr ""
700
 
701
+ #: ../addons/buy-creds/myCRED-addon-buy-creds.php:1162
702
  msgid "min."
703
  msgstr ""
704
 
705
+ #: ../addons/buy-creds/myCRED-addon-buy-creds.php:1170
706
  msgid "Select Gateway"
707
  msgstr ""
708
 
709
  #: ../addons/buy-creds/abstracts/mycred-abstract-payment-gateway.php:89
710
+ msgid ""
711
+ "function myCRED_Payment_Gateway::process() must be over-ridden in a sub-"
712
+ "class."
713
  msgstr ""
714
 
715
  #: ../addons/buy-creds/abstracts/mycred-abstract-payment-gateway.php:98
725
  msgstr ""
726
 
727
  #: ../addons/buy-creds/abstracts/mycred-abstract-payment-gateway.php:213
728
+ #, php-format
729
  msgid "Gateway identified itself as \"%s\""
730
  msgstr ""
731
 
737
  msgid "Test Payment"
738
  msgstr ""
739
 
740
+ #: ../addons/buy-creds/abstracts/mycred-abstract-payment-gateway.php:264 ..
741
+ #: addons/gateway/carts/mycred-marketpress.php:179
742
  msgid "Payment"
743
  msgstr ""
744
 
746
  msgid "Cancel purchase"
747
  msgstr ""
748
 
749
+ #: ../addons/buy-creds/abstracts/mycred-abstract-payment-gateway.php:360 ..
750
+ #: includes/mycred-admin.php:364 ../includes/mycred-admin.php:470
751
  msgid "required"
752
  msgstr ""
753
 
754
+ #: ../addons/buy-creds/abstracts/mycred-abstract-payment-gateway.php:361 ..
755
+ #: includes/mycred-admin.php:366 ../includes/mycred-admin.php:472
756
  msgid "optional"
757
  msgstr ""
758
 
793
  msgstr ""
794
 
795
  #: ../addons/buy-creds/abstracts/mycred-abstract-payment-gateway.php:419
796
+ #, php-format
797
  msgid "%s Purchase"
798
  msgstr ""
799
 
800
+ #: ../addons/buy-creds/abstracts/mycred-abstract-payment-gateway.php:424 ..
801
+ #: addons/gateway/carts/mycred-wpecommerce.php:112
802
  msgid "Item"
803
  msgstr ""
804
 
812
 
813
  #: ../addons/buy-creds/abstracts/mycred-abstract-payment-gateway.php:448
814
  msgid ""
815
+ "Here you can see information that are collected and sent to this gateway. "
816
+ "Debug information is only visible for administrators and are intended for "
817
+ "troubleshooting / testing of this gateway. Please disable \"Sandbox Mode\" "
818
+ "when you want to take this gateway online."
819
  msgstr ""
820
 
821
  #: ../addons/buy-creds/abstracts/mycred-abstract-payment-gateway.php:452
839
  msgstr ""
840
 
841
  #: ../addons/buy-creds/abstracts/mycred-abstract-payment-gateway.php:513
842
+ #, php-format
843
  msgid "Continue to %s"
844
  msgstr ""
845
 
846
+ #: ../addons/buy-creds/abstracts/mycred-abstract-payment-gateway.php:514 ..
847
+ #: addons/buy-creds/gateways/bitpay.php:240
848
  msgid "Click here if you are not automatically redirected"
849
  msgstr ""
850
 
880
  msgid "Duplicate transaction"
881
  msgstr ""
882
 
883
+ #: ../addons/buy-creds/gateways/bitpay.php:25 ../addons/buy-
884
+ #: creds/gateways/netbilling.php:30 ../addons/buy-creds/gateways/paypal-standard.
885
+ #: php:25 ../addons/buy-creds/gateways/skrill.php:30
886
  msgid "Purchase of myCRED %plural%"
887
  msgstr ""
888
 
889
+ #: ../addons/buy-creds/gateways/bitpay.php:68 ../addons/buy-
890
+ #: creds/gateways/netbilling.php:102 ../addons/buy-creds/gateways/paypal-standard.
891
+ #: php:162 ../addons/buy-creds/gateways/skrill.php:134
892
  msgid "Sales Data is Valid"
893
  msgstr ""
894
 
895
+ #: ../addons/buy-creds/gateways/bitpay.php:72 ../addons/buy-
896
+ #: creds/gateways/netbilling.php:106 ../addons/buy-creds/gateways/paypal-standard.
897
+ #: php:166 ../addons/buy-creds/gateways/skrill.php:138
898
  msgid "Failed to validate sale"
899
  msgstr ""
900
 
901
+ #: ../addons/buy-creds/gateways/bitpay.php:78 ../addons/buy-
902
+ #: creds/gateways/netbilling.php:112 ../addons/buy-creds/gateways/paypal-standard.
903
+ #: php:172 ../addons/buy-creds/gateways/skrill.php:144 ../addons/buy-
904
+ #: creds/gateways/zombaio.php:166
905
  msgid "Failed to verify caller"
906
  msgstr ""
907
 
908
+ #: ../addons/buy-creds/gateways/bitpay.php:86 ../addons/buy-
909
+ #: creds/gateways/netbilling.php:120 ../addons/buy-creds/gateways/paypal-standard.
910
+ #: php:180 ../addons/buy-creds/gateways/skrill.php:152 ../addons/buy-
911
+ #: creds/gateways/zombaio.php:171
912
+ #, php-format
913
  msgid "Attempting to credit %s to users account"
914
  msgstr ""
915
 
916
+ #: ../addons/buy-creds/gateways/bitpay.php:97 ../addons/buy-
917
+ #: creds/gateways/netbilling.php:132 ../addons/buy-creds/gateways/paypal-standard.
918
+ #: php:193 ../addons/buy-creds/gateways/skrill.php:164 ../addons/buy-
919
+ #: creds/gateways/zombaio.php:207
920
+ #, php-format
921
  msgid "%s was successfully credited to users account"
922
  msgstr ""
923
 
924
+ #: ../addons/buy-creds/gateways/bitpay.php:104 ../addons/buy-
925
+ #: creds/gateways/netbilling.php:139 ../addons/buy-creds/gateways/paypal-standard.
926
+ #: php:200 ../addons/buy-creds/gateways/skrill.php:171 ../addons/buy-
927
+ #: creds/gateways/zombaio.php:214
928
  msgid "Failed to credit the users account"
929
  msgstr ""
930
 
931
+ #: ../addons/buy-creds/gateways/bitpay.php:107 ../addons/buy-
932
+ #: creds/gateways/netbilling.php:142 ../addons/buy-creds/gateways/paypal-standard.
933
+ #: php:203 ../addons/buy-creds/gateways/skrill.php:174
934
  msgid "Purchase not paid"
935
  msgstr ""
936
 
937
+ #: ../addons/buy-creds/gateways/bitpay.php:111 ../addons/buy-
938
+ #: creds/gateways/netbilling.php:146 ../addons/buy-creds/gateways/paypal-standard.
939
+ #: php:207 ../addons/buy-creds/gateways/skrill.php:178 ../addons/buy-
940
+ #: creds/gateways/zombaio.php:218
941
  msgid "Hanging up on caller"
942
  msgstr ""
943
 
944
+ #: ../addons/buy-creds/gateways/bitpay.php:175 ../addons/buy-
945
+ #: creds/gateways/netbilling.php:173 ../addons/buy-creds/gateways/paypal-standard.
946
+ #: php:237 ../addons/buy-creds/gateways/skrill.php:208 ../addons/buy-
947
+ #: creds/gateways/zombaio.php:241
948
  msgid "Please setup this gateway before attempting to make a purchase!"
949
  msgstr ""
950
 
951
+ #: ../addons/buy-creds/gateways/bitpay.php:226 ../addons/buy-
952
+ #: creds/gateways/bitpay.php:235 ../addons/buy-creds/gateways/netbilling.php:224 .
953
+ #: ./addons/buy-creds/gateways/paypal-standard.php:295 ../addons/buy-
954
+ #: creds/gateways/skrill.php:301 ../addons/buy-creds/gateways/zombaio.php:271
955
  msgid "Processing payment &hellip;"
956
  msgstr ""
957
 
973
  msgid "API Key"
974
  msgstr ""
975
 
976
+ #: ../addons/buy-creds/gateways/bitpay.php:269 ../addons/buy-
977
+ #: creds/gateways/paypal-standard.php:312 ../addons/buy-creds/gateways/skrill.php:
978
+ #: 319
979
  msgid "Currency"
980
  msgstr ""
981
 
983
  msgid "Currency Code"
984
  msgstr ""
985
 
986
+ #: ../addons/buy-creds/gateways/bitpay.php:276 ../addons/buy-
987
+ #: creds/gateways/netbilling.php:260 ../addons/buy-creds/gateways/paypal-standard.
988
+ #: php:326 ../addons/buy-creds/gateways/skrill.php:339
989
  msgid "Item Name"
990
  msgstr ""
991
 
992
+ #: ../addons/buy-creds/gateways/bitpay.php:280 ../addons/buy-
993
+ #: creds/gateways/netbilling.php:264 ../addons/buy-creds/gateways/paypal-standard.
994
+ #: php:330 ../addons/buy-creds/gateways/skrill.php:343
995
  msgid "Description of the item being purchased by the user."
996
  msgstr ""
997
 
998
+ #: ../addons/buy-creds/gateways/bitpay.php:283 ../addons/buy-
999
+ #: creds/gateways/netbilling.php:267 ../addons/buy-creds/gateways/paypal-standard.
1000
+ #: php:333 ../addons/buy-creds/gateways/skrill.php:346
1001
+ #, php-format
1002
  msgid "%plural% Exchange Rate"
1003
  msgstr ""
1004
 
1005
+ #: ../addons/buy-creds/gateways/bitpay.php:286 ../addons/buy-
1006
+ #: creds/gateways/paypal-standard.php:336 ../addons/buy-creds/gateways/skrill.php:
1007
+ #: 349
1008
  msgid "Select currency"
1009
  msgstr ""
1010
 
1028
  msgid "Full Notifications"
1029
  msgstr ""
1030
 
1031
+ #: ../addons/buy-creds/gateways/bitpay.php:318 ../includes/mycred-network.php:196
1032
+ #: ../includes/mycred-network.php:210
1033
  msgid "No"
1034
  msgstr ""
1035
 
1036
+ #: ../addons/buy-creds/gateways/bitpay.php:319 ../includes/mycred-network.php:192
1037
+ #: ../includes/mycred-network.php:206
1038
  msgid "Yes"
1039
  msgstr ""
1040
 
1041
+ #: ../addons/buy-creds/gateways/netbilling.php:57 ../addons/buy-
1042
+ #: creds/gateways/skrill.php:89 ../addons/buy-creds/gateways/zombaio.php:103
1043
  msgid "Invalid Call"
1044
  msgstr ""
1045
 
1046
+ #: ../addons/buy-creds/gateways/netbilling.php:59 ../addons/buy-
1047
+ #: creds/gateways/skrill.php:91 ../addons/buy-creds/gateways/zombaio.php:105
1048
+ #, php-format
1049
  msgid "Caller verified as \"%s\""
1050
  msgstr ""
1051
 
1072
  #: ../addons/buy-creds/gateways/netbilling.php:277
1073
  msgid ""
1074
  "For this gateway to work, you must login to your NETbilling account and edit "
1075
+ "your site. Under \"Default payment form settings\" make sure the Postback CGI "
1076
+ "URL is set to the above address and \"Return method\" is set to POST."
1077
  msgstr ""
1078
 
1079
  #: ../addons/buy-creds/gateways/netbilling.php:312
1105
  msgstr ""
1106
 
1107
  #: ../addons/buy-creds/gateways/paypal-standard.php:92
1108
+ #, php-format
1109
  msgid "Attempt: %d failed. Error: %s : %s"
1110
  msgstr ""
1111
 
1112
  #: ../addons/buy-creds/gateways/paypal-standard.php:103
1113
+ #, php-format
1114
  msgid "Secondary systems failing. Final note: %s : %s"
1115
  msgstr ""
1116
 
1122
  msgid "Call rejected"
1123
  msgstr ""
1124
 
1125
+ #: ../addons/buy-creds/gateways/paypal-standard.php:223 ../addons/buy-
1126
+ #: creds/gateways/skrill.php:194
1127
  msgid "Success"
1128
  msgstr ""
1129
 
1130
+ #: ../addons/buy-creds/gateways/paypal-standard.php:224 ../addons/buy-
1131
+ #: creds/gateways/skrill.php:195
1132
  msgid "Thank you for your purchase"
1133
  msgstr ""
1134
 
1135
+ #: ../addons/buy-creds/gateways/paypal-standard.php:290 ../addons/buy-
1136
+ #: creds/gateways/skrill.php:247
1137
  msgid "Return to "
1138
  msgstr ""
1139
 
1140
+ #: ../addons/buy-creds/gateways/paypal-standard.php:317 ../addons/buy-
1141
+ #: creds/gateways/skrill.php:376 ../addons/gateway/event-booking/mycred-
1142
+ #: eventespresso3.php:455
1143
  msgid "Important!"
1144
  msgstr ""
1145
 
1161
  #: ../addons/buy-creds/gateways/paypal-standard.php:343
1162
  msgid ""
1163
  "For this gateway to work, you must login to your PayPal account and under "
1164
+ "\"Profile\" > \"Selling Tools\" enable \"Instant Payment Notifications\". Make "
1165
+ "sure the \"Notification URL\" is set to the above address and that you have "
1166
+ "selected \"Receive IPN messages (Enabled)\"."
1167
  msgstr ""
1168
 
1169
  #: ../addons/buy-creds/gateways/skrill.php:284
1202
  msgid "Checkout Page"
1203
  msgstr ""
1204
 
1205
+ #: ../addons/buy-creds/gateways/skrill.php:361 ../addons/gateway/carts/mycred-
1206
+ #: woocommerce.php:86 ../addons/ranks/myCRED-addon-ranks.php:792 ..
1207
+ #: addons/transfer/myCRED-addon-transfer.php:637 ../includes/mycred-widgets.php:
1208
+ #: 197 ../includes/mycred-widgets.php:395 ../includes/mycred-widgets.php:587 ..
1209
+ #: modules/mycred-module-hooks.php:2302
1210
  msgid "Title"
1211
  msgstr ""
1212
 
1214
  msgid "If left empty, your account email is used as title on the Skill Payment Page."
1215
  msgstr ""
1216
 
1217
+ #: ../addons/buy-creds/gateways/skrill.php:366 ../addons/buy-
1218
+ #: creds/gateways/zombaio.php:306
1219
  msgid "Logo URL"
1220
  msgstr ""
1221
 
1222
  #: ../addons/buy-creds/gateways/skrill.php:368
1223
  msgid ""
1224
  "The URL to the image you want to use on the top of the gateway. For best "
1225
+ "integration results we recommend you use logos with dimensions up to 200px "
1226
+ "in width and 50px in height."
1227
  msgstr ""
1228
 
1229
  #: ../addons/buy-creds/gateways/skrill.php:371
1232
 
1233
  #: ../addons/buy-creds/gateways/skrill.php:373
1234
  msgid ""
1235
+ "Optional text to show user once a transaction has been successfully "
1236
+ "completed. This text is shown by Skrill."
1237
  msgstr ""
1238
 
1239
  #: ../addons/buy-creds/gateways/skrill.php:377
1240
  msgid ""
1241
+ "By default all Skrill Merchant account accept payments via Bank Transfers. "
1242
+ "When a user selects this option, no %_plural% are awarded! You will need to "
1243
+ "manually award these once the bank transfer is completed."
1244
  msgstr ""
1245
 
1246
  #: ../addons/buy-creds/gateways/skrill.php:378
1247
  msgid ""
1248
  "By default purchases made using Skrill will result in users having to signup "
1249
+ "for a Skrill account (if they do not have one already). You can contact "
1250
+ "Skrill Merchant Services and request to disable this feature."
1251
  msgstr ""
1252
 
1253
  #: ../addons/buy-creds/gateways/zombaio.php:154
1292
  "address and click validate."
1293
  msgstr ""
1294
 
1295
+ #: ../addons/coupons/myCRED-addon-coupons.php:86 ../addons/coupons/myCRED-addon-
1296
+ #: coupons.php:92 ../addons/coupons/myCRED-addon-coupons.php:438 ..
1297
+ #: includes/mycred-overview.php:188 ../includes/mycred-overview.php:195 ..
1298
+ #: modules/mycred-module-addons.php:168
1299
  msgid "Coupons"
1300
  msgstr ""
1301
 
1302
+ #: ../addons/coupons/myCRED-addon-coupons.php:87 ..
1303
+ #: addons/coupons/includes/mycred-coupon-shortcodes.php:69
1304
  msgid "Coupon"
1305
  msgstr ""
1306
 
1332
  msgid "No coupons found in Trash"
1333
  msgstr ""
1334
 
1335
+ #: ../addons/coupons/myCRED-addon-coupons.php:98 ../addons/email-notices/myCRED-
1336
+ #: addon-email-notices.php:161 ../addons/email-notices/myCRED-addon-email-notices.
1337
+ #: php:167 ../addons/email-notices/myCRED-addon-email-notices.php:173 ..
1338
+ #: addons/email-notices/myCRED-addon-email-notices.php:270 ../modules/mycred-
1339
+ #: module-addons.php:179
1340
  msgid "Email Notices"
1341
  msgstr ""
1342
 
1343
+ #: ../addons/coupons/myCRED-addon-coupons.php:119 ../addons/coupons/myCRED-addon-
1344
+ #: coupons.php:122
1345
  msgid "Coupon updated."
1346
  msgstr ""
1347
 
1365
  msgid "Coupon Code"
1366
  msgstr ""
1367
 
1368
+ #: ../addons/coupons/myCRED-addon-coupons.php:157 ../addons/coupons/myCRED-addon-
1369
+ #: coupons.php:309
1370
  msgid "Value"
1371
  msgstr ""
1372
 
1374
  msgid "Usage"
1375
  msgstr ""
1376
 
1377
+ #: ../addons/coupons/myCRED-addon-coupons.php:159 ../addons/transfer/myCRED-addon-
1378
+ #: transfer.php:243 ../modules/mycred-module-hooks.php:1106 ../modules/mycred-
1379
+ #: module-hooks.php:1396
1380
  msgid "Limits"
1381
  msgstr ""
1382
 
1388
  msgid "not yet used"
1389
  msgstr ""
1390
 
1391
+ #: ../addons/coupons/myCRED-addon-coupons.php:198 ../modules/mycred-module-hooks.
1392
+ #: php:1834
1393
  msgid "Total"
1394
  msgstr ""
1395
 
1406
  msgstr ""
1407
 
1408
  #: ../addons/coupons/myCRED-addon-coupons.php:213
1409
+ #, php-format
1410
  msgid "In %s time"
1411
  msgstr ""
1412
 
1444
 
1445
  #: ../addons/coupons/myCRED-addon-coupons.php:356
1446
  msgid ""
1447
+ "The maximum number of times this coupon can be used. Note that the coupon "
1448
+ "will be automatically trashed once this maximum is reached!"
1449
  msgstr ""
1450
 
1451
  #: ../addons/coupons/myCRED-addon-coupons.php:360
1458
 
1459
  #: ../addons/coupons/myCRED-addon-coupons.php:395
1460
  msgid ""
1461
+ "Optional minimum balance a user must have in order to use this coupon. Use "
1462
+ "zero to disable."
1463
  msgstr ""
1464
 
1465
  #: ../addons/coupons/myCRED-addon-coupons.php:399
1468
 
1469
  #: ../addons/coupons/myCRED-addon-coupons.php:402
1470
  msgid ""
1471
+ "Optional maximum balance a user can have in order to use this coupon. Use "
1472
+ "zero to disable."
1473
  msgstr ""
1474
 
1475
  #: ../addons/coupons/myCRED-addon-coupons.php:444
1476
+ #, php-format
1477
  msgid ""
1478
  "Log entry for successful coupon redemption. Use %coupon% to show the coupon "
1479
  "code."
1509
 
1510
  #: ../addons/coupons/myCRED-addon-coupons.php:472
1511
  msgid ""
1512
+ "Message to show when a user does not meet the minimum balance requirement. "
1513
+ "(if used)"
1514
  msgstr ""
1515
 
1516
  #: ../addons/coupons/myCRED-addon-coupons.php:475
1519
 
1520
  #: ../addons/coupons/myCRED-addon-coupons.php:479
1521
  msgid ""
1522
+ "Message to show when a user does not meet the maximum balance requirement. "
1523
+ "(if used)"
1524
  msgstr ""
1525
 
1526
  #: ../addons/coupons/myCRED-addon-coupons.php:482
1539
  msgid "Apply Coupon"
1540
  msgstr ""
1541
 
1542
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:162 ../addons/email-
1543
+ #: notices/myCRED-addon-email-notices.php:1138
1544
  msgid "Email Notice"
1545
  msgstr ""
1546
 
1547
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:163 ..
1548
+ #: addons/ranks/myCRED-addon-ranks.php:248
1549
  msgid "Add New"
1550
  msgstr ""
1551
 
1552
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:164
1553
  msgid "Add New Notice"
1554
  msgstr ""
1555
 
1556
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:165
1557
  msgid "Edit Notice"
1558
  msgstr ""
1559
 
1560
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:166
1561
  msgid "New Notice"
1562
  msgstr ""
1563
 
1564
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:168
1565
  msgid "View Notice"
1566
  msgstr ""
1567
 
1568
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:169
1569
  msgid "Search Email Notices"
1570
  msgstr ""
1571
 
1572
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:170
1573
  msgid "No email notices found"
1574
  msgstr ""
1575
 
1576
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:171
1577
  msgid "No email notices found in Trash"
1578
  msgstr ""
1579
 
1580
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:195 ..
1581
+ #: addons/gateway/carts/mycred-wpecommerce.php:337 ../includes/mycred-functions.
1582
+ #: php:589
1583
  msgid "General"
1584
  msgstr ""
1585
 
1586
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:196
1587
  msgid "users balance changes"
1588
  msgstr ""
1589
 
1590
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:197
1591
  msgid "user gains %_plural%"
1592
  msgstr ""
1593
 
1594
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:198
1595
  msgid "user lose %_plural%"
1596
  msgstr ""
1597
 
1598
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:199
1599
  msgid "users balance reaches zero"
1600
  msgstr ""
1601
 
1602
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:200
1603
  msgid "users balance goes minus"
1604
  msgstr ""
1605
 
1606
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:206
1607
  msgid "Sell Content Add-on"
1608
  msgstr ""
1609
 
1610
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:207
1611
  msgid "user buys content"
1612
  msgstr ""
1613
 
1614
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:208
1615
  msgid "authors content gets sold"
1616
  msgstr ""
1617
 
1618
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:215
1619
  msgid "buyCREDs Add-on"
1620
  msgstr ""
1621
 
1622
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:216
1623
  msgid "user buys %_plural%"
1624
  msgstr ""
1625
 
1626
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:223
1627
  msgid "Transfer Add-on"
1628
  msgstr ""
1629
 
1630
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:224
1631
  msgid "user sends %_plural%"
1632
  msgstr ""
1633
 
1634
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:225
1635
  msgid "user receives %_plural%"
1636
  msgstr ""
1637
 
1638
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:232
1639
  msgid "Ranks Add-on"
1640
  msgstr ""
1641
 
1642
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:233
1643
  msgid "user is demoted"
1644
  msgstr ""
1645
 
1646
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:234
1647
  msgid "user is promoted"
1648
  msgstr ""
1649
 
1650
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:272
1651
  msgid ""
1652
  "Settings that apply to all email notices and can not be overridden for "
1653
  "individual emails."
1654
  msgstr ""
1655
 
1656
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:273
1657
  msgid "Email Format"
1658
  msgstr ""
1659
 
1660
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:277
1661
  msgid "Plain text emails only."
1662
  msgstr ""
1663
 
1664
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:281
1665
  msgid "HTML or Plain text emails."
1666
  msgstr ""
1667
 
1668
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:284
1669
  msgid "Filters"
1670
  msgstr ""
1671
 
1672
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:288
1673
  msgid ""
1674
+ "Allow WordPress and Third Party Plugins to filter the email subject before "
1675
+ "an email is sent."
1676
  msgstr ""
1677
 
1678
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:292
1679
  msgid ""
1680
+ "Allow WordPress and Third Party Plugins to filter the email content before "
1681
+ "an email is sent."
1682
+ msgstr ""
1683
+
1684
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:297 ../addons/email-
1685
+ #: notices/myCRED-addon-email-notices.php:303
1686
+ msgid "Email Schedule"
1687
+ msgstr ""
1688
+
1689
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:299
1690
+ msgid "WordPress Cron is disabled. Emails will be sent immediately."
1691
+ msgstr ""
1692
+
1693
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:307
1694
+ msgid "Send emails immediately"
1695
  msgstr ""
1696
 
1697
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:311
1698
+ msgid "Send emails once an hour"
1699
+ msgstr ""
1700
+
1701
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:315
1702
+ msgid "Send emails once a day"
1703
+ msgstr ""
1704
+
1705
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:318
1706
+ msgid "Subscriptions"
1707
+ msgstr ""
1708
+
1709
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:320
1710
+ #, php-format
1711
+ msgid ""
1712
+ "Use the %s shortcode to allow users to subscribe / unsubscribe to email "
1713
+ "updates."
1714
+ msgstr ""
1715
+
1716
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:325
1717
+ msgid "SMTP Override"
1718
+ msgstr ""
1719
+
1720
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:329
1721
+ msgid ""
1722
+ "SMTP Debug. Enable if you are experiencing issues with wp_mail() or if you "
1723
+ "use a SMTP plugin for emails."
1724
+ msgstr ""
1725
+
1726
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:332
1727
  msgid ""
1728
  "Default email settings. These settings can be individually overridden when "
1729
  "editing emails."
1730
  msgstr ""
1731
 
1732
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:333 ../addons/email-
1733
+ #: notices/myCRED-addon-email-notices.php:802
1734
  msgid "Email Settings"
1735
  msgstr ""
1736
 
1737
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:336 ../addons/email-
1738
+ #: notices/myCRED-addon-email-notices.php:925
1739
  msgid "Senders Name:"
1740
  msgstr ""
1741
 
1742
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:340 ../addons/email-
1743
+ #: notices/myCRED-addon-email-notices.php:927
1744
  msgid "Senders Email:"
1745
  msgstr ""
1746
 
1747
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:344
1748
  msgid "Reply-To:"
1749
  msgstr ""
1750
 
1751
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:348
1752
  msgid "Default Email Content"
1753
  msgstr ""
1754
 
1755
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:352
1756
  msgid "Default email content."
1757
  msgstr ""
1758
 
1759
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:355
1760
  msgid "Default Email Styling"
1761
  msgstr ""
1762
 
1763
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:359
1764
  msgid "Ignored if HTML is not allowed in emails."
1765
  msgstr ""
1766
 
1767
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:736 ../addons/email-
1768
+ #: notices/myCRED-addon-email-notices.php:851
1769
  msgid "Email Subject"
1770
  msgstr ""
1771
 
1772
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:737
1773
  msgid "Status"
1774
  msgstr ""
1775
 
1776
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:757
1777
  msgid "Not Active"
1778
  msgstr ""
1779
 
1780
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:759
1781
+ #, php-format
1782
  msgid "Scheduled:<br /><strong>%1$s</strong>"
1783
  msgstr ""
1784
 
1785
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:763
1786
  msgid "Active"
1787
  msgstr ""
1788
 
1789
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:765
1790
+ #, php-format
1791
  msgid "Active - Last run:<br /><strong>%1$s</strong>"
1792
  msgstr ""
1793
 
1794
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:775
1795
  msgid "Email is sent when"
1796
  msgstr ""
1797
 
1798
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:777
1799
  msgid "Missing instance for this notice!"
1800
  msgstr ""
1801
 
1802
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:786 ../addons/email-
1803
+ #: notices/myCRED-addon-email-notices.php:788 ../addons/email-notices/myCRED-
1804
+ #: addon-email-notices.php:790
1805
  msgid "Sent To"
1806
  msgstr ""
1807
 
1808
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:788 ../addons/email-
1809
+ #: notices/myCRED-addon-email-notices.php:916
1810
  msgid "Administrator"
1811
  msgstr ""
1812
 
1813
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:790
1814
  msgid "Both Administrator and User"
1815
  msgstr ""
1816
 
1817
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:811
1818
  msgid "Available Template Tags"
1819
  msgstr ""
1820
 
1821
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:822
1822
  msgid "Email Header"
1823
  msgstr ""
1824
 
1825
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:882
1826
  msgid "Send this email notice when..."
1827
  msgstr ""
1828
 
1829
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:913
1830
  msgid "Recipient:"
1831
  msgstr ""
1832
 
1833
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:917
1834
  msgid "Both"
1835
  msgstr ""
1836
 
1837
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:921 ..
1838
+ #: addons/gateway/carts/mycred-woocommerce.php:148 ../modules/mycred-module-
1839
+ #: settings.php:484 ../modules/mycred-module-settings.php:503 ../modules/mycred-
1840
+ #: module-settings.php:526
1841
+ msgid "Label"
1842
+ msgstr ""
1843
+
1844
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:929
1845
  msgid "Reply-To Email:"
1846
  msgstr ""
1847
 
1848
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:935
1849
  msgid "Save"
1850
  msgstr ""
1851
 
1852
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:947
1853
  msgid "CSS Styling"
1854
  msgstr ""
1855
 
1856
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:963
1857
  msgid "Site Related"
1858
  msgstr ""
1859
 
1860
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:964
1861
  msgid "Your websites title"
1862
  msgstr ""
1863
 
1864
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:965
1865
  msgid "Your websites address"
1866
  msgstr ""
1867
 
1868
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:966
1869
  msgid "Your websites tagline (description)"
1870
  msgstr ""
1871
 
1872
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:967
1873
  msgid "Your websites admin email"
1874
  msgstr ""
1875
 
1876
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:968
1877
  msgid "Total number of blog members"
1878
  msgstr ""
1879
 
1880
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:1046 ../addons/email-
1881
+ #: notices/myCRED-addon-email-notices.php:1049
1882
+ #, php-format
1883
  msgid "Email Notice Updated. View <a href=\"%1$s\">All Notices</a>."
1884
  msgstr ""
1885
 
1886
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:1051
1887
  msgid "Email Notice Activated"
1888
  msgstr ""
1889
 
1890
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:1052
1891
  msgid "Email Notice Saved"
1892
  msgstr ""
1893
 
1894
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:1053
1895
+ #, php-format
1896
  msgid "Email Notice Submitted for approval. View <a href=\"%1$s\">All Notices</a>."
1897
  msgstr ""
1898
 
1899
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:1055
1900
+ #, php-format
1901
  msgid "Email Notice scheduled for: <strong>%1$s</strong>."
1902
  msgstr ""
1903
 
1904
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:1074
1905
  msgid ""
1906
+ "Once a notice is \"published\" it becomes active! Select \"Save Draft\" if you "
1907
+ "are not yet ready to use this email notice!"
1908
  msgstr ""
1909
 
1910
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:1076
1911
+ #, php-format
1912
  msgid "This notice will become active on:<br /><strong>%1$s</strong>"
1913
  msgstr ""
1914
 
1915
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:1078
1916
  msgid "This email notice is active."
1917
  msgstr ""
1918
 
1919
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:1089
1920
+ msgid "Settings saved."
1921
+ msgstr ""
1922
+
1923
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:1137
1924
+ msgid "Unsubscribe"
1925
+ msgstr ""
1926
+
1927
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:1158
1928
+ msgid "There are no email notifications yet."
1929
+ msgstr ""
1930
+
1931
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:1164
1932
+ msgid "Save Changes"
1933
+ msgstr ""
1934
+
1935
+ #: ../addons/gateway/carts/mycred-marketpress.php:147 ../addons/gateway/event-
1936
+ #: booking/mycred-eventespresso3.php:277 ../addons/gateway/event-booking/mycred-
1937
+ #: eventespresso3.php:301 ../addons/gateway/event-booking/mycred-eventsmanager.
1938
+ #: php:412 ../includes/mycred-admin.php:478
1939
  msgid "Current Balance"
1940
  msgstr ""
1941
 
1942
+ #: ../addons/gateway/carts/mycred-marketpress.php:151 ..
1943
+ #: addons/gateway/carts/mycred-wpecommerce.php:123 ../addons/gateway/event-
1944
+ #: booking/mycred-eventespresso3.php:281 ../addons/gateway/event-booking/mycred-
1945
+ #: eventespresso3.php:305 ../addons/gateway/event-booking/mycred-eventsmanager.
1946
+ #: php:416
1947
  msgid "Total Cost"
1948
  msgstr ""
1949
 
1950
+ #: ../addons/gateway/carts/mycred-marketpress.php:155 ../addons/gateway/event-
1951
+ #: booking/mycred-eventespresso3.php:285 ../addons/gateway/event-booking/mycred-
1952
+ #: eventespresso3.php:309
1953
  msgid "Balance After Purchase"
1954
  msgstr ""
1955
 
1956
+ #: ../addons/gateway/carts/mycred-marketpress.php:182 ..
1957
+ #: addons/gateway/carts/mycred-marketpress.php:231
1958
  msgid "Go Back"
1959
  msgstr ""
1960
 
1963
  msgstr ""
1964
 
1965
  #: ../addons/gateway/carts/mycred-marketpress.php:221
1966
+ #, php-format
1967
  msgid ""
1968
+ "Sorry, but you can not use this gateway as your account is excluded. Please "
1969
+ "<a href=\"%s\">select a different payment method</a>."
1970
  msgstr ""
1971
 
1972
  #: ../addons/gateway/carts/mycred-marketpress.php:240
1973
  msgid "Paid"
1974
  msgstr ""
1975
 
1976
+ #: ../addons/gateway/carts/mycred-marketpress.php:243 ..
1977
+ #: addons/gateway/carts/mycred-woocommerce.php:33 ../includes/mycred-network.php:
1978
+ #: 57 ../includes/mycred-network.php:58 ../plugins/mycred-hook-badgeOS.php:81
1979
  msgid "myCRED"
1980
  msgstr ""
1981
 
1983
  msgid "%_singular% Balance"
1984
  msgstr ""
1985
 
1986
+ #: ../addons/gateway/carts/mycred-marketpress.php:348 ..
1987
+ #: addons/gateway/carts/mycred-woocommerce.php:101 ..
1988
+ #: addons/gateway/carts/mycred-wpecommerce.php:27
1989
+ #, php-format
1990
  msgid "Payment for Order: #%order_id%"
1991
  msgstr ""
1992
 
1999
  msgstr ""
2000
 
2001
  #: ../addons/gateway/carts/mycred-marketpress.php:353
2002
+ #, php-format
2003
  msgid ""
2004
  "TOTAL amount has been deducted from your account. Your current balance is: "
2005
  "%balance_f%"
2006
  msgstr ""
2007
 
2008
  #: ../addons/gateway/carts/mycred-marketpress.php:354
2009
+ #, php-format
2010
  msgid ""
2011
+ "Insufficient funds. Please select another form of payment. Your current "
2012
+ "balance is: %balance_f%"
2013
  msgstr ""
2014
 
2015
  #: ../addons/gateway/carts/mycred-marketpress.php:355
2019
  msgstr ""
2020
 
2021
  #: ../addons/gateway/carts/mycred-marketpress.php:362
2022
+ #, php-format
2023
  msgid ""
2024
  "Let your users pay for items in their shopping cart using their %s Account. "
2025
+ "Note! This gateway requires your users to be logged in when making a "
2026
+ "purchase!"
2027
  msgstr ""
2028
 
2029
  #: ../addons/gateway/carts/mycred-marketpress.php:365
2040
  msgid "Gateway Logo URL"
2041
  msgstr ""
2042
 
2043
+ #: ../addons/gateway/carts/mycred-marketpress.php:393 ..
2044
+ #: addons/gateway/carts/mycred-woocommerce.php:124
2045
+ #, php-format
2046
  msgid "How much is 1 %_singular% worth in %currency%?"
2047
  msgstr ""
2048
 
2049
+ #: ../addons/gateway/carts/mycred-marketpress.php:398 ..
2050
+ #: addons/gateway/carts/mycred-woocommerce.php:129 ..
2051
+ #: addons/gateway/carts/mycred-wpecommerce.php:356 ../addons/gateway/event-
2052
+ #: booking/mycred-eventespresso3.php:450 ../addons/gateway/event-booking/mycred-
2053
+ #: eventsmanager-pro.php:499 ../addons/gateway/event-booking/mycred-eventsmanager.
2054
+ #: php:578
2055
  msgid "Exchange Rate"
2056
  msgstr ""
2057
 
2058
+ #: ../addons/gateway/carts/mycred-marketpress.php:407 ..
2059
+ #: addons/gateway/carts/mycred-woocommerce.php:157 ..
2060
+ #: addons/gateway/carts/mycred-wpecommerce.php:360 ../addons/gateway/event-
2061
+ #: booking/mycred-eventespresso3.php:462 ../addons/gateway/event-booking/mycred-
2062
+ #: eventsmanager-pro.php:490 ../addons/gateway/event-booking/mycred-eventsmanager.
2063
+ #: php:569
2064
  msgid "Profit Sharing"
2065
  msgstr ""
2066
 
2068
  msgid "Percentage"
2069
  msgstr ""
2070
 
2071
+ #: ../addons/gateway/carts/mycred-marketpress.php:412 ..
2072
+ #: addons/gateway/carts/mycred-woocommerce.php:159 ..
2073
+ #: addons/gateway/carts/mycred-wpecommerce.php:364 ../addons/gateway/event-
2074
+ #: booking/mycred-eventespresso3.php:464 ../addons/gateway/event-booking/mycred-
2075
+ #: eventsmanager-pro.php:493 ../addons/gateway/event-booking/mycred-eventsmanager.
2076
+ #: php:572
2077
  msgid "Option to share sales with the product owner. Use zero to disable."
2078
  msgstr ""
2079
 
2080
+ #: ../addons/gateway/carts/mycred-marketpress.php:424 ..
2081
+ #: addons/gateway/carts/mycred-wpecommerce.php:371 ../addons/gateway/event-
2082
+ #: booking/mycred-eventsmanager-pro.php:559 ../addons/gateway/event-
2083
+ #: booking/mycred-eventsmanager.php:626
2084
  msgid "Messages"
2085
  msgstr ""
2086
 
2087
+ #: ../addons/gateway/carts/mycred-marketpress.php:427 ..
2088
+ #: addons/gateway/carts/mycred-wpecommerce.php:382 ../addons/gateway/event-
2089
+ #: booking/mycred-eventsmanager-pro.php:569 ../addons/gateway/event-
2090
+ #: booking/mycred-eventsmanager.php:636
2091
  msgid "Insufficient Funds"
2092
  msgstr ""
2093
 
2095
  msgid "Message to show when the user can not use this gateway."
2096
  msgstr ""
2097
 
2098
+ #: ../addons/gateway/carts/mycred-marketpress.php:435 ..
2099
+ #: addons/gateway/carts/mycred-wpecommerce.php:378 ../addons/gateway/event-
2100
+ #: booking/mycred-eventespresso3.php:490
2101
  msgid "Visitors"
2102
  msgstr ""
2103
 
2126
  msgstr ""
2127
 
2128
  #: ../addons/gateway/carts/mycred-marketpress.php:461
2129
+ #, php-format
2130
  msgid ""
2131
  "This is the email text to send to those who have made %s checkouts. It "
2132
+ "overrides the default order checkout email. These codes will be replaced "
2133
+ "with order details: CUSTOMERNAME, ORDERID, ORDERINFO, SHIPPINGINFO, "
2134
+ "PAYMENTINFO, TOTAL, TRACKINGURL. No HTML allowed."
2135
  msgstr ""
2136
 
2137
  #: ../addons/gateway/carts/mycred-woocommerce.php:34
2148
 
2149
  #: ../addons/gateway/carts/mycred-woocommerce.php:83
2150
  msgid ""
2151
+ "Users who are not logged in or excluded from using myCRED will not have "
2152
+ "access to this gateway!"
2153
  msgstr ""
2154
 
2155
  #: ../addons/gateway/carts/mycred-woocommerce.php:88
2165
  msgstr ""
2166
 
2167
  #: ../addons/gateway/carts/mycred-woocommerce.php:95
2168
+ #, php-format
2169
  msgid "Deduct the amount from your %_plural% balance."
2170
  msgstr ""
2171
 
2197
  msgid "Show in Cart and on Checkout Page"
2198
  msgstr ""
2199
 
 
 
 
 
2200
  #: ../addons/gateway/carts/mycred-woocommerce.php:150
2201
  msgid "Order Total in %_plural%"
2202
  msgstr ""
2214
  msgstr ""
2215
 
2216
  #: ../addons/gateway/carts/mycred-woocommerce.php:193
2217
+ #, php-format
2218
  msgid ""
2219
  "Allows users to pay using their myCRED %_singular% balance. Please note that "
2220
+ "users with insufficient funds and users who are not logged in will not see "
2221
+ "this payment gateway on the checkout page."
2222
  msgstr ""
2223
 
2224
  #: ../addons/gateway/carts/mycred-woocommerce.php:214
2229
  msgid "You can not use this gateway. Please try a different payment option."
2230
  msgstr ""
2231
 
2232
+ #: ../addons/gateway/carts/mycred-woocommerce.php:237
2233
  msgid "Insufficient funds. Please try a different payment option."
2234
  msgstr ""
2235
 
2236
+ #: ../addons/gateway/carts/mycred-woocommerce.php:299
2237
  msgid "Your account has successfully been charged."
2238
  msgstr ""
2239
 
2240
+ #: ../addons/gateway/carts/mycred-woocommerce.php:318
2241
  msgid "Order Missing"
2242
  msgstr ""
2243
 
2244
+ #: ../addons/gateway/carts/mycred-woocommerce.php:545 ..
2245
+ #: addons/gateway/carts/mycred-wpecommerce.php:131
2246
  msgid "Your current balance"
2247
  msgstr ""
2248
 
2271
  msgstr ""
2272
 
2273
  #: ../addons/gateway/carts/mycred-wpecommerce.php:357
2274
+ #, php-format
2275
  msgid "How much is 1 %s worth in %s"
2276
  msgstr ""
2277
 
2285
 
2286
  #: ../addons/gateway/carts/mycred-wpecommerce.php:375
2287
  msgid ""
2288
+ "Optional instructions to show users when selecting this gateway. Leave empty "
2289
+ "to hide."
2290
  msgstr ""
2291
 
2292
  #: ../addons/gateway/carts/mycred-wpecommerce.php:379
2299
  "gateway."
2300
  msgstr ""
2301
 
2302
+ #: ../addons/gateway/event-booking/mycred-eventespresso3.php:27 ..
2303
+ #: addons/gateway/event-booking/mycred-eventsmanager-pro.php:39 ..
2304
+ #: addons/gateway/event-booking/mycred-eventsmanager.php:35
2305
  msgid "Pay Now"
2306
  msgstr ""
2307
 
2310
  msgstr ""
2311
 
2312
  #: ../addons/gateway/event-booking/mycred-eventespresso3.php:343
2313
+ #, php-format
2314
  msgid "Activate %s"
2315
  msgstr ""
2316
 
2317
  #: ../addons/gateway/event-booking/mycred-eventespresso3.php:351
2318
+ #, php-format
2319
  msgid "Deactivate %s"
2320
  msgstr ""
2321
 
2322
+ #: ../addons/gateway/event-booking/mycred-eventespresso3.php:399 ..
2323
+ #: addons/gateway/event-booking/mycred-eventsmanager-pro.php:449 ..
2324
+ #: addons/gateway/event-booking/mycred-eventsmanager.php:524
2325
+ #, php-format
2326
  msgid "How many %s is 1 %s worth?"
2327
  msgstr ""
2328
 
2330
  msgid "Gateways Settings Successfully Updated"
2331
  msgstr ""
2332
 
2333
+ #: ../addons/gateway/event-booking/mycred-eventespresso3.php:415 ..
2334
+ #: addons/gateway/event-booking/mycred-eventsmanager-pro.php:535 ..
2335
+ #: addons/gateway/event-booking/mycred-eventsmanager.php:602
2336
  msgid "Labels"
2337
  msgstr ""
2338
 
2352
  msgid "Title to show on receipts and logs"
2353
  msgstr ""
2354
 
2355
+ #: ../addons/gateway/event-booking/mycred-eventespresso3.php:428 ..
2356
+ #: addons/gateway/event-booking/mycred-eventsmanager-pro.php:552 ..
2357
+ #: addons/gateway/event-booking/mycred-eventsmanager.php:619 ../addons/sell-
2358
+ #: content/myCRED-addon-sell-content.php:397 ../addons/sell-content/myCRED-addon-
2359
+ #: sell-content.php:590
2360
  msgid "Button Label"
2361
  msgstr ""
2362
 
2364
  msgid "Pay Button"
2365
  msgstr ""
2366
 
2367
+ #: ../addons/gateway/event-booking/mycred-eventespresso3.php:447 ..
2368
+ #: addons/gateway/event-booking/mycred-eventsmanager-pro.php:137 ..
2369
+ #: addons/gateway/event-booking/mycred-eventsmanager-pro.php:140 ..
2370
+ #: addons/gateway/event-booking/mycred-eventsmanager.php:336 ..
2371
+ #: addons/gateway/event-booking/mycred-eventsmanager.php:339 ../addons/sell-
2372
+ #: content/myCRED-addon-sell-content.php:388 ../addons/sell-content/myCRED-addon-
2373
+ #: sell-content.php:586
2374
  msgid "Price"
2375
  msgstr ""
2376
 
2384
  msgid "Users must be logged in to use this gateway!"
2385
  msgstr ""
2386
 
2387
+ #: ../addons/gateway/event-booking/mycred-eventespresso3.php:467 ..
2388
+ #: modules/mycred-module-log.php:22 ../modules/mycred-module-log.php:23
2389
  msgid "Log"
2390
  msgstr ""
2391
 
2392
+ #: ../addons/gateway/event-booking/mycred-eventespresso3.php:470 ..
2393
+ #: includes/mycred-admin.php:483
2394
  msgid "Log Entry"
2395
  msgstr ""
2396
 
2404
 
2405
  #: ../addons/gateway/event-booking/mycred-eventespresso3.php:482
2406
  msgid ""
2407
+ "Message to show users on the payment page before they are charged. Leave "
2408
+ "empty to hide."
2409
  msgstr ""
2410
 
2411
  #: ../addons/gateway/event-booking/mycred-eventespresso3.php:485
2420
  msgid "Message to show visitors (users not logged in) on the payment page."
2421
  msgstr ""
2422
 
2423
+ #: ../addons/gateway/event-booking/mycred-eventespresso3.php:502 ..
2424
+ #: modules/mycred-module-settings.php:540
2425
  msgid "Update Settings"
2426
  msgstr ""
2427
 
2428
+ #: ../addons/gateway/event-booking/mycred-eventsmanager-pro.php:33 ..
2429
+ #: addons/gateway/event-booking/mycred-eventsmanager.php:29
2430
  msgid "Payment for tickets to %link_with_title%"
2431
  msgstr ""
2432
 
2433
+ #: ../addons/gateway/event-booking/mycred-eventsmanager-pro.php:34 ..
2434
+ #: addons/gateway/event-booking/mycred-eventsmanager.php:30
2435
  msgid "Ticket refund for %link_with_title%"
2436
  msgstr ""
2437
 
2438
+ #: ../addons/gateway/event-booking/mycred-eventsmanager-pro.php:38 ..
2439
+ #: addons/gateway/event-booking/mycred-eventsmanager.php:34
2440
+ #, php-format
2441
  msgid "Pay using your %_plural% balance"
2442
  msgstr ""
2443
 
2444
+ #: ../addons/gateway/event-booking/mycred-eventsmanager-pro.php:40 ..
2445
+ #: addons/gateway/event-booking/mycred-eventsmanager.php:36
2446
  msgid "Pay"
2447
  msgstr ""
2448
 
2449
+ #: ../addons/gateway/event-booking/mycred-eventsmanager-pro.php:43 ..
2450
+ #: addons/gateway/event-booking/mycred-eventsmanager.php:39
2451
  msgid "Thank you for your payment!"
2452
  msgstr ""
2453
 
2454
+ #: ../addons/gateway/event-booking/mycred-eventsmanager-pro.php:44 ..
2455
+ #: addons/gateway/event-booking/mycred-eventsmanager.php:40
2456
  msgid "I'm sorry but you can not pay for these tickets using %_plural%"
2457
  msgstr ""
2458
 
2459
+ #: ../addons/gateway/event-booking/mycred-eventsmanager-pro.php:134 ..
2460
+ #: addons/gateway/event-booking/mycred-eventsmanager.php:333
2461
  msgid "Ticket Type"
2462
  msgstr ""
2463
 
2464
+ #: ../addons/gateway/event-booking/mycred-eventsmanager-pro.php:143 ..
2465
+ #: addons/gateway/event-booking/mycred-eventsmanager.php:342
2466
  msgid "Spaces"
2467
  msgstr ""
2468
 
2474
  msgid "Reject"
2475
  msgstr ""
2476
 
2477
+ #: ../addons/gateway/event-booking/mycred-eventsmanager-pro.php:374 ..
2478
+ #: modules/mycred-module-log.php:500 ../modules/mycred-module-settings.php:488 ..
2479
+ #: modules/mycred-module-settings.php:507
2480
  msgid "Delete"
2481
  msgstr ""
2482
 
2484
  msgid "Edit/View"
2485
  msgstr ""
2486
 
2487
+ #: ../addons/gateway/event-booking/mycred-eventsmanager-pro.php:477 ..
2488
+ #: addons/gateway/event-booking/mycred-eventsmanager.php:542
2489
  msgid "Disabled - Users CAN NOT pay for tickets using %plural%."
2490
  msgstr ""
2491
 
2492
+ #: ../addons/gateway/event-booking/mycred-eventsmanager-pro.php:478 ..
2493
+ #: addons/gateway/event-booking/mycred-eventsmanager.php:543
2494
  msgid "Single - Users can ONLY pay for tickets using %plural%."
2495
  msgstr ""
2496
 
2497
+ #: ../addons/gateway/event-booking/mycred-eventsmanager-pro.php:479 ..
2498
+ #: addons/gateway/event-booking/mycred-eventsmanager.php:544
2499
  msgid "Multi - Users can pay for tickets using other gateways or %plural%."
2500
  msgstr ""
2501
 
2502
+ #: ../addons/gateway/event-booking/mycred-eventsmanager-pro.php:483 ..
2503
+ #: addons/gateway/event-booking/mycred-eventsmanager-pro.php:516 ..
2504
+ #: addons/gateway/event-booking/mycred-eventsmanager.php:562 ..
2505
+ #: addons/gateway/event-booking/mycred-eventsmanager.php:595
2506
  msgid "Refunds"
2507
  msgstr ""
2508
 
2512
  "Use zero for no refunds. No refunds are given to \"Rejected\" bookings!"
2513
  msgstr ""
2514
 
2515
+ #: ../addons/gateway/event-booking/mycred-eventsmanager-pro.php:506 ..
2516
+ #: addons/gateway/event-booking/mycred-eventsmanager.php:585
2517
  msgid "Log Templates"
2518
  msgstr ""
2519
 
2520
+ #: ../addons/gateway/event-booking/mycred-eventsmanager-pro.php:509 ..
2521
+ #: addons/gateway/event-booking/mycred-eventsmanager.php:588
2522
  msgid "Purchases"
2523
  msgstr ""
2524
 
2525
+ #: ../addons/gateway/event-booking/mycred-eventsmanager-pro.php:538 ..
2526
+ #: addons/gateway/event-booking/mycred-eventsmanager.php:605
2527
  msgid "Payment Link Label"
2528
  msgstr ""
2529
 
2530
+ #: ../addons/gateway/event-booking/mycred-eventsmanager-pro.php:541 ..
2531
+ #: addons/gateway/event-booking/mycred-eventsmanager.php:608
2532
  msgid ""
2533
  "The payment link shows / hides the payment form under \"My Bookings\". No HTML "
2534
  "allowed."
2535
  msgstr ""
2536
 
2537
+ #: ../addons/gateway/event-booking/mycred-eventsmanager-pro.php:545 ..
2538
+ #: addons/gateway/event-booking/mycred-eventsmanager.php:612
2539
  msgid "Payment Header"
2540
  msgstr ""
2541
 
2542
+ #: ../addons/gateway/event-booking/mycred-eventsmanager-pro.php:548 ..
2543
+ #: addons/gateway/event-booking/mycred-eventsmanager.php:615
2544
  msgid "Shown on top of the payment form. No HTML allowed."
2545
  msgstr ""
2546
 
2547
+ #: ../addons/gateway/event-booking/mycred-eventsmanager-pro.php:555 ..
2548
+ #: addons/gateway/event-booking/mycred-eventsmanager.php:622
2549
  msgid "The button label for payments. No HTML allowed!"
2550
  msgstr ""
2551
 
2552
+ #: ../addons/gateway/event-booking/mycred-eventsmanager-pro.php:562 ..
2553
+ #: addons/gateway/event-booking/mycred-eventsmanager.php:629
2554
  msgid "Successful Payments"
2555
  msgstr ""
2556
 
2557
+ #: ../addons/gateway/event-booking/mycred-eventsmanager-pro.php:565 ..
2558
+ #: addons/gateway/event-booking/mycred-eventsmanager-pro.php:572 ..
2559
+ #: addons/gateway/event-booking/mycred-eventsmanager.php:632 ..
2560
+ #: addons/gateway/event-booking/mycred-eventsmanager.php:639
2561
  msgid "No HTML allowed!"
2562
  msgstr ""
2563
 
2570
  msgstr ""
2571
 
2572
  #: ../addons/gateway/event-booking/mycred-eventsmanager.php:533
2573
+ #, php-format
2574
  msgid "%s Payments"
2575
  msgstr ""
2576
 
2580
  "zero for no refunds. No refunds are given to \"Rejected\" bookings."
2581
  msgstr ""
2582
 
2583
+ #: ../addons/notifications/myCRED-addon-notifications.php:166 ../modules/mycred-
2584
+ #: module-addons.php:201
2585
  msgid "Notifications"
2586
  msgstr ""
2587
 
2593
  msgid "Use the included CSS Styling for notifications."
2594
  msgstr ""
2595
 
2596
+ #: ../addons/notifications/myCRED-addon-notifications.php:175 ../modules/mycred-
2597
+ #: module-buddypress.php:410
2598
  msgid "Template"
2599
  msgstr ""
2600
 
2601
  #: ../addons/notifications/myCRED-addon-notifications.php:179
2602
+ #, php-format
2603
  msgid "Use %entry% to show the log entry in the notice and %amount% for the amount."
2604
  msgstr ""
2605
 
2619
 
2620
  #: ../addons/notifications/myCRED-addon-notifications.php:193
2621
  msgid ""
2622
+ "The number of milliseconds a notice should be visible.<br />Use zero to "
2623
+ "require that the user closes the notice manually. 1000 milliseconds = 1 "
2624
+ "second."
2625
  msgstr ""
2626
 
2627
  #: ../addons/ranks/myCRED-addon-ranks.php:231
2632
  msgid "Are you sure you want to re-assign user ranks?"
2633
  msgstr ""
2634
 
2635
+ #: ../addons/ranks/myCRED-addon-ranks.php:246 ../addons/ranks/myCRED-addon-ranks.
2636
+ #: php:252 ../addons/ranks/myCRED-addon-ranks.php:258 ../addons/ranks/myCRED-
2637
+ #: addon-ranks.php:787 ../addons/ranks/myCRED-addon-ranks.php:983 ..
2638
+ #: modules/mycred-module-addons.php:213
2639
  msgid "Ranks"
2640
  msgstr ""
2641
 
2642
+ #: ../addons/ranks/myCRED-addon-ranks.php:247 ../addons/ranks/myCRED-addon-ranks.
2643
+ #: php:479 ../addons/ranks/myCRED-addon-ranks.php:498 ../addons/ranks/myCRED-
2644
+ #: addon-ranks.php:593
2645
  msgid "Rank"
2646
  msgstr ""
2647
 
2673
  msgid "No ranks found in Trash"
2674
  msgstr ""
2675
 
2676
+ #: ../addons/ranks/myCRED-addon-ranks.php:344
2677
+ #, php-format
2678
  msgid "Completed - Total of %d users effected"
2679
  msgstr ""
2680
 
2681
+ #: ../addons/ranks/myCRED-addon-ranks.php:346
2682
  msgid "Log is Empty"
2683
  msgstr ""
2684
 
2685
+ #: ../addons/ranks/myCRED-addon-ranks.php:553 ../addons/ranks/myCRED-addon-ranks.
2686
+ #: php:556
2687
+ #, php-format
2688
  msgid "Rank Updated. View <a href=\"%1$s\">All Ranks</a>."
2689
  msgstr ""
2690
 
2691
+ #: ../addons/ranks/myCRED-addon-ranks.php:558
2692
  msgid "Rank Activated"
2693
  msgstr ""
2694
 
2695
+ #: ../addons/ranks/myCRED-addon-ranks.php:559
2696
  msgid "Rank Saved"
2697
  msgstr ""
2698
 
2699
+ #: ../addons/ranks/myCRED-addon-ranks.php:560
2700
+ #, php-format
2701
  msgid "Rank Submitted for approval. View <a href=\"%1$s\">All Ranks</a>."
2702
  msgstr ""
2703
 
2704
+ #: ../addons/ranks/myCRED-addon-ranks.php:562
2705
+ #, php-format
2706
  msgid "Rank scheduled for: <strong>%1$s</strong>."
2707
  msgstr ""
2708
 
2709
+ #: ../addons/ranks/myCRED-addon-ranks.php:619 ../addons/ranks/myCRED-addon-ranks.
2710
+ #: php:672
2711
  msgid "Rank Title"
2712
  msgstr ""
2713
 
2714
+ #: ../addons/ranks/myCRED-addon-ranks.php:620
2715
  msgid "Logo"
2716
  msgstr ""
2717
 
2718
+ #: ../addons/ranks/myCRED-addon-ranks.php:621
2719
  msgid "Requirement"
2720
  msgstr ""
2721
 
2722
+ #: ../addons/ranks/myCRED-addon-ranks.php:622 ../modules/mycred-module-settings.
2723
+ #: php:451
2724
  msgid "Users"
2725
  msgstr ""
2726
 
2727
+ #: ../addons/ranks/myCRED-addon-ranks.php:638
2728
  msgid "No Logo Set"
2729
  msgstr ""
2730
 
2731
+ #: ../addons/ranks/myCRED-addon-ranks.php:647 ../addons/ranks/myCRED-addon-ranks.
2732
+ #: php:652
2733
  msgid "Any Value"
2734
  msgstr ""
2735
 
2736
+ #: ../addons/ranks/myCRED-addon-ranks.php:654
2737
  msgid "Maximum %plural%"
2738
  msgstr ""
2739
 
2740
+ #: ../addons/ranks/myCRED-addon-ranks.php:685
2741
  msgid "Rank Settings"
2742
  msgstr ""
2743
 
2744
+ #: ../addons/ranks/myCRED-addon-ranks.php:707
2745
  msgid "Minimum %plural% to reach this rank"
2746
  msgstr ""
2747
 
2748
+ #: ../addons/ranks/myCRED-addon-ranks.php:711
2749
  msgid "Maximum %plural% to be included in this rank"
2750
  msgstr ""
2751
 
2752
+ #: ../addons/ranks/myCRED-addon-ranks.php:718
2753
  msgid "All Published Ranks"
2754
  msgstr ""
2755
 
2756
+ #: ../addons/ranks/myCRED-addon-ranks.php:724 ../addons/ranks/myCRED-addon-ranks.
2757
+ #: php:726
2758
  msgid "Not Set"
2759
  msgstr ""
2760
 
2761
+ #: ../addons/ranks/myCRED-addon-ranks.php:731
2762
  msgid "No Ranks found"
2763
  msgstr ""
2764
 
2765
+ #: ../addons/ranks/myCRED-addon-ranks.php:789
2766
  msgid "Rank Features"
2767
  msgstr ""
2768
 
2769
+ #: ../addons/ranks/myCRED-addon-ranks.php:793
2770
  msgid "%plural% requirement"
2771
  msgstr ""
2772
 
2773
+ #: ../addons/ranks/myCRED-addon-ranks.php:794
2774
  msgid "Featured Image (Logo)"
2775
  msgstr ""
2776
 
2777
+ #: ../addons/ranks/myCRED-addon-ranks.php:795
2778
  msgid "Content"
2779
  msgstr ""
2780
 
2781
+ #: ../addons/ranks/myCRED-addon-ranks.php:796
2782
  msgid "Excerpt"
2783
  msgstr ""
2784
 
2785
+ #: ../addons/ranks/myCRED-addon-ranks.php:797
2786
  msgid "Comments"
2787
  msgstr ""
2788
 
2789
+ #: ../addons/ranks/myCRED-addon-ranks.php:798
2790
  msgid "Page Attributes"
2791
  msgstr ""
2792
 
2793
+ #: ../addons/ranks/myCRED-addon-ranks.php:799
2794
  msgid "Custom Fields"
2795
  msgstr ""
2796
 
2797
+ #: ../addons/ranks/myCRED-addon-ranks.php:802
2798
  msgid "Public"
2799
  msgstr ""
2800
 
2801
+ #: ../addons/ranks/myCRED-addon-ranks.php:806
2802
  msgid ""
2803
+ "If you want to create a template archive for each rank, you must select to "
2804
+ "have ranks public. Defaults to disabled."
2805
  msgstr ""
2806
 
2807
+ #: ../addons/ranks/myCRED-addon-ranks.php:809
2808
  msgid "Rank Basis"
2809
  msgstr ""
2810
 
2811
+ #: ../addons/ranks/myCRED-addon-ranks.php:812
2812
  msgid "Users are ranked according to their current balance."
2813
  msgstr ""
2814
 
2815
+ #: ../addons/ranks/myCRED-addon-ranks.php:815
2816
  msgid ""
2817
  "Users are ranked according to the total amount of %_plural% they have "
2818
  "accumulated."
2819
  msgstr ""
2820
 
2821
+ #: ../addons/ranks/myCRED-addon-ranks.php:819 ../addons/ranks/myCRED-addon-ranks.
2822
+ #: php:824
2823
  msgid "Calculate Totals"
2824
  msgstr ""
2825
 
2826
+ #: ../addons/ranks/myCRED-addon-ranks.php:822
2827
  msgid ""
2828
  "Use this button to calculate or re-calcualte your users totals. If not used, "
2829
  "the users current balance will be used as a starting point."
2830
  msgstr ""
2831
 
2832
+ #: ../addons/ranks/myCRED-addon-ranks.php:822
2833
  msgid ""
2834
  "Once a users total has been calculated, they will be assigned to their "
2835
  "appropriate roles. For this reason, it is highly recommended that you first "
2836
  "setup your ranks!"
2837
  msgstr ""
2838
 
2839
+ #: ../addons/ranks/myCRED-addon-ranks.php:823
2840
  msgid ""
2841
+ "Depending on your log size and number of users this process may take a while."
2842
+ " Please do not leave, click \"Update Settings\" or re-fresh this page until "
2843
+ "this is completed!"
2844
  msgstr ""
2845
 
2846
+ #: ../addons/ranks/myCRED-addon-ranks.php:828
2847
  msgid "Archive URL"
2848
  msgstr ""
2849
 
2850
+ #: ../addons/ranks/myCRED-addon-ranks.php:832
2851
  msgid "Ignored if Ranks are not public"
2852
  msgstr ""
2853
 
2854
+ #: ../addons/ranks/myCRED-addon-ranks.php:835
2855
  msgid "Display Order"
2856
  msgstr ""
2857
 
2858
+ #: ../addons/ranks/myCRED-addon-ranks.php:842
2859
  msgid "Ascending - Lowest rank to highest"
2860
  msgstr ""
2861
 
2862
+ #: ../addons/ranks/myCRED-addon-ranks.php:843
2863
  msgid "Descending - Highest rank to lowest"
2864
  msgstr ""
2865
 
2866
+ #: ../addons/ranks/myCRED-addon-ranks.php:852
2867
  msgid ""
2868
+ "Select in what order ranks should be displayed in your admin area and/or "
2869
+ "front if ranks are \"Public\""
2870
  msgstr ""
2871
 
2872
+ #: ../addons/ranks/myCRED-addon-ranks.php:862 ../modules/mycred-module-buddypress.
2873
+ #: php:366 ../modules/mycred-module-buddypress.php:373
2874
  msgid "Do not show."
2875
  msgstr ""
2876
 
2877
+ #: ../addons/ranks/myCRED-addon-ranks.php:863 ../modules/mycred-module-buddypress.
2878
+ #: php:367
2879
  msgid "Include in Profile Header."
2880
  msgstr ""
2881
 
2882
+ #: ../addons/ranks/myCRED-addon-ranks.php:864 ../modules/mycred-module-buddypress.
2883
+ #: php:368
2884
  msgid "Include under the \"Profile\" tab"
2885
  msgstr ""
2886
 
2887
+ #: ../addons/ranks/myCRED-addon-ranks.php:865 ../modules/mycred-module-buddypress.
2888
+ #: php:369
2889
  msgid "Include under the \"Profile\" tab and Profile Header."
2890
  msgstr ""
2891
 
2892
+ #: ../addons/ranks/myCRED-addon-ranks.php:868
2893
  msgid "Rank in BuddyPress"
2894
  msgstr ""
2895
 
2896
+ #: ../addons/ranks/myCRED-addon-ranks.php:936
2897
  msgid "Script Communication Error"
2898
  msgstr ""
2899
 
2900
+ #: ../addons/ranks/myCRED-addon-ranks.php:986
2901
  msgid "Rank Post Type"
2902
  msgstr ""
2903
 
2904
+ #: ../addons/ranks/myCRED-addon-ranks.php:990
2905
  msgid "No. of ranks"
2906
  msgstr ""
2907
 
2908
+ #: ../addons/ranks/myCRED-addon-ranks.php:994 ../modules/mycred-module-log.php:
2909
+ #: 368 ../modules/mycred-module-settings.php:440 ../modules/mycred-module-
2910
+ #: settings.php:455
2911
  msgid "Actions"
2912
  msgstr ""
2913
 
2914
+ #: ../addons/ranks/myCRED-addon-ranks.php:995
2915
  msgid "Remove All Ranks"
2916
  msgstr ""
2917
 
2918
+ #: ../addons/ranks/myCRED-addon-ranks.php:995
2919
  msgid "Assign Ranks to Users"
2920
  msgstr ""
2921
 
2922
+ #: ../addons/ranks/includes/mycred-rank-functions.php:192
2923
  msgid "mycred_get_users_rank() : Missing required user id"
2924
  msgstr ""
2925
 
2926
+ #: ../addons/ranks/includes/mycred-rank-functions.php:206
2927
  msgid "no rank"
2928
  msgstr ""
2929
 
2930
+ #: ../addons/ranks/includes/mycred-rank-shortcodes.php:58 ..
2931
+ #: addons/ranks/includes/mycred-rank-shortcodes.php:134
2932
  msgid "No users found with this rank"
2933
  msgstr ""
2934
 
2935
+ #: ../addons/ranks/includes/mycred-rank-shortcodes.php:63 ../includes/mycred-
2936
+ #: shortcodes.php:352 ../includes/mycred-shortcodes.php:355 ../includes/mycred-
2937
+ #: shortcodes.php:417 ../includes/mycred-shortcodes.php:478 ../includes/mycred-
2938
+ #: shortcodes.php:482 ../includes/mycred-shortcodes.php:486
2939
  msgid "error"
2940
  msgstr ""
2941
 
2971
  msgid "Pay Content Author."
2972
  msgstr ""
2973
 
2974
+ #: ../addons/sell-content/myCRED-addon-sell-content.php:339 ../includes/mycred-
2975
+ #: overview.php:141 ../includes/mycred-overview.php:148 ../modules/mycred-module-
2976
+ #: addons.php:224
2977
  msgid "Sell Content"
2978
  msgstr ""
2979
 
3020
  msgstr ""
3021
 
3022
  #: ../addons/sell-content/myCRED-addon-sell-content.php:415
3023
+ #, php-format
3024
  msgid ""
3025
+ "Do <strong>not</strong> use the %buy_button% in this template as a user must "
3026
+ "be logged in to buy content!"
3027
  msgstr ""
3028
 
3029
  #: ../addons/sell-content/myCRED-addon-sell-content.php:419
3030
  msgid "Sale Template for members"
3031
  msgstr ""
3032
 
3033
+ #: ../addons/sell-content/myCRED-addon-sell-content.php:423 ../addons/sell-
3034
+ #: content/myCRED-addon-sell-content.php:431
3035
+ #, php-format
3036
  msgid "Your template must contain the %buy_button% tag for purchases to work!"
3037
  msgstr ""
3038
 
3049
  msgstr ""
3050
 
3051
  #: ../addons/sell-content/myCRED-addon-sell-content.php:494
3052
+ #, php-format
3053
  msgid "%s Sell This"
3054
  msgstr ""
3055
 
3056
  #: ../addons/sell-content/myCRED-addon-sell-content.php:548
3057
+ #, php-format
3058
  msgid "%s Sell Content needs to be setup before you can use this feature."
3059
  msgstr ""
3060
 
3078
  msgid "Thank you for your purchase!"
3079
  msgstr ""
3080
 
3081
+ #: ../addons/sell-content/myCRED-addon-sell-content.php:1008 ../addons/sell-
3082
+ #: content/myCRED-addon-sell-content.php:1094
3083
  msgid "The following content is set for sale:"
3084
  msgstr ""
3085
 
3125
 
3126
  #: ../addons/transfer/myCRED-addon-transfer.php:146
3127
  msgid ""
3128
+ "This myCRED Add-on has not yet been setup! No transfers are allowed until "
3129
+ "this has been done!"
3130
  msgstr ""
3131
 
3132
  #: ../addons/transfer/myCRED-addon-transfer.php:147
3157
  msgid "User Email (user_email)"
3158
  msgstr ""
3159
 
3160
+ #: ../addons/transfer/myCRED-addon-transfer.php:191 ../addons/transfer/myCRED-
3161
+ #: addon-transfer.php:631
3162
  msgid "Transfer %plural%"
3163
  msgstr ""
3164
 
3165
+ #: ../addons/transfer/myCRED-addon-transfer.php:195 ../includes/mycred-widgets.
3166
+ #: php:593 ../modules/mycred-module-settings.php:469
3167
  msgid "Point Types"
3168
  msgstr ""
3169
 
3253
 
3254
  #: ../addons/transfer/myCRED-addon-transfer.php:296
3255
  msgid ""
3256
+ "Text to show when a users balance is to low for transfers. Leave empty to "
3257
+ "hide. No HTML elements allowed!"
3258
  msgstr ""
3259
 
3260
  #: ../addons/transfer/myCRED-addon-transfer.php:300
3272
  msgstr ""
3273
 
3274
  #: ../addons/transfer/myCRED-addon-transfer.php:562
3275
+ #, php-format
3276
  msgid "(%s) Transfer"
3277
  msgstr ""
3278
 
3297
  msgstr ""
3298
 
3299
  #: ../addons/transfer/myCRED-addon-transfer.php:780
3300
+ #, php-format
3301
  msgid "recipients %s"
3302
  msgstr ""
3303
 
3310
  msgstr ""
3311
 
3312
  #: ../includes/mycred-about.php:75
3313
+ #, php-format
3314
  msgid "Welcome to %s %s"
3315
  msgstr ""
3316
 
3350
  msgid "Excluded"
3351
  msgstr ""
3352
 
3353
+ #: ../includes/mycred-admin.php:279 ../modules/mycred-module-log.php:250 ..
3354
+ #: modules/mycred-module-log.php:251
3355
  msgid "History"
3356
  msgstr ""
3357
 
3360
  msgstr ""
3361
 
3362
  #: ../includes/mycred-admin.php:335 ../includes/mycred-admin.php:394
3363
+ #, php-format
3364
  msgid "%singular% balance"
3365
  msgstr ""
3366
 
3477
  msgstr ""
3478
 
3479
  #: ../includes/mycred-importer.php:11
3480
+ #, php-format
3481
  msgid "%s Log Import"
3482
  msgstr ""
3483
 
3486
  msgstr ""
3487
 
3488
  #: ../includes/mycred-importer.php:43
3489
+ #, php-format
3490
  msgid "%s Balance Import"
3491
  msgstr ""
3492
 
3495
  msgstr ""
3496
 
3497
  #: ../includes/mycred-importer.php:75
3498
+ #, php-format
3499
  msgid "%s CubePoints Import"
3500
  msgstr ""
3501
 
3502
+ #: ../includes/mycred-importer.php:76 ../includes/importers/mycred-cubepoints.php:
3503
+ #: 344
3504
  msgid "Import CubePoints log entries and / or balances."
3505
  msgstr ""
3506
 
3522
 
3523
  #: ../includes/mycred-install.php:54
3524
  msgid ""
3525
+ "Sorry but your WordPress installation does not reach the minimum "
3526
+ "requirements for running myCRED. The following errors were given:"
3527
  msgstr ""
3528
 
3529
  #: ../includes/mycred-install.php:243
3539
  msgstr ""
3540
 
3541
  #: ../includes/mycred-install.php:385
3542
+ #, php-format
3543
  msgid "%s Setup"
3544
  msgstr ""
3545
 
3549
 
3550
  #: ../includes/mycred-install.php:411
3551
  msgid ""
3552
+ "Click \"Begin Setup\" to install myCRED. You will be able to select your "
3553
+ "points format, layout and security settings."
3554
  msgstr ""
3555
 
3556
  #: ../includes/mycred-install.php:412
3627
 
3628
  #: ../includes/mycred-install.php:556 ../modules/mycred-module-settings.php:390
3629
  msgid ""
3630
+ "As an added security, you can set the maximum amount a user can gain or "
3631
+ "loose in a single instance. If used, make sure this is the maximum amount a "
3632
+ "user would be able to transfer, buy, or spend in your store. Use zero to "
3633
+ "disable."
3634
  msgstr ""
3635
 
3636
  #: ../includes/mycred-install.php:563 ../modules/mycred-module-settings.php:397
3666
  msgstr ""
3667
 
3668
  #: ../includes/mycred-log.php:389
3669
+ #, php-format
3670
  msgid "Showing %d %s"
3671
  msgstr ""
3672
 
3689
  msgstr ""
3690
 
3691
  #: ../includes/mycred-log.php:424
3692
+ #, php-format
3693
  msgctxt "paging"
3694
  msgid "%1$s of %2$s"
3695
  msgstr ""
3728
 
3729
  #: ../includes/mycred-log.php:609
3730
  msgid ""
3731
+ "Log entries are exported to a CSV file and depending on the number of "
3732
+ "entries selected, the process may take a few seconds."
3733
  msgstr ""
3734
 
3735
  #: ../includes/mycred-log.php:613
3752
  msgid "search log entries"
3753
  msgstr ""
3754
 
3755
+ #: ../includes/mycred-log.php:842 ../modules/mycred-module-buddypress.php:232 ..
3756
+ #: modules/mycred-module-buddypress.php:245
3757
  msgid "All"
3758
  msgstr ""
3759
 
3778
  msgstr ""
3779
 
3780
  #: ../includes/mycred-network.php:169
3781
+ #, php-format
3782
  msgid "%s Network"
3783
  msgstr ""
3784
 
3785
  #: ../includes/mycred-network.php:175
3786
+ #, php-format
3787
  msgid "Note! %s has not yet been setup."
3788
  msgstr ""
3789
 
3792
  msgstr ""
3793
 
3794
  #: ../includes/mycred-network.php:181
3795
+ #, php-format
3796
  msgid "Configure network settings for %s."
3797
  msgstr ""
3798
 
3801
  msgstr ""
3802
 
3803
  #: ../includes/mycred-network.php:199
3804
+ #, php-format
3805
  msgid ""
3806
+ "If enabled, %s will use your main site's settings for all other sites in "
3807
+ "your network."
3808
  msgstr ""
3809
 
3810
  #: ../includes/mycred-network.php:202
3812
  msgstr ""
3813
 
3814
  #: ../includes/mycred-network.php:213
3815
+ #, php-format
3816
  msgid "If enabled, %s will log all site actions in your main site's log."
3817
  msgstr ""
3818
 
3821
  msgstr ""
3822
 
3823
  #: ../includes/mycred-network.php:220
3824
+ #, php-format
3825
  msgid "Comma separated list of blog ids where %s is to be disabled."
3826
  msgstr ""
3827
 
3830
  msgstr ""
3831
 
3832
  #: ../includes/mycred-overview.php:25
3833
+ #, php-format
3834
  msgid "%s Overview"
3835
  msgstr ""
3836
 
3846
  msgid "Deducted"
3847
  msgstr ""
3848
 
3849
+ #: ../includes/mycred-overview.php:120 ../includes/mycred-overview.php:127 ..
3850
+ #: modules/mycred-module-addons.php:235
3851
  msgid "Transfers"
3852
  msgstr ""
3853
 
3906
  msgstr ""
3907
 
3908
  #: ../includes/mycred-remote.php:572
3909
+ msgid ""
3910
+ "The incoming call address. Remote calls made to any other URL will be "
3911
+ "ignored."
3912
  msgstr ""
3913
 
3914
  #: ../includes/mycred-remote.php:575
3954
  msgstr ""
3955
 
3956
  #: ../includes/mycred-widgets.php:21
3957
+ #, php-format
3958
  msgid "Show the current users %s balance"
3959
  msgstr ""
3960
 
3961
  #: ../includes/mycred-widgets.php:23
3962
+ #, php-format
3963
  msgid "(%s) My Balance"
3964
  msgstr ""
3965
 
4012
  msgstr ""
4013
 
4014
  #: ../includes/mycred-widgets.php:323
4015
+ #, php-format
4016
  msgid "Show a list of users sorted by their %s balance"
4017
  msgstr ""
4018
 
4019
  #: ../includes/mycred-widgets.php:325
4020
+ #, php-format
4021
  msgid "(%s) Leaderboard"
4022
  msgstr ""
4023
 
4051
 
4052
  #: ../includes/mycred-widgets.php:446
4053
  msgid ""
4054
+ "If the current user is not in this leaderboard, you can select to append "
4055
+ "them at the end with their current position."
4056
  msgstr ""
4057
 
4058
  #: ../includes/mycred-widgets.php:495
4060
  msgstr ""
4061
 
4062
  #: ../includes/mycred-widgets.php:497
4063
+ #, php-format
4064
  msgid "(%s) Wallet"
4065
  msgstr ""
4066
 
4072
  msgid "Row Layout"
4073
  msgstr ""
4074
 
4075
+ #: ../includes/importers/mycred-balances.php:81 ../includes/importers/mycred-
4076
+ #: balances.php:159 ../includes/importers/mycred-balances.php:198 ..
4077
+ #: includes/importers/mycred-balances.php:213 ../includes/importers/mycred-log-
4078
+ #: entries.php:81 ../includes/importers/mycred-log-entries.php:126 ..
4079
+ #: includes/importers/mycred-log-entries.php:165 ../includes/importers/mycred-
4080
+ #: log-entries.php:180
4081
  msgid "Sorry, there has been an error."
4082
  msgstr ""
4083
 
4084
+ #: ../includes/importers/mycred-balances.php:82 ../includes/importers/mycred-log-
4085
+ #: entries.php:82
4086
  msgid "The file does not exist, please try again."
4087
  msgstr ""
4088
 
4089
+ #: ../includes/importers/mycred-balances.php:160 ../includes/importers/mycred-log-
4090
+ #: entries.php:127
4091
  msgid "The CSV is invalid."
4092
  msgstr ""
4093
 
4094
  #: ../includes/importers/mycred-balances.php:171
4095
+ #, php-format
4096
  msgid ""
4097
  "Import complete - A total of <strong>%d</strong> balances were successfully "
4098
  "imported. <strong>%d</strong> was skipped."
4099
  msgstr ""
4100
 
4101
+ #: ../includes/importers/mycred-balances.php:181 ../includes/importers/mycred-
4102
+ #: cubepoints.php:293 ../includes/importers/mycred-log-entries.php:148
4103
  msgid "View Log"
4104
  msgstr ""
4105
 
4106
+ #: ../includes/importers/mycred-balances.php:181 ../includes/importers/mycred-
4107
+ #: cubepoints.php:293 ../includes/importers/mycred-log-entries.php:148
4108
  msgid "Import More"
4109
  msgstr ""
4110
 
4116
  msgid "Import balances from a CSV file."
4117
  msgstr ""
4118
 
4119
+ #: ../includes/importers/mycred-balances.php:252 ../includes/importers/mycred-log-
4120
+ #: entries.php:219
4121
  msgid ""
4122
  "Before you can upload your import file, you will need to fix the following "
4123
  "error:"
4124
  msgstr ""
4125
 
4126
+ #: ../includes/importers/mycred-balances.php:261 ../includes/importers/mycred-log-
4127
+ #: entries.php:228
4128
  msgid "Choose a file from your computer:"
4129
  msgstr ""
4130
 
4131
+ #: ../includes/importers/mycred-balances.php:267 ../includes/importers/mycred-log-
4132
+ #: entries.php:234
4133
+ #, php-format
4134
  msgid "Maximum size: %s"
4135
  msgstr ""
4136
 
4137
+ #: ../includes/importers/mycred-balances.php:272 ../includes/importers/mycred-log-
4138
+ #: entries.php:239
4139
  msgid "OR enter path to file:"
4140
  msgstr ""
4141
 
4142
+ #: ../includes/importers/mycred-balances.php:279 ../includes/importers/mycred-log-
4143
+ #: entries.php:246
4144
  msgid "Delimiter"
4145
  msgstr ""
4146
 
4156
  msgid "Adjust current balances according to the amount in this CSV file"
4157
  msgstr ""
4158
 
4159
+ #: ../includes/importers/mycred-balances.php:292 ../includes/importers/mycred-log-
4160
+ #: entries.php:252
4161
  msgid "Upload file and import"
4162
  msgstr ""
4163
 
4169
  msgid "No log entries were imported!"
4170
  msgstr ""
4171
 
4172
+ #: ../includes/importers/mycred-cubepoints.php:282 ../includes/importers/mycred-
4173
+ #: log-entries.php:138
4174
+ #, php-format
4175
  msgid ""
4176
  "Import complete - A total of <strong>%d</strong> entries were successfully "
4177
  "imported. <strong>%d</strong> was skipped."
4206
  msgstr ""
4207
 
4208
  #: ../includes/importers/mycred-cubepoints.php:360
4209
+ msgid ""
4210
+ "Warning! Importing CubePoints balances will replace your users myCRED "
4211
+ "balance!"
4212
  msgstr ""
4213
 
4214
  #: ../includes/importers/mycred-cubepoints.php:378
4230
  #: ../modules/mycred-module-addons.php:158
4231
  msgid ""
4232
  "The <strong>buy</strong>CRED Add-on allows your users to buy points using "
4233
+ "PayPal, Skrill (Moneybookers) or NETbilling. <strong>buy</strong>CRED can "
4234
+ "also let your users buy points for other members."
4235
  msgstr ""
4236
 
4237
  #: ../modules/mycred-module-addons.php:169
4257
 
4258
  #: ../modules/mycred-module-addons.php:214
4259
  msgid ""
4260
+ "Create ranks for users reaching a certain number of %_plural% with the "
4261
+ "option to add logos for each rank."
4262
  msgstr ""
4263
 
4264
  #: ../modules/mycred-module-addons.php:225
4275
  msgstr ""
4276
 
4277
  #: ../modules/mycred-module-addons.php:272
4278
+ #, php-format
4279
  msgid "%s Add-ons"
4280
  msgstr ""
4281
 
4292
  msgstr ""
4293
 
4294
  #: ../modules/mycred-module-addons.php:306
4295
+ #, php-format
4296
  msgid "You can find more add-ons in our %s."
4297
  msgstr ""
4298
 
4333
  msgstr ""
4334
 
4335
  #: ../modules/mycred-module-buddypress.php:31
4336
+ #, php-format
4337
  msgid "%s's History"
4338
  msgstr ""
4339
 
4354
  msgstr ""
4355
 
4356
  #: ../modules/mycred-module-buddypress.php:389
4357
+ #, php-format
4358
  msgid "%singular% Balance"
4359
  msgstr ""
4360
 
4361
  #: ../modules/mycred-module-buddypress.php:405
4362
+ #, php-format
4363
  msgid "Members and visitors can other members %_singular% balance."
4364
  msgstr ""
4365
 
4380
  msgstr ""
4381
 
4382
  #: ../modules/mycred-module-buddypress.php:445
4383
+ #, php-format
4384
  msgid "Title shown to others. Use %s to show the first name."
4385
  msgstr ""
4386
 
4404
  msgid "Number of history entries to show"
4405
  msgstr ""
4406
 
4407
+ #: ../modules/mycred-module-hooks.php:25 ../modules/mycred-module-hooks.php:26 ..
4408
+ #: modules/mycred-module-hooks.php:27
4409
  msgid "Hooks"
4410
  msgstr ""
4411
 
4412
  #: ../modules/mycred-module-hooks.php:87
4413
+ #, php-format
4414
  msgid "%plural% for registrations"
4415
  msgstr ""
4416
 
4417
  #: ../modules/mycred-module-hooks.php:88
4418
+ #, php-format
4419
  msgid "Award %_plural% for users joining your website."
4420
  msgstr ""
4421
 
4422
  #: ../modules/mycred-module-hooks.php:94
4423
+ #, php-format
4424
  msgid "%plural% for logins"
4425
  msgstr ""
4426
 
4427
  #: ../modules/mycred-module-hooks.php:95
4428
+ #, php-format
4429
  msgid ""
4430
  "Award %_plural% for logging in to your website. You can also set an optional "
4431
  "limit."
4432
  msgstr ""
4433
 
4434
  #: ../modules/mycred-module-hooks.php:101
4435
+ #, php-format
4436
  msgid "%plural% for publishing content"
4437
  msgstr ""
4438
 
4439
  #: ../modules/mycred-module-hooks.php:102
4440
+ #, php-format
4441
  msgid ""
4442
  "Award %_plural% for publishing content on your website. If your custom post "
4443
  "type is not shown bellow, make sure it is set to \"Public\"."
4444
  msgstr ""
4445
 
4446
  #: ../modules/mycred-module-hooks.php:108
4447
+ #, php-format
4448
  msgid "%plural% for comments"
4449
  msgstr ""
4450
 
4451
  #: ../modules/mycred-module-hooks.php:108
4452
+ #, php-format
4453
  msgid "%plural% for Disqus comments"
4454
  msgstr ""
4455
 
4456
  #: ../modules/mycred-module-hooks.php:109
4457
+ #, php-format
4458
  msgid "Award %_plural% for making comments."
4459
  msgstr ""
4460
 
4461
  #: ../modules/mycred-module-hooks.php:115
4462
+ #, php-format
4463
  msgid "%plural% for clicking on links"
4464
  msgstr ""
4465
 
4470
  msgstr ""
4471
 
4472
  #: ../modules/mycred-module-hooks.php:122
4473
+ #, php-format
4474
  msgid "%plural% for viewing Videos"
4475
  msgstr ""
4476
 
4477
  #: ../modules/mycred-module-hooks.php:123
4478
  msgid ""
4479
+ "Award %_plural% to users who watches videos embedded using the "
4480
+ "[mycred_video] shortcode."
4481
  msgstr ""
4482
 
4483
  #: ../modules/mycred-module-hooks.php:129
4484
+ #, php-format
4485
  msgid "%plural% for referrals"
4486
  msgstr ""
4487
 
4490
  msgstr ""
4491
 
4492
  #: ../modules/mycred-module-hooks.php:163
4493
+ #, php-format
4494
  msgid "%s Hooks"
4495
  msgstr ""
4496
 
4500
  "depending on their actions around your website."
4501
  msgstr ""
4502
 
4503
+ #: ../modules/mycred-module-hooks.php:326 ../modules/mycred-module-hooks.php:638 .
4504
+ #: ./modules/mycred-module-hooks.php:651 ../modules/mycred-module-hooks.php:687 ..
4505
+ #: modules/mycred-module-hooks.php:1067 ../modules/mycred-module-hooks.php:1084 .
4506
+ #: ./modules/mycred-module-hooks.php:1101 ../modules/mycred-module-hooks.php:2212
4507
+ #: ../modules/mycred-module-hooks.php:2241 ../plugins/mycred-hook-badgeOS.php:281
4508
+ #: ../plugins/mycred-hook-bbPress.php:471 ../plugins/mycred-hook-bbPress.php:484 .
4509
+ #: ./plugins/mycred-hook-bbPress.php:497 ../plugins/mycred-hook-bbPress.php:515 ..
4510
+ #: plugins/mycred-hook-bbPress.php:528 ../plugins/mycred-hook-bbPress.php:547 ..
4511
+ #: plugins/mycred-hook-bbPress.php:575 ../plugins/mycred-hook-buddypress-gallery.
4512
+ #: php:104 ../plugins/mycred-hook-buddypress-links.php:254 ../plugins/mycred-hook-
4513
+ #: buddypress-links.php:267 ../plugins/mycred-hook-buddypress-links.php:280 ..
4514
+ #: plugins/mycred-hook-buddypress-links.php:291 ../plugins/mycred-hook-
4515
+ #: buddypress-links.php:304 ../plugins/mycred-hook-buddypress-links.php:317 ..
4516
+ #: plugins/mycred-hook-buddypress-media.php:170 ../plugins/mycred-hook-
4517
+ #: buddypress-media.php:180 ../plugins/mycred-hook-buddypress-media.php:190 ..
4518
+ #: plugins/mycred-hook-buddypress-media.php:203 ../plugins/mycred-hook-
4519
+ #: buddypress-media.php:213 ../plugins/mycred-hook-buddypress-media.php:223 ..
4520
+ #: plugins/mycred-hook-buddypress.php:381 ../plugins/mycred-hook-buddypress.php:
4521
+ #: 394 ../plugins/mycred-hook-buddypress.php:407 ../plugins/mycred-hook-
4522
+ #: buddypress.php:420 ../plugins/mycred-hook-buddypress.php:433 ../plugins/mycred-
4523
+ #: hook-buddypress.php:446 ../plugins/mycred-hook-buddypress.php:459 ..
4524
+ #: plugins/mycred-hook-buddypress.php:472 ../plugins/mycred-hook-buddypress.php:
4525
+ #: 926 ../plugins/mycred-hook-buddypress.php:939 ../plugins/mycred-hook-
4526
+ #: buddypress.php:952 ../plugins/mycred-hook-buddypress.php:965 ../plugins/mycred-
4527
+ #: hook-buddypress.php:978 ../plugins/mycred-hook-buddypress.php:991 ..
4528
+ #: plugins/mycred-hook-buddypress.php:1005 ../plugins/mycred-hook-buddypress.php:
4529
+ #: 1018 ../plugins/mycred-hook-buddypress.php:1031 ../plugins/mycred-hook-
4530
+ #: buddypress.php:1044 ../plugins/mycred-hook-contact-form7.php:137 ..
4531
+ #: plugins/mycred-hook-gravityforms.php:113 ../plugins/mycred-hook-invite-anyone.
4532
+ #: php:219 ../plugins/mycred-hook-invite-anyone.php:240 ../plugins/mycred-hook-
4533
+ #: jetpack.php:506 ../plugins/mycred-hook-jetpack.php:519 ../plugins/mycred-hook-
4534
+ #: simplepress.php:330 ../plugins/mycred-hook-simplepress.php:343 ..
4535
+ #: plugins/mycred-hook-simplepress.php:356 ../plugins/mycred-hook-simplepress.
4536
+ #: php:380
4537
  msgid "Log template"
4538
  msgstr ""
4539
 
4540
+ #: ../modules/mycred-module-hooks.php:527 ../modules/mycred-module-hooks.php:2220
4541
+ #: ../modules/mycred-module-hooks.php:2249 ../plugins/mycred-hook-invite-anyone.
4542
+ #: php:224 ../plugins/mycred-hook-invite-anyone.php:245
4543
  msgid "Limit"
4544
  msgstr ""
4545
 
4546
  #: ../modules/mycred-module-hooks.php:632
4547
+ #, php-format
4548
  msgid "%plural% for Posts"
4549
  msgstr ""
4550
 
4551
  #: ../modules/mycred-module-hooks.php:645
4552
+ #, php-format
4553
  msgid "%plural% for Pages"
4554
  msgstr ""
4555
 
4556
  #: ../modules/mycred-module-hooks.php:681
4557
+ #, php-format
4558
  msgid "%plural% for %s"
4559
  msgstr ""
4560
 
4568
  msgid "Approved Comment"
4569
  msgstr ""
4570
 
4571
+ #: ../modules/mycred-module-hooks.php:1058 ../modules/mycred-module-hooks.php:
4572
+ #: 1075 ../modules/mycred-module-hooks.php:1092
4573
  msgid "Comment Author"
4574
  msgstr ""
4575
 
4576
+ #: ../modules/mycred-module-hooks.php:1062 ../modules/mycred-module-hooks.php:
4577
+ #: 1079 ../modules/mycred-module-hooks.php:1096
4578
  msgid "Content Author"
4579
  msgstr ""
4580
 
4605
  msgstr ""
4606
 
4607
  #: ../modules/mycred-module-hooks.php:1122
4608
+ msgid ""
4609
+ "%plural% is to be awarded even when comment authors reply to their own "
4610
+ "comment."
4611
  msgstr ""
4612
 
4613
  #: ../modules/mycred-module-hooks.php:1193
4620
 
4621
  #: ../modules/mycred-module-hooks.php:1386
4622
  msgid ""
4623
+ "The default amount to award for clicking on links. You can override this in "
4624
+ "the shortcode."
4625
  msgstr ""
4626
 
4627
  #: ../modules/mycred-module-hooks.php:1393
4628
+ #, php-format
4629
  msgid "Custom tags: %url%, %title% or %id%."
4630
  msgstr ""
4631
 
4636
  #: ../modules/mycred-module-hooks.php:1404
4637
  msgid ""
4638
  "If no ID is set when using the mycred_link shortcode, the shortcode will "
4639
+ "generate one automatically based on the value set under href. If you are "
4640
+ "using this feature for \"sharing\" content, it is recommended that you limit "
4641
+ "by ID."
4642
  msgstr ""
4643
 
4644
  #: ../modules/mycred-module-hooks.php:1406 ../modules/mycred-module-hooks.php:1762
4654
  msgstr ""
4655
 
4656
  #: ../modules/mycred-module-hooks.php:1738
4657
+ #, php-format
4658
  msgid "Select when %_plural% should be awarded or deducted."
4659
  msgstr ""
4660
 
4686
 
4687
  #: ../modules/mycred-module-hooks.php:1758
4688
  msgid ""
4689
+ "Do not set this value to zero! A lot of thing can happen while a user "
4690
+ "watches a movie and sometimes a few seconds can drop of the counter due to "
4691
+ "buffering or play back errors."
4692
  msgstr ""
4693
 
4694
  #: ../modules/mycred-module-hooks.php:1826
4757
 
4758
  #: ../modules/mycred-module-hooks.php:2298
4759
  msgid ""
4760
+ "Option to inser the referral link in users profiles. Links will only be "
4761
+ "visible to users viewing their own profiles or administrators."
4762
  msgstr ""
4763
 
4764
  #: ../modules/mycred-module-hooks.php:2304
4795
  msgid "Available Shortcodes"
4796
  msgstr ""
4797
 
4798
+ #: ../modules/mycred-module-log.php:185 ../modules/mycred-module-log.php:206 ..
4799
+ #: modules/mycred-module-settings.php:61 ../modules/mycred-module-settings.php:102
4800
  msgid "Access denied for this action"
4801
  msgstr ""
4802
 
4816
  msgid "Entries"
4817
  msgstr ""
4818
 
4819
+ #: ../modules/mycred-module-log.php:301 ../modules/mycred-module-log.php:381 ..
4820
+ #: modules/mycred-module-log.php:625 ../modules/mycred-module-settings.php:570
4821
  msgid "Export"
4822
  msgstr ""
4823
 
4826
  msgstr ""
4827
 
4828
  #: ../modules/mycred-module-log.php:375
4829
+ #, php-format
4830
  msgid "%s Log"
4831
  msgstr ""
4832
 
4855
  msgstr ""
4856
 
4857
  #: ../modules/mycred-module-log.php:619
4858
+ #, php-format
4859
  msgid "My %s History"
4860
  msgstr ""
4861
 
4862
+ #: ../modules/mycred-module-settings.php:65 ../modules/mycred-module-settings.php:
4863
+ #: 106 ../modules/mycred-module-settings.php:148
4864
  msgid "Missing point type"
4865
  msgstr ""
4866
 
4873
  msgstr ""
4874
 
4875
  #: ../modules/mycred-module-settings.php:330
4876
+ #, php-format
4877
  msgid "%s Settings"
4878
  msgstr ""
4879
 
4880
  #: ../modules/mycred-module-settings.php:333
4881
+ #, php-format
4882
  msgid "Adjust your core or add-on settings. Follow us on: %s %s"
4883
  msgstr ""
4884
 
4891
  msgstr ""
4892
 
4893
  #: ../modules/mycred-module-settings.php:345
4894
+ #, php-format
4895
  msgid "Accessible though the %singular% template tag."
4896
  msgstr ""
4897
 
4919
  msgid "Edit Settings"
4920
  msgstr ""
4921
 
4922
+ #: ../modules/mycred-module-settings.php:380 ../modules/mycred-module-settings.
4923
+ #: php:385
4924
  msgid "Capability to check for."
4925
  msgstr ""
4926
 
4964
  msgid "Default"
4965
  msgstr ""
4966
 
4967
+ #: ../modules/mycred-module-settings.php:480 ../modules/mycred-module-settings.
4968
+ #: php:499 ../modules/mycred-module-settings.php:521
4969
  msgid "Meta Key"
4970
  msgstr ""
4971
 
4999
 
5000
  #: ../modules/mycred-module-settings.php:562
5001
  msgid ""
5002
+ "Use ID if you intend to use this export as a backup of your current site "
5003
+ "while Email is recommended if you want to export to a different site."
5004
  msgstr ""
5005
 
5006
  #: ../modules/mycred-module-settings.php:565
5008
  msgstr ""
5009
 
5010
  #: ../modules/mycred-module-settings.php:567
5011
+ #, php-format
5012
  msgid ""
5013
+ "Optional log entry to use if you intend to import this file in a different "
5014
+ "%s installation."
5015
  msgstr ""
5016
 
5017
  #: ../plugins/mycred-hook-badgeOS.php:20
5025
  msgstr ""
5026
 
5027
  #: ../plugins/mycred-hook-badgeOS.php:98
5028
+ #, php-format
5029
+ msgid ""
5030
+ "Please setup your <a href=\"%s\">default settings</a> before using this "
5031
+ "feature."
5032
  msgstr ""
5033
 
5034
  #: ../plugins/mycred-hook-badgeOS.php:109 ../plugins/mycred-hook-badgeOS.php:111
5044
  msgstr ""
5045
 
5046
  #: ../plugins/mycred-hook-badgeOS.php:261
5047
+ #, php-format
5048
  msgid "Default %s for %s"
5049
  msgstr ""
5050
 
5061
  msgstr ""
5062
 
5063
  #: ../plugins/mycred-hook-bbPress.php:19
5064
+ #, php-format
5065
  msgid "Awards %_plural% for bbPress actions."
5066
  msgstr ""
5067
 
5068
  #: ../plugins/mycred-hook-bbPress.php:464
5069
+ #, php-format
5070
  msgid "%plural% for New Forum"
5071
  msgstr ""
5072
 
5073
  #: ../plugins/mycred-hook-bbPress.php:477
5074
+ #, php-format
5075
  msgid "%plural% for Forum Deletion"
5076
  msgstr ""
5077
 
5078
+ #: ../plugins/mycred-hook-bbPress.php:490 ../plugins/mycred-hook-simplepress.php:
5079
+ #: 323
5080
+ #, php-format
5081
  msgid "%plural% for New Topic"
5082
  msgstr ""
5083
 
5084
  #: ../plugins/mycred-hook-bbPress.php:504
5085
+ #, php-format
5086
  msgid "Forum authors can receive %_plural% for creating new topics."
5087
  msgstr ""
5088
 
5089
+ #: ../plugins/mycred-hook-bbPress.php:508 ../plugins/mycred-hook-bbPress.php:568 .
5090
+ #: ./plugins/mycred-hook-simplepress.php:336
5091
+ #, php-format
5092
  msgid "%plural% for Topic Deletion"
5093
  msgstr ""
5094
 
5095
  #: ../plugins/mycred-hook-bbPress.php:521
5096
+ #, php-format
5097
  msgid "%plural% for Favorited Topic"
5098
  msgstr ""
5099
 
5100
+ #: ../plugins/mycred-hook-bbPress.php:534 ../plugins/mycred-hook-bbPress.php:558 .
5101
+ #: ./plugins/mycred-hook-buddypress.php:375 ../plugins/mycred-hook-simplepress.
5102
+ #: php:367
5103
  msgid "Daily Limit"
5104
  msgstr ""
5105
 
5106
+ #: ../plugins/mycred-hook-bbPress.php:536 ../plugins/mycred-hook-bbPress.php:560 .
5107
+ #: ./plugins/mycred-hook-simplepress.php:369
5108
  msgid "Use zero for unlimited"
5109
  msgstr ""
5110
 
5111
  #: ../plugins/mycred-hook-bbPress.php:540
5112
+ #, php-format
5113
  msgid "%plural% for New Reply"
5114
  msgstr ""
5115
 
5116
  #: ../plugins/mycred-hook-bbPress.php:554
5117
+ #, php-format
5118
  msgid "Topic authors can receive %_plural% for replying to their own Topic"
5119
  msgstr ""
5120
 
5121
  #: ../plugins/mycred-hook-bbPress.php:564
5122
+ #, php-format
5123
  msgid "Show users %_plural% balance in replies"
5124
  msgstr ""
5125
 
5128
  msgstr ""
5129
 
5130
  #: ../plugins/mycred-hook-buddypress-gallery.php:20
5131
+ #, php-format
5132
  msgid ""
5133
  "Awards %_plural% for creating a new gallery either using BP Album+ or BP "
5134
  "Gallery."
5135
  msgstr ""
5136
 
5137
  #: ../plugins/mycred-hook-buddypress-gallery.php:97
5138
+ #, php-format
5139
  msgid "%plural% for New Gallery"
5140
  msgstr ""
5141
 
5144
  msgstr ""
5145
 
5146
  #: ../plugins/mycred-hook-buddypress-links.php:20
5147
+ #, php-format
5148
  msgid "Awards %_plural% for link related actions."
5149
  msgstr ""
5150
 
5151
  #: ../plugins/mycred-hook-buddypress-links.php:247
5152
+ #, php-format
5153
  msgid "%plural% for New Links"
5154
  msgstr ""
5155
 
5156
  #: ../plugins/mycred-hook-buddypress-links.php:260
5157
+ #, php-format
5158
  msgid "%plural% for Vote on Link"
5159
  msgstr ""
5160
 
5171
  msgstr ""
5172
 
5173
  #: ../plugins/mycred-hook-buddypress-links.php:297
5174
+ #, php-format
5175
  msgid "%plural% for Updating Links"
5176
  msgstr ""
5177
 
5178
  #: ../plugins/mycred-hook-buddypress-links.php:310
5179
+ #, php-format
5180
  msgid "%plural% for Deleting Links"
5181
  msgstr ""
5182
 
5185
  msgstr ""
5186
 
5187
  #: ../plugins/mycred-hook-buddypress-media.php:19
5188
+ #, php-format
5189
  msgid "Award / Deduct %_plural% for users creating albums or uploading new photos."
5190
  msgstr ""
5191
 
5226
  msgstr ""
5227
 
5228
  #: ../plugins/mycred-hook-buddypress.php:21
5229
+ #, php-format
5230
  msgid "Awards %_plural% for profile related actions."
5231
  msgstr ""
5232
 
5235
  msgstr ""
5236
 
5237
  #: ../plugins/mycred-hook-buddypress.php:29
5238
+ #, php-format
5239
  msgid ""
5240
  "Awards %_plural% for group related actions. Use minus to deduct %_plural% or "
5241
  "zero to disable a specific hook."
5242
  msgstr ""
5243
 
5244
  #: ../plugins/mycred-hook-buddypress.php:369
5245
+ #, php-format
5246
  msgid "%plural% for Profile Updates"
5247
  msgstr ""
5248
 
5251
  msgstr ""
5252
 
5253
  #: ../plugins/mycred-hook-buddypress.php:387
5254
+ #, php-format
5255
  msgid "%plural% for New Avatar"
5256
  msgstr ""
5257
 
5258
  #: ../plugins/mycred-hook-buddypress.php:400
5259
+ #, php-format
5260
  msgid "%plural% for New Friendships"
5261
  msgstr ""
5262
 
5263
  #: ../plugins/mycred-hook-buddypress.php:413
5264
+ #, php-format
5265
  msgid "%plural% for Leaving Friendship"
5266
  msgstr ""
5267
 
5268
  #: ../plugins/mycred-hook-buddypress.php:426
5269
+ #, php-format
5270
  msgid "%plural% for New Comment"
5271
  msgstr ""
5272
 
5273
  #: ../plugins/mycred-hook-buddypress.php:439
5274
+ #, php-format
5275
  msgid "%plural% for Deleting Comment"
5276
  msgstr ""
5277
 
5278
  #: ../plugins/mycred-hook-buddypress.php:452
5279
+ #, php-format
5280
  msgid "%plural% for New Messages"
5281
  msgstr ""
5282
 
5283
  #: ../plugins/mycred-hook-buddypress.php:465
5284
+ #, php-format
5285
  msgid "%plural% for Sending Gift"
5286
  msgstr ""
5287
 
5288
  #: ../plugins/mycred-hook-buddypress.php:912
5289
+ #, php-format
5290
  msgid "%plural% for Creating Groups"
5291
  msgstr ""
5292
 
5305
  msgstr ""
5306
 
5307
  #: ../plugins/mycred-hook-buddypress.php:932
5308
+ #, php-format
5309
  msgid "%plural% for Deleting Groups"
5310
  msgstr ""
5311
 
5312
  #: ../plugins/mycred-hook-buddypress.php:945
5313
+ #, php-format
5314
  msgid "%plural% for New Forum Topic"
5315
  msgstr ""
5316
 
5317
  #: ../plugins/mycred-hook-buddypress.php:958
5318
+ #, php-format
5319
  msgid "%plural% for Editing Forum Topic"
5320
  msgstr ""
5321
 
5322
  #: ../plugins/mycred-hook-buddypress.php:971
5323
+ #, php-format
5324
  msgid "%plural% for New Forum Post"
5325
  msgstr ""
5326
 
5327
  #: ../plugins/mycred-hook-buddypress.php:984
5328
+ #, php-format
5329
  msgid "%plural% for Editing Forum Post"
5330
  msgstr ""
5331
 
5332
  #: ../plugins/mycred-hook-buddypress.php:997
5333
+ #, php-format
5334
  msgid "%plural% for Joining Groups"
5335
  msgstr ""
5336
 
5341
  msgstr ""
5342
 
5343
  #: ../plugins/mycred-hook-buddypress.php:1011
5344
+ #, php-format
5345
  msgid "%plural% for Leaving Groups"
5346
  msgstr ""
5347
 
5348
  #: ../plugins/mycred-hook-buddypress.php:1024
5349
+ #, php-format
5350
  msgid "%plural% for New Group Avatar"
5351
  msgstr ""
5352
 
5353
  #: ../plugins/mycred-hook-buddypress.php:1037
5354
+ #, php-format
5355
  msgid "%plural% for New Group Comment"
5356
  msgstr ""
5357
 
5360
  msgstr ""
5361
 
5362
  #: ../plugins/mycred-hook-contact-form7.php:19
5363
+ #, php-format
5364
  msgid "Awards %_plural% for successful form submissions (by logged in users)."
5365
  msgstr ""
5366
 
5367
+ #: ../plugins/mycred-hook-contact-form7.php:110 ../plugins/mycred-hook-
5368
+ #: gravityforms.php:86
5369
  msgid "No forms found."
5370
  msgstr ""
5371
 
5374
  msgstr ""
5375
 
5376
  #: ../plugins/mycred-hook-events-manager-light.php:19
5377
+ #, php-format
5378
  msgid "Awards %_plural% for users attending events."
5379
  msgstr ""
5380
 
5391
  msgstr ""
5392
 
5393
  #: ../plugins/mycred-hook-gd-star-rating.php:19
5394
+ #, php-format
5395
  msgid "Awards %_plural% for users rate items using the GD Star Rating plugin."
5396
  msgstr ""
5397
 
5408
  msgstr ""
5409
 
5410
  #: ../plugins/mycred-hook-gravityforms.php:19
5411
+ #, php-format
5412
  msgid "Awards %_plural% for successful form submissions."
5413
  msgstr ""
5414
 
5417
  msgstr ""
5418
 
5419
  #: ../plugins/mycred-hook-invite-anyone.php:19
5420
+ #, php-format
5421
  msgid ""
5422
  "Awards %_plural% for sending invitations and/or %_plural% if the invite is "
5423
  "accepted."
5424
  msgstr ""
5425
 
5426
+ #: ../plugins/mycred-hook-invite-anyone.php:212
5427
+ #, php-format
5428
  msgid "%plural% for Sending An Invite"
5429
  msgstr ""
5430
 
5431
+ #: ../plugins/mycred-hook-invite-anyone.php:228
5432
  msgid "Maximum number of invites that grants %_plural%. Use zero for unlimited."
5433
  msgstr ""
5434
 
5435
+ #: ../plugins/mycred-hook-invite-anyone.php:232
5436
+ #, php-format
5437
  msgid "%plural% for Accepting An Invite"
5438
  msgstr ""
5439
 
5440
+ #: ../plugins/mycred-hook-invite-anyone.php:236
5441
+ #, php-format
5442
  msgid "%plural% for each invited user that accepts an invitation."
5443
  msgstr ""
5444
 
5445
+ #: ../plugins/mycred-hook-invite-anyone.php:249
5446
  msgid ""
5447
  "Maximum number of accepted invitations that grants %_plural%. Use zero for "
5448
  "unlimited."
5453
  msgstr ""
5454
 
5455
  #: ../plugins/mycred-hook-jetpack.php:19
5456
+ #, php-format
5457
+ msgid ""
5458
+ "Awards %_plural% for users signing up for site or comment updates using "
5459
+ "Jetpack."
5460
  msgstr ""
5461
 
5462
  #: ../plugins/mycred-hook-jetpack.php:499
5472
  msgstr ""
5473
 
5474
  #: ../plugins/mycred-hook-simplepress.php:19
5475
+ #, php-format
5476
  msgid "Awards %_plural% for Simple:Press actions."
5477
  msgstr ""
5478
 
5479
  #: ../plugins/mycred-hook-simplepress.php:349
5480
+ #, php-format
5481
  msgid "%plural% for New Topic Post"
5482
  msgstr ""
5483
 
5484
  #: ../plugins/mycred-hook-simplepress.php:363
5485
+ #, php-format
5486
  msgid "Topic authors can receive %_plural% for posting on their own Topic"
5487
  msgstr ""
5488
 
5489
  #: ../plugins/mycred-hook-simplepress.php:373
5490
+ #, php-format
5491
  msgid "%plural% for Topic Post Deletion"
5492
  msgstr ""
5493
 
5496
  msgstr ""
5497
 
5498
  #: ../plugins/mycred-hook-wp-favorite-posts.php:19
5499
+ #, php-format
5500
  msgid "Awards %_plural% for users adding posts to their favorites."
5501
  msgstr ""
5502
 
5513
  msgstr ""
5514
 
5515
  #: ../plugins/mycred-hook-wp-polls.php:19
5516
+ #, php-format
5517
  msgid "Awards %_plural% for users voting in polls."
5518
  msgstr ""
lang/mycred-es_ES.mo CHANGED
Binary file
lang/mycred-es_ES.po CHANGED
@@ -3,8 +3,8 @@ msgstr ""
3
  "Project-Id-Version: myCRED\n"
4
  "Report-Msgid-Bugs-To: http://mycred.me\n"
5
  "POT-Creation-Date: 2014-03-20 14:26+0100\n"
6
- "PO-Revision-Date: Wed May 28 2014 12:03:28 GMT+0200 (CEST)\n"
7
- "Last-Translator: Gabriel <gabrieldk@merovingi.com>\n"
8
  "Language-Team: LANGUAGE <support@mycred.me>\n"
9
  "Language: Spanish\n"
10
  "Plural-Forms: nplurals=2; plural=n != 1\n"
@@ -14,123 +14,132 @@ msgstr ""
14
  "X-Poedit-SourceCharset: UTF-8\n"
15
  "X-Generator: Loco - https://localise.biz/\n"
16
  "X-Poedit-Basepath: .\n"
17
- "X-Poedit-KeywordsList: _:1;gettext:1;dgettext:2;ngettext:1,2;dngettext:2,3;__:1;"
18
- "_e:1;_c:1;_n:1,2;_n_noop:1,2;_nc:1,2;__ngettext:1,2;__ngettext_noop:1,2;_x:1,2c;"
19
- "_ex:1,2c;_nx:1,2,4c;_nx_noop:1,2,3c;_n_js:1,2;_nx_js:1,2,3c;esc_attr__:1;"
20
- "esc_html__:1;esc_attr_e:1;esc_html_e:1;esc_attr_x:1,2c;esc_html_x:1,2c;"
21
- "comments_number_link:2,3;t:1;st:1;trans:1;transChoice:1,2\n"
22
- "X-Poedit-SearchPath-0: /Users/gabriel/Sites/paypana/wp-content/plugins/mycred\n"
 
23
  "X-Poedit-SearchPath-1: .\n"
24
  "X-Loco-Target-Locale: es_ES"
25
 
26
- #: ../mycred.php:398
27
  msgid "Balance"
28
  msgstr "Saldo"
29
 
30
- #: ../mycred.php:423
31
  msgid "%label% History"
32
  msgstr "%lavel% Historial"
33
 
34
- #: ../mycred.php:476
35
  msgid "No balances available."
36
  msgstr "No hay saldos disponibles."
37
 
38
- #: ../mycred.php:522
 
39
  msgid "About %s"
40
  msgstr "Sobre"
41
 
42
- #: ../mycred.php:531
43
  msgid "Awesome People"
44
  msgstr "Gente genial"
45
 
46
- #: ../mycred.php:616 ../mycred.php:640 ../addons/ranks/myCRED-addon-ranks.php:230 ../addons/ranks/myCRED-addon-ranks.php:897 ../addons/sell-content/myCRED-addon-sell-content.php:309 ../addons/transfer/myCRED-addon-transfer.php:132 ../includes/mycred-shortcodes.php:535
 
 
 
47
  msgid "Processing..."
48
  msgstr "Procesando..."
49
 
50
- #: ../mycred.php:617
51
  msgid ""
52
- "Warning! All entries in your log will be permanently removed! This can not be "
53
- "undone!"
54
  msgstr ""
55
- "¡Aviso! Todas las entradas en su registro seran permanentemente borrado! ¡Esto "
56
- "no se puede deshacer!"
57
 
58
- #: ../mycred.php:618
59
  msgid ""
60
  "All log entries belonging to deleted users will be permanently deleted! This "
61
  "can not be undone!"
62
  msgstr ""
63
- "¡Todas las entradas de registro perteneciendo al usuario seran permanentemente "
64
- "borradas! ¡Esto no se puede deshacer!"
65
 
66
- #: ../mycred.php:619
67
  msgid "Warning! All user balances will be set to zero! This can not be undone!"
68
  msgstr ""
69
  "¡Aviso! ¡Todo los saldos del usuario seran puesto a cero! ¡Esto no se puede "
70
  "deshacer!"
71
 
72
- #: ../mycred.php:620
73
  msgid "Done!"
74
  msgstr "¡Realizado!"
75
 
76
- #: ../mycred.php:621 ../mycred.php:639 ../mycred.php:657
77
  msgid "Close"
78
  msgstr "Cerrar"
79
 
80
- #: ../mycred.php:622
81
  msgid "Export users %plural%"
82
  msgstr "Exportar usuarios %plural%"
83
 
84
- #: ../mycred.php:638
85
  msgid "Edit Users Balance"
86
  msgstr "Editar saldo del usuario"
87
 
88
- #: ../mycred.php:656
89
  msgid "Edit Log Entry"
90
  msgstr "Edidar entrada de registro"
91
 
92
- #: ../mycred.php:658
93
  msgid "Updating..."
94
  msgstr "Actualizando..."
95
 
96
- #: ../mycred.php:660
97
  msgid "Are you sure you want to delete this log entry? This can not be undone!"
98
  msgstr ""
99
  "¿Esta seguro que quiere borrar esta entrada de registro? ¡Esto no se puede "
100
  "deshacer!"
101
 
102
- #: ../mycred.php:661
103
  msgid "Log entry updated"
104
  msgstr "Entrada de registro actualizado"
105
 
106
- #: ../mycred.php:713 ../mycred.php:734 ../addons/email-notices/myCRED-addon-email-notices.php:595 ../addons/gateway/event-booking/mycred-eventsmanager-pro.php:458 ../addons/gateway/event-booking/mycred-eventsmanager.php:537
 
 
107
  msgid "Setup"
108
  msgstr "Configurar"
109
 
110
- #: ../mycred.php:715 ../addons/gateway/carts/mycred-marketpress.php:360 ../includes/mycred-network.php:186 ../modules/mycred-module-settings.php:20 ../modules/mycred-module-settings.php:21 ../modules/mycred-module-settings.php:22
 
 
111
  msgid "Settings"
112
  msgstr "Configuraciones"
113
 
114
- #: ../mycred.php:738 ../modules/mycred-module-addons.php:360
115
  msgid "About"
116
  msgstr "Acerca de"
117
 
118
- #: ../mycred.php:739
119
  msgid "Tutorials"
120
  msgstr "Tutoriales"
121
 
122
- #: ../mycred.php:740
123
  msgid "Codex"
124
  msgstr "Códice"
125
 
126
- #: ../mycred.php:741
127
  msgid "Store"
128
  msgstr "Tienda"
129
 
130
- #: ../mycred.php:755
131
  msgid ""
132
- "Make sure to backup your database and files before updating, in case anything "
133
- "goes wrong!"
134
  msgstr ""
135
  "Antes de actualizar, asegura crear copias de seguridad de su base de datos y "
136
  "archivo, por si acaso!"
@@ -143,7 +152,8 @@ msgstr "Historia"
143
  msgid "This Hook has no settings"
144
  msgstr "Este gancho no ha sido configurado"
145
 
146
- #: ../abstracts/mycred-abstract-hook.php:157 ../modules/mycred-module-hooks.php:1192
 
147
  msgid "No limit"
148
  msgstr "Sin Limite"
149
 
@@ -163,7 +173,13 @@ msgstr "Una vez cada 7 dias"
163
  msgid "Once per day (reset at midnight)"
164
  msgstr "Una vez al dia (reinicializado al medianoche)"
165
 
166
- #: ../abstracts/mycred-abstract-hook.php:168 ../addons/banking/abstracts/mycred-abstract-service.php:342 ../addons/buy-creds/myCRED-addon-buy-creds.php:390 ../addons/buy-creds/myCRED-addon-buy-creds.php:411 ../addons/buy-creds/abstracts/mycred-abstract-payment-gateway.php:805 ../addons/buy-creds/abstracts/mycred-abstract-payment-gateway.php:828 ../addons/buy-creds/gateways/zombaio.php:375 ../addons/email-notices/myCRED-addon-email-notices.php:179 ../addons/email-notices/myCRED-addon-email-notices.php:745
 
 
 
 
 
 
167
  msgid "Select"
168
  msgstr "Seleccionar"
169
 
@@ -171,7 +187,8 @@ msgstr "Seleccionar"
171
  msgid "myCRED_Module() Error. A Module ID is required!"
172
  msgstr "Error de myCRED_Module(). ¡Se requiere una ID de Modulo!"
173
 
174
- #: ../abstracts/mycred-abstract-module.php:343 ../abstracts/mycred-abstract-module.php:351
 
175
  msgid "Surprise"
176
  msgstr "Sorpresa"
177
 
@@ -183,11 +200,14 @@ msgstr "haga clic para cerrar"
183
  msgid "click to open"
184
  msgstr "haga clic para abrir"
185
 
186
- #: ../abstracts/mycred-abstract-module.php:472 ../addons/banking/myCRED-addon-banking.php:163 ../addons/buy-creds/myCRED-addon-buy-creds.php:488
 
187
  msgid "Settings Updated"
188
  msgstr "Configuraciones Actualizadas"
189
 
190
- #: ../addons/banking/myCRED-addon-banking.php:42 ../addons/banking/myCRED-addon-banking.php:43 ../addons/banking/myCRED-addon-banking.php:44 ../modules/mycred-module-addons.php:146
 
 
191
  msgid "Banking"
192
  msgstr "Banco"
193
 
@@ -196,42 +216,50 @@ msgid "Compound Interest"
196
  msgstr "Interés Compuesto"
197
 
198
  #: ../addons/banking/myCRED-addon-banking.php:104
 
199
  msgid ""
200
  "Apply an interest rate on your users %_plural% balances. Interest rate is "
201
  "annual and is compounded daily as long as this service is enabled. Positive "
202
- "interest rate leads to users gaining %_plural% while a negative interest rate "
203
- "will to users loosing %_plural%."
204
  msgstr ""
205
- "Aplica una tasa de interés al saldo [.....] de sus usuarios. La tasa es anual y "
206
- "es compuesto diariamente mientras que este servicio esta activada. Un tipo de "
207
- "interés positiva causara a los usuarios a ganar [.....] mientras que un tipo de "
208
- "interés negativa causara a los usuarios a perder %_plural%."
209
 
210
  #: ../addons/banking/myCRED-addon-banking.php:110
211
  msgid "Recurring Payouts"
212
  msgstr "Pagos Recurrentes"
213
 
214
  #: ../addons/banking/myCRED-addon-banking.php:111
 
215
  msgid ""
216
- "Give your users %_plural% on a regular basis with the option to set the number "
217
- "of times you want this payout to run (cycles)."
218
  msgstr ""
219
  "Da a tus usuarios %_plural% a intervalos regulares con la opción de ajustar "
220
  "cuantas vezes quieres que este pago se repita (ciclos)"
221
 
222
- #: ../addons/banking/myCRED-addon-banking.php:156 ../addons/buy-creds/myCRED-addon-buy-creds.php:473 ../addons/buy-creds/myCRED-addon-buy-creds.php:603 ../includes/mycred-network.php:160 ../modules/mycred-module-addons.php:266 ../modules/mycred-module-hooks.php:157 ../modules/mycred-module-log.php:322 ../modules/mycred-module-log.php:575 ../modules/mycred-module-settings.php:312
 
 
 
 
223
  msgid "Access Denied"
224
  msgstr "Acceso Denegado"
225
 
226
  #: ../addons/banking/myCRED-addon-banking.php:167
 
227
  msgid "%s Banking"
228
  msgstr "%s Bancario"
229
 
230
- #: ../addons/banking/myCRED-addon-banking.php:168 ../modules/mycred-module-addons.php:147
 
231
  msgid "Setup recurring payouts or offer / charge interest on user account balances."
232
  msgstr ""
233
- "Configura los pagos recurrentes u ofrecer / cobrar interés sobre los saldos de "
234
- "las cuentas de usuarios."
235
 
236
  #: ../addons/banking/myCRED-addon-banking.php:171
237
  msgid "WP-Cron deactivation detected!"
@@ -241,11 +269,13 @@ msgstr "¡Se detecto la desactivación de WP-Cron!"
241
  msgid "Warning! This add-on requires WP - Cron to work."
242
  msgstr "¡Aviso! Esta extensión requiere WP - Cron para funcionar."
243
 
244
- #: ../addons/banking/myCRED-addon-banking.php:188 ../addons/buy-creds/myCRED-addon-buy-creds.php:549 ../modules/mycred-module-hooks.php:182
 
245
  msgid "Enable"
246
  msgstr "Activar"
247
 
248
- #: ../addons/banking/myCRED-addon-banking.php:201 ../modules/mycred-module-hooks.php:197
 
249
  msgid "Update Changes"
250
  msgstr "Actualizar Cambios"
251
 
@@ -300,9 +330,12 @@ msgstr "Pagado / Cobrado"
300
 
301
  #: ../addons/banking/services/mycred-bank-service-interest.php:288
302
  msgid "The interest rate can be either positive or negative and is compounded daily."
303
- msgstr "La tasa de interés puede ser o positivo o negativo y es compuesto diariamente."
 
 
304
 
305
- #: ../addons/banking/services/mycred-bank-service-interest.php:291 ../addons/coupons/myCRED-addon-coupons.php:392
 
306
  msgid "Minimum Balance"
307
  msgstr "Saldo Minimo"
308
 
@@ -311,24 +344,41 @@ msgid "The minimum requires balance for interest to apply."
311
  msgstr "El minimo saldo necesario para aplicar una tasa de interés."
312
 
313
  #. can also be "Plantilla de Bitácora"
314
- #: ../addons/banking/services/mycred-bank-service-interest.php:298 ../addons/banking/services/mycred-bank-service-payouts.php:252 ../addons/buy-creds/myCRED-addon-buy-creds.php:368 ../addons/buy-creds/myCRED-addon-buy-creds.php:427 ../addons/coupons/myCRED-addon-coupons.php:440 ../addons/gateway/carts/mycred-marketpress.php:384 ../addons/gateway/carts/mycred-marketpress.php:417 ../addons/gateway/carts/mycred-woocommerce.php:98 ../addons/gateway/carts/mycred-woocommerce.php:164 ../addons/gateway/carts/mycred-wpecommerce.php:367 ../modules/mycred-module-hooks.php:520 ../modules/mycred-module-hooks.php:1389 ../modules/mycred-module-hooks.php:1729 ../plugins/mycred-hook-badgeOS.php:115 ../plugins/mycred-hook-badgeOS.php:117 ../plugins/mycred-hook-badgeOS.php:126 ../plugins/mycred-hook-events-manager-light.php:153 ../plugins/mycred-hook-events-manager-light.php:166 ../plugins/mycred-hook-gd-star-rating.php:109 ../plugins/mycred-hook-gd-star-rating.php:122 ../plugins/mycred-hook-wp-favorite-posts.php:135 ../plugins/mycred-hook-wp-favorite-posts.php:148 ../plugins/mycred-hook-wp-polls.php:136
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
315
  msgid "Log Template"
316
  msgstr "Plantilla de Registro"
317
 
318
- #: ../addons/banking/services/mycred-bank-service-interest.php:305 ../addons/banking/services/mycred-bank-service-payouts.php:259
 
319
  msgid "Run Time"
320
  msgstr "Tiempo de Ejecución"
321
 
322
- #: ../addons/banking/services/mycred-bank-service-interest.php:309 ../addons/banking/services/mycred-bank-service-payouts.php:263
 
323
  msgid ""
324
- "For large websites, if you are running into time out issues during payouts, you "
325
- "can set the number of seconds a process can run. Use zero for unlimited, but be "
326
- "careful especially if you are on a shared server."
327
  msgstr ""
328
  "Para sitios web grandes, si tienes problemas de expiramiento durante pagos, "
329
- "puedes ajustar cuantos segundos un proceso puede operar. Ponga cero si quiere "
330
- "ilimitado, pero tenga cuidado especialmente si esta usando un servidor "
331
- "compartido."
332
 
333
  #: ../addons/banking/services/mycred-bank-service-payouts.php:21
334
  msgid "Daily %_plural%"
@@ -342,7 +392,10 @@ msgstr "Todavia no ejecutado"
342
  msgid "Pay Users"
343
  msgstr "Pagar a los Usuarios"
344
 
345
- #: ../addons/banking/services/mycred-bank-service-payouts.php:222 ../addons/buy-creds/myCRED-addon-buy-creds.php:653 ../addons/buy-creds/myCRED-addon-buy-creds.php:1156 ../addons/buy-creds/abstracts/mycred-abstract-payment-gateway.php:425 ../includes/mycred-admin.php:371 ../includes/mycred-admin.php:482
 
 
 
346
  msgid "Amount"
347
  msgstr "Cantidad"
348
 
@@ -350,11 +403,14 @@ msgstr "Cantidad"
350
  msgid "Can not be zero."
351
  msgstr "No puede ser cero."
352
 
353
- #: ../addons/banking/services/mycred-bank-service-payouts.php:228 ../addons/banking/services/mycred-bank-service-payouts.php:241 ../modules/mycred-module-hooks.php:1744
 
 
354
  msgid "Interval"
355
  msgstr "Interval"
356
 
357
- #: ../addons/banking/services/mycred-bank-service-payouts.php:233 ../addons/banking/services/mycred-bank-service-payouts.php:242
 
358
  msgid "Cycles"
359
  msgstr "Ciclos"
360
 
@@ -369,24 +425,25 @@ msgstr "Ejecución Reciente / Activado"
369
  #: ../addons/banking/services/mycred-bank-service-payouts.php:241
370
  msgid ""
371
  "Select how often you want to award %_plural%. Note that when this service is "
372
- "enabled, the first payout will be in the beginning of the next period. So with "
373
- "a \"Daily\" interval, the first payout will occur first thing in the morning."
 
374
  msgstr ""
375
  "Elige la frecuencia con cual quieres conceder %_plural%. Ten en cuenta que "
376
- "cuando este servicio está activado, el primer pago se realizara al comienzo del "
377
- "siguiente período. Así que con la frecuencia de \"Diario\", el primer pago se "
378
- "realizará a primera hora de la mañana proxima."
379
 
380
  #: ../addons/banking/services/mycred-bank-service-payouts.php:242
381
  msgid ""
382
- "Cycles let you choose how many intervals this service should run. Each time a "
383
- "cycle runs, the value will decrease until it hits zero, in which case this "
384
  "service will deactivate itself. Use -1 to run unlimited times."
385
  msgstr ""
386
- "Ciclos te permiten ajustar por cuantos intervalos este servicio debe ejecutarse."
387
- " Cada vez que se ejecuta un ciclo, el valor disminuirá hasta que llegue a cero, "
388
- "en cuyo caso este servicio se desactivará a sí mismo. Utilice -1 para que se "
389
- "ejecute ilimitadas veces."
390
 
391
  #: ../addons/banking/services/mycred-bank-service-payouts.php:243
392
  msgid "Important"
@@ -394,16 +451,17 @@ msgstr "Importante"
394
 
395
  #: ../addons/banking/services/mycred-bank-service-payouts.php:243
396
  msgid ""
397
- "You can always stop payouts by deactivating this service. Just remember that if "
398
- "you deactivate while there are cycles left, this service will continue on when "
399
- "it gets re-activated. Set cycles to zero to reset."
400
  msgstr ""
401
  "Siempre se puede detener los desembolsos mediante la desactivación de este "
402
- "servicio. Pero recuerda que si lo desactivas mientras que todavia quedan ciclos "
403
- "para completar, este servicio volverá a continuar en cuando se vuelvá a activar."
404
- " Fija o configura los ciclos a cero para reiniciar.\n"
405
 
406
- #: ../addons/banking/services/mycred-bank-service-payouts.php:245 ../includes/mycred-install.php:559 ../modules/mycred-module-settings.php:393
 
407
  msgid "Excludes"
408
  msgstr "Excluye"
409
 
@@ -412,106 +470,127 @@ msgid ""
412
  "Comma separated list of user IDs to exclude from this service. No spaces "
413
  "allowed!"
414
  msgstr ""
415
- "Lista separada por comas de los IDs de usuario para excluir de este servicio. "
416
- "¡No se permiten espacios!"
417
 
418
- #: ../addons/buy-creds/myCRED-addon-buy-creds.php:55 ../addons/buy-creds/myCRED-addon-buy-creds.php:56 ../addons/buy-creds/myCRED-addon-buy-creds.php:57
 
419
  msgid "Payment Gateways"
420
  msgstr "Pasarela de Pago"
421
 
422
- #: ../addons/buy-creds/myCRED-addon-buy-creds.php:188
423
  msgid "buyCRED Purchase Log"
424
  msgstr "compraCRED Registro de Compras"
425
 
426
- #: ../addons/buy-creds/myCRED-addon-buy-creds.php:189 ../addons/buy-creds/myCRED-addon-buy-creds.php:417 ../addons/buy-creds/myCRED-addon-buy-creds.php:484
 
427
  msgid "Purchase Log"
428
  msgstr "Registro de Compras"
429
 
430
- #: ../addons/buy-creds/myCRED-addon-buy-creds.php:277 ../addons/gateway/event-booking/mycred-eventespresso3.php:26 ../addons/gateway/event-booking/mycred-eventsmanager-pro.php:475 ../addons/gateway/event-booking/mycred-eventsmanager.php:540 ../addons/sell-content/myCRED-addon-sell-content.php:361
 
 
 
431
  msgid "Payments"
432
  msgstr "Pagos"
433
 
434
- #: ../addons/buy-creds/myCRED-addon-buy-creds.php:307
435
  msgid "Please login to purchase %_plural%"
436
  msgstr "Identifícate antes de comprar %_plural%"
437
 
438
- #: ../addons/buy-creds/myCRED-addon-buy-creds.php:322
 
439
  msgid "Gift purchase from %display_name%."
440
  msgstr "Regalo comprado de parte de %display_name%."
441
 
442
- #: ../addons/buy-creds/myCRED-addon-buy-creds.php:340 ../addons/ranks/myCRED-addon-ranks.php:624
 
443
  msgid "Minimum %plural%"
444
  msgstr "Minimo %_plural%"
445
 
446
- #: ../addons/buy-creds/myCRED-addon-buy-creds.php:344
447
  msgid "Minimum amount of %plural% a user must purchase. Will default to 1."
448
  msgstr ""
449
- "La mínima cantidad de %plural% que el usuario debe comprar. Sera predefinido a "
450
- "1."
451
-
452
- #: ../addons/buy-creds/myCRED-addon-buy-creds.php:349 ../addons/coupons/myCRED-addon-coupons.php:315 ../addons/gateway/carts/mycred-marketpress.php:378 ../addons/gateway/carts/mycred-woocommerce.php:108 ../addons/gateway/carts/mycred-wpecommerce.php:350 ../addons/gateway/event-booking/mycred-eventespresso3.php:437 ../addons/gateway/event-booking/mycred-eventsmanager-pro.php:463 ../addons/gateway/event-booking/mycred-eventsmanager.php:550 ../addons/sell-content/myCRED-addon-sell-content.php:349 ../includes/mycred-widgets.php:204 ../includes/mycred-widgets.php:401 ../includes/importers/mycred-cubepoints.php:365
 
 
 
 
 
 
 
 
453
  msgid "Point Type"
454
  msgstr "Tipo de Puntos"
455
 
456
- #: ../addons/buy-creds/myCRED-addon-buy-creds.php:361
457
  msgid "Login Template"
458
  msgstr "Plantilla de Ingreso"
459
 
460
- #: ../addons/buy-creds/myCRED-addon-buy-creds.php:365
461
  msgid "Content to show when a user is not logged in."
462
  msgstr "Mostrar este contenido cuando un usuario no ha sido ingresado."
463
 
464
- #: ../addons/buy-creds/myCRED-addon-buy-creds.php:375
465
  msgid "Thank You Page"
466
  msgstr "Página de Agradecimiento"
467
 
468
- #: ../addons/buy-creds/myCRED-addon-buy-creds.php:378 ../addons/buy-creds/myCRED-addon-buy-creds.php:399
 
469
  msgid "Custom URL"
470
  msgstr "URL Personalizada"
471
 
472
- #: ../addons/buy-creds/myCRED-addon-buy-creds.php:383 ../addons/buy-creds/myCRED-addon-buy-creds.php:404
 
473
  msgid "Page"
474
  msgstr "Página"
475
 
476
- #: ../addons/buy-creds/myCRED-addon-buy-creds.php:396
477
  msgid "Cancellation Page"
478
  msgstr "Página de Cancelación"
479
 
480
- #: ../addons/buy-creds/myCRED-addon-buy-creds.php:419
481
  msgid "Show seperate log for %_plural% purchases."
482
  msgstr "Mostrar registro distinto para compras de %_plural%."
483
 
484
- #: ../addons/buy-creds/myCRED-addon-buy-creds.php:421
485
  msgid "Gifting"
486
  msgstr "Regalar"
487
 
488
- #: ../addons/buy-creds/myCRED-addon-buy-creds.php:423
 
489
  msgid "Allow users to buy %_plural% for other users."
490
  msgstr "Prmita que usuarios compren %_plural% para otros usuarios."
491
 
492
- #: ../addons/buy-creds/myCRED-addon-buy-creds.php:424
 
493
  msgid "Allow users to buy %_plural% for content authors."
494
  msgstr "Prmita que usuarios compren %_plural% para autores de contenido."
495
 
496
- #: ../addons/buy-creds/myCRED-addon-buy-creds.php:484
 
497
  msgid "%s Payment Gateways"
498
  msgstr "%s Pasarelas de Pago"
499
 
500
- #: ../addons/buy-creds/myCRED-addon-buy-creds.php:484 ../addons/buy-creds/myCRED-addon-buy-creds.php:659
 
501
  msgid "buyCRED Settings"
502
  msgstr "Configuraciones de compraCRED"
503
 
504
- #: ../addons/buy-creds/myCRED-addon-buy-creds.php:490
505
  msgid "Select the payment gateways you want to offer your users to buy %plural%."
506
  msgstr ""
507
  "Elige la pasarela de pago que quieres ofrecer a tus usuarios con que comprar "
508
  "%plural%."
509
 
510
- #: ../addons/buy-creds/myCRED-addon-buy-creds.php:497
511
  msgid "Last Payment Notification"
512
  msgstr "Notificación de Pago Reciente"
513
 
514
- #: ../addons/buy-creds/myCRED-addon-buy-creds.php:499
515
  msgid ""
516
  "Here you can view the last payment confirmation that was sent to buyCRED for "
517
  "processing."
@@ -519,80 +598,89 @@ msgstr ""
519
  "Aquí puedes ver la confirmación del ultimo pago que fue enviado a compraCRED "
520
  "para su procesamiento."
521
 
522
- #: ../addons/buy-creds/myCRED-addon-buy-creds.php:502
523
  msgid "Details"
524
  msgstr "Detalles"
525
 
526
- #: ../addons/buy-creds/myCRED-addon-buy-creds.php:505 ../modules/mycred-module-log.php:541
 
527
  msgid "Time"
528
  msgstr "Tiempo"
529
 
530
- #: ../addons/buy-creds/myCRED-addon-buy-creds.php:509 ../addons/buy-creds/myCRED-addon-buy-creds.php:650 ../includes/mycred-overview.php:166 ../includes/mycred-overview.php:173 ../modules/mycred-module-addons.php:190
 
 
531
  msgid "Gateway"
532
  msgstr "Pasarela"
533
 
534
- #: ../addons/buy-creds/myCRED-addon-buy-creds.php:513 ../addons/buy-creds/myCRED-addon-buy-creds.php:655
 
535
  msgid "Transaction ID"
536
  msgstr "Identificación de la Transacción"
537
 
538
- #: ../addons/buy-creds/myCRED-addon-buy-creds.php:517
539
  msgid "Outcome"
540
  msgstr "Resultado"
541
 
542
- #: ../addons/buy-creds/myCRED-addon-buy-creds.php:521
543
  msgid "Gateway Log"
544
  msgstr "Registro de la Puerta de Enlace"
545
 
546
- #: ../addons/buy-creds/myCRED-addon-buy-creds.php:529
547
  msgid "No recorded calls found."
548
  msgstr "No se ha encontrado ningunas llamadas grabadas."
549
 
550
- #: ../addons/buy-creds/myCRED-addon-buy-creds.php:542
551
  msgid "Test Mode"
552
  msgstr "Modo de Prueba"
553
 
554
- #: ../addons/buy-creds/myCRED-addon-buy-creds.php:544
555
  msgid "Enabled"
556
  msgstr "Habilitado"
557
 
558
  #. also, "Inhabilitar"
559
- #: ../addons/buy-creds/myCRED-addon-buy-creds.php:547
560
  msgid "Disabled"
561
  msgstr "Deshactivado"
562
 
563
- #: ../addons/buy-creds/myCRED-addon-buy-creds.php:557
564
  msgid "Sandbox Mode"
565
  msgstr "Modo Entorno Aislado"
566
 
567
- #: ../addons/buy-creds/myCRED-addon-buy-creds.php:560
568
  msgid "Enable for test purchases."
569
  msgstr "Habilitar para compras de prueba."
570
 
571
- #: ../addons/buy-creds/myCRED-addon-buy-creds.php:577
572
  msgid "Update Gateway Settings"
573
  msgstr "Actualizar Configuraciones de la Pasarela de Pago"
574
 
575
- #: ../addons/buy-creds/myCRED-addon-buy-creds.php:651 ../addons/email-notices/myCRED-addon-email-notices.php:643 ../addons/email-notices/myCRED-addon-email-notices.php:772 ../includes/mycred-admin.php:477 ../includes/mycred-log.php:639 ../modules/mycred-module-log.php:540
 
 
 
576
  msgid "User"
577
  msgstr "Usuario"
578
 
579
- #: ../addons/buy-creds/myCRED-addon-buy-creds.php:652 ../includes/mycred-log.php:640
 
580
  msgid "Date"
581
  msgstr "Fecha"
582
 
583
- #: ../addons/buy-creds/myCRED-addon-buy-creds.php:654
584
  msgid "Payed"
585
  msgstr "Pagado"
586
 
587
- #: ../addons/buy-creds/myCRED-addon-buy-creds.php:659
588
  msgid "<strong>buy</strong>CRED Purchase Log"
589
  msgstr "Registro de Compras de <strong>compra</strong>CRED"
590
 
591
- #: ../addons/buy-creds/myCRED-addon-buy-creds.php:659 ../addons/gateway/event-booking/mycred-eventespresso3.php:367
 
592
  msgid "Gateway Settings"
593
  msgstr "Configuraciones de la Pasarela de Pago"
594
 
595
- #: ../addons/buy-creds/myCRED-addon-buy-creds.php:663
596
  msgid ""
597
  "Only completed purchases are shown here. Purchases that were cancelled or "
598
  "failed are not logged."
@@ -602,71 +690,82 @@ msgstr ""
602
  "\n"
603
  "\n"
604
 
605
- #: ../addons/buy-creds/myCRED-addon-buy-creds.php:772 ../includes/mycred-log.php:743 ../modules/mycred-module-log.php:462
 
606
  msgid "User Missing"
607
  msgstr "Usuario Ausente"
608
 
609
- #: ../addons/buy-creds/myCRED-addon-buy-creds.php:835 ../addons/sell-content/myCRED-addon-sell-content.php:1112
 
610
  msgid "No purchases found"
611
  msgstr "No se encontro ninguna compra"
612
 
613
- #: ../addons/buy-creds/myCRED-addon-buy-creds.php:907 ../addons/buy-creds/myCRED-addon-buy-creds.php:1004
 
614
  msgid "This Add-on needs to setup before you can use this shortcode."
615
  msgstr ""
616
  "Esta extensión (add-on) debe ser configurado antes de poder usar este código "
617
  "corto (shortcode)."
618
 
619
- #: ../addons/buy-creds/myCRED-addon-buy-creds.php:925 ../addons/buy-creds/myCRED-addon-buy-creds.php:1022
 
620
  msgid "No gateways installed."
621
  msgstr "Ningun pasarela de pago instalado."
622
 
623
- #: ../addons/buy-creds/myCRED-addon-buy-creds.php:926 ../addons/buy-creds/myCRED-addon-buy-creds.php:1023
 
624
  msgid "Gateway does not exist."
625
  msgstr "Puerta de enlace no existe."
626
 
627
- #: ../addons/buy-creds/myCRED-addon-buy-creds.php:962
628
  msgid "Yourself"
629
  msgstr "Tu mismo"
630
 
631
- #: ../addons/buy-creds/myCRED-addon-buy-creds.php:1024
632
  msgid "No active gateways found."
633
  msgstr "No se encuentra ningun puerta de enlace activo."
634
 
635
- #: ../addons/buy-creds/myCRED-addon-buy-creds.php:1025
636
  msgid "The selected gateway is not active."
637
  msgstr "La puerta de enlace seleccionada no esta activo."
638
 
639
- #: ../addons/buy-creds/myCRED-addon-buy-creds.php:1061
 
640
  msgid "Buy with %gateway%"
641
  msgstr "Compra con %gateway%"
642
 
643
- #: ../addons/buy-creds/myCRED-addon-buy-creds.php:1067 ../addons/sell-content/myCRED-addon-sell-content.php:44
 
644
  msgid "Buy Now"
645
  msgstr "Compra Ahora"
646
 
647
- #: ../addons/buy-creds/myCRED-addon-buy-creds.php:1107
648
  msgid "No users found"
649
  msgstr "Ningun Usuario Encontrado"
650
 
651
- #: ../addons/buy-creds/myCRED-addon-buy-creds.php:1117
652
  msgid "To"
653
  msgstr "A"
654
 
655
- #: ../addons/buy-creds/myCRED-addon-buy-creds.php:1134
656
  msgid "Select Amount"
657
  msgstr "Selecciona la Cantidad"
658
 
659
- #: ../addons/buy-creds/myCRED-addon-buy-creds.php:1158
660
  msgid "min."
661
  msgstr "min."
662
 
663
- #: ../addons/buy-creds/myCRED-addon-buy-creds.php:1166
664
  msgid "Select Gateway"
665
  msgstr "Selecciona la Pasarela de Pago"
666
 
667
  #: ../addons/buy-creds/abstracts/mycred-abstract-payment-gateway.php:89
668
- msgid "function myCRED_Payment_Gateway::process() must be over-ridden in a sub-class."
669
- msgstr "La función myCRED_Payment_Gateway::process() debe ser anulado en un sub-clase."
 
 
 
 
670
 
671
  #: ../addons/buy-creds/abstracts/mycred-abstract-payment-gateway.php:98
672
  msgid "function myCRED_Payment_Gateway::buy() must be over-ridden in a sub-class."
@@ -681,6 +780,7 @@ msgid "Incoming confirmation call detected"
681
  msgstr "Se detectó una llamada entrante de la confirmación."
682
 
683
  #: ../addons/buy-creds/abstracts/mycred-abstract-payment-gateway.php:213
 
684
  msgid "Gateway identified itself as \"%s\""
685
  msgstr "Puerta de enlace se identifico como \"%s\""
686
 
@@ -693,7 +793,8 @@ msgstr "Verificando la llamada"
693
  msgid "Test Payment"
694
  msgstr "Probar Pago"
695
 
696
- #: ../addons/buy-creds/abstracts/mycred-abstract-payment-gateway.php:264 ../addons/gateway/carts/mycred-marketpress.php:179
 
697
  msgid "Payment"
698
  msgstr "PAgo"
699
 
@@ -701,11 +802,13 @@ msgstr "PAgo"
701
  msgid "Cancel purchase"
702
  msgstr "Cancelar la compra"
703
 
704
- #: ../addons/buy-creds/abstracts/mycred-abstract-payment-gateway.php:360 ../includes/mycred-admin.php:364 ../includes/mycred-admin.php:470
 
705
  msgid "required"
706
  msgstr "necesario"
707
 
708
- #: ../addons/buy-creds/abstracts/mycred-abstract-payment-gateway.php:361 ../includes/mycred-admin.php:366 ../includes/mycred-admin.php:472
 
709
  msgid "optional"
710
  msgstr "opcional"
711
 
@@ -746,10 +849,12 @@ msgid "Choose Country"
746
  msgstr "Eliga el País"
747
 
748
  #: ../addons/buy-creds/abstracts/mycred-abstract-payment-gateway.php:419
 
749
  msgid "%s Purchase"
750
  msgstr "Compra %s"
751
 
752
- #: ../addons/buy-creds/abstracts/mycred-abstract-payment-gateway.php:424 ../addons/gateway/carts/mycred-wpecommerce.php:112
 
753
  msgid "Item"
754
  msgstr "Articulo"
755
 
@@ -763,16 +868,16 @@ msgstr "Depurar"
763
 
764
  #: ../addons/buy-creds/abstracts/mycred-abstract-payment-gateway.php:448
765
  msgid ""
766
- "Here you can see information that are collected and sent to this gateway. Debug "
767
- "information is only visible for administrators and are intended for "
768
- "troubleshooting / testing of this gateway. Please disable \"Sandbox Mode\" when "
769
- "you want to take this gateway online."
770
  msgstr ""
771
  "Aquí se puede ver la información que se recoge y se envía a esta puerta de "
772
- "enlace. La información de depuración sólo es visible para los administradores y "
773
- "está disponible resolver problemas algunas / pruebar este puerta de enlace. Por "
774
- "favor, desactivar \"Modo Entorno Aislado\" cuando se quiere activar este portal y "
775
- "ponerlo online."
776
 
777
  #: ../addons/buy-creds/abstracts/mycred-abstract-payment-gateway.php:452
778
  msgid "Section"
@@ -795,10 +900,12 @@ msgid "Gateway Response"
795
  msgstr "Respuesta de la Pasarela de Pago"
796
 
797
  #: ../addons/buy-creds/abstracts/mycred-abstract-payment-gateway.php:513
 
798
  msgid "Continue to %s"
799
  msgstr "Continuar a %s"
800
 
801
- #: ../addons/buy-creds/abstracts/mycred-abstract-payment-gateway.php:514 ../addons/buy-creds/gateways/bitpay.php:240
 
802
  msgid "Click here if you are not automatically redirected"
803
  msgstr "Haga clic aqui si no se encuentra redirigida automáticamente"
804
 
@@ -834,55 +941,88 @@ msgstr "Discordancia de Moneda"
834
  msgid "Duplicate transaction"
835
  msgstr "Transacción Duplicado"
836
 
837
- #: ../addons/buy-creds/gateways/bitpay.php:25 ../addons/buy-creds/gateways/netbilling.php:30 ../addons/buy-creds/gateways/paypal-standard.php:25 ../addons/buy-creds/gateways/skrill.php:30
 
 
838
  msgid "Purchase of myCRED %plural%"
839
  msgstr "Compra de myCRED %plural%"
840
 
841
- #: ../addons/buy-creds/gateways/bitpay.php:68 ../addons/buy-creds/gateways/netbilling.php:102 ../addons/buy-creds/gateways/paypal-standard.php:162 ../addons/buy-creds/gateways/skrill.php:134
 
 
842
  msgid "Sales Data is Valid"
843
  msgstr "Dato de Venta Invalido"
844
 
845
- #: ../addons/buy-creds/gateways/bitpay.php:72 ../addons/buy-creds/gateways/netbilling.php:106 ../addons/buy-creds/gateways/paypal-standard.php:166 ../addons/buy-creds/gateways/skrill.php:138
 
 
846
  msgid "Failed to validate sale"
847
  msgstr "No pudo validar la venta"
848
 
849
- #: ../addons/buy-creds/gateways/bitpay.php:78 ../addons/buy-creds/gateways/netbilling.php:112 ../addons/buy-creds/gateways/paypal-standard.php:172 ../addons/buy-creds/gateways/skrill.php:144 ../addons/buy-creds/gateways/zombaio.php:166
 
 
 
850
  msgid "Failed to verify caller"
851
  msgstr "No se pudo verificar la llamada"
852
 
853
- #: ../addons/buy-creds/gateways/bitpay.php:86 ../addons/buy-creds/gateways/netbilling.php:120 ../addons/buy-creds/gateways/paypal-standard.php:180 ../addons/buy-creds/gateways/skrill.php:152 ../addons/buy-creds/gateways/zombaio.php:171
 
 
 
 
854
  msgid "Attempting to credit %s to users account"
855
  msgstr "Intentando creditar %s a la cuenta de usuario"
856
 
857
- #: ../addons/buy-creds/gateways/bitpay.php:97 ../addons/buy-creds/gateways/netbilling.php:132 ../addons/buy-creds/gateways/paypal-standard.php:193 ../addons/buy-creds/gateways/skrill.php:164 ../addons/buy-creds/gateways/zombaio.php:207
 
 
 
 
858
  msgid "%s was successfully credited to users account"
859
  msgstr "%s fue abonado con éxito a la cuenta del usuario"
860
 
861
- #: ../addons/buy-creds/gateways/bitpay.php:104 ../addons/buy-creds/gateways/netbilling.php:139 ../addons/buy-creds/gateways/paypal-standard.php:200 ../addons/buy-creds/gateways/skrill.php:171 ../addons/buy-creds/gateways/zombaio.php:214
 
 
 
862
  msgid "Failed to credit the users account"
863
  msgstr "No se ha podido acreditar la cuenta del usuario"
864
 
865
- #: ../addons/buy-creds/gateways/bitpay.php:107 ../addons/buy-creds/gateways/netbilling.php:142 ../addons/buy-creds/gateways/paypal-standard.php:203 ../addons/buy-creds/gateways/skrill.php:174
 
 
866
  msgid "Purchase not paid"
867
  msgstr "Compra no pagado"
868
 
869
- #: ../addons/buy-creds/gateways/bitpay.php:111 ../addons/buy-creds/gateways/netbilling.php:146 ../addons/buy-creds/gateways/paypal-standard.php:207 ../addons/buy-creds/gateways/skrill.php:178 ../addons/buy-creds/gateways/zombaio.php:218
 
 
 
870
  msgid "Hanging up on caller"
871
  msgstr "Colgando al interlocutor"
872
 
873
- #: ../addons/buy-creds/gateways/bitpay.php:175 ../addons/buy-creds/gateways/netbilling.php:173 ../addons/buy-creds/gateways/paypal-standard.php:237 ../addons/buy-creds/gateways/skrill.php:208 ../addons/buy-creds/gateways/zombaio.php:241
 
 
 
874
  msgid "Please setup this gateway before attempting to make a purchase!"
875
- msgstr "¡Por favor configure esta puerta de enlace antes de intentar hacer una compra!"
 
 
876
 
877
- #: ../addons/buy-creds/gateways/bitpay.php:226 ../addons/buy-creds/gateways/bitpay.php:235 ../addons/buy-creds/gateways/netbilling.php:224 ../addons/buy-creds/gateways/paypal-standard.php:295 ../addons/buy-creds/gateways/skrill.php:301 ../addons/buy-creds/gateways/zombaio.php:271
 
 
 
878
  msgid "Processing payment &hellip;"
879
  msgstr "Procesando el pago &hellip;"
880
 
881
  #: ../addons/buy-creds/gateways/bitpay.php:228
882
  msgid "Could not create a BitPay Invoice. Please contact the site administrator!"
883
  msgstr ""
884
- "¡No se pudo crear una factura de BitPay. Por favor pongase en contacto con el "
885
- "administrador del sitio!"
886
 
887
  #: ../addons/buy-creds/gateways/bitpay.php:229
888
  msgid "Bitpay returned the following error message:"
@@ -900,7 +1040,9 @@ msgstr ""
900
  msgid "API Key"
901
  msgstr "Clave de la API"
902
 
903
- #: ../addons/buy-creds/gateways/bitpay.php:269 ../addons/buy-creds/gateways/paypal-standard.php:312 ../addons/buy-creds/gateways/skrill.php:319
 
 
904
  msgid "Currency"
905
  msgstr "Moneda"
906
 
@@ -908,19 +1050,28 @@ msgstr "Moneda"
908
  msgid "Currency Code"
909
  msgstr "Código de Moneda"
910
 
911
- #: ../addons/buy-creds/gateways/bitpay.php:276 ../addons/buy-creds/gateways/netbilling.php:260 ../addons/buy-creds/gateways/paypal-standard.php:326 ../addons/buy-creds/gateways/skrill.php:339
 
 
912
  msgid "Item Name"
913
  msgstr "Nombre de Artículo"
914
 
915
- #: ../addons/buy-creds/gateways/bitpay.php:280 ../addons/buy-creds/gateways/netbilling.php:264 ../addons/buy-creds/gateways/paypal-standard.php:330 ../addons/buy-creds/gateways/skrill.php:343
 
 
916
  msgid "Description of the item being purchased by the user."
917
  msgstr "Descripción del artículo que el usuario esta comprando."
918
 
919
- #: ../addons/buy-creds/gateways/bitpay.php:283 ../addons/buy-creds/gateways/netbilling.php:267 ../addons/buy-creds/gateways/paypal-standard.php:333 ../addons/buy-creds/gateways/skrill.php:346
 
 
 
920
  msgid "%plural% Exchange Rate"
921
  msgstr "%plural% Tipo de Cambio"
922
 
923
- #: ../addons/buy-creds/gateways/bitpay.php:286 ../addons/buy-creds/gateways/paypal-standard.php:336 ../addons/buy-creds/gateways/skrill.php:349
 
 
924
  msgid "Select currency"
925
  msgstr "Elige moneda"
926
 
@@ -944,19 +1095,24 @@ msgstr "Bajo"
944
  msgid "Full Notifications"
945
  msgstr "Notificaciones Completas"
946
 
947
- #: ../addons/buy-creds/gateways/bitpay.php:318 ../includes/mycred-network.php:196 ../includes/mycred-network.php:210
 
948
  msgid "No"
949
  msgstr "No"
950
 
951
- #: ../addons/buy-creds/gateways/bitpay.php:319 ../includes/mycred-network.php:192 ../includes/mycred-network.php:206
 
952
  msgid "Yes"
953
  msgstr "Sí"
954
 
955
- #: ../addons/buy-creds/gateways/netbilling.php:57 ../addons/buy-creds/gateways/skrill.php:89 ../addons/buy-creds/gateways/zombaio.php:103
 
956
  msgid "Invalid Call"
957
  msgstr "Llamada Invalida"
958
 
959
- #: ../addons/buy-creds/gateways/netbilling.php:59 ../addons/buy-creds/gateways/skrill.php:91 ../addons/buy-creds/gateways/zombaio.php:105
 
 
960
  msgid "Caller verified as \"%s\""
961
  msgstr "El llamador verificado como \"%s\""
962
 
@@ -983,13 +1139,13 @@ msgstr "Devolución de la URL CGI"
983
  #: ../addons/buy-creds/gateways/netbilling.php:277
984
  msgid ""
985
  "For this gateway to work, you must login to your NETbilling account and edit "
986
- "your site. Under \"Default payment form settings\" make sure the Postback CGI URL "
987
- "is set to the above address and \"Return method\" is set to POST."
988
  msgstr ""
989
- "Para que esta pasarela de pago funcione, deberia acceder a su cuenta NETbilling "
990
- "y editar su sitio web. En \"Configuración de Formularios Predefinido\" asegúrese "
991
- "de que la devolución de la URL CGI esta ajustada a la dirección indicada arriba "
992
- "y \"Método de Retorno\" está ajustado a POST."
993
 
994
  #: ../addons/buy-creds/gateways/netbilling.php:312
995
  msgid "Incorrect Credit Card number"
@@ -1020,10 +1176,12 @@ msgid "Connection established"
1020
  msgstr "Conexión establecida"
1021
 
1022
  #: ../addons/buy-creds/gateways/paypal-standard.php:92
 
1023
  msgid "Attempt: %d failed. Error: %s : %s"
1024
  msgstr "Intento: %d falló. Error: %s : %s"
1025
 
1026
  #: ../addons/buy-creds/gateways/paypal-standard.php:103
 
1027
  msgid "Secondary systems failing. Final note: %s : %s"
1028
  msgstr "Sistema secundaria fallando. Nota final: %s : %s"
1029
 
@@ -1035,19 +1193,24 @@ msgstr "Llamada verificada"
1035
  msgid "Call rejected"
1036
  msgstr "Llamada rechazada"
1037
 
1038
- #: ../addons/buy-creds/gateways/paypal-standard.php:223 ../addons/buy-creds/gateways/skrill.php:194
 
1039
  msgid "Success"
1040
  msgstr "Exito"
1041
 
1042
- #: ../addons/buy-creds/gateways/paypal-standard.php:224 ../addons/buy-creds/gateways/skrill.php:195
 
1043
  msgid "Thank you for your purchase"
1044
  msgstr "Gracias por su compra"
1045
 
1046
- #: ../addons/buy-creds/gateways/paypal-standard.php:290 ../addons/buy-creds/gateways/skrill.php:247
 
1047
  msgid "Return to "
1048
  msgstr "Volver a"
1049
 
1050
- #: ../addons/buy-creds/gateways/paypal-standard.php:317 ../addons/buy-creds/gateways/skrill.php:376 ../addons/gateway/event-booking/mycred-eventespresso3.php:455
 
 
1051
  msgid "Important!"
1052
  msgstr "¡Importante!"
1053
 
@@ -1058,8 +1221,8 @@ msgid ""
1058
  "Accept each transaction!"
1059
  msgstr ""
1060
  "Asegura que eliges una moneda que tu cuenta de Paypal soporta. Si no, la "
1061
- "transacción no sera aprobada hasta que ingresa en su cuenta de Paypal y accepta "
1062
- "cada transacción."
1063
 
1064
  #: ../addons/buy-creds/gateways/paypal-standard.php:320
1065
  msgid "Account Email"
@@ -1072,14 +1235,14 @@ msgstr "Dirección IPN"
1072
  #: ../addons/buy-creds/gateways/paypal-standard.php:343
1073
  msgid ""
1074
  "For this gateway to work, you must login to your PayPal account and under "
1075
- "\"Profile\" > \"Selling Tools\" enable \"Instant Payment Notifications\". Make sure "
1076
- "the \"Notification URL\" is set to the above address and that you have selected "
1077
- "\"Receive IPN messages (Enabled)\"."
1078
  msgstr ""
1079
- "Para que esta pasarela de pago funcione, debes ingresar en tu cuenta de Paypal "
1080
- "y en \"Perfil\" > \"Instrumentos de Venta\" activar \"Notificación de Pagos "
1081
- "Instantaneos\". Asegura que la \"URL de Notifición\" esta ajustado a la dirección "
1082
- "de arriba y que has seleccionado \"(Activar) Recibir mensajes IPN\"."
1083
 
1084
  #: ../addons/buy-creds/gateways/skrill.php:284
1085
  msgid "Product:"
@@ -1114,36 +1277,41 @@ msgstr "Correo electrónico de confirmación"
1114
  #: ../addons/buy-creds/gateways/skrill.php:355
1115
  msgid "Ask Skrill to send me a confirmation email for each successful purchase."
1116
  msgstr ""
1117
- "Pide a Skrill que me mande un email de confirmación para cada compra finalizada "
1118
- "con éxito."
1119
 
1120
  #: ../addons/buy-creds/gateways/skrill.php:358
1121
  msgid "Checkout Page"
1122
  msgstr "Página de Pago"
1123
 
1124
- #: ../addons/buy-creds/gateways/skrill.php:361 ../addons/gateway/carts/mycred-woocommerce.php:86 ../addons/ranks/myCRED-addon-ranks.php:767 ../addons/transfer/myCRED-addon-transfer.php:637 ../includes/mycred-widgets.php:197 ../includes/mycred-widgets.php:395 ../includes/mycred-widgets.php:587 ../modules/mycred-module-hooks.php:2302
 
 
 
 
1125
  msgid "Title"
1126
  msgstr "Titulo"
1127
 
1128
  #: ../addons/buy-creds/gateways/skrill.php:363
1129
  msgid "If left empty, your account email is used as title on the Skill Payment Page."
1130
  msgstr ""
1131
- "Si se deja vacío, el correo electrónico de su cuenta sera utilizada como título "
1132
- "en la Página de Pagos Skrill. "
1133
 
1134
- #: ../addons/buy-creds/gateways/skrill.php:366 ../addons/buy-creds/gateways/zombaio.php:306
 
1135
  msgid "Logo URL"
1136
  msgstr "URL del Logotipo"
1137
 
1138
  #: ../addons/buy-creds/gateways/skrill.php:368
1139
  msgid ""
1140
  "The URL to the image you want to use on the top of the gateway. For best "
1141
- "integration results we recommend you use logos with dimensions up to 200px in "
1142
- "width and 50px in height."
1143
  msgstr ""
1144
- "La URL de la imagen que quieres usar en la encima de la pasarela de pago. Para "
1145
- "obtener la mejor integración recomendamos que uses logotipos con dimensiones de "
1146
- "hasta 200 píxeles de ancho y 50 px de altura."
1147
 
1148
  #: ../addons/buy-creds/gateways/skrill.php:371
1149
  msgid "Confirmation Note"
@@ -1151,33 +1319,33 @@ msgstr "Nota de Confirmación"
1151
 
1152
  #: ../addons/buy-creds/gateways/skrill.php:373
1153
  msgid ""
1154
- "Optional text to show user once a transaction has been successfully completed. "
1155
- "This text is shown by Skrill."
1156
  msgstr ""
1157
- "Texto opcional a mostrar al usuario cuando la transacción haya sido completado "
1158
- "con éxito. Este texto sera mostrado por Skrill."
1159
 
1160
  #: ../addons/buy-creds/gateways/skrill.php:377
1161
  msgid ""
1162
- "By default all Skrill Merchant account accept payments via Bank Transfers. When "
1163
- "a user selects this option, no %_plural% are awarded! You will need to manually "
1164
- "award these once the bank transfer is completed."
1165
  msgstr ""
1166
- "Por defecto todas las cuentas Mercantiles de Skrill acceptan pagos a través de "
1167
- "transferencias bancarias. ¡Cuando un usuario elige esta opción, no se concede "
1168
- "%_plural%! Tendras que concederlos manualmente una vez que se haya realizado la "
1169
- "transferencia bancaria."
1170
 
1171
  #: ../addons/buy-creds/gateways/skrill.php:378
1172
  msgid ""
1173
  "By default purchases made using Skrill will result in users having to signup "
1174
- "for a Skrill account (if they do not have one already). You can contact Skrill "
1175
- "Merchant Services and request to disable this feature."
1176
  msgstr ""
1177
- "En forma predeterminada las compras hechas a través de Skrill precisan que el "
1178
- "usuario registre una cuenta de Skrill (si ya no la tiene). Puedes contactar a "
1179
- "los Servicios Mercantiles de Skrill y pedir que desactiven esta caracteristica "
1180
- "del proceso."
1181
 
1182
  #: ../addons/buy-creds/gateways/zombaio.php:154
1183
  msgid "Checking Transaction ID"
@@ -1226,15 +1394,19 @@ msgid ""
1226
  "For this gateway to work, login to ZOA and set the Postback URL to the above "
1227
  "address and click validate."
1228
  msgstr ""
1229
- "Para que esta puerta de enlace funcione, ingrese en ZOA y ajuste la devolución "
1230
- "de datos de la URL a la dirección que se encuentra arriba y haga clic sobre "
1231
- "validar."
1232
 
1233
- #: ../addons/coupons/myCRED-addon-coupons.php:86 ../addons/coupons/myCRED-addon-coupons.php:92 ../addons/coupons/myCRED-addon-coupons.php:438 ../includes/mycred-overview.php:188 ../includes/mycred-overview.php:195 ../modules/mycred-module-addons.php:168
 
 
 
1234
  msgid "Coupons"
1235
  msgstr "Cupones"
1236
 
1237
- #: ../addons/coupons/myCRED-addon-coupons.php:87 ../addons/coupons/includes/mycred-coupon-shortcodes.php:69
 
1238
  msgid "Coupon"
1239
  msgstr "Cupón"
1240
 
@@ -1266,11 +1438,16 @@ msgstr "Ningun Cupón Encontrado"
1266
  msgid "No coupons found in Trash"
1267
  msgstr "Ningun Cupón Encontrado en Papelera"
1268
 
1269
- #: ../addons/coupons/myCRED-addon-coupons.php:98 ../addons/email-notices/myCRED-addon-email-notices.php:148 ../addons/email-notices/myCRED-addon-email-notices.php:154 ../addons/email-notices/myCRED-addon-email-notices.php:160 ../addons/email-notices/myCRED-addon-email-notices.php:258 ../modules/mycred-module-addons.php:179
 
 
 
 
1270
  msgid "Email Notices"
1271
  msgstr "Avisos por Correo Electrónico"
1272
 
1273
- #: ../addons/coupons/myCRED-addon-coupons.php:119 ../addons/coupons/myCRED-addon-coupons.php:122
 
1274
  msgid "Coupon updated."
1275
  msgstr "Cupón Actualizado"
1276
 
@@ -1294,7 +1471,8 @@ msgstr "Unico Código de Cupón"
1294
  msgid "Coupon Code"
1295
  msgstr "Código de Cupón"
1296
 
1297
- #: ../addons/coupons/myCRED-addon-coupons.php:157 ../addons/coupons/myCRED-addon-coupons.php:309
 
1298
  msgid "Value"
1299
  msgstr "Valor"
1300
 
@@ -1302,7 +1480,9 @@ msgstr "Valor"
1302
  msgid "Usage"
1303
  msgstr "Utilización"
1304
 
1305
- #: ../addons/coupons/myCRED-addon-coupons.php:159 ../addons/transfer/myCRED-addon-transfer.php:243 ../modules/mycred-module-hooks.php:1106 ../modules/mycred-module-hooks.php:1396
 
 
1306
  msgid "Limits"
1307
  msgstr "imites"
1308
 
@@ -1314,7 +1494,8 @@ msgstr "Expire"
1314
  msgid "not yet used"
1315
  msgstr "todavia no utilizado"
1316
 
1317
- #: ../addons/coupons/myCRED-addon-coupons.php:198 ../modules/mycred-module-hooks.php:1834
 
1318
  msgid "Total"
1319
  msgstr "Total"
1320
 
@@ -1331,6 +1512,7 @@ msgid "Expired"
1331
  msgstr "Caducado"
1332
 
1333
  #: ../addons/coupons/myCRED-addon-coupons.php:213
 
1334
  msgid "In %s time"
1335
  msgstr "En %s tiempo"
1336
 
@@ -1360,7 +1542,9 @@ msgstr "Caducar"
1360
 
1361
  #: ../addons/coupons/myCRED-addon-coupons.php:324
1362
  msgid "Optional date when this coupon expires. Expired coupons will be trashed."
1363
- msgstr "La fecha opcional cuando este cupón caduca. Cupones caducados seran destrozado."
 
 
1364
 
1365
  #: ../addons/coupons/myCRED-addon-coupons.php:353
1366
  msgid "Global Maximum"
@@ -1368,11 +1552,11 @@ msgstr "Máximo Global"
1368
 
1369
  #: ../addons/coupons/myCRED-addon-coupons.php:356
1370
  msgid ""
1371
- "The maximum number of times this coupon can be used. Note that the coupon will "
1372
- "be automatically trashed once this maximum is reached!"
1373
  msgstr ""
1374
- "El número máximo de veces que este cupón se puede utilizar. Ten en cuenta que "
1375
- "el cupón será colocado en la papelera de forma automática una vez que se "
1376
  "alcanza este máximo!"
1377
 
1378
  #. not clear if this is referring to the maximum number of users or to the maximum "points" a user can have or accrue?
@@ -1386,8 +1570,8 @@ msgstr "El máximo numero de veces que se puede utilizadar este cupón por un us
1386
 
1387
  #: ../addons/coupons/myCRED-addon-coupons.php:395
1388
  msgid ""
1389
- "Optional minimum balance a user must have in order to use this coupon. Use zero "
1390
- "to disable."
1391
  msgstr ""
1392
  "Mínimo saldo opcional que el usuario debe tener para utilizar este cupón. "
1393
  "Utilice cero para inhabilitar."
@@ -1398,19 +1582,20 @@ msgstr "Saldo Máximo"
1398
 
1399
  #: ../addons/coupons/myCRED-addon-coupons.php:402
1400
  msgid ""
1401
- "Optional maximum balance a user can have in order to use this coupon. Use zero "
1402
- "to disable."
1403
  msgstr ""
1404
  "Saldo máximo opcional que un usuario puede tener para usar este cupón. Ponga "
1405
  "cero para desactivar."
1406
 
1407
  #: ../addons/coupons/myCRED-addon-coupons.php:444
 
1408
  msgid ""
1409
  "Log entry for successful coupon redemption. Use %coupon% to show the coupon "
1410
  "code."
1411
  msgstr ""
1412
- "Entrada del registro al exitoso canje del cupón. Utilice %coupon% para mostrar "
1413
- "el código del cupón."
1414
 
1415
  #: ../addons/coupons/myCRED-addon-coupons.php:447
1416
  msgid "Invalid Coupon Message"
@@ -1442,11 +1627,11 @@ msgstr "Mensaje de Saldo Mínimo"
1442
 
1443
  #: ../addons/coupons/myCRED-addon-coupons.php:472
1444
  msgid ""
1445
- "Message to show when a user does not meet the minimum balance requirement. (if "
1446
- "used)"
1447
  msgstr ""
1448
- "Mostrar mensaje cuando el usuario no cumple con el saldo mínimo requerido. (si "
1449
- "se utiliza)"
1450
 
1451
  #: ../addons/coupons/myCRED-addon-coupons.php:475
1452
  msgid "Maximum Balance Message"
@@ -1454,11 +1639,11 @@ msgstr "Mensaje Saldo Máximo"
1454
 
1455
  #: ../addons/coupons/myCRED-addon-coupons.php:479
1456
  msgid ""
1457
- "Message to show when a user does not meet the maximum balance requirement. (if "
1458
- "used)"
1459
  msgstr ""
1460
- "Mostrar mensaje cuando un usuario no alcanza el saldo máximo requerido. (si se "
1461
- "utiliza)"
1462
 
1463
  #: ../addons/coupons/myCRED-addon-coupons.php:482
1464
  msgid "Success Message"
@@ -1476,341 +1661,436 @@ msgstr "Canje de cupones"
1476
  msgid "Apply Coupon"
1477
  msgstr "Aplica el Cupón"
1478
 
1479
- #: ../addons/email-notices/myCRED-addon-email-notices.php:149
 
1480
  msgid "Email Notice"
1481
  msgstr "Aviso por Correo Electrónico"
1482
 
1483
- #: ../addons/email-notices/myCRED-addon-email-notices.php:150 ../addons/ranks/myCRED-addon-ranks.php:248
 
1484
  msgid "Add New"
1485
  msgstr "Añade Nuevo"
1486
 
1487
- #: ../addons/email-notices/myCRED-addon-email-notices.php:151
1488
  msgid "Add New Notice"
1489
  msgstr "Añade Nueva Notificación"
1490
 
1491
- #: ../addons/email-notices/myCRED-addon-email-notices.php:152
1492
  msgid "Edit Notice"
1493
  msgstr "Editar Aviso"
1494
 
1495
- #: ../addons/email-notices/myCRED-addon-email-notices.php:153
1496
  msgid "New Notice"
1497
  msgstr "Nuevo Aviso"
1498
 
1499
- #: ../addons/email-notices/myCRED-addon-email-notices.php:155
1500
  msgid "View Notice"
1501
  msgstr "Ver Aviso"
1502
 
1503
- #: ../addons/email-notices/myCRED-addon-email-notices.php:156
1504
  msgid "Search Email Notices"
1505
  msgstr "Búsqueda de Avisos por Correo Electrónico"
1506
 
1507
- #: ../addons/email-notices/myCRED-addon-email-notices.php:157
1508
  msgid "No email notices found"
1509
  msgstr "Ningun aviso por correo electrónico encontrado"
1510
 
1511
- #: ../addons/email-notices/myCRED-addon-email-notices.php:158
1512
  msgid "No email notices found in Trash"
1513
  msgstr "Ningun aviso por correo electrónico encontrado en la papelera"
1514
 
1515
- #: ../addons/email-notices/myCRED-addon-email-notices.php:181 ../addons/gateway/carts/mycred-wpecommerce.php:337 ../includes/mycred-functions.php:589
 
 
1516
  msgid "General"
1517
  msgstr "General"
1518
 
1519
  #. can also be users as in plural, I've assumed it is user singular with a missing apostrophe
1520
- #: ../addons/email-notices/myCRED-addon-email-notices.php:182
1521
  msgid "users balance changes"
1522
  msgstr "el saldo de usuario cambia"
1523
 
1524
- #: ../addons/email-notices/myCRED-addon-email-notices.php:183
1525
  msgid "user gains %_plural%"
1526
  msgstr "usuario gana %_plural%"
1527
 
1528
- #: ../addons/email-notices/myCRED-addon-email-notices.php:184
1529
  msgid "user lose %_plural%"
1530
  msgstr "usuario pierde %_plural%"
1531
 
1532
- #: ../addons/email-notices/myCRED-addon-email-notices.php:185
1533
  msgid "users balance reaches zero"
1534
  msgstr "saldo de usuario llega a cero"
1535
 
1536
  #. can also be users as in plural, I've assumed it is user singular with a missing apostrophe
1537
- #: ../addons/email-notices/myCRED-addon-email-notices.php:186
1538
  msgid "users balance goes minus"
1539
  msgstr "el saldo de usuario cae a negativo"
1540
 
1541
- #: ../addons/email-notices/myCRED-addon-email-notices.php:192
1542
  msgid "Sell Content Add-on"
1543
  msgstr "Extensión para Vender Contenido"
1544
 
1545
- #: ../addons/email-notices/myCRED-addon-email-notices.php:193
1546
  msgid "user buys content"
1547
  msgstr "usuario compra contenido"
1548
 
1549
- #: ../addons/email-notices/myCRED-addon-email-notices.php:194
1550
  msgid "authors content gets sold"
1551
  msgstr "el contenido del autor sera vendido"
1552
 
1553
- #: ../addons/email-notices/myCRED-addon-email-notices.php:201
1554
  msgid "buyCREDs Add-on"
1555
  msgstr "Extensión de compraCREDs"
1556
 
1557
- #: ../addons/email-notices/myCRED-addon-email-notices.php:202
1558
  msgid "user buys %_plural%"
1559
  msgstr "usuario compra %_plural%"
1560
 
1561
- #: ../addons/email-notices/myCRED-addon-email-notices.php:209
1562
  msgid "Transfer Add-on"
1563
  msgstr "Extensión de Transferencias"
1564
 
1565
- #: ../addons/email-notices/myCRED-addon-email-notices.php:210
1566
  msgid "user sends %_plural%"
1567
  msgstr "usuario manda %_plural%"
1568
 
1569
- #: ../addons/email-notices/myCRED-addon-email-notices.php:211
1570
  msgid "user receives %_plural%"
1571
  msgstr "usuario recibe %_plural%"
1572
 
1573
- #: ../addons/email-notices/myCRED-addon-email-notices.php:218
1574
  msgid "Ranks Add-on"
1575
  msgstr "Extensión de Rangos"
1576
 
1577
- #: ../addons/email-notices/myCRED-addon-email-notices.php:219
1578
  msgid "user is demoted"
1579
  msgstr "se ha degrado al usuario"
1580
 
1581
- #: ../addons/email-notices/myCRED-addon-email-notices.php:220
1582
  msgid "user is promoted"
1583
  msgstr "se ha promovido al usuario"
1584
 
1585
- #: ../addons/email-notices/myCRED-addon-email-notices.php:260
1586
  msgid ""
1587
  "Settings that apply to all email notices and can not be overridden for "
1588
  "individual emails."
1589
  msgstr ""
1590
- "Ajustes que se aplica a todos los correos electrónicos y que no seran anulados "
1591
- "para correos electronicos especificos."
1592
 
1593
- #: ../addons/email-notices/myCRED-addon-email-notices.php:261
1594
  msgid "Email Format"
1595
  msgstr "Formato de Correo Electrónico"
1596
 
1597
- #: ../addons/email-notices/myCRED-addon-email-notices.php:265
1598
  msgid "Plain text emails only."
1599
  msgstr "Correo electrónico usando texto sin formato."
1600
 
1601
- #: ../addons/email-notices/myCRED-addon-email-notices.php:269
1602
  msgid "HTML or Plain text emails."
1603
  msgstr "Correo electrónico usando HTML o texto sin formato."
1604
 
1605
- #: ../addons/email-notices/myCRED-addon-email-notices.php:272
1606
  msgid "Filters"
1607
  msgstr "Filtros"
1608
 
1609
- #: ../addons/email-notices/myCRED-addon-email-notices.php:276
1610
  msgid ""
1611
- "Allow WordPress and Third Party Plugins to filter the email subject before an "
1612
- "email is sent."
1613
  msgstr ""
1614
- "Permite a Wordpress y a los Plugins de terceros a filtrar el asunto del correo "
1615
- "electrónico antes de enviarlo."
1616
 
1617
- #: ../addons/email-notices/myCRED-addon-email-notices.php:280
1618
  msgid ""
1619
- "Allow WordPress and Third Party Plugins to filter the email content before an "
1620
- "email is sent."
1621
  msgstr ""
1622
  "Permite a Wordpress y a los Plugins de terceros a filtrar el contenido del "
1623
  "correo electrónico antes de enviarlo."
1624
 
1625
- #: ../addons/email-notices/myCRED-addon-email-notices.php:283
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1626
  msgid ""
1627
  "Default email settings. These settings can be individually overridden when "
1628
  "editing emails."
1629
  msgstr ""
1630
- "Configuraciones predeterminadas para correos electrónicos. Estos ajustes pueden "
1631
- "ser anulado individualmente cuando se edita correos electrónicos."
1632
 
1633
- #: ../addons/email-notices/myCRED-addon-email-notices.php:284 ../addons/email-notices/myCRED-addon-email-notices.php:659
 
1634
  msgid "Email Settings"
1635
  msgstr "Configuracion de Correo Electrónico"
1636
 
1637
- #: ../addons/email-notices/myCRED-addon-email-notices.php:287 ../addons/email-notices/myCRED-addon-email-notices.php:778
 
1638
  msgid "Senders Name:"
1639
  msgstr "Nombre del Remitente"
1640
 
1641
- #: ../addons/email-notices/myCRED-addon-email-notices.php:291 ../addons/email-notices/myCRED-addon-email-notices.php:780
 
1642
  msgid "Senders Email:"
1643
  msgstr "Correo Electrónico del Remitente:"
1644
 
1645
- #: ../addons/email-notices/myCRED-addon-email-notices.php:295
1646
  msgid "Reply-To:"
1647
  msgstr "Responder-A:"
1648
 
1649
- #: ../addons/email-notices/myCRED-addon-email-notices.php:299
1650
  msgid "Default Email Content"
1651
  msgstr "Contenido de Correo Electrónico Predefinido"
1652
 
1653
- #: ../addons/email-notices/myCRED-addon-email-notices.php:303
1654
  msgid "Default email content."
1655
  msgstr "Contenido de correo electrónico predefinido."
1656
 
1657
- #: ../addons/email-notices/myCRED-addon-email-notices.php:306
1658
  msgid "Default Email Styling"
1659
  msgstr "Estilo de Correo Electrónico Predefinido"
1660
 
1661
- #: ../addons/email-notices/myCRED-addon-email-notices.php:310
1662
  msgid "Ignored if HTML is not allowed in emails."
1663
  msgstr "Sera ignorado si no se permite HTML en los correos electrónicos."
1664
 
1665
- #: ../addons/email-notices/myCRED-addon-email-notices.php:593 ../addons/email-notices/myCRED-addon-email-notices.php:708
 
1666
  msgid "Email Subject"
1667
  msgstr "Asunto del Correo Electrónico"
1668
 
1669
- #: ../addons/email-notices/myCRED-addon-email-notices.php:594
1670
  msgid "Status"
1671
  msgstr "Estatus"
1672
 
1673
- #: ../addons/email-notices/myCRED-addon-email-notices.php:614
1674
  msgid "Not Active"
1675
  msgstr "No esta Activo"
1676
 
1677
- #: ../addons/email-notices/myCRED-addon-email-notices.php:616
 
1678
  msgid "Scheduled:<br /><strong>%1$s</strong>"
1679
  msgstr "Programada:<br /><strong>%1$s</strong>"
1680
 
1681
- #: ../addons/email-notices/myCRED-addon-email-notices.php:620
1682
  msgid "Active"
1683
  msgstr "Activo"
1684
 
1685
- #: ../addons/email-notices/myCRED-addon-email-notices.php:622
 
1686
  msgid "Active - Last run:<br /><strong>%1$s</strong>"
1687
  msgstr "Activo - Ultima ejecución:<br /><strong>%1$s</strong>"
1688
 
1689
- #: ../addons/email-notices/myCRED-addon-email-notices.php:632
1690
  msgid "Email is sent when"
1691
  msgstr "el Correo Electrónico se envia cuando"
1692
 
1693
- #: ../addons/email-notices/myCRED-addon-email-notices.php:634
1694
  msgid "Missing instance for this notice!"
1695
  msgstr "¡Falta una instancia para este aviso!"
1696
 
1697
- #: ../addons/email-notices/myCRED-addon-email-notices.php:643 ../addons/email-notices/myCRED-addon-email-notices.php:645 ../addons/email-notices/myCRED-addon-email-notices.php:647
 
 
1698
  msgid "Sent To"
1699
  msgstr "Enviado A:"
1700
 
1701
- #: ../addons/email-notices/myCRED-addon-email-notices.php:645 ../addons/email-notices/myCRED-addon-email-notices.php:773
 
1702
  msgid "Administrator"
1703
  msgstr "Administrador"
1704
 
1705
- #: ../addons/email-notices/myCRED-addon-email-notices.php:647
1706
  msgid "Both Administrator and User"
1707
  msgstr "Tanto Administrador como Usuario"
1708
 
1709
- #: ../addons/email-notices/myCRED-addon-email-notices.php:668
1710
  msgid "Available Template Tags"
1711
  msgstr "Etiquetas (tags) de Plantilla Disponibles"
1712
 
1713
- #: ../addons/email-notices/myCRED-addon-email-notices.php:679
1714
  msgid "Email Header"
1715
  msgstr "Encabezado del Correo Electrónico"
1716
 
1717
- #: ../addons/email-notices/myCRED-addon-email-notices.php:739
1718
  msgid "Send this email notice when..."
1719
  msgstr "Envia este aviso por correo electrónico cuando..."
1720
 
1721
- #: ../addons/email-notices/myCRED-addon-email-notices.php:770
1722
  msgid "Recipient:"
1723
  msgstr "Destinatario:"
1724
 
1725
- #: ../addons/email-notices/myCRED-addon-email-notices.php:774
1726
  msgid "Both"
1727
  msgstr "Ambos"
1728
 
1729
- #: ../addons/email-notices/myCRED-addon-email-notices.php:782
 
 
 
 
 
 
 
1730
  msgid "Reply-To Email:"
1731
  msgstr "Responder-A Correo Electrónico:"
1732
 
1733
- #: ../addons/email-notices/myCRED-addon-email-notices.php:788
1734
  msgid "Save"
1735
  msgstr "Guardar"
1736
 
1737
- #: ../addons/email-notices/myCRED-addon-email-notices.php:800
1738
  msgid "CSS Styling"
1739
  msgstr "Estilo CSS"
1740
 
1741
- #: ../addons/email-notices/myCRED-addon-email-notices.php:816
1742
  msgid "Site Related"
1743
  msgstr "Relacionado al Sitio"
1744
 
1745
- #: ../addons/email-notices/myCRED-addon-email-notices.php:817
1746
  msgid "Your websites title"
1747
  msgstr "Titulo de tu pagina web"
1748
 
1749
- #: ../addons/email-notices/myCRED-addon-email-notices.php:818
1750
  msgid "Your websites address"
1751
  msgstr "Dirección de tu pagina web"
1752
 
1753
- #: ../addons/email-notices/myCRED-addon-email-notices.php:819
1754
  msgid "Your websites tagline (description)"
1755
  msgstr "La descripción de tu sitio web (lema o eslogan)"
1756
 
1757
- #: ../addons/email-notices/myCRED-addon-email-notices.php:820
1758
  msgid "Your websites admin email"
1759
  msgstr "El correo electrónico de admin para tu pagina web"
1760
 
1761
- #: ../addons/email-notices/myCRED-addon-email-notices.php:821
1762
  msgid "Total number of blog members"
1763
  msgstr "Número total de miembros del blog"
1764
 
1765
- #: ../addons/email-notices/myCRED-addon-email-notices.php:897 ../addons/email-notices/myCRED-addon-email-notices.php:900
 
 
1766
  msgid "Email Notice Updated. View <a href=\"%1$s\">All Notices</a>."
1767
  msgstr "Aviso de Email Actualizado. Ver <a href=\"%1$s\">Todos los Avisos</a>."
1768
 
1769
- #: ../addons/email-notices/myCRED-addon-email-notices.php:902
1770
  msgid "Email Notice Activated"
1771
  msgstr "Notificación atraves de Correo Electrónico Activado"
1772
 
1773
- #: ../addons/email-notices/myCRED-addon-email-notices.php:903
1774
  msgid "Email Notice Saved"
1775
  msgstr "Aviso por Correo Electrónico Guardado"
1776
 
1777
- #: ../addons/email-notices/myCRED-addon-email-notices.php:904
 
1778
  msgid "Email Notice Submitted for approval. View <a href=\"%1$s\">All Notices</a>."
1779
- msgstr "Aviso de Email Enviado para aprobación. Ver <a href=\"%1$s\">Todos los Avisos</a>."
 
 
1780
 
1781
- #: ../addons/email-notices/myCRED-addon-email-notices.php:906
 
1782
  msgid "Email Notice scheduled for: <strong>%1$s</strong>."
1783
  msgstr "Se ha fijado el Aviso por Correo Electrónico para: <strong>%1$s</strong>."
1784
 
1785
- #: ../addons/email-notices/myCRED-addon-email-notices.php:925
1786
  msgid ""
1787
- "Once a notice is \"published\" it becomes active! Select \"Save Draft\" if you are "
1788
- "not yet ready to use this email notice!"
1789
  msgstr ""
1790
- "¡Una vez que un aviso sea \"publicado\" se activa! ¡Elige \"Guardar Borrador\" si "
1791
- "aun no estás listo para utilizar este aviso por email!"
1792
 
1793
- #: ../addons/email-notices/myCRED-addon-email-notices.php:927
 
1794
  msgid "This notice will become active on:<br /><strong>%1$s</strong>"
1795
  msgstr "Este aviso se activará en:<br /><strong>%1$s</strong>"
1796
 
1797
- #: ../addons/email-notices/myCRED-addon-email-notices.php:929
1798
  msgid "This email notice is active."
1799
  msgstr "Esta notificación de correo electrónico esta activada."
1800
 
1801
- #: ../addons/gateway/carts/mycred-marketpress.php:147 ../addons/gateway/event-booking/mycred-eventespresso3.php:277 ../addons/gateway/event-booking/mycred-eventespresso3.php:301 ../addons/gateway/event-booking/mycred-eventsmanager.php:412 ../includes/mycred-admin.php:478
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1802
  msgid "Current Balance"
1803
  msgstr "Saldo Actual"
1804
 
1805
- #: ../addons/gateway/carts/mycred-marketpress.php:151 ../addons/gateway/carts/mycred-wpecommerce.php:123 ../addons/gateway/event-booking/mycred-eventespresso3.php:281 ../addons/gateway/event-booking/mycred-eventespresso3.php:305 ../addons/gateway/event-booking/mycred-eventsmanager.php:416
 
 
 
 
1806
  msgid "Total Cost"
1807
  msgstr "Coste Total"
1808
 
1809
- #: ../addons/gateway/carts/mycred-marketpress.php:155 ../addons/gateway/event-booking/mycred-eventespresso3.php:285 ../addons/gateway/event-booking/mycred-eventespresso3.php:309
 
 
1810
  msgid "Balance After Purchase"
1811
  msgstr "Saldo Despues de Compra"
1812
 
1813
- #: ../addons/gateway/carts/mycred-marketpress.php:182 ../addons/gateway/carts/mycred-marketpress.php:231
 
1814
  msgid "Go Back"
1815
  msgstr "Regresar"
1816
 
@@ -1819,9 +2099,10 @@ msgid "will be deducted from your account."
1819
  msgstr "sera restado de su cuenta."
1820
 
1821
  #: ../addons/gateway/carts/mycred-marketpress.php:221
 
1822
  msgid ""
1823
- "Sorry, but you can not use this gateway as your account is excluded. Please <a "
1824
- "href=\"%s\">select a different payment method</a>."
1825
  msgstr ""
1826
  "Lo siento, pero no puede utilizar esta pasarela de pago porque excluye su "
1827
  "cuenta. Por favor <a href=\"%s\"> elige otro método de pago."
@@ -1830,7 +2111,9 @@ msgstr ""
1830
  msgid "Paid"
1831
  msgstr "Pagado"
1832
 
1833
- #: ../addons/gateway/carts/mycred-marketpress.php:243 ../addons/gateway/carts/mycred-woocommerce.php:33 ../includes/mycred-network.php:57 ../includes/mycred-network.php:58 ../plugins/mycred-hook-badgeOS.php:81
 
 
1834
  msgid "myCRED"
1835
  msgstr "myCRED"
1836
 
@@ -1838,7 +2121,10 @@ msgstr "myCRED"
1838
  msgid "%_singular% Balance"
1839
  msgstr "%_singular% Saldo"
1840
 
1841
- #: ../addons/gateway/carts/mycred-marketpress.php:348 ../addons/gateway/carts/mycred-woocommerce.php:101 ../addons/gateway/carts/mycred-wpecommerce.php:27
 
 
 
1842
  msgid "Payment for Order: #%order_id%"
1843
  msgstr "Pago por el Pedido"
1844
 
@@ -1851,18 +2137,20 @@ msgid "Pay using your account balance."
1851
  msgstr "Paga usando el saldo de su cuenta."
1852
 
1853
  #: ../addons/gateway/carts/mycred-marketpress.php:353
 
1854
  msgid ""
1855
  "TOTAL amount has been deducted from your account. Your current balance is: "
1856
  "%balance_f%"
1857
  msgstr "Cantidad TOTAL ha sido restado de su cuenta. Su saldo actual es:% balance_f%"
1858
 
1859
  #: ../addons/gateway/carts/mycred-marketpress.php:354
 
1860
  msgid ""
1861
- "Insufficient funds. Please select another form of payment. Your current balance "
1862
- "is: %balance_f%"
1863
  msgstr ""
1864
- "Fondos insuficientes. Por favor seleccione otra forma de pago. Su saldo actual "
1865
- "es: %balance_f%"
1866
 
1867
  #: ../addons/gateway/carts/mycred-marketpress.php:355
1868
  msgid ""
@@ -1873,9 +2161,11 @@ msgstr ""
1873
  "href=\"%login_url_here%\">identifícate</a>."
1874
 
1875
  #: ../addons/gateway/carts/mycred-marketpress.php:362
 
1876
  msgid ""
1877
  "Let your users pay for items in their shopping cart using their %s Account. "
1878
- "Note! This gateway requires your users to be logged in when making a purchase!"
 
1879
  msgstr ""
1880
  "Permita que sus usuarios paguen para los articulos en su carrito de compra "
1881
  "usando su %s Cuenta. ¡Nota! Esta pasarela de pago requiere que sus usuarios "
@@ -1890,22 +2180,34 @@ msgid ""
1890
  "Enter a public name for this payment method that is displayed to users - No "
1891
  "HTML"
1892
  msgstr ""
1893
- "Introduzca el nombre público para este método de pago que se va a mostrar a los "
1894
- "usuarios - sin HTML"
1895
 
1896
  #: ../addons/gateway/carts/mycred-marketpress.php:372
1897
  msgid "Gateway Logo URL"
1898
  msgstr "URL del Logotipo de la Pasarela de Pago"
1899
 
1900
- #: ../addons/gateway/carts/mycred-marketpress.php:393 ../addons/gateway/carts/mycred-woocommerce.php:124
 
 
1901
  msgid "How much is 1 %_singular% worth in %currency%?"
1902
  msgstr "¿Cuanto vale un 1 %_singular% en %currency%?"
1903
 
1904
- #: ../addons/gateway/carts/mycred-marketpress.php:398 ../addons/gateway/carts/mycred-woocommerce.php:129 ../addons/gateway/carts/mycred-wpecommerce.php:356 ../addons/gateway/event-booking/mycred-eventespresso3.php:450 ../addons/gateway/event-booking/mycred-eventsmanager-pro.php:499 ../addons/gateway/event-booking/mycred-eventsmanager.php:578
 
 
 
 
 
1905
  msgid "Exchange Rate"
1906
  msgstr "Tipo de Cambio"
1907
 
1908
- #: ../addons/gateway/carts/mycred-marketpress.php:407 ../addons/gateway/carts/mycred-woocommerce.php:157 ../addons/gateway/carts/mycred-wpecommerce.php:360 ../addons/gateway/event-booking/mycred-eventespresso3.php:462 ../addons/gateway/event-booking/mycred-eventsmanager-pro.php:490 ../addons/gateway/event-booking/mycred-eventsmanager.php:569
 
 
 
 
 
1909
  msgid "Profit Sharing"
1910
  msgstr "Reparto de Ganancias"
1911
 
@@ -1913,17 +2215,28 @@ msgstr "Reparto de Ganancias"
1913
  msgid "Percentage"
1914
  msgstr "Porcentaje"
1915
 
1916
- #: ../addons/gateway/carts/mycred-marketpress.php:412 ../addons/gateway/carts/mycred-woocommerce.php:159 ../addons/gateway/carts/mycred-wpecommerce.php:364 ../addons/gateway/event-booking/mycred-eventespresso3.php:464 ../addons/gateway/event-booking/mycred-eventsmanager-pro.php:493 ../addons/gateway/event-booking/mycred-eventsmanager.php:572
 
 
 
 
 
1917
  msgid "Option to share sales with the product owner. Use zero to disable."
1918
  msgstr ""
1919
  "Opción de compartir las ventas con el dueño del producto. Utilice cero para "
1920
  "inhabilitar."
1921
 
1922
- #: ../addons/gateway/carts/mycred-marketpress.php:424 ../addons/gateway/carts/mycred-wpecommerce.php:371 ../addons/gateway/event-booking/mycred-eventsmanager-pro.php:559 ../addons/gateway/event-booking/mycred-eventsmanager.php:626
 
 
 
1923
  msgid "Messages"
1924
  msgstr "Mensajes"
1925
 
1926
- #: ../addons/gateway/carts/mycred-marketpress.php:427 ../addons/gateway/carts/mycred-wpecommerce.php:382 ../addons/gateway/event-booking/mycred-eventsmanager-pro.php:569 ../addons/gateway/event-booking/mycred-eventsmanager.php:636
 
 
 
1927
  msgid "Insufficient Funds"
1928
  msgstr "Fondos Insuficientes"
1929
 
@@ -1931,7 +2244,9 @@ msgstr "Fondos Insuficientes"
1931
  msgid "Message to show when the user can not use this gateway."
1932
  msgstr "Monstrar mensaje cuando el usuario no puede usar esta pasarela de pago."
1933
 
1934
- #: ../addons/gateway/carts/mycred-marketpress.php:435 ../addons/gateway/carts/mycred-wpecommerce.php:378 ../addons/gateway/event-booking/mycred-eventespresso3.php:490
 
 
1935
  msgid "Visitors"
1936
  msgstr "Visitantes"
1937
 
@@ -1962,17 +2277,18 @@ msgid "Order Confirmation Email"
1962
  msgstr "Email de Confirmación del Pedido"
1963
 
1964
  #: ../addons/gateway/carts/mycred-marketpress.php:461
 
1965
  msgid ""
1966
  "This is the email text to send to those who have made %s checkouts. It "
1967
- "overrides the default order checkout email. These codes will be replaced with "
1968
- "order details: CUSTOMERNAME, ORDERID, ORDERINFO, SHIPPINGINFO, PAYMENTINFO, "
1969
- "TOTAL, TRACKINGURL. No HTML allowed."
1970
  msgstr ""
1971
- "Esto es el texto del correo electrónico que se manda a los que hayan finalizado "
1972
- "%s compras. Anula al correo electrónico predeterminado al finalizar el cajero. "
1973
- "Estos códigos seran reemplazados con los detalles del pedido: ORDERID, "
1974
- "ORDERINFO, SHIPPINGINFO, PAYMENTINFO, TOTAL, TRACKINGURL. No se permite el uso "
1975
- "de HTML."
1976
 
1977
  #: ../addons/gateway/carts/mycred-woocommerce.php:34
1978
  msgid "Let users pay using their myCRED balance."
@@ -1988,8 +2304,8 @@ msgstr "Activar Pago myCRED"
1988
 
1989
  #: ../addons/gateway/carts/mycred-woocommerce.php:83
1990
  msgid ""
1991
- "Users who are not logged in or excluded from using myCRED will not have access "
1992
- "to this gateway!"
1993
  msgstr ""
1994
  "¡Los usuarios que no estan ingresado o los que han sido excluido de utilizar "
1995
  "myCRED no tendran acceso a esta pasarela de pago!"
@@ -2008,6 +2324,7 @@ msgid "Customer Message"
2008
  msgstr "Mensaje a los Clientes"
2009
 
2010
  #: ../addons/gateway/carts/mycred-woocommerce.php:95
 
2011
  msgid "Deduct the amount from your %_plural% balance."
2012
  msgstr "Restar la cantidad de su saldo de %_plural%"
2013
 
@@ -2039,10 +2356,6 @@ msgstr "Mostrar en la página de pago"
2039
  msgid "Show in Cart and on Checkout Page"
2040
  msgstr "Mostrar en el Carrito y en la página de pago"
2041
 
2042
- #: ../addons/gateway/carts/mycred-woocommerce.php:148 ../modules/mycred-module-settings.php:484 ../modules/mycred-module-settings.php:503 ../modules/mycred-module-settings.php:526
2043
- msgid "Label"
2044
- msgstr "Etiqueta"
2045
-
2046
  #: ../addons/gateway/carts/mycred-woocommerce.php:150
2047
  msgid "Order Total in %_plural%"
2048
  msgstr "Total del Pedido en %_plural%"
@@ -2060,14 +2373,15 @@ msgid "myCRED Payment"
2060
  msgstr "Pago myCRED"
2061
 
2062
  #: ../addons/gateway/carts/mycred-woocommerce.php:193
 
2063
  msgid ""
2064
  "Allows users to pay using their myCRED %_singular% balance. Please note that "
2065
- "users with insufficient funds and users who are not logged in will not see this "
2066
- "payment gateway on the checkout page."
2067
  msgstr ""
2068
  "Permite a los usuarios pagar usando su mycred % _singular% saldo. Por favor, "
2069
- "ten en cuenta que los usuarios con fondos insuficientes y los usuarios que no "
2070
- "han iniciado sesión no verán esta pasarela de pago en la página de pago."
2071
 
2072
  #: ../addons/gateway/carts/mycred-woocommerce.php:214
2073
  msgid "You must be logged in to pay with %_plural%"
@@ -2079,20 +2393,21 @@ msgstr ""
2079
  "No puede usar esta pasarela de pago. Por favor prueba una opción de pago "
2080
  "diferente."
2081
 
2082
- #: ../addons/gateway/carts/mycred-woocommerce.php:233
2083
  msgid "Insufficient funds. Please try a different payment option."
2084
  msgstr "Fondos insuficientes. Por favor prueba con otra opción de pago."
2085
 
2086
- #: ../addons/gateway/carts/mycred-woocommerce.php:295
2087
  msgid "Your account has successfully been charged."
2088
  msgstr "Su cuenta ha sido cambiado con éxito."
2089
 
2090
  #. assuming it is referring to order (buy something) not order (rank or organization)
2091
- #: ../addons/gateway/carts/mycred-woocommerce.php:314
2092
  msgid "Order Missing"
2093
  msgstr "Falta de Pedido"
2094
 
2095
- #: ../addons/gateway/carts/mycred-woocommerce.php:537 ../addons/gateway/carts/mycred-wpecommerce.php:131
 
2096
  msgid "Your current balance"
2097
  msgstr "Tu saldo actual"
2098
 
@@ -2121,6 +2436,7 @@ msgid "Log Template for Payments"
2121
  msgstr "Plantilla de Registro para Pagos"
2122
 
2123
  #: ../addons/gateway/carts/mycred-wpecommerce.php:357
 
2124
  msgid "How much is 1 %s worth in %s"
2125
  msgstr "Cuanto vale 1 %s en %s"
2126
 
@@ -2134,11 +2450,11 @@ msgstr "Instrucciones"
2134
 
2135
  #: ../addons/gateway/carts/mycred-wpecommerce.php:375
2136
  msgid ""
2137
- "Optional instructions to show users when selecting this gateway. Leave empty to "
2138
- "hide."
2139
  msgstr ""
2140
- "Instrucciones opcionales para mostrar a los usuarios cuando se selecciona esta "
2141
- "pasarela. Deje el campo vacío para ocultarlo."
2142
 
2143
  #: ../addons/gateway/carts/mycred-wpecommerce.php:379
2144
  msgid "Message to show visitors who are not logged in."
@@ -2149,10 +2465,12 @@ msgid ""
2149
  "Message to show when users does not have enough %plural% to pay using this "
2150
  "gateway."
2151
  msgstr ""
2152
- "Monstrar mensaje cuando los usuarios no tienen bastante %plural% con que pagar "
2153
- "usando esta pasarela de pago."
2154
 
2155
- #: ../addons/gateway/event-booking/mycred-eventespresso3.php:27 ../addons/gateway/event-booking/mycred-eventsmanager-pro.php:39 ../addons/gateway/event-booking/mycred-eventsmanager.php:35
 
 
2156
  msgid "Pay Now"
2157
  msgstr "Pagar Ahora"
2158
 
@@ -2161,14 +2479,19 @@ msgid "Payment for Event Registration"
2161
  msgstr "Pago para Registrar Evento"
2162
 
2163
  #: ../addons/gateway/event-booking/mycred-eventespresso3.php:343
 
2164
  msgid "Activate %s"
2165
  msgstr "Activar %s"
2166
 
2167
  #: ../addons/gateway/event-booking/mycred-eventespresso3.php:351
 
2168
  msgid "Deactivate %s"
2169
  msgstr "Desactivar %s"
2170
 
2171
- #: ../addons/gateway/event-booking/mycred-eventespresso3.php:399 ../addons/gateway/event-booking/mycred-eventsmanager-pro.php:449 ../addons/gateway/event-booking/mycred-eventsmanager.php:524
 
 
 
2172
  msgid "How many %s is 1 %s worth?"
2173
  msgstr "¿Cuantos %s vale un %s?"
2174
 
@@ -2176,7 +2499,9 @@ msgstr "¿Cuantos %s vale un %s?"
2176
  msgid "Gateways Settings Successfully Updated"
2177
  msgstr "Configuracion de l Pasarela de Pago ha sido Actualizado "
2178
 
2179
- #: ../addons/gateway/event-booking/mycred-eventespresso3.php:415 ../addons/gateway/event-booking/mycred-eventsmanager-pro.php:535 ../addons/gateway/event-booking/mycred-eventsmanager.php:602
 
 
2180
  msgid "Labels"
2181
  msgstr "Etiquetas"
2182
 
@@ -2197,7 +2522,11 @@ msgstr "Tipo de Pago"
2197
  msgid "Title to show on receipts and logs"
2198
  msgstr "El titulo a mostrar en la factura y en los registros."
2199
 
2200
- #: ../addons/gateway/event-booking/mycred-eventespresso3.php:428 ../addons/gateway/event-booking/mycred-eventsmanager-pro.php:552 ../addons/gateway/event-booking/mycred-eventsmanager.php:619 ../addons/sell-content/myCRED-addon-sell-content.php:397 ../addons/sell-content/myCRED-addon-sell-content.php:590
 
 
 
 
2201
  msgid "Button Label"
2202
  msgstr "Eqiqueta Asignada al Botón"
2203
 
@@ -2205,7 +2534,13 @@ msgstr "Eqiqueta Asignada al Botón"
2205
  msgid "Pay Button"
2206
  msgstr "Botón de Pago"
2207
 
2208
- #: ../addons/gateway/event-booking/mycred-eventespresso3.php:447 ../addons/gateway/event-booking/mycred-eventsmanager-pro.php:137 ../addons/gateway/event-booking/mycred-eventsmanager-pro.php:140 ../addons/gateway/event-booking/mycred-eventsmanager.php:336 ../addons/gateway/event-booking/mycred-eventsmanager.php:339 ../addons/sell-content/myCRED-addon-sell-content.php:388 ../addons/sell-content/myCRED-addon-sell-content.php:586
 
 
 
 
 
 
2209
  msgid "Price"
2210
  msgstr "Precio"
2211
 
@@ -2214,18 +2549,20 @@ msgid ""
2214
  "You can disable purchases using this gateway by adding a custom Event Meta: "
2215
  "<code>mycred_no_sale</code>"
2216
  msgstr ""
2217
- "Puedes inhabilitar compras a traves de esta pasarela mediante la adición de un "
2218
- "Evento Meta personalizado: <code>mycred_no_sale</code>"
2219
 
2220
  #: ../addons/gateway/event-booking/mycred-eventespresso3.php:458
2221
  msgid "Users must be logged in to use this gateway!"
2222
  msgstr "¡Los usuarios deben estar conectado para usar esta pasarela de pago!"
2223
 
2224
- #: ../addons/gateway/event-booking/mycred-eventespresso3.php:467 ../modules/mycred-module-log.php:22 ../modules/mycred-module-log.php:23
 
2225
  msgid "Log"
2226
  msgstr "Registro"
2227
 
2228
- #: ../addons/gateway/event-booking/mycred-eventespresso3.php:470 ../includes/mycred-admin.php:483
 
2229
  msgid "Log Entry"
2230
  msgstr "Entrada de Registro"
2231
 
@@ -2239,8 +2576,8 @@ msgstr "Usuarios Solventes"
2239
 
2240
  #: ../addons/gateway/event-booking/mycred-eventespresso3.php:482
2241
  msgid ""
2242
- "Message to show users on the payment page before they are charged. Leave empty "
2243
- "to hide."
2244
  msgstr ""
2245
  "Mostrar mensaje a los usuarios en la pagina de pago antes de cobrar. Dejalo "
2246
  "vacío para ocultar. "
@@ -2251,7 +2588,9 @@ msgstr "Usuarios Insolventes"
2251
 
2252
  #: ../addons/gateway/event-booking/mycred-eventespresso3.php:487
2253
  msgid "Message to show users who do not have enough points to pay."
2254
- msgstr "Mostrar mensaje a los usuarios que no tienen suficientes puntos con que pagar."
 
 
2255
 
2256
  #: ../addons/gateway/event-booking/mycred-eventespresso3.php:492
2257
  msgid "Message to show visitors (users not logged in) on the payment page."
@@ -2259,39 +2598,49 @@ msgstr ""
2259
  "Mostrar mensaje a los visitantes (usuarios que no han iniciado sesión) en la "
2260
  "pagina de pago."
2261
 
2262
- #: ../addons/gateway/event-booking/mycred-eventespresso3.php:502 ../modules/mycred-module-settings.php:540
 
2263
  msgid "Update Settings"
2264
  msgstr "Actualizar Configuraciones"
2265
 
2266
- #: ../addons/gateway/event-booking/mycred-eventsmanager-pro.php:33 ../addons/gateway/event-booking/mycred-eventsmanager.php:29
 
2267
  msgid "Payment for tickets to %link_with_title%"
2268
  msgstr "Pago de entradas para %link_with_title%"
2269
 
2270
- #: ../addons/gateway/event-booking/mycred-eventsmanager-pro.php:34 ../addons/gateway/event-booking/mycred-eventsmanager.php:30
 
2271
  msgid "Ticket refund for %link_with_title%"
2272
  msgstr "Reembolso de entrada para "
2273
 
2274
- #: ../addons/gateway/event-booking/mycred-eventsmanager-pro.php:38 ../addons/gateway/event-booking/mycred-eventsmanager.php:34
 
 
2275
  msgid "Pay using your %_plural% balance"
2276
  msgstr "Paga utilizando tu saldo de %_plural%"
2277
 
2278
- #: ../addons/gateway/event-booking/mycred-eventsmanager-pro.php:40 ../addons/gateway/event-booking/mycred-eventsmanager.php:36
 
2279
  msgid "Pay"
2280
  msgstr "Pagar"
2281
 
2282
- #: ../addons/gateway/event-booking/mycred-eventsmanager-pro.php:43 ../addons/gateway/event-booking/mycred-eventsmanager.php:39
 
2283
  msgid "Thank you for your payment!"
2284
  msgstr "¡Gracias por su pago!"
2285
 
2286
- #: ../addons/gateway/event-booking/mycred-eventsmanager-pro.php:44 ../addons/gateway/event-booking/mycred-eventsmanager.php:40
 
2287
  msgid "I'm sorry but you can not pay for these tickets using %_plural%"
2288
  msgstr "Lo siento pero no puedes pagar estos billetes usando %_plural%"
2289
 
2290
- #: ../addons/gateway/event-booking/mycred-eventsmanager-pro.php:134 ../addons/gateway/event-booking/mycred-eventsmanager.php:333
 
2291
  msgid "Ticket Type"
2292
  msgstr "Tipo de Billete"
2293
 
2294
- #: ../addons/gateway/event-booking/mycred-eventsmanager-pro.php:143 ../addons/gateway/event-booking/mycred-eventsmanager.php:342
 
2295
  msgid "Spaces"
2296
  msgstr "Espacios"
2297
 
@@ -2303,7 +2652,9 @@ msgstr "No puede usar esta pasarela de pago."
2303
  msgid "Reject"
2304
  msgstr "Rechazar"
2305
 
2306
- #: ../addons/gateway/event-booking/mycred-eventsmanager-pro.php:374 ../modules/mycred-module-log.php:500 ../modules/mycred-module-settings.php:488 ../modules/mycred-module-settings.php:507
 
 
2307
  msgid "Delete"
2308
  msgstr "Borrar"
2309
 
@@ -2311,21 +2662,27 @@ msgstr "Borrar"
2311
  msgid "Edit/View"
2312
  msgstr "Editar/Ver"
2313
 
2314
- #: ../addons/gateway/event-booking/mycred-eventsmanager-pro.php:477 ../addons/gateway/event-booking/mycred-eventsmanager.php:542
 
2315
  msgid "Disabled - Users CAN NOT pay for tickets using %plural%."
2316
  msgstr "Deshabilitado - Usuarios NO PUEDEN pagar entradas utilizando %plural%."
2317
 
2318
- #: ../addons/gateway/event-booking/mycred-eventsmanager-pro.php:478 ../addons/gateway/event-booking/mycred-eventsmanager.php:543
 
2319
  msgid "Single - Users can ONLY pay for tickets using %plural%."
2320
  msgstr "Individuales - Usuarios NO PUEDEN pagar entradas utilizando %plural%."
2321
 
2322
- #: ../addons/gateway/event-booking/mycred-eventsmanager-pro.php:479 ../addons/gateway/event-booking/mycred-eventsmanager.php:544
 
2323
  msgid "Multi - Users can pay for tickets using other gateways or %plural%."
2324
  msgstr ""
2325
  "Multi-usuarios pueden pagar entradas utilizando otras pasarelas de pago o "
2326
  "%plural%."
2327
 
2328
- #: ../addons/gateway/event-booking/mycred-eventsmanager-pro.php:483 ../addons/gateway/event-booking/mycred-eventsmanager-pro.php:516 ../addons/gateway/event-booking/mycred-eventsmanager.php:562 ../addons/gateway/event-booking/mycred-eventsmanager.php:595
 
 
 
2329
  msgid "Refunds"
2330
  msgstr "Reembolsos"
2331
 
@@ -2338,43 +2695,54 @@ msgstr ""
2338
  "reserva. Utilice cero para no ofrecer reembolso ninguno. No se reembolsa "
2339
  "reservas \"Rechazadas\""
2340
 
2341
- #: ../addons/gateway/event-booking/mycred-eventsmanager-pro.php:506 ../addons/gateway/event-booking/mycred-eventsmanager.php:585
 
2342
  msgid "Log Templates"
2343
  msgstr "Plantillas de Registro"
2344
 
2345
- #: ../addons/gateway/event-booking/mycred-eventsmanager-pro.php:509 ../addons/gateway/event-booking/mycred-eventsmanager.php:588
 
2346
  msgid "Purchases"
2347
  msgstr "Compras"
2348
 
2349
- #: ../addons/gateway/event-booking/mycred-eventsmanager-pro.php:538 ../addons/gateway/event-booking/mycred-eventsmanager.php:605
 
2350
  msgid "Payment Link Label"
2351
  msgstr "La Etiqueta del Enlace de Pago"
2352
 
2353
- #: ../addons/gateway/event-booking/mycred-eventsmanager-pro.php:541 ../addons/gateway/event-booking/mycred-eventsmanager.php:608
 
2354
  msgid ""
2355
  "The payment link shows / hides the payment form under \"My Bookings\". No HTML "
2356
  "allowed."
2357
  msgstr ""
2358
- "El enlace de pago muestra / oculta el formulario de pago en \"Mis Reservas\". ¡No "
2359
- "se permite HTML!"
2360
 
2361
- #: ../addons/gateway/event-booking/mycred-eventsmanager-pro.php:545 ../addons/gateway/event-booking/mycred-eventsmanager.php:612
 
2362
  msgid "Payment Header"
2363
  msgstr "Encabezado de Pago"
2364
 
2365
- #: ../addons/gateway/event-booking/mycred-eventsmanager-pro.php:548 ../addons/gateway/event-booking/mycred-eventsmanager.php:615
 
2366
  msgid "Shown on top of the payment form. No HTML allowed."
2367
  msgstr "Mostrar en la encima del formulario de pago. No se permite HTML."
2368
 
2369
- #: ../addons/gateway/event-booking/mycred-eventsmanager-pro.php:555 ../addons/gateway/event-booking/mycred-eventsmanager.php:622
 
2370
  msgid "The button label for payments. No HTML allowed!"
2371
  msgstr "La etiqueta para el botón de pagos. ¡No se permite HTML!"
2372
 
2373
- #: ../addons/gateway/event-booking/mycred-eventsmanager-pro.php:562 ../addons/gateway/event-booking/mycred-eventsmanager.php:629
 
2374
  msgid "Successful Payments"
2375
  msgstr "Compras Finalizadas con Exito"
2376
 
2377
- #: ../addons/gateway/event-booking/mycred-eventsmanager-pro.php:565 ../addons/gateway/event-booking/mycred-eventsmanager-pro.php:572 ../addons/gateway/event-booking/mycred-eventsmanager.php:632 ../addons/gateway/event-booking/mycred-eventsmanager.php:639
 
 
 
2378
  msgid "No HTML allowed!"
2379
  msgstr "¡No se permite HTML!"
2380
 
@@ -2387,6 +2755,7 @@ msgid "Click to toggle"
2387
  msgstr "Haga clic para alternar"
2388
 
2389
  #: ../addons/gateway/event-booking/mycred-eventsmanager.php:533
 
2390
  msgid "%s Payments"
2391
  msgstr "Pagos de "
2392
 
@@ -2399,7 +2768,8 @@ msgstr ""
2399
  "reserva. Utilice cero para no ofrecer reembolso ninguno. No se reembolsa "
2400
  "reservas \"Rechazadas\""
2401
 
2402
- #: ../addons/notifications/myCRED-addon-notifications.php:166 ../modules/mycred-module-addons.php:201
 
2403
  msgid "Notifications"
2404
  msgstr "Notificaciones"
2405
 
@@ -2411,15 +2781,17 @@ msgstr "Diseño/Estilo"
2411
  msgid "Use the included CSS Styling for notifications."
2412
  msgstr "Utilice el Estilo CSS incluido para notificaciones."
2413
 
2414
- #: ../addons/notifications/myCRED-addon-notifications.php:175 ../modules/mycred-module-buddypress.php:410
 
2415
  msgid "Template"
2416
  msgstr "Plantilla"
2417
 
2418
  #: ../addons/notifications/myCRED-addon-notifications.php:179
 
2419
  msgid "Use %entry% to show the log entry in the notice and %amount% for the amount."
2420
  msgstr ""
2421
- "Utiliza %entry% para mostrar la entrada de registro en el aviso y %amount% para "
2422
- "la cantidad."
2423
 
2424
  #: ../addons/notifications/myCRED-addon-notifications.php:182
2425
  msgid "Transient Lifespan"
@@ -2439,12 +2811,13 @@ msgstr "Duracion"
2439
 
2440
  #: ../addons/notifications/myCRED-addon-notifications.php:193
2441
  msgid ""
2442
- "The number of milliseconds a notice should be visible.<br />Use zero to require "
2443
- "that the user closes the notice manually. 1000 milliseconds = 1 second."
 
2444
  msgstr ""
2445
- "Los numeros de milisegundos durante que el aviso debe ser visible.<br />Utilice "
2446
- "cero para exigir que el usuario ciere el aviso manualmente. 1000 milisegundos = "
2447
- "1 segundo."
2448
 
2449
  #: ../addons/ranks/myCRED-addon-ranks.php:231
2450
  msgid "Warning! All ranks will be deleted! This can not be undone!"
@@ -2454,11 +2827,16 @@ msgstr "¡Advertencia! ¡Todos los rangos seran borrados! ¡No se puede deshacer
2454
  msgid "Are you sure you want to re-assign user ranks?"
2455
  msgstr "Esta seguro que quieres reasignar rangos de los usuarios?"
2456
 
2457
- #: ../addons/ranks/myCRED-addon-ranks.php:246 ../addons/ranks/myCRED-addon-ranks.php:252 ../addons/ranks/myCRED-addon-ranks.php:258 ../addons/ranks/myCRED-addon-ranks.php:762 ../addons/ranks/myCRED-addon-ranks.php:958 ../modules/mycred-module-addons.php:213
 
 
 
2458
  msgid "Ranks"
2459
  msgstr "Rangos"
2460
 
2461
- #: ../addons/ranks/myCRED-addon-ranks.php:247 ../addons/ranks/myCRED-addon-ranks.php:454 ../addons/ranks/myCRED-addon-ranks.php:473 ../addons/ranks/myCRED-addon-ranks.php:568
 
 
2462
  msgid "Rank"
2463
  msgstr "Rango"
2464
 
@@ -2490,141 +2868,150 @@ msgstr "Ningun rango encontrado"
2490
  msgid "No ranks found in Trash"
2491
  msgstr "Ningun rango encontrao el la papelera"
2492
 
2493
- #: ../addons/ranks/myCRED-addon-ranks.php:323
 
2494
  msgid "Completed - Total of %d users effected"
2495
  msgstr "Completado - Un total %d usuarios afectados"
2496
 
2497
- #: ../addons/ranks/myCRED-addon-ranks.php:325
2498
  msgid "Log is Empty"
2499
  msgstr "Registro esta Vacío"
2500
 
2501
- #: ../addons/ranks/myCRED-addon-ranks.php:528 ../addons/ranks/myCRED-addon-ranks.php:531
 
 
2502
  msgid "Rank Updated. View <a href=\"%1$s\">All Ranks</a>."
2503
  msgstr "Rango Actualizado. Ver a Todos los Rangos"
2504
 
2505
- #: ../addons/ranks/myCRED-addon-ranks.php:533
2506
  msgid "Rank Activated"
2507
  msgstr "Rango Activado"
2508
 
2509
- #: ../addons/ranks/myCRED-addon-ranks.php:534
2510
  msgid "Rank Saved"
2511
  msgstr "Rango Guardado"
2512
 
2513
- #: ../addons/ranks/myCRED-addon-ranks.php:535
 
2514
  msgid "Rank Submitted for approval. View <a href=\"%1$s\">All Ranks</a>."
2515
  msgstr "Rango presentado para aprobación. Ver <a href=\"%1$s\">Todos los Rangos</a>."
2516
 
2517
  #. can also be: "Rango fijado para:"
2518
- #: ../addons/ranks/myCRED-addon-ranks.php:537
 
2519
  msgid "Rank scheduled for: <strong>%1$s</strong>."
2520
  msgstr "Rango programado para: <strong>%1$s</strong>."
2521
 
2522
- #: ../addons/ranks/myCRED-addon-ranks.php:594 ../addons/ranks/myCRED-addon-ranks.php:647
 
2523
  msgid "Rank Title"
2524
  msgstr "Titulo de Rango"
2525
 
2526
- #: ../addons/ranks/myCRED-addon-ranks.php:595
2527
  msgid "Logo"
2528
  msgstr "Logotipo"
2529
 
2530
- #: ../addons/ranks/myCRED-addon-ranks.php:596
2531
  msgid "Requirement"
2532
  msgstr "Requisito"
2533
 
2534
- #: ../addons/ranks/myCRED-addon-ranks.php:597 ../modules/mycred-module-settings.php:451
 
2535
  msgid "Users"
2536
  msgstr "Usuarios"
2537
 
2538
- #: ../addons/ranks/myCRED-addon-ranks.php:613
2539
  msgid "No Logo Set"
2540
  msgstr "No hay Logotipo Configurado"
2541
 
2542
- #: ../addons/ranks/myCRED-addon-ranks.php:622 ../addons/ranks/myCRED-addon-ranks.php:627
 
2543
  msgid "Any Value"
2544
  msgstr "Cualquier Valor"
2545
 
2546
- #: ../addons/ranks/myCRED-addon-ranks.php:629
2547
  msgid "Maximum %plural%"
2548
  msgstr "Maximo %plural%"
2549
 
2550
- #: ../addons/ranks/myCRED-addon-ranks.php:660
2551
  msgid "Rank Settings"
2552
  msgstr "Configuración de Rango"
2553
 
2554
- #: ../addons/ranks/myCRED-addon-ranks.php:682
2555
  msgid "Minimum %plural% to reach this rank"
2556
  msgstr "Minimo %plural% para llegar a este rango"
2557
 
2558
- #: ../addons/ranks/myCRED-addon-ranks.php:686
2559
  msgid "Maximum %plural% to be included in this rank"
2560
  msgstr "Maximo %plural% para ser incluido en este rango"
2561
 
2562
- #: ../addons/ranks/myCRED-addon-ranks.php:693
2563
  msgid "All Published Ranks"
2564
  msgstr "Todos los Rangos Publicados"
2565
 
2566
- #: ../addons/ranks/myCRED-addon-ranks.php:699 ../addons/ranks/myCRED-addon-ranks.php:701
 
2567
  msgid "Not Set"
2568
  msgstr "No Configurado"
2569
 
2570
- #: ../addons/ranks/myCRED-addon-ranks.php:706
2571
  msgid "No Ranks found"
2572
  msgstr "Ningun rango encontrado"
2573
 
2574
- #: ../addons/ranks/myCRED-addon-ranks.php:764
2575
  msgid "Rank Features"
2576
  msgstr "Caracteristicas de los Rangos"
2577
 
2578
- #: ../addons/ranks/myCRED-addon-ranks.php:768
2579
  msgid "%plural% requirement"
2580
  msgstr "%plural% requisito"
2581
 
2582
- #: ../addons/ranks/myCRED-addon-ranks.php:769
2583
  msgid "Featured Image (Logo)"
2584
  msgstr "Imagen Principal (Logotipo)"
2585
 
2586
- #: ../addons/ranks/myCRED-addon-ranks.php:770
2587
  msgid "Content"
2588
  msgstr "Contenido"
2589
 
2590
- #: ../addons/ranks/myCRED-addon-ranks.php:771
2591
  msgid "Excerpt"
2592
  msgstr "Extracto"
2593
 
2594
- #: ../addons/ranks/myCRED-addon-ranks.php:772
2595
  msgid "Comments"
2596
  msgstr "Comentario"
2597
 
2598
- #: ../addons/ranks/myCRED-addon-ranks.php:773
2599
  msgid "Page Attributes"
2600
  msgstr "Atributos de Página"
2601
 
2602
- #: ../addons/ranks/myCRED-addon-ranks.php:774
2603
  msgid "Custom Fields"
2604
  msgstr "Campo Personalizado"
2605
 
2606
- #: ../addons/ranks/myCRED-addon-ranks.php:777
2607
  msgid "Public"
2608
  msgstr "Público"
2609
 
2610
  #. This is not clear, especially the second sentence (fragment)!
2611
- #: ../addons/ranks/myCRED-addon-ranks.php:781
2612
  msgid ""
2613
- "If you want to create a template archive for each rank, you must select to have "
2614
- "ranks public. Defaults to disabled."
2615
  msgstr ""
2616
  "Si desea crear un archivo de plantilla para cada rango, debe seleccionar que "
2617
  "los rangos sean público. Los valores predeterminados desactivado."
2618
 
2619
- #: ../addons/ranks/myCRED-addon-ranks.php:784
2620
  msgid "Rank Basis"
2621
  msgstr "Base de Rango"
2622
 
2623
- #: ../addons/ranks/myCRED-addon-ranks.php:787
2624
  msgid "Users are ranked according to their current balance."
2625
  msgstr "Los usuarios se clasifican según su saldo actual."
2626
 
2627
- #: ../addons/ranks/myCRED-addon-ranks.php:790
2628
  msgid ""
2629
  "Users are ranked according to the total amount of %_plural% they have "
2630
  "accumulated."
@@ -2632,125 +3019,137 @@ msgstr ""
2632
  "Los usuarios se clasifican según la cantidad total de %_plural% que han "
2633
  "acumulado."
2634
 
2635
- #: ../addons/ranks/myCRED-addon-ranks.php:794 ../addons/ranks/myCRED-addon-ranks.php:799
 
2636
  msgid "Calculate Totals"
2637
  msgstr "Calcular Totales"
2638
 
2639
- #: ../addons/ranks/myCRED-addon-ranks.php:797
2640
  msgid ""
2641
  "Use this button to calculate or re-calcualte your users totals. If not used, "
2642
  "the users current balance will be used as a starting point."
2643
  msgstr ""
2644
- "Utilice este botón para calcular y volver a calcular las sumas de tus usuarios. "
2645
- "Si no se utiliza, los saldos actuales de los usuarios se utilizaran como punto "
2646
- "de partida."
2647
 
2648
- #: ../addons/ranks/myCRED-addon-ranks.php:797
2649
  msgid ""
2650
  "Once a users total has been calculated, they will be assigned to their "
2651
  "appropriate roles. For this reason, it is highly recommended that you first "
2652
  "setup your ranks!"
2653
  msgstr ""
2654
- "Una vez que la suma del usuario haya sido calculado, sus roles corespondientes "
2655
- "seran asignados. ¡Por esta razón, se recomienda altamente que primero "
2656
- "configures los rangos!"
2657
 
2658
- #: ../addons/ranks/myCRED-addon-ranks.php:798
2659
  msgid ""
2660
- "Depending on your log size and number of users this process may take a while. "
2661
- "Please do not leave, click \"Update Settings\" or re-fresh this page until this "
2662
- "is completed!"
2663
  msgstr ""
2664
- "Segun el tamaño de registro y los numeros de usuarios este proceso puede llevar "
2665
- "un rato. ¡Por favor no abandone esta pagina, haga click sobre \"Actualizar "
2666
- "Configuraciones\" o refrescar la pagina hasta que se haya completado!"
 
2667
 
2668
- #: ../addons/ranks/myCRED-addon-ranks.php:803
2669
  msgid "Archive URL"
2670
  msgstr "URL del Archivo"
2671
 
2672
- #: ../addons/ranks/myCRED-addon-ranks.php:807
2673
  msgid "Ignored if Ranks are not public"
2674
  msgstr "Sera Ingnorado si los Rangos no son Pulicos"
2675
 
2676
  #. not sure if this is order, as in ordering pizza or order as in rank, organization
2677
- #: ../addons/ranks/myCRED-addon-ranks.php:810
2678
  msgid "Display Order"
2679
  msgstr "Orden de Visualización"
2680
 
2681
- #: ../addons/ranks/myCRED-addon-ranks.php:817
2682
  msgid "Ascending - Lowest rank to highest"
2683
  msgstr "Ascendente - Rango más bajo a lo más alto"
2684
 
2685
- #: ../addons/ranks/myCRED-addon-ranks.php:818
2686
  msgid "Descending - Highest rank to lowest"
2687
  msgstr "Descendiente - Rango más alto al más bajo"
2688
 
2689
- #: ../addons/ranks/myCRED-addon-ranks.php:827
2690
  msgid ""
2691
- "Select in what order ranks should be displayed in your admin area and/or front "
2692
- "if ranks are \"Public\""
2693
  msgstr ""
2694
- "Elige en que orden se debe mostrar los rangos en tu area de administrador y/o "
2695
- "en el frente si los rangos son \"Público\""
2696
 
2697
- #: ../addons/ranks/myCRED-addon-ranks.php:837 ../modules/mycred-module-buddypress.php:366 ../modules/mycred-module-buddypress.php:373
 
2698
  msgid "Do not show."
2699
  msgstr "No mostrar."
2700
 
2701
- #: ../addons/ranks/myCRED-addon-ranks.php:838 ../modules/mycred-module-buddypress.php:367
 
2702
  msgid "Include in Profile Header."
2703
  msgstr "Incluir en Encabezado del Perfil"
2704
 
2705
- #: ../addons/ranks/myCRED-addon-ranks.php:839 ../modules/mycred-module-buddypress.php:368
 
2706
  msgid "Include under the \"Profile\" tab"
2707
  msgstr "Incluir debajo de la pestaña del \"Perfil\""
2708
 
2709
- #: ../addons/ranks/myCRED-addon-ranks.php:840 ../modules/mycred-module-buddypress.php:369
 
2710
  msgid "Include under the \"Profile\" tab and Profile Header."
2711
  msgstr "Incluir en la pestanã \"Perfil\" y Encabezado de Perfil"
2712
 
2713
- #: ../addons/ranks/myCRED-addon-ranks.php:843
2714
  msgid "Rank in BuddyPress"
2715
  msgstr "Rango en BuddyPress"
2716
 
2717
- #: ../addons/ranks/myCRED-addon-ranks.php:911
2718
  msgid "Script Communication Error"
2719
  msgstr "Error del Script de Comunicación"
2720
 
2721
- #: ../addons/ranks/myCRED-addon-ranks.php:961
2722
  msgid "Rank Post Type"
2723
  msgstr "Clasificar Post Types"
2724
 
2725
- #: ../addons/ranks/myCRED-addon-ranks.php:965
2726
  msgid "No. of ranks"
2727
  msgstr "Numero de Rangos"
2728
 
2729
- #: ../addons/ranks/myCRED-addon-ranks.php:969 ../modules/mycred-module-log.php:368 ../modules/mycred-module-settings.php:440 ../modules/mycred-module-settings.php:455
 
 
2730
  msgid "Actions"
2731
  msgstr "Acciones"
2732
 
2733
- #: ../addons/ranks/myCRED-addon-ranks.php:970
2734
  msgid "Remove All Ranks"
2735
  msgstr "Quitar todos los Rangos"
2736
 
2737
- #: ../addons/ranks/myCRED-addon-ranks.php:970
2738
  msgid "Assign Ranks to Users"
2739
  msgstr "Asignar Rango a los Usuarios"
2740
 
2741
- #: ../addons/ranks/includes/mycred-rank-functions.php:181
2742
  msgid "mycred_get_users_rank() : Missing required user id"
2743
  msgstr "mycred_get_users_rank() : Falta el requisito id del usuario"
2744
 
2745
- #: ../addons/ranks/includes/mycred-rank-functions.php:191
2746
  msgid "no rank"
2747
  msgstr "ningun rango"
2748
 
2749
- #: ../addons/ranks/includes/mycred-rank-shortcodes.php:58 ../addons/ranks/includes/mycred-rank-shortcodes.php:134
 
2750
  msgid "No users found with this rank"
2751
  msgstr "Ningun usuario encontrado con este rango"
2752
 
2753
- #: ../addons/ranks/includes/mycred-rank-shortcodes.php:63 ../includes/mycred-shortcodes.php:352 ../includes/mycred-shortcodes.php:355 ../includes/mycred-shortcodes.php:417 ../includes/mycred-shortcodes.php:478 ../includes/mycred-shortcodes.php:482 ../includes/mycred-shortcodes.php:486
 
 
 
2754
  msgid "error"
2755
  msgstr "error"
2756
 
@@ -2786,7 +3185,9 @@ msgstr "No Desembolsar. Solo cobrar."
2786
  msgid "Pay Content Author."
2787
  msgstr "Pagar al Autor del Contenido"
2788
 
2789
- #: ../addons/sell-content/myCRED-addon-sell-content.php:339 ../includes/mycred-overview.php:141 ../includes/mycred-overview.php:148 ../modules/mycred-module-addons.php:224
 
 
2790
  msgid "Sell Content"
2791
  msgstr "Vender Contenido"
2792
 
@@ -2807,8 +3208,8 @@ msgid ""
2807
  "Percentage of the price to pay the author. Can not be zero and is ignored if "
2808
  "authors are not paid."
2809
  msgstr ""
2810
- "Porcentaje del precio que pagar al autor. No puede ser cero y sera ignorado si "
2811
- "no se les paga a los autores."
2812
 
2813
  #. also, "por defecto" and "predeterminados"
2814
  #: ../addons/sell-content/myCRED-addon-sell-content.php:385
@@ -2836,9 +3237,10 @@ msgid "Sale Template for non members"
2836
  msgstr "Guardar Plantilla para los no miembros"
2837
 
2838
  #: ../addons/sell-content/myCRED-addon-sell-content.php:415
 
2839
  msgid ""
2840
- "Do <strong>not</strong> use the %buy_button% in this template as a user must be "
2841
- "logged in to buy content!"
2842
  msgstr ""
2843
  "<strong>¡No utilice</strong> el %buy_button% en esta plantilla porque el "
2844
  "usuario debe haber inciciado sesión para poder comprar contenidos!"
@@ -2847,11 +3249,13 @@ msgstr ""
2847
  msgid "Sale Template for members"
2848
  msgstr "Plantilla de Venta para miembros"
2849
 
2850
- #: ../addons/sell-content/myCRED-addon-sell-content.php:423 ../addons/sell-content/myCRED-addon-sell-content.php:431
 
 
2851
  msgid "Your template must contain the %buy_button% tag for purchases to work!"
2852
  msgstr ""
2853
- "¡Tu plantilla debe contener la etiqueta %buy_button% para que se pueda realizar "
2854
- "compras!"
2855
 
2856
  #: ../addons/sell-content/myCRED-addon-sell-content.php:427
2857
  msgid "Insufficient funds template"
@@ -2866,14 +3270,16 @@ msgid "Log template for Sales"
2866
  msgstr "Plantilla de registros para Ventas"
2867
 
2868
  #: ../addons/sell-content/myCRED-addon-sell-content.php:494
 
2869
  msgid "%s Sell This"
2870
  msgstr "%s Vende Esto"
2871
 
2872
  #: ../addons/sell-content/myCRED-addon-sell-content.php:548
 
2873
  msgid "%s Sell Content needs to be setup before you can use this feature."
2874
  msgstr ""
2875
- "%s Vender Contenidos necesita haberse configurado antes de poder utilizar esta "
2876
- "característica técnica."
2877
 
2878
  #: ../addons/sell-content/myCRED-addon-sell-content.php:551
2879
  msgid "Setup add-on"
@@ -2895,7 +3301,8 @@ msgstr "Compra caduca despues de"
2895
  msgid "Thank you for your purchase!"
2896
  msgstr "¡Gracias por su compra!"
2897
 
2898
- #: ../addons/sell-content/myCRED-addon-sell-content.php:1008 ../addons/sell-content/myCRED-addon-sell-content.php:1094
 
2899
  msgid "The following content is set for sale:"
2900
  msgstr "El siguiente contenido esta listo para la venta:"
2901
 
@@ -2922,8 +3329,8 @@ msgstr "Transacción Finalizada"
2922
  #: ../addons/transfer/myCRED-addon-transfer.php:141
2923
  msgid "Security token could not be verified. Please contact your site administrator!"
2924
  msgstr ""
2925
- "No se pudo verificar el 'token' (código) de seguridad. ¡Por favor, póngase en "
2926
- "contacto con el administrador del sitio!"
2927
 
2928
  #: ../addons/transfer/myCRED-addon-transfer.php:142
2929
  msgid "Communications error. Please try again later."
@@ -2943,8 +3350,8 @@ msgstr "Cantidad incorecta. Por favor inténtelo de nuevo."
2943
 
2944
  #: ../addons/transfer/myCRED-addon-transfer.php:146
2945
  msgid ""
2946
- "This myCRED Add-on has not yet been setup! No transfers are allowed until this "
2947
- "has been done!"
2948
  msgstr ""
2949
  "¡Esta Extensión de myCRED todavía no ha sido configurado! No se permite "
2950
  "transferencias hasta que se haga esto."
@@ -2977,11 +3384,13 @@ msgstr "Ingreso Usuario (user_login)"
2977
  msgid "User Email (user_email)"
2978
  msgstr "Correo Electrónico del Usuario (user_email)"
2979
 
2980
- #: ../addons/transfer/myCRED-addon-transfer.php:191 ../addons/transfer/myCRED-addon-transfer.php:631
 
2981
  msgid "Transfer %plural%"
2982
  msgstr "Transferir %plural%"
2983
 
2984
- #: ../addons/transfer/myCRED-addon-transfer.php:195 ../includes/mycred-widgets.php:593 ../modules/mycred-module-settings.php:469
 
2985
  msgid "Point Types"
2986
  msgstr "Tipo de Puntos"
2987
 
@@ -3080,8 +3489,8 @@ msgstr "Saldo insuficiente - no se puede enviar."
3080
 
3081
  #: ../addons/transfer/myCRED-addon-transfer.php:296
3082
  msgid ""
3083
- "Text to show when a users balance is to low for transfers. Leave empty to hide. "
3084
- "No HTML elements allowed!"
3085
  msgstr ""
3086
  "Mostrar este texto cuando el saldo de un usuario es demasiado bajo para "
3087
  "efectuar transferencias. Deje el campo vacío para ocultarlo. ¡No se permite "
@@ -3096,15 +3505,16 @@ msgid ""
3096
  "Text to show when a user has reached their transfer limit (if used). Leave "
3097
  "empty to hide. No HTML elements allowed!"
3098
  msgstr ""
3099
- "Mostrar este texto cuando un usuario haya llegado al límite de su transferencia "
3100
- "(si se utiliza). Deje el campo vacío para ocultarlo. ¡No se permite ningun "
3101
- "elemento de HTML!"
3102
 
3103
  #: ../addons/transfer/myCRED-addon-transfer.php:560
3104
  msgid "Allow transfers between users."
3105
  msgstr "Permitir transferencias entre usuarios."
3106
 
3107
  #: ../addons/transfer/myCRED-addon-transfer.php:562
 
3108
  msgid "(%s) Transfer"
3109
  msgstr "(%s) Transfererir"
3110
 
@@ -3130,6 +3540,7 @@ msgstr "correo electrónico"
3130
 
3131
  #. is this recipients plural or recipient's with an apostrophe missing?
3132
  #: ../addons/transfer/myCRED-addon-transfer.php:780
 
3133
  msgid "recipients %s"
3134
  msgstr "destinatarios %s"
3135
 
@@ -3142,6 +3553,7 @@ msgid "Amount:"
3142
  msgstr "Cantidad:"
3143
 
3144
  #: ../includes/mycred-about.php:75
 
3145
  msgid "Welcome to %s %s"
3146
  msgstr "Bienvenido a %s %s"
3147
 
@@ -3150,8 +3562,8 @@ msgid ""
3150
  "Re-save your myCRED Settings & all myCRED widget settings that you are "
3151
  "currently using."
3152
  msgstr ""
3153
- "Volver a guardar tus Configuraciones de myCRED y todas las configuraciones del "
3154
- "widget de myCRED que actualmente estas usuando."
3155
 
3156
  #: ../includes/mycred-admin.php:67
3157
  msgid "Re-save your myCRED Hook Settings."
@@ -3185,7 +3597,8 @@ msgstr "No se pudo actualizar el saldo de este usuario."
3185
  msgid "Excluded"
3186
  msgstr "Excluido"
3187
 
3188
- #: ../includes/mycred-admin.php:279 ../modules/mycred-module-log.php:250 ../modules/mycred-module-log.php:251
 
3189
  msgid "History"
3190
  msgstr "Historial"
3191
 
@@ -3194,6 +3607,7 @@ msgid "Adjust"
3194
  msgstr "Modificar"
3195
 
3196
  #: ../includes/mycred-admin.php:335 ../includes/mycred-admin.php:394
 
3197
  msgid "%singular% balance"
3198
  msgstr "%singular% saldo"
3199
 
@@ -3310,6 +3724,7 @@ msgid "incorrect unix timestamp (to):"
3310
  msgstr "erroneo marca de tiempo de unix (a):"
3311
 
3312
  #: ../includes/mycred-importer.php:11
 
3313
  msgid "%s Log Import"
3314
  msgstr "Registro de Importe %s"
3315
 
@@ -3318,6 +3733,7 @@ msgid "Import log entries via a CSV file."
3318
  msgstr "Importa las entradas de registro atraves de un fichero CSV."
3319
 
3320
  #: ../includes/mycred-importer.php:43
 
3321
  msgid "%s Balance Import"
3322
  msgstr "%s balance de Importar"
3323
 
@@ -3326,10 +3742,12 @@ msgid "Import balances."
3326
  msgstr "Saldos Importar."
3327
 
3328
  #: ../includes/mycred-importer.php:75
 
3329
  msgid "%s CubePoints Import"
3330
  msgstr "Importar CubePoints %s"
3331
 
3332
- #: ../includes/mycred-importer.php:76 ../includes/importers/mycred-cubepoints.php:344
 
3333
  msgid "Import CubePoints log entries and / or balances."
3334
  msgstr "Importar las entradas de registro de CubePoints y/o saldos."
3335
 
@@ -3351,8 +3769,8 @@ msgstr "myCRED requiere SWL 5.0 o más alto. La versión detectada:"
3351
 
3352
  #: ../includes/mycred-install.php:54
3353
  msgid ""
3354
- "Sorry but your WordPress installation does not reach the minimum requirements "
3355
- "for running myCRED. The following errors were given:"
3356
  msgstr ""
3357
  "Lo sentimos, pero tu instalación de WordPress no alcanza a los requisitos "
3358
  "mínimos de mycred. Se produce los siguientes errores:"
@@ -3370,6 +3788,7 @@ msgid "myCRED Setup"
3370
  msgstr "Instalación de myCRED"
3371
 
3372
  #: ../includes/mycred-install.php:385
 
3373
  msgid "%s Setup"
3374
  msgstr "Configurar %s"
3375
 
@@ -3379,11 +3798,11 @@ msgstr "Paso"
3379
 
3380
  #: ../includes/mycred-install.php:411
3381
  msgid ""
3382
- "Click \"Begin Setup\" to install myCRED. You will be able to select your points "
3383
- "format, layout and security settings."
3384
  msgstr ""
3385
- "Haga clic en \"Empezar la Instalación\" para instalar myCRED. Podras ajustar el "
3386
- "formato de puntos, disposiciones y configuraciones de seguridad."
3387
 
3388
  #: ../includes/mycred-install.php:412
3389
  msgid "Begin Setup"
@@ -3460,14 +3879,15 @@ msgstr "Desembolso %plural% Máximo"
3460
 
3461
  #: ../includes/mycred-install.php:556 ../modules/mycred-module-settings.php:390
3462
  msgid ""
3463
- "As an added security, you can set the maximum amount a user can gain or loose "
3464
- "in a single instance. If used, make sure this is the maximum amount a user "
3465
- "would be able to transfer, buy, or spend in your store. Use zero to disable."
 
3466
  msgstr ""
3467
- "Como mayor seguridad, puedes configurar la cantidad máxima que un usuario puede "
3468
- "ganar o perder en una sola instancia. Si se utiliza esto, asegurate que es "
3469
- "tambien la máxima cantidad que el usuario puede transferir, comprar, o gastar "
3470
- "en tu tienda. Ponga zero para desactivar."
3471
 
3472
  #: ../includes/mycred-install.php:563 ../modules/mycred-module-settings.php:397
3473
  msgid "Exclude those who can \"Edit Settings\"."
@@ -3495,13 +3915,16 @@ msgstr "Listo"
3495
 
3496
  #: ../includes/mycred-install.php:600
3497
  msgid "Almost done! Click the button below to finish this setup."
3498
- msgstr "¡Casi terminado! Haga clic al botón de abajo para finalizar esta configuración."
 
 
3499
 
3500
  #: ../includes/mycred-install.php:601
3501
  msgid "Install & Run"
3502
  msgstr "Instalar e ejecutar"
3503
 
3504
  #: ../includes/mycred-log.php:389
 
3505
  msgid "Showing %d %s"
3506
  msgstr "Mostrando %d %s"
3507
 
@@ -3523,6 +3946,7 @@ msgid "Current page"
3523
  msgstr "Página corriente"
3524
 
3525
  #: ../includes/mycred-log.php:424
 
3526
  msgctxt "paging"
3527
  msgid "%1$s of %2$s"
3528
  msgstr "%1$s de %2$s"
@@ -3561,11 +3985,11 @@ msgstr "Filtro"
3561
 
3562
  #: ../includes/mycred-log.php:609
3563
  msgid ""
3564
- "Log entries are exported to a CSV file and depending on the number of entries "
3565
- "selected, the process may take a few seconds."
3566
  msgstr ""
3567
- "Se exporta las entradas de registro a un fichero CSV y dependiendo del número "
3568
- "de entradas seleccionadas, el proceso puede tardar unos segundos."
3569
 
3570
  #: ../includes/mycred-log.php:613
3571
  msgid "No export options available."
@@ -3589,7 +4013,8 @@ msgstr "Busqueda de Registro"
3589
  msgid "search log entries"
3590
  msgstr "Búsqueda de las entradas de registro"
3591
 
3592
- #: ../includes/mycred-log.php:842 ../modules/mycred-module-buddypress.php:232 ../modules/mycred-module-buddypress.php:245
 
3593
  msgid "All"
3594
  msgstr "Todo"
3595
 
@@ -3614,10 +4039,12 @@ msgid "Network Settings"
3614
  msgstr "Configuración de la Red"
3615
 
3616
  #: ../includes/mycred-network.php:169
 
3617
  msgid "%s Network"
3618
  msgstr "Red de %s"
3619
 
3620
  #: ../includes/mycred-network.php:175
 
3621
  msgid "Note! %s has not yet been setup."
3622
  msgstr "¡Aviso! %s no ha sido configurado."
3623
 
@@ -3626,6 +4053,7 @@ msgid "Network Settings Updated"
3626
  msgstr "Configuraciones de la Red Actualizadas"
3627
 
3628
  #: ../includes/mycred-network.php:181
 
3629
  msgid "Configure network settings for %s."
3630
  msgstr "Configure los parámetros de red para %s."
3631
 
@@ -3634,28 +4062,31 @@ msgid "Master Template"
3634
  msgstr "Plantilla Principal"
3635
 
3636
  #: ../includes/mycred-network.php:199
 
3637
  msgid ""
3638
- "If enabled, %s will use your main site's settings for all other sites in your "
3639
- "network."
3640
  msgstr ""
3641
- "Si activado, %s utilizara la configuración de tu sitio principal para todas los "
3642
- "sitios en tu red."
3643
 
3644
  #: ../includes/mycred-network.php:202
3645
  msgid "Central Logging"
3646
  msgstr "Central de Registro"
3647
 
3648
  #: ../includes/mycred-network.php:213
 
3649
  msgid "If enabled, %s will log all site actions in your main site's log."
3650
  msgstr ""
3651
- "Si está activado, %s registrará todas las acciones en el registro de tu sitio "
3652
- "principal."
3653
 
3654
  #: ../includes/mycred-network.php:216
3655
  msgid "Site Block"
3656
  msgstr "Bloqueo de Sitio"
3657
 
3658
  #: ../includes/mycred-network.php:220
 
3659
  msgid "Comma separated list of blog ids where %s is to be disabled."
3660
  msgstr "Lista separada por comas de blog IDs donde %s se va a inhabilitar."
3661
 
@@ -3664,6 +4095,7 @@ msgid "Save Network Settings"
3664
  msgstr "Guardar las Configuraciones de la Eed"
3665
 
3666
  #: ../includes/mycred-overview.php:25
 
3667
  msgid "%s Overview"
3668
  msgstr "Descripción de %s"
3669
 
@@ -3680,7 +4112,8 @@ msgstr "Concedido"
3680
  msgid "Deducted"
3681
  msgstr "Deducido"
3682
 
3683
- #: ../includes/mycred-overview.php:120 ../includes/mycred-overview.php:127 ../modules/mycred-module-addons.php:235
 
3684
  msgid "Transfers"
3685
  msgstr "Transferencias"
3686
 
@@ -3697,8 +4130,8 @@ msgstr ""
3697
  #: ../includes/mycred-remote.php:526
3698
  msgid "Click Update Settings to load the Remote API settings."
3699
  msgstr ""
3700
- "Haga clic sobre Actualizar Configuraciones para cargar la configuración de API "
3701
- "remoto."
3702
 
3703
  #: ../includes/mycred-remote.php:528
3704
  msgid "Allow Remote Access"
@@ -3739,15 +4172,17 @@ msgid ""
3739
  "Keep this key safe! Those you share this key with will be able to remotely "
3740
  "deduct / add / transfer %plural%!"
3741
  msgstr ""
3742
- "¡Mantenga la seguridad de esta clave! Aquellos con quien compartes esta clave "
3743
- "podran restar / añadir / transferir %plural% de forma remota."
3744
 
3745
  #: ../includes/mycred-remote.php:568
3746
  msgid "Incoming URI"
3747
  msgstr "URI Entrante"
3748
 
3749
  #: ../includes/mycred-remote.php:572
3750
- msgid "The incoming call address. Remote calls made to any other URL will be ignored."
 
 
3751
  msgstr ""
3752
  "La dirección de la llamada entrante. Se ignorará las llamadas remotas a "
3753
  "cualquier otro URL."
@@ -3797,10 +4232,12 @@ msgid "A video ID is required for this shortcode"
3797
  msgstr "Este código corto (shortcode) precisa un ID del video."
3798
 
3799
  #: ../includes/mycred-widgets.php:21
 
3800
  msgid "Show the current users %s balance"
3801
  msgstr "Enseñar el saldo de %s del usuario actual"
3802
 
3803
  #: ../includes/mycred-widgets.php:23
 
3804
  msgid "(%s) My Balance"
3805
  msgstr "(%s) Mi Saldo"
3806
 
@@ -3854,10 +4291,12 @@ msgid "Message"
3854
  msgstr "Mensaje"
3855
 
3856
  #: ../includes/mycred-widgets.php:323
 
3857
  msgid "Show a list of users sorted by their %s balance"
3858
  msgstr "Mustra una lista de usuarios ordenados por sus %s saldos"
3859
 
3860
  #: ../includes/mycred-widgets.php:325
 
3861
  msgid "(%s) Leaderboard"
3862
  msgstr "(%s) Tabla de Clasificación"
3863
 
@@ -3893,8 +4332,8 @@ msgstr "Añade la posición actual de usuarios "
3893
 
3894
  #: ../includes/mycred-widgets.php:446
3895
  msgid ""
3896
- "If the current user is not in this leaderboard, you can select to append them "
3897
- "at the end with their current position."
3898
  msgstr ""
3899
  "Si el usuario actual no esta en esta tabla de clasificación, puedes elegir a "
3900
  "agregarles al final con su posición actual."
@@ -3904,6 +4343,7 @@ msgid "Shows the current users balances for each point type."
3904
  msgstr "Mostrar el saldo actual del usuario para cada tipo de puntos."
3905
 
3906
  #: ../includes/mycred-widgets.php:497
 
3907
  msgid "(%s) Wallet"
3908
  msgstr "(%s) Cartera"
3909
 
@@ -3915,31 +4355,41 @@ msgstr "Mi Cartera"
3915
  msgid "Row Layout"
3916
  msgstr "Disposición de Filas"
3917
 
3918
- #: ../includes/importers/mycred-balances.php:81 ../includes/importers/mycred-balances.php:159 ../includes/importers/mycred-balances.php:198 ../includes/importers/mycred-balances.php:213 ../includes/importers/mycred-log-entries.php:81 ../includes/importers/mycred-log-entries.php:126 ../includes/importers/mycred-log-entries.php:165 ../includes/importers/mycred-log-entries.php:180
 
 
 
 
 
3919
  msgid "Sorry, there has been an error."
3920
  msgstr "Lo sentimos, se ha producido un error."
3921
 
3922
- #: ../includes/importers/mycred-balances.php:82 ../includes/importers/mycred-log-entries.php:82
 
3923
  msgid "The file does not exist, please try again."
3924
  msgstr "El fichero no existe, por favor inténtelo de nuevo más tarde."
3925
 
3926
- #: ../includes/importers/mycred-balances.php:160 ../includes/importers/mycred-log-entries.php:127
 
3927
  msgid "The CSV is invalid."
3928
  msgstr "El CSV no es valido."
3929
 
3930
  #: ../includes/importers/mycred-balances.php:171
 
3931
  msgid ""
3932
  "Import complete - A total of <strong>%d</strong> balances were successfully "
3933
  "imported. <strong>%d</strong> was skipped."
3934
  msgstr ""
3935
- "Importación Finalizado - En total, <strong>%d</strong> saldos fueron importado "
3936
- "con éxito. Se saltaron <strong>%d</strong>."
3937
 
3938
- #: ../includes/importers/mycred-balances.php:181 ../includes/importers/mycred-cubepoints.php:293 ../includes/importers/mycred-log-entries.php:148
 
3939
  msgid "View Log"
3940
  msgstr "Ver Registro"
3941
 
3942
- #: ../includes/importers/mycred-balances.php:181 ../includes/importers/mycred-cubepoints.php:293 ../includes/importers/mycred-log-entries.php:148
 
3943
  msgid "Import More"
3944
  msgstr "Importar Más"
3945
 
@@ -3951,27 +4401,33 @@ msgstr "Saldos Importar"
3951
  msgid "Import balances from a CSV file."
3952
  msgstr "Importa saldos de registro desde un fichero CSV."
3953
 
3954
- #: ../includes/importers/mycred-balances.php:252 ../includes/importers/mycred-log-entries.php:219
 
3955
  msgid ""
3956
  "Before you can upload your import file, you will need to fix the following "
3957
  "error:"
3958
  msgstr ""
3959
- "Antes que puedas subir tu fichero de importe, tendras que corregir los errores "
3960
- "siguientes:"
3961
 
3962
- #: ../includes/importers/mycred-balances.php:261 ../includes/importers/mycred-log-entries.php:228
 
3963
  msgid "Choose a file from your computer:"
3964
  msgstr "Elige un fichero en tu ordenador:"
3965
 
3966
- #: ../includes/importers/mycred-balances.php:267 ../includes/importers/mycred-log-entries.php:234
 
 
3967
  msgid "Maximum size: %s"
3968
  msgstr "Tamaño Máximo: %s"
3969
 
3970
- #: ../includes/importers/mycred-balances.php:272 ../includes/importers/mycred-log-entries.php:239
 
3971
  msgid "OR enter path to file:"
3972
  msgstr "O rellena la ruta al fichero:"
3973
 
3974
- #: ../includes/importers/mycred-balances.php:279 ../includes/importers/mycred-log-entries.php:246
 
3975
  msgid "Delimiter"
3976
  msgstr "Delimitador"
3977
 
@@ -3987,7 +4443,8 @@ msgstr "Sustituir los balances actuales con los montos en el archivo CSV"
3987
  msgid "Adjust current balances according to the amount in this CSV file"
3988
  msgstr "Ajustar los balances actuales de acuerdo al monto en el archivo CSV"
3989
 
3990
- #: ../includes/importers/mycred-balances.php:292 ../includes/importers/mycred-log-entries.php:252
 
3991
  msgid "Upload file and import"
3992
  msgstr "Subir fichero e importar"
3993
 
@@ -3999,7 +4456,9 @@ msgstr "Ningun saldo fue importado."
3999
  msgid "No log entries were imported!"
4000
  msgstr "¡No se importo ninguna entrada de registro!"
4001
 
4002
- #: ../includes/importers/mycred-cubepoints.php:282 ../includes/importers/mycred-log-entries.php:138
 
 
4003
  msgid ""
4004
  "Import complete - A total of <strong>%d</strong> entries were successfully "
4005
  "imported. <strong>%d</strong> was skipped."
@@ -4036,10 +4495,12 @@ msgid "Import"
4036
  msgstr "Importar"
4037
 
4038
  #: ../includes/importers/mycred-cubepoints.php:360
4039
- msgid "Warning! Importing CubePoints balances will replace your users myCRED balance!"
 
 
4040
  msgstr ""
4041
- "¡Advertencia! ¡La importación de los saldos de CubePoints reemplazará el saldo "
4042
- "de myCRED para tus usuarios!"
4043
 
4044
  #: ../includes/importers/mycred-cubepoints.php:378
4045
  msgid "Import Log"
@@ -4060,8 +4521,8 @@ msgstr "Extensiones"
4060
  #: ../modules/mycred-module-addons.php:158
4061
  msgid ""
4062
  "The <strong>buy</strong>CRED Add-on allows your users to buy points using "
4063
- "PayPal, Skrill (Moneybookers) or NETbilling. <strong>buy</strong>CRED can also "
4064
- "let your users buy points for other members."
4065
  msgstr ""
4066
  "La Extensión <strong>compra</strong>CRED permite que tus usuarios compren "
4067
  "puntos utilizando PayPal, Skrill (Moneybookers) o NETbilling. "
@@ -4073,12 +4534,14 @@ msgid ""
4073
  "The coupons add-on allows you to create coupons that users can use to add "
4074
  "points to their accounts."
4075
  msgstr ""
4076
- "Los cupones de add-on le permite crear cupones que los usuarios pueden utilizar "
4077
- "para agregar puntos a sus cuentas."
4078
 
4079
  #: ../modules/mycred-module-addons.php:180
4080
  msgid "Create email notices for any type of myCRED instance."
4081
- msgstr "Crea avisos por correo electrónico para cualquier tipo de instancias de myCRED."
 
 
4082
 
4083
  #: ../modules/mycred-module-addons.php:191
4084
  msgid ""
@@ -4087,9 +4550,9 @@ msgid ""
4087
  "Bookings: Event Espresso and Events Manager (free & pro)."
4088
  msgstr ""
4089
  "Permite que tus usuarios paguen utilizando el saldo de sus puntos "
4090
- "<strong>my</strong>CRED. Carritos soportados: WooCommerce, MarketPress and WP E-"
4091
- "Commerce. Reservas de Eventos soportados: Event Espresso and Events Manager "
4092
- "(gratis y pro)."
4093
 
4094
  #: ../modules/mycred-module-addons.php:202
4095
  msgid "Create pop-up notifications for when users gain or loose points."
@@ -4097,11 +4560,11 @@ msgstr "Crear notificaciones pop-up cuando los usuarios ganan o pierden puntos."
4097
 
4098
  #: ../modules/mycred-module-addons.php:214
4099
  msgid ""
4100
- "Create ranks for users reaching a certain number of %_plural% with the option "
4101
- "to add logos for each rank."
4102
  msgstr ""
4103
- "Crear rangos para los usuarios que alcanzan a un cierto número de %_plural% con "
4104
- "la opción de añadir logotipos para cada rango."
4105
 
4106
  #: ../modules/mycred-module-addons.php:225
4107
  msgid ""
@@ -4110,19 +4573,21 @@ msgid ""
4110
  "parts of your content allowing you to offer \"teasers\"."
4111
  msgstr ""
4112
  "Esta extensión permite que vendas posts, páginas o cualquier tipo de "
4113
- "publicación en tu sitio web. Puedes venter contenidos enteros o utilizando el "
4114
- "código corto (shortcode), vender partes de tu contenido permitiendote ofrecer "
4115
- "\"avances\"."
4116
 
4117
  #: ../modules/mycred-module-addons.php:236
4118
  msgid ""
4119
  "Allow your users to send or \"donate\" points to other members by either using "
4120
  "the mycred_transfer shortcode or the myCRED Transfer widget."
4121
  msgstr ""
4122
- "Permite que los usuarios envien o \"donen\" puntos a otros miembros utilizando el "
4123
- "código corto (shortcode) de mycred_transfer o el widget de Transferencia myCRED."
 
4124
 
4125
  #: ../modules/mycred-module-addons.php:272
 
4126
  msgid "%s Add-ons"
4127
  msgstr "%s Extensiones (addons)"
4128
 
@@ -4141,6 +4606,7 @@ msgstr ""
4141
  "técnicas."
4142
 
4143
  #: ../modules/mycred-module-addons.php:306
 
4144
  msgid "You can find more add-ons in our %s."
4145
  msgstr "Puedes encontrar más extensiones (add-ons) en nuestro %s."
4146
 
@@ -4181,6 +4647,7 @@ msgid "My History"
4181
  msgstr "Mi Historial"
4182
 
4183
  #: ../modules/mycred-module-buddypress.php:31
 
4184
  msgid "%s's History"
4185
  msgstr "La Historial de %s"
4186
 
@@ -4201,10 +4668,12 @@ msgid "BuddyPress"
4201
  msgstr "BuddyPress"
4202
 
4203
  #: ../modules/mycred-module-buddypress.php:389
 
4204
  msgid "%singular% Balance"
4205
  msgstr "%singular% Saldo"
4206
 
4207
  #: ../modules/mycred-module-buddypress.php:405
 
4208
  msgid "Members and visitors can other members %_singular% balance."
4209
  msgstr "Miembros y visitantes pueden ver el saldo de %_singular% de otros miembros."
4210
 
@@ -4227,6 +4696,7 @@ msgid "Title shown to me"
4227
  msgstr "Título mostrado a mi"
4228
 
4229
  #: ../modules/mycred-module-buddypress.php:445
 
4230
  msgid "Title shown to others. Use %s to show the first name."
4231
  msgstr "Título mostrado a otros. Utilice %s para mostrar el nombre de pila."
4232
 
@@ -4250,53 +4720,64 @@ msgstr "¡No utilice espacios vacíos!"
4250
  msgid "Number of history entries to show"
4251
  msgstr "Numero de entradas de historial a mostrar"
4252
 
4253
- #: ../modules/mycred-module-hooks.php:25 ../modules/mycred-module-hooks.php:26 ../modules/mycred-module-hooks.php:27
 
4254
  msgid "Hooks"
4255
  msgstr "Ganchos"
4256
 
4257
  #: ../modules/mycred-module-hooks.php:87
 
4258
  msgid "%plural% for registrations"
4259
  msgstr "%plural% por inscripciones"
4260
 
4261
  #: ../modules/mycred-module-hooks.php:88
 
4262
  msgid "Award %_plural% for users joining your website."
4263
  msgstr "Concede %_plural% a usuarios para unirse a tu sitio de web."
4264
 
4265
  #: ../modules/mycred-module-hooks.php:94
 
4266
  msgid "%plural% for logins"
4267
  msgstr "%plural% para ingresos"
4268
 
4269
  #: ../modules/mycred-module-hooks.php:95
 
4270
  msgid ""
4271
  "Award %_plural% for logging in to your website. You can also set an optional "
4272
  "limit."
4273
  msgstr ""
4274
- "Conceder %_plural% por iniciar sesión en tu sitio web. También puedes ajustar "
4275
- "un limíte opcional."
4276
 
4277
  #: ../modules/mycred-module-hooks.php:101
 
4278
  msgid "%plural% for publishing content"
4279
  msgstr "%plural% por publicar contenido"
4280
 
4281
  #: ../modules/mycred-module-hooks.php:102
 
4282
  msgid ""
4283
  "Award %_plural% for publishing content on your website. If your custom post "
4284
  "type is not shown bellow, make sure it is set to \"Public\"."
4285
  msgstr "Concede %_plural% por publicar contenido en tu sitio web. "
4286
 
4287
  #: ../modules/mycred-module-hooks.php:108
 
4288
  msgid "%plural% for comments"
4289
  msgstr "%plural% por comentarios"
4290
 
4291
  #: ../modules/mycred-module-hooks.php:108
 
4292
  msgid "%plural% for Disqus comments"
4293
  msgstr "%plural% por comentarios Disqus"
4294
 
4295
  #: ../modules/mycred-module-hooks.php:109
 
4296
  msgid "Award %_plural% for making comments."
4297
  msgstr "Concede %_plural% por hacer comentarios."
4298
 
4299
  #: ../modules/mycred-module-hooks.php:115
 
4300
  msgid "%plural% for clicking on links"
4301
  msgstr "%plural% por hacer clic sobre enlaces"
4302
 
@@ -4305,32 +4786,35 @@ msgid ""
4305
  "Award %_plural% to users who clicks on links generated by the [mycred_link] "
4306
  "shortcode."
4307
  msgstr ""
4308
- "Concede %_plural% a los usuarios que han hecho clic sobre enlaces generados por "
4309
- "el [mycred_link] código corto (shortcode)."
4310
 
4311
  #: ../modules/mycred-module-hooks.php:122
 
4312
  msgid "%plural% for viewing Videos"
4313
  msgstr "%plural% por ver videos"
4314
 
4315
  #: ../modules/mycred-module-hooks.php:123
4316
  msgid ""
4317
- "Award %_plural% to users who watches videos embedded using the [mycred_video] "
4318
- "shortcode."
4319
  msgstr ""
4320
- "Concede %_plural% a los usuarios que han visto videos incrustados utilizando el "
4321
- "[mycred_link] código corto (shortcode)."
4322
 
4323
  #: ../modules/mycred-module-hooks.php:129
 
4324
  msgid "%plural% for referrals"
4325
  msgstr "%plural% por referencias (o recomendaciones)"
4326
 
4327
  #: ../modules/mycred-module-hooks.php:130
4328
  msgid "Award %_plural% to users who refer either visitors and/or new member signups."
4329
  msgstr ""
4330
- "Concede %_plural% a los usuarios que o refieren visitantes y/o nuevos miembros "
4331
- "inscritos."
4332
 
4333
  #: ../modules/mycred-module-hooks.php:163
 
4334
  msgid "%s Hooks"
4335
  msgstr "Ganchos de %s"
4336
 
@@ -4339,26 +4823,64 @@ msgid ""
4339
  "Hooks are instances where %_plural% are awarded or deducted from a user, "
4340
  "depending on their actions around your website."
4341
  msgstr ""
4342
- "Ganchas son instancias donde %_plural% son concedidos (o restados) al usuario, "
4343
- "dependiendo de sus acciones en tu sitio web."
4344
-
4345
- #: ../modules/mycred-module-hooks.php:326 ../modules/mycred-module-hooks.php:638 ../modules/mycred-module-hooks.php:651 ../modules/mycred-module-hooks.php:687 ../modules/mycred-module-hooks.php:1067 ../modules/mycred-module-hooks.php:1084 ../modules/mycred-module-hooks.php:1101 ../modules/mycred-module-hooks.php:2212 ../modules/mycred-module-hooks.php:2241 ../plugins/mycred-hook-badgeOS.php:281 ../plugins/mycred-hook-bbPress.php:471 ../plugins/mycred-hook-bbPress.php:484 ../plugins/mycred-hook-bbPress.php:497 ../plugins/mycred-hook-bbPress.php:515 ../plugins/mycred-hook-bbPress.php:528 ../plugins/mycred-hook-bbPress.php:547 ../plugins/mycred-hook-bbPress.php:575 ../plugins/mycred-hook-buddypress-gallery.php:104 ../plugins/mycred-hook-buddypress-links.php:254 ../plugins/mycred-hook-buddypress-links.php:267 ../plugins/mycred-hook-buddypress-links.php:280 ../plugins/mycred-hook-buddypress-links.php:291 ../plugins/mycred-hook-buddypress-links.php:304 ../plugins/mycred-hook-buddypress-links.php:317 ../plugins/mycred-hook-buddypress-media.php:170 ../plugins/mycred-hook-buddypress-media.php:180 ../plugins/mycred-hook-buddypress-media.php:190 ../plugins/mycred-hook-buddypress-media.php:203 ../plugins/mycred-hook-buddypress-media.php:213 ../plugins/mycred-hook-buddypress-media.php:223 ../plugins/mycred-hook-buddypress.php:381 ../plugins/mycred-hook-buddypress.php:394 ../plugins/mycred-hook-buddypress.php:407 ../plugins/mycred-hook-buddypress.php:420 ../plugins/mycred-hook-buddypress.php:433 ../plugins/mycred-hook-buddypress.php:446 ../plugins/mycred-hook-buddypress.php:459 ../plugins/mycred-hook-buddypress.php:472 ../plugins/mycred-hook-buddypress.php:926 ../plugins/mycred-hook-buddypress.php:939 ../plugins/mycred-hook-buddypress.php:952 ../plugins/mycred-hook-buddypress.php:965 ../plugins/mycred-hook-buddypress.php:978 ../plugins/mycred-hook-buddypress.php:991 ../plugins/mycred-hook-buddypress.php:1005 ../plugins/mycred-hook-buddypress.php:1018 ../plugins/mycred-hook-buddypress.php:1031 ../plugins/mycred-hook-buddypress.php:1044 ../plugins/mycred-hook-contact-form7.php:137 ../plugins/mycred-hook-gravityforms.php:113 ../plugins/mycred-hook-invite-anyone.php:160 ../plugins/mycred-hook-invite-anyone.php:181 ../plugins/mycred-hook-jetpack.php:506 ../plugins/mycred-hook-jetpack.php:519 ../plugins/mycred-hook-simplepress.php:330 ../plugins/mycred-hook-simplepress.php:343 ../plugins/mycred-hook-simplepress.php:356 ../plugins/mycred-hook-simplepress.php:380
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
4346
  msgid "Log template"
4347
  msgstr "Plantilla de Registro"
4348
 
4349
- #: ../modules/mycred-module-hooks.php:527 ../modules/mycred-module-hooks.php:2220 ../modules/mycred-module-hooks.php:2249 ../plugins/mycred-hook-invite-anyone.php:165 ../plugins/mycred-hook-invite-anyone.php:186
 
 
4350
  msgid "Limit"
4351
  msgstr "Límite"
4352
 
4353
  #: ../modules/mycred-module-hooks.php:632
 
4354
  msgid "%plural% for Posts"
4355
  msgstr "%plural% por Posts"
4356
 
4357
  #: ../modules/mycred-module-hooks.php:645
 
4358
  msgid "%plural% for Pages"
4359
  msgstr "%plural% por Paginas"
4360
 
4361
  #: ../modules/mycred-module-hooks.php:681
 
4362
  msgid "%plural% for %s"
4363
  msgstr "%plural% por %s"
4364
 
@@ -4367,18 +4889,20 @@ msgid ""
4367
  "%plural% are only awarded when your website has been synced with the Disqus "
4368
  "server!"
4369
  msgstr ""
4370
- "¡%_plural% seran concedidos unicamente cuando tu sitio web se ha sincronizado "
4371
- "con el servidor de Disqus!"
4372
 
4373
  #: ../modules/mycred-module-hooks.php:1055
4374
  msgid "Approved Comment"
4375
  msgstr "Comentario Aprobado"
4376
 
4377
- #: ../modules/mycred-module-hooks.php:1058 ../modules/mycred-module-hooks.php:1075 ../modules/mycred-module-hooks.php:1092
 
4378
  msgid "Comment Author"
4379
  msgstr "Autor del Comentario"
4380
 
4381
- #: ../modules/mycred-module-hooks.php:1062 ../modules/mycred-module-hooks.php:1079 ../modules/mycred-module-hooks.php:1096
 
4382
  msgid "Content Author"
4383
  msgstr "Autor del Contenido"
4384
 
@@ -4414,7 +4938,9 @@ msgstr ""
4414
  "número ilimitado."
4415
 
4416
  #: ../modules/mycred-module-hooks.php:1122
4417
- msgid "%plural% is to be awarded even when comment authors reply to their own comment."
 
 
4418
  msgstr ""
4419
  "%_plural% seran concedidos incluso cuando los autores responden a su proprio "
4420
  "comentario."
@@ -4429,13 +4955,14 @@ msgstr "Una vez para cada id del enlace único "
4429
 
4430
  #: ../modules/mycred-module-hooks.php:1386
4431
  msgid ""
4432
- "The default amount to award for clicking on links. You can override this in the "
4433
- "shortcode."
4434
  msgstr ""
4435
  "La cantidad predefinida que sera cedida por hacer clic sobre enlaces. Puedes "
4436
  "anular esto con el 'shortcode' (código corto)."
4437
 
4438
  #: ../modules/mycred-module-hooks.php:1393
 
4439
  msgid "Custom tags: %url%, %title% or %id%."
4440
  msgstr "Etiquetas personalizadas: %url%, %title% o/u %id%."
4441
 
@@ -4446,8 +4973,9 @@ msgstr "¡Atención!"
4446
  #: ../modules/mycred-module-hooks.php:1404
4447
  msgid ""
4448
  "If no ID is set when using the mycred_link shortcode, the shortcode will "
4449
- "generate one automatically based on the value set under href. If you are using "
4450
- "this feature for \"sharing\" content, it is recommended that you limit by ID."
 
4451
  msgstr ""
4452
  "Si no se ha fijado ningun ID cuando estas utilizando el codigo corto "
4453
  "(shortcode) de mycred_link, se generará uno automaticamente basado sobre el "
@@ -4467,6 +4995,7 @@ msgid "Award Logic"
4467
  msgstr "Lógica de Concesión"
4468
 
4469
  #: ../modules/mycred-module-hooks.php:1738
 
4470
  msgid "Select when %_plural% should be awarded or deducted."
4471
  msgstr "Elige cuando %_plural% deberian ser concedidos o restados."
4472
 
@@ -4500,9 +5029,9 @@ msgstr ""
4500
 
4501
  #: ../modules/mycred-module-hooks.php:1758
4502
  msgid ""
4503
- "Do not set this value to zero! A lot of thing can happen while a user watches a "
4504
- "movie and sometimes a few seconds can drop of the counter due to buffering or "
4505
- "play back errors."
4506
  msgstr ""
4507
  "¡No fijes este valor a cero! Muchas cosas pueden suceder mientras que un "
4508
  "usuario ve una película y a veces la contador puede disminuir por pocos "
@@ -4565,8 +5094,8 @@ msgstr "Límite de IP"
4565
  #: ../modules/mycred-module-hooks.php:2290
4566
  msgid "The number of times each IP address grants %_plural%. Use zero for unlimited."
4567
  msgstr ""
4568
- "El numero de veces que cada IP concede %_plural%. Utilice cero para un número "
4569
- "ilimitado"
4570
 
4571
  #: ../modules/mycred-module-hooks.php:2294 ../modules/mycred-module-hooks.php:2327
4572
  msgid "BuddyPress Profile"
@@ -4578,12 +5107,12 @@ msgstr "Insertar enlace en el perfil del usuario"
4578
 
4579
  #: ../modules/mycred-module-hooks.php:2298
4580
  msgid ""
4581
- "Option to inser the referral link in users profiles. Links will only be visible "
4582
- "to users viewing their own profiles or administrators."
4583
  msgstr ""
4584
- "Opción para insertar el enlace de referencia en los perfiles de los usuarios. "
4585
- "Estos enlaces serán visibles a los administradores o a los usuarios cuando ven "
4586
- "a sus propios perfiles."
4587
 
4588
  #: ../modules/mycred-module-hooks.php:2304
4589
  msgid "Leave empty to hide."
@@ -4606,14 +5135,14 @@ msgid ""
4606
  "You can move around the referral link on your users profile by changing the "
4607
  "position. Increase to move up, decrease to move down."
4608
  msgstr ""
4609
- "Puedes moverte por el enlace de referencia en su perfil los usuarios cambiando "
4610
- "la posición. Aumentar a moverse hacia arriba, disminuye al bajar."
4611
 
4612
  #: ../modules/mycred-module-hooks.php:2323
4613
  msgid "You can not move the referral link above the users \"Base\" profile details!"
4614
  msgstr ""
4615
- "¡No puedes trasladar el enlace de referencia encima de los detalles \"Base\" en "
4616
- "el perfil del usuario!"
4617
 
4618
  #: ../modules/mycred-module-hooks.php:2329
4619
  msgid "Requires BuddyPress Extended Profiles to be enabled."
@@ -4623,7 +5152,8 @@ msgstr "Requiere que BuddyPress Extended Profiles sea activado."
4623
  msgid "Available Shortcodes"
4624
  msgstr "Códigos cortos Disponibles"
4625
 
4626
- #: ../modules/mycred-module-log.php:185 ../modules/mycred-module-log.php:206 ../modules/mycred-module-settings.php:61 ../modules/mycred-module-settings.php:102
 
4627
  msgid "Access denied for this action"
4628
  msgstr "Acceso denegado para esta acción"
4629
 
@@ -4643,7 +5173,8 @@ msgstr "Entrada Actualizada"
4643
  msgid "Entries"
4644
  msgstr "Entradas"
4645
 
4646
- #: ../modules/mycred-module-log.php:301 ../modules/mycred-module-log.php:381 ../modules/mycred-module-log.php:625 ../modules/mycred-module-settings.php:570
 
4647
  msgid "Export"
4648
  msgstr "Exportar"
4649
 
@@ -4652,6 +5183,7 @@ msgid "Search results for"
4652
  msgstr "Buscar entre resultados por"
4653
 
4654
  #: ../modules/mycred-module-log.php:375
 
4655
  msgid "%s Log"
4656
  msgstr "Registro de %s"
4657
 
@@ -4680,10 +5212,12 @@ msgid "Update Log Entry"
4680
  msgstr "Actualiza la entrada de registro"
4681
 
4682
  #: ../modules/mycred-module-log.php:619
 
4683
  msgid "My %s History"
4684
  msgstr "Mi Historial de %s"
4685
 
4686
- #: ../modules/mycred-module-settings.php:65 ../modules/mycred-module-settings.php:106 ../modules/mycred-module-settings.php:148
 
4687
  msgid "Missing point type"
4688
  msgstr "Falta el tipo de punto"
4689
 
@@ -4696,14 +5230,16 @@ msgid "No users found to export"
4696
  msgstr "No se encontro usuarios para exportar"
4697
 
4698
  #: ../modules/mycred-module-settings.php:330
 
4699
  msgid "%s Settings"
4700
  msgstr "Configuración de %s"
4701
 
4702
  #: ../modules/mycred-module-settings.php:333
 
4703
  msgid "Adjust your core or add-on settings. Follow us on: %s %s"
4704
  msgstr ""
4705
- "Ajusta las configuraciones basicos o las de las extensiones (addons). Síguenos "
4706
- "en: %s %s"
4707
 
4708
  #: ../modules/mycred-module-settings.php:338
4709
  msgid "Core Settings"
@@ -4714,6 +5250,7 @@ msgid "Name"
4714
  msgstr "Nombre"
4715
 
4716
  #: ../modules/mycred-module-settings.php:345
 
4717
  msgid "Accessible though the %singular% template tag."
4718
  msgstr "Acesible a través de la etiqueta de la plantilla del %singular%."
4719
 
@@ -4742,7 +5279,8 @@ msgid "Edit Settings"
4742
  msgstr "Editar las Configuraciones"
4743
 
4744
  #. or "Verificar la capacidad de"
4745
- #: ../modules/mycred-module-settings.php:380 ../modules/mycred-module-settings.php:385
 
4746
  msgid "Capability to check for."
4747
  msgstr "La capacidad que se va a verificar."
4748
 
@@ -4788,7 +5326,8 @@ msgstr "Exportar CSV"
4788
  msgid "Default"
4789
  msgstr "Predefinido"
4790
 
4791
- #: ../modules/mycred-module-settings.php:480 ../modules/mycred-module-settings.php:499 ../modules/mycred-module-settings.php:521
 
4792
  msgid "Meta Key"
4793
  msgstr "Clave Meta"
4794
 
@@ -4822,20 +5361,21 @@ msgstr "Ingreso de Usuario"
4822
 
4823
  #: ../modules/mycred-module-settings.php:562
4824
  msgid ""
4825
- "Use ID if you intend to use this export as a backup of your current site while "
4826
- "Email is recommended if you want to export to a different site."
4827
  msgstr ""
4828
- "Usa ID si deseas tener esta exportación como un respaldo de tu sitio, Usa Email "
4829
- "si deseas exportar la data a otro sitio"
4830
 
4831
  #: ../modules/mycred-module-settings.php:565
4832
  msgid "Import Log Entry"
4833
  msgstr "Importa la entrada de registro"
4834
 
4835
  #: ../modules/mycred-module-settings.php:567
 
4836
  msgid ""
4837
- "Optional log entry to use if you intend to import this file in a different %s "
4838
- "installation."
4839
  msgstr ""
4840
  "Usa la entrada de registro opcional si tiene la intención de importar este "
4841
  "fichero en otra instalación %s."
@@ -4853,10 +5393,13 @@ msgstr ""
4853
  "Estos ajustes pueden ser anulados para el tipo de logro individual."
4854
 
4855
  #: ../plugins/mycred-hook-badgeOS.php:98
4856
- msgid "Please setup your <a href=\"%s\">default settings</a> before using this feature."
 
 
 
4857
  msgstr ""
4858
- "Por favor configura tus <a href=\"%s\">configuraciones predefinidos</a> antes de "
4859
- "usar este función."
4860
 
4861
  #: ../plugins/mycred-hook-badgeOS.php:109 ../plugins/mycred-hook-badgeOS.php:111
4862
  msgid "%plural% to Award"
@@ -4872,6 +5415,7 @@ msgid "Deduction Log Template"
4872
  msgstr "Plantilla de Registro Descontado"
4873
 
4874
  #: ../plugins/mycred-hook-badgeOS.php:261
 
4875
  msgid "Default %s for %s"
4876
  msgstr "Predeterminar %s por %s"
4877
 
@@ -4888,50 +5432,65 @@ msgid "bbPress"
4888
  msgstr "bbPress"
4889
 
4890
  #: ../plugins/mycred-hook-bbPress.php:19
 
4891
  msgid "Awards %_plural% for bbPress actions."
4892
  msgstr "Concede %_plural% por acciones en bbPress."
4893
 
4894
  #: ../plugins/mycred-hook-bbPress.php:464
 
4895
  msgid "%plural% for New Forum"
4896
  msgstr "%plural% por nuevo foro"
4897
 
4898
  #: ../plugins/mycred-hook-bbPress.php:477
 
4899
  msgid "%plural% for Forum Deletion"
4900
  msgstr "%plural% por Eliminar Foro"
4901
 
4902
- #: ../plugins/mycred-hook-bbPress.php:490 ../plugins/mycred-hook-simplepress.php:323
 
 
4903
  msgid "%plural% for New Topic"
4904
  msgstr "%plural% por Nuevo Tema"
4905
 
4906
  #: ../plugins/mycred-hook-bbPress.php:504
 
4907
  msgid "Forum authors can receive %_plural% for creating new topics."
4908
  msgstr "Autores "
4909
 
4910
- #: ../plugins/mycred-hook-bbPress.php:508 ../plugins/mycred-hook-bbPress.php:568 ../plugins/mycred-hook-simplepress.php:336
 
 
4911
  msgid "%plural% for Topic Deletion"
4912
  msgstr "%plural% por Borrar Tema"
4913
 
4914
  #: ../plugins/mycred-hook-bbPress.php:521
 
4915
  msgid "%plural% for Favorited Topic"
4916
  msgstr "%plural% por Añadir Tema a tus \"Favoritos\""
4917
 
4918
- #: ../plugins/mycred-hook-bbPress.php:534 ../plugins/mycred-hook-bbPress.php:558 ../plugins/mycred-hook-buddypress.php:375 ../plugins/mycred-hook-simplepress.php:367
 
 
4919
  msgid "Daily Limit"
4920
  msgstr "Limite Diario"
4921
 
4922
- #: ../plugins/mycred-hook-bbPress.php:536 ../plugins/mycred-hook-bbPress.php:560 ../plugins/mycred-hook-simplepress.php:369
 
4923
  msgid "Use zero for unlimited"
4924
  msgstr "Ponga cero para ilimitado"
4925
 
4926
  #: ../plugins/mycred-hook-bbPress.php:540
 
4927
  msgid "%plural% for New Reply"
4928
  msgstr "%plural% por Nueva Respuesta"
4929
 
4930
  #: ../plugins/mycred-hook-bbPress.php:554
 
4931
  msgid "Topic authors can receive %_plural% for replying to their own Topic"
4932
  msgstr "Autor de la tema puede recibir %_plural% por responder a su propia Tema"
4933
 
4934
  #: ../plugins/mycred-hook-bbPress.php:564
 
4935
  msgid "Show users %_plural% balance in replies"
4936
  msgstr "Mostrar usuarios el saldo de %_plural% en las respuestas"
4937
 
@@ -4940,6 +5499,7 @@ msgid "BuddyPress: Gallery Actions"
4940
  msgstr "BuddyPress: Acciones sobre Galerías"
4941
 
4942
  #: ../plugins/mycred-hook-buddypress-gallery.php:20
 
4943
  msgid ""
4944
  "Awards %_plural% for creating a new gallery either using BP Album+ or BP "
4945
  "Gallery."
@@ -4948,6 +5508,7 @@ msgstr ""
4948
  "Gallery."
4949
 
4950
  #: ../plugins/mycred-hook-buddypress-gallery.php:97
 
4951
  msgid "%plural% for New Gallery"
4952
  msgstr "%plural% por Nueva Galería"
4953
 
@@ -4956,14 +5517,17 @@ msgid "BuddyPress: Links"
4956
  msgstr "BuddyPress: Enlaces"
4957
 
4958
  #: ../plugins/mycred-hook-buddypress-links.php:20
 
4959
  msgid "Awards %_plural% for link related actions."
4960
  msgstr "Concede %_plural% por acciones relacionados a enlaces."
4961
 
4962
  #: ../plugins/mycred-hook-buddypress-links.php:247
 
4963
  msgid "%plural% for New Links"
4964
  msgstr "%plural% por Nuevas Enlaces"
4965
 
4966
  #: ../plugins/mycred-hook-buddypress-links.php:260
 
4967
  msgid "%plural% for Vote on Link"
4968
  msgstr "%plural% por Votar sobre Enlaces"
4969
 
@@ -4980,10 +5544,12 @@ msgid "Vote Down"
4980
  msgstr "Votar en Contra "
4981
 
4982
  #: ../plugins/mycred-hook-buddypress-links.php:297
 
4983
  msgid "%plural% for Updating Links"
4984
  msgstr "%plural% por Actualizar Enlaces"
4985
 
4986
  #: ../plugins/mycred-hook-buddypress-links.php:310
 
4987
  msgid "%plural% for Deleting Links"
4988
  msgstr "%plural% por Borrar Enlaces"
4989
 
@@ -4992,6 +5558,7 @@ msgid "rtMedia Galleries"
4992
  msgstr "Galerías rtMedia (rtMedia Galleries)"
4993
 
4994
  #: ../plugins/mycred-hook-buddypress-media.php:19
 
4995
  msgid "Award / Deduct %_plural% for users creating albums or uploading new photos."
4996
  msgstr "Concede / Resta %_plural% a usuarios por crear álbumes o subir nuevos fotos."
4997
 
@@ -5032,6 +5599,7 @@ msgid "BuddyPress: Members"
5032
  msgstr "BuddyPress: Miembros"
5033
 
5034
  #: ../plugins/mycred-hook-buddypress.php:21
 
5035
  msgid "Awards %_plural% for profile related actions."
5036
  msgstr "Concede %_plural% por acciones relacionados al perfil."
5037
 
@@ -5040,6 +5608,7 @@ msgid "BuddyPress: Groups"
5040
  msgstr "BuddyPress: Grupos"
5041
 
5042
  #: ../plugins/mycred-hook-buddypress.php:29
 
5043
  msgid ""
5044
  "Awards %_plural% for group related actions. Use minus to deduct %_plural% or "
5045
  "zero to disable a specific hook."
@@ -5048,6 +5617,7 @@ msgstr ""
5048
  "sustraer %_plural% o cero para desabilitar un gancho especifico."
5049
 
5050
  #: ../plugins/mycred-hook-buddypress.php:369
 
5051
  msgid "%plural% for Profile Updates"
5052
  msgstr "%plural% por Actualizar Perfil"
5053
 
@@ -5056,34 +5626,42 @@ msgid "Daily limit. Use zero for unlimited."
5056
  msgstr "Limite Diario. Ponga cero para ilimitado."
5057
 
5058
  #: ../plugins/mycred-hook-buddypress.php:387
 
5059
  msgid "%plural% for New Avatar"
5060
  msgstr "%plural% por Nuevo Avatar"
5061
 
5062
  #: ../plugins/mycred-hook-buddypress.php:400
 
5063
  msgid "%plural% for New Friendships"
5064
  msgstr "%plural% por Nueva Amistad"
5065
 
5066
  #: ../plugins/mycred-hook-buddypress.php:413
 
5067
  msgid "%plural% for Leaving Friendship"
5068
  msgstr "%plural% por Dejar Amistad"
5069
 
5070
  #: ../plugins/mycred-hook-buddypress.php:426
 
5071
  msgid "%plural% for New Comment"
5072
  msgstr "%plural% por Nuevo Comentario"
5073
 
5074
  #: ../plugins/mycred-hook-buddypress.php:439
 
5075
  msgid "%plural% for Deleting Comment"
5076
  msgstr "%plural% por Borrar Comentario"
5077
 
5078
  #: ../plugins/mycred-hook-buddypress.php:452
 
5079
  msgid "%plural% for New Messages"
5080
  msgstr "%plural% por Nuevo Mensaje"
5081
 
5082
  #: ../plugins/mycred-hook-buddypress.php:465
 
5083
  msgid "%plural% for Sending Gift"
5084
  msgstr "%plural% por Enviar Regalo"
5085
 
5086
  #: ../plugins/mycred-hook-buddypress.php:912
 
5087
  msgid "%plural% for Creating Groups"
5088
  msgstr "%plural% por Creat Cupones"
5089
 
@@ -5104,26 +5682,32 @@ msgid "Use zero to award %_plural% when group is created."
5104
  msgstr "Ponga cero para %_plural% cuando se crea un grupo."
5105
 
5106
  #: ../plugins/mycred-hook-buddypress.php:932
 
5107
  msgid "%plural% for Deleting Groups"
5108
  msgstr "%plural% por Borrar Grupos"
5109
 
5110
  #: ../plugins/mycred-hook-buddypress.php:945
 
5111
  msgid "%plural% for New Forum Topic"
5112
  msgstr "%plural% por Nuevo Tema de Foro"
5113
 
5114
  #: ../plugins/mycred-hook-buddypress.php:958
 
5115
  msgid "%plural% for Editing Forum Topic"
5116
  msgstr "%plural% por Editar Tema de Foro"
5117
 
5118
  #: ../plugins/mycred-hook-buddypress.php:971
 
5119
  msgid "%plural% for New Forum Post"
5120
  msgstr "%plural% por Nueva Publicación en Foro"
5121
 
5122
  #: ../plugins/mycred-hook-buddypress.php:984
 
5123
  msgid "%plural% for Editing Forum Post"
5124
  msgstr "%plural% por Editar Publicación en Foro"
5125
 
5126
  #: ../plugins/mycred-hook-buddypress.php:997
 
5127
  msgid "%plural% for Joining Groups"
5128
  msgstr "%plural% por Unirse a Grupos"
5129
 
@@ -5136,14 +5720,17 @@ msgstr ""
5136
  "\"Unirse a Grupo\" sera desactivada."
5137
 
5138
  #: ../plugins/mycred-hook-buddypress.php:1011
 
5139
  msgid "%plural% for Leaving Groups"
5140
  msgstr "%plural% por Dejar Grupos"
5141
 
5142
  #: ../plugins/mycred-hook-buddypress.php:1024
 
5143
  msgid "%plural% for New Group Avatar"
5144
  msgstr "%plural% por Nuevo Avatar de Grupo"
5145
 
5146
  #: ../plugins/mycred-hook-buddypress.php:1037
 
5147
  msgid "%plural% for New Group Comment"
5148
  msgstr "%plural% por Nuevo Comentario Grupo"
5149
 
@@ -5152,12 +5739,14 @@ msgid "Contact Form 7 Form Submissions"
5152
  msgstr "Presentación Formulario de Contact Form 7"
5153
 
5154
  #: ../plugins/mycred-hook-contact-form7.php:19
 
5155
  msgid "Awards %_plural% for successful form submissions (by logged in users)."
5156
  msgstr ""
5157
  "Concede %_plural% por el exitoso envío del formulario (por usuarios que han "
5158
  "iniciado sesión)"
5159
 
5160
- #: ../plugins/mycred-hook-contact-form7.php:110 ../plugins/mycred-hook-gravityforms.php:86
 
5161
  msgid "No forms found."
5162
  msgstr "No se ha encontrado ningun formulario."
5163
 
@@ -5166,6 +5755,7 @@ msgid "Events Manager"
5166
  msgstr "Gestionamiento de Eventos"
5167
 
5168
  #: ../plugins/mycred-hook-events-manager-light.php:19
 
5169
  msgid "Awards %_plural% for users attending events."
5170
  msgstr "Concede %_plural% para usuarios que asistieron actividades o eventos."
5171
 
@@ -5182,10 +5772,11 @@ msgid "GD Star Rating"
5182
  msgstr "GD Star Rating"
5183
 
5184
  #: ../plugins/mycred-hook-gd-star-rating.php:19
 
5185
  msgid "Awards %_plural% for users rate items using the GD Star Rating plugin."
5186
  msgstr ""
5187
- "Concede %_plural% a usuarios que evaluan artículos a través de GD Star Rating "
5188
- "plugin."
5189
 
5190
  #: ../plugins/mycred-hook-gd-star-rating.php:103
5191
  msgid "Rating"
@@ -5202,6 +5793,7 @@ msgid "Gravityform Submissions"
5202
  msgstr "Entregas de Gravityform"
5203
 
5204
  #: ../plugins/mycred-hook-gravityforms.php:19
 
5205
  msgid "Awards %_plural% for successful form submissions."
5206
  msgstr "Concede %_plural% por el exitoso envío del formularios."
5207
 
@@ -5211,6 +5803,7 @@ msgid "Invite Anyone Plugin"
5211
  msgstr "Invite Anyone Plugin"
5212
 
5213
  #: ../plugins/mycred-hook-invite-anyone.php:19
 
5214
  msgid ""
5215
  "Awards %_plural% for sending invitations and/or %_plural% if the invite is "
5216
  "accepted."
@@ -5218,41 +5811,47 @@ msgstr ""
5218
  "Concede %_plural% por mandar invitaciones y/o %_plural% si se acepta la "
5219
  "invitación."
5220
 
5221
- #: ../plugins/mycred-hook-invite-anyone.php:153
 
5222
  msgid "%plural% for Sending An Invite"
5223
  msgstr "%plural% por Enviar una Invitación"
5224
 
5225
- #: ../plugins/mycred-hook-invite-anyone.php:169
5226
  msgid "Maximum number of invites that grants %_plural%. Use zero for unlimited."
5227
  msgstr ""
5228
  "El maximo numero de invitaciones que conceden %_plural%. Ponga cero para "
5229
  "ilimitado."
5230
 
5231
- #: ../plugins/mycred-hook-invite-anyone.php:173
 
5232
  msgid "%plural% for Accepting An Invite"
5233
  msgstr "%plural% por Aceptar una Invitación"
5234
 
5235
- #: ../plugins/mycred-hook-invite-anyone.php:177
 
5236
  msgid "%plural% for each invited user that accepts an invitation."
5237
  msgstr "%plural% por cada usuario invitado que acepta la invitación."
5238
 
5239
- #: ../plugins/mycred-hook-invite-anyone.php:190
5240
  msgid ""
5241
  "Maximum number of accepted invitations that grants %_plural%. Use zero for "
5242
  "unlimited."
5243
  msgstr ""
5244
- "El maximo numero de invitaciones acceptados que conceden %_plural%. Ponga cero "
5245
- "para ilimitado."
5246
 
5247
  #: ../plugins/mycred-hook-jetpack.php:18
5248
  msgid "Jetpack Subscriptions"
5249
  msgstr "Suscripciónes a Jetpack"
5250
 
5251
  #: ../plugins/mycred-hook-jetpack.php:19
5252
- msgid "Awards %_plural% for users signing up for site or comment updates using Jetpack."
 
 
 
5253
  msgstr ""
5254
- "Concede %_plural% a usuarios por incribirse a las actualizaciones del sitio web "
5255
- "o a los comentarios atraves de Jetpack."
5256
 
5257
  #: ../plugins/mycred-hook-jetpack.php:499
5258
  msgid "Site Subscriptions"
@@ -5267,18 +5866,22 @@ msgid "Simple:Press"
5267
  msgstr "Simple:Press"
5268
 
5269
  #: ../plugins/mycred-hook-simplepress.php:19
 
5270
  msgid "Awards %_plural% for Simple:Press actions."
5271
  msgstr "Concede %_plural% por acciones en Simple:Press."
5272
 
5273
  #: ../plugins/mycred-hook-simplepress.php:349
 
5274
  msgid "%plural% for New Topic Post"
5275
  msgstr "%plural% por Nueva Publicacion "
5276
 
5277
  #: ../plugins/mycred-hook-simplepress.php:363
 
5278
  msgid "Topic authors can receive %_plural% for posting on their own Topic"
5279
  msgstr "Autor de la tema puede recibir %_plural% por publicar su propia Tema"
5280
 
5281
  #: ../plugins/mycred-hook-simplepress.php:373
 
5282
  msgid "%plural% for Topic Post Deletion"
5283
  msgstr "%plural% por Borrar la Tema del Post"
5284
 
@@ -5287,6 +5890,7 @@ msgid "WP Favorite Posts"
5287
  msgstr "WP Favorite Posts"
5288
 
5289
  #: ../plugins/mycred-hook-wp-favorite-posts.php:19
 
5290
  msgid "Awards %_plural% for users adding posts to their favorites."
5291
  msgstr "Concede %_plural% a usuarios por añadir entradas a sus favoritos."
5292
 
@@ -5303,5 +5907,6 @@ msgid "WP-Polls"
5303
  msgstr "WP-Polls"
5304
 
5305
  #: ../plugins/mycred-hook-wp-polls.php:19
 
5306
  msgid "Awards %_plural% for users voting in polls."
5307
  msgstr "Concede %_plural% a usuarios que han votado en encuestas."
3
  "Project-Id-Version: myCRED\n"
4
  "Report-Msgid-Bugs-To: http://mycred.me\n"
5
  "POT-Creation-Date: 2014-03-20 14:26+0100\n"
6
+ "PO-Revision-Date: Wed Jun 11 2014 16:25:58 GMT+0200 (CEST)\n"
7
+ "Last-Translator: Gabriel <gabriel.s@merovingi.com>\n"
8
  "Language-Team: LANGUAGE <support@mycred.me>\n"
9
  "Language: Spanish\n"
10
  "Plural-Forms: nplurals=2; plural=n != 1\n"
14
  "X-Poedit-SourceCharset: UTF-8\n"
15
  "X-Generator: Loco - https://localise.biz/\n"
16
  "X-Poedit-Basepath: .\n"
17
+ "X-Poedit-KeywordsList: _:1;gettext:1;dgettext:2;ngettext:1,2;dngettext:2,3;"
18
+ "__:1;_e:1;_c:1;_n:1,2;_n_noop:1,2;_nc:1,2;__ngettext:1,2;__ngettext_noop:1,2;"
19
+ "_x:1,2c;_ex:1,2c;_nx:1,2,4c;_nx_noop:1,2,3c;_n_js:1,2;_nx_js:1,2,3c;"
20
+ "esc_attr__:1;esc_html__:1;esc_attr_e:1;esc_html_e:1;esc_attr_x:1,2c;"
21
+ "esc_html_x:1,2c;comments_number_link:2,3;t:1;st:1;trans:1;transChoice:1,2\n"
22
+ "X-Poedit-SearchPath-0: /Users/gabriel/Sites/paypana/wp-"
23
+ "content/plugins/mycred\n"
24
  "X-Poedit-SearchPath-1: .\n"
25
  "X-Loco-Target-Locale: es_ES"
26
 
27
+ #: ../mycred.php:400
28
  msgid "Balance"
29
  msgstr "Saldo"
30
 
31
+ #: ../mycred.php:425
32
  msgid "%label% History"
33
  msgstr "%lavel% Historial"
34
 
35
+ #: ../mycred.php:478
36
  msgid "No balances available."
37
  msgstr "No hay saldos disponibles."
38
 
39
+ #: ../mycred.php:524
40
+ #, php-format
41
  msgid "About %s"
42
  msgstr "Sobre"
43
 
44
+ #: ../mycred.php:533
45
  msgid "Awesome People"
46
  msgstr "Gente genial"
47
 
48
+ #: ../mycred.php:618 ../mycred.php:642 ../addons/ranks/myCRED-addon-ranks.php:230
49
+ #: ../addons/ranks/myCRED-addon-ranks.php:922 ../addons/sell-content/myCRED-addon-
50
+ #: sell-content.php:309 ../addons/transfer/myCRED-addon-transfer.php:132 ..
51
+ #: includes/mycred-shortcodes.php:535
52
  msgid "Processing..."
53
  msgstr "Procesando..."
54
 
55
+ #: ../mycred.php:619
56
  msgid ""
57
+ "Warning! All entries in your log will be permanently removed! This can not "
58
+ "be undone!"
59
  msgstr ""
60
+ "¡Aviso! Todas las entradas en su registro seran permanentemente borrado! "
61
+ "¡Esto no se puede deshacer!"
62
 
63
+ #: ../mycred.php:620
64
  msgid ""
65
  "All log entries belonging to deleted users will be permanently deleted! This "
66
  "can not be undone!"
67
  msgstr ""
68
+ "¡Todas las entradas de registro perteneciendo al usuario seran "
69
+ "permanentemente borradas! ¡Esto no se puede deshacer!"
70
 
71
+ #: ../mycred.php:621
72
  msgid "Warning! All user balances will be set to zero! This can not be undone!"
73
  msgstr ""
74
  "¡Aviso! ¡Todo los saldos del usuario seran puesto a cero! ¡Esto no se puede "
75
  "deshacer!"
76
 
77
+ #: ../mycred.php:622
78
  msgid "Done!"
79
  msgstr "¡Realizado!"
80
 
81
+ #: ../mycred.php:623 ../mycred.php:641 ../mycred.php:659
82
  msgid "Close"
83
  msgstr "Cerrar"
84
 
85
+ #: ../mycred.php:624
86
  msgid "Export users %plural%"
87
  msgstr "Exportar usuarios %plural%"
88
 
89
+ #: ../mycred.php:640
90
  msgid "Edit Users Balance"
91
  msgstr "Editar saldo del usuario"
92
 
93
+ #: ../mycred.php:658
94
  msgid "Edit Log Entry"
95
  msgstr "Edidar entrada de registro"
96
 
97
+ #: ../mycred.php:660
98
  msgid "Updating..."
99
  msgstr "Actualizando..."
100
 
101
+ #: ../mycred.php:662
102
  msgid "Are you sure you want to delete this log entry? This can not be undone!"
103
  msgstr ""
104
  "¿Esta seguro que quiere borrar esta entrada de registro? ¡Esto no se puede "
105
  "deshacer!"
106
 
107
+ #: ../mycred.php:663
108
  msgid "Log entry updated"
109
  msgstr "Entrada de registro actualizado"
110
 
111
+ #: ../mycred.php:715 ../mycred.php:736 ../addons/email-notices/myCRED-addon-email-
112
+ #: notices.php:738 ../addons/gateway/event-booking/mycred-eventsmanager-pro.php:
113
+ #: 458 ../addons/gateway/event-booking/mycred-eventsmanager.php:537
114
  msgid "Setup"
115
  msgstr "Configurar"
116
 
117
+ #: ../mycred.php:717 ../addons/gateway/carts/mycred-marketpress.php:360 ..
118
+ #: includes/mycred-network.php:186 ../modules/mycred-module-settings.php:20 ..
119
+ #: modules/mycred-module-settings.php:21 ../modules/mycred-module-settings.php:22
120
  msgid "Settings"
121
  msgstr "Configuraciones"
122
 
123
+ #: ../mycred.php:740 ../modules/mycred-module-addons.php:360
124
  msgid "About"
125
  msgstr "Acerca de"
126
 
127
+ #: ../mycred.php:741
128
  msgid "Tutorials"
129
  msgstr "Tutoriales"
130
 
131
+ #: ../mycred.php:742
132
  msgid "Codex"
133
  msgstr "Códice"
134
 
135
+ #: ../mycred.php:743
136
  msgid "Store"
137
  msgstr "Tienda"
138
 
139
+ #: ../mycred.php:757
140
  msgid ""
141
+ "Make sure to backup your database and files before updating, in case "
142
+ "anything goes wrong!"
143
  msgstr ""
144
  "Antes de actualizar, asegura crear copias de seguridad de su base de datos y "
145
  "archivo, por si acaso!"
152
  msgid "This Hook has no settings"
153
  msgstr "Este gancho no ha sido configurado"
154
 
155
+ #: ../abstracts/mycred-abstract-hook.php:157 ../modules/mycred-module-hooks.php:
156
+ #: 1192
157
  msgid "No limit"
158
  msgstr "Sin Limite"
159
 
173
  msgid "Once per day (reset at midnight)"
174
  msgstr "Una vez al dia (reinicializado al medianoche)"
175
 
176
+ #: ../abstracts/mycred-abstract-hook.php:168 ../addons/banking/abstracts/mycred-
177
+ #: abstract-service.php:342 ../addons/buy-creds/myCRED-addon-buy-creds.php:394 ..
178
+ #: addons/buy-creds/myCRED-addon-buy-creds.php:415 ../addons/buy-
179
+ #: creds/abstracts/mycred-abstract-payment-gateway.php:805 ../addons/buy-
180
+ #: creds/abstracts/mycred-abstract-payment-gateway.php:828 ../addons/buy-
181
+ #: creds/gateways/zombaio.php:375 ../addons/email-notices/myCRED-addon-email-
182
+ #: notices.php:193 ../addons/email-notices/myCRED-addon-email-notices.php:888
183
  msgid "Select"
184
  msgstr "Seleccionar"
185
 
187
  msgid "myCRED_Module() Error. A Module ID is required!"
188
  msgstr "Error de myCRED_Module(). ¡Se requiere una ID de Modulo!"
189
 
190
+ #: ../abstracts/mycred-abstract-module.php:343 ../abstracts/mycred-abstract-
191
+ #: module.php:351
192
  msgid "Surprise"
193
  msgstr "Sorpresa"
194
 
200
  msgid "click to open"
201
  msgstr "haga clic para abrir"
202
 
203
+ #: ../abstracts/mycred-abstract-module.php:472 ../addons/banking/myCRED-addon-
204
+ #: banking.php:163 ../addons/buy-creds/myCRED-addon-buy-creds.php:492
205
  msgid "Settings Updated"
206
  msgstr "Configuraciones Actualizadas"
207
 
208
+ #: ../addons/banking/myCRED-addon-banking.php:42 ../addons/banking/myCRED-addon-
209
+ #: banking.php:43 ../addons/banking/myCRED-addon-banking.php:44 ../modules/mycred-
210
+ #: module-addons.php:146
211
  msgid "Banking"
212
  msgstr "Banco"
213
 
216
  msgstr "Interés Compuesto"
217
 
218
  #: ../addons/banking/myCRED-addon-banking.php:104
219
+ #, php-format
220
  msgid ""
221
  "Apply an interest rate on your users %_plural% balances. Interest rate is "
222
  "annual and is compounded daily as long as this service is enabled. Positive "
223
+ "interest rate leads to users gaining %_plural% while a negative interest "
224
+ "rate will to users loosing %_plural%."
225
  msgstr ""
226
+ "Aplica una tasa de interés al saldo [.....] de sus usuarios. La tasa es "
227
+ "anual y es compuesto diariamente mientras que este servicio esta activada. "
228
+ "Un tipo de interés positiva causara a los usuarios a ganar [.....] mientras "
229
+ "que un tipo de interés negativa causara a los usuarios a perder %_plural%."
230
 
231
  #: ../addons/banking/myCRED-addon-banking.php:110
232
  msgid "Recurring Payouts"
233
  msgstr "Pagos Recurrentes"
234
 
235
  #: ../addons/banking/myCRED-addon-banking.php:111
236
+ #, php-format
237
  msgid ""
238
+ "Give your users %_plural% on a regular basis with the option to set the "
239
+ "number of times you want this payout to run (cycles)."
240
  msgstr ""
241
  "Da a tus usuarios %_plural% a intervalos regulares con la opción de ajustar "
242
  "cuantas vezes quieres que este pago se repita (ciclos)"
243
 
244
+ #: ../addons/banking/myCRED-addon-banking.php:156 ../addons/buy-creds/myCRED-
245
+ #: addon-buy-creds.php:477 ../addons/buy-creds/myCRED-addon-buy-creds.php:607 ..
246
+ #: includes/mycred-network.php:160 ../modules/mycred-module-addons.php:266 ..
247
+ #: modules/mycred-module-hooks.php:157 ../modules/mycred-module-log.php:322 ..
248
+ #: modules/mycred-module-log.php:575 ../modules/mycred-module-settings.php:312
249
  msgid "Access Denied"
250
  msgstr "Acceso Denegado"
251
 
252
  #: ../addons/banking/myCRED-addon-banking.php:167
253
+ #, php-format
254
  msgid "%s Banking"
255
  msgstr "%s Bancario"
256
 
257
+ #: ../addons/banking/myCRED-addon-banking.php:168 ../modules/mycred-module-addons.
258
+ #: php:147
259
  msgid "Setup recurring payouts or offer / charge interest on user account balances."
260
  msgstr ""
261
+ "Configura los pagos recurrentes u ofrecer / cobrar interés sobre los saldos "
262
+ "de las cuentas de usuarios."
263
 
264
  #: ../addons/banking/myCRED-addon-banking.php:171
265
  msgid "WP-Cron deactivation detected!"
269
  msgid "Warning! This add-on requires WP - Cron to work."
270
  msgstr "¡Aviso! Esta extensión requiere WP - Cron para funcionar."
271
 
272
+ #: ../addons/banking/myCRED-addon-banking.php:188 ../addons/buy-creds/myCRED-
273
+ #: addon-buy-creds.php:553 ../modules/mycred-module-hooks.php:182
274
  msgid "Enable"
275
  msgstr "Activar"
276
 
277
+ #: ../addons/banking/myCRED-addon-banking.php:201 ../modules/mycred-module-hooks.
278
+ #: php:197
279
  msgid "Update Changes"
280
  msgstr "Actualizar Cambios"
281
 
330
 
331
  #: ../addons/banking/services/mycred-bank-service-interest.php:288
332
  msgid "The interest rate can be either positive or negative and is compounded daily."
333
+ msgstr ""
334
+ "La tasa de interés puede ser o positivo o negativo y es compuesto "
335
+ "diariamente."
336
 
337
+ #: ../addons/banking/services/mycred-bank-service-interest.php:291 ..
338
+ #: addons/coupons/myCRED-addon-coupons.php:392
339
  msgid "Minimum Balance"
340
  msgstr "Saldo Minimo"
341
 
344
  msgstr "El minimo saldo necesario para aplicar una tasa de interés."
345
 
346
  #. can also be "Plantilla de Bitácora"
347
+ #: ../addons/banking/services/mycred-bank-service-interest.php:298 ..
348
+ #: addons/banking/services/mycred-bank-service-payouts.php:252 ../addons/buy-
349
+ #: creds/myCRED-addon-buy-creds.php:372 ../addons/buy-creds/myCRED-addon-buy-
350
+ #: creds.php:431 ../addons/coupons/myCRED-addon-coupons.php:440 ..
351
+ #: addons/gateway/carts/mycred-marketpress.php:384 ..
352
+ #: addons/gateway/carts/mycred-marketpress.php:417 ..
353
+ #: addons/gateway/carts/mycred-woocommerce.php:98 ../addons/gateway/carts/mycred-
354
+ #: woocommerce.php:164 ../addons/gateway/carts/mycred-wpecommerce.php:367 ..
355
+ #: modules/mycred-module-hooks.php:520 ../modules/mycred-module-hooks.php:1389 ..
356
+ #: modules/mycred-module-hooks.php:1729 ../plugins/mycred-hook-badgeOS.php:115 ..
357
+ #: plugins/mycred-hook-badgeOS.php:117 ../plugins/mycred-hook-badgeOS.php:126 ..
358
+ #: plugins/mycred-hook-events-manager-light.php:153 ../plugins/mycred-hook-
359
+ #: events-manager-light.php:166 ../plugins/mycred-hook-gd-star-rating.php:109 ..
360
+ #: plugins/mycred-hook-gd-star-rating.php:122 ../plugins/mycred-hook-wp-favorite-
361
+ #: posts.php:135 ../plugins/mycred-hook-wp-favorite-posts.php:148 ..
362
+ #: plugins/mycred-hook-wp-polls.php:136
363
  msgid "Log Template"
364
  msgstr "Plantilla de Registro"
365
 
366
+ #: ../addons/banking/services/mycred-bank-service-interest.php:305 ..
367
+ #: addons/banking/services/mycred-bank-service-payouts.php:259
368
  msgid "Run Time"
369
  msgstr "Tiempo de Ejecución"
370
 
371
+ #: ../addons/banking/services/mycred-bank-service-interest.php:309 ..
372
+ #: addons/banking/services/mycred-bank-service-payouts.php:263
373
  msgid ""
374
+ "For large websites, if you are running into time out issues during payouts, "
375
+ "you can set the number of seconds a process can run. Use zero for unlimited, "
376
+ "but be careful especially if you are on a shared server."
377
  msgstr ""
378
  "Para sitios web grandes, si tienes problemas de expiramiento durante pagos, "
379
+ "puedes ajustar cuantos segundos un proceso puede operar. Ponga cero si "
380
+ "quiere ilimitado, pero tenga cuidado especialmente si esta usando un "
381
+ "servidor compartido."
382
 
383
  #: ../addons/banking/services/mycred-bank-service-payouts.php:21
384
  msgid "Daily %_plural%"
392
  msgid "Pay Users"
393
  msgstr "Pagar a los Usuarios"
394
 
395
+ #: ../addons/banking/services/mycred-bank-service-payouts.php:222 ../addons/buy-
396
+ #: creds/myCRED-addon-buy-creds.php:657 ../addons/buy-creds/myCRED-addon-buy-
397
+ #: creds.php:1160 ../addons/buy-creds/abstracts/mycred-abstract-payment-gateway.
398
+ #: php:425 ../includes/mycred-admin.php:371 ../includes/mycred-admin.php:482
399
  msgid "Amount"
400
  msgstr "Cantidad"
401
 
403
  msgid "Can not be zero."
404
  msgstr "No puede ser cero."
405
 
406
+ #: ../addons/banking/services/mycred-bank-service-payouts.php:228 ..
407
+ #: addons/banking/services/mycred-bank-service-payouts.php:241 ../modules/mycred-
408
+ #: module-hooks.php:1744
409
  msgid "Interval"
410
  msgstr "Interval"
411
 
412
+ #: ../addons/banking/services/mycred-bank-service-payouts.php:233 ..
413
+ #: addons/banking/services/mycred-bank-service-payouts.php:242
414
  msgid "Cycles"
415
  msgstr "Ciclos"
416
 
425
  #: ../addons/banking/services/mycred-bank-service-payouts.php:241
426
  msgid ""
427
  "Select how often you want to award %_plural%. Note that when this service is "
428
+ "enabled, the first payout will be in the beginning of the next period. So "
429
+ "with a \"Daily\" interval, the first payout will occur first thing in the "
430
+ "morning."
431
  msgstr ""
432
  "Elige la frecuencia con cual quieres conceder %_plural%. Ten en cuenta que "
433
+ "cuando este servicio está activado, el primer pago se realizara al comienzo "
434
+ "del siguiente período. Así que con la frecuencia de \"Diario\", el primer pago "
435
+ "se realizará a primera hora de la mañana proxima."
436
 
437
  #: ../addons/banking/services/mycred-bank-service-payouts.php:242
438
  msgid ""
439
+ "Cycles let you choose how many intervals this service should run. Each time "
440
+ "a cycle runs, the value will decrease until it hits zero, in which case this "
441
  "service will deactivate itself. Use -1 to run unlimited times."
442
  msgstr ""
443
+ "Ciclos te permiten ajustar por cuantos intervalos este servicio debe "
444
+ "ejecutarse. Cada vez que se ejecuta un ciclo, el valor disminuirá hasta que "
445
+ "llegue a cero, en cuyo caso este servicio se desactivará a sí mismo. Utilice "
446
+ "-1 para que se ejecute ilimitadas veces."
447
 
448
  #: ../addons/banking/services/mycred-bank-service-payouts.php:243
449
  msgid "Important"
451
 
452
  #: ../addons/banking/services/mycred-bank-service-payouts.php:243
453
  msgid ""
454
+ "You can always stop payouts by deactivating this service. Just remember that "
455
+ "if you deactivate while there are cycles left, this service will continue on "
456
+ "when it gets re-activated. Set cycles to zero to reset."
457
  msgstr ""
458
  "Siempre se puede detener los desembolsos mediante la desactivación de este "
459
+ "servicio. Pero recuerda que si lo desactivas mientras que todavia quedan "
460
+ "ciclos para completar, este servicio volverá a continuar en cuando se vuelvá "
461
+ "a activar. Fija o configura los ciclos a cero para reiniciar.\n"
462
 
463
+ #: ../addons/banking/services/mycred-bank-service-payouts.php:245 ..
464
+ #: includes/mycred-install.php:559 ../modules/mycred-module-settings.php:393
465
  msgid "Excludes"
466
  msgstr "Excluye"
467
 
470
  "Comma separated list of user IDs to exclude from this service. No spaces "
471
  "allowed!"
472
  msgstr ""
473
+ "Lista separada por comas de los IDs de usuario para excluir de este servicio."
474
+ " ¡No se permiten espacios!"
475
 
476
+ #: ../addons/buy-creds/myCRED-addon-buy-creds.php:55 ../addons/buy-creds/myCRED-
477
+ #: addon-buy-creds.php:56 ../addons/buy-creds/myCRED-addon-buy-creds.php:57
478
  msgid "Payment Gateways"
479
  msgstr "Pasarela de Pago"
480
 
481
+ #: ../addons/buy-creds/myCRED-addon-buy-creds.php:192
482
  msgid "buyCRED Purchase Log"
483
  msgstr "compraCRED Registro de Compras"
484
 
485
+ #: ../addons/buy-creds/myCRED-addon-buy-creds.php:193 ../addons/buy-creds/myCRED-
486
+ #: addon-buy-creds.php:421 ../addons/buy-creds/myCRED-addon-buy-creds.php:488
487
  msgid "Purchase Log"
488
  msgstr "Registro de Compras"
489
 
490
+ #: ../addons/buy-creds/myCRED-addon-buy-creds.php:281 ../addons/gateway/event-
491
+ #: booking/mycred-eventespresso3.php:26 ../addons/gateway/event-booking/mycred-
492
+ #: eventsmanager-pro.php:475 ../addons/gateway/event-booking/mycred-eventsmanager.
493
+ #: php:540 ../addons/sell-content/myCRED-addon-sell-content.php:361
494
  msgid "Payments"
495
  msgstr "Pagos"
496
 
497
+ #: ../addons/buy-creds/myCRED-addon-buy-creds.php:311
498
  msgid "Please login to purchase %_plural%"
499
  msgstr "Identifícate antes de comprar %_plural%"
500
 
501
+ #: ../addons/buy-creds/myCRED-addon-buy-creds.php:326
502
+ #, php-format
503
  msgid "Gift purchase from %display_name%."
504
  msgstr "Regalo comprado de parte de %display_name%."
505
 
506
+ #: ../addons/buy-creds/myCRED-addon-buy-creds.php:344 ../addons/ranks/myCRED-
507
+ #: addon-ranks.php:649
508
  msgid "Minimum %plural%"
509
  msgstr "Minimo %_plural%"
510
 
511
+ #: ../addons/buy-creds/myCRED-addon-buy-creds.php:348
512
  msgid "Minimum amount of %plural% a user must purchase. Will default to 1."
513
  msgstr ""
514
+ "La mínima cantidad de %plural% que el usuario debe comprar. Sera predefinido "
515
+ "a 1."
516
+
517
+ #: ../addons/buy-creds/myCRED-addon-buy-creds.php:353 ../addons/coupons/myCRED-
518
+ #: addon-coupons.php:315 ../addons/gateway/carts/mycred-marketpress.php:378 ..
519
+ #: addons/gateway/carts/mycred-woocommerce.php:108 ..
520
+ #: addons/gateway/carts/mycred-wpecommerce.php:350 ../addons/gateway/event-
521
+ #: booking/mycred-eventespresso3.php:437 ../addons/gateway/event-booking/mycred-
522
+ #: eventsmanager-pro.php:463 ../addons/gateway/event-booking/mycred-eventsmanager.
523
+ #: php:550 ../addons/sell-content/myCRED-addon-sell-content.php:349 ..
524
+ #: includes/mycred-widgets.php:204 ../includes/mycred-widgets.php:401 ..
525
+ #: includes/importers/mycred-cubepoints.php:365
526
  msgid "Point Type"
527
  msgstr "Tipo de Puntos"
528
 
529
+ #: ../addons/buy-creds/myCRED-addon-buy-creds.php:365
530
  msgid "Login Template"
531
  msgstr "Plantilla de Ingreso"
532
 
533
+ #: ../addons/buy-creds/myCRED-addon-buy-creds.php:369
534
  msgid "Content to show when a user is not logged in."
535
  msgstr "Mostrar este contenido cuando un usuario no ha sido ingresado."
536
 
537
+ #: ../addons/buy-creds/myCRED-addon-buy-creds.php:379
538
  msgid "Thank You Page"
539
  msgstr "Página de Agradecimiento"
540
 
541
+ #: ../addons/buy-creds/myCRED-addon-buy-creds.php:382 ../addons/buy-creds/myCRED-
542
+ #: addon-buy-creds.php:403
543
  msgid "Custom URL"
544
  msgstr "URL Personalizada"
545
 
546
+ #: ../addons/buy-creds/myCRED-addon-buy-creds.php:387 ../addons/buy-creds/myCRED-
547
+ #: addon-buy-creds.php:408
548
  msgid "Page"
549
  msgstr "Página"
550
 
551
+ #: ../addons/buy-creds/myCRED-addon-buy-creds.php:400
552
  msgid "Cancellation Page"
553
  msgstr "Página de Cancelación"
554
 
555
+ #: ../addons/buy-creds/myCRED-addon-buy-creds.php:423
556
  msgid "Show seperate log for %_plural% purchases."
557
  msgstr "Mostrar registro distinto para compras de %_plural%."
558
 
559
+ #: ../addons/buy-creds/myCRED-addon-buy-creds.php:425
560
  msgid "Gifting"
561
  msgstr "Regalar"
562
 
563
+ #: ../addons/buy-creds/myCRED-addon-buy-creds.php:427
564
+ #, php-format
565
  msgid "Allow users to buy %_plural% for other users."
566
  msgstr "Prmita que usuarios compren %_plural% para otros usuarios."
567
 
568
+ #: ../addons/buy-creds/myCRED-addon-buy-creds.php:428
569
+ #, php-format
570
  msgid "Allow users to buy %_plural% for content authors."
571
  msgstr "Prmita que usuarios compren %_plural% para autores de contenido."
572
 
573
+ #: ../addons/buy-creds/myCRED-addon-buy-creds.php:488
574
+ #, php-format
575
  msgid "%s Payment Gateways"
576
  msgstr "%s Pasarelas de Pago"
577
 
578
+ #: ../addons/buy-creds/myCRED-addon-buy-creds.php:488 ../addons/buy-creds/myCRED-
579
+ #: addon-buy-creds.php:663
580
  msgid "buyCRED Settings"
581
  msgstr "Configuraciones de compraCRED"
582
 
583
+ #: ../addons/buy-creds/myCRED-addon-buy-creds.php:494
584
  msgid "Select the payment gateways you want to offer your users to buy %plural%."
585
  msgstr ""
586
  "Elige la pasarela de pago que quieres ofrecer a tus usuarios con que comprar "
587
  "%plural%."
588
 
589
+ #: ../addons/buy-creds/myCRED-addon-buy-creds.php:501
590
  msgid "Last Payment Notification"
591
  msgstr "Notificación de Pago Reciente"
592
 
593
+ #: ../addons/buy-creds/myCRED-addon-buy-creds.php:503
594
  msgid ""
595
  "Here you can view the last payment confirmation that was sent to buyCRED for "
596
  "processing."
598
  "Aquí puedes ver la confirmación del ultimo pago que fue enviado a compraCRED "
599
  "para su procesamiento."
600
 
601
+ #: ../addons/buy-creds/myCRED-addon-buy-creds.php:506
602
  msgid "Details"
603
  msgstr "Detalles"
604
 
605
+ #: ../addons/buy-creds/myCRED-addon-buy-creds.php:509 ../modules/mycred-module-
606
+ #: log.php:541
607
  msgid "Time"
608
  msgstr "Tiempo"
609
 
610
+ #: ../addons/buy-creds/myCRED-addon-buy-creds.php:513 ../addons/buy-creds/myCRED-
611
+ #: addon-buy-creds.php:654 ../includes/mycred-overview.php:166 ../includes/mycred-
612
+ #: overview.php:173 ../modules/mycred-module-addons.php:190
613
  msgid "Gateway"
614
  msgstr "Pasarela"
615
 
616
+ #: ../addons/buy-creds/myCRED-addon-buy-creds.php:517 ../addons/buy-creds/myCRED-
617
+ #: addon-buy-creds.php:659
618
  msgid "Transaction ID"
619
  msgstr "Identificación de la Transacción"
620
 
621
+ #: ../addons/buy-creds/myCRED-addon-buy-creds.php:521
622
  msgid "Outcome"
623
  msgstr "Resultado"
624
 
625
+ #: ../addons/buy-creds/myCRED-addon-buy-creds.php:525
626
  msgid "Gateway Log"
627
  msgstr "Registro de la Puerta de Enlace"
628
 
629
+ #: ../addons/buy-creds/myCRED-addon-buy-creds.php:533
630
  msgid "No recorded calls found."
631
  msgstr "No se ha encontrado ningunas llamadas grabadas."
632
 
633
+ #: ../addons/buy-creds/myCRED-addon-buy-creds.php:546
634
  msgid "Test Mode"
635
  msgstr "Modo de Prueba"
636
 
637
+ #: ../addons/buy-creds/myCRED-addon-buy-creds.php:548
638
  msgid "Enabled"
639
  msgstr "Habilitado"
640
 
641
  #. also, "Inhabilitar"
642
+ #: ../addons/buy-creds/myCRED-addon-buy-creds.php:551
643
  msgid "Disabled"
644
  msgstr "Deshactivado"
645
 
646
+ #: ../addons/buy-creds/myCRED-addon-buy-creds.php:561
647
  msgid "Sandbox Mode"
648
  msgstr "Modo Entorno Aislado"
649
 
650
+ #: ../addons/buy-creds/myCRED-addon-buy-creds.php:564
651
  msgid "Enable for test purchases."
652
  msgstr "Habilitar para compras de prueba."
653
 
654
+ #: ../addons/buy-creds/myCRED-addon-buy-creds.php:581
655
  msgid "Update Gateway Settings"
656
  msgstr "Actualizar Configuraciones de la Pasarela de Pago"
657
 
658
+ #: ../addons/buy-creds/myCRED-addon-buy-creds.php:655 ../addons/email-
659
+ #: notices/myCRED-addon-email-notices.php:786 ../addons/email-notices/myCRED-
660
+ #: addon-email-notices.php:915 ../includes/mycred-admin.php:477 ..
661
+ #: includes/mycred-log.php:639 ../modules/mycred-module-log.php:540
662
  msgid "User"
663
  msgstr "Usuario"
664
 
665
+ #: ../addons/buy-creds/myCRED-addon-buy-creds.php:656 ../includes/mycred-log.php:
666
+ #: 640
667
  msgid "Date"
668
  msgstr "Fecha"
669
 
670
+ #: ../addons/buy-creds/myCRED-addon-buy-creds.php:658
671
  msgid "Payed"
672
  msgstr "Pagado"
673
 
674
+ #: ../addons/buy-creds/myCRED-addon-buy-creds.php:663
675
  msgid "<strong>buy</strong>CRED Purchase Log"
676
  msgstr "Registro de Compras de <strong>compra</strong>CRED"
677
 
678
+ #: ../addons/buy-creds/myCRED-addon-buy-creds.php:663 ../addons/gateway/event-
679
+ #: booking/mycred-eventespresso3.php:367
680
  msgid "Gateway Settings"
681
  msgstr "Configuraciones de la Pasarela de Pago"
682
 
683
+ #: ../addons/buy-creds/myCRED-addon-buy-creds.php:667
684
  msgid ""
685
  "Only completed purchases are shown here. Purchases that were cancelled or "
686
  "failed are not logged."
690
  "\n"
691
  "\n"
692
 
693
+ #: ../addons/buy-creds/myCRED-addon-buy-creds.php:776 ../includes/mycred-log.php:
694
+ #: 743 ../modules/mycred-module-log.php:462
695
  msgid "User Missing"
696
  msgstr "Usuario Ausente"
697
 
698
+ #: ../addons/buy-creds/myCRED-addon-buy-creds.php:839 ../addons/sell-
699
+ #: content/myCRED-addon-sell-content.php:1112
700
  msgid "No purchases found"
701
  msgstr "No se encontro ninguna compra"
702
 
703
+ #: ../addons/buy-creds/myCRED-addon-buy-creds.php:911 ../addons/buy-creds/myCRED-
704
+ #: addon-buy-creds.php:1008
705
  msgid "This Add-on needs to setup before you can use this shortcode."
706
  msgstr ""
707
  "Esta extensión (add-on) debe ser configurado antes de poder usar este código "
708
  "corto (shortcode)."
709
 
710
+ #: ../addons/buy-creds/myCRED-addon-buy-creds.php:929 ../addons/buy-creds/myCRED-
711
+ #: addon-buy-creds.php:1026
712
  msgid "No gateways installed."
713
  msgstr "Ningun pasarela de pago instalado."
714
 
715
+ #: ../addons/buy-creds/myCRED-addon-buy-creds.php:930 ../addons/buy-creds/myCRED-
716
+ #: addon-buy-creds.php:1027
717
  msgid "Gateway does not exist."
718
  msgstr "Puerta de enlace no existe."
719
 
720
+ #: ../addons/buy-creds/myCRED-addon-buy-creds.php:966
721
  msgid "Yourself"
722
  msgstr "Tu mismo"
723
 
724
+ #: ../addons/buy-creds/myCRED-addon-buy-creds.php:1028
725
  msgid "No active gateways found."
726
  msgstr "No se encuentra ningun puerta de enlace activo."
727
 
728
+ #: ../addons/buy-creds/myCRED-addon-buy-creds.php:1029
729
  msgid "The selected gateway is not active."
730
  msgstr "La puerta de enlace seleccionada no esta activo."
731
 
732
+ #: ../addons/buy-creds/myCRED-addon-buy-creds.php:1065
733
+ #, php-format
734
  msgid "Buy with %gateway%"
735
  msgstr "Compra con %gateway%"
736
 
737
+ #: ../addons/buy-creds/myCRED-addon-buy-creds.php:1071 ../addons/sell-
738
+ #: content/myCRED-addon-sell-content.php:44
739
  msgid "Buy Now"
740
  msgstr "Compra Ahora"
741
 
742
+ #: ../addons/buy-creds/myCRED-addon-buy-creds.php:1111
743
  msgid "No users found"
744
  msgstr "Ningun Usuario Encontrado"
745
 
746
+ #: ../addons/buy-creds/myCRED-addon-buy-creds.php:1121
747
  msgid "To"
748
  msgstr "A"
749
 
750
+ #: ../addons/buy-creds/myCRED-addon-buy-creds.php:1138
751
  msgid "Select Amount"
752
  msgstr "Selecciona la Cantidad"
753
 
754
+ #: ../addons/buy-creds/myCRED-addon-buy-creds.php:1162
755
  msgid "min."
756
  msgstr "min."
757
 
758
+ #: ../addons/buy-creds/myCRED-addon-buy-creds.php:1170
759
  msgid "Select Gateway"
760
  msgstr "Selecciona la Pasarela de Pago"
761
 
762
  #: ../addons/buy-creds/abstracts/mycred-abstract-payment-gateway.php:89
763
+ msgid ""
764
+ "function myCRED_Payment_Gateway::process() must be over-ridden in a sub-"
765
+ "class."
766
+ msgstr ""
767
+ "La función myCRED_Payment_Gateway::process() debe ser anulado en un sub-"
768
+ "clase."
769
 
770
  #: ../addons/buy-creds/abstracts/mycred-abstract-payment-gateway.php:98
771
  msgid "function myCRED_Payment_Gateway::buy() must be over-ridden in a sub-class."
780
  msgstr "Se detectó una llamada entrante de la confirmación."
781
 
782
  #: ../addons/buy-creds/abstracts/mycred-abstract-payment-gateway.php:213
783
+ #, php-format
784
  msgid "Gateway identified itself as \"%s\""
785
  msgstr "Puerta de enlace se identifico como \"%s\""
786
 
793
  msgid "Test Payment"
794
  msgstr "Probar Pago"
795
 
796
+ #: ../addons/buy-creds/abstracts/mycred-abstract-payment-gateway.php:264 ..
797
+ #: addons/gateway/carts/mycred-marketpress.php:179
798
  msgid "Payment"
799
  msgstr "PAgo"
800
 
802
  msgid "Cancel purchase"
803
  msgstr "Cancelar la compra"
804
 
805
+ #: ../addons/buy-creds/abstracts/mycred-abstract-payment-gateway.php:360 ..
806
+ #: includes/mycred-admin.php:364 ../includes/mycred-admin.php:470
807
  msgid "required"
808
  msgstr "necesario"
809
 
810
+ #: ../addons/buy-creds/abstracts/mycred-abstract-payment-gateway.php:361 ..
811
+ #: includes/mycred-admin.php:366 ../includes/mycred-admin.php:472
812
  msgid "optional"
813
  msgstr "opcional"
814
 
849
  msgstr "Eliga el País"
850
 
851
  #: ../addons/buy-creds/abstracts/mycred-abstract-payment-gateway.php:419
852
+ #, php-format
853
  msgid "%s Purchase"
854
  msgstr "Compra %s"
855
 
856
+ #: ../addons/buy-creds/abstracts/mycred-abstract-payment-gateway.php:424 ..
857
+ #: addons/gateway/carts/mycred-wpecommerce.php:112
858
  msgid "Item"
859
  msgstr "Articulo"
860
 
868
 
869
  #: ../addons/buy-creds/abstracts/mycred-abstract-payment-gateway.php:448
870
  msgid ""
871
+ "Here you can see information that are collected and sent to this gateway. "
872
+ "Debug information is only visible for administrators and are intended for "
873
+ "troubleshooting / testing of this gateway. Please disable \"Sandbox Mode\" "
874
+ "when you want to take this gateway online."
875
  msgstr ""
876
  "Aquí se puede ver la información que se recoge y se envía a esta puerta de "
877
+ "enlace. La información de depuración sólo es visible para los "
878
+ "administradores y está disponible resolver problemas algunas / pruebar este "
879
+ "puerta de enlace. Por favor, desactivar \"Modo Entorno Aislado\" cuando se "
880
+ "quiere activar este portal y ponerlo online."
881
 
882
  #: ../addons/buy-creds/abstracts/mycred-abstract-payment-gateway.php:452
883
  msgid "Section"
900
  msgstr "Respuesta de la Pasarela de Pago"
901
 
902
  #: ../addons/buy-creds/abstracts/mycred-abstract-payment-gateway.php:513
903
+ #, php-format
904
  msgid "Continue to %s"
905
  msgstr "Continuar a %s"
906
 
907
+ #: ../addons/buy-creds/abstracts/mycred-abstract-payment-gateway.php:514 ..
908
+ #: addons/buy-creds/gateways/bitpay.php:240
909
  msgid "Click here if you are not automatically redirected"
910
  msgstr "Haga clic aqui si no se encuentra redirigida automáticamente"
911
 
941
  msgid "Duplicate transaction"
942
  msgstr "Transacción Duplicado"
943
 
944
+ #: ../addons/buy-creds/gateways/bitpay.php:25 ../addons/buy-
945
+ #: creds/gateways/netbilling.php:30 ../addons/buy-creds/gateways/paypal-standard.
946
+ #: php:25 ../addons/buy-creds/gateways/skrill.php:30
947
  msgid "Purchase of myCRED %plural%"
948
  msgstr "Compra de myCRED %plural%"
949
 
950
+ #: ../addons/buy-creds/gateways/bitpay.php:68 ../addons/buy-
951
+ #: creds/gateways/netbilling.php:102 ../addons/buy-creds/gateways/paypal-standard.
952
+ #: php:162 ../addons/buy-creds/gateways/skrill.php:134
953
  msgid "Sales Data is Valid"
954
  msgstr "Dato de Venta Invalido"
955
 
956
+ #: ../addons/buy-creds/gateways/bitpay.php:72 ../addons/buy-
957
+ #: creds/gateways/netbilling.php:106 ../addons/buy-creds/gateways/paypal-standard.
958
+ #: php:166 ../addons/buy-creds/gateways/skrill.php:138
959
  msgid "Failed to validate sale"
960
  msgstr "No pudo validar la venta"
961
 
962
+ #: ../addons/buy-creds/gateways/bitpay.php:78 ../addons/buy-
963
+ #: creds/gateways/netbilling.php:112 ../addons/buy-creds/gateways/paypal-standard.
964
+ #: php:172 ../addons/buy-creds/gateways/skrill.php:144 ../addons/buy-
965
+ #: creds/gateways/zombaio.php:166
966
  msgid "Failed to verify caller"
967
  msgstr "No se pudo verificar la llamada"
968
 
969
+ #: ../addons/buy-creds/gateways/bitpay.php:86 ../addons/buy-
970
+ #: creds/gateways/netbilling.php:120 ../addons/buy-creds/gateways/paypal-standard.
971
+ #: php:180 ../addons/buy-creds/gateways/skrill.php:152 ../addons/buy-
972
+ #: creds/gateways/zombaio.php:171
973
+ #, php-format
974
  msgid "Attempting to credit %s to users account"
975
  msgstr "Intentando creditar %s a la cuenta de usuario"
976
 
977
+ #: ../addons/buy-creds/gateways/bitpay.php:97 ../addons/buy-
978
+ #: creds/gateways/netbilling.php:132 ../addons/buy-creds/gateways/paypal-standard.
979
+ #: php:193 ../addons/buy-creds/gateways/skrill.php:164 ../addons/buy-
980
+ #: creds/gateways/zombaio.php:207
981
+ #, php-format
982
  msgid "%s was successfully credited to users account"
983
  msgstr "%s fue abonado con éxito a la cuenta del usuario"
984
 
985
+ #: ../addons/buy-creds/gateways/bitpay.php:104 ../addons/buy-
986
+ #: creds/gateways/netbilling.php:139 ../addons/buy-creds/gateways/paypal-standard.
987
+ #: php:200 ../addons/buy-creds/gateways/skrill.php:171 ../addons/buy-
988
+ #: creds/gateways/zombaio.php:214
989
  msgid "Failed to credit the users account"
990
  msgstr "No se ha podido acreditar la cuenta del usuario"
991
 
992
+ #: ../addons/buy-creds/gateways/bitpay.php:107 ../addons/buy-
993
+ #: creds/gateways/netbilling.php:142 ../addons/buy-creds/gateways/paypal-standard.
994
+ #: php:203 ../addons/buy-creds/gateways/skrill.php:174
995
  msgid "Purchase not paid"
996
  msgstr "Compra no pagado"
997
 
998
+ #: ../addons/buy-creds/gateways/bitpay.php:111 ../addons/buy-
999
+ #: creds/gateways/netbilling.php:146 ../addons/buy-creds/gateways/paypal-standard.
1000
+ #: php:207 ../addons/buy-creds/gateways/skrill.php:178 ../addons/buy-
1001
+ #: creds/gateways/zombaio.php:218
1002
  msgid "Hanging up on caller"
1003
  msgstr "Colgando al interlocutor"
1004
 
1005
+ #: ../addons/buy-creds/gateways/bitpay.php:175 ../addons/buy-
1006
+ #: creds/gateways/netbilling.php:173 ../addons/buy-creds/gateways/paypal-standard.
1007
+ #: php:237 ../addons/buy-creds/gateways/skrill.php:208 ../addons/buy-
1008
+ #: creds/gateways/zombaio.php:241
1009
  msgid "Please setup this gateway before attempting to make a purchase!"
1010
+ msgstr ""
1011
+ "¡Por favor configure esta puerta de enlace antes de intentar hacer una "
1012
+ "compra!"
1013
 
1014
+ #: ../addons/buy-creds/gateways/bitpay.php:226 ../addons/buy-
1015
+ #: creds/gateways/bitpay.php:235 ../addons/buy-creds/gateways/netbilling.php:224 .
1016
+ #: ./addons/buy-creds/gateways/paypal-standard.php:295 ../addons/buy-
1017
+ #: creds/gateways/skrill.php:301 ../addons/buy-creds/gateways/zombaio.php:271
1018
  msgid "Processing payment &hellip;"
1019
  msgstr "Procesando el pago &hellip;"
1020
 
1021
  #: ../addons/buy-creds/gateways/bitpay.php:228
1022
  msgid "Could not create a BitPay Invoice. Please contact the site administrator!"
1023
  msgstr ""
1024
+ "¡No se pudo crear una factura de BitPay. Por favor pongase en contacto con "
1025
+ "el administrador del sitio!"
1026
 
1027
  #: ../addons/buy-creds/gateways/bitpay.php:229
1028
  msgid "Bitpay returned the following error message:"
1040
  msgid "API Key"
1041
  msgstr "Clave de la API"
1042
 
1043
+ #: ../addons/buy-creds/gateways/bitpay.php:269 ../addons/buy-
1044
+ #: creds/gateways/paypal-standard.php:312 ../addons/buy-creds/gateways/skrill.php:
1045
+ #: 319
1046
  msgid "Currency"
1047
  msgstr "Moneda"
1048
 
1050
  msgid "Currency Code"
1051
  msgstr "Código de Moneda"
1052
 
1053
+ #: ../addons/buy-creds/gateways/bitpay.php:276 ../addons/buy-
1054
+ #: creds/gateways/netbilling.php:260 ../addons/buy-creds/gateways/paypal-standard.
1055
+ #: php:326 ../addons/buy-creds/gateways/skrill.php:339
1056
  msgid "Item Name"
1057
  msgstr "Nombre de Artículo"
1058
 
1059
+ #: ../addons/buy-creds/gateways/bitpay.php:280 ../addons/buy-
1060
+ #: creds/gateways/netbilling.php:264 ../addons/buy-creds/gateways/paypal-standard.
1061
+ #: php:330 ../addons/buy-creds/gateways/skrill.php:343
1062
  msgid "Description of the item being purchased by the user."
1063
  msgstr "Descripción del artículo que el usuario esta comprando."
1064
 
1065
+ #: ../addons/buy-creds/gateways/bitpay.php:283 ../addons/buy-
1066
+ #: creds/gateways/netbilling.php:267 ../addons/buy-creds/gateways/paypal-standard.
1067
+ #: php:333 ../addons/buy-creds/gateways/skrill.php:346
1068
+ #, php-format
1069
  msgid "%plural% Exchange Rate"
1070
  msgstr "%plural% Tipo de Cambio"
1071
 
1072
+ #: ../addons/buy-creds/gateways/bitpay.php:286 ../addons/buy-
1073
+ #: creds/gateways/paypal-standard.php:336 ../addons/buy-creds/gateways/skrill.php:
1074
+ #: 349
1075
  msgid "Select currency"
1076
  msgstr "Elige moneda"
1077
 
1095
  msgid "Full Notifications"
1096
  msgstr "Notificaciones Completas"
1097
 
1098
+ #: ../addons/buy-creds/gateways/bitpay.php:318 ../includes/mycred-network.php:196
1099
+ #: ../includes/mycred-network.php:210
1100
  msgid "No"
1101
  msgstr "No"
1102
 
1103
+ #: ../addons/buy-creds/gateways/bitpay.php:319 ../includes/mycred-network.php:192
1104
+ #: ../includes/mycred-network.php:206
1105
  msgid "Yes"
1106
  msgstr "Sí"
1107
 
1108
+ #: ../addons/buy-creds/gateways/netbilling.php:57 ../addons/buy-
1109
+ #: creds/gateways/skrill.php:89 ../addons/buy-creds/gateways/zombaio.php:103
1110
  msgid "Invalid Call"
1111
  msgstr "Llamada Invalida"
1112
 
1113
+ #: ../addons/buy-creds/gateways/netbilling.php:59 ../addons/buy-
1114
+ #: creds/gateways/skrill.php:91 ../addons/buy-creds/gateways/zombaio.php:105
1115
+ #, php-format
1116
  msgid "Caller verified as \"%s\""
1117
  msgstr "El llamador verificado como \"%s\""
1118
 
1139
  #: ../addons/buy-creds/gateways/netbilling.php:277
1140
  msgid ""
1141
  "For this gateway to work, you must login to your NETbilling account and edit "
1142
+ "your site. Under \"Default payment form settings\" make sure the Postback CGI "
1143
+ "URL is set to the above address and \"Return method\" is set to POST."
1144
  msgstr ""
1145
+ "Para que esta pasarela de pago funcione, deberia acceder a su cuenta "
1146
+ "NETbilling y editar su sitio web. En \"Configuración de Formularios "
1147
+ "Predefinido\" asegúrese de que la devolución de la URL CGI esta ajustada a la "
1148
+ "dirección indicada arriba y \"Método de Retorno\" está ajustado a POST."
1149
 
1150
  #: ../addons/buy-creds/gateways/netbilling.php:312
1151
  msgid "Incorrect Credit Card number"
1176
  msgstr "Conexión establecida"
1177
 
1178
  #: ../addons/buy-creds/gateways/paypal-standard.php:92
1179
+ #, php-format
1180
  msgid "Attempt: %d failed. Error: %s : %s"
1181
  msgstr "Intento: %d falló. Error: %s : %s"
1182
 
1183
  #: ../addons/buy-creds/gateways/paypal-standard.php:103
1184
+ #, php-format
1185
  msgid "Secondary systems failing. Final note: %s : %s"
1186
  msgstr "Sistema secundaria fallando. Nota final: %s : %s"
1187
 
1193
  msgid "Call rejected"
1194
  msgstr "Llamada rechazada"
1195
 
1196
+ #: ../addons/buy-creds/gateways/paypal-standard.php:223 ../addons/buy-
1197
+ #: creds/gateways/skrill.php:194
1198
  msgid "Success"
1199
  msgstr "Exito"
1200
 
1201
+ #: ../addons/buy-creds/gateways/paypal-standard.php:224 ../addons/buy-
1202
+ #: creds/gateways/skrill.php:195
1203
  msgid "Thank you for your purchase"
1204
  msgstr "Gracias por su compra"
1205
 
1206
+ #: ../addons/buy-creds/gateways/paypal-standard.php:290 ../addons/buy-
1207
+ #: creds/gateways/skrill.php:247
1208
  msgid "Return to "
1209
  msgstr "Volver a"
1210
 
1211
+ #: ../addons/buy-creds/gateways/paypal-standard.php:317 ../addons/buy-
1212
+ #: creds/gateways/skrill.php:376 ../addons/gateway/event-booking/mycred-
1213
+ #: eventespresso3.php:455
1214
  msgid "Important!"
1215
  msgstr "¡Importante!"
1216
 
1221
  "Accept each transaction!"
1222
  msgstr ""
1223
  "Asegura que eliges una moneda que tu cuenta de Paypal soporta. Si no, la "
1224
+ "transacción no sera aprobada hasta que ingresa en su cuenta de Paypal y "
1225
+ "accepta cada transacción."
1226
 
1227
  #: ../addons/buy-creds/gateways/paypal-standard.php:320
1228
  msgid "Account Email"
1235
  #: ../addons/buy-creds/gateways/paypal-standard.php:343
1236
  msgid ""
1237
  "For this gateway to work, you must login to your PayPal account and under "
1238
+ "\"Profile\" > \"Selling Tools\" enable \"Instant Payment Notifications\". Make "
1239
+ "sure the \"Notification URL\" is set to the above address and that you have "
1240
+ "selected \"Receive IPN messages (Enabled)\"."
1241
  msgstr ""
1242
+ "Para que esta pasarela de pago funcione, debes ingresar en tu cuenta de "
1243
+ "Paypal y en \"Perfil\" > \"Instrumentos de Venta\" activar \"Notificación de "
1244
+ "Pagos Instantaneos\". Asegura que la \"URL de Notifición\" esta ajustado a la "
1245
+ "dirección de arriba y que has seleccionado \"(Activar) Recibir mensajes IPN\"."
1246
 
1247
  #: ../addons/buy-creds/gateways/skrill.php:284
1248
  msgid "Product:"
1277
  #: ../addons/buy-creds/gateways/skrill.php:355
1278
  msgid "Ask Skrill to send me a confirmation email for each successful purchase."
1279
  msgstr ""
1280
+ "Pide a Skrill que me mande un email de confirmación para cada compra "
1281
+ "finalizada con éxito."
1282
 
1283
  #: ../addons/buy-creds/gateways/skrill.php:358
1284
  msgid "Checkout Page"
1285
  msgstr "Página de Pago"
1286
 
1287
+ #: ../addons/buy-creds/gateways/skrill.php:361 ../addons/gateway/carts/mycred-
1288
+ #: woocommerce.php:86 ../addons/ranks/myCRED-addon-ranks.php:792 ..
1289
+ #: addons/transfer/myCRED-addon-transfer.php:637 ../includes/mycred-widgets.php:
1290
+ #: 197 ../includes/mycred-widgets.php:395 ../includes/mycred-widgets.php:587 ..
1291
+ #: modules/mycred-module-hooks.php:2302
1292
  msgid "Title"
1293
  msgstr "Titulo"
1294
 
1295
  #: ../addons/buy-creds/gateways/skrill.php:363
1296
  msgid "If left empty, your account email is used as title on the Skill Payment Page."
1297
  msgstr ""
1298
+ "Si se deja vacío, el correo electrónico de su cuenta sera utilizada como "
1299
+ "título en la Página de Pagos Skrill. "
1300
 
1301
+ #: ../addons/buy-creds/gateways/skrill.php:366 ../addons/buy-
1302
+ #: creds/gateways/zombaio.php:306
1303
  msgid "Logo URL"
1304
  msgstr "URL del Logotipo"
1305
 
1306
  #: ../addons/buy-creds/gateways/skrill.php:368
1307
  msgid ""
1308
  "The URL to the image you want to use on the top of the gateway. For best "
1309
+ "integration results we recommend you use logos with dimensions up to 200px "
1310
+ "in width and 50px in height."
1311
  msgstr ""
1312
+ "La URL de la imagen que quieres usar en la encima de la pasarela de pago. "
1313
+ "Para obtener la mejor integración recomendamos que uses logotipos con "
1314
+ "dimensiones de hasta 200 píxeles de ancho y 50 px de altura."
1315
 
1316
  #: ../addons/buy-creds/gateways/skrill.php:371
1317
  msgid "Confirmation Note"
1319
 
1320
  #: ../addons/buy-creds/gateways/skrill.php:373
1321
  msgid ""
1322
+ "Optional text to show user once a transaction has been successfully "
1323
+ "completed. This text is shown by Skrill."
1324
  msgstr ""
1325
+ "Texto opcional a mostrar al usuario cuando la transacción haya sido "
1326
+ "completado con éxito. Este texto sera mostrado por Skrill."
1327
 
1328
  #: ../addons/buy-creds/gateways/skrill.php:377
1329
  msgid ""
1330
+ "By default all Skrill Merchant account accept payments via Bank Transfers. "
1331
+ "When a user selects this option, no %_plural% are awarded! You will need to "
1332
+ "manually award these once the bank transfer is completed."
1333
  msgstr ""
1334
+ "Por defecto todas las cuentas Mercantiles de Skrill acceptan pagos a través "
1335
+ "de transferencias bancarias. ¡Cuando un usuario elige esta opción, no se "
1336
+ "concede %_plural%! Tendras que concederlos manualmente una vez que se haya "
1337
+ "realizado la transferencia bancaria."
1338
 
1339
  #: ../addons/buy-creds/gateways/skrill.php:378
1340
  msgid ""
1341
  "By default purchases made using Skrill will result in users having to signup "
1342
+ "for a Skrill account (if they do not have one already). You can contact "
1343
+ "Skrill Merchant Services and request to disable this feature."
1344
  msgstr ""
1345
+ "En forma predeterminada las compras hechas a través de Skrill precisan que "
1346
+ "el usuario registre una cuenta de Skrill (si ya no la tiene). Puedes "
1347
+ "contactar a los Servicios Mercantiles de Skrill y pedir que desactiven esta "
1348
+ "caracteristica del proceso."
1349
 
1350
  #: ../addons/buy-creds/gateways/zombaio.php:154
1351
  msgid "Checking Transaction ID"
1394
  "For this gateway to work, login to ZOA and set the Postback URL to the above "
1395
  "address and click validate."
1396
  msgstr ""
1397
+ "Para que esta puerta de enlace funcione, ingrese en ZOA y ajuste la "
1398
+ "devolución de datos de la URL a la dirección que se encuentra arriba y haga "
1399
+ "clic sobre validar."
1400
 
1401
+ #: ../addons/coupons/myCRED-addon-coupons.php:86 ../addons/coupons/myCRED-addon-
1402
+ #: coupons.php:92 ../addons/coupons/myCRED-addon-coupons.php:438 ..
1403
+ #: includes/mycred-overview.php:188 ../includes/mycred-overview.php:195 ..
1404
+ #: modules/mycred-module-addons.php:168
1405
  msgid "Coupons"
1406
  msgstr "Cupones"
1407
 
1408
+ #: ../addons/coupons/myCRED-addon-coupons.php:87 ..
1409
+ #: addons/coupons/includes/mycred-coupon-shortcodes.php:69
1410
  msgid "Coupon"
1411
  msgstr "Cupón"
1412
 
1438
  msgid "No coupons found in Trash"
1439
  msgstr "Ningun Cupón Encontrado en Papelera"
1440
 
1441
+ #: ../addons/coupons/myCRED-addon-coupons.php:98 ../addons/email-notices/myCRED-
1442
+ #: addon-email-notices.php:161 ../addons/email-notices/myCRED-addon-email-notices.
1443
+ #: php:167 ../addons/email-notices/myCRED-addon-email-notices.php:173 ..
1444
+ #: addons/email-notices/myCRED-addon-email-notices.php:270 ../modules/mycred-
1445
+ #: module-addons.php:179
1446
  msgid "Email Notices"
1447
  msgstr "Avisos por Correo Electrónico"
1448
 
1449
+ #: ../addons/coupons/myCRED-addon-coupons.php:119 ../addons/coupons/myCRED-addon-
1450
+ #: coupons.php:122
1451
  msgid "Coupon updated."
1452
  msgstr "Cupón Actualizado"
1453
 
1471
  msgid "Coupon Code"
1472
  msgstr "Código de Cupón"
1473
 
1474
+ #: ../addons/coupons/myCRED-addon-coupons.php:157 ../addons/coupons/myCRED-addon-
1475
+ #: coupons.php:309
1476
  msgid "Value"
1477
  msgstr "Valor"
1478
 
1480
  msgid "Usage"
1481
  msgstr "Utilización"
1482
 
1483
+ #: ../addons/coupons/myCRED-addon-coupons.php:159 ../addons/transfer/myCRED-addon-
1484
+ #: transfer.php:243 ../modules/mycred-module-hooks.php:1106 ../modules/mycred-
1485
+ #: module-hooks.php:1396
1486
  msgid "Limits"
1487
  msgstr "imites"
1488
 
1494
  msgid "not yet used"
1495
  msgstr "todavia no utilizado"
1496
 
1497
+ #: ../addons/coupons/myCRED-addon-coupons.php:198 ../modules/mycred-module-hooks.
1498
+ #: php:1834
1499
  msgid "Total"
1500
  msgstr "Total"
1501
 
1512
  msgstr "Caducado"
1513
 
1514
  #: ../addons/coupons/myCRED-addon-coupons.php:213
1515
+ #, php-format
1516
  msgid "In %s time"
1517
  msgstr "En %s tiempo"
1518
 
1542
 
1543
  #: ../addons/coupons/myCRED-addon-coupons.php:324
1544
  msgid "Optional date when this coupon expires. Expired coupons will be trashed."
1545
+ msgstr ""
1546
+ "La fecha opcional cuando este cupón caduca. Cupones caducados seran "
1547
+ "destrozado."
1548
 
1549
  #: ../addons/coupons/myCRED-addon-coupons.php:353
1550
  msgid "Global Maximum"
1552
 
1553
  #: ../addons/coupons/myCRED-addon-coupons.php:356
1554
  msgid ""
1555
+ "The maximum number of times this coupon can be used. Note that the coupon "
1556
+ "will be automatically trashed once this maximum is reached!"
1557
  msgstr ""
1558
+ "El número máximo de veces que este cupón se puede utilizar. Ten en cuenta "
1559
+ "que el cupón será colocado en la papelera de forma automática una vez que se "
1560
  "alcanza este máximo!"
1561
 
1562
  #. not clear if this is referring to the maximum number of users or to the maximum "points" a user can have or accrue?
1570
 
1571
  #: ../addons/coupons/myCRED-addon-coupons.php:395
1572
  msgid ""
1573
+ "Optional minimum balance a user must have in order to use this coupon. Use "
1574
+ "zero to disable."
1575
  msgstr ""
1576
  "Mínimo saldo opcional que el usuario debe tener para utilizar este cupón. "
1577
  "Utilice cero para inhabilitar."
1582
 
1583
  #: ../addons/coupons/myCRED-addon-coupons.php:402
1584
  msgid ""
1585
+ "Optional maximum balance a user can have in order to use this coupon. Use "
1586
+ "zero to disable."
1587
  msgstr ""
1588
  "Saldo máximo opcional que un usuario puede tener para usar este cupón. Ponga "
1589
  "cero para desactivar."
1590
 
1591
  #: ../addons/coupons/myCRED-addon-coupons.php:444
1592
+ #, php-format
1593
  msgid ""
1594
  "Log entry for successful coupon redemption. Use %coupon% to show the coupon "
1595
  "code."
1596
  msgstr ""
1597
+ "Entrada del registro al exitoso canje del cupón. Utilice %coupon% para "
1598
+ "mostrar el código del cupón."
1599
 
1600
  #: ../addons/coupons/myCRED-addon-coupons.php:447
1601
  msgid "Invalid Coupon Message"
1627
 
1628
  #: ../addons/coupons/myCRED-addon-coupons.php:472
1629
  msgid ""
1630
+ "Message to show when a user does not meet the minimum balance requirement. "
1631
+ "(if used)"
1632
  msgstr ""
1633
+ "Mostrar mensaje cuando el usuario no cumple con el saldo mínimo requerido. "
1634
+ "(si se utiliza)"
1635
 
1636
  #: ../addons/coupons/myCRED-addon-coupons.php:475
1637
  msgid "Maximum Balance Message"
1639
 
1640
  #: ../addons/coupons/myCRED-addon-coupons.php:479
1641
  msgid ""
1642
+ "Message to show when a user does not meet the maximum balance requirement. "
1643
+ "(if used)"
1644
  msgstr ""
1645
+ "Mostrar mensaje cuando un usuario no alcanza el saldo máximo requerido. (si "
1646
+ "se utiliza)"
1647
 
1648
  #: ../addons/coupons/myCRED-addon-coupons.php:482
1649
  msgid "Success Message"
1661
  msgid "Apply Coupon"
1662
  msgstr "Aplica el Cupón"
1663
 
1664
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:162 ../addons/email-
1665
+ #: notices/myCRED-addon-email-notices.php:1138
1666
  msgid "Email Notice"
1667
  msgstr "Aviso por Correo Electrónico"
1668
 
1669
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:163 ..
1670
+ #: addons/ranks/myCRED-addon-ranks.php:248
1671
  msgid "Add New"
1672
  msgstr "Añade Nuevo"
1673
 
1674
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:164
1675
  msgid "Add New Notice"
1676
  msgstr "Añade Nueva Notificación"
1677
 
1678
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:165
1679
  msgid "Edit Notice"
1680
  msgstr "Editar Aviso"
1681
 
1682
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:166
1683
  msgid "New Notice"
1684
  msgstr "Nuevo Aviso"
1685
 
1686
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:168
1687
  msgid "View Notice"
1688
  msgstr "Ver Aviso"
1689
 
1690
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:169
1691
  msgid "Search Email Notices"
1692
  msgstr "Búsqueda de Avisos por Correo Electrónico"
1693
 
1694
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:170
1695
  msgid "No email notices found"
1696
  msgstr "Ningun aviso por correo electrónico encontrado"
1697
 
1698
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:171
1699
  msgid "No email notices found in Trash"
1700
  msgstr "Ningun aviso por correo electrónico encontrado en la papelera"
1701
 
1702
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:195 ..
1703
+ #: addons/gateway/carts/mycred-wpecommerce.php:337 ../includes/mycred-functions.
1704
+ #: php:589
1705
  msgid "General"
1706
  msgstr "General"
1707
 
1708
  #. can also be users as in plural, I've assumed it is user singular with a missing apostrophe
1709
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:196
1710
  msgid "users balance changes"
1711
  msgstr "el saldo de usuario cambia"
1712
 
1713
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:197
1714
  msgid "user gains %_plural%"
1715
  msgstr "usuario gana %_plural%"
1716
 
1717
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:198
1718
  msgid "user lose %_plural%"
1719
  msgstr "usuario pierde %_plural%"
1720
 
1721
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:199
1722
  msgid "users balance reaches zero"
1723
  msgstr "saldo de usuario llega a cero"
1724
 
1725
  #. can also be users as in plural, I've assumed it is user singular with a missing apostrophe
1726
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:200
1727
  msgid "users balance goes minus"
1728
  msgstr "el saldo de usuario cae a negativo"
1729
 
1730
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:206
1731
  msgid "Sell Content Add-on"
1732
  msgstr "Extensión para Vender Contenido"
1733
 
1734
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:207
1735
  msgid "user buys content"
1736
  msgstr "usuario compra contenido"
1737
 
1738
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:208
1739
  msgid "authors content gets sold"
1740
  msgstr "el contenido del autor sera vendido"
1741
 
1742
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:215
1743
  msgid "buyCREDs Add-on"
1744
  msgstr "Extensión de compraCREDs"
1745
 
1746
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:216
1747
  msgid "user buys %_plural%"
1748
  msgstr "usuario compra %_plural%"
1749
 
1750
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:223
1751
  msgid "Transfer Add-on"
1752
  msgstr "Extensión de Transferencias"
1753
 
1754
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:224
1755
  msgid "user sends %_plural%"
1756
  msgstr "usuario manda %_plural%"
1757
 
1758
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:225
1759
  msgid "user receives %_plural%"
1760
  msgstr "usuario recibe %_plural%"
1761
 
1762
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:232
1763
  msgid "Ranks Add-on"
1764
  msgstr "Extensión de Rangos"
1765
 
1766
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:233
1767
  msgid "user is demoted"
1768
  msgstr "se ha degrado al usuario"
1769
 
1770
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:234
1771
  msgid "user is promoted"
1772
  msgstr "se ha promovido al usuario"
1773
 
1774
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:272
1775
  msgid ""
1776
  "Settings that apply to all email notices and can not be overridden for "
1777
  "individual emails."
1778
  msgstr ""
1779
+ "Ajustes que se aplica a todos los correos electrónicos y que no seran "
1780
+ "anulados para correos electronicos especificos."
1781
 
1782
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:273
1783
  msgid "Email Format"
1784
  msgstr "Formato de Correo Electrónico"
1785
 
1786
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:277
1787
  msgid "Plain text emails only."
1788
  msgstr "Correo electrónico usando texto sin formato."
1789
 
1790
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:281
1791
  msgid "HTML or Plain text emails."
1792
  msgstr "Correo electrónico usando HTML o texto sin formato."
1793
 
1794
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:284
1795
  msgid "Filters"
1796
  msgstr "Filtros"
1797
 
1798
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:288
1799
  msgid ""
1800
+ "Allow WordPress and Third Party Plugins to filter the email subject before "
1801
+ "an email is sent."
1802
  msgstr ""
1803
+ "Permite a Wordpress y a los Plugins de terceros a filtrar el asunto del "
1804
+ "correo electrónico antes de enviarlo."
1805
 
1806
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:292
1807
  msgid ""
1808
+ "Allow WordPress and Third Party Plugins to filter the email content before "
1809
+ "an email is sent."
1810
  msgstr ""
1811
  "Permite a Wordpress y a los Plugins de terceros a filtrar el contenido del "
1812
  "correo electrónico antes de enviarlo."
1813
 
1814
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:297 ../addons/email-
1815
+ #: notices/myCRED-addon-email-notices.php:303
1816
+ msgid "Email Schedule"
1817
+ msgstr ""
1818
+
1819
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:299
1820
+ msgid "WordPress Cron is disabled. Emails will be sent immediately."
1821
+ msgstr ""
1822
+
1823
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:307
1824
+ msgid "Send emails immediately"
1825
+ msgstr ""
1826
+
1827
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:311
1828
+ msgid "Send emails once an hour"
1829
+ msgstr ""
1830
+
1831
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:315
1832
+ msgid "Send emails once a day"
1833
+ msgstr ""
1834
+
1835
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:318
1836
+ msgid "Subscriptions"
1837
+ msgstr ""
1838
+
1839
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:320
1840
+ #, php-format
1841
+ msgid ""
1842
+ "Use the %s shortcode to allow users to subscribe / unsubscribe to email "
1843
+ "updates."
1844
+ msgstr ""
1845
+
1846
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:325
1847
+ msgid "SMTP Override"
1848
+ msgstr ""
1849
+
1850
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:329
1851
+ msgid ""
1852
+ "SMTP Debug. Enable if you are experiencing issues with wp_mail() or if you "
1853
+ "use a SMTP plugin for emails."
1854
+ msgstr ""
1855
+
1856
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:332
1857
  msgid ""
1858
  "Default email settings. These settings can be individually overridden when "
1859
  "editing emails."
1860
  msgstr ""
1861
+ "Configuraciones predeterminadas para correos electrónicos. Estos ajustes "
1862
+ "pueden ser anulado individualmente cuando se edita correos electrónicos."
1863
 
1864
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:333 ../addons/email-
1865
+ #: notices/myCRED-addon-email-notices.php:802
1866
  msgid "Email Settings"
1867
  msgstr "Configuracion de Correo Electrónico"
1868
 
1869
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:336 ../addons/email-
1870
+ #: notices/myCRED-addon-email-notices.php:925
1871
  msgid "Senders Name:"
1872
  msgstr "Nombre del Remitente"
1873
 
1874
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:340 ../addons/email-
1875
+ #: notices/myCRED-addon-email-notices.php:927
1876
  msgid "Senders Email:"
1877
  msgstr "Correo Electrónico del Remitente:"
1878
 
1879
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:344
1880
  msgid "Reply-To:"
1881
  msgstr "Responder-A:"
1882
 
1883
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:348
1884
  msgid "Default Email Content"
1885
  msgstr "Contenido de Correo Electrónico Predefinido"
1886
 
1887
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:352
1888
  msgid "Default email content."
1889
  msgstr "Contenido de correo electrónico predefinido."
1890
 
1891
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:355
1892
  msgid "Default Email Styling"
1893
  msgstr "Estilo de Correo Electrónico Predefinido"
1894
 
1895
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:359
1896
  msgid "Ignored if HTML is not allowed in emails."
1897
  msgstr "Sera ignorado si no se permite HTML en los correos electrónicos."
1898
 
1899
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:736 ../addons/email-
1900
+ #: notices/myCRED-addon-email-notices.php:851
1901
  msgid "Email Subject"
1902
  msgstr "Asunto del Correo Electrónico"
1903
 
1904
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:737
1905
  msgid "Status"
1906
  msgstr "Estatus"
1907
 
1908
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:757
1909
  msgid "Not Active"
1910
  msgstr "No esta Activo"
1911
 
1912
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:759
1913
+ #, php-format
1914
  msgid "Scheduled:<br /><strong>%1$s</strong>"
1915
  msgstr "Programada:<br /><strong>%1$s</strong>"
1916
 
1917
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:763
1918
  msgid "Active"
1919
  msgstr "Activo"
1920
 
1921
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:765
1922
+ #, php-format
1923
  msgid "Active - Last run:<br /><strong>%1$s</strong>"
1924
  msgstr "Activo - Ultima ejecución:<br /><strong>%1$s</strong>"
1925
 
1926
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:775
1927
  msgid "Email is sent when"
1928
  msgstr "el Correo Electrónico se envia cuando"
1929
 
1930
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:777
1931
  msgid "Missing instance for this notice!"
1932
  msgstr "¡Falta una instancia para este aviso!"
1933
 
1934
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:786 ../addons/email-
1935
+ #: notices/myCRED-addon-email-notices.php:788 ../addons/email-notices/myCRED-
1936
+ #: addon-email-notices.php:790
1937
  msgid "Sent To"
1938
  msgstr "Enviado A:"
1939
 
1940
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:788 ../addons/email-
1941
+ #: notices/myCRED-addon-email-notices.php:916
1942
  msgid "Administrator"
1943
  msgstr "Administrador"
1944
 
1945
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:790
1946
  msgid "Both Administrator and User"
1947
  msgstr "Tanto Administrador como Usuario"
1948
 
1949
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:811
1950
  msgid "Available Template Tags"
1951
  msgstr "Etiquetas (tags) de Plantilla Disponibles"
1952
 
1953
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:822
1954
  msgid "Email Header"
1955
  msgstr "Encabezado del Correo Electrónico"
1956
 
1957
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:882
1958
  msgid "Send this email notice when..."
1959
  msgstr "Envia este aviso por correo electrónico cuando..."
1960
 
1961
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:913
1962
  msgid "Recipient:"
1963
  msgstr "Destinatario:"
1964
 
1965
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:917
1966
  msgid "Both"
1967
  msgstr "Ambos"
1968
 
1969
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:921 ..
1970
+ #: addons/gateway/carts/mycred-woocommerce.php:148 ../modules/mycred-module-
1971
+ #: settings.php:484 ../modules/mycred-module-settings.php:503 ../modules/mycred-
1972
+ #: module-settings.php:526
1973
+ msgid "Label"
1974
+ msgstr "Etiqueta"
1975
+
1976
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:929
1977
  msgid "Reply-To Email:"
1978
  msgstr "Responder-A Correo Electrónico:"
1979
 
1980
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:935
1981
  msgid "Save"
1982
  msgstr "Guardar"
1983
 
1984
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:947
1985
  msgid "CSS Styling"
1986
  msgstr "Estilo CSS"
1987
 
1988
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:963
1989
  msgid "Site Related"
1990
  msgstr "Relacionado al Sitio"
1991
 
1992
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:964
1993
  msgid "Your websites title"
1994
  msgstr "Titulo de tu pagina web"
1995
 
1996
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:965
1997
  msgid "Your websites address"
1998
  msgstr "Dirección de tu pagina web"
1999
 
2000
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:966
2001
  msgid "Your websites tagline (description)"
2002
  msgstr "La descripción de tu sitio web (lema o eslogan)"
2003
 
2004
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:967
2005
  msgid "Your websites admin email"
2006
  msgstr "El correo electrónico de admin para tu pagina web"
2007
 
2008
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:968
2009
  msgid "Total number of blog members"
2010
  msgstr "Número total de miembros del blog"
2011
 
2012
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:1046 ../addons/email-
2013
+ #: notices/myCRED-addon-email-notices.php:1049
2014
+ #, php-format
2015
  msgid "Email Notice Updated. View <a href=\"%1$s\">All Notices</a>."
2016
  msgstr "Aviso de Email Actualizado. Ver <a href=\"%1$s\">Todos los Avisos</a>."
2017
 
2018
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:1051
2019
  msgid "Email Notice Activated"
2020
  msgstr "Notificación atraves de Correo Electrónico Activado"
2021
 
2022
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:1052
2023
  msgid "Email Notice Saved"
2024
  msgstr "Aviso por Correo Electrónico Guardado"
2025
 
2026
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:1053
2027
+ #, php-format
2028
  msgid "Email Notice Submitted for approval. View <a href=\"%1$s\">All Notices</a>."
2029
+ msgstr ""
2030
+ "Aviso de Email Enviado para aprobación. Ver <a href=\"%1$s\">Todos los "
2031
+ "Avisos</a>."
2032
 
2033
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:1055
2034
+ #, php-format
2035
  msgid "Email Notice scheduled for: <strong>%1$s</strong>."
2036
  msgstr "Se ha fijado el Aviso por Correo Electrónico para: <strong>%1$s</strong>."
2037
 
2038
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:1074
2039
  msgid ""
2040
+ "Once a notice is \"published\" it becomes active! Select \"Save Draft\" if you "
2041
+ "are not yet ready to use this email notice!"
2042
  msgstr ""
2043
+ "¡Una vez que un aviso sea \"publicado\" se activa! ¡Elige \"Guardar Borrador\" "
2044
+ "si aun no estás listo para utilizar este aviso por email!"
2045
 
2046
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:1076
2047
+ #, php-format
2048
  msgid "This notice will become active on:<br /><strong>%1$s</strong>"
2049
  msgstr "Este aviso se activará en:<br /><strong>%1$s</strong>"
2050
 
2051
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:1078
2052
  msgid "This email notice is active."
2053
  msgstr "Esta notificación de correo electrónico esta activada."
2054
 
2055
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:1089
2056
+ msgid "Settings saved."
2057
+ msgstr ""
2058
+
2059
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:1137
2060
+ msgid "Unsubscribe"
2061
+ msgstr ""
2062
+
2063
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:1158
2064
+ msgid "There are no email notifications yet."
2065
+ msgstr ""
2066
+
2067
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:1164
2068
+ msgid "Save Changes"
2069
+ msgstr ""
2070
+
2071
+ #: ../addons/gateway/carts/mycred-marketpress.php:147 ../addons/gateway/event-
2072
+ #: booking/mycred-eventespresso3.php:277 ../addons/gateway/event-booking/mycred-
2073
+ #: eventespresso3.php:301 ../addons/gateway/event-booking/mycred-eventsmanager.
2074
+ #: php:412 ../includes/mycred-admin.php:478
2075
  msgid "Current Balance"
2076
  msgstr "Saldo Actual"
2077
 
2078
+ #: ../addons/gateway/carts/mycred-marketpress.php:151 ..
2079
+ #: addons/gateway/carts/mycred-wpecommerce.php:123 ../addons/gateway/event-
2080
+ #: booking/mycred-eventespresso3.php:281 ../addons/gateway/event-booking/mycred-
2081
+ #: eventespresso3.php:305 ../addons/gateway/event-booking/mycred-eventsmanager.
2082
+ #: php:416
2083
  msgid "Total Cost"
2084
  msgstr "Coste Total"
2085
 
2086
+ #: ../addons/gateway/carts/mycred-marketpress.php:155 ../addons/gateway/event-
2087
+ #: booking/mycred-eventespresso3.php:285 ../addons/gateway/event-booking/mycred-
2088
+ #: eventespresso3.php:309
2089
  msgid "Balance After Purchase"
2090
  msgstr "Saldo Despues de Compra"
2091
 
2092
+ #: ../addons/gateway/carts/mycred-marketpress.php:182 ..
2093
+ #: addons/gateway/carts/mycred-marketpress.php:231
2094
  msgid "Go Back"
2095
  msgstr "Regresar"
2096
 
2099
  msgstr "sera restado de su cuenta."
2100
 
2101
  #: ../addons/gateway/carts/mycred-marketpress.php:221
2102
+ #, php-format
2103
  msgid ""
2104
+ "Sorry, but you can not use this gateway as your account is excluded. Please "
2105
+ "<a href=\"%s\">select a different payment method</a>."
2106
  msgstr ""
2107
  "Lo siento, pero no puede utilizar esta pasarela de pago porque excluye su "
2108
  "cuenta. Por favor <a href=\"%s\"> elige otro método de pago."
2111
  msgid "Paid"
2112
  msgstr "Pagado"
2113
 
2114
+ #: ../addons/gateway/carts/mycred-marketpress.php:243 ..
2115
+ #: addons/gateway/carts/mycred-woocommerce.php:33 ../includes/mycred-network.php:
2116
+ #: 57 ../includes/mycred-network.php:58 ../plugins/mycred-hook-badgeOS.php:81
2117
  msgid "myCRED"
2118
  msgstr "myCRED"
2119
 
2121
  msgid "%_singular% Balance"
2122
  msgstr "%_singular% Saldo"
2123
 
2124
+ #: ../addons/gateway/carts/mycred-marketpress.php:348 ..
2125
+ #: addons/gateway/carts/mycred-woocommerce.php:101 ..
2126
+ #: addons/gateway/carts/mycred-wpecommerce.php:27
2127
+ #, php-format
2128
  msgid "Payment for Order: #%order_id%"
2129
  msgstr "Pago por el Pedido"
2130
 
2137
  msgstr "Paga usando el saldo de su cuenta."
2138
 
2139
  #: ../addons/gateway/carts/mycred-marketpress.php:353
2140
+ #, php-format
2141
  msgid ""
2142
  "TOTAL amount has been deducted from your account. Your current balance is: "
2143
  "%balance_f%"
2144
  msgstr "Cantidad TOTAL ha sido restado de su cuenta. Su saldo actual es:% balance_f%"
2145
 
2146
  #: ../addons/gateway/carts/mycred-marketpress.php:354
2147
+ #, php-format
2148
  msgid ""
2149
+ "Insufficient funds. Please select another form of payment. Your current "
2150
+ "balance is: %balance_f%"
2151
  msgstr ""
2152
+ "Fondos insuficientes. Por favor seleccione otra forma de pago. Su saldo "
2153
+ "actual es: %balance_f%"
2154
 
2155
  #: ../addons/gateway/carts/mycred-marketpress.php:355
2156
  msgid ""
2161
  "href=\"%login_url_here%\">identifícate</a>."
2162
 
2163
  #: ../addons/gateway/carts/mycred-marketpress.php:362
2164
+ #, php-format
2165
  msgid ""
2166
  "Let your users pay for items in their shopping cart using their %s Account. "
2167
+ "Note! This gateway requires your users to be logged in when making a "
2168
+ "purchase!"
2169
  msgstr ""
2170
  "Permita que sus usuarios paguen para los articulos en su carrito de compra "
2171
  "usando su %s Cuenta. ¡Nota! Esta pasarela de pago requiere que sus usuarios "
2180
  "Enter a public name for this payment method that is displayed to users - No "
2181
  "HTML"
2182
  msgstr ""
2183
+ "Introduzca el nombre público para este método de pago que se va a mostrar a "
2184
+ "los usuarios - sin HTML"
2185
 
2186
  #: ../addons/gateway/carts/mycred-marketpress.php:372
2187
  msgid "Gateway Logo URL"
2188
  msgstr "URL del Logotipo de la Pasarela de Pago"
2189
 
2190
+ #: ../addons/gateway/carts/mycred-marketpress.php:393 ..
2191
+ #: addons/gateway/carts/mycred-woocommerce.php:124
2192
+ #, php-format
2193
  msgid "How much is 1 %_singular% worth in %currency%?"
2194
  msgstr "¿Cuanto vale un 1 %_singular% en %currency%?"
2195
 
2196
+ #: ../addons/gateway/carts/mycred-marketpress.php:398 ..
2197
+ #: addons/gateway/carts/mycred-woocommerce.php:129 ..
2198
+ #: addons/gateway/carts/mycred-wpecommerce.php:356 ../addons/gateway/event-
2199
+ #: booking/mycred-eventespresso3.php:450 ../addons/gateway/event-booking/mycred-
2200
+ #: eventsmanager-pro.php:499 ../addons/gateway/event-booking/mycred-eventsmanager.
2201
+ #: php:578
2202
  msgid "Exchange Rate"
2203
  msgstr "Tipo de Cambio"
2204
 
2205
+ #: ../addons/gateway/carts/mycred-marketpress.php:407 ..
2206
+ #: addons/gateway/carts/mycred-woocommerce.php:157 ..
2207
+ #: addons/gateway/carts/mycred-wpecommerce.php:360 ../addons/gateway/event-
2208
+ #: booking/mycred-eventespresso3.php:462 ../addons/gateway/event-booking/mycred-
2209
+ #: eventsmanager-pro.php:490 ../addons/gateway/event-booking/mycred-eventsmanager.
2210
+ #: php:569
2211
  msgid "Profit Sharing"
2212
  msgstr "Reparto de Ganancias"
2213
 
2215
  msgid "Percentage"
2216
  msgstr "Porcentaje"
2217
 
2218
+ #: ../addons/gateway/carts/mycred-marketpress.php:412 ..
2219
+ #: addons/gateway/carts/mycred-woocommerce.php:159 ..
2220
+ #: addons/gateway/carts/mycred-wpecommerce.php:364 ../addons/gateway/event-
2221
+ #: booking/mycred-eventespresso3.php:464 ../addons/gateway/event-booking/mycred-
2222
+ #: eventsmanager-pro.php:493 ../addons/gateway/event-booking/mycred-eventsmanager.
2223
+ #: php:572
2224
  msgid "Option to share sales with the product owner. Use zero to disable."
2225
  msgstr ""
2226
  "Opción de compartir las ventas con el dueño del producto. Utilice cero para "
2227
  "inhabilitar."
2228
 
2229
+ #: ../addons/gateway/carts/mycred-marketpress.php:424 ..
2230
+ #: addons/gateway/carts/mycred-wpecommerce.php:371 ../addons/gateway/event-
2231
+ #: booking/mycred-eventsmanager-pro.php:559 ../addons/gateway/event-
2232
+ #: booking/mycred-eventsmanager.php:626
2233
  msgid "Messages"
2234
  msgstr "Mensajes"
2235
 
2236
+ #: ../addons/gateway/carts/mycred-marketpress.php:427 ..
2237
+ #: addons/gateway/carts/mycred-wpecommerce.php:382 ../addons/gateway/event-
2238
+ #: booking/mycred-eventsmanager-pro.php:569 ../addons/gateway/event-
2239
+ #: booking/mycred-eventsmanager.php:636
2240
  msgid "Insufficient Funds"
2241
  msgstr "Fondos Insuficientes"
2242
 
2244
  msgid "Message to show when the user can not use this gateway."
2245
  msgstr "Monstrar mensaje cuando el usuario no puede usar esta pasarela de pago."
2246
 
2247
+ #: ../addons/gateway/carts/mycred-marketpress.php:435 ..
2248
+ #: addons/gateway/carts/mycred-wpecommerce.php:378 ../addons/gateway/event-
2249
+ #: booking/mycred-eventespresso3.php:490
2250
  msgid "Visitors"
2251
  msgstr "Visitantes"
2252
 
2277
  msgstr "Email de Confirmación del Pedido"
2278
 
2279
  #: ../addons/gateway/carts/mycred-marketpress.php:461
2280
+ #, php-format
2281
  msgid ""
2282
  "This is the email text to send to those who have made %s checkouts. It "
2283
+ "overrides the default order checkout email. These codes will be replaced "
2284
+ "with order details: CUSTOMERNAME, ORDERID, ORDERINFO, SHIPPINGINFO, "
2285
+ "PAYMENTINFO, TOTAL, TRACKINGURL. No HTML allowed."
2286
  msgstr ""
2287
+ "Esto es el texto del correo electrónico que se manda a los que hayan "
2288
+ "finalizado %s compras. Anula al correo electrónico predeterminado al "
2289
+ "finalizar el cajero. Estos códigos seran reemplazados con los detalles del "
2290
+ "pedido: ORDERID, ORDERINFO, SHIPPINGINFO, PAYMENTINFO, TOTAL, TRACKINGURL. "
2291
+ "No se permite el uso de HTML."
2292
 
2293
  #: ../addons/gateway/carts/mycred-woocommerce.php:34
2294
  msgid "Let users pay using their myCRED balance."
2304
 
2305
  #: ../addons/gateway/carts/mycred-woocommerce.php:83
2306
  msgid ""
2307
+ "Users who are not logged in or excluded from using myCRED will not have "
2308
+ "access to this gateway!"
2309
  msgstr ""
2310
  "¡Los usuarios que no estan ingresado o los que han sido excluido de utilizar "
2311
  "myCRED no tendran acceso a esta pasarela de pago!"
2324
  msgstr "Mensaje a los Clientes"
2325
 
2326
  #: ../addons/gateway/carts/mycred-woocommerce.php:95
2327
+ #, php-format
2328
  msgid "Deduct the amount from your %_plural% balance."
2329
  msgstr "Restar la cantidad de su saldo de %_plural%"
2330
 
2356
  msgid "Show in Cart and on Checkout Page"
2357
  msgstr "Mostrar en el Carrito y en la página de pago"
2358
 
 
 
 
 
2359
  #: ../addons/gateway/carts/mycred-woocommerce.php:150
2360
  msgid "Order Total in %_plural%"
2361
  msgstr "Total del Pedido en %_plural%"
2373
  msgstr "Pago myCRED"
2374
 
2375
  #: ../addons/gateway/carts/mycred-woocommerce.php:193
2376
+ #, php-format
2377
  msgid ""
2378
  "Allows users to pay using their myCRED %_singular% balance. Please note that "
2379
+ "users with insufficient funds and users who are not logged in will not see "
2380
+ "this payment gateway on the checkout page."
2381
  msgstr ""
2382
  "Permite a los usuarios pagar usando su mycred % _singular% saldo. Por favor, "
2383
+ "ten en cuenta que los usuarios con fondos insuficientes y los usuarios que "
2384
+ "no han iniciado sesión no verán esta pasarela de pago en la página de pago."
2385
 
2386
  #: ../addons/gateway/carts/mycred-woocommerce.php:214
2387
  msgid "You must be logged in to pay with %_plural%"
2393
  "No puede usar esta pasarela de pago. Por favor prueba una opción de pago "
2394
  "diferente."
2395
 
2396
+ #: ../addons/gateway/carts/mycred-woocommerce.php:237
2397
  msgid "Insufficient funds. Please try a different payment option."
2398
  msgstr "Fondos insuficientes. Por favor prueba con otra opción de pago."
2399
 
2400
+ #: ../addons/gateway/carts/mycred-woocommerce.php:299
2401
  msgid "Your account has successfully been charged."
2402
  msgstr "Su cuenta ha sido cambiado con éxito."
2403
 
2404
  #. assuming it is referring to order (buy something) not order (rank or organization)
2405
+ #: ../addons/gateway/carts/mycred-woocommerce.php:318
2406
  msgid "Order Missing"
2407
  msgstr "Falta de Pedido"
2408
 
2409
+ #: ../addons/gateway/carts/mycred-woocommerce.php:545 ..
2410
+ #: addons/gateway/carts/mycred-wpecommerce.php:131
2411
  msgid "Your current balance"
2412
  msgstr "Tu saldo actual"
2413
 
2436
  msgstr "Plantilla de Registro para Pagos"
2437
 
2438
  #: ../addons/gateway/carts/mycred-wpecommerce.php:357
2439
+ #, php-format
2440
  msgid "How much is 1 %s worth in %s"
2441
  msgstr "Cuanto vale 1 %s en %s"
2442
 
2450
 
2451
  #: ../addons/gateway/carts/mycred-wpecommerce.php:375
2452
  msgid ""
2453
+ "Optional instructions to show users when selecting this gateway. Leave empty "
2454
+ "to hide."
2455
  msgstr ""
2456
+ "Instrucciones opcionales para mostrar a los usuarios cuando se selecciona "
2457
+ "esta pasarela. Deje el campo vacío para ocultarlo."
2458
 
2459
  #: ../addons/gateway/carts/mycred-wpecommerce.php:379
2460
  msgid "Message to show visitors who are not logged in."
2465
  "Message to show when users does not have enough %plural% to pay using this "
2466
  "gateway."
2467
  msgstr ""
2468
+ "Monstrar mensaje cuando los usuarios no tienen bastante %plural% con que "
2469
+ "pagar usando esta pasarela de pago."
2470
 
2471
+ #: ../addons/gateway/event-booking/mycred-eventespresso3.php:27 ..
2472
+ #: addons/gateway/event-booking/mycred-eventsmanager-pro.php:39 ..
2473
+ #: addons/gateway/event-booking/mycred-eventsmanager.php:35
2474
  msgid "Pay Now"
2475
  msgstr "Pagar Ahora"
2476
 
2479
  msgstr "Pago para Registrar Evento"
2480
 
2481
  #: ../addons/gateway/event-booking/mycred-eventespresso3.php:343
2482
+ #, php-format
2483
  msgid "Activate %s"
2484
  msgstr "Activar %s"
2485
 
2486
  #: ../addons/gateway/event-booking/mycred-eventespresso3.php:351
2487
+ #, php-format
2488
  msgid "Deactivate %s"
2489
  msgstr "Desactivar %s"
2490
 
2491
+ #: ../addons/gateway/event-booking/mycred-eventespresso3.php:399 ..
2492
+ #: addons/gateway/event-booking/mycred-eventsmanager-pro.php:449 ..
2493
+ #: addons/gateway/event-booking/mycred-eventsmanager.php:524
2494
+ #, php-format
2495
  msgid "How many %s is 1 %s worth?"
2496
  msgstr "¿Cuantos %s vale un %s?"
2497
 
2499
  msgid "Gateways Settings Successfully Updated"
2500
  msgstr "Configuracion de l Pasarela de Pago ha sido Actualizado "
2501
 
2502
+ #: ../addons/gateway/event-booking/mycred-eventespresso3.php:415 ..
2503
+ #: addons/gateway/event-booking/mycred-eventsmanager-pro.php:535 ..
2504
+ #: addons/gateway/event-booking/mycred-eventsmanager.php:602
2505
  msgid "Labels"
2506
  msgstr "Etiquetas"
2507
 
2522
  msgid "Title to show on receipts and logs"
2523
  msgstr "El titulo a mostrar en la factura y en los registros."
2524
 
2525
+ #: ../addons/gateway/event-booking/mycred-eventespresso3.php:428 ..
2526
+ #: addons/gateway/event-booking/mycred-eventsmanager-pro.php:552 ..
2527
+ #: addons/gateway/event-booking/mycred-eventsmanager.php:619 ../addons/sell-
2528
+ #: content/myCRED-addon-sell-content.php:397 ../addons/sell-content/myCRED-addon-
2529
+ #: sell-content.php:590
2530
  msgid "Button Label"
2531
  msgstr "Eqiqueta Asignada al Botón"
2532
 
2534
  msgid "Pay Button"
2535
  msgstr "Botón de Pago"
2536
 
2537
+ #: ../addons/gateway/event-booking/mycred-eventespresso3.php:447 ..
2538
+ #: addons/gateway/event-booking/mycred-eventsmanager-pro.php:137 ..
2539
+ #: addons/gateway/event-booking/mycred-eventsmanager-pro.php:140 ..
2540
+ #: addons/gateway/event-booking/mycred-eventsmanager.php:336 ..
2541
+ #: addons/gateway/event-booking/mycred-eventsmanager.php:339 ../addons/sell-
2542
+ #: content/myCRED-addon-sell-content.php:388 ../addons/sell-content/myCRED-addon-
2543
+ #: sell-content.php:586
2544
  msgid "Price"
2545
  msgstr "Precio"
2546
 
2549
  "You can disable purchases using this gateway by adding a custom Event Meta: "
2550
  "<code>mycred_no_sale</code>"
2551
  msgstr ""
2552
+ "Puedes inhabilitar compras a traves de esta pasarela mediante la adición de "
2553
+ "un Evento Meta personalizado: <code>mycred_no_sale</code>"
2554
 
2555
  #: ../addons/gateway/event-booking/mycred-eventespresso3.php:458
2556
  msgid "Users must be logged in to use this gateway!"
2557
  msgstr "¡Los usuarios deben estar conectado para usar esta pasarela de pago!"
2558
 
2559
+ #: ../addons/gateway/event-booking/mycred-eventespresso3.php:467 ..
2560
+ #: modules/mycred-module-log.php:22 ../modules/mycred-module-log.php:23
2561
  msgid "Log"
2562
  msgstr "Registro"
2563
 
2564
+ #: ../addons/gateway/event-booking/mycred-eventespresso3.php:470 ..
2565
+ #: includes/mycred-admin.php:483
2566
  msgid "Log Entry"
2567
  msgstr "Entrada de Registro"
2568
 
2576
 
2577
  #: ../addons/gateway/event-booking/mycred-eventespresso3.php:482
2578
  msgid ""
2579
+ "Message to show users on the payment page before they are charged. Leave "
2580
+ "empty to hide."
2581
  msgstr ""
2582
  "Mostrar mensaje a los usuarios en la pagina de pago antes de cobrar. Dejalo "
2583
  "vacío para ocultar. "
2588
 
2589
  #: ../addons/gateway/event-booking/mycred-eventespresso3.php:487
2590
  msgid "Message to show users who do not have enough points to pay."
2591
+ msgstr ""
2592
+ "Mostrar mensaje a los usuarios que no tienen suficientes puntos con que "
2593
+ "pagar."
2594
 
2595
  #: ../addons/gateway/event-booking/mycred-eventespresso3.php:492
2596
  msgid "Message to show visitors (users not logged in) on the payment page."
2598
  "Mostrar mensaje a los visitantes (usuarios que no han iniciado sesión) en la "
2599
  "pagina de pago."
2600
 
2601
+ #: ../addons/gateway/event-booking/mycred-eventespresso3.php:502 ..
2602
+ #: modules/mycred-module-settings.php:540
2603
  msgid "Update Settings"
2604
  msgstr "Actualizar Configuraciones"
2605
 
2606
+ #: ../addons/gateway/event-booking/mycred-eventsmanager-pro.php:33 ..
2607
+ #: addons/gateway/event-booking/mycred-eventsmanager.php:29
2608
  msgid "Payment for tickets to %link_with_title%"
2609
  msgstr "Pago de entradas para %link_with_title%"
2610
 
2611
+ #: ../addons/gateway/event-booking/mycred-eventsmanager-pro.php:34 ..
2612
+ #: addons/gateway/event-booking/mycred-eventsmanager.php:30
2613
  msgid "Ticket refund for %link_with_title%"
2614
  msgstr "Reembolso de entrada para "
2615
 
2616
+ #: ../addons/gateway/event-booking/mycred-eventsmanager-pro.php:38 ..
2617
+ #: addons/gateway/event-booking/mycred-eventsmanager.php:34
2618
+ #, php-format
2619
  msgid "Pay using your %_plural% balance"
2620
  msgstr "Paga utilizando tu saldo de %_plural%"
2621
 
2622
+ #: ../addons/gateway/event-booking/mycred-eventsmanager-pro.php:40 ..
2623
+ #: addons/gateway/event-booking/mycred-eventsmanager.php:36
2624
  msgid "Pay"
2625
  msgstr "Pagar"
2626
 
2627
+ #: ../addons/gateway/event-booking/mycred-eventsmanager-pro.php:43 ..
2628
+ #: addons/gateway/event-booking/mycred-eventsmanager.php:39
2629
  msgid "Thank you for your payment!"
2630
  msgstr "¡Gracias por su pago!"
2631
 
2632
+ #: ../addons/gateway/event-booking/mycred-eventsmanager-pro.php:44 ..
2633
+ #: addons/gateway/event-booking/mycred-eventsmanager.php:40
2634
  msgid "I'm sorry but you can not pay for these tickets using %_plural%"
2635
  msgstr "Lo siento pero no puedes pagar estos billetes usando %_plural%"
2636
 
2637
+ #: ../addons/gateway/event-booking/mycred-eventsmanager-pro.php:134 ..
2638
+ #: addons/gateway/event-booking/mycred-eventsmanager.php:333
2639
  msgid "Ticket Type"
2640
  msgstr "Tipo de Billete"
2641
 
2642
+ #: ../addons/gateway/event-booking/mycred-eventsmanager-pro.php:143 ..
2643
+ #: addons/gateway/event-booking/mycred-eventsmanager.php:342
2644
  msgid "Spaces"
2645
  msgstr "Espacios"
2646
 
2652
  msgid "Reject"
2653
  msgstr "Rechazar"
2654
 
2655
+ #: ../addons/gateway/event-booking/mycred-eventsmanager-pro.php:374 ..
2656
+ #: modules/mycred-module-log.php:500 ../modules/mycred-module-settings.php:488 ..
2657
+ #: modules/mycred-module-settings.php:507
2658
  msgid "Delete"
2659
  msgstr "Borrar"
2660
 
2662
  msgid "Edit/View"
2663
  msgstr "Editar/Ver"
2664
 
2665
+ #: ../addons/gateway/event-booking/mycred-eventsmanager-pro.php:477 ..
2666
+ #: addons/gateway/event-booking/mycred-eventsmanager.php:542
2667
  msgid "Disabled - Users CAN NOT pay for tickets using %plural%."
2668
  msgstr "Deshabilitado - Usuarios NO PUEDEN pagar entradas utilizando %plural%."
2669
 
2670
+ #: ../addons/gateway/event-booking/mycred-eventsmanager-pro.php:478 ..
2671
+ #: addons/gateway/event-booking/mycred-eventsmanager.php:543
2672
  msgid "Single - Users can ONLY pay for tickets using %plural%."
2673
  msgstr "Individuales - Usuarios NO PUEDEN pagar entradas utilizando %plural%."
2674
 
2675
+ #: ../addons/gateway/event-booking/mycred-eventsmanager-pro.php:479 ..
2676
+ #: addons/gateway/event-booking/mycred-eventsmanager.php:544
2677
  msgid "Multi - Users can pay for tickets using other gateways or %plural%."
2678
  msgstr ""
2679
  "Multi-usuarios pueden pagar entradas utilizando otras pasarelas de pago o "
2680
  "%plural%."
2681
 
2682
+ #: ../addons/gateway/event-booking/mycred-eventsmanager-pro.php:483 ..
2683
+ #: addons/gateway/event-booking/mycred-eventsmanager-pro.php:516 ..
2684
+ #: addons/gateway/event-booking/mycred-eventsmanager.php:562 ..
2685
+ #: addons/gateway/event-booking/mycred-eventsmanager.php:595
2686
  msgid "Refunds"
2687
  msgstr "Reembolsos"
2688
 
2695
  "reserva. Utilice cero para no ofrecer reembolso ninguno. No se reembolsa "
2696
  "reservas \"Rechazadas\""
2697
 
2698
+ #: ../addons/gateway/event-booking/mycred-eventsmanager-pro.php:506 ..
2699
+ #: addons/gateway/event-booking/mycred-eventsmanager.php:585
2700
  msgid "Log Templates"
2701
  msgstr "Plantillas de Registro"
2702
 
2703
+ #: ../addons/gateway/event-booking/mycred-eventsmanager-pro.php:509 ..
2704
+ #: addons/gateway/event-booking/mycred-eventsmanager.php:588
2705
  msgid "Purchases"
2706
  msgstr "Compras"
2707
 
2708
+ #: ../addons/gateway/event-booking/mycred-eventsmanager-pro.php:538 ..
2709
+ #: addons/gateway/event-booking/mycred-eventsmanager.php:605
2710
  msgid "Payment Link Label"
2711
  msgstr "La Etiqueta del Enlace de Pago"
2712
 
2713
+ #: ../addons/gateway/event-booking/mycred-eventsmanager-pro.php:541 ..
2714
+ #: addons/gateway/event-booking/mycred-eventsmanager.php:608
2715
  msgid ""
2716
  "The payment link shows / hides the payment form under \"My Bookings\". No HTML "
2717
  "allowed."
2718
  msgstr ""
2719
+ "El enlace de pago muestra / oculta el formulario de pago en \"Mis Reservas\". "
2720
+ "¡No se permite HTML!"
2721
 
2722
+ #: ../addons/gateway/event-booking/mycred-eventsmanager-pro.php:545 ..
2723
+ #: addons/gateway/event-booking/mycred-eventsmanager.php:612
2724
  msgid "Payment Header"
2725
  msgstr "Encabezado de Pago"
2726
 
2727
+ #: ../addons/gateway/event-booking/mycred-eventsmanager-pro.php:548 ..
2728
+ #: addons/gateway/event-booking/mycred-eventsmanager.php:615
2729
  msgid "Shown on top of the payment form. No HTML allowed."
2730
  msgstr "Mostrar en la encima del formulario de pago. No se permite HTML."
2731
 
2732
+ #: ../addons/gateway/event-booking/mycred-eventsmanager-pro.php:555 ..
2733
+ #: addons/gateway/event-booking/mycred-eventsmanager.php:622
2734
  msgid "The button label for payments. No HTML allowed!"
2735
  msgstr "La etiqueta para el botón de pagos. ¡No se permite HTML!"
2736
 
2737
+ #: ../addons/gateway/event-booking/mycred-eventsmanager-pro.php:562 ..
2738
+ #: addons/gateway/event-booking/mycred-eventsmanager.php:629
2739
  msgid "Successful Payments"
2740
  msgstr "Compras Finalizadas con Exito"
2741
 
2742
+ #: ../addons/gateway/event-booking/mycred-eventsmanager-pro.php:565 ..
2743
+ #: addons/gateway/event-booking/mycred-eventsmanager-pro.php:572 ..
2744
+ #: addons/gateway/event-booking/mycred-eventsmanager.php:632 ..
2745
+ #: addons/gateway/event-booking/mycred-eventsmanager.php:639
2746
  msgid "No HTML allowed!"
2747
  msgstr "¡No se permite HTML!"
2748
 
2755
  msgstr "Haga clic para alternar"
2756
 
2757
  #: ../addons/gateway/event-booking/mycred-eventsmanager.php:533
2758
+ #, php-format
2759
  msgid "%s Payments"
2760
  msgstr "Pagos de "
2761
 
2768
  "reserva. Utilice cero para no ofrecer reembolso ninguno. No se reembolsa "
2769
  "reservas \"Rechazadas\""
2770
 
2771
+ #: ../addons/notifications/myCRED-addon-notifications.php:166 ../modules/mycred-
2772
+ #: module-addons.php:201
2773
  msgid "Notifications"
2774
  msgstr "Notificaciones"
2775
 
2781
  msgid "Use the included CSS Styling for notifications."
2782
  msgstr "Utilice el Estilo CSS incluido para notificaciones."
2783
 
2784
+ #: ../addons/notifications/myCRED-addon-notifications.php:175 ../modules/mycred-
2785
+ #: module-buddypress.php:410
2786
  msgid "Template"
2787
  msgstr "Plantilla"
2788
 
2789
  #: ../addons/notifications/myCRED-addon-notifications.php:179
2790
+ #, php-format
2791
  msgid "Use %entry% to show the log entry in the notice and %amount% for the amount."
2792
  msgstr ""
2793
+ "Utiliza %entry% para mostrar la entrada de registro en el aviso y %amount% "
2794
+ "para la cantidad."
2795
 
2796
  #: ../addons/notifications/myCRED-addon-notifications.php:182
2797
  msgid "Transient Lifespan"
2811
 
2812
  #: ../addons/notifications/myCRED-addon-notifications.php:193
2813
  msgid ""
2814
+ "The number of milliseconds a notice should be visible.<br />Use zero to "
2815
+ "require that the user closes the notice manually. 1000 milliseconds = 1 "
2816
+ "second."
2817
  msgstr ""
2818
+ "Los numeros de milisegundos durante que el aviso debe ser visible.<br "
2819
+ "/>Utilice cero para exigir que el usuario ciere el aviso manualmente. 1000 "
2820
+ "milisegundos = 1 segundo."
2821
 
2822
  #: ../addons/ranks/myCRED-addon-ranks.php:231
2823
  msgid "Warning! All ranks will be deleted! This can not be undone!"
2827
  msgid "Are you sure you want to re-assign user ranks?"
2828
  msgstr "Esta seguro que quieres reasignar rangos de los usuarios?"
2829
 
2830
+ #: ../addons/ranks/myCRED-addon-ranks.php:246 ../addons/ranks/myCRED-addon-ranks.
2831
+ #: php:252 ../addons/ranks/myCRED-addon-ranks.php:258 ../addons/ranks/myCRED-
2832
+ #: addon-ranks.php:787 ../addons/ranks/myCRED-addon-ranks.php:983 ..
2833
+ #: modules/mycred-module-addons.php:213
2834
  msgid "Ranks"
2835
  msgstr "Rangos"
2836
 
2837
+ #: ../addons/ranks/myCRED-addon-ranks.php:247 ../addons/ranks/myCRED-addon-ranks.
2838
+ #: php:479 ../addons/ranks/myCRED-addon-ranks.php:498 ../addons/ranks/myCRED-
2839
+ #: addon-ranks.php:593
2840
  msgid "Rank"
2841
  msgstr "Rango"
2842
 
2868
  msgid "No ranks found in Trash"
2869
  msgstr "Ningun rango encontrao el la papelera"
2870
 
2871
+ #: ../addons/ranks/myCRED-addon-ranks.php:344
2872
+ #, php-format
2873
  msgid "Completed - Total of %d users effected"
2874
  msgstr "Completado - Un total %d usuarios afectados"
2875
 
2876
+ #: ../addons/ranks/myCRED-addon-ranks.php:346
2877
  msgid "Log is Empty"
2878
  msgstr "Registro esta Vacío"
2879
 
2880
+ #: ../addons/ranks/myCRED-addon-ranks.php:553 ../addons/ranks/myCRED-addon-ranks.
2881
+ #: php:556
2882
+ #, php-format
2883
  msgid "Rank Updated. View <a href=\"%1$s\">All Ranks</a>."
2884
  msgstr "Rango Actualizado. Ver a Todos los Rangos"
2885
 
2886
+ #: ../addons/ranks/myCRED-addon-ranks.php:558
2887
  msgid "Rank Activated"
2888
  msgstr "Rango Activado"
2889
 
2890
+ #: ../addons/ranks/myCRED-addon-ranks.php:559
2891
  msgid "Rank Saved"
2892
  msgstr "Rango Guardado"
2893
 
2894
+ #: ../addons/ranks/myCRED-addon-ranks.php:560
2895
+ #, php-format
2896
  msgid "Rank Submitted for approval. View <a href=\"%1$s\">All Ranks</a>."
2897
  msgstr "Rango presentado para aprobación. Ver <a href=\"%1$s\">Todos los Rangos</a>."
2898
 
2899
  #. can also be: "Rango fijado para:"
2900
+ #: ../addons/ranks/myCRED-addon-ranks.php:562
2901
+ #, php-format
2902
  msgid "Rank scheduled for: <strong>%1$s</strong>."
2903
  msgstr "Rango programado para: <strong>%1$s</strong>."
2904
 
2905
+ #: ../addons/ranks/myCRED-addon-ranks.php:619 ../addons/ranks/myCRED-addon-ranks.
2906
+ #: php:672
2907
  msgid "Rank Title"
2908
  msgstr "Titulo de Rango"
2909
 
2910
+ #: ../addons/ranks/myCRED-addon-ranks.php:620
2911
  msgid "Logo"
2912
  msgstr "Logotipo"
2913
 
2914
+ #: ../addons/ranks/myCRED-addon-ranks.php:621
2915
  msgid "Requirement"
2916
  msgstr "Requisito"
2917
 
2918
+ #: ../addons/ranks/myCRED-addon-ranks.php:622 ../modules/mycred-module-settings.
2919
+ #: php:451
2920
  msgid "Users"
2921
  msgstr "Usuarios"
2922
 
2923
+ #: ../addons/ranks/myCRED-addon-ranks.php:638
2924
  msgid "No Logo Set"
2925
  msgstr "No hay Logotipo Configurado"
2926
 
2927
+ #: ../addons/ranks/myCRED-addon-ranks.php:647 ../addons/ranks/myCRED-addon-ranks.
2928
+ #: php:652
2929
  msgid "Any Value"
2930
  msgstr "Cualquier Valor"
2931
 
2932
+ #: ../addons/ranks/myCRED-addon-ranks.php:654
2933
  msgid "Maximum %plural%"
2934
  msgstr "Maximo %plural%"
2935
 
2936
+ #: ../addons/ranks/myCRED-addon-ranks.php:685
2937
  msgid "Rank Settings"
2938
  msgstr "Configuración de Rango"
2939
 
2940
+ #: ../addons/ranks/myCRED-addon-ranks.php:707
2941
  msgid "Minimum %plural% to reach this rank"
2942
  msgstr "Minimo %plural% para llegar a este rango"
2943
 
2944
+ #: ../addons/ranks/myCRED-addon-ranks.php:711
2945
  msgid "Maximum %plural% to be included in this rank"
2946
  msgstr "Maximo %plural% para ser incluido en este rango"
2947
 
2948
+ #: ../addons/ranks/myCRED-addon-ranks.php:718
2949
  msgid "All Published Ranks"
2950
  msgstr "Todos los Rangos Publicados"
2951
 
2952
+ #: ../addons/ranks/myCRED-addon-ranks.php:724 ../addons/ranks/myCRED-addon-ranks.
2953
+ #: php:726
2954
  msgid "Not Set"
2955
  msgstr "No Configurado"
2956
 
2957
+ #: ../addons/ranks/myCRED-addon-ranks.php:731
2958
  msgid "No Ranks found"
2959
  msgstr "Ningun rango encontrado"
2960
 
2961
+ #: ../addons/ranks/myCRED-addon-ranks.php:789
2962
  msgid "Rank Features"
2963
  msgstr "Caracteristicas de los Rangos"
2964
 
2965
+ #: ../addons/ranks/myCRED-addon-ranks.php:793
2966
  msgid "%plural% requirement"
2967
  msgstr "%plural% requisito"
2968
 
2969
+ #: ../addons/ranks/myCRED-addon-ranks.php:794
2970
  msgid "Featured Image (Logo)"
2971
  msgstr "Imagen Principal (Logotipo)"
2972
 
2973
+ #: ../addons/ranks/myCRED-addon-ranks.php:795
2974
  msgid "Content"
2975
  msgstr "Contenido"
2976
 
2977
+ #: ../addons/ranks/myCRED-addon-ranks.php:796
2978
  msgid "Excerpt"
2979
  msgstr "Extracto"
2980
 
2981
+ #: ../addons/ranks/myCRED-addon-ranks.php:797
2982
  msgid "Comments"
2983
  msgstr "Comentario"
2984
 
2985
+ #: ../addons/ranks/myCRED-addon-ranks.php:798
2986
  msgid "Page Attributes"
2987
  msgstr "Atributos de Página"
2988
 
2989
+ #: ../addons/ranks/myCRED-addon-ranks.php:799
2990
  msgid "Custom Fields"
2991
  msgstr "Campo Personalizado"
2992
 
2993
+ #: ../addons/ranks/myCRED-addon-ranks.php:802
2994
  msgid "Public"
2995
  msgstr "Público"
2996
 
2997
  #. This is not clear, especially the second sentence (fragment)!
2998
+ #: ../addons/ranks/myCRED-addon-ranks.php:806
2999
  msgid ""
3000
+ "If you want to create a template archive for each rank, you must select to "
3001
+ "have ranks public. Defaults to disabled."
3002
  msgstr ""
3003
  "Si desea crear un archivo de plantilla para cada rango, debe seleccionar que "
3004
  "los rangos sean público. Los valores predeterminados desactivado."
3005
 
3006
+ #: ../addons/ranks/myCRED-addon-ranks.php:809
3007
  msgid "Rank Basis"
3008
  msgstr "Base de Rango"
3009
 
3010
+ #: ../addons/ranks/myCRED-addon-ranks.php:812
3011
  msgid "Users are ranked according to their current balance."
3012
  msgstr "Los usuarios se clasifican según su saldo actual."
3013
 
3014
+ #: ../addons/ranks/myCRED-addon-ranks.php:815
3015
  msgid ""
3016
  "Users are ranked according to the total amount of %_plural% they have "
3017
  "accumulated."
3019
  "Los usuarios se clasifican según la cantidad total de %_plural% que han "
3020
  "acumulado."
3021
 
3022
+ #: ../addons/ranks/myCRED-addon-ranks.php:819 ../addons/ranks/myCRED-addon-ranks.
3023
+ #: php:824
3024
  msgid "Calculate Totals"
3025
  msgstr "Calcular Totales"
3026
 
3027
+ #: ../addons/ranks/myCRED-addon-ranks.php:822
3028
  msgid ""
3029
  "Use this button to calculate or re-calcualte your users totals. If not used, "
3030
  "the users current balance will be used as a starting point."
3031
  msgstr ""
3032
+ "Utilice este botón para calcular y volver a calcular las sumas de tus "
3033
+ "usuarios. Si no se utiliza, los saldos actuales de los usuarios se "
3034
+ "utilizaran como punto de partida."
3035
 
3036
+ #: ../addons/ranks/myCRED-addon-ranks.php:822
3037
  msgid ""
3038
  "Once a users total has been calculated, they will be assigned to their "
3039
  "appropriate roles. For this reason, it is highly recommended that you first "
3040
  "setup your ranks!"
3041
  msgstr ""
3042
+ "Una vez que la suma del usuario haya sido calculado, sus roles "
3043
+ "corespondientes seran asignados. ¡Por esta razón, se recomienda altamente "
3044
+ "que primero configures los rangos!"
3045
 
3046
+ #: ../addons/ranks/myCRED-addon-ranks.php:823
3047
  msgid ""
3048
+ "Depending on your log size and number of users this process may take a while."
3049
+ " Please do not leave, click \"Update Settings\" or re-fresh this page until "
3050
+ "this is completed!"
3051
  msgstr ""
3052
+ "Segun el tamaño de registro y los numeros de usuarios este proceso puede "
3053
+ "llevar un rato. ¡Por favor no abandone esta pagina, haga click sobre "
3054
+ "\"Actualizar Configuraciones\" o refrescar la pagina hasta que se haya "
3055
+ "completado!"
3056
 
3057
+ #: ../addons/ranks/myCRED-addon-ranks.php:828
3058
  msgid "Archive URL"
3059
  msgstr "URL del Archivo"
3060
 
3061
+ #: ../addons/ranks/myCRED-addon-ranks.php:832
3062
  msgid "Ignored if Ranks are not public"
3063
  msgstr "Sera Ingnorado si los Rangos no son Pulicos"
3064
 
3065
  #. not sure if this is order, as in ordering pizza or order as in rank, organization
3066
+ #: ../addons/ranks/myCRED-addon-ranks.php:835
3067
  msgid "Display Order"
3068
  msgstr "Orden de Visualización"
3069
 
3070
+ #: ../addons/ranks/myCRED-addon-ranks.php:842
3071
  msgid "Ascending - Lowest rank to highest"
3072
  msgstr "Ascendente - Rango más bajo a lo más alto"
3073
 
3074
+ #: ../addons/ranks/myCRED-addon-ranks.php:843
3075
  msgid "Descending - Highest rank to lowest"
3076
  msgstr "Descendiente - Rango más alto al más bajo"
3077
 
3078
+ #: ../addons/ranks/myCRED-addon-ranks.php:852
3079
  msgid ""
3080
+ "Select in what order ranks should be displayed in your admin area and/or "
3081
+ "front if ranks are \"Public\""
3082
  msgstr ""
3083
+ "Elige en que orden se debe mostrar los rangos en tu area de administrador "
3084
+ "y/o en el frente si los rangos son \"Público\""
3085
 
3086
+ #: ../addons/ranks/myCRED-addon-ranks.php:862 ../modules/mycred-module-buddypress.
3087
+ #: php:366 ../modules/mycred-module-buddypress.php:373
3088
  msgid "Do not show."
3089
  msgstr "No mostrar."
3090
 
3091
+ #: ../addons/ranks/myCRED-addon-ranks.php:863 ../modules/mycred-module-buddypress.
3092
+ #: php:367
3093
  msgid "Include in Profile Header."
3094
  msgstr "Incluir en Encabezado del Perfil"
3095
 
3096
+ #: ../addons/ranks/myCRED-addon-ranks.php:864 ../modules/mycred-module-buddypress.
3097
+ #: php:368
3098
  msgid "Include under the \"Profile\" tab"
3099
  msgstr "Incluir debajo de la pestaña del \"Perfil\""
3100
 
3101
+ #: ../addons/ranks/myCRED-addon-ranks.php:865 ../modules/mycred-module-buddypress.
3102
+ #: php:369
3103
  msgid "Include under the \"Profile\" tab and Profile Header."
3104
  msgstr "Incluir en la pestanã \"Perfil\" y Encabezado de Perfil"
3105
 
3106
+ #: ../addons/ranks/myCRED-addon-ranks.php:868
3107
  msgid "Rank in BuddyPress"
3108
  msgstr "Rango en BuddyPress"
3109
 
3110
+ #: ../addons/ranks/myCRED-addon-ranks.php:936
3111
  msgid "Script Communication Error"
3112
  msgstr "Error del Script de Comunicación"
3113
 
3114
+ #: ../addons/ranks/myCRED-addon-ranks.php:986
3115
  msgid "Rank Post Type"
3116
  msgstr "Clasificar Post Types"
3117
 
3118
+ #: ../addons/ranks/myCRED-addon-ranks.php:990
3119
  msgid "No. of ranks"
3120
  msgstr "Numero de Rangos"
3121
 
3122
+ #: ../addons/ranks/myCRED-addon-ranks.php:994 ../modules/mycred-module-log.php:
3123
+ #: 368 ../modules/mycred-module-settings.php:440 ../modules/mycred-module-
3124
+ #: settings.php:455
3125
  msgid "Actions"
3126
  msgstr "Acciones"
3127
 
3128
+ #: ../addons/ranks/myCRED-addon-ranks.php:995
3129
  msgid "Remove All Ranks"
3130
  msgstr "Quitar todos los Rangos"
3131
 
3132
+ #: ../addons/ranks/myCRED-addon-ranks.php:995
3133
  msgid "Assign Ranks to Users"
3134
  msgstr "Asignar Rango a los Usuarios"
3135
 
3136
+ #: ../addons/ranks/includes/mycred-rank-functions.php:192
3137
  msgid "mycred_get_users_rank() : Missing required user id"
3138
  msgstr "mycred_get_users_rank() : Falta el requisito id del usuario"
3139
 
3140
+ #: ../addons/ranks/includes/mycred-rank-functions.php:206
3141
  msgid "no rank"
3142
  msgstr "ningun rango"
3143
 
3144
+ #: ../addons/ranks/includes/mycred-rank-shortcodes.php:58 ..
3145
+ #: addons/ranks/includes/mycred-rank-shortcodes.php:134
3146
  msgid "No users found with this rank"
3147
  msgstr "Ningun usuario encontrado con este rango"
3148
 
3149
+ #: ../addons/ranks/includes/mycred-rank-shortcodes.php:63 ../includes/mycred-
3150
+ #: shortcodes.php:352 ../includes/mycred-shortcodes.php:355 ../includes/mycred-
3151
+ #: shortcodes.php:417 ../includes/mycred-shortcodes.php:478 ../includes/mycred-
3152
+ #: shortcodes.php:482 ../includes/mycred-shortcodes.php:486
3153
  msgid "error"
3154
  msgstr "error"
3155
 
3185
  msgid "Pay Content Author."
3186
  msgstr "Pagar al Autor del Contenido"
3187
 
3188
+ #: ../addons/sell-content/myCRED-addon-sell-content.php:339 ../includes/mycred-
3189
+ #: overview.php:141 ../includes/mycred-overview.php:148 ../modules/mycred-module-
3190
+ #: addons.php:224
3191
  msgid "Sell Content"
3192
  msgstr "Vender Contenido"
3193
 
3208
  "Percentage of the price to pay the author. Can not be zero and is ignored if "
3209
  "authors are not paid."
3210
  msgstr ""
3211
+ "Porcentaje del precio que pagar al autor. No puede ser cero y sera ignorado "
3212
+ "si no se les paga a los autores."
3213
 
3214
  #. also, "por defecto" and "predeterminados"
3215
  #: ../addons/sell-content/myCRED-addon-sell-content.php:385
3237
  msgstr "Guardar Plantilla para los no miembros"
3238
 
3239
  #: ../addons/sell-content/myCRED-addon-sell-content.php:415
3240
+ #, php-format
3241
  msgid ""
3242
+ "Do <strong>not</strong> use the %buy_button% in this template as a user must "
3243
+ "be logged in to buy content!"
3244
  msgstr ""
3245
  "<strong>¡No utilice</strong> el %buy_button% en esta plantilla porque el "
3246
  "usuario debe haber inciciado sesión para poder comprar contenidos!"
3249
  msgid "Sale Template for members"
3250
  msgstr "Plantilla de Venta para miembros"
3251
 
3252
+ #: ../addons/sell-content/myCRED-addon-sell-content.php:423 ../addons/sell-
3253
+ #: content/myCRED-addon-sell-content.php:431
3254
+ #, php-format
3255
  msgid "Your template must contain the %buy_button% tag for purchases to work!"
3256
  msgstr ""
3257
+ "¡Tu plantilla debe contener la etiqueta %buy_button% para que se pueda "
3258
+ "realizar compras!"
3259
 
3260
  #: ../addons/sell-content/myCRED-addon-sell-content.php:427
3261
  msgid "Insufficient funds template"
3270
  msgstr "Plantilla de registros para Ventas"
3271
 
3272
  #: ../addons/sell-content/myCRED-addon-sell-content.php:494
3273
+ #, php-format
3274
  msgid "%s Sell This"
3275
  msgstr "%s Vende Esto"
3276
 
3277
  #: ../addons/sell-content/myCRED-addon-sell-content.php:548
3278
+ #, php-format
3279
  msgid "%s Sell Content needs to be setup before you can use this feature."
3280
  msgstr ""
3281
+ "%s Vender Contenidos necesita haberse configurado antes de poder utilizar "
3282
+ "esta característica técnica."
3283
 
3284
  #: ../addons/sell-content/myCRED-addon-sell-content.php:551
3285
  msgid "Setup add-on"
3301
  msgid "Thank you for your purchase!"
3302
  msgstr "¡Gracias por su compra!"
3303
 
3304
+ #: ../addons/sell-content/myCRED-addon-sell-content.php:1008 ../addons/sell-
3305
+ #: content/myCRED-addon-sell-content.php:1094
3306
  msgid "The following content is set for sale:"
3307
  msgstr "El siguiente contenido esta listo para la venta:"
3308
 
3329
  #: ../addons/transfer/myCRED-addon-transfer.php:141
3330
  msgid "Security token could not be verified. Please contact your site administrator!"
3331
  msgstr ""
3332
+ "No se pudo verificar el 'token' (código) de seguridad. ¡Por favor, póngase "
3333
+ "en contacto con el administrador del sitio!"
3334
 
3335
  #: ../addons/transfer/myCRED-addon-transfer.php:142
3336
  msgid "Communications error. Please try again later."
3350
 
3351
  #: ../addons/transfer/myCRED-addon-transfer.php:146
3352
  msgid ""
3353
+ "This myCRED Add-on has not yet been setup! No transfers are allowed until "
3354
+ "this has been done!"
3355
  msgstr ""
3356
  "¡Esta Extensión de myCRED todavía no ha sido configurado! No se permite "
3357
  "transferencias hasta que se haga esto."
3384
  msgid "User Email (user_email)"
3385
  msgstr "Correo Electrónico del Usuario (user_email)"
3386
 
3387
+ #: ../addons/transfer/myCRED-addon-transfer.php:191 ../addons/transfer/myCRED-
3388
+ #: addon-transfer.php:631
3389
  msgid "Transfer %plural%"
3390
  msgstr "Transferir %plural%"
3391
 
3392
+ #: ../addons/transfer/myCRED-addon-transfer.php:195 ../includes/mycred-widgets.
3393
+ #: php:593 ../modules/mycred-module-settings.php:469
3394
  msgid "Point Types"
3395
  msgstr "Tipo de Puntos"
3396
 
3489
 
3490
  #: ../addons/transfer/myCRED-addon-transfer.php:296
3491
  msgid ""
3492
+ "Text to show when a users balance is to low for transfers. Leave empty to "
3493
+ "hide. No HTML elements allowed!"
3494
  msgstr ""
3495
  "Mostrar este texto cuando el saldo de un usuario es demasiado bajo para "
3496
  "efectuar transferencias. Deje el campo vacío para ocultarlo. ¡No se permite "
3505
  "Text to show when a user has reached their transfer limit (if used). Leave "
3506
  "empty to hide. No HTML elements allowed!"
3507
  msgstr ""
3508
+ "Mostrar este texto cuando un usuario haya llegado al límite de su "
3509
+ "transferencia (si se utiliza). Deje el campo vacío para ocultarlo. ¡No se "
3510
+ "permite ningun elemento de HTML!"
3511
 
3512
  #: ../addons/transfer/myCRED-addon-transfer.php:560
3513
  msgid "Allow transfers between users."
3514
  msgstr "Permitir transferencias entre usuarios."
3515
 
3516
  #: ../addons/transfer/myCRED-addon-transfer.php:562
3517
+ #, php-format
3518
  msgid "(%s) Transfer"
3519
  msgstr "(%s) Transfererir"
3520
 
3540
 
3541
  #. is this recipients plural or recipient's with an apostrophe missing?
3542
  #: ../addons/transfer/myCRED-addon-transfer.php:780
3543
+ #, php-format
3544
  msgid "recipients %s"
3545
  msgstr "destinatarios %s"
3546
 
3553
  msgstr "Cantidad:"
3554
 
3555
  #: ../includes/mycred-about.php:75
3556
+ #, php-format
3557
  msgid "Welcome to %s %s"
3558
  msgstr "Bienvenido a %s %s"
3559
 
3562
  "Re-save your myCRED Settings & all myCRED widget settings that you are "
3563
  "currently using."
3564
  msgstr ""
3565
+ "Volver a guardar tus Configuraciones de myCRED y todas las configuraciones "
3566
+ "del widget de myCRED que actualmente estas usuando."
3567
 
3568
  #: ../includes/mycred-admin.php:67
3569
  msgid "Re-save your myCRED Hook Settings."
3597
  msgid "Excluded"
3598
  msgstr "Excluido"
3599
 
3600
+ #: ../includes/mycred-admin.php:279 ../modules/mycred-module-log.php:250 ..
3601
+ #: modules/mycred-module-log.php:251
3602
  msgid "History"
3603
  msgstr "Historial"
3604
 
3607
  msgstr "Modificar"
3608
 
3609
  #: ../includes/mycred-admin.php:335 ../includes/mycred-admin.php:394
3610
+ #, php-format
3611
  msgid "%singular% balance"
3612
  msgstr "%singular% saldo"
3613
 
3724
  msgstr "erroneo marca de tiempo de unix (a):"
3725
 
3726
  #: ../includes/mycred-importer.php:11
3727
+ #, php-format
3728
  msgid "%s Log Import"
3729
  msgstr "Registro de Importe %s"
3730
 
3733
  msgstr "Importa las entradas de registro atraves de un fichero CSV."
3734
 
3735
  #: ../includes/mycred-importer.php:43
3736
+ #, php-format
3737
  msgid "%s Balance Import"
3738
  msgstr "%s balance de Importar"
3739
 
3742
  msgstr "Saldos Importar."
3743
 
3744
  #: ../includes/mycred-importer.php:75
3745
+ #, php-format
3746
  msgid "%s CubePoints Import"
3747
  msgstr "Importar CubePoints %s"
3748
 
3749
+ #: ../includes/mycred-importer.php:76 ../includes/importers/mycred-cubepoints.php:
3750
+ #: 344
3751
  msgid "Import CubePoints log entries and / or balances."
3752
  msgstr "Importar las entradas de registro de CubePoints y/o saldos."
3753
 
3769
 
3770
  #: ../includes/mycred-install.php:54
3771
  msgid ""
3772
+ "Sorry but your WordPress installation does not reach the minimum "
3773
+ "requirements for running myCRED. The following errors were given:"
3774
  msgstr ""
3775
  "Lo sentimos, pero tu instalación de WordPress no alcanza a los requisitos "
3776
  "mínimos de mycred. Se produce los siguientes errores:"
3788
  msgstr "Instalación de myCRED"
3789
 
3790
  #: ../includes/mycred-install.php:385
3791
+ #, php-format
3792
  msgid "%s Setup"
3793
  msgstr "Configurar %s"
3794
 
3798
 
3799
  #: ../includes/mycred-install.php:411
3800
  msgid ""
3801
+ "Click \"Begin Setup\" to install myCRED. You will be able to select your "
3802
+ "points format, layout and security settings."
3803
  msgstr ""
3804
+ "Haga clic en \"Empezar la Instalación\" para instalar myCRED. Podras ajustar "
3805
+ "el formato de puntos, disposiciones y configuraciones de seguridad."
3806
 
3807
  #: ../includes/mycred-install.php:412
3808
  msgid "Begin Setup"
3879
 
3880
  #: ../includes/mycred-install.php:556 ../modules/mycred-module-settings.php:390
3881
  msgid ""
3882
+ "As an added security, you can set the maximum amount a user can gain or "
3883
+ "loose in a single instance. If used, make sure this is the maximum amount a "
3884
+ "user would be able to transfer, buy, or spend in your store. Use zero to "
3885
+ "disable."
3886
  msgstr ""
3887
+ "Como mayor seguridad, puedes configurar la cantidad máxima que un usuario "
3888
+ "puede ganar o perder en una sola instancia. Si se utiliza esto, asegurate "
3889
+ "que es tambien la máxima cantidad que el usuario puede transferir, comprar, "
3890
+ "o gastar en tu tienda. Ponga zero para desactivar."
3891
 
3892
  #: ../includes/mycred-install.php:563 ../modules/mycred-module-settings.php:397
3893
  msgid "Exclude those who can \"Edit Settings\"."
3915
 
3916
  #: ../includes/mycred-install.php:600
3917
  msgid "Almost done! Click the button below to finish this setup."
3918
+ msgstr ""
3919
+ "¡Casi terminado! Haga clic al botón de abajo para finalizar esta "
3920
+ "configuración."
3921
 
3922
  #: ../includes/mycred-install.php:601
3923
  msgid "Install & Run"
3924
  msgstr "Instalar e ejecutar"
3925
 
3926
  #: ../includes/mycred-log.php:389
3927
+ #, php-format
3928
  msgid "Showing %d %s"
3929
  msgstr "Mostrando %d %s"
3930
 
3946
  msgstr "Página corriente"
3947
 
3948
  #: ../includes/mycred-log.php:424
3949
+ #, php-format
3950
  msgctxt "paging"
3951
  msgid "%1$s of %2$s"
3952
  msgstr "%1$s de %2$s"
3985
 
3986
  #: ../includes/mycred-log.php:609
3987
  msgid ""
3988
+ "Log entries are exported to a CSV file and depending on the number of "
3989
+ "entries selected, the process may take a few seconds."
3990
  msgstr ""
3991
+ "Se exporta las entradas de registro a un fichero CSV y dependiendo del "
3992
+ "número de entradas seleccionadas, el proceso puede tardar unos segundos."
3993
 
3994
  #: ../includes/mycred-log.php:613
3995
  msgid "No export options available."
4013
  msgid "search log entries"
4014
  msgstr "Búsqueda de las entradas de registro"
4015
 
4016
+ #: ../includes/mycred-log.php:842 ../modules/mycred-module-buddypress.php:232 ..
4017
+ #: modules/mycred-module-buddypress.php:245
4018
  msgid "All"
4019
  msgstr "Todo"
4020
 
4039
  msgstr "Configuración de la Red"
4040
 
4041
  #: ../includes/mycred-network.php:169
4042
+ #, php-format
4043
  msgid "%s Network"
4044
  msgstr "Red de %s"
4045
 
4046
  #: ../includes/mycred-network.php:175
4047
+ #, php-format
4048
  msgid "Note! %s has not yet been setup."
4049
  msgstr "¡Aviso! %s no ha sido configurado."
4050
 
4053
  msgstr "Configuraciones de la Red Actualizadas"
4054
 
4055
  #: ../includes/mycred-network.php:181
4056
+ #, php-format
4057
  msgid "Configure network settings for %s."
4058
  msgstr "Configure los parámetros de red para %s."
4059
 
4062
  msgstr "Plantilla Principal"
4063
 
4064
  #: ../includes/mycred-network.php:199
4065
+ #, php-format
4066
  msgid ""
4067
+ "If enabled, %s will use your main site's settings for all other sites in "
4068
+ "your network."
4069
  msgstr ""
4070
+ "Si activado, %s utilizara la configuración de tu sitio principal para todas "
4071
+ "los sitios en tu red."
4072
 
4073
  #: ../includes/mycred-network.php:202
4074
  msgid "Central Logging"
4075
  msgstr "Central de Registro"
4076
 
4077
  #: ../includes/mycred-network.php:213
4078
+ #, php-format
4079
  msgid "If enabled, %s will log all site actions in your main site's log."
4080
  msgstr ""
4081
+ "Si está activado, %s registrará todas las acciones en el registro de tu "
4082
+ "sitio principal."
4083
 
4084
  #: ../includes/mycred-network.php:216
4085
  msgid "Site Block"
4086
  msgstr "Bloqueo de Sitio"
4087
 
4088
  #: ../includes/mycred-network.php:220
4089
+ #, php-format
4090
  msgid "Comma separated list of blog ids where %s is to be disabled."
4091
  msgstr "Lista separada por comas de blog IDs donde %s se va a inhabilitar."
4092
 
4095
  msgstr "Guardar las Configuraciones de la Eed"
4096
 
4097
  #: ../includes/mycred-overview.php:25
4098
+ #, php-format
4099
  msgid "%s Overview"
4100
  msgstr "Descripción de %s"
4101
 
4112
  msgid "Deducted"
4113
  msgstr "Deducido"
4114
 
4115
+ #: ../includes/mycred-overview.php:120 ../includes/mycred-overview.php:127 ..
4116
+ #: modules/mycred-module-addons.php:235
4117
  msgid "Transfers"
4118
  msgstr "Transferencias"
4119
 
4130
  #: ../includes/mycred-remote.php:526
4131
  msgid "Click Update Settings to load the Remote API settings."
4132
  msgstr ""
4133
+ "Haga clic sobre Actualizar Configuraciones para cargar la configuración de "
4134
+ "API remoto."
4135
 
4136
  #: ../includes/mycred-remote.php:528
4137
  msgid "Allow Remote Access"
4172
  "Keep this key safe! Those you share this key with will be able to remotely "
4173
  "deduct / add / transfer %plural%!"
4174
  msgstr ""
4175
+ "¡Mantenga la seguridad de esta clave! Aquellos con quien compartes esta "
4176
+ "clave podran restar / añadir / transferir %plural% de forma remota."
4177
 
4178
  #: ../includes/mycred-remote.php:568
4179
  msgid "Incoming URI"
4180
  msgstr "URI Entrante"
4181
 
4182
  #: ../includes/mycred-remote.php:572
4183
+ msgid ""
4184
+ "The incoming call address. Remote calls made to any other URL will be "
4185
+ "ignored."
4186
  msgstr ""
4187
  "La dirección de la llamada entrante. Se ignorará las llamadas remotas a "
4188
  "cualquier otro URL."
4232
  msgstr "Este código corto (shortcode) precisa un ID del video."
4233
 
4234
  #: ../includes/mycred-widgets.php:21
4235
+ #, php-format
4236
  msgid "Show the current users %s balance"
4237
  msgstr "Enseñar el saldo de %s del usuario actual"
4238
 
4239
  #: ../includes/mycred-widgets.php:23
4240
+ #, php-format
4241
  msgid "(%s) My Balance"
4242
  msgstr "(%s) Mi Saldo"
4243
 
4291
  msgstr "Mensaje"
4292
 
4293
  #: ../includes/mycred-widgets.php:323
4294
+ #, php-format
4295
  msgid "Show a list of users sorted by their %s balance"
4296
  msgstr "Mustra una lista de usuarios ordenados por sus %s saldos"
4297
 
4298
  #: ../includes/mycred-widgets.php:325
4299
+ #, php-format
4300
  msgid "(%s) Leaderboard"
4301
  msgstr "(%s) Tabla de Clasificación"
4302
 
4332
 
4333
  #: ../includes/mycred-widgets.php:446
4334
  msgid ""
4335
+ "If the current user is not in this leaderboard, you can select to append "
4336
+ "them at the end with their current position."
4337
  msgstr ""
4338
  "Si el usuario actual no esta en esta tabla de clasificación, puedes elegir a "
4339
  "agregarles al final con su posición actual."
4343
  msgstr "Mostrar el saldo actual del usuario para cada tipo de puntos."
4344
 
4345
  #: ../includes/mycred-widgets.php:497
4346
+ #, php-format
4347
  msgid "(%s) Wallet"
4348
  msgstr "(%s) Cartera"
4349
 
4355
  msgid "Row Layout"
4356
  msgstr "Disposición de Filas"
4357
 
4358
+ #: ../includes/importers/mycred-balances.php:81 ../includes/importers/mycred-
4359
+ #: balances.php:159 ../includes/importers/mycred-balances.php:198 ..
4360
+ #: includes/importers/mycred-balances.php:213 ../includes/importers/mycred-log-
4361
+ #: entries.php:81 ../includes/importers/mycred-log-entries.php:126 ..
4362
+ #: includes/importers/mycred-log-entries.php:165 ../includes/importers/mycred-
4363
+ #: log-entries.php:180
4364
  msgid "Sorry, there has been an error."
4365
  msgstr "Lo sentimos, se ha producido un error."
4366
 
4367
+ #: ../includes/importers/mycred-balances.php:82 ../includes/importers/mycred-log-
4368
+ #: entries.php:82
4369
  msgid "The file does not exist, please try again."
4370
  msgstr "El fichero no existe, por favor inténtelo de nuevo más tarde."
4371
 
4372
+ #: ../includes/importers/mycred-balances.php:160 ../includes/importers/mycred-log-
4373
+ #: entries.php:127
4374
  msgid "The CSV is invalid."
4375
  msgstr "El CSV no es valido."
4376
 
4377
  #: ../includes/importers/mycred-balances.php:171
4378
+ #, php-format
4379
  msgid ""
4380
  "Import complete - A total of <strong>%d</strong> balances were successfully "
4381
  "imported. <strong>%d</strong> was skipped."
4382
  msgstr ""
4383
+ "Importación Finalizado - En total, <strong>%d</strong> saldos fueron "
4384
+ "importado con éxito. Se saltaron <strong>%d</strong>."
4385
 
4386
+ #: ../includes/importers/mycred-balances.php:181 ../includes/importers/mycred-
4387
+ #: cubepoints.php:293 ../includes/importers/mycred-log-entries.php:148
4388
  msgid "View Log"
4389
  msgstr "Ver Registro"
4390
 
4391
+ #: ../includes/importers/mycred-balances.php:181 ../includes/importers/mycred-
4392
+ #: cubepoints.php:293 ../includes/importers/mycred-log-entries.php:148
4393
  msgid "Import More"
4394
  msgstr "Importar Más"
4395
 
4401
  msgid "Import balances from a CSV file."
4402
  msgstr "Importa saldos de registro desde un fichero CSV."
4403
 
4404
+ #: ../includes/importers/mycred-balances.php:252 ../includes/importers/mycred-log-
4405
+ #: entries.php:219
4406
  msgid ""
4407
  "Before you can upload your import file, you will need to fix the following "
4408
  "error:"
4409
  msgstr ""
4410
+ "Antes que puedas subir tu fichero de importe, tendras que corregir los "
4411
+ "errores siguientes:"
4412
 
4413
+ #: ../includes/importers/mycred-balances.php:261 ../includes/importers/mycred-log-
4414
+ #: entries.php:228
4415
  msgid "Choose a file from your computer:"
4416
  msgstr "Elige un fichero en tu ordenador:"
4417
 
4418
+ #: ../includes/importers/mycred-balances.php:267 ../includes/importers/mycred-log-
4419
+ #: entries.php:234
4420
+ #, php-format
4421
  msgid "Maximum size: %s"
4422
  msgstr "Tamaño Máximo: %s"
4423
 
4424
+ #: ../includes/importers/mycred-balances.php:272 ../includes/importers/mycred-log-
4425
+ #: entries.php:239
4426
  msgid "OR enter path to file:"
4427
  msgstr "O rellena la ruta al fichero:"
4428
 
4429
+ #: ../includes/importers/mycred-balances.php:279 ../includes/importers/mycred-log-
4430
+ #: entries.php:246
4431
  msgid "Delimiter"
4432
  msgstr "Delimitador"
4433
 
4443
  msgid "Adjust current balances according to the amount in this CSV file"
4444
  msgstr "Ajustar los balances actuales de acuerdo al monto en el archivo CSV"
4445
 
4446
+ #: ../includes/importers/mycred-balances.php:292 ../includes/importers/mycred-log-
4447
+ #: entries.php:252
4448
  msgid "Upload file and import"
4449
  msgstr "Subir fichero e importar"
4450
 
4456
  msgid "No log entries were imported!"
4457
  msgstr "¡No se importo ninguna entrada de registro!"
4458
 
4459
+ #: ../includes/importers/mycred-cubepoints.php:282 ../includes/importers/mycred-
4460
+ #: log-entries.php:138
4461
+ #, php-format
4462
  msgid ""
4463
  "Import complete - A total of <strong>%d</strong> entries were successfully "
4464
  "imported. <strong>%d</strong> was skipped."
4495
  msgstr "Importar"
4496
 
4497
  #: ../includes/importers/mycred-cubepoints.php:360
4498
+ msgid ""
4499
+ "Warning! Importing CubePoints balances will replace your users myCRED "
4500
+ "balance!"
4501
  msgstr ""
4502
+ "¡Advertencia! ¡La importación de los saldos de CubePoints reemplazará el "
4503
+ "saldo de myCRED para tus usuarios!"
4504
 
4505
  #: ../includes/importers/mycred-cubepoints.php:378
4506
  msgid "Import Log"
4521
  #: ../modules/mycred-module-addons.php:158
4522
  msgid ""
4523
  "The <strong>buy</strong>CRED Add-on allows your users to buy points using "
4524
+ "PayPal, Skrill (Moneybookers) or NETbilling. <strong>buy</strong>CRED can "
4525
+ "also let your users buy points for other members."
4526
  msgstr ""
4527
  "La Extensión <strong>compra</strong>CRED permite que tus usuarios compren "
4528
  "puntos utilizando PayPal, Skrill (Moneybookers) o NETbilling. "
4534
  "The coupons add-on allows you to create coupons that users can use to add "
4535
  "points to their accounts."
4536
  msgstr ""
4537
+ "Los cupones de add-on le permite crear cupones que los usuarios pueden "
4538
+ "utilizar para agregar puntos a sus cuentas."
4539
 
4540
  #: ../modules/mycred-module-addons.php:180
4541
  msgid "Create email notices for any type of myCRED instance."
4542
+ msgstr ""
4543
+ "Crea avisos por correo electrónico para cualquier tipo de instancias de "
4544
+ "myCRED."
4545
 
4546
  #: ../modules/mycred-module-addons.php:191
4547
  msgid ""
4550
  "Bookings: Event Espresso and Events Manager (free & pro)."
4551
  msgstr ""
4552
  "Permite que tus usuarios paguen utilizando el saldo de sus puntos "
4553
+ "<strong>my</strong>CRED. Carritos soportados: WooCommerce, MarketPress and "
4554
+ "WP E-Commerce. Reservas de Eventos soportados: Event Espresso and Events "
4555
+ "Manager (gratis y pro)."
4556
 
4557
  #: ../modules/mycred-module-addons.php:202
4558
  msgid "Create pop-up notifications for when users gain or loose points."
4560
 
4561
  #: ../modules/mycred-module-addons.php:214
4562
  msgid ""
4563
+ "Create ranks for users reaching a certain number of %_plural% with the "
4564
+ "option to add logos for each rank."
4565
  msgstr ""
4566
+ "Crear rangos para los usuarios que alcanzan a un cierto número de %_plural% "
4567
+ "con la opción de añadir logotipos para cada rango."
4568
 
4569
  #: ../modules/mycred-module-addons.php:225
4570
  msgid ""
4573
  "parts of your content allowing you to offer \"teasers\"."
4574
  msgstr ""
4575
  "Esta extensión permite que vendas posts, páginas o cualquier tipo de "
4576
+ "publicación en tu sitio web. Puedes venter contenidos enteros o utilizando "
4577
+ "el código corto (shortcode), vender partes de tu contenido permitiendote "
4578
+ "ofrecer \"avances\"."
4579
 
4580
  #: ../modules/mycred-module-addons.php:236
4581
  msgid ""
4582
  "Allow your users to send or \"donate\" points to other members by either using "
4583
  "the mycred_transfer shortcode or the myCRED Transfer widget."
4584
  msgstr ""
4585
+ "Permite que los usuarios envien o \"donen\" puntos a otros miembros utilizando "
4586
+ "el código corto (shortcode) de mycred_transfer o el widget de Transferencia "
4587
+ "myCRED."
4588
 
4589
  #: ../modules/mycred-module-addons.php:272
4590
+ #, php-format
4591
  msgid "%s Add-ons"
4592
  msgstr "%s Extensiones (addons)"
4593
 
4606
  "técnicas."
4607
 
4608
  #: ../modules/mycred-module-addons.php:306
4609
+ #, php-format
4610
  msgid "You can find more add-ons in our %s."
4611
  msgstr "Puedes encontrar más extensiones (add-ons) en nuestro %s."
4612
 
4647
  msgstr "Mi Historial"
4648
 
4649
  #: ../modules/mycred-module-buddypress.php:31
4650
+ #, php-format
4651
  msgid "%s's History"
4652
  msgstr "La Historial de %s"
4653
 
4668
  msgstr "BuddyPress"
4669
 
4670
  #: ../modules/mycred-module-buddypress.php:389
4671
+ #, php-format
4672
  msgid "%singular% Balance"
4673
  msgstr "%singular% Saldo"
4674
 
4675
  #: ../modules/mycred-module-buddypress.php:405
4676
+ #, php-format
4677
  msgid "Members and visitors can other members %_singular% balance."
4678
  msgstr "Miembros y visitantes pueden ver el saldo de %_singular% de otros miembros."
4679
 
4696
  msgstr "Título mostrado a mi"
4697
 
4698
  #: ../modules/mycred-module-buddypress.php:445
4699
+ #, php-format
4700
  msgid "Title shown to others. Use %s to show the first name."
4701
  msgstr "Título mostrado a otros. Utilice %s para mostrar el nombre de pila."
4702
 
4720
  msgid "Number of history entries to show"
4721
  msgstr "Numero de entradas de historial a mostrar"
4722
 
4723
+ #: ../modules/mycred-module-hooks.php:25 ../modules/mycred-module-hooks.php:26 ..
4724
+ #: modules/mycred-module-hooks.php:27
4725
  msgid "Hooks"
4726
  msgstr "Ganchos"
4727
 
4728
  #: ../modules/mycred-module-hooks.php:87
4729
+ #, php-format
4730
  msgid "%plural% for registrations"
4731
  msgstr "%plural% por inscripciones"
4732
 
4733
  #: ../modules/mycred-module-hooks.php:88
4734
+ #, php-format
4735
  msgid "Award %_plural% for users joining your website."
4736
  msgstr "Concede %_plural% a usuarios para unirse a tu sitio de web."
4737
 
4738
  #: ../modules/mycred-module-hooks.php:94
4739
+ #, php-format
4740
  msgid "%plural% for logins"
4741
  msgstr "%plural% para ingresos"
4742
 
4743
  #: ../modules/mycred-module-hooks.php:95
4744
+ #, php-format
4745
  msgid ""
4746
  "Award %_plural% for logging in to your website. You can also set an optional "
4747
  "limit."
4748
  msgstr ""
4749
+ "Conceder %_plural% por iniciar sesión en tu sitio web. También puedes "
4750
+ "ajustar un limíte opcional."
4751
 
4752
  #: ../modules/mycred-module-hooks.php:101
4753
+ #, php-format
4754
  msgid "%plural% for publishing content"
4755
  msgstr "%plural% por publicar contenido"
4756
 
4757
  #: ../modules/mycred-module-hooks.php:102
4758
+ #, php-format
4759
  msgid ""
4760
  "Award %_plural% for publishing content on your website. If your custom post "
4761
  "type is not shown bellow, make sure it is set to \"Public\"."
4762
  msgstr "Concede %_plural% por publicar contenido en tu sitio web. "
4763
 
4764
  #: ../modules/mycred-module-hooks.php:108
4765
+ #, php-format
4766
  msgid "%plural% for comments"
4767
  msgstr "%plural% por comentarios"
4768
 
4769
  #: ../modules/mycred-module-hooks.php:108
4770
+ #, php-format
4771
  msgid "%plural% for Disqus comments"
4772
  msgstr "%plural% por comentarios Disqus"
4773
 
4774
  #: ../modules/mycred-module-hooks.php:109
4775
+ #, php-format
4776
  msgid "Award %_plural% for making comments."
4777
  msgstr "Concede %_plural% por hacer comentarios."
4778
 
4779
  #: ../modules/mycred-module-hooks.php:115
4780
+ #, php-format
4781
  msgid "%plural% for clicking on links"
4782
  msgstr "%plural% por hacer clic sobre enlaces"
4783
 
4786
  "Award %_plural% to users who clicks on links generated by the [mycred_link] "
4787
  "shortcode."
4788
  msgstr ""
4789
+ "Concede %_plural% a los usuarios que han hecho clic sobre enlaces generados "
4790
+ "por el [mycred_link] código corto (shortcode)."
4791
 
4792
  #: ../modules/mycred-module-hooks.php:122
4793
+ #, php-format
4794
  msgid "%plural% for viewing Videos"
4795
  msgstr "%plural% por ver videos"
4796
 
4797
  #: ../modules/mycred-module-hooks.php:123
4798
  msgid ""
4799
+ "Award %_plural% to users who watches videos embedded using the "
4800
+ "[mycred_video] shortcode."
4801
  msgstr ""
4802
+ "Concede %_plural% a los usuarios que han visto videos incrustados utilizando "
4803
+ "el [mycred_link] código corto (shortcode)."
4804
 
4805
  #: ../modules/mycred-module-hooks.php:129
4806
+ #, php-format
4807
  msgid "%plural% for referrals"
4808
  msgstr "%plural% por referencias (o recomendaciones)"
4809
 
4810
  #: ../modules/mycred-module-hooks.php:130
4811
  msgid "Award %_plural% to users who refer either visitors and/or new member signups."
4812
  msgstr ""
4813
+ "Concede %_plural% a los usuarios que o refieren visitantes y/o nuevos "
4814
+ "miembros inscritos."
4815
 
4816
  #: ../modules/mycred-module-hooks.php:163
4817
+ #, php-format
4818
  msgid "%s Hooks"
4819
  msgstr "Ganchos de %s"
4820
 
4823
  "Hooks are instances where %_plural% are awarded or deducted from a user, "
4824
  "depending on their actions around your website."
4825
  msgstr ""
4826
+ "Ganchas son instancias donde %_plural% son concedidos (o restados) al "
4827
+ "usuario, dependiendo de sus acciones en tu sitio web."
4828
+
4829
+ #: ../modules/mycred-module-hooks.php:326 ../modules/mycred-module-hooks.php:638 .
4830
+ #: ./modules/mycred-module-hooks.php:651 ../modules/mycred-module-hooks.php:687 ..
4831
+ #: modules/mycred-module-hooks.php:1067 ../modules/mycred-module-hooks.php:1084 .
4832
+ #: ./modules/mycred-module-hooks.php:1101 ../modules/mycred-module-hooks.php:2212
4833
+ #: ../modules/mycred-module-hooks.php:2241 ../plugins/mycred-hook-badgeOS.php:281
4834
+ #: ../plugins/mycred-hook-bbPress.php:471 ../plugins/mycred-hook-bbPress.php:484 .
4835
+ #: ./plugins/mycred-hook-bbPress.php:497 ../plugins/mycred-hook-bbPress.php:515 ..
4836
+ #: plugins/mycred-hook-bbPress.php:528 ../plugins/mycred-hook-bbPress.php:547 ..
4837
+ #: plugins/mycred-hook-bbPress.php:575 ../plugins/mycred-hook-buddypress-gallery.
4838
+ #: php:104 ../plugins/mycred-hook-buddypress-links.php:254 ../plugins/mycred-hook-
4839
+ #: buddypress-links.php:267 ../plugins/mycred-hook-buddypress-links.php:280 ..
4840
+ #: plugins/mycred-hook-buddypress-links.php:291 ../plugins/mycred-hook-
4841
+ #: buddypress-links.php:304 ../plugins/mycred-hook-buddypress-links.php:317 ..
4842
+ #: plugins/mycred-hook-buddypress-media.php:170 ../plugins/mycred-hook-
4843
+ #: buddypress-media.php:180 ../plugins/mycred-hook-buddypress-media.php:190 ..
4844
+ #: plugins/mycred-hook-buddypress-media.php:203 ../plugins/mycred-hook-
4845
+ #: buddypress-media.php:213 ../plugins/mycred-hook-buddypress-media.php:223 ..
4846
+ #: plugins/mycred-hook-buddypress.php:381 ../plugins/mycred-hook-buddypress.php:
4847
+ #: 394 ../plugins/mycred-hook-buddypress.php:407 ../plugins/mycred-hook-
4848
+ #: buddypress.php:420 ../plugins/mycred-hook-buddypress.php:433 ../plugins/mycred-
4849
+ #: hook-buddypress.php:446 ../plugins/mycred-hook-buddypress.php:459 ..
4850
+ #: plugins/mycred-hook-buddypress.php:472 ../plugins/mycred-hook-buddypress.php:
4851
+ #: 926 ../plugins/mycred-hook-buddypress.php:939 ../plugins/mycred-hook-
4852
+ #: buddypress.php:952 ../plugins/mycred-hook-buddypress.php:965 ../plugins/mycred-
4853
+ #: hook-buddypress.php:978 ../plugins/mycred-hook-buddypress.php:991 ..
4854
+ #: plugins/mycred-hook-buddypress.php:1005 ../plugins/mycred-hook-buddypress.php:
4855
+ #: 1018 ../plugins/mycred-hook-buddypress.php:1031 ../plugins/mycred-hook-
4856
+ #: buddypress.php:1044 ../plugins/mycred-hook-contact-form7.php:137 ..
4857
+ #: plugins/mycred-hook-gravityforms.php:113 ../plugins/mycred-hook-invite-anyone.
4858
+ #: php:219 ../plugins/mycred-hook-invite-anyone.php:240 ../plugins/mycred-hook-
4859
+ #: jetpack.php:506 ../plugins/mycred-hook-jetpack.php:519 ../plugins/mycred-hook-
4860
+ #: simplepress.php:330 ../plugins/mycred-hook-simplepress.php:343 ..
4861
+ #: plugins/mycred-hook-simplepress.php:356 ../plugins/mycred-hook-simplepress.
4862
+ #: php:380
4863
  msgid "Log template"
4864
  msgstr "Plantilla de Registro"
4865
 
4866
+ #: ../modules/mycred-module-hooks.php:527 ../modules/mycred-module-hooks.php:2220
4867
+ #: ../modules/mycred-module-hooks.php:2249 ../plugins/mycred-hook-invite-anyone.
4868
+ #: php:224 ../plugins/mycred-hook-invite-anyone.php:245
4869
  msgid "Limit"
4870
  msgstr "Límite"
4871
 
4872
  #: ../modules/mycred-module-hooks.php:632
4873
+ #, php-format
4874
  msgid "%plural% for Posts"
4875
  msgstr "%plural% por Posts"
4876
 
4877
  #: ../modules/mycred-module-hooks.php:645
4878
+ #, php-format
4879
  msgid "%plural% for Pages"
4880
  msgstr "%plural% por Paginas"
4881
 
4882
  #: ../modules/mycred-module-hooks.php:681
4883
+ #, php-format
4884
  msgid "%plural% for %s"
4885
  msgstr "%plural% por %s"
4886
 
4889
  "%plural% are only awarded when your website has been synced with the Disqus "
4890
  "server!"
4891
  msgstr ""
4892
+ "¡%_plural% seran concedidos unicamente cuando tu sitio web se ha "
4893
+ "sincronizado con el servidor de Disqus!"
4894
 
4895
  #: ../modules/mycred-module-hooks.php:1055
4896
  msgid "Approved Comment"
4897
  msgstr "Comentario Aprobado"
4898
 
4899
+ #: ../modules/mycred-module-hooks.php:1058 ../modules/mycred-module-hooks.php:
4900
+ #: 1075 ../modules/mycred-module-hooks.php:1092
4901
  msgid "Comment Author"
4902
  msgstr "Autor del Comentario"
4903
 
4904
+ #: ../modules/mycred-module-hooks.php:1062 ../modules/mycred-module-hooks.php:
4905
+ #: 1079 ../modules/mycred-module-hooks.php:1096
4906
  msgid "Content Author"
4907
  msgstr "Autor del Contenido"
4908
 
4938
  "número ilimitado."
4939
 
4940
  #: ../modules/mycred-module-hooks.php:1122
4941
+ msgid ""
4942
+ "%plural% is to be awarded even when comment authors reply to their own "
4943
+ "comment."
4944
  msgstr ""
4945
  "%_plural% seran concedidos incluso cuando los autores responden a su proprio "
4946
  "comentario."
4955
 
4956
  #: ../modules/mycred-module-hooks.php:1386
4957
  msgid ""
4958
+ "The default amount to award for clicking on links. You can override this in "
4959
+ "the shortcode."
4960
  msgstr ""
4961
  "La cantidad predefinida que sera cedida por hacer clic sobre enlaces. Puedes "
4962
  "anular esto con el 'shortcode' (código corto)."
4963
 
4964
  #: ../modules/mycred-module-hooks.php:1393
4965
+ #, php-format
4966
  msgid "Custom tags: %url%, %title% or %id%."
4967
  msgstr "Etiquetas personalizadas: %url%, %title% o/u %id%."
4968
 
4973
  #: ../modules/mycred-module-hooks.php:1404
4974
  msgid ""
4975
  "If no ID is set when using the mycred_link shortcode, the shortcode will "
4976
+ "generate one automatically based on the value set under href. If you are "
4977
+ "using this feature for \"sharing\" content, it is recommended that you limit "
4978
+ "by ID."
4979
  msgstr ""
4980
  "Si no se ha fijado ningun ID cuando estas utilizando el codigo corto "
4981
  "(shortcode) de mycred_link, se generará uno automaticamente basado sobre el "
4995
  msgstr "Lógica de Concesión"
4996
 
4997
  #: ../modules/mycred-module-hooks.php:1738
4998
+ #, php-format
4999
  msgid "Select when %_plural% should be awarded or deducted."
5000
  msgstr "Elige cuando %_plural% deberian ser concedidos o restados."
5001
 
5029
 
5030
  #: ../modules/mycred-module-hooks.php:1758
5031
  msgid ""
5032
+ "Do not set this value to zero! A lot of thing can happen while a user "
5033
+ "watches a movie and sometimes a few seconds can drop of the counter due to "
5034
+ "buffering or play back errors."
5035
  msgstr ""
5036
  "¡No fijes este valor a cero! Muchas cosas pueden suceder mientras que un "
5037
  "usuario ve una película y a veces la contador puede disminuir por pocos "
5094
  #: ../modules/mycred-module-hooks.php:2290
5095
  msgid "The number of times each IP address grants %_plural%. Use zero for unlimited."
5096
  msgstr ""
5097
+ "El numero de veces que cada IP concede %_plural%. Utilice cero para un "
5098
+ "número ilimitado"
5099
 
5100
  #: ../modules/mycred-module-hooks.php:2294 ../modules/mycred-module-hooks.php:2327
5101
  msgid "BuddyPress Profile"
5107
 
5108
  #: ../modules/mycred-module-hooks.php:2298
5109
  msgid ""
5110
+ "Option to inser the referral link in users profiles. Links will only be "
5111
+ "visible to users viewing their own profiles or administrators."
5112
  msgstr ""
5113
+ "Opción para insertar el enlace de referencia en los perfiles de los usuarios."
5114
+ " Estos enlaces serán visibles a los administradores o a los usuarios cuando "
5115
+ "ven a sus propios perfiles."
5116
 
5117
  #: ../modules/mycred-module-hooks.php:2304
5118
  msgid "Leave empty to hide."
5135
  "You can move around the referral link on your users profile by changing the "
5136
  "position. Increase to move up, decrease to move down."
5137
  msgstr ""
5138
+ "Puedes moverte por el enlace de referencia en su perfil los usuarios "
5139
+ "cambiando la posición. Aumentar a moverse hacia arriba, disminuye al bajar."
5140
 
5141
  #: ../modules/mycred-module-hooks.php:2323
5142
  msgid "You can not move the referral link above the users \"Base\" profile details!"
5143
  msgstr ""
5144
+ "¡No puedes trasladar el enlace de referencia encima de los detalles \"Base\" "
5145
+ "en el perfil del usuario!"
5146
 
5147
  #: ../modules/mycred-module-hooks.php:2329
5148
  msgid "Requires BuddyPress Extended Profiles to be enabled."
5152
  msgid "Available Shortcodes"
5153
  msgstr "Códigos cortos Disponibles"
5154
 
5155
+ #: ../modules/mycred-module-log.php:185 ../modules/mycred-module-log.php:206 ..
5156
+ #: modules/mycred-module-settings.php:61 ../modules/mycred-module-settings.php:102
5157
  msgid "Access denied for this action"
5158
  msgstr "Acceso denegado para esta acción"
5159
 
5173
  msgid "Entries"
5174
  msgstr "Entradas"
5175
 
5176
+ #: ../modules/mycred-module-log.php:301 ../modules/mycred-module-log.php:381 ..
5177
+ #: modules/mycred-module-log.php:625 ../modules/mycred-module-settings.php:570
5178
  msgid "Export"
5179
  msgstr "Exportar"
5180
 
5183
  msgstr "Buscar entre resultados por"
5184
 
5185
  #: ../modules/mycred-module-log.php:375
5186
+ #, php-format
5187
  msgid "%s Log"
5188
  msgstr "Registro de %s"
5189
 
5212
  msgstr "Actualiza la entrada de registro"
5213
 
5214
  #: ../modules/mycred-module-log.php:619
5215
+ #, php-format
5216
  msgid "My %s History"
5217
  msgstr "Mi Historial de %s"
5218
 
5219
+ #: ../modules/mycred-module-settings.php:65 ../modules/mycred-module-settings.php:
5220
+ #: 106 ../modules/mycred-module-settings.php:148
5221
  msgid "Missing point type"
5222
  msgstr "Falta el tipo de punto"
5223
 
5230
  msgstr "No se encontro usuarios para exportar"
5231
 
5232
  #: ../modules/mycred-module-settings.php:330
5233
+ #, php-format
5234
  msgid "%s Settings"
5235
  msgstr "Configuración de %s"
5236
 
5237
  #: ../modules/mycred-module-settings.php:333
5238
+ #, php-format
5239
  msgid "Adjust your core or add-on settings. Follow us on: %s %s"
5240
  msgstr ""
5241
+ "Ajusta las configuraciones basicos o las de las extensiones (addons). "
5242
+ "Síguenos en: %s %s"
5243
 
5244
  #: ../modules/mycred-module-settings.php:338
5245
  msgid "Core Settings"
5250
  msgstr "Nombre"
5251
 
5252
  #: ../modules/mycred-module-settings.php:345
5253
+ #, php-format
5254
  msgid "Accessible though the %singular% template tag."
5255
  msgstr "Acesible a través de la etiqueta de la plantilla del %singular%."
5256
 
5279
  msgstr "Editar las Configuraciones"
5280
 
5281
  #. or "Verificar la capacidad de"
5282
+ #: ../modules/mycred-module-settings.php:380 ../modules/mycred-module-settings.
5283
+ #: php:385
5284
  msgid "Capability to check for."
5285
  msgstr "La capacidad que se va a verificar."
5286
 
5326
  msgid "Default"
5327
  msgstr "Predefinido"
5328
 
5329
+ #: ../modules/mycred-module-settings.php:480 ../modules/mycred-module-settings.
5330
+ #: php:499 ../modules/mycred-module-settings.php:521
5331
  msgid "Meta Key"
5332
  msgstr "Clave Meta"
5333
 
5361
 
5362
  #: ../modules/mycred-module-settings.php:562
5363
  msgid ""
5364
+ "Use ID if you intend to use this export as a backup of your current site "
5365
+ "while Email is recommended if you want to export to a different site."
5366
  msgstr ""
5367
+ "Usa ID si deseas tener esta exportación como un respaldo de tu sitio, Usa "
5368
+ "Email si deseas exportar la data a otro sitio"
5369
 
5370
  #: ../modules/mycred-module-settings.php:565
5371
  msgid "Import Log Entry"
5372
  msgstr "Importa la entrada de registro"
5373
 
5374
  #: ../modules/mycred-module-settings.php:567
5375
+ #, php-format
5376
  msgid ""
5377
+ "Optional log entry to use if you intend to import this file in a different "
5378
+ "%s installation."
5379
  msgstr ""
5380
  "Usa la entrada de registro opcional si tiene la intención de importar este "
5381
  "fichero en otra instalación %s."
5393
  "Estos ajustes pueden ser anulados para el tipo de logro individual."
5394
 
5395
  #: ../plugins/mycred-hook-badgeOS.php:98
5396
+ #, php-format
5397
+ msgid ""
5398
+ "Please setup your <a href=\"%s\">default settings</a> before using this "
5399
+ "feature."
5400
  msgstr ""
5401
+ "Por favor configura tus <a href=\"%s\">configuraciones predefinidos</a> antes "
5402
+ "de usar este función."
5403
 
5404
  #: ../plugins/mycred-hook-badgeOS.php:109 ../plugins/mycred-hook-badgeOS.php:111
5405
  msgid "%plural% to Award"
5415
  msgstr "Plantilla de Registro Descontado"
5416
 
5417
  #: ../plugins/mycred-hook-badgeOS.php:261
5418
+ #, php-format
5419
  msgid "Default %s for %s"
5420
  msgstr "Predeterminar %s por %s"
5421
 
5432
  msgstr "bbPress"
5433
 
5434
  #: ../plugins/mycred-hook-bbPress.php:19
5435
+ #, php-format
5436
  msgid "Awards %_plural% for bbPress actions."
5437
  msgstr "Concede %_plural% por acciones en bbPress."
5438
 
5439
  #: ../plugins/mycred-hook-bbPress.php:464
5440
+ #, php-format
5441
  msgid "%plural% for New Forum"
5442
  msgstr "%plural% por nuevo foro"
5443
 
5444
  #: ../plugins/mycred-hook-bbPress.php:477
5445
+ #, php-format
5446
  msgid "%plural% for Forum Deletion"
5447
  msgstr "%plural% por Eliminar Foro"
5448
 
5449
+ #: ../plugins/mycred-hook-bbPress.php:490 ../plugins/mycred-hook-simplepress.php:
5450
+ #: 323
5451
+ #, php-format
5452
  msgid "%plural% for New Topic"
5453
  msgstr "%plural% por Nuevo Tema"
5454
 
5455
  #: ../plugins/mycred-hook-bbPress.php:504
5456
+ #, php-format
5457
  msgid "Forum authors can receive %_plural% for creating new topics."
5458
  msgstr "Autores "
5459
 
5460
+ #: ../plugins/mycred-hook-bbPress.php:508 ../plugins/mycred-hook-bbPress.php:568 .
5461
+ #: ./plugins/mycred-hook-simplepress.php:336
5462
+ #, php-format
5463
  msgid "%plural% for Topic Deletion"
5464
  msgstr "%plural% por Borrar Tema"
5465
 
5466
  #: ../plugins/mycred-hook-bbPress.php:521
5467
+ #, php-format
5468
  msgid "%plural% for Favorited Topic"
5469
  msgstr "%plural% por Añadir Tema a tus \"Favoritos\""
5470
 
5471
+ #: ../plugins/mycred-hook-bbPress.php:534 ../plugins/mycred-hook-bbPress.php:558 .
5472
+ #: ./plugins/mycred-hook-buddypress.php:375 ../plugins/mycred-hook-simplepress.
5473
+ #: php:367
5474
  msgid "Daily Limit"
5475
  msgstr "Limite Diario"
5476
 
5477
+ #: ../plugins/mycred-hook-bbPress.php:536 ../plugins/mycred-hook-bbPress.php:560 .
5478
+ #: ./plugins/mycred-hook-simplepress.php:369
5479
  msgid "Use zero for unlimited"
5480
  msgstr "Ponga cero para ilimitado"
5481
 
5482
  #: ../plugins/mycred-hook-bbPress.php:540
5483
+ #, php-format
5484
  msgid "%plural% for New Reply"
5485
  msgstr "%plural% por Nueva Respuesta"
5486
 
5487
  #: ../plugins/mycred-hook-bbPress.php:554
5488
+ #, php-format
5489
  msgid "Topic authors can receive %_plural% for replying to their own Topic"
5490
  msgstr "Autor de la tema puede recibir %_plural% por responder a su propia Tema"
5491
 
5492
  #: ../plugins/mycred-hook-bbPress.php:564
5493
+ #, php-format
5494
  msgid "Show users %_plural% balance in replies"
5495
  msgstr "Mostrar usuarios el saldo de %_plural% en las respuestas"
5496
 
5499
  msgstr "BuddyPress: Acciones sobre Galerías"
5500
 
5501
  #: ../plugins/mycred-hook-buddypress-gallery.php:20
5502
+ #, php-format
5503
  msgid ""
5504
  "Awards %_plural% for creating a new gallery either using BP Album+ or BP "
5505
  "Gallery."
5508
  "Gallery."
5509
 
5510
  #: ../plugins/mycred-hook-buddypress-gallery.php:97
5511
+ #, php-format
5512
  msgid "%plural% for New Gallery"
5513
  msgstr "%plural% por Nueva Galería"
5514
 
5517
  msgstr "BuddyPress: Enlaces"
5518
 
5519
  #: ../plugins/mycred-hook-buddypress-links.php:20
5520
+ #, php-format
5521
  msgid "Awards %_plural% for link related actions."
5522
  msgstr "Concede %_plural% por acciones relacionados a enlaces."
5523
 
5524
  #: ../plugins/mycred-hook-buddypress-links.php:247
5525
+ #, php-format
5526
  msgid "%plural% for New Links"
5527
  msgstr "%plural% por Nuevas Enlaces"
5528
 
5529
  #: ../plugins/mycred-hook-buddypress-links.php:260
5530
+ #, php-format
5531
  msgid "%plural% for Vote on Link"
5532
  msgstr "%plural% por Votar sobre Enlaces"
5533
 
5544
  msgstr "Votar en Contra "
5545
 
5546
  #: ../plugins/mycred-hook-buddypress-links.php:297
5547
+ #, php-format
5548
  msgid "%plural% for Updating Links"
5549
  msgstr "%plural% por Actualizar Enlaces"
5550
 
5551
  #: ../plugins/mycred-hook-buddypress-links.php:310
5552
+ #, php-format
5553
  msgid "%plural% for Deleting Links"
5554
  msgstr "%plural% por Borrar Enlaces"
5555
 
5558
  msgstr "Galerías rtMedia (rtMedia Galleries)"
5559
 
5560
  #: ../plugins/mycred-hook-buddypress-media.php:19
5561
+ #, php-format
5562
  msgid "Award / Deduct %_plural% for users creating albums or uploading new photos."
5563
  msgstr "Concede / Resta %_plural% a usuarios por crear álbumes o subir nuevos fotos."
5564
 
5599
  msgstr "BuddyPress: Miembros"
5600
 
5601
  #: ../plugins/mycred-hook-buddypress.php:21
5602
+ #, php-format
5603
  msgid "Awards %_plural% for profile related actions."
5604
  msgstr "Concede %_plural% por acciones relacionados al perfil."
5605
 
5608
  msgstr "BuddyPress: Grupos"
5609
 
5610
  #: ../plugins/mycred-hook-buddypress.php:29
5611
+ #, php-format
5612
  msgid ""
5613
  "Awards %_plural% for group related actions. Use minus to deduct %_plural% or "
5614
  "zero to disable a specific hook."
5617
  "sustraer %_plural% o cero para desabilitar un gancho especifico."
5618
 
5619
  #: ../plugins/mycred-hook-buddypress.php:369
5620
+ #, php-format
5621
  msgid "%plural% for Profile Updates"
5622
  msgstr "%plural% por Actualizar Perfil"
5623
 
5626
  msgstr "Limite Diario. Ponga cero para ilimitado."
5627
 
5628
  #: ../plugins/mycred-hook-buddypress.php:387
5629
+ #, php-format
5630
  msgid "%plural% for New Avatar"
5631
  msgstr "%plural% por Nuevo Avatar"
5632
 
5633
  #: ../plugins/mycred-hook-buddypress.php:400
5634
+ #, php-format
5635
  msgid "%plural% for New Friendships"
5636
  msgstr "%plural% por Nueva Amistad"
5637
 
5638
  #: ../plugins/mycred-hook-buddypress.php:413
5639
+ #, php-format
5640
  msgid "%plural% for Leaving Friendship"
5641
  msgstr "%plural% por Dejar Amistad"
5642
 
5643
  #: ../plugins/mycred-hook-buddypress.php:426
5644
+ #, php-format
5645
  msgid "%plural% for New Comment"
5646
  msgstr "%plural% por Nuevo Comentario"
5647
 
5648
  #: ../plugins/mycred-hook-buddypress.php:439
5649
+ #, php-format
5650
  msgid "%plural% for Deleting Comment"
5651
  msgstr "%plural% por Borrar Comentario"
5652
 
5653
  #: ../plugins/mycred-hook-buddypress.php:452
5654
+ #, php-format
5655
  msgid "%plural% for New Messages"
5656
  msgstr "%plural% por Nuevo Mensaje"
5657
 
5658
  #: ../plugins/mycred-hook-buddypress.php:465
5659
+ #, php-format
5660
  msgid "%plural% for Sending Gift"
5661
  msgstr "%plural% por Enviar Regalo"
5662
 
5663
  #: ../plugins/mycred-hook-buddypress.php:912
5664
+ #, php-format
5665
  msgid "%plural% for Creating Groups"
5666
  msgstr "%plural% por Creat Cupones"
5667
 
5682
  msgstr "Ponga cero para %_plural% cuando se crea un grupo."
5683
 
5684
  #: ../plugins/mycred-hook-buddypress.php:932
5685
+ #, php-format
5686
  msgid "%plural% for Deleting Groups"
5687
  msgstr "%plural% por Borrar Grupos"
5688
 
5689
  #: ../plugins/mycred-hook-buddypress.php:945
5690
+ #, php-format
5691
  msgid "%plural% for New Forum Topic"
5692
  msgstr "%plural% por Nuevo Tema de Foro"
5693
 
5694
  #: ../plugins/mycred-hook-buddypress.php:958
5695
+ #, php-format
5696
  msgid "%plural% for Editing Forum Topic"
5697
  msgstr "%plural% por Editar Tema de Foro"
5698
 
5699
  #: ../plugins/mycred-hook-buddypress.php:971
5700
+ #, php-format
5701
  msgid "%plural% for New Forum Post"
5702
  msgstr "%plural% por Nueva Publicación en Foro"
5703
 
5704
  #: ../plugins/mycred-hook-buddypress.php:984
5705
+ #, php-format
5706
  msgid "%plural% for Editing Forum Post"
5707
  msgstr "%plural% por Editar Publicación en Foro"
5708
 
5709
  #: ../plugins/mycred-hook-buddypress.php:997
5710
+ #, php-format
5711
  msgid "%plural% for Joining Groups"
5712
  msgstr "%plural% por Unirse a Grupos"
5713
 
5720
  "\"Unirse a Grupo\" sera desactivada."
5721
 
5722
  #: ../plugins/mycred-hook-buddypress.php:1011
5723
+ #, php-format
5724
  msgid "%plural% for Leaving Groups"
5725
  msgstr "%plural% por Dejar Grupos"
5726
 
5727
  #: ../plugins/mycred-hook-buddypress.php:1024
5728
+ #, php-format
5729
  msgid "%plural% for New Group Avatar"
5730
  msgstr "%plural% por Nuevo Avatar de Grupo"
5731
 
5732
  #: ../plugins/mycred-hook-buddypress.php:1037
5733
+ #, php-format
5734
  msgid "%plural% for New Group Comment"
5735
  msgstr "%plural% por Nuevo Comentario Grupo"
5736
 
5739
  msgstr "Presentación Formulario de Contact Form 7"
5740
 
5741
  #: ../plugins/mycred-hook-contact-form7.php:19
5742
+ #, php-format
5743
  msgid "Awards %_plural% for successful form submissions (by logged in users)."
5744
  msgstr ""
5745
  "Concede %_plural% por el exitoso envío del formulario (por usuarios que han "
5746
  "iniciado sesión)"
5747
 
5748
+ #: ../plugins/mycred-hook-contact-form7.php:110 ../plugins/mycred-hook-
5749
+ #: gravityforms.php:86
5750
  msgid "No forms found."
5751
  msgstr "No se ha encontrado ningun formulario."
5752
 
5755
  msgstr "Gestionamiento de Eventos"
5756
 
5757
  #: ../plugins/mycred-hook-events-manager-light.php:19
5758
+ #, php-format
5759
  msgid "Awards %_plural% for users attending events."
5760
  msgstr "Concede %_plural% para usuarios que asistieron actividades o eventos."
5761
 
5772
  msgstr "GD Star Rating"
5773
 
5774
  #: ../plugins/mycred-hook-gd-star-rating.php:19
5775
+ #, php-format
5776
  msgid "Awards %_plural% for users rate items using the GD Star Rating plugin."
5777
  msgstr ""
5778
+ "Concede %_plural% a usuarios que evaluan artículos a través de GD Star "
5779
+ "Rating plugin."
5780
 
5781
  #: ../plugins/mycred-hook-gd-star-rating.php:103
5782
  msgid "Rating"
5793
  msgstr "Entregas de Gravityform"
5794
 
5795
  #: ../plugins/mycred-hook-gravityforms.php:19
5796
+ #, php-format
5797
  msgid "Awards %_plural% for successful form submissions."
5798
  msgstr "Concede %_plural% por el exitoso envío del formularios."
5799
 
5803
  msgstr "Invite Anyone Plugin"
5804
 
5805
  #: ../plugins/mycred-hook-invite-anyone.php:19
5806
+ #, php-format
5807
  msgid ""
5808
  "Awards %_plural% for sending invitations and/or %_plural% if the invite is "
5809
  "accepted."
5811
  "Concede %_plural% por mandar invitaciones y/o %_plural% si se acepta la "
5812
  "invitación."
5813
 
5814
+ #: ../plugins/mycred-hook-invite-anyone.php:212
5815
+ #, php-format
5816
  msgid "%plural% for Sending An Invite"
5817
  msgstr "%plural% por Enviar una Invitación"
5818
 
5819
+ #: ../plugins/mycred-hook-invite-anyone.php:228
5820
  msgid "Maximum number of invites that grants %_plural%. Use zero for unlimited."
5821
  msgstr ""
5822
  "El maximo numero de invitaciones que conceden %_plural%. Ponga cero para "
5823
  "ilimitado."
5824
 
5825
+ #: ../plugins/mycred-hook-invite-anyone.php:232
5826
+ #, php-format
5827
  msgid "%plural% for Accepting An Invite"
5828
  msgstr "%plural% por Aceptar una Invitación"
5829
 
5830
+ #: ../plugins/mycred-hook-invite-anyone.php:236
5831
+ #, php-format
5832
  msgid "%plural% for each invited user that accepts an invitation."
5833
  msgstr "%plural% por cada usuario invitado que acepta la invitación."
5834
 
5835
+ #: ../plugins/mycred-hook-invite-anyone.php:249
5836
  msgid ""
5837
  "Maximum number of accepted invitations that grants %_plural%. Use zero for "
5838
  "unlimited."
5839
  msgstr ""
5840
+ "El maximo numero de invitaciones acceptados que conceden %_plural%. Ponga "
5841
+ "cero para ilimitado."
5842
 
5843
  #: ../plugins/mycred-hook-jetpack.php:18
5844
  msgid "Jetpack Subscriptions"
5845
  msgstr "Suscripciónes a Jetpack"
5846
 
5847
  #: ../plugins/mycred-hook-jetpack.php:19
5848
+ #, php-format
5849
+ msgid ""
5850
+ "Awards %_plural% for users signing up for site or comment updates using "
5851
+ "Jetpack."
5852
  msgstr ""
5853
+ "Concede %_plural% a usuarios por incribirse a las actualizaciones del sitio "
5854
+ "web o a los comentarios atraves de Jetpack."
5855
 
5856
  #: ../plugins/mycred-hook-jetpack.php:499
5857
  msgid "Site Subscriptions"
5866
  msgstr "Simple:Press"
5867
 
5868
  #: ../plugins/mycred-hook-simplepress.php:19
5869
+ #, php-format
5870
  msgid "Awards %_plural% for Simple:Press actions."
5871
  msgstr "Concede %_plural% por acciones en Simple:Press."
5872
 
5873
  #: ../plugins/mycred-hook-simplepress.php:349
5874
+ #, php-format
5875
  msgid "%plural% for New Topic Post"
5876
  msgstr "%plural% por Nueva Publicacion "
5877
 
5878
  #: ../plugins/mycred-hook-simplepress.php:363
5879
+ #, php-format
5880
  msgid "Topic authors can receive %_plural% for posting on their own Topic"
5881
  msgstr "Autor de la tema puede recibir %_plural% por publicar su propia Tema"
5882
 
5883
  #: ../plugins/mycred-hook-simplepress.php:373
5884
+ #, php-format
5885
  msgid "%plural% for Topic Post Deletion"
5886
  msgstr "%plural% por Borrar la Tema del Post"
5887
 
5890
  msgstr "WP Favorite Posts"
5891
 
5892
  #: ../plugins/mycred-hook-wp-favorite-posts.php:19
5893
+ #, php-format
5894
  msgid "Awards %_plural% for users adding posts to their favorites."
5895
  msgstr "Concede %_plural% a usuarios por añadir entradas a sus favoritos."
5896
 
5907
  msgstr "WP-Polls"
5908
 
5909
  #: ../plugins/mycred-hook-wp-polls.php:19
5910
+ #, php-format
5911
  msgid "Awards %_plural% for users voting in polls."
5912
  msgstr "Concede %_plural% a usuarios que han votado en encuestas."
lang/mycred-es_VE.mo CHANGED
Binary file
lang/mycred-es_VE.po CHANGED
@@ -3,8 +3,8 @@ msgstr ""
3
  "Project-Id-Version: myCRED\n"
4
  "Report-Msgid-Bugs-To: http://mycred.me\n"
5
  "POT-Creation-Date: 2014-03-20 14:26+0100\n"
6
- "PO-Revision-Date: Fri May 23 2014 11:01:38 GMT+0200 (CEST)\n"
7
- "Last-Translator: unimatrix0 <gabrieldk@merovingi.com>\n"
8
  "Language-Team: LANGUAGE <support@mycred.me>\n"
9
  "Language: Spanish (Venezuela)\n"
10
  "Plural-Forms: nplurals=2; plural=n != 1\n"
@@ -14,123 +14,132 @@ msgstr ""
14
  "X-Poedit-SourceCharset: UTF-8\n"
15
  "X-Generator: Loco - https://localise.biz/\n"
16
  "X-Poedit-Basepath: .\n"
17
- "X-Poedit-KeywordsList: _:1;gettext:1;dgettext:2;ngettext:1,2;dngettext:2,3;__:1;"
18
- "_e:1;_c:1;_n:1,2;_n_noop:1,2;_nc:1,2;__ngettext:1,2;__ngettext_noop:1,2;_x:1,2c;"
19
- "_ex:1,2c;_nx:1,2,4c;_nx_noop:1,2,3c;_n_js:1,2;_nx_js:1,2,3c;esc_attr__:1;"
20
- "esc_html__:1;esc_attr_e:1;esc_html_e:1;esc_attr_x:1,2c;esc_html_x:1,2c;"
21
- "comments_number_link:2,3;t:1;st:1;trans:1;transChoice:1,2\n"
22
- "X-Poedit-SearchPath-0: /Users/gabriel/Sites/paypana/wp-content/plugins/mycred\n"
 
23
  "X-Poedit-SearchPath-1: .\n"
24
  "X-Loco-Target-Locale: es_VE"
25
 
26
- #: ../mycred.php:398
27
  msgid "Balance"
28
  msgstr "Saldo"
29
 
30
- #: ../mycred.php:423
31
  msgid "%label% History"
32
  msgstr "%lavel% Historial"
33
 
34
- #: ../mycred.php:476
35
  msgid "No balances available."
36
  msgstr "No hay saldos disponibles."
37
 
38
- #: ../mycred.php:522
 
39
  msgid "About %s"
40
  msgstr "Sobre"
41
 
42
- #: ../mycred.php:531
43
  msgid "Awesome People"
44
  msgstr "Gente genial"
45
 
46
- #: ../mycred.php:616 ../mycred.php:640 ../addons/ranks/myCRED-addon-ranks.php:230 ../addons/ranks/myCRED-addon-ranks.php:897 ../addons/sell-content/myCRED-addon-sell-content.php:309 ../addons/transfer/myCRED-addon-transfer.php:132 ../includes/mycred-shortcodes.php:535
 
 
 
47
  msgid "Processing..."
48
  msgstr "Procesando..."
49
 
50
- #: ../mycred.php:617
51
  msgid ""
52
- "Warning! All entries in your log will be permanently removed! This can not be "
53
- "undone!"
54
  msgstr ""
55
- "¡Aviso! Todas las entradas en su registro seran permanentemente borrado! ¡Esto "
56
- "no se puede deshacer!"
57
 
58
- #: ../mycred.php:618
59
  msgid ""
60
  "All log entries belonging to deleted users will be permanently deleted! This "
61
  "can not be undone!"
62
  msgstr ""
63
- "¡Todas las entradas de registro perteneciendo al usuario seran permanentemente "
64
- "borradas! ¡Esto no se puede deshacer!"
65
 
66
- #: ../mycred.php:619
67
  msgid "Warning! All user balances will be set to zero! This can not be undone!"
68
  msgstr ""
69
  "¡Aviso! ¡Todo los saldos del usuario seran puesto a cero! ¡Esto no se puede "
70
  "deshacer!"
71
 
72
- #: ../mycred.php:620
73
  msgid "Done!"
74
  msgstr "¡Realizado!"
75
 
76
- #: ../mycred.php:621 ../mycred.php:639 ../mycred.php:657
77
  msgid "Close"
78
  msgstr "Cerrar"
79
 
80
- #: ../mycred.php:622
81
  msgid "Export users %plural%"
82
  msgstr "Exportar usuarios %plural%"
83
 
84
- #: ../mycred.php:638
85
  msgid "Edit Users Balance"
86
  msgstr "Editar saldo del usuario"
87
 
88
- #: ../mycred.php:656
89
  msgid "Edit Log Entry"
90
  msgstr "Edidar entrada de registro"
91
 
92
- #: ../mycred.php:658
93
  msgid "Updating..."
94
  msgstr "Actualizando..."
95
 
96
- #: ../mycred.php:660
97
  msgid "Are you sure you want to delete this log entry? This can not be undone!"
98
  msgstr ""
99
  "¿Esta seguro que quiere borrar esta entrada de registro? ¡Esto no se puede "
100
  "deshacer!"
101
 
102
- #: ../mycred.php:661
103
  msgid "Log entry updated"
104
  msgstr "Entrada de registro actualizado"
105
 
106
- #: ../mycred.php:713 ../mycred.php:734 ../addons/email-notices/myCRED-addon-email-notices.php:595 ../addons/gateway/event-booking/mycred-eventsmanager-pro.php:458 ../addons/gateway/event-booking/mycred-eventsmanager.php:537
 
 
107
  msgid "Setup"
108
  msgstr "Configurar"
109
 
110
- #: ../mycred.php:715 ../addons/gateway/carts/mycred-marketpress.php:360 ../includes/mycred-network.php:186 ../modules/mycred-module-settings.php:20 ../modules/mycred-module-settings.php:21 ../modules/mycred-module-settings.php:22
 
 
111
  msgid "Settings"
112
  msgstr "Configuraciones"
113
 
114
- #: ../mycred.php:738 ../modules/mycred-module-addons.php:360
115
  msgid "About"
116
  msgstr "Acerca de"
117
 
118
- #: ../mycred.php:739
119
  msgid "Tutorials"
120
  msgstr "Tutoriales"
121
 
122
- #: ../mycred.php:740
123
  msgid "Codex"
124
  msgstr "Códice"
125
 
126
- #: ../mycred.php:741
127
  msgid "Store"
128
  msgstr "Tienda"
129
 
130
- #: ../mycred.php:755
131
  msgid ""
132
- "Make sure to backup your database and files before updating, in case anything "
133
- "goes wrong!"
134
  msgstr ""
135
  "Antes de actualizar, asegura crear copias de seguridad de su base de datos y "
136
  "archivo, por si acaso!"
@@ -143,7 +152,8 @@ msgstr "Historia"
143
  msgid "This Hook has no settings"
144
  msgstr "Este gancho no ha sido configurado"
145
 
146
- #: ../abstracts/mycred-abstract-hook.php:157 ../modules/mycred-module-hooks.php:1192
 
147
  msgid "No limit"
148
  msgstr "Sin Limite"
149
 
@@ -163,7 +173,13 @@ msgstr "Una vez cada 7 dias"
163
  msgid "Once per day (reset at midnight)"
164
  msgstr "Una vez al dia (reinicializado al medianoche)"
165
 
166
- #: ../abstracts/mycred-abstract-hook.php:168 ../addons/banking/abstracts/mycred-abstract-service.php:342 ../addons/buy-creds/myCRED-addon-buy-creds.php:390 ../addons/buy-creds/myCRED-addon-buy-creds.php:411 ../addons/buy-creds/abstracts/mycred-abstract-payment-gateway.php:804 ../addons/buy-creds/abstracts/mycred-abstract-payment-gateway.php:827 ../addons/buy-creds/gateways/zombaio.php:375 ../addons/email-notices/myCRED-addon-email-notices.php:179 ../addons/email-notices/myCRED-addon-email-notices.php:745
 
 
 
 
 
 
167
  msgid "Select"
168
  msgstr "Seleccionar"
169
 
@@ -171,7 +187,8 @@ msgstr "Seleccionar"
171
  msgid "myCRED_Module() Error. A Module ID is required!"
172
  msgstr "Error de myCRED_Module(). ¡Se requiere una ID de Modulo!"
173
 
174
- #: ../abstracts/mycred-abstract-module.php:343 ../abstracts/mycred-abstract-module.php:351
 
175
  msgid "Surprise"
176
  msgstr "Sorpresa"
177
 
@@ -183,11 +200,14 @@ msgstr "haga clic para cerrar"
183
  msgid "click to open"
184
  msgstr "haga clic para abrir"
185
 
186
- #: ../abstracts/mycred-abstract-module.php:472 ../addons/banking/myCRED-addon-banking.php:163 ../addons/buy-creds/myCRED-addon-buy-creds.php:488
 
187
  msgid "Settings Updated"
188
  msgstr "Configuraciones Actualizadas"
189
 
190
- #: ../addons/banking/myCRED-addon-banking.php:42 ../addons/banking/myCRED-addon-banking.php:43 ../addons/banking/myCRED-addon-banking.php:44 ../modules/mycred-module-addons.php:146
 
 
191
  msgid "Banking"
192
  msgstr "Banco"
193
 
@@ -196,42 +216,50 @@ msgid "Compound Interest"
196
  msgstr "Interés Compuesto"
197
 
198
  #: ../addons/banking/myCRED-addon-banking.php:104
 
199
  msgid ""
200
  "Apply an interest rate on your users %_plural% balances. Interest rate is "
201
  "annual and is compounded daily as long as this service is enabled. Positive "
202
- "interest rate leads to users gaining %_plural% while a negative interest rate "
203
- "will to users loosing %_plural%."
204
  msgstr ""
205
- "Aplica una tasa de interés al saldo [.....] de sus usuarios. La tasa es anual y "
206
- "es compuesto diariamente mientras que este servicio esta activada. Un tipo de "
207
- "interés positiva causara a los usuarios a ganar [.....] mientras que un tipo de "
208
- "interés negativa causara a los usuarios a perder %_plural%."
209
 
210
  #: ../addons/banking/myCRED-addon-banking.php:110
211
  msgid "Recurring Payouts"
212
  msgstr "Pagos Recurrentes"
213
 
214
  #: ../addons/banking/myCRED-addon-banking.php:111
 
215
  msgid ""
216
- "Give your users %_plural% on a regular basis with the option to set the number "
217
- "of times you want this payout to run (cycles)."
218
  msgstr ""
219
  "Da a tus usuarios %_plural% a intervalos regulares con la opción de ajustar "
220
  "cuantas vezes quieres que este pago se repita (ciclos)"
221
 
222
- #: ../addons/banking/myCRED-addon-banking.php:156 ../addons/buy-creds/myCRED-addon-buy-creds.php:473 ../addons/buy-creds/myCRED-addon-buy-creds.php:603 ../includes/mycred-network.php:160 ../modules/mycred-module-addons.php:266 ../modules/mycred-module-hooks.php:157 ../modules/mycred-module-log.php:322 ../modules/mycred-module-log.php:575 ../modules/mycred-module-settings.php:312
 
 
 
 
223
  msgid "Access Denied"
224
  msgstr "Acceso Denegado"
225
 
226
  #: ../addons/banking/myCRED-addon-banking.php:167
 
227
  msgid "%s Banking"
228
  msgstr "%s Bancario"
229
 
230
- #: ../addons/banking/myCRED-addon-banking.php:168 ../modules/mycred-module-addons.php:147
 
231
  msgid "Setup recurring payouts or offer / charge interest on user account balances."
232
  msgstr ""
233
- "Configura los pagos recurrentes u ofrecer / cobrar interés sobre los saldos de "
234
- "las cuentas de usuarios."
235
 
236
  #: ../addons/banking/myCRED-addon-banking.php:171
237
  msgid "WP-Cron deactivation detected!"
@@ -241,11 +269,13 @@ msgstr "¡Se detecto la desactivación de WP-Cron!"
241
  msgid "Warning! This add-on requires WP - Cron to work."
242
  msgstr "¡Aviso! Esta extensión requiere WP - Cron para funcionar."
243
 
244
- #: ../addons/banking/myCRED-addon-banking.php:188 ../addons/buy-creds/myCRED-addon-buy-creds.php:549 ../modules/mycred-module-hooks.php:182
 
245
  msgid "Enable"
246
  msgstr "Activar"
247
 
248
- #: ../addons/banking/myCRED-addon-banking.php:201 ../modules/mycred-module-hooks.php:197
 
249
  msgid "Update Changes"
250
  msgstr "Actualizar Cambios"
251
 
@@ -300,9 +330,12 @@ msgstr "Pagado / Cobrado"
300
 
301
  #: ../addons/banking/services/mycred-bank-service-interest.php:288
302
  msgid "The interest rate can be either positive or negative and is compounded daily."
303
- msgstr "La tasa de interés puede ser o positivo o negativo y es compuesto diariamente."
 
 
304
 
305
- #: ../addons/banking/services/mycred-bank-service-interest.php:291 ../addons/coupons/myCRED-addon-coupons.php:392
 
306
  msgid "Minimum Balance"
307
  msgstr "Saldo Minimo"
308
 
@@ -311,24 +344,41 @@ msgid "The minimum requires balance for interest to apply."
311
  msgstr "El minimo saldo necesario para aplicar una tasa de interés."
312
 
313
  #. can also be "Plantilla de Bitácora"
314
- #: ../addons/banking/services/mycred-bank-service-interest.php:298 ../addons/banking/services/mycred-bank-service-payouts.php:252 ../addons/buy-creds/myCRED-addon-buy-creds.php:368 ../addons/buy-creds/myCRED-addon-buy-creds.php:427 ../addons/coupons/myCRED-addon-coupons.php:440 ../addons/gateway/carts/mycred-marketpress.php:384 ../addons/gateway/carts/mycred-marketpress.php:417 ../addons/gateway/carts/mycred-woocommerce.php:98 ../addons/gateway/carts/mycred-woocommerce.php:164 ../addons/gateway/carts/mycred-wpecommerce.php:367 ../modules/mycred-module-hooks.php:520 ../modules/mycred-module-hooks.php:1389 ../modules/mycred-module-hooks.php:1729 ../plugins/mycred-hook-badgeOS.php:115 ../plugins/mycred-hook-badgeOS.php:117 ../plugins/mycred-hook-badgeOS.php:126 ../plugins/mycred-hook-events-manager-light.php:153 ../plugins/mycred-hook-events-manager-light.php:166 ../plugins/mycred-hook-gd-star-rating.php:109 ../plugins/mycred-hook-gd-star-rating.php:122 ../plugins/mycred-hook-wp-favorite-posts.php:135 ../plugins/mycred-hook-wp-favorite-posts.php:148 ../plugins/mycred-hook-wp-polls.php:136
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
315
  msgid "Log Template"
316
  msgstr "Plantilla de Registro"
317
 
318
- #: ../addons/banking/services/mycred-bank-service-interest.php:305 ../addons/banking/services/mycred-bank-service-payouts.php:259
 
319
  msgid "Run Time"
320
  msgstr "Tiempo de Ejecución"
321
 
322
- #: ../addons/banking/services/mycred-bank-service-interest.php:309 ../addons/banking/services/mycred-bank-service-payouts.php:263
 
323
  msgid ""
324
- "For large websites, if you are running into time out issues during payouts, you "
325
- "can set the number of seconds a process can run. Use zero for unlimited, but be "
326
- "careful especially if you are on a shared server."
327
  msgstr ""
328
  "Para sitios web grandes, si tienes problemas de expiramiento durante pagos, "
329
- "puedes ajustar cuantos segundos un proceso puede operar. Ponga cero si quiere "
330
- "ilimitado, pero tenga cuidado especialmente si esta usando un servidor "
331
- "compartido."
332
 
333
  #: ../addons/banking/services/mycred-bank-service-payouts.php:21
334
  msgid "Daily %_plural%"
@@ -342,7 +392,10 @@ msgstr "Todavia no ejecutado"
342
  msgid "Pay Users"
343
  msgstr "Pagar a los Usuarios"
344
 
345
- #: ../addons/banking/services/mycred-bank-service-payouts.php:222 ../addons/buy-creds/myCRED-addon-buy-creds.php:653 ../addons/buy-creds/myCRED-addon-buy-creds.php:1156 ../addons/buy-creds/abstracts/mycred-abstract-payment-gateway.php:425 ../includes/mycred-admin.php:371 ../includes/mycred-admin.php:482
 
 
 
346
  msgid "Amount"
347
  msgstr "Cantidad"
348
 
@@ -350,11 +403,14 @@ msgstr "Cantidad"
350
  msgid "Can not be zero."
351
  msgstr "No puede ser cero."
352
 
353
- #: ../addons/banking/services/mycred-bank-service-payouts.php:228 ../addons/banking/services/mycred-bank-service-payouts.php:241 ../modules/mycred-module-hooks.php:1744
 
 
354
  msgid "Interval"
355
  msgstr "Interval"
356
 
357
- #: ../addons/banking/services/mycred-bank-service-payouts.php:233 ../addons/banking/services/mycred-bank-service-payouts.php:242
 
358
  msgid "Cycles"
359
  msgstr "Ciclos"
360
 
@@ -369,24 +425,25 @@ msgstr "Ejecución Reciente / Activado"
369
  #: ../addons/banking/services/mycred-bank-service-payouts.php:241
370
  msgid ""
371
  "Select how often you want to award %_plural%. Note that when this service is "
372
- "enabled, the first payout will be in the beginning of the next period. So with "
373
- "a \"Daily\" interval, the first payout will occur first thing in the morning."
 
374
  msgstr ""
375
  "Elige la frecuencia con cual quieres conceder %_plural%. Ten en cuenta que "
376
- "cuando este servicio está activado, el primer pago se realizara al comienzo del "
377
- "siguiente período. Así que con la frecuencia de \"Diario\", el primer pago se "
378
- "realizará a primera hora de la mañana proxima."
379
 
380
  #: ../addons/banking/services/mycred-bank-service-payouts.php:242
381
  msgid ""
382
- "Cycles let you choose how many intervals this service should run. Each time a "
383
- "cycle runs, the value will decrease until it hits zero, in which case this "
384
  "service will deactivate itself. Use -1 to run unlimited times."
385
  msgstr ""
386
- "Ciclos te permiten ajustar por cuantos intervalos este servicio debe ejecutarse."
387
- " Cada vez que se ejecuta un ciclo, el valor disminuirá hasta que llegue a cero, "
388
- "en cuyo caso este servicio se desactivará a sí mismo. Utilice -1 para que se "
389
- "ejecute ilimitadas veces."
390
 
391
  #: ../addons/banking/services/mycred-bank-service-payouts.php:243
392
  msgid "Important"
@@ -394,16 +451,17 @@ msgstr "Importante"
394
 
395
  #: ../addons/banking/services/mycred-bank-service-payouts.php:243
396
  msgid ""
397
- "You can always stop payouts by deactivating this service. Just remember that if "
398
- "you deactivate while there are cycles left, this service will continue on when "
399
- "it gets re-activated. Set cycles to zero to reset."
400
  msgstr ""
401
  "Siempre se puede detener los desembolsos mediante la desactivación de este "
402
- "servicio. Pero recuerda que si lo desactivas mientras que todavia quedan ciclos "
403
- "para completar, este servicio volverá a continuar en cuando se vuelvá a activar."
404
- " Fija o configura los ciclos a cero para reiniciar.\n"
405
 
406
- #: ../addons/banking/services/mycred-bank-service-payouts.php:245 ../includes/mycred-install.php:559 ../modules/mycred-module-settings.php:393
 
407
  msgid "Excludes"
408
  msgstr "Excluye"
409
 
@@ -412,106 +470,127 @@ msgid ""
412
  "Comma separated list of user IDs to exclude from this service. No spaces "
413
  "allowed!"
414
  msgstr ""
415
- "Lista separada por comas de los IDs de usuario para excluir de este servicio. "
416
- "¡No se permiten espacios!"
417
 
418
- #: ../addons/buy-creds/myCRED-addon-buy-creds.php:55 ../addons/buy-creds/myCRED-addon-buy-creds.php:56 ../addons/buy-creds/myCRED-addon-buy-creds.php:57
 
419
  msgid "Payment Gateways"
420
  msgstr "Pasarela de Pago"
421
 
422
- #: ../addons/buy-creds/myCRED-addon-buy-creds.php:188
423
  msgid "buyCRED Purchase Log"
424
  msgstr "compraCRED Registro de Compras"
425
 
426
- #: ../addons/buy-creds/myCRED-addon-buy-creds.php:189 ../addons/buy-creds/myCRED-addon-buy-creds.php:417 ../addons/buy-creds/myCRED-addon-buy-creds.php:484
 
427
  msgid "Purchase Log"
428
  msgstr "Registro de Compras"
429
 
430
- #: ../addons/buy-creds/myCRED-addon-buy-creds.php:277 ../addons/gateway/event-booking/mycred-eventespresso3.php:26 ../addons/gateway/event-booking/mycred-eventsmanager-pro.php:475 ../addons/gateway/event-booking/mycred-eventsmanager.php:540 ../addons/sell-content/myCRED-addon-sell-content.php:361
 
 
 
431
  msgid "Payments"
432
  msgstr "Pagos"
433
 
434
- #: ../addons/buy-creds/myCRED-addon-buy-creds.php:307
435
  msgid "Please login to purchase %_plural%"
436
  msgstr "Identifícate antes de comprar %_plural%"
437
 
438
- #: ../addons/buy-creds/myCRED-addon-buy-creds.php:322
 
439
  msgid "Gift purchase from %display_name%."
440
  msgstr "Regalo comprado de parte de %display_name%."
441
 
442
- #: ../addons/buy-creds/myCRED-addon-buy-creds.php:340 ../addons/ranks/myCRED-addon-ranks.php:624
 
443
  msgid "Minimum %plural%"
444
  msgstr "Minimo %_plural%"
445
 
446
- #: ../addons/buy-creds/myCRED-addon-buy-creds.php:344
447
  msgid "Minimum amount of %plural% a user must purchase. Will default to 1."
448
  msgstr ""
449
- "La mínima cantidad de %plural% que el usuario debe comprar. Sera predefinido a "
450
- "1."
451
-
452
- #: ../addons/buy-creds/myCRED-addon-buy-creds.php:349 ../addons/coupons/myCRED-addon-coupons.php:315 ../addons/gateway/carts/mycred-marketpress.php:378 ../addons/gateway/carts/mycred-woocommerce.php:108 ../addons/gateway/carts/mycred-wpecommerce.php:350 ../addons/gateway/event-booking/mycred-eventespresso3.php:437 ../addons/gateway/event-booking/mycred-eventsmanager-pro.php:463 ../addons/gateway/event-booking/mycred-eventsmanager.php:550 ../addons/sell-content/myCRED-addon-sell-content.php:349 ../includes/mycred-widgets.php:204 ../includes/mycred-widgets.php:401 ../includes/importers/mycred-cubepoints.php:365
 
 
 
 
 
 
 
 
453
  msgid "Point Type"
454
  msgstr "Tipo de Puntos"
455
 
456
- #: ../addons/buy-creds/myCRED-addon-buy-creds.php:361
457
  msgid "Login Template"
458
  msgstr "Plantilla de Ingreso"
459
 
460
- #: ../addons/buy-creds/myCRED-addon-buy-creds.php:365
461
  msgid "Content to show when a user is not logged in."
462
  msgstr "Mostrar este contenido cuando un usuario no ha sido ingresado."
463
 
464
- #: ../addons/buy-creds/myCRED-addon-buy-creds.php:375
465
  msgid "Thank You Page"
466
  msgstr "Página de Agradecimiento"
467
 
468
- #: ../addons/buy-creds/myCRED-addon-buy-creds.php:378 ../addons/buy-creds/myCRED-addon-buy-creds.php:399
 
469
  msgid "Custom URL"
470
  msgstr "URL Personalizada"
471
 
472
- #: ../addons/buy-creds/myCRED-addon-buy-creds.php:383 ../addons/buy-creds/myCRED-addon-buy-creds.php:404
 
473
  msgid "Page"
474
  msgstr "Página"
475
 
476
- #: ../addons/buy-creds/myCRED-addon-buy-creds.php:396
477
  msgid "Cancellation Page"
478
  msgstr "Página de Cancelación"
479
 
480
- #: ../addons/buy-creds/myCRED-addon-buy-creds.php:419
481
  msgid "Show seperate log for %_plural% purchases."
482
  msgstr "Mostrar registro distinto para compras de %_plural%."
483
 
484
- #: ../addons/buy-creds/myCRED-addon-buy-creds.php:421
485
  msgid "Gifting"
486
  msgstr "Regalar"
487
 
488
- #: ../addons/buy-creds/myCRED-addon-buy-creds.php:423
 
489
  msgid "Allow users to buy %_plural% for other users."
490
  msgstr "Prmita que usuarios compren %_plural% para otros usuarios."
491
 
492
- #: ../addons/buy-creds/myCRED-addon-buy-creds.php:424
 
493
  msgid "Allow users to buy %_plural% for content authors."
494
  msgstr "Prmita que usuarios compren %_plural% para autores de contenido."
495
 
496
- #: ../addons/buy-creds/myCRED-addon-buy-creds.php:484
 
497
  msgid "%s Payment Gateways"
498
  msgstr "%s Pasarelas de Pago"
499
 
500
- #: ../addons/buy-creds/myCRED-addon-buy-creds.php:484 ../addons/buy-creds/myCRED-addon-buy-creds.php:659
 
501
  msgid "buyCRED Settings"
502
  msgstr "Configuraciones de compraCRED"
503
 
504
- #: ../addons/buy-creds/myCRED-addon-buy-creds.php:490
505
  msgid "Select the payment gateways you want to offer your users to buy %plural%."
506
  msgstr ""
507
  "Elige la pasarela de pago que quieres ofrecer a tus usuarios con que comprar "
508
  "%plural%."
509
 
510
- #: ../addons/buy-creds/myCRED-addon-buy-creds.php:497
511
  msgid "Last Payment Notification"
512
  msgstr "Notificación de Pago Reciente"
513
 
514
- #: ../addons/buy-creds/myCRED-addon-buy-creds.php:499
515
  msgid ""
516
  "Here you can view the last payment confirmation that was sent to buyCRED for "
517
  "processing."
@@ -519,80 +598,89 @@ msgstr ""
519
  "Aquí puedes ver la confirmación del ultimo pago que fue enviado a compraCRED "
520
  "para su procesamiento."
521
 
522
- #: ../addons/buy-creds/myCRED-addon-buy-creds.php:502
523
  msgid "Details"
524
  msgstr "Detalles"
525
 
526
- #: ../addons/buy-creds/myCRED-addon-buy-creds.php:505 ../modules/mycred-module-log.php:541
 
527
  msgid "Time"
528
  msgstr "Tiempo"
529
 
530
- #: ../addons/buy-creds/myCRED-addon-buy-creds.php:509 ../addons/buy-creds/myCRED-addon-buy-creds.php:650 ../includes/mycred-overview.php:166 ../includes/mycred-overview.php:173 ../modules/mycred-module-addons.php:190
 
 
531
  msgid "Gateway"
532
  msgstr "Pasarela"
533
 
534
- #: ../addons/buy-creds/myCRED-addon-buy-creds.php:513 ../addons/buy-creds/myCRED-addon-buy-creds.php:655
 
535
  msgid "Transaction ID"
536
  msgstr "Identificación de la Transacción"
537
 
538
- #: ../addons/buy-creds/myCRED-addon-buy-creds.php:517
539
  msgid "Outcome"
540
  msgstr "Resultado"
541
 
542
- #: ../addons/buy-creds/myCRED-addon-buy-creds.php:521
543
  msgid "Gateway Log"
544
  msgstr "Registro de la Puerta de Enlace"
545
 
546
- #: ../addons/buy-creds/myCRED-addon-buy-creds.php:529
547
  msgid "No recorded calls found."
548
  msgstr "No se ha encontrado ningunas llamadas grabadas."
549
 
550
- #: ../addons/buy-creds/myCRED-addon-buy-creds.php:542
551
  msgid "Test Mode"
552
  msgstr "Modo de Prueba"
553
 
554
- #: ../addons/buy-creds/myCRED-addon-buy-creds.php:544
555
  msgid "Enabled"
556
  msgstr "Habilitado"
557
 
558
  #. also, "Inhabilitar"
559
- #: ../addons/buy-creds/myCRED-addon-buy-creds.php:547
560
  msgid "Disabled"
561
  msgstr "Deshactivado"
562
 
563
- #: ../addons/buy-creds/myCRED-addon-buy-creds.php:557
564
  msgid "Sandbox Mode"
565
  msgstr "Modo Entorno Aislado"
566
 
567
- #: ../addons/buy-creds/myCRED-addon-buy-creds.php:560
568
  msgid "Enable for test purchases."
569
  msgstr "Habilitar para compras de prueba."
570
 
571
- #: ../addons/buy-creds/myCRED-addon-buy-creds.php:577
572
  msgid "Update Gateway Settings"
573
  msgstr "Actualizar Configuraciones de la Pasarela de Pago"
574
 
575
- #: ../addons/buy-creds/myCRED-addon-buy-creds.php:651 ../addons/email-notices/myCRED-addon-email-notices.php:643 ../addons/email-notices/myCRED-addon-email-notices.php:772 ../includes/mycred-admin.php:477 ../includes/mycred-log.php:639 ../modules/mycred-module-log.php:540
 
 
 
576
  msgid "User"
577
  msgstr "Usuario"
578
 
579
- #: ../addons/buy-creds/myCRED-addon-buy-creds.php:652 ../includes/mycred-log.php:640
 
580
  msgid "Date"
581
  msgstr "Fecha"
582
 
583
- #: ../addons/buy-creds/myCRED-addon-buy-creds.php:654
584
  msgid "Payed"
585
  msgstr "Pagado"
586
 
587
- #: ../addons/buy-creds/myCRED-addon-buy-creds.php:659
588
  msgid "<strong>buy</strong>CRED Purchase Log"
589
  msgstr "Registro de Compras de <strong>compra</strong>CRED"
590
 
591
- #: ../addons/buy-creds/myCRED-addon-buy-creds.php:659 ../addons/gateway/event-booking/mycred-eventespresso3.php:367
 
592
  msgid "Gateway Settings"
593
  msgstr "Configuraciones de la Pasarela de Pago"
594
 
595
- #: ../addons/buy-creds/myCRED-addon-buy-creds.php:663
596
  msgid ""
597
  "Only completed purchases are shown here. Purchases that were cancelled or "
598
  "failed are not logged."
@@ -602,71 +690,82 @@ msgstr ""
602
  "\n"
603
  "\n"
604
 
605
- #: ../addons/buy-creds/myCRED-addon-buy-creds.php:772 ../includes/mycred-log.php:743 ../modules/mycred-module-log.php:462
 
606
  msgid "User Missing"
607
  msgstr "Usuario Ausente"
608
 
609
- #: ../addons/buy-creds/myCRED-addon-buy-creds.php:835 ../addons/sell-content/myCRED-addon-sell-content.php:1112
 
610
  msgid "No purchases found"
611
  msgstr "No se encontro ninguna compra"
612
 
613
- #: ../addons/buy-creds/myCRED-addon-buy-creds.php:907 ../addons/buy-creds/myCRED-addon-buy-creds.php:1004
 
614
  msgid "This Add-on needs to setup before you can use this shortcode."
615
  msgstr ""
616
  "Esta extensión (add-on) debe ser configurado antes de poder usar este código "
617
  "corto (shortcode)."
618
 
619
- #: ../addons/buy-creds/myCRED-addon-buy-creds.php:925 ../addons/buy-creds/myCRED-addon-buy-creds.php:1022
 
620
  msgid "No gateways installed."
621
  msgstr "Ningun pasarela de pago instalado."
622
 
623
- #: ../addons/buy-creds/myCRED-addon-buy-creds.php:926 ../addons/buy-creds/myCRED-addon-buy-creds.php:1023
 
624
  msgid "Gateway does not exist."
625
  msgstr "Puerta de enlace no existe."
626
 
627
- #: ../addons/buy-creds/myCRED-addon-buy-creds.php:962
628
  msgid "Yourself"
629
  msgstr "Tu mismo"
630
 
631
- #: ../addons/buy-creds/myCRED-addon-buy-creds.php:1024
632
  msgid "No active gateways found."
633
  msgstr "No se encuentra ningun puerta de enlace activo."
634
 
635
- #: ../addons/buy-creds/myCRED-addon-buy-creds.php:1025
636
  msgid "The selected gateway is not active."
637
  msgstr "La puerta de enlace seleccionada no esta activo."
638
 
639
- #: ../addons/buy-creds/myCRED-addon-buy-creds.php:1061
 
640
  msgid "Buy with %gateway%"
641
  msgstr "Compra con %gateway%"
642
 
643
- #: ../addons/buy-creds/myCRED-addon-buy-creds.php:1067 ../addons/sell-content/myCRED-addon-sell-content.php:44
 
644
  msgid "Buy Now"
645
  msgstr "Compra Ahora"
646
 
647
- #: ../addons/buy-creds/myCRED-addon-buy-creds.php:1107
648
  msgid "No users found"
649
  msgstr "Ningun Usuario Encontrado"
650
 
651
- #: ../addons/buy-creds/myCRED-addon-buy-creds.php:1117
652
  msgid "To"
653
  msgstr "A"
654
 
655
- #: ../addons/buy-creds/myCRED-addon-buy-creds.php:1134
656
  msgid "Select Amount"
657
  msgstr "Selecciona la Cantidad"
658
 
659
- #: ../addons/buy-creds/myCRED-addon-buy-creds.php:1158
660
  msgid "min."
661
  msgstr "min."
662
 
663
- #: ../addons/buy-creds/myCRED-addon-buy-creds.php:1166
664
  msgid "Select Gateway"
665
  msgstr "Selecciona la Pasarela de Pago"
666
 
667
  #: ../addons/buy-creds/abstracts/mycred-abstract-payment-gateway.php:89
668
- msgid "function myCRED_Payment_Gateway::process() must be over-ridden in a sub-class."
669
- msgstr "La función myCRED_Payment_Gateway::process() debe ser anulado en un sub-clase."
 
 
 
 
670
 
671
  #: ../addons/buy-creds/abstracts/mycred-abstract-payment-gateway.php:98
672
  msgid "function myCRED_Payment_Gateway::buy() must be over-ridden in a sub-class."
@@ -681,6 +780,7 @@ msgid "Incoming confirmation call detected"
681
  msgstr "Se detectó una llamada entrante de la confirmación."
682
 
683
  #: ../addons/buy-creds/abstracts/mycred-abstract-payment-gateway.php:213
 
684
  msgid "Gateway identified itself as \"%s\""
685
  msgstr "Puerta de enlace se identifico como \"%s\""
686
 
@@ -693,7 +793,8 @@ msgstr "Verificando la llamada"
693
  msgid "Test Payment"
694
  msgstr "Probar Pago"
695
 
696
- #: ../addons/buy-creds/abstracts/mycred-abstract-payment-gateway.php:264 ../addons/gateway/carts/mycred-marketpress.php:179
 
697
  msgid "Payment"
698
  msgstr "PAgo"
699
 
@@ -701,11 +802,13 @@ msgstr "PAgo"
701
  msgid "Cancel purchase"
702
  msgstr "Cancelar la compra"
703
 
704
- #: ../addons/buy-creds/abstracts/mycred-abstract-payment-gateway.php:360 ../includes/mycred-admin.php:364 ../includes/mycred-admin.php:470
 
705
  msgid "required"
706
  msgstr "necesario"
707
 
708
- #: ../addons/buy-creds/abstracts/mycred-abstract-payment-gateway.php:361 ../includes/mycred-admin.php:366 ../includes/mycred-admin.php:472
 
709
  msgid "optional"
710
  msgstr "opcional"
711
 
@@ -746,10 +849,12 @@ msgid "Choose Country"
746
  msgstr "Eliga el País"
747
 
748
  #: ../addons/buy-creds/abstracts/mycred-abstract-payment-gateway.php:419
 
749
  msgid "%s Purchase"
750
  msgstr "Compra %s"
751
 
752
- #: ../addons/buy-creds/abstracts/mycred-abstract-payment-gateway.php:424 ../addons/gateway/carts/mycred-wpecommerce.php:112
 
753
  msgid "Item"
754
  msgstr "Articulo"
755
 
@@ -763,16 +868,16 @@ msgstr "Depurar"
763
 
764
  #: ../addons/buy-creds/abstracts/mycred-abstract-payment-gateway.php:448
765
  msgid ""
766
- "Here you can see information that are collected and sent to this gateway. Debug "
767
- "information is only visible for administrators and are intended for "
768
- "troubleshooting / testing of this gateway. Please disable \"Sandbox Mode\" when "
769
- "you want to take this gateway online."
770
  msgstr ""
771
  "Aquí se puede ver la información que se recoge y se envía a esta puerta de "
772
- "enlace. La información de depuración sólo es visible para los administradores y "
773
- "está disponible resolver problemas algunas / pruebar este puerta de enlace. Por "
774
- "favor, desactivar \"Modo Entorno Aislado\" cuando se quiere activar este portal y "
775
- "ponerlo online."
776
 
777
  #: ../addons/buy-creds/abstracts/mycred-abstract-payment-gateway.php:452
778
  msgid "Section"
@@ -795,10 +900,12 @@ msgid "Gateway Response"
795
  msgstr "Respuesta de la Pasarela de Pago"
796
 
797
  #: ../addons/buy-creds/abstracts/mycred-abstract-payment-gateway.php:513
 
798
  msgid "Continue to %s"
799
  msgstr "Continuar a %s"
800
 
801
- #: ../addons/buy-creds/abstracts/mycred-abstract-payment-gateway.php:514 ../addons/buy-creds/gateways/bitpay.php:240
 
802
  msgid "Click here if you are not automatically redirected"
803
  msgstr "Haga clic aqui si no se encuentra redirigida automáticamente"
804
 
@@ -806,83 +913,116 @@ msgstr "Haga clic aqui si no se encuentra redirigida automáticamente"
806
  msgid "The following information will be sent to the gateway"
807
  msgstr "La información siguiente sera transmitido a la pasarela de pago"
808
 
809
- #: ../addons/buy-creds/abstracts/mycred-abstract-payment-gateway.php:1154
810
  msgid "Outside US"
811
  msgstr "Fuera de los EEUU"
812
 
813
- #: ../addons/buy-creds/abstracts/mycred-abstract-payment-gateway.php:1253
814
  msgid "Missing required information."
815
  msgstr "Falta información requerida."
816
 
817
- #: ../addons/buy-creds/abstracts/mycred-abstract-payment-gateway.php:1273
818
  msgid "Validating sale"
819
  msgstr "Validar venta"
820
 
821
- #: ../addons/buy-creds/abstracts/mycred-abstract-payment-gateway.php:1287
822
  msgid "Token mismatch"
823
  msgstr "La ficha no concuerda"
824
 
825
- #: ../addons/buy-creds/abstracts/mycred-abstract-payment-gateway.php:1299
826
  msgid "Price mismatch"
827
  msgstr "Discordancia de Precio"
828
 
829
- #: ../addons/buy-creds/abstracts/mycred-abstract-payment-gateway.php:1304
830
  msgid "Currency mismatch"
831
  msgstr "Discordancia de Moneda"
832
 
833
- #: ../addons/buy-creds/abstracts/mycred-abstract-payment-gateway.php:1316
834
  msgid "Duplicate transaction"
835
  msgstr "Transacción Duplicado"
836
 
837
- #: ../addons/buy-creds/gateways/bitpay.php:25 ../addons/buy-creds/gateways/netbilling.php:30 ../addons/buy-creds/gateways/paypal-standard.php:25 ../addons/buy-creds/gateways/skrill.php:30
 
 
838
  msgid "Purchase of myCRED %plural%"
839
  msgstr "Compra de myCRED %plural%"
840
 
841
- #: ../addons/buy-creds/gateways/bitpay.php:68 ../addons/buy-creds/gateways/netbilling.php:102 ../addons/buy-creds/gateways/paypal-standard.php:162 ../addons/buy-creds/gateways/skrill.php:134
 
 
842
  msgid "Sales Data is Valid"
843
  msgstr "Dato de Venta Invalido"
844
 
845
- #: ../addons/buy-creds/gateways/bitpay.php:72 ../addons/buy-creds/gateways/netbilling.php:106 ../addons/buy-creds/gateways/paypal-standard.php:166 ../addons/buy-creds/gateways/skrill.php:138
 
 
846
  msgid "Failed to validate sale"
847
  msgstr "No pudo validar la venta"
848
 
849
- #: ../addons/buy-creds/gateways/bitpay.php:78 ../addons/buy-creds/gateways/netbilling.php:112 ../addons/buy-creds/gateways/paypal-standard.php:172 ../addons/buy-creds/gateways/skrill.php:144 ../addons/buy-creds/gateways/zombaio.php:166
 
 
 
850
  msgid "Failed to verify caller"
851
  msgstr "No se pudo verificar la llamada"
852
 
853
- #: ../addons/buy-creds/gateways/bitpay.php:86 ../addons/buy-creds/gateways/netbilling.php:120 ../addons/buy-creds/gateways/paypal-standard.php:180 ../addons/buy-creds/gateways/skrill.php:152 ../addons/buy-creds/gateways/zombaio.php:171
 
 
 
 
854
  msgid "Attempting to credit %s to users account"
855
  msgstr "Intentando creditar %s a la cuenta de usuario"
856
 
857
- #: ../addons/buy-creds/gateways/bitpay.php:97 ../addons/buy-creds/gateways/netbilling.php:132 ../addons/buy-creds/gateways/paypal-standard.php:193 ../addons/buy-creds/gateways/skrill.php:164 ../addons/buy-creds/gateways/zombaio.php:207
 
 
 
 
858
  msgid "%s was successfully credited to users account"
859
  msgstr "%s fue abonado con éxito a la cuenta del usuario"
860
 
861
- #: ../addons/buy-creds/gateways/bitpay.php:104 ../addons/buy-creds/gateways/netbilling.php:139 ../addons/buy-creds/gateways/paypal-standard.php:200 ../addons/buy-creds/gateways/skrill.php:171 ../addons/buy-creds/gateways/zombaio.php:214
 
 
 
862
  msgid "Failed to credit the users account"
863
  msgstr "No se ha podido acreditar la cuenta del usuario"
864
 
865
- #: ../addons/buy-creds/gateways/bitpay.php:107 ../addons/buy-creds/gateways/netbilling.php:142 ../addons/buy-creds/gateways/paypal-standard.php:203 ../addons/buy-creds/gateways/skrill.php:174
 
 
866
  msgid "Purchase not paid"
867
  msgstr "Compra no pagado"
868
 
869
- #: ../addons/buy-creds/gateways/bitpay.php:111 ../addons/buy-creds/gateways/netbilling.php:146 ../addons/buy-creds/gateways/paypal-standard.php:207 ../addons/buy-creds/gateways/skrill.php:178 ../addons/buy-creds/gateways/zombaio.php:218
 
 
 
870
  msgid "Hanging up on caller"
871
  msgstr "Colgando al interlocutor"
872
 
873
- #: ../addons/buy-creds/gateways/bitpay.php:175 ../addons/buy-creds/gateways/netbilling.php:173 ../addons/buy-creds/gateways/paypal-standard.php:237 ../addons/buy-creds/gateways/skrill.php:208 ../addons/buy-creds/gateways/zombaio.php:241
 
 
 
874
  msgid "Please setup this gateway before attempting to make a purchase!"
875
- msgstr "¡Por favor configure esta puerta de enlace antes de intentar hacer una compra!"
 
 
876
 
877
- #: ../addons/buy-creds/gateways/bitpay.php:226 ../addons/buy-creds/gateways/bitpay.php:235 ../addons/buy-creds/gateways/netbilling.php:224 ../addons/buy-creds/gateways/paypal-standard.php:295 ../addons/buy-creds/gateways/skrill.php:301 ../addons/buy-creds/gateways/zombaio.php:271
 
 
 
878
  msgid "Processing payment &hellip;"
879
  msgstr "Procesando el pago &hellip;"
880
 
881
  #: ../addons/buy-creds/gateways/bitpay.php:228
882
  msgid "Could not create a BitPay Invoice. Please contact the site administrator!"
883
  msgstr ""
884
- "¡No se pudo crear una factura de BitPay. Por favor pongase en contacto con el "
885
- "administrador del sitio!"
886
 
887
  #: ../addons/buy-creds/gateways/bitpay.php:229
888
  msgid "Bitpay returned the following error message:"
@@ -900,7 +1040,9 @@ msgstr ""
900
  msgid "API Key"
901
  msgstr "Clave de la API"
902
 
903
- #: ../addons/buy-creds/gateways/bitpay.php:269 ../addons/buy-creds/gateways/paypal-standard.php:312 ../addons/buy-creds/gateways/skrill.php:319
 
 
904
  msgid "Currency"
905
  msgstr "Moneda"
906
 
@@ -908,19 +1050,28 @@ msgstr "Moneda"
908
  msgid "Currency Code"
909
  msgstr "Código de Moneda"
910
 
911
- #: ../addons/buy-creds/gateways/bitpay.php:276 ../addons/buy-creds/gateways/netbilling.php:260 ../addons/buy-creds/gateways/paypal-standard.php:326 ../addons/buy-creds/gateways/skrill.php:339
 
 
912
  msgid "Item Name"
913
  msgstr "Nombre de Artículo"
914
 
915
- #: ../addons/buy-creds/gateways/bitpay.php:280 ../addons/buy-creds/gateways/netbilling.php:264 ../addons/buy-creds/gateways/paypal-standard.php:330 ../addons/buy-creds/gateways/skrill.php:343
 
 
916
  msgid "Description of the item being purchased by the user."
917
  msgstr "Descripción del artículo que el usuario esta comprando."
918
 
919
- #: ../addons/buy-creds/gateways/bitpay.php:283 ../addons/buy-creds/gateways/netbilling.php:267 ../addons/buy-creds/gateways/paypal-standard.php:333 ../addons/buy-creds/gateways/skrill.php:346
 
 
 
920
  msgid "%plural% Exchange Rate"
921
  msgstr "%plural% Tipo de Cambio"
922
 
923
- #: ../addons/buy-creds/gateways/bitpay.php:286 ../addons/buy-creds/gateways/paypal-standard.php:336 ../addons/buy-creds/gateways/skrill.php:349
 
 
924
  msgid "Select currency"
925
  msgstr "Elige moneda"
926
 
@@ -944,19 +1095,24 @@ msgstr "Bajo"
944
  msgid "Full Notifications"
945
  msgstr "Notificaciones Completas"
946
 
947
- #: ../addons/buy-creds/gateways/bitpay.php:318 ../includes/mycred-network.php:196 ../includes/mycred-network.php:210
 
948
  msgid "No"
949
  msgstr "No"
950
 
951
- #: ../addons/buy-creds/gateways/bitpay.php:319 ../includes/mycred-network.php:192 ../includes/mycred-network.php:206
 
952
  msgid "Yes"
953
  msgstr "Sí"
954
 
955
- #: ../addons/buy-creds/gateways/netbilling.php:57 ../addons/buy-creds/gateways/skrill.php:89 ../addons/buy-creds/gateways/zombaio.php:103
 
956
  msgid "Invalid Call"
957
  msgstr "Llamada Invalida"
958
 
959
- #: ../addons/buy-creds/gateways/netbilling.php:59 ../addons/buy-creds/gateways/skrill.php:91 ../addons/buy-creds/gateways/zombaio.php:105
 
 
960
  msgid "Caller verified as \"%s\""
961
  msgstr "El llamador verificado como \"%s\""
962
 
@@ -983,13 +1139,13 @@ msgstr "Devolución de la URL CGI"
983
  #: ../addons/buy-creds/gateways/netbilling.php:277
984
  msgid ""
985
  "For this gateway to work, you must login to your NETbilling account and edit "
986
- "your site. Under \"Default payment form settings\" make sure the Postback CGI URL "
987
- "is set to the above address and \"Return method\" is set to POST."
988
  msgstr ""
989
- "Para que esta pasarela de pago funcione, deberia acceder a su cuenta NETbilling "
990
- "y editar su sitio web. En \"Configuración de Formularios Predefinido\" asegúrese "
991
- "de que la devolución de la URL CGI esta ajustada a la dirección indicada arriba "
992
- "y \"Método de Retorno\" está ajustado a POST."
993
 
994
  #: ../addons/buy-creds/gateways/netbilling.php:312
995
  msgid "Incorrect Credit Card number"
@@ -1020,10 +1176,12 @@ msgid "Connection established"
1020
  msgstr "Conexión establecida"
1021
 
1022
  #: ../addons/buy-creds/gateways/paypal-standard.php:92
 
1023
  msgid "Attempt: %d failed. Error: %s : %s"
1024
  msgstr "Intento: %d falló. Error: %s : %s"
1025
 
1026
  #: ../addons/buy-creds/gateways/paypal-standard.php:103
 
1027
  msgid "Secondary systems failing. Final note: %s : %s"
1028
  msgstr "Sistema secundaria fallando. Nota final: %s : %s"
1029
 
@@ -1035,19 +1193,24 @@ msgstr "Llamada verificada"
1035
  msgid "Call rejected"
1036
  msgstr "Llamada rechazada"
1037
 
1038
- #: ../addons/buy-creds/gateways/paypal-standard.php:223 ../addons/buy-creds/gateways/skrill.php:194
 
1039
  msgid "Success"
1040
  msgstr "Exito"
1041
 
1042
- #: ../addons/buy-creds/gateways/paypal-standard.php:224 ../addons/buy-creds/gateways/skrill.php:195
 
1043
  msgid "Thank you for your purchase"
1044
  msgstr "Gracias por su compra"
1045
 
1046
- #: ../addons/buy-creds/gateways/paypal-standard.php:290 ../addons/buy-creds/gateways/skrill.php:247
 
1047
  msgid "Return to "
1048
  msgstr "Volver a"
1049
 
1050
- #: ../addons/buy-creds/gateways/paypal-standard.php:317 ../addons/buy-creds/gateways/skrill.php:376 ../addons/gateway/event-booking/mycred-eventespresso3.php:455
 
 
1051
  msgid "Important!"
1052
  msgstr "¡Importante!"
1053
 
@@ -1058,8 +1221,8 @@ msgid ""
1058
  "Accept each transaction!"
1059
  msgstr ""
1060
  "Asegura que eliges una moneda que tu cuenta de Paypal soporta. Si no, la "
1061
- "transacción no sera aprobada hasta que ingresa en su cuenta de Paypal y accepta "
1062
- "cada transacción."
1063
 
1064
  #: ../addons/buy-creds/gateways/paypal-standard.php:320
1065
  msgid "Account Email"
@@ -1072,14 +1235,14 @@ msgstr "Dirección IPN"
1072
  #: ../addons/buy-creds/gateways/paypal-standard.php:343
1073
  msgid ""
1074
  "For this gateway to work, you must login to your PayPal account and under "
1075
- "\"Profile\" > \"Selling Tools\" enable \"Instant Payment Notifications\". Make sure "
1076
- "the \"Notification URL\" is set to the above address and that you have selected "
1077
- "\"Receive IPN messages (Enabled)\"."
1078
  msgstr ""
1079
- "Para que esta pasarela de pago funcione, debes ingresar en tu cuenta de Paypal "
1080
- "y en \"Perfil\" > \"Instrumentos de Venta\" activar \"Notificación de Pagos "
1081
- "Instantaneos\". Asegura que la \"URL de Notifición\" esta ajustado a la dirección "
1082
- "de arriba y que has seleccionado \"(Activar) Recibir mensajes IPN\"."
1083
 
1084
  #: ../addons/buy-creds/gateways/skrill.php:284
1085
  msgid "Product:"
@@ -1114,36 +1277,41 @@ msgstr "Correo electrónico de confirmación"
1114
  #: ../addons/buy-creds/gateways/skrill.php:355
1115
  msgid "Ask Skrill to send me a confirmation email for each successful purchase."
1116
  msgstr ""
1117
- "Pide a Skrill que me mande un email de confirmación para cada compra finalizada "
1118
- "con éxito."
1119
 
1120
  #: ../addons/buy-creds/gateways/skrill.php:358
1121
  msgid "Checkout Page"
1122
  msgstr "Página de Pago"
1123
 
1124
- #: ../addons/buy-creds/gateways/skrill.php:361 ../addons/gateway/carts/mycred-woocommerce.php:86 ../addons/ranks/myCRED-addon-ranks.php:767 ../addons/transfer/myCRED-addon-transfer.php:637 ../includes/mycred-widgets.php:197 ../includes/mycred-widgets.php:395 ../includes/mycred-widgets.php:587 ../modules/mycred-module-hooks.php:2302
 
 
 
 
1125
  msgid "Title"
1126
  msgstr "Titulo"
1127
 
1128
  #: ../addons/buy-creds/gateways/skrill.php:363
1129
  msgid "If left empty, your account email is used as title on the Skill Payment Page."
1130
  msgstr ""
1131
- "Si se deja vacío, el correo electrónico de su cuenta sera utilizada como título "
1132
- "en la Página de Pagos Skrill. "
1133
 
1134
- #: ../addons/buy-creds/gateways/skrill.php:366 ../addons/buy-creds/gateways/zombaio.php:306
 
1135
  msgid "Logo URL"
1136
  msgstr "URL del Logotipo"
1137
 
1138
  #: ../addons/buy-creds/gateways/skrill.php:368
1139
  msgid ""
1140
  "The URL to the image you want to use on the top of the gateway. For best "
1141
- "integration results we recommend you use logos with dimensions up to 200px in "
1142
- "width and 50px in height."
1143
  msgstr ""
1144
- "La URL de la imagen que quieres usar en la encima de la pasarela de pago. Para "
1145
- "obtener la mejor integración recomendamos que uses logotipos con dimensiones de "
1146
- "hasta 200 píxeles de ancho y 50 px de altura."
1147
 
1148
  #: ../addons/buy-creds/gateways/skrill.php:371
1149
  msgid "Confirmation Note"
@@ -1151,33 +1319,33 @@ msgstr "Nota de Confirmación"
1151
 
1152
  #: ../addons/buy-creds/gateways/skrill.php:373
1153
  msgid ""
1154
- "Optional text to show user once a transaction has been successfully completed. "
1155
- "This text is shown by Skrill."
1156
  msgstr ""
1157
- "Texto opcional a mostrar al usuario cuando la transacción haya sido completado "
1158
- "con éxito. Este texto sera mostrado por Skrill."
1159
 
1160
  #: ../addons/buy-creds/gateways/skrill.php:377
1161
  msgid ""
1162
- "By default all Skrill Merchant account accept payments via Bank Transfers. When "
1163
- "a user selects this option, no %_plural% are awarded! You will need to manually "
1164
- "award these once the bank transfer is completed."
1165
  msgstr ""
1166
- "Por defecto todas las cuentas Mercantiles de Skrill acceptan pagos a través de "
1167
- "transferencias bancarias. ¡Cuando un usuario elige esta opción, no se concede "
1168
- "%_plural%! Tendras que concederlos manualmente una vez que se haya realizado la "
1169
- "transferencia bancaria."
1170
 
1171
  #: ../addons/buy-creds/gateways/skrill.php:378
1172
  msgid ""
1173
  "By default purchases made using Skrill will result in users having to signup "
1174
- "for a Skrill account (if they do not have one already). You can contact Skrill "
1175
- "Merchant Services and request to disable this feature."
1176
  msgstr ""
1177
- "En forma predeterminada las compras hechas a través de Skrill precisan que el "
1178
- "usuario registre una cuenta de Skrill (si ya no la tiene). Puedes contactar a "
1179
- "los Servicios Mercantiles de Skrill y pedir que desactiven esta caracteristica "
1180
- "del proceso."
1181
 
1182
  #: ../addons/buy-creds/gateways/zombaio.php:154
1183
  msgid "Checking Transaction ID"
@@ -1226,15 +1394,19 @@ msgid ""
1226
  "For this gateway to work, login to ZOA and set the Postback URL to the above "
1227
  "address and click validate."
1228
  msgstr ""
1229
- "Para que esta puerta de enlace funcione, ingrese en ZOA y ajuste la devolución "
1230
- "de datos de la URL a la dirección que se encuentra arriba y haga clic sobre "
1231
- "validar."
1232
 
1233
- #: ../addons/coupons/myCRED-addon-coupons.php:86 ../addons/coupons/myCRED-addon-coupons.php:92 ../addons/coupons/myCRED-addon-coupons.php:438 ../includes/mycred-overview.php:188 ../includes/mycred-overview.php:195 ../modules/mycred-module-addons.php:168
 
 
 
1234
  msgid "Coupons"
1235
  msgstr "Cupones"
1236
 
1237
- #: ../addons/coupons/myCRED-addon-coupons.php:87 ../addons/coupons/includes/mycred-coupon-shortcodes.php:69
 
1238
  msgid "Coupon"
1239
  msgstr "Cupón"
1240
 
@@ -1266,11 +1438,16 @@ msgstr "Ningun Cupón Encontrado"
1266
  msgid "No coupons found in Trash"
1267
  msgstr "Ningun Cupón Encontrado en Papelera"
1268
 
1269
- #: ../addons/coupons/myCRED-addon-coupons.php:98 ../addons/email-notices/myCRED-addon-email-notices.php:148 ../addons/email-notices/myCRED-addon-email-notices.php:154 ../addons/email-notices/myCRED-addon-email-notices.php:160 ../addons/email-notices/myCRED-addon-email-notices.php:258 ../modules/mycred-module-addons.php:179
 
 
 
 
1270
  msgid "Email Notices"
1271
  msgstr "Avisos por Correo Electrónico"
1272
 
1273
- #: ../addons/coupons/myCRED-addon-coupons.php:119 ../addons/coupons/myCRED-addon-coupons.php:122
 
1274
  msgid "Coupon updated."
1275
  msgstr "Cupón Actualizado"
1276
 
@@ -1294,7 +1471,8 @@ msgstr "Unico Código de Cupón"
1294
  msgid "Coupon Code"
1295
  msgstr "Código de Cupón"
1296
 
1297
- #: ../addons/coupons/myCRED-addon-coupons.php:157 ../addons/coupons/myCRED-addon-coupons.php:309
 
1298
  msgid "Value"
1299
  msgstr "Valor"
1300
 
@@ -1302,7 +1480,9 @@ msgstr "Valor"
1302
  msgid "Usage"
1303
  msgstr "Utilización"
1304
 
1305
- #: ../addons/coupons/myCRED-addon-coupons.php:159 ../addons/transfer/myCRED-addon-transfer.php:243 ../modules/mycred-module-hooks.php:1106 ../modules/mycred-module-hooks.php:1396
 
 
1306
  msgid "Limits"
1307
  msgstr "imites"
1308
 
@@ -1314,7 +1494,8 @@ msgstr "Expire"
1314
  msgid "not yet used"
1315
  msgstr "todavia no utilizado"
1316
 
1317
- #: ../addons/coupons/myCRED-addon-coupons.php:198 ../modules/mycred-module-hooks.php:1834
 
1318
  msgid "Total"
1319
  msgstr "Total"
1320
 
@@ -1331,6 +1512,7 @@ msgid "Expired"
1331
  msgstr "Caducado"
1332
 
1333
  #: ../addons/coupons/myCRED-addon-coupons.php:213
 
1334
  msgid "In %s time"
1335
  msgstr "En %s tiempo"
1336
 
@@ -1360,7 +1542,9 @@ msgstr "Caducar"
1360
 
1361
  #: ../addons/coupons/myCRED-addon-coupons.php:324
1362
  msgid "Optional date when this coupon expires. Expired coupons will be trashed."
1363
- msgstr "La fecha opcional cuando este cupón caduca. Cupones caducados seran destrozado."
 
 
1364
 
1365
  #: ../addons/coupons/myCRED-addon-coupons.php:353
1366
  msgid "Global Maximum"
@@ -1368,11 +1552,11 @@ msgstr "Máximo Global"
1368
 
1369
  #: ../addons/coupons/myCRED-addon-coupons.php:356
1370
  msgid ""
1371
- "The maximum number of times this coupon can be used. Note that the coupon will "
1372
- "be automatically trashed once this maximum is reached!"
1373
  msgstr ""
1374
- "El número máximo de veces que este cupón se puede utilizar. Ten en cuenta que "
1375
- "el cupón será colocado en la papelera de forma automática una vez que se "
1376
  "alcanza este máximo!"
1377
 
1378
  #. not clear if this is referring to the maximum number of users or to the maximum "points" a user can have or accrue?
@@ -1386,8 +1570,8 @@ msgstr "El máximo numero de veces que se puede utilizadar este cupón por un us
1386
 
1387
  #: ../addons/coupons/myCRED-addon-coupons.php:395
1388
  msgid ""
1389
- "Optional minimum balance a user must have in order to use this coupon. Use zero "
1390
- "to disable."
1391
  msgstr ""
1392
  "Mínimo saldo opcional que el usuario debe tener para utilizar este cupón. "
1393
  "Utilice cero para inhabilitar."
@@ -1398,19 +1582,20 @@ msgstr "Saldo Máximo"
1398
 
1399
  #: ../addons/coupons/myCRED-addon-coupons.php:402
1400
  msgid ""
1401
- "Optional maximum balance a user can have in order to use this coupon. Use zero "
1402
- "to disable."
1403
  msgstr ""
1404
  "Saldo máximo opcional que un usuario puede tener para usar este cupón. Ponga "
1405
  "cero para desactivar."
1406
 
1407
  #: ../addons/coupons/myCRED-addon-coupons.php:444
 
1408
  msgid ""
1409
  "Log entry for successful coupon redemption. Use %coupon% to show the coupon "
1410
  "code."
1411
  msgstr ""
1412
- "Entrada del registro al exitoso canje del cupón. Utilice %coupon% para mostrar "
1413
- "el código del cupón."
1414
 
1415
  #: ../addons/coupons/myCRED-addon-coupons.php:447
1416
  msgid "Invalid Coupon Message"
@@ -1442,11 +1627,11 @@ msgstr "Mensaje de Saldo Mínimo"
1442
 
1443
  #: ../addons/coupons/myCRED-addon-coupons.php:472
1444
  msgid ""
1445
- "Message to show when a user does not meet the minimum balance requirement. (if "
1446
- "used)"
1447
  msgstr ""
1448
- "Mostrar mensaje cuando el usuario no cumple con el saldo mínimo requerido. (si "
1449
- "se utiliza)"
1450
 
1451
  #: ../addons/coupons/myCRED-addon-coupons.php:475
1452
  msgid "Maximum Balance Message"
@@ -1454,11 +1639,11 @@ msgstr "Mensaje Saldo Máximo"
1454
 
1455
  #: ../addons/coupons/myCRED-addon-coupons.php:479
1456
  msgid ""
1457
- "Message to show when a user does not meet the maximum balance requirement. (if "
1458
- "used)"
1459
  msgstr ""
1460
- "Mostrar mensaje cuando un usuario no alcanza el saldo máximo requerido. (si se "
1461
- "utiliza)"
1462
 
1463
  #: ../addons/coupons/myCRED-addon-coupons.php:482
1464
  msgid "Success Message"
@@ -1476,341 +1661,436 @@ msgstr "Canje de cupones"
1476
  msgid "Apply Coupon"
1477
  msgstr "Aplica el Cupón"
1478
 
1479
- #: ../addons/email-notices/myCRED-addon-email-notices.php:149
 
1480
  msgid "Email Notice"
1481
  msgstr "Aviso por Correo Electrónico"
1482
 
1483
- #: ../addons/email-notices/myCRED-addon-email-notices.php:150 ../addons/ranks/myCRED-addon-ranks.php:248
 
1484
  msgid "Add New"
1485
  msgstr "Añade Nuevo"
1486
 
1487
- #: ../addons/email-notices/myCRED-addon-email-notices.php:151
1488
  msgid "Add New Notice"
1489
  msgstr "Añade Nueva Notificación"
1490
 
1491
- #: ../addons/email-notices/myCRED-addon-email-notices.php:152
1492
  msgid "Edit Notice"
1493
  msgstr "Editar Aviso"
1494
 
1495
- #: ../addons/email-notices/myCRED-addon-email-notices.php:153
1496
  msgid "New Notice"
1497
  msgstr "Nuevo Aviso"
1498
 
1499
- #: ../addons/email-notices/myCRED-addon-email-notices.php:155
1500
  msgid "View Notice"
1501
  msgstr "Ver Aviso"
1502
 
1503
- #: ../addons/email-notices/myCRED-addon-email-notices.php:156
1504
  msgid "Search Email Notices"
1505
  msgstr "Búsqueda de Avisos por Correo Electrónico"
1506
 
1507
- #: ../addons/email-notices/myCRED-addon-email-notices.php:157
1508
  msgid "No email notices found"
1509
  msgstr "Ningun aviso por correo electrónico encontrado"
1510
 
1511
- #: ../addons/email-notices/myCRED-addon-email-notices.php:158
1512
  msgid "No email notices found in Trash"
1513
  msgstr "Ningun aviso por correo electrónico encontrado en la papelera"
1514
 
1515
- #: ../addons/email-notices/myCRED-addon-email-notices.php:181 ../addons/gateway/carts/mycred-wpecommerce.php:337 ../includes/mycred-functions.php:589
 
 
1516
  msgid "General"
1517
  msgstr "General"
1518
 
1519
  #. can also be users as in plural, I've assumed it is user singular with a missing apostrophe
1520
- #: ../addons/email-notices/myCRED-addon-email-notices.php:182
1521
  msgid "users balance changes"
1522
  msgstr "el saldo de usuario cambia"
1523
 
1524
- #: ../addons/email-notices/myCRED-addon-email-notices.php:183
1525
  msgid "user gains %_plural%"
1526
  msgstr "usuario gana %_plural%"
1527
 
1528
- #: ../addons/email-notices/myCRED-addon-email-notices.php:184
1529
  msgid "user lose %_plural%"
1530
  msgstr "usuario pierde %_plural%"
1531
 
1532
- #: ../addons/email-notices/myCRED-addon-email-notices.php:185
1533
  msgid "users balance reaches zero"
1534
  msgstr "saldo de usuario llega a cero"
1535
 
1536
  #. can also be users as in plural, I've assumed it is user singular with a missing apostrophe
1537
- #: ../addons/email-notices/myCRED-addon-email-notices.php:186
1538
  msgid "users balance goes minus"
1539
  msgstr "el saldo de usuario cae a negativo"
1540
 
1541
- #: ../addons/email-notices/myCRED-addon-email-notices.php:192
1542
  msgid "Sell Content Add-on"
1543
  msgstr "Extensión para Vender Contenido"
1544
 
1545
- #: ../addons/email-notices/myCRED-addon-email-notices.php:193
1546
  msgid "user buys content"
1547
  msgstr "usuario compra contenido"
1548
 
1549
- #: ../addons/email-notices/myCRED-addon-email-notices.php:194
1550
  msgid "authors content gets sold"
1551
  msgstr "el contenido del autor sera vendido"
1552
 
1553
- #: ../addons/email-notices/myCRED-addon-email-notices.php:201
1554
  msgid "buyCREDs Add-on"
1555
  msgstr "Extensión de compraCREDs"
1556
 
1557
- #: ../addons/email-notices/myCRED-addon-email-notices.php:202
1558
  msgid "user buys %_plural%"
1559
  msgstr "usuario compra %_plural%"
1560
 
1561
- #: ../addons/email-notices/myCRED-addon-email-notices.php:209
1562
  msgid "Transfer Add-on"
1563
  msgstr "Extensión de Transferencias"
1564
 
1565
- #: ../addons/email-notices/myCRED-addon-email-notices.php:210
1566
  msgid "user sends %_plural%"
1567
  msgstr "usuario manda %_plural%"
1568
 
1569
- #: ../addons/email-notices/myCRED-addon-email-notices.php:211
1570
  msgid "user receives %_plural%"
1571
  msgstr "usuario recibe %_plural%"
1572
 
1573
- #: ../addons/email-notices/myCRED-addon-email-notices.php:218
1574
  msgid "Ranks Add-on"
1575
  msgstr "Extensión de Rangos"
1576
 
1577
- #: ../addons/email-notices/myCRED-addon-email-notices.php:219
1578
  msgid "user is demoted"
1579
  msgstr "se ha degrado al usuario"
1580
 
1581
- #: ../addons/email-notices/myCRED-addon-email-notices.php:220
1582
  msgid "user is promoted"
1583
  msgstr "se ha promovido al usuario"
1584
 
1585
- #: ../addons/email-notices/myCRED-addon-email-notices.php:260
1586
  msgid ""
1587
  "Settings that apply to all email notices and can not be overridden for "
1588
  "individual emails."
1589
  msgstr ""
1590
- "Ajustes que se aplica a todos los correos electrónicos y que no seran anulados "
1591
- "para correos electronicos especificos."
1592
 
1593
- #: ../addons/email-notices/myCRED-addon-email-notices.php:261
1594
  msgid "Email Format"
1595
  msgstr "Formato de Correo Electrónico"
1596
 
1597
- #: ../addons/email-notices/myCRED-addon-email-notices.php:265
1598
  msgid "Plain text emails only."
1599
  msgstr "Correo electrónico usando texto sin formato."
1600
 
1601
- #: ../addons/email-notices/myCRED-addon-email-notices.php:269
1602
  msgid "HTML or Plain text emails."
1603
  msgstr "Correo electrónico usando HTML o texto sin formato."
1604
 
1605
- #: ../addons/email-notices/myCRED-addon-email-notices.php:272
1606
  msgid "Filters"
1607
  msgstr "Filtros"
1608
 
1609
- #: ../addons/email-notices/myCRED-addon-email-notices.php:276
1610
  msgid ""
1611
- "Allow WordPress and Third Party Plugins to filter the email subject before an "
1612
- "email is sent."
1613
  msgstr ""
1614
- "Permite a Wordpress y a los Plugins de terceros a filtrar el asunto del correo "
1615
- "electrónico antes de enviarlo."
1616
 
1617
- #: ../addons/email-notices/myCRED-addon-email-notices.php:280
1618
  msgid ""
1619
- "Allow WordPress and Third Party Plugins to filter the email content before an "
1620
- "email is sent."
1621
  msgstr ""
1622
  "Permite a Wordpress y a los Plugins de terceros a filtrar el contenido del "
1623
  "correo electrónico antes de enviarlo."
1624
 
1625
- #: ../addons/email-notices/myCRED-addon-email-notices.php:283
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1626
  msgid ""
1627
  "Default email settings. These settings can be individually overridden when "
1628
  "editing emails."
1629
  msgstr ""
1630
- "Configuraciones predeterminadas para correos electrónicos. Estos ajustes pueden "
1631
- "ser anulado individualmente cuando se edita correos electrónicos."
1632
 
1633
- #: ../addons/email-notices/myCRED-addon-email-notices.php:284 ../addons/email-notices/myCRED-addon-email-notices.php:659
 
1634
  msgid "Email Settings"
1635
  msgstr "Configuracion de Correo Electrónico"
1636
 
1637
- #: ../addons/email-notices/myCRED-addon-email-notices.php:287 ../addons/email-notices/myCRED-addon-email-notices.php:778
 
1638
  msgid "Senders Name:"
1639
  msgstr "Nombre del Remitente"
1640
 
1641
- #: ../addons/email-notices/myCRED-addon-email-notices.php:291 ../addons/email-notices/myCRED-addon-email-notices.php:780
 
1642
  msgid "Senders Email:"
1643
  msgstr "Correo Electrónico del Remitente:"
1644
 
1645
- #: ../addons/email-notices/myCRED-addon-email-notices.php:295
1646
  msgid "Reply-To:"
1647
  msgstr "Responder-A:"
1648
 
1649
- #: ../addons/email-notices/myCRED-addon-email-notices.php:299
1650
  msgid "Default Email Content"
1651
  msgstr "Contenido de Correo Electrónico Predefinido"
1652
 
1653
- #: ../addons/email-notices/myCRED-addon-email-notices.php:303
1654
  msgid "Default email content."
1655
  msgstr "Contenido de correo electrónico predefinido."
1656
 
1657
- #: ../addons/email-notices/myCRED-addon-email-notices.php:306
1658
  msgid "Default Email Styling"
1659
  msgstr "Estilo de Correo Electrónico Predefinido"
1660
 
1661
- #: ../addons/email-notices/myCRED-addon-email-notices.php:310
1662
  msgid "Ignored if HTML is not allowed in emails."
1663
  msgstr "Sera ignorado si no se permite HTML en los correos electrónicos."
1664
 
1665
- #: ../addons/email-notices/myCRED-addon-email-notices.php:593 ../addons/email-notices/myCRED-addon-email-notices.php:708
 
1666
  msgid "Email Subject"
1667
  msgstr "Asunto del Correo Electrónico"
1668
 
1669
- #: ../addons/email-notices/myCRED-addon-email-notices.php:594
1670
  msgid "Status"
1671
  msgstr "Estatus"
1672
 
1673
- #: ../addons/email-notices/myCRED-addon-email-notices.php:614
1674
  msgid "Not Active"
1675
  msgstr "No esta Activo"
1676
 
1677
- #: ../addons/email-notices/myCRED-addon-email-notices.php:616
 
1678
  msgid "Scheduled:<br /><strong>%1$s</strong>"
1679
  msgstr "Programada:<br /><strong>%1$s</strong>"
1680
 
1681
- #: ../addons/email-notices/myCRED-addon-email-notices.php:620
1682
  msgid "Active"
1683
  msgstr "Activo"
1684
 
1685
- #: ../addons/email-notices/myCRED-addon-email-notices.php:622
 
1686
  msgid "Active - Last run:<br /><strong>%1$s</strong>"
1687
  msgstr "Activo - Ultima ejecución:<br /><strong>%1$s</strong>"
1688
 
1689
- #: ../addons/email-notices/myCRED-addon-email-notices.php:632
1690
  msgid "Email is sent when"
1691
  msgstr "el Correo Electrónico se envia cuando"
1692
 
1693
- #: ../addons/email-notices/myCRED-addon-email-notices.php:634
1694
  msgid "Missing instance for this notice!"
1695
  msgstr "¡Falta una instancia para este aviso!"
1696
 
1697
- #: ../addons/email-notices/myCRED-addon-email-notices.php:643 ../addons/email-notices/myCRED-addon-email-notices.php:645 ../addons/email-notices/myCRED-addon-email-notices.php:647
 
 
1698
  msgid "Sent To"
1699
  msgstr "Enviado A:"
1700
 
1701
- #: ../addons/email-notices/myCRED-addon-email-notices.php:645 ../addons/email-notices/myCRED-addon-email-notices.php:773
 
1702
  msgid "Administrator"
1703
  msgstr "Administrador"
1704
 
1705
- #: ../addons/email-notices/myCRED-addon-email-notices.php:647
1706
  msgid "Both Administrator and User"
1707
  msgstr "Tanto Administrador como Usuario"
1708
 
1709
- #: ../addons/email-notices/myCRED-addon-email-notices.php:668
1710
  msgid "Available Template Tags"
1711
  msgstr "Etiquetas (tags) de Plantilla Disponibles"
1712
 
1713
- #: ../addons/email-notices/myCRED-addon-email-notices.php:679
1714
  msgid "Email Header"
1715
  msgstr "Encabezado del Correo Electrónico"
1716
 
1717
- #: ../addons/email-notices/myCRED-addon-email-notices.php:739
1718
  msgid "Send this email notice when..."
1719
  msgstr "Envia este aviso por correo electrónico cuando..."
1720
 
1721
- #: ../addons/email-notices/myCRED-addon-email-notices.php:770
1722
  msgid "Recipient:"
1723
  msgstr "Destinatario:"
1724
 
1725
- #: ../addons/email-notices/myCRED-addon-email-notices.php:774
1726
  msgid "Both"
1727
  msgstr "Ambos"
1728
 
1729
- #: ../addons/email-notices/myCRED-addon-email-notices.php:782
 
 
 
 
 
 
 
1730
  msgid "Reply-To Email:"
1731
  msgstr "Responder-A Correo Electrónico:"
1732
 
1733
- #: ../addons/email-notices/myCRED-addon-email-notices.php:788
1734
  msgid "Save"
1735
  msgstr "Guardar"
1736
 
1737
- #: ../addons/email-notices/myCRED-addon-email-notices.php:800
1738
  msgid "CSS Styling"
1739
  msgstr "Estilo CSS"
1740
 
1741
- #: ../addons/email-notices/myCRED-addon-email-notices.php:816
1742
  msgid "Site Related"
1743
  msgstr "Relacionado al Sitio"
1744
 
1745
- #: ../addons/email-notices/myCRED-addon-email-notices.php:817
1746
  msgid "Your websites title"
1747
  msgstr "Titulo de tu pagina web"
1748
 
1749
- #: ../addons/email-notices/myCRED-addon-email-notices.php:818
1750
  msgid "Your websites address"
1751
  msgstr "Dirección de tu pagina web"
1752
 
1753
- #: ../addons/email-notices/myCRED-addon-email-notices.php:819
1754
  msgid "Your websites tagline (description)"
1755
  msgstr "La descripción de tu sitio web (lema o eslogan)"
1756
 
1757
- #: ../addons/email-notices/myCRED-addon-email-notices.php:820
1758
  msgid "Your websites admin email"
1759
  msgstr "El correo electrónico de admin para tu pagina web"
1760
 
1761
- #: ../addons/email-notices/myCRED-addon-email-notices.php:821
1762
  msgid "Total number of blog members"
1763
  msgstr "Número total de miembros del blog"
1764
 
1765
- #: ../addons/email-notices/myCRED-addon-email-notices.php:897 ../addons/email-notices/myCRED-addon-email-notices.php:900
 
 
1766
  msgid "Email Notice Updated. View <a href=\"%1$s\">All Notices</a>."
1767
  msgstr "Aviso de Email Actualizado. Ver <a href=\"%1$s\">Todos los Avisos</a>."
1768
 
1769
- #: ../addons/email-notices/myCRED-addon-email-notices.php:902
1770
  msgid "Email Notice Activated"
1771
  msgstr "Notificación atraves de Correo Electrónico Activado"
1772
 
1773
- #: ../addons/email-notices/myCRED-addon-email-notices.php:903
1774
  msgid "Email Notice Saved"
1775
  msgstr "Aviso por Correo Electrónico Guardado"
1776
 
1777
- #: ../addons/email-notices/myCRED-addon-email-notices.php:904
 
1778
  msgid "Email Notice Submitted for approval. View <a href=\"%1$s\">All Notices</a>."
1779
- msgstr "Aviso de Email Enviado para aprobación. Ver <a href=\"%1$s\">Todos los Avisos</a>."
 
 
1780
 
1781
- #: ../addons/email-notices/myCRED-addon-email-notices.php:906
 
1782
  msgid "Email Notice scheduled for: <strong>%1$s</strong>."
1783
  msgstr "Se ha fijado el Aviso por Correo Electrónico para: <strong>%1$s</strong>."
1784
 
1785
- #: ../addons/email-notices/myCRED-addon-email-notices.php:925
1786
  msgid ""
1787
- "Once a notice is \"published\" it becomes active! Select \"Save Draft\" if you are "
1788
- "not yet ready to use this email notice!"
1789
  msgstr ""
1790
- "¡Una vez que un aviso sea \"publicado\" se activa! ¡Elige \"Guardar Borrador\" si "
1791
- "aun no estás listo para utilizar este aviso por email!"
1792
 
1793
- #: ../addons/email-notices/myCRED-addon-email-notices.php:927
 
1794
  msgid "This notice will become active on:<br /><strong>%1$s</strong>"
1795
  msgstr "Este aviso se activará en:<br /><strong>%1$s</strong>"
1796
 
1797
- #: ../addons/email-notices/myCRED-addon-email-notices.php:929
1798
  msgid "This email notice is active."
1799
  msgstr "Esta notificación de correo electrónico esta activada."
1800
 
1801
- #: ../addons/gateway/carts/mycred-marketpress.php:147 ../addons/gateway/event-booking/mycred-eventespresso3.php:277 ../addons/gateway/event-booking/mycred-eventespresso3.php:301 ../addons/gateway/event-booking/mycred-eventsmanager.php:412 ../includes/mycred-admin.php:478
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1802
  msgid "Current Balance"
1803
  msgstr "Saldo Actual"
1804
 
1805
- #: ../addons/gateway/carts/mycred-marketpress.php:151 ../addons/gateway/carts/mycred-wpecommerce.php:123 ../addons/gateway/event-booking/mycred-eventespresso3.php:281 ../addons/gateway/event-booking/mycred-eventespresso3.php:305 ../addons/gateway/event-booking/mycred-eventsmanager.php:416
 
 
 
 
1806
  msgid "Total Cost"
1807
  msgstr "Coste Total"
1808
 
1809
- #: ../addons/gateway/carts/mycred-marketpress.php:155 ../addons/gateway/event-booking/mycred-eventespresso3.php:285 ../addons/gateway/event-booking/mycred-eventespresso3.php:309
 
 
1810
  msgid "Balance After Purchase"
1811
  msgstr "Saldo Despues de Compra"
1812
 
1813
- #: ../addons/gateway/carts/mycred-marketpress.php:182 ../addons/gateway/carts/mycred-marketpress.php:231
 
1814
  msgid "Go Back"
1815
  msgstr "Regresar"
1816
 
@@ -1819,9 +2099,10 @@ msgid "will be deducted from your account."
1819
  msgstr "sera restado de su cuenta."
1820
 
1821
  #: ../addons/gateway/carts/mycred-marketpress.php:221
 
1822
  msgid ""
1823
- "Sorry, but you can not use this gateway as your account is excluded. Please <a "
1824
- "href=\"%s\">select a different payment method</a>."
1825
  msgstr ""
1826
  "Lo siento, pero no puede utilizar esta pasarela de pago porque excluye su "
1827
  "cuenta. Por favor <a href=\"%s\"> elige otro método de pago."
@@ -1830,7 +2111,9 @@ msgstr ""
1830
  msgid "Paid"
1831
  msgstr "Pagado"
1832
 
1833
- #: ../addons/gateway/carts/mycred-marketpress.php:243 ../addons/gateway/carts/mycred-woocommerce.php:33 ../includes/mycred-network.php:57 ../includes/mycred-network.php:58 ../plugins/mycred-hook-badgeOS.php:81
 
 
1834
  msgid "myCRED"
1835
  msgstr "myCRED"
1836
 
@@ -1838,7 +2121,10 @@ msgstr "myCRED"
1838
  msgid "%_singular% Balance"
1839
  msgstr "%_singular% Saldo"
1840
 
1841
- #: ../addons/gateway/carts/mycred-marketpress.php:348 ../addons/gateway/carts/mycred-woocommerce.php:101 ../addons/gateway/carts/mycred-wpecommerce.php:27
 
 
 
1842
  msgid "Payment for Order: #%order_id%"
1843
  msgstr "Pago por el Pedido"
1844
 
@@ -1851,18 +2137,20 @@ msgid "Pay using your account balance."
1851
  msgstr "Paga usando el saldo de su cuenta."
1852
 
1853
  #: ../addons/gateway/carts/mycred-marketpress.php:353
 
1854
  msgid ""
1855
  "TOTAL amount has been deducted from your account. Your current balance is: "
1856
  "%balance_f%"
1857
  msgstr "Cantidad TOTAL ha sido restado de su cuenta. Su saldo actual es:% balance_f%"
1858
 
1859
  #: ../addons/gateway/carts/mycred-marketpress.php:354
 
1860
  msgid ""
1861
- "Insufficient funds. Please select another form of payment. Your current balance "
1862
- "is: %balance_f%"
1863
  msgstr ""
1864
- "Fondos insuficientes. Por favor seleccione otra forma de pago. Su saldo actual "
1865
- "es: %balance_f%"
1866
 
1867
  #: ../addons/gateway/carts/mycred-marketpress.php:355
1868
  msgid ""
@@ -1873,9 +2161,11 @@ msgstr ""
1873
  "href=\"%login_url_here%\">identifícate</a>."
1874
 
1875
  #: ../addons/gateway/carts/mycred-marketpress.php:362
 
1876
  msgid ""
1877
  "Let your users pay for items in their shopping cart using their %s Account. "
1878
- "Note! This gateway requires your users to be logged in when making a purchase!"
 
1879
  msgstr ""
1880
  "Permita que sus usuarios paguen para los articulos en su carrito de compra "
1881
  "usando su %s Cuenta. ¡Nota! Esta pasarela de pago requiere que sus usuarios "
@@ -1890,22 +2180,34 @@ msgid ""
1890
  "Enter a public name for this payment method that is displayed to users - No "
1891
  "HTML"
1892
  msgstr ""
1893
- "Introduzca el nombre público para este método de pago que se va a mostrar a los "
1894
- "usuarios - sin HTML"
1895
 
1896
  #: ../addons/gateway/carts/mycred-marketpress.php:372
1897
  msgid "Gateway Logo URL"
1898
  msgstr "URL del Logotipo de la Pasarela de Pago"
1899
 
1900
- #: ../addons/gateway/carts/mycred-marketpress.php:393 ../addons/gateway/carts/mycred-woocommerce.php:124
 
 
1901
  msgid "How much is 1 %_singular% worth in %currency%?"
1902
  msgstr "¿Cuanto vale un 1 %_singular% en %currency%?"
1903
 
1904
- #: ../addons/gateway/carts/mycred-marketpress.php:398 ../addons/gateway/carts/mycred-woocommerce.php:129 ../addons/gateway/carts/mycred-wpecommerce.php:356 ../addons/gateway/event-booking/mycred-eventespresso3.php:450 ../addons/gateway/event-booking/mycred-eventsmanager-pro.php:499 ../addons/gateway/event-booking/mycred-eventsmanager.php:578
 
 
 
 
 
1905
  msgid "Exchange Rate"
1906
  msgstr "Tipo de Cambio"
1907
 
1908
- #: ../addons/gateway/carts/mycred-marketpress.php:407 ../addons/gateway/carts/mycred-woocommerce.php:157 ../addons/gateway/carts/mycred-wpecommerce.php:360 ../addons/gateway/event-booking/mycred-eventespresso3.php:462 ../addons/gateway/event-booking/mycred-eventsmanager-pro.php:490 ../addons/gateway/event-booking/mycred-eventsmanager.php:569
 
 
 
 
 
1909
  msgid "Profit Sharing"
1910
  msgstr "Reparto de Ganancias"
1911
 
@@ -1913,17 +2215,28 @@ msgstr "Reparto de Ganancias"
1913
  msgid "Percentage"
1914
  msgstr "Porcentaje"
1915
 
1916
- #: ../addons/gateway/carts/mycred-marketpress.php:412 ../addons/gateway/carts/mycred-woocommerce.php:159 ../addons/gateway/carts/mycred-wpecommerce.php:364 ../addons/gateway/event-booking/mycred-eventespresso3.php:464 ../addons/gateway/event-booking/mycred-eventsmanager-pro.php:493 ../addons/gateway/event-booking/mycred-eventsmanager.php:572
 
 
 
 
 
1917
  msgid "Option to share sales with the product owner. Use zero to disable."
1918
  msgstr ""
1919
  "Opción de compartir las ventas con el dueño del producto. Utilice cero para "
1920
  "inhabilitar."
1921
 
1922
- #: ../addons/gateway/carts/mycred-marketpress.php:424 ../addons/gateway/carts/mycred-wpecommerce.php:371 ../addons/gateway/event-booking/mycred-eventsmanager-pro.php:559 ../addons/gateway/event-booking/mycred-eventsmanager.php:626
 
 
 
1923
  msgid "Messages"
1924
  msgstr "Mensajes"
1925
 
1926
- #: ../addons/gateway/carts/mycred-marketpress.php:427 ../addons/gateway/carts/mycred-wpecommerce.php:382 ../addons/gateway/event-booking/mycred-eventsmanager-pro.php:569 ../addons/gateway/event-booking/mycred-eventsmanager.php:636
 
 
 
1927
  msgid "Insufficient Funds"
1928
  msgstr "Fondos Insuficientes"
1929
 
@@ -1931,7 +2244,9 @@ msgstr "Fondos Insuficientes"
1931
  msgid "Message to show when the user can not use this gateway."
1932
  msgstr "Monstrar mensaje cuando el usuario no puede usar esta pasarela de pago."
1933
 
1934
- #: ../addons/gateway/carts/mycred-marketpress.php:435 ../addons/gateway/carts/mycred-wpecommerce.php:378 ../addons/gateway/event-booking/mycred-eventespresso3.php:490
 
 
1935
  msgid "Visitors"
1936
  msgstr "Visitantes"
1937
 
@@ -1962,17 +2277,18 @@ msgid "Order Confirmation Email"
1962
  msgstr "Email de Confirmación del Pedido"
1963
 
1964
  #: ../addons/gateway/carts/mycred-marketpress.php:461
 
1965
  msgid ""
1966
  "This is the email text to send to those who have made %s checkouts. It "
1967
- "overrides the default order checkout email. These codes will be replaced with "
1968
- "order details: CUSTOMERNAME, ORDERID, ORDERINFO, SHIPPINGINFO, PAYMENTINFO, "
1969
- "TOTAL, TRACKINGURL. No HTML allowed."
1970
  msgstr ""
1971
- "Esto es el texto del correo electrónico que se manda a los que hayan finalizado "
1972
- "%s compras. Anula al correo electrónico predeterminado al finalizar el cajero. "
1973
- "Estos códigos seran reemplazados con los detalles del pedido: ORDERID, "
1974
- "ORDERINFO, SHIPPINGINFO, PAYMENTINFO, TOTAL, TRACKINGURL. No se permite el uso "
1975
- "de HTML."
1976
 
1977
  #: ../addons/gateway/carts/mycred-woocommerce.php:34
1978
  msgid "Let users pay using their myCRED balance."
@@ -1988,8 +2304,8 @@ msgstr "Activar Pago myCRED"
1988
 
1989
  #: ../addons/gateway/carts/mycred-woocommerce.php:83
1990
  msgid ""
1991
- "Users who are not logged in or excluded from using myCRED will not have access "
1992
- "to this gateway!"
1993
  msgstr ""
1994
  "¡Los usuarios que no estan ingresado o los que han sido excluido de utilizar "
1995
  "myCRED no tendran acceso a esta pasarela de pago!"
@@ -2008,6 +2324,7 @@ msgid "Customer Message"
2008
  msgstr "Mensaje a los Clientes"
2009
 
2010
  #: ../addons/gateway/carts/mycred-woocommerce.php:95
 
2011
  msgid "Deduct the amount from your %_plural% balance."
2012
  msgstr "Restar la cantidad de su saldo de %_plural%"
2013
 
@@ -2039,10 +2356,6 @@ msgstr "Mostrar en la página de pago"
2039
  msgid "Show in Cart and on Checkout Page"
2040
  msgstr "Mostrar en el Carrito y en la página de pago"
2041
 
2042
- #: ../addons/gateway/carts/mycred-woocommerce.php:148 ../modules/mycred-module-settings.php:484 ../modules/mycred-module-settings.php:503 ../modules/mycred-module-settings.php:526
2043
- msgid "Label"
2044
- msgstr "Etiqueta"
2045
-
2046
  #: ../addons/gateway/carts/mycred-woocommerce.php:150
2047
  msgid "Order Total in %_plural%"
2048
  msgstr "Total del Pedido en %_plural%"
@@ -2060,14 +2373,15 @@ msgid "myCRED Payment"
2060
  msgstr "Pago myCRED"
2061
 
2062
  #: ../addons/gateway/carts/mycred-woocommerce.php:193
 
2063
  msgid ""
2064
  "Allows users to pay using their myCRED %_singular% balance. Please note that "
2065
- "users with insufficient funds and users who are not logged in will not see this "
2066
- "payment gateway on the checkout page."
2067
  msgstr ""
2068
  "Permite a los usuarios pagar usando su mycred % _singular% saldo. Por favor, "
2069
- "ten en cuenta que los usuarios con fondos insuficientes y los usuarios que no "
2070
- "han iniciado sesión no verán esta pasarela de pago en la página de pago."
2071
 
2072
  #: ../addons/gateway/carts/mycred-woocommerce.php:214
2073
  msgid "You must be logged in to pay with %_plural%"
@@ -2079,20 +2393,21 @@ msgstr ""
2079
  "No puede usar esta pasarela de pago. Por favor prueba una opción de pago "
2080
  "diferente."
2081
 
2082
- #: ../addons/gateway/carts/mycred-woocommerce.php:233
2083
  msgid "Insufficient funds. Please try a different payment option."
2084
  msgstr "Fondos insuficientes. Por favor prueba con otra opción de pago."
2085
 
2086
- #: ../addons/gateway/carts/mycred-woocommerce.php:295
2087
  msgid "Your account has successfully been charged."
2088
  msgstr "Su cuenta ha sido cambiado con éxito."
2089
 
2090
  #. assuming it is referring to order (buy something) not order (rank or organization)
2091
- #: ../addons/gateway/carts/mycred-woocommerce.php:314
2092
  msgid "Order Missing"
2093
  msgstr "Falta de Pedido"
2094
 
2095
- #: ../addons/gateway/carts/mycred-woocommerce.php:537 ../addons/gateway/carts/mycred-wpecommerce.php:131
 
2096
  msgid "Your current balance"
2097
  msgstr "Tu saldo actual"
2098
 
@@ -2121,6 +2436,7 @@ msgid "Log Template for Payments"
2121
  msgstr "Plantilla de Registro para Pagos"
2122
 
2123
  #: ../addons/gateway/carts/mycred-wpecommerce.php:357
 
2124
  msgid "How much is 1 %s worth in %s"
2125
  msgstr "Cuanto vale 1 %s en %s"
2126
 
@@ -2134,11 +2450,11 @@ msgstr "Instrucciones"
2134
 
2135
  #: ../addons/gateway/carts/mycred-wpecommerce.php:375
2136
  msgid ""
2137
- "Optional instructions to show users when selecting this gateway. Leave empty to "
2138
- "hide."
2139
  msgstr ""
2140
- "Instrucciones opcionales para mostrar a los usuarios cuando se selecciona esta "
2141
- "pasarela. Deje el campo vacío para ocultarlo."
2142
 
2143
  #: ../addons/gateway/carts/mycred-wpecommerce.php:379
2144
  msgid "Message to show visitors who are not logged in."
@@ -2149,10 +2465,12 @@ msgid ""
2149
  "Message to show when users does not have enough %plural% to pay using this "
2150
  "gateway."
2151
  msgstr ""
2152
- "Monstrar mensaje cuando los usuarios no tienen bastante %plural% con que pagar "
2153
- "usando esta pasarela de pago."
2154
 
2155
- #: ../addons/gateway/event-booking/mycred-eventespresso3.php:27 ../addons/gateway/event-booking/mycred-eventsmanager-pro.php:39 ../addons/gateway/event-booking/mycred-eventsmanager.php:35
 
 
2156
  msgid "Pay Now"
2157
  msgstr "Pagar Ahora"
2158
 
@@ -2161,14 +2479,19 @@ msgid "Payment for Event Registration"
2161
  msgstr "Pago para Registrar Evento"
2162
 
2163
  #: ../addons/gateway/event-booking/mycred-eventespresso3.php:343
 
2164
  msgid "Activate %s"
2165
  msgstr "Activar %s"
2166
 
2167
  #: ../addons/gateway/event-booking/mycred-eventespresso3.php:351
 
2168
  msgid "Deactivate %s"
2169
  msgstr "Desactivar %s"
2170
 
2171
- #: ../addons/gateway/event-booking/mycred-eventespresso3.php:399 ../addons/gateway/event-booking/mycred-eventsmanager-pro.php:449 ../addons/gateway/event-booking/mycred-eventsmanager.php:524
 
 
 
2172
  msgid "How many %s is 1 %s worth?"
2173
  msgstr "¿Cuantos %s vale un %s?"
2174
 
@@ -2176,7 +2499,9 @@ msgstr "¿Cuantos %s vale un %s?"
2176
  msgid "Gateways Settings Successfully Updated"
2177
  msgstr "Configuracion de l Pasarela de Pago ha sido Actualizado "
2178
 
2179
- #: ../addons/gateway/event-booking/mycred-eventespresso3.php:415 ../addons/gateway/event-booking/mycred-eventsmanager-pro.php:535 ../addons/gateway/event-booking/mycred-eventsmanager.php:602
 
 
2180
  msgid "Labels"
2181
  msgstr "Etiquetas"
2182
 
@@ -2197,7 +2522,11 @@ msgstr "Tipo de Pago"
2197
  msgid "Title to show on receipts and logs"
2198
  msgstr "El titulo a mostrar en la factura y en los registros."
2199
 
2200
- #: ../addons/gateway/event-booking/mycred-eventespresso3.php:428 ../addons/gateway/event-booking/mycred-eventsmanager-pro.php:552 ../addons/gateway/event-booking/mycred-eventsmanager.php:619 ../addons/sell-content/myCRED-addon-sell-content.php:397 ../addons/sell-content/myCRED-addon-sell-content.php:590
 
 
 
 
2201
  msgid "Button Label"
2202
  msgstr "Eqiqueta Asignada al Botón"
2203
 
@@ -2205,7 +2534,13 @@ msgstr "Eqiqueta Asignada al Botón"
2205
  msgid "Pay Button"
2206
  msgstr "Botón de Pago"
2207
 
2208
- #: ../addons/gateway/event-booking/mycred-eventespresso3.php:447 ../addons/gateway/event-booking/mycred-eventsmanager-pro.php:137 ../addons/gateway/event-booking/mycred-eventsmanager-pro.php:140 ../addons/gateway/event-booking/mycred-eventsmanager.php:336 ../addons/gateway/event-booking/mycred-eventsmanager.php:339 ../addons/sell-content/myCRED-addon-sell-content.php:388 ../addons/sell-content/myCRED-addon-sell-content.php:586
 
 
 
 
 
 
2209
  msgid "Price"
2210
  msgstr "Precio"
2211
 
@@ -2214,18 +2549,20 @@ msgid ""
2214
  "You can disable purchases using this gateway by adding a custom Event Meta: "
2215
  "<code>mycred_no_sale</code>"
2216
  msgstr ""
2217
- "Puedes inhabilitar compras a traves de esta pasarela mediante la adición de un "
2218
- "Evento Meta personalizado: <code>mycred_no_sale</code>"
2219
 
2220
  #: ../addons/gateway/event-booking/mycred-eventespresso3.php:458
2221
  msgid "Users must be logged in to use this gateway!"
2222
  msgstr "¡Los usuarios deben estar conectado para usar esta pasarela de pago!"
2223
 
2224
- #: ../addons/gateway/event-booking/mycred-eventespresso3.php:467 ../modules/mycred-module-log.php:22 ../modules/mycred-module-log.php:23
 
2225
  msgid "Log"
2226
  msgstr "Registro"
2227
 
2228
- #: ../addons/gateway/event-booking/mycred-eventespresso3.php:470 ../includes/mycred-admin.php:483
 
2229
  msgid "Log Entry"
2230
  msgstr "Entrada de Registro"
2231
 
@@ -2239,8 +2576,8 @@ msgstr "Usuarios Solventes"
2239
 
2240
  #: ../addons/gateway/event-booking/mycred-eventespresso3.php:482
2241
  msgid ""
2242
- "Message to show users on the payment page before they are charged. Leave empty "
2243
- "to hide."
2244
  msgstr ""
2245
  "Mostrar mensaje a los usuarios en la pagina de pago antes de cobrar. Dejalo "
2246
  "vacío para ocultar. "
@@ -2251,7 +2588,9 @@ msgstr "Usuarios Insolventes"
2251
 
2252
  #: ../addons/gateway/event-booking/mycred-eventespresso3.php:487
2253
  msgid "Message to show users who do not have enough points to pay."
2254
- msgstr "Mostrar mensaje a los usuarios que no tienen suficientes puntos con que pagar."
 
 
2255
 
2256
  #: ../addons/gateway/event-booking/mycred-eventespresso3.php:492
2257
  msgid "Message to show visitors (users not logged in) on the payment page."
@@ -2259,39 +2598,49 @@ msgstr ""
2259
  "Mostrar mensaje a los visitantes (usuarios que no han iniciado sesión) en la "
2260
  "pagina de pago."
2261
 
2262
- #: ../addons/gateway/event-booking/mycred-eventespresso3.php:502 ../modules/mycred-module-settings.php:540
 
2263
  msgid "Update Settings"
2264
  msgstr "Actualizar Configuraciones"
2265
 
2266
- #: ../addons/gateway/event-booking/mycred-eventsmanager-pro.php:33 ../addons/gateway/event-booking/mycred-eventsmanager.php:29
 
2267
  msgid "Payment for tickets to %link_with_title%"
2268
  msgstr "Pago de entradas para %link_with_title%"
2269
 
2270
- #: ../addons/gateway/event-booking/mycred-eventsmanager-pro.php:34 ../addons/gateway/event-booking/mycred-eventsmanager.php:30
 
2271
  msgid "Ticket refund for %link_with_title%"
2272
  msgstr "Reembolso de entrada para "
2273
 
2274
- #: ../addons/gateway/event-booking/mycred-eventsmanager-pro.php:38 ../addons/gateway/event-booking/mycred-eventsmanager.php:34
 
 
2275
  msgid "Pay using your %_plural% balance"
2276
  msgstr "Paga utilizando tu saldo de %_plural%"
2277
 
2278
- #: ../addons/gateway/event-booking/mycred-eventsmanager-pro.php:40 ../addons/gateway/event-booking/mycred-eventsmanager.php:36
 
2279
  msgid "Pay"
2280
  msgstr "Pagar"
2281
 
2282
- #: ../addons/gateway/event-booking/mycred-eventsmanager-pro.php:43 ../addons/gateway/event-booking/mycred-eventsmanager.php:39
 
2283
  msgid "Thank you for your payment!"
2284
  msgstr "¡Gracias por su pago!"
2285
 
2286
- #: ../addons/gateway/event-booking/mycred-eventsmanager-pro.php:44 ../addons/gateway/event-booking/mycred-eventsmanager.php:40
 
2287
  msgid "I'm sorry but you can not pay for these tickets using %_plural%"
2288
  msgstr "Lo siento pero no puedes pagar estos billetes usando %_plural%"
2289
 
2290
- #: ../addons/gateway/event-booking/mycred-eventsmanager-pro.php:134 ../addons/gateway/event-booking/mycred-eventsmanager.php:333
 
2291
  msgid "Ticket Type"
2292
  msgstr "Tipo de Billete"
2293
 
2294
- #: ../addons/gateway/event-booking/mycred-eventsmanager-pro.php:143 ../addons/gateway/event-booking/mycred-eventsmanager.php:342
 
2295
  msgid "Spaces"
2296
  msgstr "Espacios"
2297
 
@@ -2303,7 +2652,9 @@ msgstr "No puede usar esta pasarela de pago."
2303
  msgid "Reject"
2304
  msgstr "Rechazar"
2305
 
2306
- #: ../addons/gateway/event-booking/mycred-eventsmanager-pro.php:374 ../modules/mycred-module-log.php:500 ../modules/mycred-module-settings.php:488 ../modules/mycred-module-settings.php:507
 
 
2307
  msgid "Delete"
2308
  msgstr "Borrar"
2309
 
@@ -2311,21 +2662,27 @@ msgstr "Borrar"
2311
  msgid "Edit/View"
2312
  msgstr "Editar/Ver"
2313
 
2314
- #: ../addons/gateway/event-booking/mycred-eventsmanager-pro.php:477 ../addons/gateway/event-booking/mycred-eventsmanager.php:542
 
2315
  msgid "Disabled - Users CAN NOT pay for tickets using %plural%."
2316
  msgstr "Deshabilitado - Usuarios NO PUEDEN pagar entradas utilizando %plural%."
2317
 
2318
- #: ../addons/gateway/event-booking/mycred-eventsmanager-pro.php:478 ../addons/gateway/event-booking/mycred-eventsmanager.php:543
 
2319
  msgid "Single - Users can ONLY pay for tickets using %plural%."
2320
  msgstr "Individuales - Usuarios NO PUEDEN pagar entradas utilizando %plural%."
2321
 
2322
- #: ../addons/gateway/event-booking/mycred-eventsmanager-pro.php:479 ../addons/gateway/event-booking/mycred-eventsmanager.php:544
 
2323
  msgid "Multi - Users can pay for tickets using other gateways or %plural%."
2324
  msgstr ""
2325
  "Multi-usuarios pueden pagar entradas utilizando otras pasarelas de pago o "
2326
  "%plural%."
2327
 
2328
- #: ../addons/gateway/event-booking/mycred-eventsmanager-pro.php:483 ../addons/gateway/event-booking/mycred-eventsmanager-pro.php:516 ../addons/gateway/event-booking/mycred-eventsmanager.php:562 ../addons/gateway/event-booking/mycred-eventsmanager.php:595
 
 
 
2329
  msgid "Refunds"
2330
  msgstr "Reembolsos"
2331
 
@@ -2338,43 +2695,54 @@ msgstr ""
2338
  "reserva. Utilice cero para no ofrecer reembolso ninguno. No se reembolsa "
2339
  "reservas \"Rechazadas\""
2340
 
2341
- #: ../addons/gateway/event-booking/mycred-eventsmanager-pro.php:506 ../addons/gateway/event-booking/mycred-eventsmanager.php:585
 
2342
  msgid "Log Templates"
2343
  msgstr "Plantillas de Registro"
2344
 
2345
- #: ../addons/gateway/event-booking/mycred-eventsmanager-pro.php:509 ../addons/gateway/event-booking/mycred-eventsmanager.php:588
 
2346
  msgid "Purchases"
2347
  msgstr "Compras"
2348
 
2349
- #: ../addons/gateway/event-booking/mycred-eventsmanager-pro.php:538 ../addons/gateway/event-booking/mycred-eventsmanager.php:605
 
2350
  msgid "Payment Link Label"
2351
  msgstr "La Etiqueta del Enlace de Pago"
2352
 
2353
- #: ../addons/gateway/event-booking/mycred-eventsmanager-pro.php:541 ../addons/gateway/event-booking/mycred-eventsmanager.php:608
 
2354
  msgid ""
2355
  "The payment link shows / hides the payment form under \"My Bookings\". No HTML "
2356
  "allowed."
2357
  msgstr ""
2358
- "El enlace de pago muestra / oculta el formulario de pago en \"Mis Reservas\". ¡No "
2359
- "se permite HTML!"
2360
 
2361
- #: ../addons/gateway/event-booking/mycred-eventsmanager-pro.php:545 ../addons/gateway/event-booking/mycred-eventsmanager.php:612
 
2362
  msgid "Payment Header"
2363
  msgstr "Encabezado de Pago"
2364
 
2365
- #: ../addons/gateway/event-booking/mycred-eventsmanager-pro.php:548 ../addons/gateway/event-booking/mycred-eventsmanager.php:615
 
2366
  msgid "Shown on top of the payment form. No HTML allowed."
2367
  msgstr "Mostrar en la encima del formulario de pago. No se permite HTML."
2368
 
2369
- #: ../addons/gateway/event-booking/mycred-eventsmanager-pro.php:555 ../addons/gateway/event-booking/mycred-eventsmanager.php:622
 
2370
  msgid "The button label for payments. No HTML allowed!"
2371
  msgstr "La etiqueta para el botón de pagos. ¡No se permite HTML!"
2372
 
2373
- #: ../addons/gateway/event-booking/mycred-eventsmanager-pro.php:562 ../addons/gateway/event-booking/mycred-eventsmanager.php:629
 
2374
  msgid "Successful Payments"
2375
  msgstr "Compras Finalizadas con Exito"
2376
 
2377
- #: ../addons/gateway/event-booking/mycred-eventsmanager-pro.php:565 ../addons/gateway/event-booking/mycred-eventsmanager-pro.php:572 ../addons/gateway/event-booking/mycred-eventsmanager.php:632 ../addons/gateway/event-booking/mycred-eventsmanager.php:639
 
 
 
2378
  msgid "No HTML allowed!"
2379
  msgstr "¡No se permite HTML!"
2380
 
@@ -2387,6 +2755,7 @@ msgid "Click to toggle"
2387
  msgstr "Haga clic para alternar"
2388
 
2389
  #: ../addons/gateway/event-booking/mycred-eventsmanager.php:533
 
2390
  msgid "%s Payments"
2391
  msgstr "Pagos de "
2392
 
@@ -2399,7 +2768,8 @@ msgstr ""
2399
  "reserva. Utilice cero para no ofrecer reembolso ninguno. No se reembolsa "
2400
  "reservas \"Rechazadas\""
2401
 
2402
- #: ../addons/notifications/myCRED-addon-notifications.php:166 ../modules/mycred-module-addons.php:201
 
2403
  msgid "Notifications"
2404
  msgstr "Notificaciones"
2405
 
@@ -2411,15 +2781,17 @@ msgstr "Diseño/Estilo"
2411
  msgid "Use the included CSS Styling for notifications."
2412
  msgstr "Utilice el Estilo CSS incluido para notificaciones."
2413
 
2414
- #: ../addons/notifications/myCRED-addon-notifications.php:175 ../modules/mycred-module-buddypress.php:410
 
2415
  msgid "Template"
2416
  msgstr "Plantilla"
2417
 
2418
  #: ../addons/notifications/myCRED-addon-notifications.php:179
 
2419
  msgid "Use %entry% to show the log entry in the notice and %amount% for the amount."
2420
  msgstr ""
2421
- "Utiliza %entry% para mostrar la entrada de registro en el aviso y %amount% para "
2422
- "la cantidad."
2423
 
2424
  #: ../addons/notifications/myCRED-addon-notifications.php:182
2425
  msgid "Transient Lifespan"
@@ -2439,12 +2811,13 @@ msgstr "Duracion"
2439
 
2440
  #: ../addons/notifications/myCRED-addon-notifications.php:193
2441
  msgid ""
2442
- "The number of milliseconds a notice should be visible.<br />Use zero to require "
2443
- "that the user closes the notice manually. 1000 milliseconds = 1 second."
 
2444
  msgstr ""
2445
- "Los numeros de milisegundos durante que el aviso debe ser visible.<br />Utilice "
2446
- "cero para exigir que el usuario ciere el aviso manualmente. 1000 milisegundos = "
2447
- "1 segundo."
2448
 
2449
  #: ../addons/ranks/myCRED-addon-ranks.php:231
2450
  msgid "Warning! All ranks will be deleted! This can not be undone!"
@@ -2454,11 +2827,16 @@ msgstr "¡Advertencia! ¡Todos los rangos seran borrados! ¡No se puede deshacer
2454
  msgid "Are you sure you want to re-assign user ranks?"
2455
  msgstr "Esta seguro que quieres reasignar rangos de los usuarios?"
2456
 
2457
- #: ../addons/ranks/myCRED-addon-ranks.php:246 ../addons/ranks/myCRED-addon-ranks.php:252 ../addons/ranks/myCRED-addon-ranks.php:258 ../addons/ranks/myCRED-addon-ranks.php:762 ../addons/ranks/myCRED-addon-ranks.php:958 ../modules/mycred-module-addons.php:213
 
 
 
2458
  msgid "Ranks"
2459
  msgstr "Rangos"
2460
 
2461
- #: ../addons/ranks/myCRED-addon-ranks.php:247 ../addons/ranks/myCRED-addon-ranks.php:454 ../addons/ranks/myCRED-addon-ranks.php:473 ../addons/ranks/myCRED-addon-ranks.php:568
 
 
2462
  msgid "Rank"
2463
  msgstr "Rango"
2464
 
@@ -2490,141 +2868,150 @@ msgstr "Ningun rango encontrado"
2490
  msgid "No ranks found in Trash"
2491
  msgstr "Ningun rango encontrao el la papelera"
2492
 
2493
- #: ../addons/ranks/myCRED-addon-ranks.php:323
 
2494
  msgid "Completed - Total of %d users effected"
2495
  msgstr "Completado - Un total %d usuarios afectados"
2496
 
2497
- #: ../addons/ranks/myCRED-addon-ranks.php:325
2498
  msgid "Log is Empty"
2499
  msgstr "Registro esta Vacío"
2500
 
2501
- #: ../addons/ranks/myCRED-addon-ranks.php:528 ../addons/ranks/myCRED-addon-ranks.php:531
 
 
2502
  msgid "Rank Updated. View <a href=\"%1$s\">All Ranks</a>."
2503
  msgstr "Rango Actualizado. Ver a Todos los Rangos"
2504
 
2505
- #: ../addons/ranks/myCRED-addon-ranks.php:533
2506
  msgid "Rank Activated"
2507
  msgstr "Rango Activado"
2508
 
2509
- #: ../addons/ranks/myCRED-addon-ranks.php:534
2510
  msgid "Rank Saved"
2511
  msgstr "Rango Guardado"
2512
 
2513
- #: ../addons/ranks/myCRED-addon-ranks.php:535
 
2514
  msgid "Rank Submitted for approval. View <a href=\"%1$s\">All Ranks</a>."
2515
  msgstr "Rango presentado para aprobación. Ver <a href=\"%1$s\">Todos los Rangos</a>."
2516
 
2517
  #. can also be: "Rango fijado para:"
2518
- #: ../addons/ranks/myCRED-addon-ranks.php:537
 
2519
  msgid "Rank scheduled for: <strong>%1$s</strong>."
2520
  msgstr "Rango programado para: <strong>%1$s</strong>."
2521
 
2522
- #: ../addons/ranks/myCRED-addon-ranks.php:594 ../addons/ranks/myCRED-addon-ranks.php:647
 
2523
  msgid "Rank Title"
2524
  msgstr "Titulo de Rango"
2525
 
2526
- #: ../addons/ranks/myCRED-addon-ranks.php:595
2527
  msgid "Logo"
2528
  msgstr "Logotipo"
2529
 
2530
- #: ../addons/ranks/myCRED-addon-ranks.php:596
2531
  msgid "Requirement"
2532
  msgstr "Requisito"
2533
 
2534
- #: ../addons/ranks/myCRED-addon-ranks.php:597 ../modules/mycred-module-settings.php:451
 
2535
  msgid "Users"
2536
  msgstr "Usuarios"
2537
 
2538
- #: ../addons/ranks/myCRED-addon-ranks.php:613
2539
  msgid "No Logo Set"
2540
  msgstr "No hay Logotipo Configurado"
2541
 
2542
- #: ../addons/ranks/myCRED-addon-ranks.php:622 ../addons/ranks/myCRED-addon-ranks.php:627
 
2543
  msgid "Any Value"
2544
  msgstr "Cualquier Valor"
2545
 
2546
- #: ../addons/ranks/myCRED-addon-ranks.php:629
2547
  msgid "Maximum %plural%"
2548
  msgstr "Maximo %plural%"
2549
 
2550
- #: ../addons/ranks/myCRED-addon-ranks.php:660
2551
  msgid "Rank Settings"
2552
  msgstr "Configuración de Rango"
2553
 
2554
- #: ../addons/ranks/myCRED-addon-ranks.php:682
2555
  msgid "Minimum %plural% to reach this rank"
2556
  msgstr "Minimo %plural% para llegar a este rango"
2557
 
2558
- #: ../addons/ranks/myCRED-addon-ranks.php:686
2559
  msgid "Maximum %plural% to be included in this rank"
2560
  msgstr "Maximo %plural% para ser incluido en este rango"
2561
 
2562
- #: ../addons/ranks/myCRED-addon-ranks.php:693
2563
  msgid "All Published Ranks"
2564
  msgstr "Todos los Rangos Publicados"
2565
 
2566
- #: ../addons/ranks/myCRED-addon-ranks.php:699 ../addons/ranks/myCRED-addon-ranks.php:701
 
2567
  msgid "Not Set"
2568
  msgstr "No Configurado"
2569
 
2570
- #: ../addons/ranks/myCRED-addon-ranks.php:706
2571
  msgid "No Ranks found"
2572
  msgstr "Ningun rango encontrado"
2573
 
2574
- #: ../addons/ranks/myCRED-addon-ranks.php:764
2575
  msgid "Rank Features"
2576
  msgstr "Caracteristicas de los Rangos"
2577
 
2578
- #: ../addons/ranks/myCRED-addon-ranks.php:768
2579
  msgid "%plural% requirement"
2580
  msgstr "%plural% requisito"
2581
 
2582
- #: ../addons/ranks/myCRED-addon-ranks.php:769
2583
  msgid "Featured Image (Logo)"
2584
  msgstr "Imagen Principal (Logotipo)"
2585
 
2586
- #: ../addons/ranks/myCRED-addon-ranks.php:770
2587
  msgid "Content"
2588
  msgstr "Contenido"
2589
 
2590
- #: ../addons/ranks/myCRED-addon-ranks.php:771
2591
  msgid "Excerpt"
2592
  msgstr "Extracto"
2593
 
2594
- #: ../addons/ranks/myCRED-addon-ranks.php:772
2595
  msgid "Comments"
2596
  msgstr "Comentario"
2597
 
2598
- #: ../addons/ranks/myCRED-addon-ranks.php:773
2599
  msgid "Page Attributes"
2600
  msgstr "Atributos de Página"
2601
 
2602
- #: ../addons/ranks/myCRED-addon-ranks.php:774
2603
  msgid "Custom Fields"
2604
  msgstr "Campo Personalizado"
2605
 
2606
- #: ../addons/ranks/myCRED-addon-ranks.php:777
2607
  msgid "Public"
2608
  msgstr "Público"
2609
 
2610
  #. This is not clear, especially the second sentence (fragment)!
2611
- #: ../addons/ranks/myCRED-addon-ranks.php:781
2612
  msgid ""
2613
- "If you want to create a template archive for each rank, you must select to have "
2614
- "ranks public. Defaults to disabled."
2615
  msgstr ""
2616
  "Si desea crear un archivo de plantilla para cada rango, debe seleccionar que "
2617
  "los rangos sean público. Los valores predeterminados desactivado."
2618
 
2619
- #: ../addons/ranks/myCRED-addon-ranks.php:784
2620
  msgid "Rank Basis"
2621
  msgstr "Base de Rango"
2622
 
2623
- #: ../addons/ranks/myCRED-addon-ranks.php:787
2624
  msgid "Users are ranked according to their current balance."
2625
  msgstr "Los usuarios se clasifican según su saldo actual."
2626
 
2627
- #: ../addons/ranks/myCRED-addon-ranks.php:790
2628
  msgid ""
2629
  "Users are ranked according to the total amount of %_plural% they have "
2630
  "accumulated."
@@ -2632,125 +3019,137 @@ msgstr ""
2632
  "Los usuarios se clasifican según la cantidad total de %_plural% que han "
2633
  "acumulado."
2634
 
2635
- #: ../addons/ranks/myCRED-addon-ranks.php:794 ../addons/ranks/myCRED-addon-ranks.php:799
 
2636
  msgid "Calculate Totals"
2637
  msgstr "Calcular Totales"
2638
 
2639
- #: ../addons/ranks/myCRED-addon-ranks.php:797
2640
  msgid ""
2641
  "Use this button to calculate or re-calcualte your users totals. If not used, "
2642
  "the users current balance will be used as a starting point."
2643
  msgstr ""
2644
- "Utilice este botón para calcular y volver a calcular las sumas de tus usuarios. "
2645
- "Si no se utiliza, los saldos actuales de los usuarios se utilizaran como punto "
2646
- "de partida."
2647
 
2648
- #: ../addons/ranks/myCRED-addon-ranks.php:797
2649
  msgid ""
2650
  "Once a users total has been calculated, they will be assigned to their "
2651
  "appropriate roles. For this reason, it is highly recommended that you first "
2652
  "setup your ranks!"
2653
  msgstr ""
2654
- "Una vez que la suma del usuario haya sido calculado, sus roles corespondientes "
2655
- "seran asignados. ¡Por esta razón, se recomienda altamente que primero "
2656
- "configures los rangos!"
2657
 
2658
- #: ../addons/ranks/myCRED-addon-ranks.php:798
2659
  msgid ""
2660
- "Depending on your log size and number of users this process may take a while. "
2661
- "Please do not leave, click \"Update Settings\" or re-fresh this page until this "
2662
- "is completed!"
2663
  msgstr ""
2664
- "Segun el tamaño de registro y los numeros de usuarios este proceso puede llevar "
2665
- "un rato. ¡Por favor no abandone esta pagina, haga click sobre \"Actualizar "
2666
- "Configuraciones\" o refrescar la pagina hasta que se haya completado!"
 
2667
 
2668
- #: ../addons/ranks/myCRED-addon-ranks.php:803
2669
  msgid "Archive URL"
2670
  msgstr "URL del Archivo"
2671
 
2672
- #: ../addons/ranks/myCRED-addon-ranks.php:807
2673
  msgid "Ignored if Ranks are not public"
2674
  msgstr "Sera Ingnorado si los Rangos no son Pulicos"
2675
 
2676
  #. not sure if this is order, as in ordering pizza or order as in rank, organization
2677
- #: ../addons/ranks/myCRED-addon-ranks.php:810
2678
  msgid "Display Order"
2679
  msgstr "Orden de Visualización"
2680
 
2681
- #: ../addons/ranks/myCRED-addon-ranks.php:817
2682
  msgid "Ascending - Lowest rank to highest"
2683
  msgstr "Ascendente - Rango más bajo a lo más alto"
2684
 
2685
- #: ../addons/ranks/myCRED-addon-ranks.php:818
2686
  msgid "Descending - Highest rank to lowest"
2687
  msgstr "Descendiente - Rango más alto al más bajo"
2688
 
2689
- #: ../addons/ranks/myCRED-addon-ranks.php:827
2690
  msgid ""
2691
- "Select in what order ranks should be displayed in your admin area and/or front "
2692
- "if ranks are \"Public\""
2693
  msgstr ""
2694
- "Elige en que orden se debe mostrar los rangos en tu area de administrador y/o "
2695
- "en el frente si los rangos son \"Público\""
2696
 
2697
- #: ../addons/ranks/myCRED-addon-ranks.php:837 ../modules/mycred-module-buddypress.php:366 ../modules/mycred-module-buddypress.php:373
 
2698
  msgid "Do not show."
2699
  msgstr "No mostrar."
2700
 
2701
- #: ../addons/ranks/myCRED-addon-ranks.php:838 ../modules/mycred-module-buddypress.php:367
 
2702
  msgid "Include in Profile Header."
2703
  msgstr "Incluir en Encabezado del Perfil"
2704
 
2705
- #: ../addons/ranks/myCRED-addon-ranks.php:839 ../modules/mycred-module-buddypress.php:368
 
2706
  msgid "Include under the \"Profile\" tab"
2707
  msgstr "Incluir debajo de la pestaña del \"Perfil\""
2708
 
2709
- #: ../addons/ranks/myCRED-addon-ranks.php:840 ../modules/mycred-module-buddypress.php:369
 
2710
  msgid "Include under the \"Profile\" tab and Profile Header."
2711
  msgstr "Incluir en la pestanã \"Perfil\" y Encabezado de Perfil"
2712
 
2713
- #: ../addons/ranks/myCRED-addon-ranks.php:843
2714
  msgid "Rank in BuddyPress"
2715
  msgstr "Rango en BuddyPress"
2716
 
2717
- #: ../addons/ranks/myCRED-addon-ranks.php:911
2718
  msgid "Script Communication Error"
2719
  msgstr "Error del Script de Comunicación"
2720
 
2721
- #: ../addons/ranks/myCRED-addon-ranks.php:961
2722
  msgid "Rank Post Type"
2723
  msgstr "Clasificar Post Types"
2724
 
2725
- #: ../addons/ranks/myCRED-addon-ranks.php:965
2726
  msgid "No. of ranks"
2727
  msgstr "Numero de Rangos"
2728
 
2729
- #: ../addons/ranks/myCRED-addon-ranks.php:969 ../modules/mycred-module-log.php:368 ../modules/mycred-module-settings.php:440 ../modules/mycred-module-settings.php:455
 
 
2730
  msgid "Actions"
2731
  msgstr "Acciones"
2732
 
2733
- #: ../addons/ranks/myCRED-addon-ranks.php:970
2734
  msgid "Remove All Ranks"
2735
  msgstr "Quitar todos los Rangos"
2736
 
2737
- #: ../addons/ranks/myCRED-addon-ranks.php:970
2738
  msgid "Assign Ranks to Users"
2739
  msgstr "Asignar Rango a los Usuarios"
2740
 
2741
- #: ../addons/ranks/includes/mycred-rank-functions.php:181
2742
  msgid "mycred_get_users_rank() : Missing required user id"
2743
  msgstr "mycred_get_users_rank() : Falta el requisito id del usuario"
2744
 
2745
- #: ../addons/ranks/includes/mycred-rank-functions.php:191
2746
  msgid "no rank"
2747
  msgstr "ningun rango"
2748
 
2749
- #: ../addons/ranks/includes/mycred-rank-shortcodes.php:58 ../addons/ranks/includes/mycred-rank-shortcodes.php:134
 
2750
  msgid "No users found with this rank"
2751
  msgstr "Ningun usuario encontrado con este rango"
2752
 
2753
- #: ../addons/ranks/includes/mycred-rank-shortcodes.php:63 ../includes/mycred-shortcodes.php:352 ../includes/mycred-shortcodes.php:355 ../includes/mycred-shortcodes.php:417 ../includes/mycred-shortcodes.php:478 ../includes/mycred-shortcodes.php:482 ../includes/mycred-shortcodes.php:486
 
 
 
2754
  msgid "error"
2755
  msgstr "error"
2756
 
@@ -2786,7 +3185,9 @@ msgstr "No Desembolsar. Solo cobrar."
2786
  msgid "Pay Content Author."
2787
  msgstr "Pagar al Autor del Contenido"
2788
 
2789
- #: ../addons/sell-content/myCRED-addon-sell-content.php:339 ../includes/mycred-overview.php:141 ../includes/mycred-overview.php:148 ../modules/mycred-module-addons.php:224
 
 
2790
  msgid "Sell Content"
2791
  msgstr "Vender Contenido"
2792
 
@@ -2807,8 +3208,8 @@ msgid ""
2807
  "Percentage of the price to pay the author. Can not be zero and is ignored if "
2808
  "authors are not paid."
2809
  msgstr ""
2810
- "Porcentaje del precio que pagar al autor. No puede ser cero y sera ignorado si "
2811
- "no se les paga a los autores."
2812
 
2813
  #. also, "por defecto" and "predeterminados"
2814
  #: ../addons/sell-content/myCRED-addon-sell-content.php:385
@@ -2836,9 +3237,10 @@ msgid "Sale Template for non members"
2836
  msgstr "Guardar Plantilla para los no miembros"
2837
 
2838
  #: ../addons/sell-content/myCRED-addon-sell-content.php:415
 
2839
  msgid ""
2840
- "Do <strong>not</strong> use the %buy_button% in this template as a user must be "
2841
- "logged in to buy content!"
2842
  msgstr ""
2843
  "<strong>¡No utilice</strong> el %buy_button% en esta plantilla porque el "
2844
  "usuario debe haber inciciado sesión para poder comprar contenidos!"
@@ -2847,11 +3249,13 @@ msgstr ""
2847
  msgid "Sale Template for members"
2848
  msgstr "Plantilla de Venta para miembros"
2849
 
2850
- #: ../addons/sell-content/myCRED-addon-sell-content.php:423 ../addons/sell-content/myCRED-addon-sell-content.php:431
 
 
2851
  msgid "Your template must contain the %buy_button% tag for purchases to work!"
2852
  msgstr ""
2853
- "¡Tu plantilla debe contener la etiqueta %buy_button% para que se pueda realizar "
2854
- "compras!"
2855
 
2856
  #: ../addons/sell-content/myCRED-addon-sell-content.php:427
2857
  msgid "Insufficient funds template"
@@ -2866,14 +3270,16 @@ msgid "Log template for Sales"
2866
  msgstr "Plantilla de registros para Ventas"
2867
 
2868
  #: ../addons/sell-content/myCRED-addon-sell-content.php:494
 
2869
  msgid "%s Sell This"
2870
  msgstr "%s Vende Esto"
2871
 
2872
  #: ../addons/sell-content/myCRED-addon-sell-content.php:548
 
2873
  msgid "%s Sell Content needs to be setup before you can use this feature."
2874
  msgstr ""
2875
- "%s Vender Contenidos necesita haberse configurado antes de poder utilizar esta "
2876
- "característica técnica."
2877
 
2878
  #: ../addons/sell-content/myCRED-addon-sell-content.php:551
2879
  msgid "Setup add-on"
@@ -2895,7 +3301,8 @@ msgstr "Compra caduca despues de"
2895
  msgid "Thank you for your purchase!"
2896
  msgstr "¡Gracias por su compra!"
2897
 
2898
- #: ../addons/sell-content/myCRED-addon-sell-content.php:1008 ../addons/sell-content/myCRED-addon-sell-content.php:1094
 
2899
  msgid "The following content is set for sale:"
2900
  msgstr "El siguiente contenido esta listo para la venta:"
2901
 
@@ -2922,8 +3329,8 @@ msgstr "Transacción Finalizada"
2922
  #: ../addons/transfer/myCRED-addon-transfer.php:141
2923
  msgid "Security token could not be verified. Please contact your site administrator!"
2924
  msgstr ""
2925
- "No se pudo verificar el 'token' (código) de seguridad. ¡Por favor, póngase en "
2926
- "contacto con el administrador del sitio!"
2927
 
2928
  #: ../addons/transfer/myCRED-addon-transfer.php:142
2929
  msgid "Communications error. Please try again later."
@@ -2943,8 +3350,8 @@ msgstr "Cantidad incorecta. Por favor inténtelo de nuevo."
2943
 
2944
  #: ../addons/transfer/myCRED-addon-transfer.php:146
2945
  msgid ""
2946
- "This myCRED Add-on has not yet been setup! No transfers are allowed until this "
2947
- "has been done!"
2948
  msgstr ""
2949
  "¡Esta Extensión de myCRED todavía no ha sido configurado! No se permite "
2950
  "transferencias hasta que se haga esto."
@@ -2977,11 +3384,13 @@ msgstr "Ingreso Usuario (user_login)"
2977
  msgid "User Email (user_email)"
2978
  msgstr "Correo Electrónico del Usuario (user_email)"
2979
 
2980
- #: ../addons/transfer/myCRED-addon-transfer.php:191 ../addons/transfer/myCRED-addon-transfer.php:631
 
2981
  msgid "Transfer %plural%"
2982
  msgstr "Transferir %plural%"
2983
 
2984
- #: ../addons/transfer/myCRED-addon-transfer.php:195 ../includes/mycred-widgets.php:593 ../modules/mycred-module-settings.php:469
 
2985
  msgid "Point Types"
2986
  msgstr "Tipo de Puntos"
2987
 
@@ -3080,8 +3489,8 @@ msgstr "Saldo insuficiente - no se puede enviar."
3080
 
3081
  #: ../addons/transfer/myCRED-addon-transfer.php:296
3082
  msgid ""
3083
- "Text to show when a users balance is to low for transfers. Leave empty to hide. "
3084
- "No HTML elements allowed!"
3085
  msgstr ""
3086
  "Mostrar este texto cuando el saldo de un usuario es demasiado bajo para "
3087
  "efectuar transferencias. Deje el campo vacío para ocultarlo. ¡No se permite "
@@ -3096,15 +3505,16 @@ msgid ""
3096
  "Text to show when a user has reached their transfer limit (if used). Leave "
3097
  "empty to hide. No HTML elements allowed!"
3098
  msgstr ""
3099
- "Mostrar este texto cuando un usuario haya llegado al límite de su transferencia "
3100
- "(si se utiliza). Deje el campo vacío para ocultarlo. ¡No se permite ningun "
3101
- "elemento de HTML!"
3102
 
3103
  #: ../addons/transfer/myCRED-addon-transfer.php:560
3104
  msgid "Allow transfers between users."
3105
  msgstr "Permitir transferencias entre usuarios."
3106
 
3107
  #: ../addons/transfer/myCRED-addon-transfer.php:562
 
3108
  msgid "(%s) Transfer"
3109
  msgstr "(%s) Transfererir"
3110
 
@@ -3130,6 +3540,7 @@ msgstr "correo electrónico"
3130
 
3131
  #. is this recipients plural or recipient's with an apostrophe missing?
3132
  #: ../addons/transfer/myCRED-addon-transfer.php:780
 
3133
  msgid "recipients %s"
3134
  msgstr "destinatarios %s"
3135
 
@@ -3142,6 +3553,7 @@ msgid "Amount:"
3142
  msgstr "Cantidad:"
3143
 
3144
  #: ../includes/mycred-about.php:75
 
3145
  msgid "Welcome to %s %s"
3146
  msgstr "Bienvenido a %s %s"
3147
 
@@ -3150,8 +3562,8 @@ msgid ""
3150
  "Re-save your myCRED Settings & all myCRED widget settings that you are "
3151
  "currently using."
3152
  msgstr ""
3153
- "Volver a guardar tus Configuraciones de myCRED y todas las configuraciones del "
3154
- "widget de myCRED que actualmente estas usuando."
3155
 
3156
  #: ../includes/mycred-admin.php:67
3157
  msgid "Re-save your myCRED Hook Settings."
@@ -3185,7 +3597,8 @@ msgstr "No se pudo actualizar el saldo de este usuario."
3185
  msgid "Excluded"
3186
  msgstr "Excluido"
3187
 
3188
- #: ../includes/mycred-admin.php:279 ../modules/mycred-module-log.php:250 ../modules/mycred-module-log.php:251
 
3189
  msgid "History"
3190
  msgstr "Historial"
3191
 
@@ -3194,6 +3607,7 @@ msgid "Adjust"
3194
  msgstr "Modificar"
3195
 
3196
  #: ../includes/mycred-admin.php:335 ../includes/mycred-admin.php:394
 
3197
  msgid "%singular% balance"
3198
  msgstr "%singular% saldo"
3199
 
@@ -3310,6 +3724,7 @@ msgid "incorrect unix timestamp (to):"
3310
  msgstr "erroneo marca de tiempo de unix (a):"
3311
 
3312
  #: ../includes/mycred-importer.php:11
 
3313
  msgid "%s Log Import"
3314
  msgstr "Registro de Importe %s"
3315
 
@@ -3318,6 +3733,7 @@ msgid "Import log entries via a CSV file."
3318
  msgstr "Importa las entradas de registro atraves de un fichero CSV."
3319
 
3320
  #: ../includes/mycred-importer.php:43
 
3321
  msgid "%s Balance Import"
3322
  msgstr "%s balance de Importar"
3323
 
@@ -3326,10 +3742,12 @@ msgid "Import balances."
3326
  msgstr "Saldos Importar."
3327
 
3328
  #: ../includes/mycred-importer.php:75
 
3329
  msgid "%s CubePoints Import"
3330
  msgstr "Importar CubePoints %s"
3331
 
3332
- #: ../includes/mycred-importer.php:76 ../includes/importers/mycred-cubepoints.php:344
 
3333
  msgid "Import CubePoints log entries and / or balances."
3334
  msgstr "Importar las entradas de registro de CubePoints y/o saldos."
3335
 
@@ -3351,8 +3769,8 @@ msgstr "myCRED requiere SWL 5.0 o más alto. La versión detectada:"
3351
 
3352
  #: ../includes/mycred-install.php:54
3353
  msgid ""
3354
- "Sorry but your WordPress installation does not reach the minimum requirements "
3355
- "for running myCRED. The following errors were given:"
3356
  msgstr ""
3357
  "Lo sentimos, pero tu instalación de WordPress no alcanza a los requisitos "
3358
  "mínimos de mycred. Se produce los siguientes errores:"
@@ -3370,6 +3788,7 @@ msgid "myCRED Setup"
3370
  msgstr "Instalación de myCRED"
3371
 
3372
  #: ../includes/mycred-install.php:385
 
3373
  msgid "%s Setup"
3374
  msgstr "Configurar %s"
3375
 
@@ -3379,11 +3798,11 @@ msgstr "Paso"
3379
 
3380
  #: ../includes/mycred-install.php:411
3381
  msgid ""
3382
- "Click \"Begin Setup\" to install myCRED. You will be able to select your points "
3383
- "format, layout and security settings."
3384
  msgstr ""
3385
- "Haga clic en \"Empezar la Instalación\" para instalar myCRED. Podras ajustar el "
3386
- "formato de puntos, disposiciones y configuraciones de seguridad."
3387
 
3388
  #: ../includes/mycred-install.php:412
3389
  msgid "Begin Setup"
@@ -3460,14 +3879,15 @@ msgstr "Desembolso %plural% Máximo"
3460
 
3461
  #: ../includes/mycred-install.php:556 ../modules/mycred-module-settings.php:390
3462
  msgid ""
3463
- "As an added security, you can set the maximum amount a user can gain or loose "
3464
- "in a single instance. If used, make sure this is the maximum amount a user "
3465
- "would be able to transfer, buy, or spend in your store. Use zero to disable."
 
3466
  msgstr ""
3467
- "Como mayor seguridad, puedes configurar la cantidad máxima que un usuario puede "
3468
- "ganar o perder en una sola instancia. Si se utiliza esto, asegurate que es "
3469
- "tambien la máxima cantidad que el usuario puede transferir, comprar, o gastar "
3470
- "en tu tienda. Ponga zero para desactivar."
3471
 
3472
  #: ../includes/mycred-install.php:563 ../modules/mycred-module-settings.php:397
3473
  msgid "Exclude those who can \"Edit Settings\"."
@@ -3495,13 +3915,16 @@ msgstr "Listo"
3495
 
3496
  #: ../includes/mycred-install.php:600
3497
  msgid "Almost done! Click the button below to finish this setup."
3498
- msgstr "¡Casi terminado! Haga clic al botón de abajo para finalizar esta configuración."
 
 
3499
 
3500
  #: ../includes/mycred-install.php:601
3501
  msgid "Install & Run"
3502
  msgstr "Instalar e ejecutar"
3503
 
3504
  #: ../includes/mycred-log.php:389
 
3505
  msgid "Showing %d %s"
3506
  msgstr "Mostrando %d %s"
3507
 
@@ -3523,6 +3946,7 @@ msgid "Current page"
3523
  msgstr "Página corriente"
3524
 
3525
  #: ../includes/mycred-log.php:424
 
3526
  msgctxt "paging"
3527
  msgid "%1$s of %2$s"
3528
  msgstr "%1$s de %2$s"
@@ -3561,11 +3985,11 @@ msgstr "Filtro"
3561
 
3562
  #: ../includes/mycred-log.php:609
3563
  msgid ""
3564
- "Log entries are exported to a CSV file and depending on the number of entries "
3565
- "selected, the process may take a few seconds."
3566
  msgstr ""
3567
- "Se exporta las entradas de registro a un fichero CSV y dependiendo del número "
3568
- "de entradas seleccionadas, el proceso puede tardar unos segundos."
3569
 
3570
  #: ../includes/mycred-log.php:613
3571
  msgid "No export options available."
@@ -3589,7 +4013,8 @@ msgstr "Busqueda de Registro"
3589
  msgid "search log entries"
3590
  msgstr "Búsqueda de las entradas de registro"
3591
 
3592
- #: ../includes/mycred-log.php:842 ../modules/mycred-module-buddypress.php:232 ../modules/mycred-module-buddypress.php:245
 
3593
  msgid "All"
3594
  msgstr "Todo"
3595
 
@@ -3614,10 +4039,12 @@ msgid "Network Settings"
3614
  msgstr "Configuración de la Red"
3615
 
3616
  #: ../includes/mycred-network.php:169
 
3617
  msgid "%s Network"
3618
  msgstr "Red de %s"
3619
 
3620
  #: ../includes/mycred-network.php:175
 
3621
  msgid "Note! %s has not yet been setup."
3622
  msgstr "¡Aviso! %s no ha sido configurado."
3623
 
@@ -3626,6 +4053,7 @@ msgid "Network Settings Updated"
3626
  msgstr "Configuraciones de la Red Actualizadas"
3627
 
3628
  #: ../includes/mycred-network.php:181
 
3629
  msgid "Configure network settings for %s."
3630
  msgstr "Configure los parámetros de red para %s."
3631
 
@@ -3634,28 +4062,31 @@ msgid "Master Template"
3634
  msgstr "Plantilla Principal"
3635
 
3636
  #: ../includes/mycred-network.php:199
 
3637
  msgid ""
3638
- "If enabled, %s will use your main site's settings for all other sites in your "
3639
- "network."
3640
  msgstr ""
3641
- "Si activado, %s utilizara la configuración de tu sitio principal para todas los "
3642
- "sitios en tu red."
3643
 
3644
  #: ../includes/mycred-network.php:202
3645
  msgid "Central Logging"
3646
  msgstr "Central de Registro"
3647
 
3648
  #: ../includes/mycred-network.php:213
 
3649
  msgid "If enabled, %s will log all site actions in your main site's log."
3650
  msgstr ""
3651
- "Si está activado, %s registrará todas las acciones en el registro de tu sitio "
3652
- "principal."
3653
 
3654
  #: ../includes/mycred-network.php:216
3655
  msgid "Site Block"
3656
  msgstr "Bloqueo de Sitio"
3657
 
3658
  #: ../includes/mycred-network.php:220
 
3659
  msgid "Comma separated list of blog ids where %s is to be disabled."
3660
  msgstr "Lista separada por comas de blog IDs donde %s se va a inhabilitar."
3661
 
@@ -3664,6 +4095,7 @@ msgid "Save Network Settings"
3664
  msgstr "Guardar las Configuraciones de la Eed"
3665
 
3666
  #: ../includes/mycred-overview.php:25
 
3667
  msgid "%s Overview"
3668
  msgstr "Descripción de %s"
3669
 
@@ -3680,7 +4112,8 @@ msgstr "Concedido"
3680
  msgid "Deducted"
3681
  msgstr "Deducido"
3682
 
3683
- #: ../includes/mycred-overview.php:120 ../includes/mycred-overview.php:127 ../modules/mycred-module-addons.php:235
 
3684
  msgid "Transfers"
3685
  msgstr "Transferencias"
3686
 
@@ -3697,8 +4130,8 @@ msgstr ""
3697
  #: ../includes/mycred-remote.php:526
3698
  msgid "Click Update Settings to load the Remote API settings."
3699
  msgstr ""
3700
- "Haga clic sobre Actualizar Configuraciones para cargar la configuración de API "
3701
- "remoto."
3702
 
3703
  #: ../includes/mycred-remote.php:528
3704
  msgid "Allow Remote Access"
@@ -3739,15 +4172,17 @@ msgid ""
3739
  "Keep this key safe! Those you share this key with will be able to remotely "
3740
  "deduct / add / transfer %plural%!"
3741
  msgstr ""
3742
- "¡Mantenga la seguridad de esta clave! Aquellos con quien compartes esta clave "
3743
- "podran restar / añadir / transferir %plural% de forma remota."
3744
 
3745
  #: ../includes/mycred-remote.php:568
3746
  msgid "Incoming URI"
3747
  msgstr "URI Entrante"
3748
 
3749
  #: ../includes/mycred-remote.php:572
3750
- msgid "The incoming call address. Remote calls made to any other URL will be ignored."
 
 
3751
  msgstr ""
3752
  "La dirección de la llamada entrante. Se ignorará las llamadas remotas a "
3753
  "cualquier otro URL."
@@ -3797,10 +4232,12 @@ msgid "A video ID is required for this shortcode"
3797
  msgstr "Este código corto (shortcode) precisa un ID del video."
3798
 
3799
  #: ../includes/mycred-widgets.php:21
 
3800
  msgid "Show the current users %s balance"
3801
  msgstr "Enseñar el saldo de %s del usuario actual"
3802
 
3803
  #: ../includes/mycred-widgets.php:23
 
3804
  msgid "(%s) My Balance"
3805
  msgstr "(%s) Mi Saldo"
3806
 
@@ -3854,10 +4291,12 @@ msgid "Message"
3854
  msgstr "Mensaje"
3855
 
3856
  #: ../includes/mycred-widgets.php:323
 
3857
  msgid "Show a list of users sorted by their %s balance"
3858
  msgstr "Mustra una lista de usuarios ordenados por sus %s saldos"
3859
 
3860
  #: ../includes/mycred-widgets.php:325
 
3861
  msgid "(%s) Leaderboard"
3862
  msgstr "(%s) Tabla de Clasificación"
3863
 
@@ -3893,8 +4332,8 @@ msgstr "Añade la posición actual de usuarios "
3893
 
3894
  #: ../includes/mycred-widgets.php:446
3895
  msgid ""
3896
- "If the current user is not in this leaderboard, you can select to append them "
3897
- "at the end with their current position."
3898
  msgstr ""
3899
  "Si el usuario actual no esta en esta tabla de clasificación, puedes elegir a "
3900
  "agregarles al final con su posición actual."
@@ -3904,6 +4343,7 @@ msgid "Shows the current users balances for each point type."
3904
  msgstr "Mostrar el saldo actual del usuario para cada tipo de puntos."
3905
 
3906
  #: ../includes/mycred-widgets.php:497
 
3907
  msgid "(%s) Wallet"
3908
  msgstr "(%s) Cartera"
3909
 
@@ -3915,31 +4355,41 @@ msgstr "Mi Cartera"
3915
  msgid "Row Layout"
3916
  msgstr "Disposición de Filas"
3917
 
3918
- #: ../includes/importers/mycred-balances.php:81 ../includes/importers/mycred-balances.php:159 ../includes/importers/mycred-balances.php:198 ../includes/importers/mycred-balances.php:213 ../includes/importers/mycred-log-entries.php:81 ../includes/importers/mycred-log-entries.php:126 ../includes/importers/mycred-log-entries.php:165 ../includes/importers/mycred-log-entries.php:180
 
 
 
 
 
3919
  msgid "Sorry, there has been an error."
3920
  msgstr "Lo sentimos, se ha producido un error."
3921
 
3922
- #: ../includes/importers/mycred-balances.php:82 ../includes/importers/mycred-log-entries.php:82
 
3923
  msgid "The file does not exist, please try again."
3924
  msgstr "El fichero no existe, por favor inténtelo de nuevo más tarde."
3925
 
3926
- #: ../includes/importers/mycred-balances.php:160 ../includes/importers/mycred-log-entries.php:127
 
3927
  msgid "The CSV is invalid."
3928
  msgstr "El CSV no es valido."
3929
 
3930
  #: ../includes/importers/mycred-balances.php:171
 
3931
  msgid ""
3932
  "Import complete - A total of <strong>%d</strong> balances were successfully "
3933
  "imported. <strong>%d</strong> was skipped."
3934
  msgstr ""
3935
- "Importación Finalizado - En total, <strong>%d</strong> saldos fueron importado "
3936
- "con éxito. Se saltaron <strong>%d</strong>."
3937
 
3938
- #: ../includes/importers/mycred-balances.php:181 ../includes/importers/mycred-cubepoints.php:293 ../includes/importers/mycred-log-entries.php:148
 
3939
  msgid "View Log"
3940
  msgstr "Ver Registro"
3941
 
3942
- #: ../includes/importers/mycred-balances.php:181 ../includes/importers/mycred-cubepoints.php:293 ../includes/importers/mycred-log-entries.php:148
 
3943
  msgid "Import More"
3944
  msgstr "Importar Más"
3945
 
@@ -3951,27 +4401,33 @@ msgstr "Saldos Importar"
3951
  msgid "Import balances from a CSV file."
3952
  msgstr "Importa saldos de registro desde un fichero CSV."
3953
 
3954
- #: ../includes/importers/mycred-balances.php:252 ../includes/importers/mycred-log-entries.php:219
 
3955
  msgid ""
3956
  "Before you can upload your import file, you will need to fix the following "
3957
  "error:"
3958
  msgstr ""
3959
- "Antes que puedas subir tu fichero de importe, tendras que corregir los errores "
3960
- "siguientes:"
3961
 
3962
- #: ../includes/importers/mycred-balances.php:261 ../includes/importers/mycred-log-entries.php:228
 
3963
  msgid "Choose a file from your computer:"
3964
  msgstr "Elige un fichero en tu ordenador:"
3965
 
3966
- #: ../includes/importers/mycred-balances.php:267 ../includes/importers/mycred-log-entries.php:234
 
 
3967
  msgid "Maximum size: %s"
3968
  msgstr "Tamaño Máximo: %s"
3969
 
3970
- #: ../includes/importers/mycred-balances.php:272 ../includes/importers/mycred-log-entries.php:239
 
3971
  msgid "OR enter path to file:"
3972
  msgstr "O rellena la ruta al fichero:"
3973
 
3974
- #: ../includes/importers/mycred-balances.php:279 ../includes/importers/mycred-log-entries.php:246
 
3975
  msgid "Delimiter"
3976
  msgstr "Delimitador"
3977
 
@@ -3987,7 +4443,8 @@ msgstr "Sustituir los balances actuales con los montos en el archivo CSV"
3987
  msgid "Adjust current balances according to the amount in this CSV file"
3988
  msgstr "Ajustar los balances actuales de acuerdo al monto en el archivo CSV"
3989
 
3990
- #: ../includes/importers/mycred-balances.php:292 ../includes/importers/mycred-log-entries.php:252
 
3991
  msgid "Upload file and import"
3992
  msgstr "Subir fichero e importar"
3993
 
@@ -3999,7 +4456,9 @@ msgstr "Ningun saldo fue importado."
3999
  msgid "No log entries were imported!"
4000
  msgstr "¡No se importo ninguna entrada de registro!"
4001
 
4002
- #: ../includes/importers/mycred-cubepoints.php:282 ../includes/importers/mycred-log-entries.php:138
 
 
4003
  msgid ""
4004
  "Import complete - A total of <strong>%d</strong> entries were successfully "
4005
  "imported. <strong>%d</strong> was skipped."
@@ -4036,10 +4495,12 @@ msgid "Import"
4036
  msgstr "Importar"
4037
 
4038
  #: ../includes/importers/mycred-cubepoints.php:360
4039
- msgid "Warning! Importing CubePoints balances will replace your users myCRED balance!"
 
 
4040
  msgstr ""
4041
- "¡Advertencia! ¡La importación de los saldos de CubePoints reemplazará el saldo "
4042
- "de myCRED para tus usuarios!"
4043
 
4044
  #: ../includes/importers/mycred-cubepoints.php:378
4045
  msgid "Import Log"
@@ -4060,8 +4521,8 @@ msgstr "Extensiones"
4060
  #: ../modules/mycred-module-addons.php:158
4061
  msgid ""
4062
  "The <strong>buy</strong>CRED Add-on allows your users to buy points using "
4063
- "PayPal, Skrill (Moneybookers) or NETbilling. <strong>buy</strong>CRED can also "
4064
- "let your users buy points for other members."
4065
  msgstr ""
4066
  "La Extensión <strong>compra</strong>CRED permite que tus usuarios compren "
4067
  "puntos utilizando PayPal, Skrill (Moneybookers) o NETbilling. "
@@ -4073,12 +4534,14 @@ msgid ""
4073
  "The coupons add-on allows you to create coupons that users can use to add "
4074
  "points to their accounts."
4075
  msgstr ""
4076
- "Los cupones de add-on le permite crear cupones que los usuarios pueden utilizar "
4077
- "para agregar puntos a sus cuentas."
4078
 
4079
  #: ../modules/mycred-module-addons.php:180
4080
  msgid "Create email notices for any type of myCRED instance."
4081
- msgstr "Crea avisos por correo electrónico para cualquier tipo de instancias de myCRED."
 
 
4082
 
4083
  #: ../modules/mycred-module-addons.php:191
4084
  msgid ""
@@ -4087,9 +4550,9 @@ msgid ""
4087
  "Bookings: Event Espresso and Events Manager (free & pro)."
4088
  msgstr ""
4089
  "Permite que tus usuarios paguen utilizando el saldo de sus puntos "
4090
- "<strong>my</strong>CRED. Carritos soportados: WooCommerce, MarketPress and WP E-"
4091
- "Commerce. Reservas de Eventos soportados: Event Espresso and Events Manager "
4092
- "(gratis y pro)."
4093
 
4094
  #: ../modules/mycred-module-addons.php:202
4095
  msgid "Create pop-up notifications for when users gain or loose points."
@@ -4097,11 +4560,11 @@ msgstr "Crear notificaciones pop-up cuando los usuarios ganan o pierden puntos."
4097
 
4098
  #: ../modules/mycred-module-addons.php:214
4099
  msgid ""
4100
- "Create ranks for users reaching a certain number of %_plural% with the option "
4101
- "to add logos for each rank."
4102
  msgstr ""
4103
- "Crear rangos para los usuarios que alcanzan a un cierto número de %_plural% con "
4104
- "la opción de añadir logotipos para cada rango."
4105
 
4106
  #: ../modules/mycred-module-addons.php:225
4107
  msgid ""
@@ -4110,19 +4573,21 @@ msgid ""
4110
  "parts of your content allowing you to offer \"teasers\"."
4111
  msgstr ""
4112
  "Esta extensión permite que vendas posts, páginas o cualquier tipo de "
4113
- "publicación en tu sitio web. Puedes venter contenidos enteros o utilizando el "
4114
- "código corto (shortcode), vender partes de tu contenido permitiendote ofrecer "
4115
- "\"avances\"."
4116
 
4117
  #: ../modules/mycred-module-addons.php:236
4118
  msgid ""
4119
  "Allow your users to send or \"donate\" points to other members by either using "
4120
  "the mycred_transfer shortcode or the myCRED Transfer widget."
4121
  msgstr ""
4122
- "Permite que los usuarios envien o \"donen\" puntos a otros miembros utilizando el "
4123
- "código corto (shortcode) de mycred_transfer o el widget de Transferencia myCRED."
 
4124
 
4125
  #: ../modules/mycred-module-addons.php:272
 
4126
  msgid "%s Add-ons"
4127
  msgstr "%s Extensiones (addons)"
4128
 
@@ -4141,6 +4606,7 @@ msgstr ""
4141
  "técnicas."
4142
 
4143
  #: ../modules/mycred-module-addons.php:306
 
4144
  msgid "You can find more add-ons in our %s."
4145
  msgstr "Puedes encontrar más extensiones (add-ons) en nuestro %s."
4146
 
@@ -4181,6 +4647,7 @@ msgid "My History"
4181
  msgstr "Mi Historial"
4182
 
4183
  #: ../modules/mycred-module-buddypress.php:31
 
4184
  msgid "%s's History"
4185
  msgstr "La Historial de %s"
4186
 
@@ -4201,10 +4668,12 @@ msgid "BuddyPress"
4201
  msgstr "BuddyPress"
4202
 
4203
  #: ../modules/mycred-module-buddypress.php:389
 
4204
  msgid "%singular% Balance"
4205
  msgstr "%singular% Saldo"
4206
 
4207
  #: ../modules/mycred-module-buddypress.php:405
 
4208
  msgid "Members and visitors can other members %_singular% balance."
4209
  msgstr "Miembros y visitantes pueden ver el saldo de %_singular% de otros miembros."
4210
 
@@ -4227,6 +4696,7 @@ msgid "Title shown to me"
4227
  msgstr "Título mostrado a mi"
4228
 
4229
  #: ../modules/mycred-module-buddypress.php:445
 
4230
  msgid "Title shown to others. Use %s to show the first name."
4231
  msgstr "Título mostrado a otros. Utilice %s para mostrar el nombre de pila."
4232
 
@@ -4250,53 +4720,64 @@ msgstr "¡No utilice espacios vacíos!"
4250
  msgid "Number of history entries to show"
4251
  msgstr "Numero de entradas de historial a mostrar"
4252
 
4253
- #: ../modules/mycred-module-hooks.php:25 ../modules/mycred-module-hooks.php:26 ../modules/mycred-module-hooks.php:27
 
4254
  msgid "Hooks"
4255
  msgstr "Ganchos"
4256
 
4257
  #: ../modules/mycred-module-hooks.php:87
 
4258
  msgid "%plural% for registrations"
4259
  msgstr "%plural% por inscripciones"
4260
 
4261
  #: ../modules/mycred-module-hooks.php:88
 
4262
  msgid "Award %_plural% for users joining your website."
4263
  msgstr "Concede %_plural% a usuarios para unirse a tu sitio de web."
4264
 
4265
  #: ../modules/mycred-module-hooks.php:94
 
4266
  msgid "%plural% for logins"
4267
  msgstr "%plural% para ingresos"
4268
 
4269
  #: ../modules/mycred-module-hooks.php:95
 
4270
  msgid ""
4271
  "Award %_plural% for logging in to your website. You can also set an optional "
4272
  "limit."
4273
  msgstr ""
4274
- "Conceder %_plural% por iniciar sesión en tu sitio web. También puedes ajustar "
4275
- "un limíte opcional."
4276
 
4277
  #: ../modules/mycred-module-hooks.php:101
 
4278
  msgid "%plural% for publishing content"
4279
  msgstr "%plural% por publicar contenido"
4280
 
4281
  #: ../modules/mycred-module-hooks.php:102
 
4282
  msgid ""
4283
  "Award %_plural% for publishing content on your website. If your custom post "
4284
  "type is not shown bellow, make sure it is set to \"Public\"."
4285
  msgstr "Concede %_plural% por publicar contenido en tu sitio web. "
4286
 
4287
  #: ../modules/mycred-module-hooks.php:108
 
4288
  msgid "%plural% for comments"
4289
  msgstr "%plural% por comentarios"
4290
 
4291
  #: ../modules/mycred-module-hooks.php:108
 
4292
  msgid "%plural% for Disqus comments"
4293
  msgstr "%plural% por comentarios Disqus"
4294
 
4295
  #: ../modules/mycred-module-hooks.php:109
 
4296
  msgid "Award %_plural% for making comments."
4297
  msgstr "Concede %_plural% por hacer comentarios."
4298
 
4299
  #: ../modules/mycred-module-hooks.php:115
 
4300
  msgid "%plural% for clicking on links"
4301
  msgstr "%plural% por hacer clic sobre enlaces"
4302
 
@@ -4305,32 +4786,35 @@ msgid ""
4305
  "Award %_plural% to users who clicks on links generated by the [mycred_link] "
4306
  "shortcode."
4307
  msgstr ""
4308
- "Concede %_plural% a los usuarios que han hecho clic sobre enlaces generados por "
4309
- "el [mycred_link] código corto (shortcode)."
4310
 
4311
  #: ../modules/mycred-module-hooks.php:122
 
4312
  msgid "%plural% for viewing Videos"
4313
  msgstr "%plural% por ver videos"
4314
 
4315
  #: ../modules/mycred-module-hooks.php:123
4316
  msgid ""
4317
- "Award %_plural% to users who watches videos embedded using the [mycred_video] "
4318
- "shortcode."
4319
  msgstr ""
4320
- "Concede %_plural% a los usuarios que han visto videos incrustados utilizando el "
4321
- "[mycred_link] código corto (shortcode)."
4322
 
4323
  #: ../modules/mycred-module-hooks.php:129
 
4324
  msgid "%plural% for referrals"
4325
  msgstr "%plural% por referencias (o recomendaciones)"
4326
 
4327
  #: ../modules/mycred-module-hooks.php:130
4328
  msgid "Award %_plural% to users who refer either visitors and/or new member signups."
4329
  msgstr ""
4330
- "Concede %_plural% a los usuarios que o refieren visitantes y/o nuevos miembros "
4331
- "inscritos."
4332
 
4333
  #: ../modules/mycred-module-hooks.php:163
 
4334
  msgid "%s Hooks"
4335
  msgstr "Ganchos de %s"
4336
 
@@ -4339,26 +4823,64 @@ msgid ""
4339
  "Hooks are instances where %_plural% are awarded or deducted from a user, "
4340
  "depending on their actions around your website."
4341
  msgstr ""
4342
- "Ganchas son instancias donde %_plural% son concedidos (o restados) al usuario, "
4343
- "dependiendo de sus acciones en tu sitio web."
4344
-
4345
- #: ../modules/mycred-module-hooks.php:326 ../modules/mycred-module-hooks.php:638 ../modules/mycred-module-hooks.php:651 ../modules/mycred-module-hooks.php:687 ../modules/mycred-module-hooks.php:1067 ../modules/mycred-module-hooks.php:1084 ../modules/mycred-module-hooks.php:1101 ../modules/mycred-module-hooks.php:2212 ../modules/mycred-module-hooks.php:2241 ../plugins/mycred-hook-badgeOS.php:281 ../plugins/mycred-hook-bbPress.php:471 ../plugins/mycred-hook-bbPress.php:484 ../plugins/mycred-hook-bbPress.php:497 ../plugins/mycred-hook-bbPress.php:515 ../plugins/mycred-hook-bbPress.php:528 ../plugins/mycred-hook-bbPress.php:547 ../plugins/mycred-hook-bbPress.php:575 ../plugins/mycred-hook-buddypress-gallery.php:104 ../plugins/mycred-hook-buddypress-links.php:254 ../plugins/mycred-hook-buddypress-links.php:267 ../plugins/mycred-hook-buddypress-links.php:280 ../plugins/mycred-hook-buddypress-links.php:291 ../plugins/mycred-hook-buddypress-links.php:304 ../plugins/mycred-hook-buddypress-links.php:317 ../plugins/mycred-hook-buddypress-media.php:170 ../plugins/mycred-hook-buddypress-media.php:180 ../plugins/mycred-hook-buddypress-media.php:190 ../plugins/mycred-hook-buddypress-media.php:203 ../plugins/mycred-hook-buddypress-media.php:213 ../plugins/mycred-hook-buddypress-media.php:223 ../plugins/mycred-hook-buddypress.php:381 ../plugins/mycred-hook-buddypress.php:394 ../plugins/mycred-hook-buddypress.php:407 ../plugins/mycred-hook-buddypress.php:420 ../plugins/mycred-hook-buddypress.php:433 ../plugins/mycred-hook-buddypress.php:446 ../plugins/mycred-hook-buddypress.php:459 ../plugins/mycred-hook-buddypress.php:472 ../plugins/mycred-hook-buddypress.php:926 ../plugins/mycred-hook-buddypress.php:939 ../plugins/mycred-hook-buddypress.php:952 ../plugins/mycred-hook-buddypress.php:965 ../plugins/mycred-hook-buddypress.php:978 ../plugins/mycred-hook-buddypress.php:991 ../plugins/mycred-hook-buddypress.php:1005 ../plugins/mycred-hook-buddypress.php:1018 ../plugins/mycred-hook-buddypress.php:1031 ../plugins/mycred-hook-buddypress.php:1044 ../plugins/mycred-hook-contact-form7.php:137 ../plugins/mycred-hook-gravityforms.php:113 ../plugins/mycred-hook-invite-anyone.php:160 ../plugins/mycred-hook-invite-anyone.php:181 ../plugins/mycred-hook-jetpack.php:506 ../plugins/mycred-hook-jetpack.php:519 ../plugins/mycred-hook-simplepress.php:330 ../plugins/mycred-hook-simplepress.php:343 ../plugins/mycred-hook-simplepress.php:356 ../plugins/mycred-hook-simplepress.php:380
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
4346
  msgid "Log template"
4347
  msgstr "Plantilla de Registro"
4348
 
4349
- #: ../modules/mycred-module-hooks.php:527 ../modules/mycred-module-hooks.php:2220 ../modules/mycred-module-hooks.php:2249 ../plugins/mycred-hook-invite-anyone.php:165 ../plugins/mycred-hook-invite-anyone.php:186
 
 
4350
  msgid "Limit"
4351
  msgstr "Límite"
4352
 
4353
  #: ../modules/mycred-module-hooks.php:632
 
4354
  msgid "%plural% for Posts"
4355
  msgstr "%plural% por Posts"
4356
 
4357
  #: ../modules/mycred-module-hooks.php:645
 
4358
  msgid "%plural% for Pages"
4359
  msgstr "%plural% por Paginas"
4360
 
4361
  #: ../modules/mycred-module-hooks.php:681
 
4362
  msgid "%plural% for %s"
4363
  msgstr "%plural% por %s"
4364
 
@@ -4367,18 +4889,20 @@ msgid ""
4367
  "%plural% are only awarded when your website has been synced with the Disqus "
4368
  "server!"
4369
  msgstr ""
4370
- "¡%_plural% seran concedidos unicamente cuando tu sitio web se ha sincronizado "
4371
- "con el servidor de Disqus!"
4372
 
4373
  #: ../modules/mycred-module-hooks.php:1055
4374
  msgid "Approved Comment"
4375
  msgstr "Comentario Aprobado"
4376
 
4377
- #: ../modules/mycred-module-hooks.php:1058 ../modules/mycred-module-hooks.php:1075 ../modules/mycred-module-hooks.php:1092
 
4378
  msgid "Comment Author"
4379
  msgstr "Autor del Comentario"
4380
 
4381
- #: ../modules/mycred-module-hooks.php:1062 ../modules/mycred-module-hooks.php:1079 ../modules/mycred-module-hooks.php:1096
 
4382
  msgid "Content Author"
4383
  msgstr "Autor del Contenido"
4384
 
@@ -4414,7 +4938,9 @@ msgstr ""
4414
  "número ilimitado."
4415
 
4416
  #: ../modules/mycred-module-hooks.php:1122
4417
- msgid "%plural% is to be awarded even when comment authors reply to their own comment."
 
 
4418
  msgstr ""
4419
  "%_plural% seran concedidos incluso cuando los autores responden a su proprio "
4420
  "comentario."
@@ -4429,13 +4955,14 @@ msgstr "Una vez para cada id del enlace único "
4429
 
4430
  #: ../modules/mycred-module-hooks.php:1386
4431
  msgid ""
4432
- "The default amount to award for clicking on links. You can override this in the "
4433
- "shortcode."
4434
  msgstr ""
4435
  "La cantidad predefinida que sera cedida por hacer clic sobre enlaces. Puedes "
4436
  "anular esto con el 'shortcode' (código corto)."
4437
 
4438
  #: ../modules/mycred-module-hooks.php:1393
 
4439
  msgid "Custom tags: %url%, %title% or %id%."
4440
  msgstr "Etiquetas personalizadas: %url%, %title% o/u %id%."
4441
 
@@ -4446,8 +4973,9 @@ msgstr "¡Atención!"
4446
  #: ../modules/mycred-module-hooks.php:1404
4447
  msgid ""
4448
  "If no ID is set when using the mycred_link shortcode, the shortcode will "
4449
- "generate one automatically based on the value set under href. If you are using "
4450
- "this feature for \"sharing\" content, it is recommended that you limit by ID."
 
4451
  msgstr ""
4452
  "Si no se ha fijado ningun ID cuando estas utilizando el codigo corto "
4453
  "(shortcode) de mycred_link, se generará uno automaticamente basado sobre el "
@@ -4467,6 +4995,7 @@ msgid "Award Logic"
4467
  msgstr "Lógica de Concesión"
4468
 
4469
  #: ../modules/mycred-module-hooks.php:1738
 
4470
  msgid "Select when %_plural% should be awarded or deducted."
4471
  msgstr "Elige cuando %_plural% deberian ser concedidos o restados."
4472
 
@@ -4500,9 +5029,9 @@ msgstr ""
4500
 
4501
  #: ../modules/mycred-module-hooks.php:1758
4502
  msgid ""
4503
- "Do not set this value to zero! A lot of thing can happen while a user watches a "
4504
- "movie and sometimes a few seconds can drop of the counter due to buffering or "
4505
- "play back errors."
4506
  msgstr ""
4507
  "¡No fijes este valor a cero! Muchas cosas pueden suceder mientras que un "
4508
  "usuario ve una película y a veces la contador puede disminuir por pocos "
@@ -4565,8 +5094,8 @@ msgstr "Límite de IP"
4565
  #: ../modules/mycred-module-hooks.php:2290
4566
  msgid "The number of times each IP address grants %_plural%. Use zero for unlimited."
4567
  msgstr ""
4568
- "El numero de veces que cada IP concede %_plural%. Utilice cero para un número "
4569
- "ilimitado"
4570
 
4571
  #: ../modules/mycred-module-hooks.php:2294 ../modules/mycred-module-hooks.php:2327
4572
  msgid "BuddyPress Profile"
@@ -4578,12 +5107,12 @@ msgstr "Insertar enlace en el perfil del usuario"
4578
 
4579
  #: ../modules/mycred-module-hooks.php:2298
4580
  msgid ""
4581
- "Option to inser the referral link in users profiles. Links will only be visible "
4582
- "to users viewing their own profiles or administrators."
4583
  msgstr ""
4584
- "Opción para insertar el enlace de referencia en los perfiles de los usuarios. "
4585
- "Estos enlaces serán visibles a los administradores o a los usuarios cuando ven "
4586
- "a sus propios perfiles."
4587
 
4588
  #: ../modules/mycred-module-hooks.php:2304
4589
  msgid "Leave empty to hide."
@@ -4606,14 +5135,14 @@ msgid ""
4606
  "You can move around the referral link on your users profile by changing the "
4607
  "position. Increase to move up, decrease to move down."
4608
  msgstr ""
4609
- "Puedes moverte por el enlace de referencia en su perfil los usuarios cambiando "
4610
- "la posición. Aumentar a moverse hacia arriba, disminuye al bajar."
4611
 
4612
  #: ../modules/mycred-module-hooks.php:2323
4613
  msgid "You can not move the referral link above the users \"Base\" profile details!"
4614
  msgstr ""
4615
- "¡No puedes trasladar el enlace de referencia encima de los detalles \"Base\" en "
4616
- "el perfil del usuario!"
4617
 
4618
  #: ../modules/mycred-module-hooks.php:2329
4619
  msgid "Requires BuddyPress Extended Profiles to be enabled."
@@ -4623,7 +5152,8 @@ msgstr "Requiere que BuddyPress Extended Profiles sea activado."
4623
  msgid "Available Shortcodes"
4624
  msgstr "Códigos cortos Disponibles"
4625
 
4626
- #: ../modules/mycred-module-log.php:185 ../modules/mycred-module-log.php:206 ../modules/mycred-module-settings.php:61 ../modules/mycred-module-settings.php:102
 
4627
  msgid "Access denied for this action"
4628
  msgstr "Acceso denegado para esta acción"
4629
 
@@ -4643,7 +5173,8 @@ msgstr "Entrada Actualizada"
4643
  msgid "Entries"
4644
  msgstr "Entradas"
4645
 
4646
- #: ../modules/mycred-module-log.php:301 ../modules/mycred-module-log.php:381 ../modules/mycred-module-log.php:625 ../modules/mycred-module-settings.php:570
 
4647
  msgid "Export"
4648
  msgstr "Exportar"
4649
 
@@ -4652,6 +5183,7 @@ msgid "Search results for"
4652
  msgstr "Buscar entre resultados por"
4653
 
4654
  #: ../modules/mycred-module-log.php:375
 
4655
  msgid "%s Log"
4656
  msgstr "Registro de %s"
4657
 
@@ -4680,10 +5212,12 @@ msgid "Update Log Entry"
4680
  msgstr "Actualiza la entrada de registro"
4681
 
4682
  #: ../modules/mycred-module-log.php:619
 
4683
  msgid "My %s History"
4684
  msgstr "Mi Historial de %s"
4685
 
4686
- #: ../modules/mycred-module-settings.php:65 ../modules/mycred-module-settings.php:106 ../modules/mycred-module-settings.php:148
 
4687
  msgid "Missing point type"
4688
  msgstr "Falta el tipo de punto"
4689
 
@@ -4696,14 +5230,16 @@ msgid "No users found to export"
4696
  msgstr "No se encontro usuarios para exportar"
4697
 
4698
  #: ../modules/mycred-module-settings.php:330
 
4699
  msgid "%s Settings"
4700
  msgstr "Configuración de %s"
4701
 
4702
  #: ../modules/mycred-module-settings.php:333
 
4703
  msgid "Adjust your core or add-on settings. Follow us on: %s %s"
4704
  msgstr ""
4705
- "Ajusta las configuraciones basicos o las de las extensiones (addons). Síguenos "
4706
- "en: %s %s"
4707
 
4708
  #: ../modules/mycred-module-settings.php:338
4709
  msgid "Core Settings"
@@ -4714,6 +5250,7 @@ msgid "Name"
4714
  msgstr "Nombre"
4715
 
4716
  #: ../modules/mycred-module-settings.php:345
 
4717
  msgid "Accessible though the %singular% template tag."
4718
  msgstr "Acesible a través de la etiqueta de la plantilla del %singular%."
4719
 
@@ -4742,7 +5279,8 @@ msgid "Edit Settings"
4742
  msgstr "Editar las Configuraciones"
4743
 
4744
  #. or "Verificar la capacidad de"
4745
- #: ../modules/mycred-module-settings.php:380 ../modules/mycred-module-settings.php:385
 
4746
  msgid "Capability to check for."
4747
  msgstr "La capacidad que se va a verificar."
4748
 
@@ -4788,7 +5326,8 @@ msgstr "Exportar CSV"
4788
  msgid "Default"
4789
  msgstr "Predefinido"
4790
 
4791
- #: ../modules/mycred-module-settings.php:480 ../modules/mycred-module-settings.php:499 ../modules/mycred-module-settings.php:521
 
4792
  msgid "Meta Key"
4793
  msgstr "Clave Meta"
4794
 
@@ -4822,20 +5361,21 @@ msgstr "Ingreso de Usuario"
4822
 
4823
  #: ../modules/mycred-module-settings.php:562
4824
  msgid ""
4825
- "Use ID if you intend to use this export as a backup of your current site while "
4826
- "Email is recommended if you want to export to a different site."
4827
  msgstr ""
4828
- "Usa ID si deseas tener esta exportación como un respaldo de tu sitio, Usa Email "
4829
- "si deseas exportar la data a otro sitio"
4830
 
4831
  #: ../modules/mycred-module-settings.php:565
4832
  msgid "Import Log Entry"
4833
  msgstr "Importa la entrada de registro"
4834
 
4835
  #: ../modules/mycred-module-settings.php:567
 
4836
  msgid ""
4837
- "Optional log entry to use if you intend to import this file in a different %s "
4838
- "installation."
4839
  msgstr ""
4840
  "Usa la entrada de registro opcional si tiene la intención de importar este "
4841
  "fichero en otra instalación %s."
@@ -4853,10 +5393,13 @@ msgstr ""
4853
  "Estos ajustes pueden ser anulados para el tipo de logro individual."
4854
 
4855
  #: ../plugins/mycred-hook-badgeOS.php:98
4856
- msgid "Please setup your <a href=\"%s\">default settings</a> before using this feature."
 
 
 
4857
  msgstr ""
4858
- "Por favor configura tus <a href=\"%s\">configuraciones predefinidos</a> antes de "
4859
- "usar este función."
4860
 
4861
  #: ../plugins/mycred-hook-badgeOS.php:109 ../plugins/mycred-hook-badgeOS.php:111
4862
  msgid "%plural% to Award"
@@ -4872,6 +5415,7 @@ msgid "Deduction Log Template"
4872
  msgstr "Plantilla de Registro Descontado"
4873
 
4874
  #: ../plugins/mycred-hook-badgeOS.php:261
 
4875
  msgid "Default %s for %s"
4876
  msgstr "Predeterminar %s por %s"
4877
 
@@ -4888,50 +5432,65 @@ msgid "bbPress"
4888
  msgstr "bbPress"
4889
 
4890
  #: ../plugins/mycred-hook-bbPress.php:19
 
4891
  msgid "Awards %_plural% for bbPress actions."
4892
  msgstr "Concede %_plural% por acciones en bbPress."
4893
 
4894
  #: ../plugins/mycred-hook-bbPress.php:464
 
4895
  msgid "%plural% for New Forum"
4896
  msgstr "%plural% por nuevo foro"
4897
 
4898
  #: ../plugins/mycred-hook-bbPress.php:477
 
4899
  msgid "%plural% for Forum Deletion"
4900
  msgstr "%plural% por Eliminar Foro"
4901
 
4902
- #: ../plugins/mycred-hook-bbPress.php:490 ../plugins/mycred-hook-simplepress.php:323
 
 
4903
  msgid "%plural% for New Topic"
4904
  msgstr "%plural% por Nuevo Tema"
4905
 
4906
  #: ../plugins/mycred-hook-bbPress.php:504
 
4907
  msgid "Forum authors can receive %_plural% for creating new topics."
4908
  msgstr "Autores "
4909
 
4910
- #: ../plugins/mycred-hook-bbPress.php:508 ../plugins/mycred-hook-bbPress.php:568 ../plugins/mycred-hook-simplepress.php:336
 
 
4911
  msgid "%plural% for Topic Deletion"
4912
  msgstr "%plural% por Borrar Tema"
4913
 
4914
  #: ../plugins/mycred-hook-bbPress.php:521
 
4915
  msgid "%plural% for Favorited Topic"
4916
  msgstr "%plural% por Añadir Tema a tus \"Favoritos\""
4917
 
4918
- #: ../plugins/mycred-hook-bbPress.php:534 ../plugins/mycred-hook-bbPress.php:558 ../plugins/mycred-hook-buddypress.php:375 ../plugins/mycred-hook-simplepress.php:367
 
 
4919
  msgid "Daily Limit"
4920
  msgstr "Limite Diario"
4921
 
4922
- #: ../plugins/mycred-hook-bbPress.php:536 ../plugins/mycred-hook-bbPress.php:560 ../plugins/mycred-hook-simplepress.php:369
 
4923
  msgid "Use zero for unlimited"
4924
  msgstr "Ponga cero para ilimitado"
4925
 
4926
  #: ../plugins/mycred-hook-bbPress.php:540
 
4927
  msgid "%plural% for New Reply"
4928
  msgstr "%plural% por Nueva Respuesta"
4929
 
4930
  #: ../plugins/mycred-hook-bbPress.php:554
 
4931
  msgid "Topic authors can receive %_plural% for replying to their own Topic"
4932
  msgstr "Autor de la tema puede recibir %_plural% por responder a su propia Tema"
4933
 
4934
  #: ../plugins/mycred-hook-bbPress.php:564
 
4935
  msgid "Show users %_plural% balance in replies"
4936
  msgstr "Mostrar usuarios el saldo de %_plural% en las respuestas"
4937
 
@@ -4940,6 +5499,7 @@ msgid "BuddyPress: Gallery Actions"
4940
  msgstr "BuddyPress: Acciones sobre Galerías"
4941
 
4942
  #: ../plugins/mycred-hook-buddypress-gallery.php:20
 
4943
  msgid ""
4944
  "Awards %_plural% for creating a new gallery either using BP Album+ or BP "
4945
  "Gallery."
@@ -4948,6 +5508,7 @@ msgstr ""
4948
  "Gallery."
4949
 
4950
  #: ../plugins/mycred-hook-buddypress-gallery.php:97
 
4951
  msgid "%plural% for New Gallery"
4952
  msgstr "%plural% por Nueva Galería"
4953
 
@@ -4956,14 +5517,17 @@ msgid "BuddyPress: Links"
4956
  msgstr "BuddyPress: Enlaces"
4957
 
4958
  #: ../plugins/mycred-hook-buddypress-links.php:20
 
4959
  msgid "Awards %_plural% for link related actions."
4960
  msgstr "Concede %_plural% por acciones relacionados a enlaces."
4961
 
4962
  #: ../plugins/mycred-hook-buddypress-links.php:247
 
4963
  msgid "%plural% for New Links"
4964
  msgstr "%plural% por Nuevas Enlaces"
4965
 
4966
  #: ../plugins/mycred-hook-buddypress-links.php:260
 
4967
  msgid "%plural% for Vote on Link"
4968
  msgstr "%plural% por Votar sobre Enlaces"
4969
 
@@ -4980,10 +5544,12 @@ msgid "Vote Down"
4980
  msgstr "Votar en Contra "
4981
 
4982
  #: ../plugins/mycred-hook-buddypress-links.php:297
 
4983
  msgid "%plural% for Updating Links"
4984
  msgstr "%plural% por Actualizar Enlaces"
4985
 
4986
  #: ../plugins/mycred-hook-buddypress-links.php:310
 
4987
  msgid "%plural% for Deleting Links"
4988
  msgstr "%plural% por Borrar Enlaces"
4989
 
@@ -4992,6 +5558,7 @@ msgid "rtMedia Galleries"
4992
  msgstr "Galerías rtMedia (rtMedia Galleries)"
4993
 
4994
  #: ../plugins/mycred-hook-buddypress-media.php:19
 
4995
  msgid "Award / Deduct %_plural% for users creating albums or uploading new photos."
4996
  msgstr "Concede / Resta %_plural% a usuarios por crear álbumes o subir nuevos fotos."
4997
 
@@ -5032,6 +5599,7 @@ msgid "BuddyPress: Members"
5032
  msgstr "BuddyPress: Miembros"
5033
 
5034
  #: ../plugins/mycred-hook-buddypress.php:21
 
5035
  msgid "Awards %_plural% for profile related actions."
5036
  msgstr "Concede %_plural% por acciones relacionados al perfil."
5037
 
@@ -5040,6 +5608,7 @@ msgid "BuddyPress: Groups"
5040
  msgstr "BuddyPress: Grupos"
5041
 
5042
  #: ../plugins/mycred-hook-buddypress.php:29
 
5043
  msgid ""
5044
  "Awards %_plural% for group related actions. Use minus to deduct %_plural% or "
5045
  "zero to disable a specific hook."
@@ -5048,6 +5617,7 @@ msgstr ""
5048
  "sustraer %_plural% o cero para desabilitar un gancho especifico."
5049
 
5050
  #: ../plugins/mycred-hook-buddypress.php:369
 
5051
  msgid "%plural% for Profile Updates"
5052
  msgstr "%plural% por Actualizar Perfil"
5053
 
@@ -5056,34 +5626,42 @@ msgid "Daily limit. Use zero for unlimited."
5056
  msgstr "Limite Diario. Ponga cero para ilimitado."
5057
 
5058
  #: ../plugins/mycred-hook-buddypress.php:387
 
5059
  msgid "%plural% for New Avatar"
5060
  msgstr "%plural% por Nuevo Avatar"
5061
 
5062
  #: ../plugins/mycred-hook-buddypress.php:400
 
5063
  msgid "%plural% for New Friendships"
5064
  msgstr "%plural% por Nueva Amistad"
5065
 
5066
  #: ../plugins/mycred-hook-buddypress.php:413
 
5067
  msgid "%plural% for Leaving Friendship"
5068
  msgstr "%plural% por Dejar Amistad"
5069
 
5070
  #: ../plugins/mycred-hook-buddypress.php:426
 
5071
  msgid "%plural% for New Comment"
5072
  msgstr "%plural% por Nuevo Comentario"
5073
 
5074
  #: ../plugins/mycred-hook-buddypress.php:439
 
5075
  msgid "%plural% for Deleting Comment"
5076
  msgstr "%plural% por Borrar Comentario"
5077
 
5078
  #: ../plugins/mycred-hook-buddypress.php:452
 
5079
  msgid "%plural% for New Messages"
5080
  msgstr "%plural% por Nuevo Mensaje"
5081
 
5082
  #: ../plugins/mycred-hook-buddypress.php:465
 
5083
  msgid "%plural% for Sending Gift"
5084
  msgstr "%plural% por Enviar Regalo"
5085
 
5086
  #: ../plugins/mycred-hook-buddypress.php:912
 
5087
  msgid "%plural% for Creating Groups"
5088
  msgstr "%plural% por Creat Cupones"
5089
 
@@ -5104,26 +5682,32 @@ msgid "Use zero to award %_plural% when group is created."
5104
  msgstr "Ponga cero para %_plural% cuando se crea un grupo."
5105
 
5106
  #: ../plugins/mycred-hook-buddypress.php:932
 
5107
  msgid "%plural% for Deleting Groups"
5108
  msgstr "%plural% por Borrar Grupos"
5109
 
5110
  #: ../plugins/mycred-hook-buddypress.php:945
 
5111
  msgid "%plural% for New Forum Topic"
5112
  msgstr "%plural% por Nuevo Tema de Foro"
5113
 
5114
  #: ../plugins/mycred-hook-buddypress.php:958
 
5115
  msgid "%plural% for Editing Forum Topic"
5116
  msgstr "%plural% por Editar Tema de Foro"
5117
 
5118
  #: ../plugins/mycred-hook-buddypress.php:971
 
5119
  msgid "%plural% for New Forum Post"
5120
  msgstr "%plural% por Nueva Publicación en Foro"
5121
 
5122
  #: ../plugins/mycred-hook-buddypress.php:984
 
5123
  msgid "%plural% for Editing Forum Post"
5124
  msgstr "%plural% por Editar Publicación en Foro"
5125
 
5126
  #: ../plugins/mycred-hook-buddypress.php:997
 
5127
  msgid "%plural% for Joining Groups"
5128
  msgstr "%plural% por Unirse a Grupos"
5129
 
@@ -5136,14 +5720,17 @@ msgstr ""
5136
  "\"Unirse a Grupo\" sera desactivada."
5137
 
5138
  #: ../plugins/mycred-hook-buddypress.php:1011
 
5139
  msgid "%plural% for Leaving Groups"
5140
  msgstr "%plural% por Dejar Grupos"
5141
 
5142
  #: ../plugins/mycred-hook-buddypress.php:1024
 
5143
  msgid "%plural% for New Group Avatar"
5144
  msgstr "%plural% por Nuevo Avatar de Grupo"
5145
 
5146
  #: ../plugins/mycred-hook-buddypress.php:1037
 
5147
  msgid "%plural% for New Group Comment"
5148
  msgstr "%plural% por Nuevo Comentario Grupo"
5149
 
@@ -5152,12 +5739,14 @@ msgid "Contact Form 7 Form Submissions"
5152
  msgstr "Presentación Formulario de Contact Form 7"
5153
 
5154
  #: ../plugins/mycred-hook-contact-form7.php:19
 
5155
  msgid "Awards %_plural% for successful form submissions (by logged in users)."
5156
  msgstr ""
5157
  "Concede %_plural% por el exitoso envío del formulario (por usuarios que han "
5158
  "iniciado sesión)"
5159
 
5160
- #: ../plugins/mycred-hook-contact-form7.php:110 ../plugins/mycred-hook-gravityforms.php:86
 
5161
  msgid "No forms found."
5162
  msgstr "No se ha encontrado ningun formulario."
5163
 
@@ -5166,6 +5755,7 @@ msgid "Events Manager"
5166
  msgstr "Gestionamiento de Eventos"
5167
 
5168
  #: ../plugins/mycred-hook-events-manager-light.php:19
 
5169
  msgid "Awards %_plural% for users attending events."
5170
  msgstr "Concede %_plural% para usuarios que asistieron actividades o eventos."
5171
 
@@ -5182,10 +5772,11 @@ msgid "GD Star Rating"
5182
  msgstr "GD Star Rating"
5183
 
5184
  #: ../plugins/mycred-hook-gd-star-rating.php:19
 
5185
  msgid "Awards %_plural% for users rate items using the GD Star Rating plugin."
5186
  msgstr ""
5187
- "Concede %_plural% a usuarios que evaluan artículos a través de GD Star Rating "
5188
- "plugin."
5189
 
5190
  #: ../plugins/mycred-hook-gd-star-rating.php:103
5191
  msgid "Rating"
@@ -5202,6 +5793,7 @@ msgid "Gravityform Submissions"
5202
  msgstr "Entregas de Gravityform"
5203
 
5204
  #: ../plugins/mycred-hook-gravityforms.php:19
 
5205
  msgid "Awards %_plural% for successful form submissions."
5206
  msgstr "Concede %_plural% por el exitoso envío del formularios."
5207
 
@@ -5211,6 +5803,7 @@ msgid "Invite Anyone Plugin"
5211
  msgstr "Invite Anyone Plugin"
5212
 
5213
  #: ../plugins/mycred-hook-invite-anyone.php:19
 
5214
  msgid ""
5215
  "Awards %_plural% for sending invitations and/or %_plural% if the invite is "
5216
  "accepted."
@@ -5218,41 +5811,47 @@ msgstr ""
5218
  "Concede %_plural% por mandar invitaciones y/o %_plural% si se acepta la "
5219
  "invitación."
5220
 
5221
- #: ../plugins/mycred-hook-invite-anyone.php:153
 
5222
  msgid "%plural% for Sending An Invite"
5223
  msgstr "%plural% por Enviar una Invitación"
5224
 
5225
- #: ../plugins/mycred-hook-invite-anyone.php:169
5226
  msgid "Maximum number of invites that grants %_plural%. Use zero for unlimited."
5227
  msgstr ""
5228
  "El maximo numero de invitaciones que conceden %_plural%. Ponga cero para "
5229
  "ilimitado."
5230
 
5231
- #: ../plugins/mycred-hook-invite-anyone.php:173
 
5232
  msgid "%plural% for Accepting An Invite"
5233
  msgstr "%plural% por Aceptar una Invitación"
5234
 
5235
- #: ../plugins/mycred-hook-invite-anyone.php:177
 
5236
  msgid "%plural% for each invited user that accepts an invitation."
5237
  msgstr "%plural% por cada usuario invitado que acepta la invitación."
5238
 
5239
- #: ../plugins/mycred-hook-invite-anyone.php:190
5240
  msgid ""
5241
  "Maximum number of accepted invitations that grants %_plural%. Use zero for "
5242
  "unlimited."
5243
  msgstr ""
5244
- "El maximo numero de invitaciones acceptados que conceden %_plural%. Ponga cero "
5245
- "para ilimitado."
5246
 
5247
  #: ../plugins/mycred-hook-jetpack.php:18
5248
  msgid "Jetpack Subscriptions"
5249
  msgstr "Suscripciónes a Jetpack"
5250
 
5251
  #: ../plugins/mycred-hook-jetpack.php:19
5252
- msgid "Awards %_plural% for users signing up for site or comment updates using Jetpack."
 
 
 
5253
  msgstr ""
5254
- "Concede %_plural% a usuarios por incribirse a las actualizaciones del sitio web "
5255
- "o a los comentarios atraves de Jetpack."
5256
 
5257
  #: ../plugins/mycred-hook-jetpack.php:499
5258
  msgid "Site Subscriptions"
@@ -5267,18 +5866,22 @@ msgid "Simple:Press"
5267
  msgstr "Simple:Press"
5268
 
5269
  #: ../plugins/mycred-hook-simplepress.php:19
 
5270
  msgid "Awards %_plural% for Simple:Press actions."
5271
  msgstr "Concede %_plural% por acciones en Simple:Press."
5272
 
5273
  #: ../plugins/mycred-hook-simplepress.php:349
 
5274
  msgid "%plural% for New Topic Post"
5275
  msgstr "%plural% por Nueva Publicacion "
5276
 
5277
  #: ../plugins/mycred-hook-simplepress.php:363
 
5278
  msgid "Topic authors can receive %_plural% for posting on their own Topic"
5279
  msgstr "Autor de la tema puede recibir %_plural% por publicar su propia Tema"
5280
 
5281
  #: ../plugins/mycred-hook-simplepress.php:373
 
5282
  msgid "%plural% for Topic Post Deletion"
5283
  msgstr "%plural% por Borrar la Tema del Post"
5284
 
@@ -5287,6 +5890,7 @@ msgid "WP Favorite Posts"
5287
  msgstr "WP Favorite Posts"
5288
 
5289
  #: ../plugins/mycred-hook-wp-favorite-posts.php:19
 
5290
  msgid "Awards %_plural% for users adding posts to their favorites."
5291
  msgstr "Concede %_plural% a usuarios por añadir entradas a sus favoritos."
5292
 
@@ -5303,5 +5907,6 @@ msgid "WP-Polls"
5303
  msgstr "WP-Polls"
5304
 
5305
  #: ../plugins/mycred-hook-wp-polls.php:19
 
5306
  msgid "Awards %_plural% for users voting in polls."
5307
  msgstr "Concede %_plural% a usuarios que han votado en encuestas."
3
  "Project-Id-Version: myCRED\n"
4
  "Report-Msgid-Bugs-To: http://mycred.me\n"
5
  "POT-Creation-Date: 2014-03-20 14:26+0100\n"
6
+ "PO-Revision-Date: Wed Jun 11 2014 16:26:12 GMT+0200 (CEST)\n"
7
+ "Last-Translator: Gabriel <gabriel.s@merovingi.com>\n"
8
  "Language-Team: LANGUAGE <support@mycred.me>\n"
9
  "Language: Spanish (Venezuela)\n"
10
  "Plural-Forms: nplurals=2; plural=n != 1\n"
14
  "X-Poedit-SourceCharset: UTF-8\n"
15
  "X-Generator: Loco - https://localise.biz/\n"
16
  "X-Poedit-Basepath: .\n"
17
+ "X-Poedit-KeywordsList: _:1;gettext:1;dgettext:2;ngettext:1,2;dngettext:2,3;"
18
+ "__:1;_e:1;_c:1;_n:1,2;_n_noop:1,2;_nc:1,2;__ngettext:1,2;__ngettext_noop:1,2;"
19
+ "_x:1,2c;_ex:1,2c;_nx:1,2,4c;_nx_noop:1,2,3c;_n_js:1,2;_nx_js:1,2,3c;"
20
+ "esc_attr__:1;esc_html__:1;esc_attr_e:1;esc_html_e:1;esc_attr_x:1,2c;"
21
+ "esc_html_x:1,2c;comments_number_link:2,3;t:1;st:1;trans:1;transChoice:1,2\n"
22
+ "X-Poedit-SearchPath-0: /Users/gabriel/Sites/paypana/wp-"
23
+ "content/plugins/mycred\n"
24
  "X-Poedit-SearchPath-1: .\n"
25
  "X-Loco-Target-Locale: es_VE"
26
 
27
+ #: ../mycred.php:400
28
  msgid "Balance"
29
  msgstr "Saldo"
30
 
31
+ #: ../mycred.php:425
32
  msgid "%label% History"
33
  msgstr "%lavel% Historial"
34
 
35
+ #: ../mycred.php:478
36
  msgid "No balances available."
37
  msgstr "No hay saldos disponibles."
38
 
39
+ #: ../mycred.php:524
40
+ #, php-format
41
  msgid "About %s"
42
  msgstr "Sobre"
43
 
44
+ #: ../mycred.php:533
45
  msgid "Awesome People"
46
  msgstr "Gente genial"
47
 
48
+ #: ../mycred.php:618 ../mycred.php:642 ../addons/ranks/myCRED-addon-ranks.php:230
49
+ #: ../addons/ranks/myCRED-addon-ranks.php:922 ../addons/sell-content/myCRED-addon-
50
+ #: sell-content.php:309 ../addons/transfer/myCRED-addon-transfer.php:132 ..
51
+ #: includes/mycred-shortcodes.php:535
52
  msgid "Processing..."
53
  msgstr "Procesando..."
54
 
55
+ #: ../mycred.php:619
56
  msgid ""
57
+ "Warning! All entries in your log will be permanently removed! This can not "
58
+ "be undone!"
59
  msgstr ""
60
+ "¡Aviso! Todas las entradas en su registro seran permanentemente borrado! "
61
+ "¡Esto no se puede deshacer!"
62
 
63
+ #: ../mycred.php:620
64
  msgid ""
65
  "All log entries belonging to deleted users will be permanently deleted! This "
66
  "can not be undone!"
67
  msgstr ""
68
+ "¡Todas las entradas de registro perteneciendo al usuario seran "
69
+ "permanentemente borradas! ¡Esto no se puede deshacer!"
70
 
71
+ #: ../mycred.php:621
72
  msgid "Warning! All user balances will be set to zero! This can not be undone!"
73
  msgstr ""
74
  "¡Aviso! ¡Todo los saldos del usuario seran puesto a cero! ¡Esto no se puede "
75
  "deshacer!"
76
 
77
+ #: ../mycred.php:622
78
  msgid "Done!"
79
  msgstr "¡Realizado!"
80
 
81
+ #: ../mycred.php:623 ../mycred.php:641 ../mycred.php:659
82
  msgid "Close"
83
  msgstr "Cerrar"
84
 
85
+ #: ../mycred.php:624
86
  msgid "Export users %plural%"
87
  msgstr "Exportar usuarios %plural%"
88
 
89
+ #: ../mycred.php:640
90
  msgid "Edit Users Balance"
91
  msgstr "Editar saldo del usuario"
92
 
93
+ #: ../mycred.php:658
94
  msgid "Edit Log Entry"
95
  msgstr "Edidar entrada de registro"
96
 
97
+ #: ../mycred.php:660
98
  msgid "Updating..."
99
  msgstr "Actualizando..."
100
 
101
+ #: ../mycred.php:662
102
  msgid "Are you sure you want to delete this log entry? This can not be undone!"
103
  msgstr ""
104
  "¿Esta seguro que quiere borrar esta entrada de registro? ¡Esto no se puede "
105
  "deshacer!"
106
 
107
+ #: ../mycred.php:663
108
  msgid "Log entry updated"
109
  msgstr "Entrada de registro actualizado"
110
 
111
+ #: ../mycred.php:715 ../mycred.php:736 ../addons/email-notices/myCRED-addon-email-
112
+ #: notices.php:738 ../addons/gateway/event-booking/mycred-eventsmanager-pro.php:
113
+ #: 458 ../addons/gateway/event-booking/mycred-eventsmanager.php:537
114
  msgid "Setup"
115
  msgstr "Configurar"
116
 
117
+ #: ../mycred.php:717 ../addons/gateway/carts/mycred-marketpress.php:360 ..
118
+ #: includes/mycred-network.php:186 ../modules/mycred-module-settings.php:20 ..
119
+ #: modules/mycred-module-settings.php:21 ../modules/mycred-module-settings.php:22
120
  msgid "Settings"
121
  msgstr "Configuraciones"
122
 
123
+ #: ../mycred.php:740 ../modules/mycred-module-addons.php:360
124
  msgid "About"
125
  msgstr "Acerca de"
126
 
127
+ #: ../mycred.php:741
128
  msgid "Tutorials"
129
  msgstr "Tutoriales"
130
 
131
+ #: ../mycred.php:742
132
  msgid "Codex"
133
  msgstr "Códice"
134
 
135
+ #: ../mycred.php:743
136
  msgid "Store"
137
  msgstr "Tienda"
138
 
139
+ #: ../mycred.php:757
140
  msgid ""
141
+ "Make sure to backup your database and files before updating, in case "
142
+ "anything goes wrong!"
143
  msgstr ""
144
  "Antes de actualizar, asegura crear copias de seguridad de su base de datos y "
145
  "archivo, por si acaso!"
152
  msgid "This Hook has no settings"
153
  msgstr "Este gancho no ha sido configurado"
154
 
155
+ #: ../abstracts/mycred-abstract-hook.php:157 ../modules/mycred-module-hooks.php:
156
+ #: 1192
157
  msgid "No limit"
158
  msgstr "Sin Limite"
159
 
173
  msgid "Once per day (reset at midnight)"
174
  msgstr "Una vez al dia (reinicializado al medianoche)"
175
 
176
+ #: ../abstracts/mycred-abstract-hook.php:168 ../addons/banking/abstracts/mycred-
177
+ #: abstract-service.php:342 ../addons/buy-creds/myCRED-addon-buy-creds.php:394 ..
178
+ #: addons/buy-creds/myCRED-addon-buy-creds.php:415 ../addons/buy-
179
+ #: creds/abstracts/mycred-abstract-payment-gateway.php:805 ../addons/buy-
180
+ #: creds/abstracts/mycred-abstract-payment-gateway.php:828 ../addons/buy-
181
+ #: creds/gateways/zombaio.php:375 ../addons/email-notices/myCRED-addon-email-
182
+ #: notices.php:193 ../addons/email-notices/myCRED-addon-email-notices.php:888
183
  msgid "Select"
184
  msgstr "Seleccionar"
185
 
187
  msgid "myCRED_Module() Error. A Module ID is required!"
188
  msgstr "Error de myCRED_Module(). ¡Se requiere una ID de Modulo!"
189
 
190
+ #: ../abstracts/mycred-abstract-module.php:343 ../abstracts/mycred-abstract-
191
+ #: module.php:351
192
  msgid "Surprise"
193
  msgstr "Sorpresa"
194
 
200
  msgid "click to open"
201
  msgstr "haga clic para abrir"
202
 
203
+ #: ../abstracts/mycred-abstract-module.php:472 ../addons/banking/myCRED-addon-
204
+ #: banking.php:163 ../addons/buy-creds/myCRED-addon-buy-creds.php:492
205
  msgid "Settings Updated"
206
  msgstr "Configuraciones Actualizadas"
207
 
208
+ #: ../addons/banking/myCRED-addon-banking.php:42 ../addons/banking/myCRED-addon-
209
+ #: banking.php:43 ../addons/banking/myCRED-addon-banking.php:44 ../modules/mycred-
210
+ #: module-addons.php:146
211
  msgid "Banking"
212
  msgstr "Banco"
213
 
216
  msgstr "Interés Compuesto"
217
 
218
  #: ../addons/banking/myCRED-addon-banking.php:104
219
+ #, php-format
220
  msgid ""
221
  "Apply an interest rate on your users %_plural% balances. Interest rate is "
222
  "annual and is compounded daily as long as this service is enabled. Positive "
223
+ "interest rate leads to users gaining %_plural% while a negative interest "
224
+ "rate will to users loosing %_plural%."
225
  msgstr ""
226
+ "Aplica una tasa de interés al saldo [.....] de sus usuarios. La tasa es "
227
+ "anual y es compuesto diariamente mientras que este servicio esta activada. "
228
+ "Un tipo de interés positiva causara a los usuarios a ganar [.....] mientras "
229
+ "que un tipo de interés negativa causara a los usuarios a perder %_plural%."
230
 
231
  #: ../addons/banking/myCRED-addon-banking.php:110
232
  msgid "Recurring Payouts"
233
  msgstr "Pagos Recurrentes"
234
 
235
  #: ../addons/banking/myCRED-addon-banking.php:111
236
+ #, php-format
237
  msgid ""
238
+ "Give your users %_plural% on a regular basis with the option to set the "
239
+ "number of times you want this payout to run (cycles)."
240
  msgstr ""
241
  "Da a tus usuarios %_plural% a intervalos regulares con la opción de ajustar "
242
  "cuantas vezes quieres que este pago se repita (ciclos)"
243
 
244
+ #: ../addons/banking/myCRED-addon-banking.php:156 ../addons/buy-creds/myCRED-
245
+ #: addon-buy-creds.php:477 ../addons/buy-creds/myCRED-addon-buy-creds.php:607 ..
246
+ #: includes/mycred-network.php:160 ../modules/mycred-module-addons.php:266 ..
247
+ #: modules/mycred-module-hooks.php:157 ../modules/mycred-module-log.php:322 ..
248
+ #: modules/mycred-module-log.php:575 ../modules/mycred-module-settings.php:312
249
  msgid "Access Denied"
250
  msgstr "Acceso Denegado"
251
 
252
  #: ../addons/banking/myCRED-addon-banking.php:167
253
+ #, php-format
254
  msgid "%s Banking"
255
  msgstr "%s Bancario"
256
 
257
+ #: ../addons/banking/myCRED-addon-banking.php:168 ../modules/mycred-module-addons.
258
+ #: php:147
259
  msgid "Setup recurring payouts or offer / charge interest on user account balances."
260
  msgstr ""
261
+ "Configura los pagos recurrentes u ofrecer / cobrar interés sobre los saldos "
262
+ "de las cuentas de usuarios."
263
 
264
  #: ../addons/banking/myCRED-addon-banking.php:171
265
  msgid "WP-Cron deactivation detected!"
269
  msgid "Warning! This add-on requires WP - Cron to work."
270
  msgstr "¡Aviso! Esta extensión requiere WP - Cron para funcionar."
271
 
272
+ #: ../addons/banking/myCRED-addon-banking.php:188 ../addons/buy-creds/myCRED-
273
+ #: addon-buy-creds.php:553 ../modules/mycred-module-hooks.php:182
274
  msgid "Enable"
275
  msgstr "Activar"
276
 
277
+ #: ../addons/banking/myCRED-addon-banking.php:201 ../modules/mycred-module-hooks.
278
+ #: php:197
279
  msgid "Update Changes"
280
  msgstr "Actualizar Cambios"
281
 
330
 
331
  #: ../addons/banking/services/mycred-bank-service-interest.php:288
332
  msgid "The interest rate can be either positive or negative and is compounded daily."
333
+ msgstr ""
334
+ "La tasa de interés puede ser o positivo o negativo y es compuesto "
335
+ "diariamente."
336
 
337
+ #: ../addons/banking/services/mycred-bank-service-interest.php:291 ..
338
+ #: addons/coupons/myCRED-addon-coupons.php:392
339
  msgid "Minimum Balance"
340
  msgstr "Saldo Minimo"
341
 
344
  msgstr "El minimo saldo necesario para aplicar una tasa de interés."
345
 
346
  #. can also be "Plantilla de Bitácora"
347
+ #: ../addons/banking/services/mycred-bank-service-interest.php:298 ..
348
+ #: addons/banking/services/mycred-bank-service-payouts.php:252 ../addons/buy-
349
+ #: creds/myCRED-addon-buy-creds.php:372 ../addons/buy-creds/myCRED-addon-buy-
350
+ #: creds.php:431 ../addons/coupons/myCRED-addon-coupons.php:440 ..
351
+ #: addons/gateway/carts/mycred-marketpress.php:384 ..
352
+ #: addons/gateway/carts/mycred-marketpress.php:417 ..
353
+ #: addons/gateway/carts/mycred-woocommerce.php:98 ../addons/gateway/carts/mycred-
354
+ #: woocommerce.php:164 ../addons/gateway/carts/mycred-wpecommerce.php:367 ..
355
+ #: modules/mycred-module-hooks.php:520 ../modules/mycred-module-hooks.php:1389 ..
356
+ #: modules/mycred-module-hooks.php:1729 ../plugins/mycred-hook-badgeOS.php:115 ..
357
+ #: plugins/mycred-hook-badgeOS.php:117 ../plugins/mycred-hook-badgeOS.php:126 ..
358
+ #: plugins/mycred-hook-events-manager-light.php:153 ../plugins/mycred-hook-
359
+ #: events-manager-light.php:166 ../plugins/mycred-hook-gd-star-rating.php:109 ..
360
+ #: plugins/mycred-hook-gd-star-rating.php:122 ../plugins/mycred-hook-wp-favorite-
361
+ #: posts.php:135 ../plugins/mycred-hook-wp-favorite-posts.php:148 ..
362
+ #: plugins/mycred-hook-wp-polls.php:136
363
  msgid "Log Template"
364
  msgstr "Plantilla de Registro"
365
 
366
+ #: ../addons/banking/services/mycred-bank-service-interest.php:305 ..
367
+ #: addons/banking/services/mycred-bank-service-payouts.php:259
368
  msgid "Run Time"
369
  msgstr "Tiempo de Ejecución"
370
 
371
+ #: ../addons/banking/services/mycred-bank-service-interest.php:309 ..
372
+ #: addons/banking/services/mycred-bank-service-payouts.php:263
373
  msgid ""
374
+ "For large websites, if you are running into time out issues during payouts, "
375
+ "you can set the number of seconds a process can run. Use zero for unlimited, "
376
+ "but be careful especially if you are on a shared server."
377
  msgstr ""
378
  "Para sitios web grandes, si tienes problemas de expiramiento durante pagos, "
379
+ "puedes ajustar cuantos segundos un proceso puede operar. Ponga cero si "
380
+ "quiere ilimitado, pero tenga cuidado especialmente si esta usando un "
381
+ "servidor compartido."
382
 
383
  #: ../addons/banking/services/mycred-bank-service-payouts.php:21
384
  msgid "Daily %_plural%"
392
  msgid "Pay Users"
393
  msgstr "Pagar a los Usuarios"
394
 
395
+ #: ../addons/banking/services/mycred-bank-service-payouts.php:222 ../addons/buy-
396
+ #: creds/myCRED-addon-buy-creds.php:657 ../addons/buy-creds/myCRED-addon-buy-
397
+ #: creds.php:1160 ../addons/buy-creds/abstracts/mycred-abstract-payment-gateway.
398
+ #: php:425 ../includes/mycred-admin.php:371 ../includes/mycred-admin.php:482
399
  msgid "Amount"
400
  msgstr "Cantidad"
401
 
403
  msgid "Can not be zero."
404
  msgstr "No puede ser cero."
405
 
406
+ #: ../addons/banking/services/mycred-bank-service-payouts.php:228 ..
407
+ #: addons/banking/services/mycred-bank-service-payouts.php:241 ../modules/mycred-
408
+ #: module-hooks.php:1744
409
  msgid "Interval"
410
  msgstr "Interval"
411
 
412
+ #: ../addons/banking/services/mycred-bank-service-payouts.php:233 ..
413
+ #: addons/banking/services/mycred-bank-service-payouts.php:242
414
  msgid "Cycles"
415
  msgstr "Ciclos"
416
 
425
  #: ../addons/banking/services/mycred-bank-service-payouts.php:241
426
  msgid ""
427
  "Select how often you want to award %_plural%. Note that when this service is "
428
+ "enabled, the first payout will be in the beginning of the next period. So "
429
+ "with a \"Daily\" interval, the first payout will occur first thing in the "
430
+ "morning."
431
  msgstr ""
432
  "Elige la frecuencia con cual quieres conceder %_plural%. Ten en cuenta que "
433
+ "cuando este servicio está activado, el primer pago se realizara al comienzo "
434
+ "del siguiente período. Así que con la frecuencia de \"Diario\", el primer pago "
435
+ "se realizará a primera hora de la mañana proxima."
436
 
437
  #: ../addons/banking/services/mycred-bank-service-payouts.php:242
438
  msgid ""
439
+ "Cycles let you choose how many intervals this service should run. Each time "
440
+ "a cycle runs, the value will decrease until it hits zero, in which case this "
441
  "service will deactivate itself. Use -1 to run unlimited times."
442
  msgstr ""
443
+ "Ciclos te permiten ajustar por cuantos intervalos este servicio debe "
444
+ "ejecutarse. Cada vez que se ejecuta un ciclo, el valor disminuirá hasta que "
445
+ "llegue a cero, en cuyo caso este servicio se desactivará a sí mismo. Utilice "
446
+ "-1 para que se ejecute ilimitadas veces."
447
 
448
  #: ../addons/banking/services/mycred-bank-service-payouts.php:243
449
  msgid "Important"
451
 
452
  #: ../addons/banking/services/mycred-bank-service-payouts.php:243
453
  msgid ""
454
+ "You can always stop payouts by deactivating this service. Just remember that "
455
+ "if you deactivate while there are cycles left, this service will continue on "
456
+ "when it gets re-activated. Set cycles to zero to reset."
457
  msgstr ""
458
  "Siempre se puede detener los desembolsos mediante la desactivación de este "
459
+ "servicio. Pero recuerda que si lo desactivas mientras que todavia quedan "
460
+ "ciclos para completar, este servicio volverá a continuar en cuando se vuelvá "
461
+ "a activar. Fija o configura los ciclos a cero para reiniciar.\n"
462
 
463
+ #: ../addons/banking/services/mycred-bank-service-payouts.php:245 ..
464
+ #: includes/mycred-install.php:559 ../modules/mycred-module-settings.php:393
465
  msgid "Excludes"
466
  msgstr "Excluye"
467
 
470
  "Comma separated list of user IDs to exclude from this service. No spaces "
471
  "allowed!"
472
  msgstr ""
473
+ "Lista separada por comas de los IDs de usuario para excluir de este servicio."
474
+ " ¡No se permiten espacios!"
475
 
476
+ #: ../addons/buy-creds/myCRED-addon-buy-creds.php:55 ../addons/buy-creds/myCRED-
477
+ #: addon-buy-creds.php:56 ../addons/buy-creds/myCRED-addon-buy-creds.php:57
478
  msgid "Payment Gateways"
479
  msgstr "Pasarela de Pago"
480
 
481
+ #: ../addons/buy-creds/myCRED-addon-buy-creds.php:192
482
  msgid "buyCRED Purchase Log"
483
  msgstr "compraCRED Registro de Compras"
484
 
485
+ #: ../addons/buy-creds/myCRED-addon-buy-creds.php:193 ../addons/buy-creds/myCRED-
486
+ #: addon-buy-creds.php:421 ../addons/buy-creds/myCRED-addon-buy-creds.php:488
487
  msgid "Purchase Log"
488
  msgstr "Registro de Compras"
489
 
490
+ #: ../addons/buy-creds/myCRED-addon-buy-creds.php:281 ../addons/gateway/event-
491
+ #: booking/mycred-eventespresso3.php:26 ../addons/gateway/event-booking/mycred-
492
+ #: eventsmanager-pro.php:475 ../addons/gateway/event-booking/mycred-eventsmanager.
493
+ #: php:540 ../addons/sell-content/myCRED-addon-sell-content.php:361
494
  msgid "Payments"
495
  msgstr "Pagos"
496
 
497
+ #: ../addons/buy-creds/myCRED-addon-buy-creds.php:311
498
  msgid "Please login to purchase %_plural%"
499
  msgstr "Identifícate antes de comprar %_plural%"
500
 
501
+ #: ../addons/buy-creds/myCRED-addon-buy-creds.php:326
502
+ #, php-format
503
  msgid "Gift purchase from %display_name%."
504
  msgstr "Regalo comprado de parte de %display_name%."
505
 
506
+ #: ../addons/buy-creds/myCRED-addon-buy-creds.php:344 ../addons/ranks/myCRED-
507
+ #: addon-ranks.php:649
508
  msgid "Minimum %plural%"
509
  msgstr "Minimo %_plural%"
510
 
511
+ #: ../addons/buy-creds/myCRED-addon-buy-creds.php:348
512
  msgid "Minimum amount of %plural% a user must purchase. Will default to 1."
513
  msgstr ""
514
+ "La mínima cantidad de %plural% que el usuario debe comprar. Sera predefinido "
515
+ "a 1."
516
+
517
+ #: ../addons/buy-creds/myCRED-addon-buy-creds.php:353 ../addons/coupons/myCRED-
518
+ #: addon-coupons.php:315 ../addons/gateway/carts/mycred-marketpress.php:378 ..
519
+ #: addons/gateway/carts/mycred-woocommerce.php:108 ..
520
+ #: addons/gateway/carts/mycred-wpecommerce.php:350 ../addons/gateway/event-
521
+ #: booking/mycred-eventespresso3.php:437 ../addons/gateway/event-booking/mycred-
522
+ #: eventsmanager-pro.php:463 ../addons/gateway/event-booking/mycred-eventsmanager.
523
+ #: php:550 ../addons/sell-content/myCRED-addon-sell-content.php:349 ..
524
+ #: includes/mycred-widgets.php:204 ../includes/mycred-widgets.php:401 ..
525
+ #: includes/importers/mycred-cubepoints.php:365
526
  msgid "Point Type"
527
  msgstr "Tipo de Puntos"
528
 
529
+ #: ../addons/buy-creds/myCRED-addon-buy-creds.php:365
530
  msgid "Login Template"
531
  msgstr "Plantilla de Ingreso"
532
 
533
+ #: ../addons/buy-creds/myCRED-addon-buy-creds.php:369
534
  msgid "Content to show when a user is not logged in."
535
  msgstr "Mostrar este contenido cuando un usuario no ha sido ingresado."
536
 
537
+ #: ../addons/buy-creds/myCRED-addon-buy-creds.php:379
538
  msgid "Thank You Page"
539
  msgstr "Página de Agradecimiento"
540
 
541
+ #: ../addons/buy-creds/myCRED-addon-buy-creds.php:382 ../addons/buy-creds/myCRED-
542
+ #: addon-buy-creds.php:403
543
  msgid "Custom URL"
544
  msgstr "URL Personalizada"
545
 
546
+ #: ../addons/buy-creds/myCRED-addon-buy-creds.php:387 ../addons/buy-creds/myCRED-
547
+ #: addon-buy-creds.php:408
548
  msgid "Page"
549
  msgstr "Página"
550
 
551
+ #: ../addons/buy-creds/myCRED-addon-buy-creds.php:400
552
  msgid "Cancellation Page"
553
  msgstr "Página de Cancelación"
554
 
555
+ #: ../addons/buy-creds/myCRED-addon-buy-creds.php:423
556
  msgid "Show seperate log for %_plural% purchases."
557
  msgstr "Mostrar registro distinto para compras de %_plural%."
558
 
559
+ #: ../addons/buy-creds/myCRED-addon-buy-creds.php:425
560
  msgid "Gifting"
561
  msgstr "Regalar"
562
 
563
+ #: ../addons/buy-creds/myCRED-addon-buy-creds.php:427
564
+ #, php-format
565
  msgid "Allow users to buy %_plural% for other users."
566
  msgstr "Prmita que usuarios compren %_plural% para otros usuarios."
567
 
568
+ #: ../addons/buy-creds/myCRED-addon-buy-creds.php:428
569
+ #, php-format
570
  msgid "Allow users to buy %_plural% for content authors."
571
  msgstr "Prmita que usuarios compren %_plural% para autores de contenido."
572
 
573
+ #: ../addons/buy-creds/myCRED-addon-buy-creds.php:488
574
+ #, php-format
575
  msgid "%s Payment Gateways"
576
  msgstr "%s Pasarelas de Pago"
577
 
578
+ #: ../addons/buy-creds/myCRED-addon-buy-creds.php:488 ../addons/buy-creds/myCRED-
579
+ #: addon-buy-creds.php:663
580
  msgid "buyCRED Settings"
581
  msgstr "Configuraciones de compraCRED"
582
 
583
+ #: ../addons/buy-creds/myCRED-addon-buy-creds.php:494
584
  msgid "Select the payment gateways you want to offer your users to buy %plural%."
585
  msgstr ""
586
  "Elige la pasarela de pago que quieres ofrecer a tus usuarios con que comprar "
587
  "%plural%."
588
 
589
+ #: ../addons/buy-creds/myCRED-addon-buy-creds.php:501
590
  msgid "Last Payment Notification"
591
  msgstr "Notificación de Pago Reciente"
592
 
593
+ #: ../addons/buy-creds/myCRED-addon-buy-creds.php:503
594
  msgid ""
595
  "Here you can view the last payment confirmation that was sent to buyCRED for "
596
  "processing."
598
  "Aquí puedes ver la confirmación del ultimo pago que fue enviado a compraCRED "
599
  "para su procesamiento."
600
 
601
+ #: ../addons/buy-creds/myCRED-addon-buy-creds.php:506
602
  msgid "Details"
603
  msgstr "Detalles"
604
 
605
+ #: ../addons/buy-creds/myCRED-addon-buy-creds.php:509 ../modules/mycred-module-
606
+ #: log.php:541
607
  msgid "Time"
608
  msgstr "Tiempo"
609
 
610
+ #: ../addons/buy-creds/myCRED-addon-buy-creds.php:513 ../addons/buy-creds/myCRED-
611
+ #: addon-buy-creds.php:654 ../includes/mycred-overview.php:166 ../includes/mycred-
612
+ #: overview.php:173 ../modules/mycred-module-addons.php:190
613
  msgid "Gateway"
614
  msgstr "Pasarela"
615
 
616
+ #: ../addons/buy-creds/myCRED-addon-buy-creds.php:517 ../addons/buy-creds/myCRED-
617
+ #: addon-buy-creds.php:659
618
  msgid "Transaction ID"
619
  msgstr "Identificación de la Transacción"
620
 
621
+ #: ../addons/buy-creds/myCRED-addon-buy-creds.php:521
622
  msgid "Outcome"
623
  msgstr "Resultado"
624
 
625
+ #: ../addons/buy-creds/myCRED-addon-buy-creds.php:525
626
  msgid "Gateway Log"
627
  msgstr "Registro de la Puerta de Enlace"
628
 
629
+ #: ../addons/buy-creds/myCRED-addon-buy-creds.php:533
630
  msgid "No recorded calls found."
631
  msgstr "No se ha encontrado ningunas llamadas grabadas."
632
 
633
+ #: ../addons/buy-creds/myCRED-addon-buy-creds.php:546
634
  msgid "Test Mode"
635
  msgstr "Modo de Prueba"
636
 
637
+ #: ../addons/buy-creds/myCRED-addon-buy-creds.php:548
638
  msgid "Enabled"
639
  msgstr "Habilitado"
640
 
641
  #. also, "Inhabilitar"
642
+ #: ../addons/buy-creds/myCRED-addon-buy-creds.php:551
643
  msgid "Disabled"
644
  msgstr "Deshactivado"
645
 
646
+ #: ../addons/buy-creds/myCRED-addon-buy-creds.php:561
647
  msgid "Sandbox Mode"
648
  msgstr "Modo Entorno Aislado"
649
 
650
+ #: ../addons/buy-creds/myCRED-addon-buy-creds.php:564
651
  msgid "Enable for test purchases."
652
  msgstr "Habilitar para compras de prueba."
653
 
654
+ #: ../addons/buy-creds/myCRED-addon-buy-creds.php:581
655
  msgid "Update Gateway Settings"
656
  msgstr "Actualizar Configuraciones de la Pasarela de Pago"
657
 
658
+ #: ../addons/buy-creds/myCRED-addon-buy-creds.php:655 ../addons/email-
659
+ #: notices/myCRED-addon-email-notices.php:786 ../addons/email-notices/myCRED-
660
+ #: addon-email-notices.php:915 ../includes/mycred-admin.php:477 ..
661
+ #: includes/mycred-log.php:639 ../modules/mycred-module-log.php:540
662
  msgid "User"
663
  msgstr "Usuario"
664
 
665
+ #: ../addons/buy-creds/myCRED-addon-buy-creds.php:656 ../includes/mycred-log.php:
666
+ #: 640
667
  msgid "Date"
668
  msgstr "Fecha"
669
 
670
+ #: ../addons/buy-creds/myCRED-addon-buy-creds.php:658
671
  msgid "Payed"
672
  msgstr "Pagado"
673
 
674
+ #: ../addons/buy-creds/myCRED-addon-buy-creds.php:663
675
  msgid "<strong>buy</strong>CRED Purchase Log"
676
  msgstr "Registro de Compras de <strong>compra</strong>CRED"
677
 
678
+ #: ../addons/buy-creds/myCRED-addon-buy-creds.php:663 ../addons/gateway/event-
679
+ #: booking/mycred-eventespresso3.php:367
680
  msgid "Gateway Settings"
681
  msgstr "Configuraciones de la Pasarela de Pago"
682
 
683
+ #: ../addons/buy-creds/myCRED-addon-buy-creds.php:667
684
  msgid ""
685
  "Only completed purchases are shown here. Purchases that were cancelled or "
686
  "failed are not logged."
690
  "\n"
691
  "\n"
692
 
693
+ #: ../addons/buy-creds/myCRED-addon-buy-creds.php:776 ../includes/mycred-log.php:
694
+ #: 743 ../modules/mycred-module-log.php:462
695
  msgid "User Missing"
696
  msgstr "Usuario Ausente"
697
 
698
+ #: ../addons/buy-creds/myCRED-addon-buy-creds.php:839 ../addons/sell-
699
+ #: content/myCRED-addon-sell-content.php:1112
700
  msgid "No purchases found"
701
  msgstr "No se encontro ninguna compra"
702
 
703
+ #: ../addons/buy-creds/myCRED-addon-buy-creds.php:911 ../addons/buy-creds/myCRED-
704
+ #: addon-buy-creds.php:1008
705
  msgid "This Add-on needs to setup before you can use this shortcode."
706
  msgstr ""
707
  "Esta extensión (add-on) debe ser configurado antes de poder usar este código "
708
  "corto (shortcode)."
709
 
710
+ #: ../addons/buy-creds/myCRED-addon-buy-creds.php:929 ../addons/buy-creds/myCRED-
711
+ #: addon-buy-creds.php:1026
712
  msgid "No gateways installed."
713
  msgstr "Ningun pasarela de pago instalado."
714
 
715
+ #: ../addons/buy-creds/myCRED-addon-buy-creds.php:930 ../addons/buy-creds/myCRED-
716
+ #: addon-buy-creds.php:1027
717
  msgid "Gateway does not exist."
718
  msgstr "Puerta de enlace no existe."
719
 
720
+ #: ../addons/buy-creds/myCRED-addon-buy-creds.php:966
721
  msgid "Yourself"
722
  msgstr "Tu mismo"
723
 
724
+ #: ../addons/buy-creds/myCRED-addon-buy-creds.php:1028
725
  msgid "No active gateways found."
726
  msgstr "No se encuentra ningun puerta de enlace activo."
727
 
728
+ #: ../addons/buy-creds/myCRED-addon-buy-creds.php:1029
729
  msgid "The selected gateway is not active."
730
  msgstr "La puerta de enlace seleccionada no esta activo."
731
 
732
+ #: ../addons/buy-creds/myCRED-addon-buy-creds.php:1065
733
+ #, php-format
734
  msgid "Buy with %gateway%"
735
  msgstr "Compra con %gateway%"
736
 
737
+ #: ../addons/buy-creds/myCRED-addon-buy-creds.php:1071 ../addons/sell-
738
+ #: content/myCRED-addon-sell-content.php:44
739
  msgid "Buy Now"
740
  msgstr "Compra Ahora"
741
 
742
+ #: ../addons/buy-creds/myCRED-addon-buy-creds.php:1111
743
  msgid "No users found"
744
  msgstr "Ningun Usuario Encontrado"
745
 
746
+ #: ../addons/buy-creds/myCRED-addon-buy-creds.php:1121
747
  msgid "To"
748
  msgstr "A"
749
 
750
+ #: ../addons/buy-creds/myCRED-addon-buy-creds.php:1138
751
  msgid "Select Amount"
752
  msgstr "Selecciona la Cantidad"
753
 
754
+ #: ../addons/buy-creds/myCRED-addon-buy-creds.php:1162
755
  msgid "min."
756
  msgstr "min."
757
 
758
+ #: ../addons/buy-creds/myCRED-addon-buy-creds.php:1170
759
  msgid "Select Gateway"
760
  msgstr "Selecciona la Pasarela de Pago"
761
 
762
  #: ../addons/buy-creds/abstracts/mycred-abstract-payment-gateway.php:89
763
+ msgid ""
764
+ "function myCRED_Payment_Gateway::process() must be over-ridden in a sub-"
765
+ "class."
766
+ msgstr ""
767
+ "La función myCRED_Payment_Gateway::process() debe ser anulado en un sub-"
768
+ "clase."
769
 
770
  #: ../addons/buy-creds/abstracts/mycred-abstract-payment-gateway.php:98
771
  msgid "function myCRED_Payment_Gateway::buy() must be over-ridden in a sub-class."
780
  msgstr "Se detectó una llamada entrante de la confirmación."
781
 
782
  #: ../addons/buy-creds/abstracts/mycred-abstract-payment-gateway.php:213
783
+ #, php-format
784
  msgid "Gateway identified itself as \"%s\""
785
  msgstr "Puerta de enlace se identifico como \"%s\""
786
 
793
  msgid "Test Payment"
794
  msgstr "Probar Pago"
795
 
796
+ #: ../addons/buy-creds/abstracts/mycred-abstract-payment-gateway.php:264 ..
797
+ #: addons/gateway/carts/mycred-marketpress.php:179
798
  msgid "Payment"
799
  msgstr "PAgo"
800
 
802
  msgid "Cancel purchase"
803
  msgstr "Cancelar la compra"
804
 
805
+ #: ../addons/buy-creds/abstracts/mycred-abstract-payment-gateway.php:360 ..
806
+ #: includes/mycred-admin.php:364 ../includes/mycred-admin.php:470
807
  msgid "required"
808
  msgstr "necesario"
809
 
810
+ #: ../addons/buy-creds/abstracts/mycred-abstract-payment-gateway.php:361 ..
811
+ #: includes/mycred-admin.php:366 ../includes/mycred-admin.php:472
812
  msgid "optional"
813
  msgstr "opcional"
814
 
849
  msgstr "Eliga el País"
850
 
851
  #: ../addons/buy-creds/abstracts/mycred-abstract-payment-gateway.php:419
852
+ #, php-format
853
  msgid "%s Purchase"
854
  msgstr "Compra %s"
855
 
856
+ #: ../addons/buy-creds/abstracts/mycred-abstract-payment-gateway.php:424 ..
857
+ #: addons/gateway/carts/mycred-wpecommerce.php:112
858
  msgid "Item"
859
  msgstr "Articulo"
860
 
868
 
869
  #: ../addons/buy-creds/abstracts/mycred-abstract-payment-gateway.php:448
870
  msgid ""
871
+ "Here you can see information that are collected and sent to this gateway. "
872
+ "Debug information is only visible for administrators and are intended for "
873
+ "troubleshooting / testing of this gateway. Please disable \"Sandbox Mode\" "
874
+ "when you want to take this gateway online."
875
  msgstr ""
876
  "Aquí se puede ver la información que se recoge y se envía a esta puerta de "
877
+ "enlace. La información de depuración sólo es visible para los "
878
+ "administradores y está disponible resolver problemas algunas / pruebar este "
879
+ "puerta de enlace. Por favor, desactivar \"Modo Entorno Aislado\" cuando se "
880
+ "quiere activar este portal y ponerlo online."
881
 
882
  #: ../addons/buy-creds/abstracts/mycred-abstract-payment-gateway.php:452
883
  msgid "Section"
900
  msgstr "Respuesta de la Pasarela de Pago"
901
 
902
  #: ../addons/buy-creds/abstracts/mycred-abstract-payment-gateway.php:513
903
+ #, php-format
904
  msgid "Continue to %s"
905
  msgstr "Continuar a %s"
906
 
907
+ #: ../addons/buy-creds/abstracts/mycred-abstract-payment-gateway.php:514 ..
908
+ #: addons/buy-creds/gateways/bitpay.php:240
909
  msgid "Click here if you are not automatically redirected"
910
  msgstr "Haga clic aqui si no se encuentra redirigida automáticamente"
911
 
913
  msgid "The following information will be sent to the gateway"
914
  msgstr "La información siguiente sera transmitido a la pasarela de pago"
915
 
916
+ #: ../addons/buy-creds/abstracts/mycred-abstract-payment-gateway.php:1155
917
  msgid "Outside US"
918
  msgstr "Fuera de los EEUU"
919
 
920
+ #: ../addons/buy-creds/abstracts/mycred-abstract-payment-gateway.php:1254
921
  msgid "Missing required information."
922
  msgstr "Falta información requerida."
923
 
924
+ #: ../addons/buy-creds/abstracts/mycred-abstract-payment-gateway.php:1274
925
  msgid "Validating sale"
926
  msgstr "Validar venta"
927
 
928
+ #: ../addons/buy-creds/abstracts/mycred-abstract-payment-gateway.php:1288
929
  msgid "Token mismatch"
930
  msgstr "La ficha no concuerda"
931
 
932
+ #: ../addons/buy-creds/abstracts/mycred-abstract-payment-gateway.php:1300
933
  msgid "Price mismatch"
934
  msgstr "Discordancia de Precio"
935
 
936
+ #: ../addons/buy-creds/abstracts/mycred-abstract-payment-gateway.php:1305
937
  msgid "Currency mismatch"
938
  msgstr "Discordancia de Moneda"
939
 
940
+ #: ../addons/buy-creds/abstracts/mycred-abstract-payment-gateway.php:1317
941
  msgid "Duplicate transaction"
942
  msgstr "Transacción Duplicado"
943
 
944
+ #: ../addons/buy-creds/gateways/bitpay.php:25 ../addons/buy-
945
+ #: creds/gateways/netbilling.php:30 ../addons/buy-creds/gateways/paypal-standard.
946
+ #: php:25 ../addons/buy-creds/gateways/skrill.php:30
947
  msgid "Purchase of myCRED %plural%"
948
  msgstr "Compra de myCRED %plural%"
949
 
950
+ #: ../addons/buy-creds/gateways/bitpay.php:68 ../addons/buy-
951
+ #: creds/gateways/netbilling.php:102 ../addons/buy-creds/gateways/paypal-standard.
952
+ #: php:162 ../addons/buy-creds/gateways/skrill.php:134
953
  msgid "Sales Data is Valid"
954
  msgstr "Dato de Venta Invalido"
955
 
956
+ #: ../addons/buy-creds/gateways/bitpay.php:72 ../addons/buy-
957
+ #: creds/gateways/netbilling.php:106 ../addons/buy-creds/gateways/paypal-standard.
958
+ #: php:166 ../addons/buy-creds/gateways/skrill.php:138
959
  msgid "Failed to validate sale"
960
  msgstr "No pudo validar la venta"
961
 
962
+ #: ../addons/buy-creds/gateways/bitpay.php:78 ../addons/buy-
963
+ #: creds/gateways/netbilling.php:112 ../addons/buy-creds/gateways/paypal-standard.
964
+ #: php:172 ../addons/buy-creds/gateways/skrill.php:144 ../addons/buy-
965
+ #: creds/gateways/zombaio.php:166
966
  msgid "Failed to verify caller"
967
  msgstr "No se pudo verificar la llamada"
968
 
969
+ #: ../addons/buy-creds/gateways/bitpay.php:86 ../addons/buy-
970
+ #: creds/gateways/netbilling.php:120 ../addons/buy-creds/gateways/paypal-standard.
971
+ #: php:180 ../addons/buy-creds/gateways/skrill.php:152 ../addons/buy-
972
+ #: creds/gateways/zombaio.php:171
973
+ #, php-format
974
  msgid "Attempting to credit %s to users account"
975
  msgstr "Intentando creditar %s a la cuenta de usuario"
976
 
977
+ #: ../addons/buy-creds/gateways/bitpay.php:97 ../addons/buy-
978
+ #: creds/gateways/netbilling.php:132 ../addons/buy-creds/gateways/paypal-standard.
979
+ #: php:193 ../addons/buy-creds/gateways/skrill.php:164 ../addons/buy-
980
+ #: creds/gateways/zombaio.php:207
981
+ #, php-format
982
  msgid "%s was successfully credited to users account"
983
  msgstr "%s fue abonado con éxito a la cuenta del usuario"
984
 
985
+ #: ../addons/buy-creds/gateways/bitpay.php:104 ../addons/buy-
986
+ #: creds/gateways/netbilling.php:139 ../addons/buy-creds/gateways/paypal-standard.
987
+ #: php:200 ../addons/buy-creds/gateways/skrill.php:171 ../addons/buy-
988
+ #: creds/gateways/zombaio.php:214
989
  msgid "Failed to credit the users account"
990
  msgstr "No se ha podido acreditar la cuenta del usuario"
991
 
992
+ #: ../addons/buy-creds/gateways/bitpay.php:107 ../addons/buy-
993
+ #: creds/gateways/netbilling.php:142 ../addons/buy-creds/gateways/paypal-standard.
994
+ #: php:203 ../addons/buy-creds/gateways/skrill.php:174
995
  msgid "Purchase not paid"
996
  msgstr "Compra no pagado"
997
 
998
+ #: ../addons/buy-creds/gateways/bitpay.php:111 ../addons/buy-
999
+ #: creds/gateways/netbilling.php:146 ../addons/buy-creds/gateways/paypal-standard.
1000
+ #: php:207 ../addons/buy-creds/gateways/skrill.php:178 ../addons/buy-
1001
+ #: creds/gateways/zombaio.php:218
1002
  msgid "Hanging up on caller"
1003
  msgstr "Colgando al interlocutor"
1004
 
1005
+ #: ../addons/buy-creds/gateways/bitpay.php:175 ../addons/buy-
1006
+ #: creds/gateways/netbilling.php:173 ../addons/buy-creds/gateways/paypal-standard.
1007
+ #: php:237 ../addons/buy-creds/gateways/skrill.php:208 ../addons/buy-
1008
+ #: creds/gateways/zombaio.php:241
1009
  msgid "Please setup this gateway before attempting to make a purchase!"
1010
+ msgstr ""
1011
+ "¡Por favor configure esta puerta de enlace antes de intentar hacer una "
1012
+ "compra!"
1013
 
1014
+ #: ../addons/buy-creds/gateways/bitpay.php:226 ../addons/buy-
1015
+ #: creds/gateways/bitpay.php:235 ../addons/buy-creds/gateways/netbilling.php:224 .
1016
+ #: ./addons/buy-creds/gateways/paypal-standard.php:295 ../addons/buy-
1017
+ #: creds/gateways/skrill.php:301 ../addons/buy-creds/gateways/zombaio.php:271
1018
  msgid "Processing payment &hellip;"
1019
  msgstr "Procesando el pago &hellip;"
1020
 
1021
  #: ../addons/buy-creds/gateways/bitpay.php:228
1022
  msgid "Could not create a BitPay Invoice. Please contact the site administrator!"
1023
  msgstr ""
1024
+ "¡No se pudo crear una factura de BitPay. Por favor pongase en contacto con "
1025
+ "el administrador del sitio!"
1026
 
1027
  #: ../addons/buy-creds/gateways/bitpay.php:229
1028
  msgid "Bitpay returned the following error message:"
1040
  msgid "API Key"
1041
  msgstr "Clave de la API"
1042
 
1043
+ #: ../addons/buy-creds/gateways/bitpay.php:269 ../addons/buy-
1044
+ #: creds/gateways/paypal-standard.php:312 ../addons/buy-creds/gateways/skrill.php:
1045
+ #: 319
1046
  msgid "Currency"
1047
  msgstr "Moneda"
1048
 
1050
  msgid "Currency Code"
1051
  msgstr "Código de Moneda"
1052
 
1053
+ #: ../addons/buy-creds/gateways/bitpay.php:276 ../addons/buy-
1054
+ #: creds/gateways/netbilling.php:260 ../addons/buy-creds/gateways/paypal-standard.
1055
+ #: php:326 ../addons/buy-creds/gateways/skrill.php:339
1056
  msgid "Item Name"
1057
  msgstr "Nombre de Artículo"
1058
 
1059
+ #: ../addons/buy-creds/gateways/bitpay.php:280 ../addons/buy-
1060
+ #: creds/gateways/netbilling.php:264 ../addons/buy-creds/gateways/paypal-standard.
1061
+ #: php:330 ../addons/buy-creds/gateways/skrill.php:343
1062
  msgid "Description of the item being purchased by the user."
1063
  msgstr "Descripción del artículo que el usuario esta comprando."
1064
 
1065
+ #: ../addons/buy-creds/gateways/bitpay.php:283 ../addons/buy-
1066
+ #: creds/gateways/netbilling.php:267 ../addons/buy-creds/gateways/paypal-standard.
1067
+ #: php:333 ../addons/buy-creds/gateways/skrill.php:346
1068
+ #, php-format
1069
  msgid "%plural% Exchange Rate"
1070
  msgstr "%plural% Tipo de Cambio"
1071
 
1072
+ #: ../addons/buy-creds/gateways/bitpay.php:286 ../addons/buy-
1073
+ #: creds/gateways/paypal-standard.php:336 ../addons/buy-creds/gateways/skrill.php:
1074
+ #: 349
1075
  msgid "Select currency"
1076
  msgstr "Elige moneda"
1077
 
1095
  msgid "Full Notifications"
1096
  msgstr "Notificaciones Completas"
1097
 
1098
+ #: ../addons/buy-creds/gateways/bitpay.php:318 ../includes/mycred-network.php:196
1099
+ #: ../includes/mycred-network.php:210
1100
  msgid "No"
1101
  msgstr "No"
1102
 
1103
+ #: ../addons/buy-creds/gateways/bitpay.php:319 ../includes/mycred-network.php:192
1104
+ #: ../includes/mycred-network.php:206
1105
  msgid "Yes"
1106
  msgstr "Sí"
1107
 
1108
+ #: ../addons/buy-creds/gateways/netbilling.php:57 ../addons/buy-
1109
+ #: creds/gateways/skrill.php:89 ../addons/buy-creds/gateways/zombaio.php:103
1110
  msgid "Invalid Call"
1111
  msgstr "Llamada Invalida"
1112
 
1113
+ #: ../addons/buy-creds/gateways/netbilling.php:59 ../addons/buy-
1114
+ #: creds/gateways/skrill.php:91 ../addons/buy-creds/gateways/zombaio.php:105
1115
+ #, php-format
1116
  msgid "Caller verified as \"%s\""
1117
  msgstr "El llamador verificado como \"%s\""
1118
 
1139
  #: ../addons/buy-creds/gateways/netbilling.php:277
1140
  msgid ""
1141
  "For this gateway to work, you must login to your NETbilling account and edit "
1142
+ "your site. Under \"Default payment form settings\" make sure the Postback CGI "
1143
+ "URL is set to the above address and \"Return method\" is set to POST."
1144
  msgstr ""
1145
+ "Para que esta pasarela de pago funcione, deberia acceder a su cuenta "
1146
+ "NETbilling y editar su sitio web. En \"Configuración de Formularios "
1147
+ "Predefinido\" asegúrese de que la devolución de la URL CGI esta ajustada a la "
1148
+ "dirección indicada arriba y \"Método de Retorno\" está ajustado a POST."
1149
 
1150
  #: ../addons/buy-creds/gateways/netbilling.php:312
1151
  msgid "Incorrect Credit Card number"
1176
  msgstr "Conexión establecida"
1177
 
1178
  #: ../addons/buy-creds/gateways/paypal-standard.php:92
1179
+ #, php-format
1180
  msgid "Attempt: %d failed. Error: %s : %s"
1181
  msgstr "Intento: %d falló. Error: %s : %s"
1182
 
1183
  #: ../addons/buy-creds/gateways/paypal-standard.php:103
1184
+ #, php-format
1185
  msgid "Secondary systems failing. Final note: %s : %s"
1186
  msgstr "Sistema secundaria fallando. Nota final: %s : %s"
1187
 
1193
  msgid "Call rejected"
1194
  msgstr "Llamada rechazada"
1195
 
1196
+ #: ../addons/buy-creds/gateways/paypal-standard.php:223 ../addons/buy-
1197
+ #: creds/gateways/skrill.php:194
1198
  msgid "Success"
1199
  msgstr "Exito"
1200
 
1201
+ #: ../addons/buy-creds/gateways/paypal-standard.php:224 ../addons/buy-
1202
+ #: creds/gateways/skrill.php:195
1203
  msgid "Thank you for your purchase"
1204
  msgstr "Gracias por su compra"
1205
 
1206
+ #: ../addons/buy-creds/gateways/paypal-standard.php:290 ../addons/buy-
1207
+ #: creds/gateways/skrill.php:247
1208
  msgid "Return to "
1209
  msgstr "Volver a"
1210
 
1211
+ #: ../addons/buy-creds/gateways/paypal-standard.php:317 ../addons/buy-
1212
+ #: creds/gateways/skrill.php:376 ../addons/gateway/event-booking/mycred-
1213
+ #: eventespresso3.php:455
1214
  msgid "Important!"
1215
  msgstr "¡Importante!"
1216
 
1221
  "Accept each transaction!"
1222
  msgstr ""
1223
  "Asegura que eliges una moneda que tu cuenta de Paypal soporta. Si no, la "
1224
+ "transacción no sera aprobada hasta que ingresa en su cuenta de Paypal y "
1225
+ "accepta cada transacción."
1226
 
1227
  #: ../addons/buy-creds/gateways/paypal-standard.php:320
1228
  msgid "Account Email"
1235
  #: ../addons/buy-creds/gateways/paypal-standard.php:343
1236
  msgid ""
1237
  "For this gateway to work, you must login to your PayPal account and under "
1238
+ "\"Profile\" > \"Selling Tools\" enable \"Instant Payment Notifications\". Make "
1239
+ "sure the \"Notification URL\" is set to the above address and that you have "
1240
+ "selected \"Receive IPN messages (Enabled)\"."
1241
  msgstr ""
1242
+ "Para que esta pasarela de pago funcione, debes ingresar en tu cuenta de "
1243
+ "Paypal y en \"Perfil\" > \"Instrumentos de Venta\" activar \"Notificación de "
1244
+ "Pagos Instantaneos\". Asegura que la \"URL de Notifición\" esta ajustado a la "
1245
+ "dirección de arriba y que has seleccionado \"(Activar) Recibir mensajes IPN\"."
1246
 
1247
  #: ../addons/buy-creds/gateways/skrill.php:284
1248
  msgid "Product:"
1277
  #: ../addons/buy-creds/gateways/skrill.php:355
1278
  msgid "Ask Skrill to send me a confirmation email for each successful purchase."
1279
  msgstr ""
1280
+ "Pide a Skrill que me mande un email de confirmación para cada compra "
1281
+ "finalizada con éxito."
1282
 
1283
  #: ../addons/buy-creds/gateways/skrill.php:358
1284
  msgid "Checkout Page"
1285
  msgstr "Página de Pago"
1286
 
1287
+ #: ../addons/buy-creds/gateways/skrill.php:361 ../addons/gateway/carts/mycred-
1288
+ #: woocommerce.php:86 ../addons/ranks/myCRED-addon-ranks.php:792 ..
1289
+ #: addons/transfer/myCRED-addon-transfer.php:637 ../includes/mycred-widgets.php:
1290
+ #: 197 ../includes/mycred-widgets.php:395 ../includes/mycred-widgets.php:587 ..
1291
+ #: modules/mycred-module-hooks.php:2302
1292
  msgid "Title"
1293
  msgstr "Titulo"
1294
 
1295
  #: ../addons/buy-creds/gateways/skrill.php:363
1296
  msgid "If left empty, your account email is used as title on the Skill Payment Page."
1297
  msgstr ""
1298
+ "Si se deja vacío, el correo electrónico de su cuenta sera utilizada como "
1299
+ "título en la Página de Pagos Skrill. "
1300
 
1301
+ #: ../addons/buy-creds/gateways/skrill.php:366 ../addons/buy-
1302
+ #: creds/gateways/zombaio.php:306
1303
  msgid "Logo URL"
1304
  msgstr "URL del Logotipo"
1305
 
1306
  #: ../addons/buy-creds/gateways/skrill.php:368
1307
  msgid ""
1308
  "The URL to the image you want to use on the top of the gateway. For best "
1309
+ "integration results we recommend you use logos with dimensions up to 200px "
1310
+ "in width and 50px in height."
1311
  msgstr ""
1312
+ "La URL de la imagen que quieres usar en la encima de la pasarela de pago. "
1313
+ "Para obtener la mejor integración recomendamos que uses logotipos con "
1314
+ "dimensiones de hasta 200 píxeles de ancho y 50 px de altura."
1315
 
1316
  #: ../addons/buy-creds/gateways/skrill.php:371
1317
  msgid "Confirmation Note"
1319
 
1320
  #: ../addons/buy-creds/gateways/skrill.php:373
1321
  msgid ""
1322
+ "Optional text to show user once a transaction has been successfully "
1323
+ "completed. This text is shown by Skrill."
1324
  msgstr ""
1325
+ "Texto opcional a mostrar al usuario cuando la transacción haya sido "
1326
+ "completado con éxito. Este texto sera mostrado por Skrill."
1327
 
1328
  #: ../addons/buy-creds/gateways/skrill.php:377
1329
  msgid ""
1330
+ "By default all Skrill Merchant account accept payments via Bank Transfers. "
1331
+ "When a user selects this option, no %_plural% are awarded! You will need to "
1332
+ "manually award these once the bank transfer is completed."
1333
  msgstr ""
1334
+ "Por defecto todas las cuentas Mercantiles de Skrill acceptan pagos a través "
1335
+ "de transferencias bancarias. ¡Cuando un usuario elige esta opción, no se "
1336
+ "concede %_plural%! Tendras que concederlos manualmente una vez que se haya "
1337
+ "realizado la transferencia bancaria."
1338
 
1339
  #: ../addons/buy-creds/gateways/skrill.php:378
1340
  msgid ""
1341
  "By default purchases made using Skrill will result in users having to signup "
1342
+ "for a Skrill account (if they do not have one already). You can contact "
1343
+ "Skrill Merchant Services and request to disable this feature."
1344
  msgstr ""
1345
+ "En forma predeterminada las compras hechas a través de Skrill precisan que "
1346
+ "el usuario registre una cuenta de Skrill (si ya no la tiene). Puedes "
1347
+ "contactar a los Servicios Mercantiles de Skrill y pedir que desactiven esta "
1348
+ "caracteristica del proceso."
1349
 
1350
  #: ../addons/buy-creds/gateways/zombaio.php:154
1351
  msgid "Checking Transaction ID"
1394
  "For this gateway to work, login to ZOA and set the Postback URL to the above "
1395
  "address and click validate."
1396
  msgstr ""
1397
+ "Para que esta puerta de enlace funcione, ingrese en ZOA y ajuste la "
1398
+ "devolución de datos de la URL a la dirección que se encuentra arriba y haga "
1399
+ "clic sobre validar."
1400
 
1401
+ #: ../addons/coupons/myCRED-addon-coupons.php:86 ../addons/coupons/myCRED-addon-
1402
+ #: coupons.php:92 ../addons/coupons/myCRED-addon-coupons.php:438 ..
1403
+ #: includes/mycred-overview.php:188 ../includes/mycred-overview.php:195 ..
1404
+ #: modules/mycred-module-addons.php:168
1405
  msgid "Coupons"
1406
  msgstr "Cupones"
1407
 
1408
+ #: ../addons/coupons/myCRED-addon-coupons.php:87 ..
1409
+ #: addons/coupons/includes/mycred-coupon-shortcodes.php:69
1410
  msgid "Coupon"
1411
  msgstr "Cupón"
1412
 
1438
  msgid "No coupons found in Trash"
1439
  msgstr "Ningun Cupón Encontrado en Papelera"
1440
 
1441
+ #: ../addons/coupons/myCRED-addon-coupons.php:98 ../addons/email-notices/myCRED-
1442
+ #: addon-email-notices.php:161 ../addons/email-notices/myCRED-addon-email-notices.
1443
+ #: php:167 ../addons/email-notices/myCRED-addon-email-notices.php:173 ..
1444
+ #: addons/email-notices/myCRED-addon-email-notices.php:270 ../modules/mycred-
1445
+ #: module-addons.php:179
1446
  msgid "Email Notices"
1447
  msgstr "Avisos por Correo Electrónico"
1448
 
1449
+ #: ../addons/coupons/myCRED-addon-coupons.php:119 ../addons/coupons/myCRED-addon-
1450
+ #: coupons.php:122
1451
  msgid "Coupon updated."
1452
  msgstr "Cupón Actualizado"
1453
 
1471
  msgid "Coupon Code"
1472
  msgstr "Código de Cupón"
1473
 
1474
+ #: ../addons/coupons/myCRED-addon-coupons.php:157 ../addons/coupons/myCRED-addon-
1475
+ #: coupons.php:309
1476
  msgid "Value"
1477
  msgstr "Valor"
1478
 
1480
  msgid "Usage"
1481
  msgstr "Utilización"
1482
 
1483
+ #: ../addons/coupons/myCRED-addon-coupons.php:159 ../addons/transfer/myCRED-addon-
1484
+ #: transfer.php:243 ../modules/mycred-module-hooks.php:1106 ../modules/mycred-
1485
+ #: module-hooks.php:1396
1486
  msgid "Limits"
1487
  msgstr "imites"
1488
 
1494
  msgid "not yet used"
1495
  msgstr "todavia no utilizado"
1496
 
1497
+ #: ../addons/coupons/myCRED-addon-coupons.php:198 ../modules/mycred-module-hooks.
1498
+ #: php:1834
1499
  msgid "Total"
1500
  msgstr "Total"
1501
 
1512
  msgstr "Caducado"
1513
 
1514
  #: ../addons/coupons/myCRED-addon-coupons.php:213
1515
+ #, php-format
1516
  msgid "In %s time"
1517
  msgstr "En %s tiempo"
1518
 
1542
 
1543
  #: ../addons/coupons/myCRED-addon-coupons.php:324
1544
  msgid "Optional date when this coupon expires. Expired coupons will be trashed."
1545
+ msgstr ""
1546
+ "La fecha opcional cuando este cupón caduca. Cupones caducados seran "
1547
+ "destrozado."
1548
 
1549
  #: ../addons/coupons/myCRED-addon-coupons.php:353
1550
  msgid "Global Maximum"
1552
 
1553
  #: ../addons/coupons/myCRED-addon-coupons.php:356
1554
  msgid ""
1555
+ "The maximum number of times this coupon can be used. Note that the coupon "
1556
+ "will be automatically trashed once this maximum is reached!"
1557
  msgstr ""
1558
+ "El número máximo de veces que este cupón se puede utilizar. Ten en cuenta "
1559
+ "que el cupón será colocado en la papelera de forma automática una vez que se "
1560
  "alcanza este máximo!"
1561
 
1562
  #. not clear if this is referring to the maximum number of users or to the maximum "points" a user can have or accrue?
1570
 
1571
  #: ../addons/coupons/myCRED-addon-coupons.php:395
1572
  msgid ""
1573
+ "Optional minimum balance a user must have in order to use this coupon. Use "
1574
+ "zero to disable."
1575
  msgstr ""
1576
  "Mínimo saldo opcional que el usuario debe tener para utilizar este cupón. "
1577
  "Utilice cero para inhabilitar."
1582
 
1583
  #: ../addons/coupons/myCRED-addon-coupons.php:402
1584
  msgid ""
1585
+ "Optional maximum balance a user can have in order to use this coupon. Use "
1586
+ "zero to disable."
1587
  msgstr ""
1588
  "Saldo máximo opcional que un usuario puede tener para usar este cupón. Ponga "
1589
  "cero para desactivar."
1590
 
1591
  #: ../addons/coupons/myCRED-addon-coupons.php:444
1592
+ #, php-format
1593
  msgid ""
1594
  "Log entry for successful coupon redemption. Use %coupon% to show the coupon "
1595
  "code."
1596
  msgstr ""
1597
+ "Entrada del registro al exitoso canje del cupón. Utilice %coupon% para "
1598
+ "mostrar el código del cupón."
1599
 
1600
  #: ../addons/coupons/myCRED-addon-coupons.php:447
1601
  msgid "Invalid Coupon Message"
1627
 
1628
  #: ../addons/coupons/myCRED-addon-coupons.php:472
1629
  msgid ""
1630
+ "Message to show when a user does not meet the minimum balance requirement. "
1631
+ "(if used)"
1632
  msgstr ""
1633
+ "Mostrar mensaje cuando el usuario no cumple con el saldo mínimo requerido. "
1634
+ "(si se utiliza)"
1635
 
1636
  #: ../addons/coupons/myCRED-addon-coupons.php:475
1637
  msgid "Maximum Balance Message"
1639
 
1640
  #: ../addons/coupons/myCRED-addon-coupons.php:479
1641
  msgid ""
1642
+ "Message to show when a user does not meet the maximum balance requirement. "
1643
+ "(if used)"
1644
  msgstr ""
1645
+ "Mostrar mensaje cuando un usuario no alcanza el saldo máximo requerido. (si "
1646
+ "se utiliza)"
1647
 
1648
  #: ../addons/coupons/myCRED-addon-coupons.php:482
1649
  msgid "Success Message"
1661
  msgid "Apply Coupon"
1662
  msgstr "Aplica el Cupón"
1663
 
1664
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:162 ../addons/email-
1665
+ #: notices/myCRED-addon-email-notices.php:1138
1666
  msgid "Email Notice"
1667
  msgstr "Aviso por Correo Electrónico"
1668
 
1669
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:163 ..
1670
+ #: addons/ranks/myCRED-addon-ranks.php:248
1671
  msgid "Add New"
1672
  msgstr "Añade Nuevo"
1673
 
1674
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:164
1675
  msgid "Add New Notice"
1676
  msgstr "Añade Nueva Notificación"
1677
 
1678
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:165
1679
  msgid "Edit Notice"
1680
  msgstr "Editar Aviso"
1681
 
1682
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:166
1683
  msgid "New Notice"
1684
  msgstr "Nuevo Aviso"
1685
 
1686
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:168
1687
  msgid "View Notice"
1688
  msgstr "Ver Aviso"
1689
 
1690
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:169
1691
  msgid "Search Email Notices"
1692
  msgstr "Búsqueda de Avisos por Correo Electrónico"
1693
 
1694
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:170
1695
  msgid "No email notices found"
1696
  msgstr "Ningun aviso por correo electrónico encontrado"
1697
 
1698
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:171
1699
  msgid "No email notices found in Trash"
1700
  msgstr "Ningun aviso por correo electrónico encontrado en la papelera"
1701
 
1702
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:195 ..
1703
+ #: addons/gateway/carts/mycred-wpecommerce.php:337 ../includes/mycred-functions.
1704
+ #: php:589
1705
  msgid "General"
1706
  msgstr "General"
1707
 
1708
  #. can also be users as in plural, I've assumed it is user singular with a missing apostrophe
1709
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:196
1710
  msgid "users balance changes"
1711
  msgstr "el saldo de usuario cambia"
1712
 
1713
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:197
1714
  msgid "user gains %_plural%"
1715
  msgstr "usuario gana %_plural%"
1716
 
1717
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:198
1718
  msgid "user lose %_plural%"
1719
  msgstr "usuario pierde %_plural%"
1720
 
1721
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:199
1722
  msgid "users balance reaches zero"
1723
  msgstr "saldo de usuario llega a cero"
1724
 
1725
  #. can also be users as in plural, I've assumed it is user singular with a missing apostrophe
1726
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:200
1727
  msgid "users balance goes minus"
1728
  msgstr "el saldo de usuario cae a negativo"
1729
 
1730
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:206
1731
  msgid "Sell Content Add-on"
1732
  msgstr "Extensión para Vender Contenido"
1733
 
1734
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:207
1735
  msgid "user buys content"
1736
  msgstr "usuario compra contenido"
1737
 
1738
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:208
1739
  msgid "authors content gets sold"
1740
  msgstr "el contenido del autor sera vendido"
1741
 
1742
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:215
1743
  msgid "buyCREDs Add-on"
1744
  msgstr "Extensión de compraCREDs"
1745
 
1746
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:216
1747
  msgid "user buys %_plural%"
1748
  msgstr "usuario compra %_plural%"
1749
 
1750
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:223
1751
  msgid "Transfer Add-on"
1752
  msgstr "Extensión de Transferencias"
1753
 
1754
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:224
1755
  msgid "user sends %_plural%"
1756
  msgstr "usuario manda %_plural%"
1757
 
1758
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:225
1759
  msgid "user receives %_plural%"
1760
  msgstr "usuario recibe %_plural%"
1761
 
1762
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:232
1763
  msgid "Ranks Add-on"
1764
  msgstr "Extensión de Rangos"
1765
 
1766
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:233
1767
  msgid "user is demoted"
1768
  msgstr "se ha degrado al usuario"
1769
 
1770
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:234
1771
  msgid "user is promoted"
1772
  msgstr "se ha promovido al usuario"
1773
 
1774
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:272
1775
  msgid ""
1776
  "Settings that apply to all email notices and can not be overridden for "
1777
  "individual emails."
1778
  msgstr ""
1779
+ "Ajustes que se aplica a todos los correos electrónicos y que no seran "
1780
+ "anulados para correos electronicos especificos."
1781
 
1782
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:273
1783
  msgid "Email Format"
1784
  msgstr "Formato de Correo Electrónico"
1785
 
1786
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:277
1787
  msgid "Plain text emails only."
1788
  msgstr "Correo electrónico usando texto sin formato."
1789
 
1790
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:281
1791
  msgid "HTML or Plain text emails."
1792
  msgstr "Correo electrónico usando HTML o texto sin formato."
1793
 
1794
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:284
1795
  msgid "Filters"
1796
  msgstr "Filtros"
1797
 
1798
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:288
1799
  msgid ""
1800
+ "Allow WordPress and Third Party Plugins to filter the email subject before "
1801
+ "an email is sent."
1802
  msgstr ""
1803
+ "Permite a Wordpress y a los Plugins de terceros a filtrar el asunto del "
1804
+ "correo electrónico antes de enviarlo."
1805
 
1806
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:292
1807
  msgid ""
1808
+ "Allow WordPress and Third Party Plugins to filter the email content before "
1809
+ "an email is sent."
1810
  msgstr ""
1811
  "Permite a Wordpress y a los Plugins de terceros a filtrar el contenido del "
1812
  "correo electrónico antes de enviarlo."
1813
 
1814
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:297 ../addons/email-
1815
+ #: notices/myCRED-addon-email-notices.php:303
1816
+ msgid "Email Schedule"
1817
+ msgstr ""
1818
+
1819
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:299
1820
+ msgid "WordPress Cron is disabled. Emails will be sent immediately."
1821
+ msgstr ""
1822
+
1823
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:307
1824
+ msgid "Send emails immediately"
1825
+ msgstr ""
1826
+
1827
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:311
1828
+ msgid "Send emails once an hour"
1829
+ msgstr ""
1830
+
1831
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:315
1832
+ msgid "Send emails once a day"
1833
+ msgstr ""
1834
+
1835
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:318
1836
+ msgid "Subscriptions"
1837
+ msgstr ""
1838
+
1839
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:320
1840
+ #, php-format
1841
+ msgid ""
1842
+ "Use the %s shortcode to allow users to subscribe / unsubscribe to email "
1843
+ "updates."
1844
+ msgstr ""
1845
+
1846
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:325
1847
+ msgid "SMTP Override"
1848
+ msgstr ""
1849
+
1850
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:329
1851
+ msgid ""
1852
+ "SMTP Debug. Enable if you are experiencing issues with wp_mail() or if you "
1853
+ "use a SMTP plugin for emails."
1854
+ msgstr ""
1855
+
1856
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:332
1857
  msgid ""
1858
  "Default email settings. These settings can be individually overridden when "
1859
  "editing emails."
1860
  msgstr ""
1861
+ "Configuraciones predeterminadas para correos electrónicos. Estos ajustes "
1862
+ "pueden ser anulado individualmente cuando se edita correos electrónicos."
1863
 
1864
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:333 ../addons/email-
1865
+ #: notices/myCRED-addon-email-notices.php:802
1866
  msgid "Email Settings"
1867
  msgstr "Configuracion de Correo Electrónico"
1868
 
1869
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:336 ../addons/email-
1870
+ #: notices/myCRED-addon-email-notices.php:925
1871
  msgid "Senders Name:"
1872
  msgstr "Nombre del Remitente"
1873
 
1874
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:340 ../addons/email-
1875
+ #: notices/myCRED-addon-email-notices.php:927
1876
  msgid "Senders Email:"
1877
  msgstr "Correo Electrónico del Remitente:"
1878
 
1879
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:344
1880
  msgid "Reply-To:"
1881
  msgstr "Responder-A:"
1882
 
1883
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:348
1884
  msgid "Default Email Content"
1885
  msgstr "Contenido de Correo Electrónico Predefinido"
1886
 
1887
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:352
1888
  msgid "Default email content."
1889
  msgstr "Contenido de correo electrónico predefinido."
1890
 
1891
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:355
1892
  msgid "Default Email Styling"
1893
  msgstr "Estilo de Correo Electrónico Predefinido"
1894
 
1895
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:359
1896
  msgid "Ignored if HTML is not allowed in emails."
1897
  msgstr "Sera ignorado si no se permite HTML en los correos electrónicos."
1898
 
1899
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:736 ../addons/email-
1900
+ #: notices/myCRED-addon-email-notices.php:851
1901
  msgid "Email Subject"
1902
  msgstr "Asunto del Correo Electrónico"
1903
 
1904
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:737
1905
  msgid "Status"
1906
  msgstr "Estatus"
1907
 
1908
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:757
1909
  msgid "Not Active"
1910
  msgstr "No esta Activo"
1911
 
1912
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:759
1913
+ #, php-format
1914
  msgid "Scheduled:<br /><strong>%1$s</strong>"
1915
  msgstr "Programada:<br /><strong>%1$s</strong>"
1916
 
1917
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:763
1918
  msgid "Active"
1919
  msgstr "Activo"
1920
 
1921
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:765
1922
+ #, php-format
1923
  msgid "Active - Last run:<br /><strong>%1$s</strong>"
1924
  msgstr "Activo - Ultima ejecución:<br /><strong>%1$s</strong>"
1925
 
1926
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:775
1927
  msgid "Email is sent when"
1928
  msgstr "el Correo Electrónico se envia cuando"
1929
 
1930
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:777
1931
  msgid "Missing instance for this notice!"
1932
  msgstr "¡Falta una instancia para este aviso!"
1933
 
1934
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:786 ../addons/email-
1935
+ #: notices/myCRED-addon-email-notices.php:788 ../addons/email-notices/myCRED-
1936
+ #: addon-email-notices.php:790
1937
  msgid "Sent To"
1938
  msgstr "Enviado A:"
1939
 
1940
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:788 ../addons/email-
1941
+ #: notices/myCRED-addon-email-notices.php:916
1942
  msgid "Administrator"
1943
  msgstr "Administrador"
1944
 
1945
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:790
1946
  msgid "Both Administrator and User"
1947
  msgstr "Tanto Administrador como Usuario"
1948
 
1949
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:811
1950
  msgid "Available Template Tags"
1951
  msgstr "Etiquetas (tags) de Plantilla Disponibles"
1952
 
1953
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:822
1954
  msgid "Email Header"
1955
  msgstr "Encabezado del Correo Electrónico"
1956
 
1957
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:882
1958
  msgid "Send this email notice when..."
1959
  msgstr "Envia este aviso por correo electrónico cuando..."
1960
 
1961
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:913
1962
  msgid "Recipient:"
1963
  msgstr "Destinatario:"
1964
 
1965
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:917
1966
  msgid "Both"
1967
  msgstr "Ambos"
1968
 
1969
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:921 ..
1970
+ #: addons/gateway/carts/mycred-woocommerce.php:148 ../modules/mycred-module-
1971
+ #: settings.php:484 ../modules/mycred-module-settings.php:503 ../modules/mycred-
1972
+ #: module-settings.php:526
1973
+ msgid "Label"
1974
+ msgstr "Etiqueta"
1975
+
1976
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:929
1977
  msgid "Reply-To Email:"
1978
  msgstr "Responder-A Correo Electrónico:"
1979
 
1980
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:935
1981
  msgid "Save"
1982
  msgstr "Guardar"
1983
 
1984
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:947
1985
  msgid "CSS Styling"
1986
  msgstr "Estilo CSS"
1987
 
1988
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:963
1989
  msgid "Site Related"
1990
  msgstr "Relacionado al Sitio"
1991
 
1992
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:964
1993
  msgid "Your websites title"
1994
  msgstr "Titulo de tu pagina web"
1995
 
1996
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:965
1997
  msgid "Your websites address"
1998
  msgstr "Dirección de tu pagina web"
1999
 
2000
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:966
2001
  msgid "Your websites tagline (description)"
2002
  msgstr "La descripción de tu sitio web (lema o eslogan)"
2003
 
2004
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:967
2005
  msgid "Your websites admin email"
2006
  msgstr "El correo electrónico de admin para tu pagina web"
2007
 
2008
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:968
2009
  msgid "Total number of blog members"
2010
  msgstr "Número total de miembros del blog"
2011
 
2012
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:1046 ../addons/email-
2013
+ #: notices/myCRED-addon-email-notices.php:1049
2014
+ #, php-format
2015
  msgid "Email Notice Updated. View <a href=\"%1$s\">All Notices</a>."
2016
  msgstr "Aviso de Email Actualizado. Ver <a href=\"%1$s\">Todos los Avisos</a>."
2017
 
2018
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:1051
2019
  msgid "Email Notice Activated"
2020
  msgstr "Notificación atraves de Correo Electrónico Activado"
2021
 
2022
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:1052
2023
  msgid "Email Notice Saved"
2024
  msgstr "Aviso por Correo Electrónico Guardado"
2025
 
2026
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:1053
2027
+ #, php-format
2028
  msgid "Email Notice Submitted for approval. View <a href=\"%1$s\">All Notices</a>."
2029
+ msgstr ""
2030
+ "Aviso de Email Enviado para aprobación. Ver <a href=\"%1$s\">Todos los "
2031
+ "Avisos</a>."
2032
 
2033
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:1055
2034
+ #, php-format
2035
  msgid "Email Notice scheduled for: <strong>%1$s</strong>."
2036
  msgstr "Se ha fijado el Aviso por Correo Electrónico para: <strong>%1$s</strong>."
2037
 
2038
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:1074
2039
  msgid ""
2040
+ "Once a notice is \"published\" it becomes active! Select \"Save Draft\" if you "
2041
+ "are not yet ready to use this email notice!"
2042
  msgstr ""
2043
+ "¡Una vez que un aviso sea \"publicado\" se activa! ¡Elige \"Guardar Borrador\" "
2044
+ "si aun no estás listo para utilizar este aviso por email!"
2045
 
2046
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:1076
2047
+ #, php-format
2048
  msgid "This notice will become active on:<br /><strong>%1$s</strong>"
2049
  msgstr "Este aviso se activará en:<br /><strong>%1$s</strong>"
2050
 
2051
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:1078
2052
  msgid "This email notice is active."
2053
  msgstr "Esta notificación de correo electrónico esta activada."
2054
 
2055
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:1089
2056
+ msgid "Settings saved."
2057
+ msgstr ""
2058
+
2059
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:1137
2060
+ msgid "Unsubscribe"
2061
+ msgstr ""
2062
+
2063
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:1158
2064
+ msgid "There are no email notifications yet."
2065
+ msgstr ""
2066
+
2067
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:1164
2068
+ msgid "Save Changes"
2069
+ msgstr ""
2070
+
2071
+ #: ../addons/gateway/carts/mycred-marketpress.php:147 ../addons/gateway/event-
2072
+ #: booking/mycred-eventespresso3.php:277 ../addons/gateway/event-booking/mycred-
2073
+ #: eventespresso3.php:301 ../addons/gateway/event-booking/mycred-eventsmanager.
2074
+ #: php:412 ../includes/mycred-admin.php:478
2075
  msgid "Current Balance"
2076
  msgstr "Saldo Actual"
2077
 
2078
+ #: ../addons/gateway/carts/mycred-marketpress.php:151 ..
2079
+ #: addons/gateway/carts/mycred-wpecommerce.php:123 ../addons/gateway/event-
2080
+ #: booking/mycred-eventespresso3.php:281 ../addons/gateway/event-booking/mycred-
2081
+ #: eventespresso3.php:305 ../addons/gateway/event-booking/mycred-eventsmanager.
2082
+ #: php:416
2083
  msgid "Total Cost"
2084
  msgstr "Coste Total"
2085
 
2086
+ #: ../addons/gateway/carts/mycred-marketpress.php:155 ../addons/gateway/event-
2087
+ #: booking/mycred-eventespresso3.php:285 ../addons/gateway/event-booking/mycred-
2088
+ #: eventespresso3.php:309
2089
  msgid "Balance After Purchase"
2090
  msgstr "Saldo Despues de Compra"
2091
 
2092
+ #: ../addons/gateway/carts/mycred-marketpress.php:182 ..
2093
+ #: addons/gateway/carts/mycred-marketpress.php:231
2094
  msgid "Go Back"
2095
  msgstr "Regresar"
2096
 
2099
  msgstr "sera restado de su cuenta."
2100
 
2101
  #: ../addons/gateway/carts/mycred-marketpress.php:221
2102
+ #, php-format
2103
  msgid ""
2104
+ "Sorry, but you can not use this gateway as your account is excluded. Please "
2105
+ "<a href=\"%s\">select a different payment method</a>."
2106
  msgstr ""
2107
  "Lo siento, pero no puede utilizar esta pasarela de pago porque excluye su "
2108
  "cuenta. Por favor <a href=\"%s\"> elige otro método de pago."
2111
  msgid "Paid"
2112
  msgstr "Pagado"
2113
 
2114
+ #: ../addons/gateway/carts/mycred-marketpress.php:243 ..
2115
+ #: addons/gateway/carts/mycred-woocommerce.php:33 ../includes/mycred-network.php:
2116
+ #: 57 ../includes/mycred-network.php:58 ../plugins/mycred-hook-badgeOS.php:81
2117
  msgid "myCRED"
2118
  msgstr "myCRED"
2119
 
2121
  msgid "%_singular% Balance"
2122
  msgstr "%_singular% Saldo"
2123
 
2124
+ #: ../addons/gateway/carts/mycred-marketpress.php:348 ..
2125
+ #: addons/gateway/carts/mycred-woocommerce.php:101 ..
2126
+ #: addons/gateway/carts/mycred-wpecommerce.php:27
2127
+ #, php-format
2128
  msgid "Payment for Order: #%order_id%"
2129
  msgstr "Pago por el Pedido"
2130
 
2137
  msgstr "Paga usando el saldo de su cuenta."
2138
 
2139
  #: ../addons/gateway/carts/mycred-marketpress.php:353
2140
+ #, php-format
2141
  msgid ""
2142
  "TOTAL amount has been deducted from your account. Your current balance is: "
2143
  "%balance_f%"
2144
  msgstr "Cantidad TOTAL ha sido restado de su cuenta. Su saldo actual es:% balance_f%"
2145
 
2146
  #: ../addons/gateway/carts/mycred-marketpress.php:354
2147
+ #, php-format
2148
  msgid ""
2149
+ "Insufficient funds. Please select another form of payment. Your current "
2150
+ "balance is: %balance_f%"
2151
  msgstr ""
2152
+ "Fondos insuficientes. Por favor seleccione otra forma de pago. Su saldo "
2153
+ "actual es: %balance_f%"
2154
 
2155
  #: ../addons/gateway/carts/mycred-marketpress.php:355
2156
  msgid ""
2161
  "href=\"%login_url_here%\">identifícate</a>."
2162
 
2163
  #: ../addons/gateway/carts/mycred-marketpress.php:362
2164
+ #, php-format
2165
  msgid ""
2166
  "Let your users pay for items in their shopping cart using their %s Account. "
2167
+ "Note! This gateway requires your users to be logged in when making a "
2168
+ "purchase!"
2169
  msgstr ""
2170
  "Permita que sus usuarios paguen para los articulos en su carrito de compra "
2171
  "usando su %s Cuenta. ¡Nota! Esta pasarela de pago requiere que sus usuarios "
2180
  "Enter a public name for this payment method that is displayed to users - No "
2181
  "HTML"
2182
  msgstr ""
2183
+ "Introduzca el nombre público para este método de pago que se va a mostrar a "
2184
+ "los usuarios - sin HTML"
2185
 
2186
  #: ../addons/gateway/carts/mycred-marketpress.php:372
2187
  msgid "Gateway Logo URL"
2188
  msgstr "URL del Logotipo de la Pasarela de Pago"
2189
 
2190
+ #: ../addons/gateway/carts/mycred-marketpress.php:393 ..
2191
+ #: addons/gateway/carts/mycred-woocommerce.php:124
2192
+ #, php-format
2193
  msgid "How much is 1 %_singular% worth in %currency%?"
2194
  msgstr "¿Cuanto vale un 1 %_singular% en %currency%?"
2195
 
2196
+ #: ../addons/gateway/carts/mycred-marketpress.php:398 ..
2197
+ #: addons/gateway/carts/mycred-woocommerce.php:129 ..
2198
+ #: addons/gateway/carts/mycred-wpecommerce.php:356 ../addons/gateway/event-
2199
+ #: booking/mycred-eventespresso3.php:450 ../addons/gateway/event-booking/mycred-
2200
+ #: eventsmanager-pro.php:499 ../addons/gateway/event-booking/mycred-eventsmanager.
2201
+ #: php:578
2202
  msgid "Exchange Rate"
2203
  msgstr "Tipo de Cambio"
2204
 
2205
+ #: ../addons/gateway/carts/mycred-marketpress.php:407 ..
2206
+ #: addons/gateway/carts/mycred-woocommerce.php:157 ..
2207
+ #: addons/gateway/carts/mycred-wpecommerce.php:360 ../addons/gateway/event-
2208
+ #: booking/mycred-eventespresso3.php:462 ../addons/gateway/event-booking/mycred-
2209
+ #: eventsmanager-pro.php:490 ../addons/gateway/event-booking/mycred-eventsmanager.
2210
+ #: php:569
2211
  msgid "Profit Sharing"
2212
  msgstr "Reparto de Ganancias"
2213
 
2215
  msgid "Percentage"
2216
  msgstr "Porcentaje"
2217
 
2218
+ #: ../addons/gateway/carts/mycred-marketpress.php:412 ..
2219
+ #: addons/gateway/carts/mycred-woocommerce.php:159 ..
2220
+ #: addons/gateway/carts/mycred-wpecommerce.php:364 ../addons/gateway/event-
2221
+ #: booking/mycred-eventespresso3.php:464 ../addons/gateway/event-booking/mycred-
2222
+ #: eventsmanager-pro.php:493 ../addons/gateway/event-booking/mycred-eventsmanager.
2223
+ #: php:572
2224
  msgid "Option to share sales with the product owner. Use zero to disable."
2225
  msgstr ""
2226
  "Opción de compartir las ventas con el dueño del producto. Utilice cero para "
2227
  "inhabilitar."
2228
 
2229
+ #: ../addons/gateway/carts/mycred-marketpress.php:424 ..
2230
+ #: addons/gateway/carts/mycred-wpecommerce.php:371 ../addons/gateway/event-
2231
+ #: booking/mycred-eventsmanager-pro.php:559 ../addons/gateway/event-
2232
+ #: booking/mycred-eventsmanager.php:626
2233
  msgid "Messages"
2234
  msgstr "Mensajes"
2235
 
2236
+ #: ../addons/gateway/carts/mycred-marketpress.php:427 ..
2237
+ #: addons/gateway/carts/mycred-wpecommerce.php:382 ../addons/gateway/event-
2238
+ #: booking/mycred-eventsmanager-pro.php:569 ../addons/gateway/event-
2239
+ #: booking/mycred-eventsmanager.php:636
2240
  msgid "Insufficient Funds"
2241
  msgstr "Fondos Insuficientes"
2242
 
2244
  msgid "Message to show when the user can not use this gateway."
2245
  msgstr "Monstrar mensaje cuando el usuario no puede usar esta pasarela de pago."
2246
 
2247
+ #: ../addons/gateway/carts/mycred-marketpress.php:435 ..
2248
+ #: addons/gateway/carts/mycred-wpecommerce.php:378 ../addons/gateway/event-
2249
+ #: booking/mycred-eventespresso3.php:490
2250
  msgid "Visitors"
2251
  msgstr "Visitantes"
2252
 
2277
  msgstr "Email de Confirmación del Pedido"
2278
 
2279
  #: ../addons/gateway/carts/mycred-marketpress.php:461
2280
+ #, php-format
2281
  msgid ""
2282
  "This is the email text to send to those who have made %s checkouts. It "
2283
+ "overrides the default order checkout email. These codes will be replaced "
2284
+ "with order details: CUSTOMERNAME, ORDERID, ORDERINFO, SHIPPINGINFO, "
2285
+ "PAYMENTINFO, TOTAL, TRACKINGURL. No HTML allowed."
2286
  msgstr ""
2287
+ "Esto es el texto del correo electrónico que se manda a los que hayan "
2288
+ "finalizado %s compras. Anula al correo electrónico predeterminado al "
2289
+ "finalizar el cajero. Estos códigos seran reemplazados con los detalles del "
2290
+ "pedido: ORDERID, ORDERINFO, SHIPPINGINFO, PAYMENTINFO, TOTAL, TRACKINGURL. "
2291
+ "No se permite el uso de HTML."
2292
 
2293
  #: ../addons/gateway/carts/mycred-woocommerce.php:34
2294
  msgid "Let users pay using their myCRED balance."
2304
 
2305
  #: ../addons/gateway/carts/mycred-woocommerce.php:83
2306
  msgid ""
2307
+ "Users who are not logged in or excluded from using myCRED will not have "
2308
+ "access to this gateway!"
2309
  msgstr ""
2310
  "¡Los usuarios que no estan ingresado o los que han sido excluido de utilizar "
2311
  "myCRED no tendran acceso a esta pasarela de pago!"
2324
  msgstr "Mensaje a los Clientes"
2325
 
2326
  #: ../addons/gateway/carts/mycred-woocommerce.php:95
2327
+ #, php-format
2328
  msgid "Deduct the amount from your %_plural% balance."
2329
  msgstr "Restar la cantidad de su saldo de %_plural%"
2330
 
2356
  msgid "Show in Cart and on Checkout Page"
2357
  msgstr "Mostrar en el Carrito y en la página de pago"
2358
 
 
 
 
 
2359
  #: ../addons/gateway/carts/mycred-woocommerce.php:150
2360
  msgid "Order Total in %_plural%"
2361
  msgstr "Total del Pedido en %_plural%"
2373
  msgstr "Pago myCRED"
2374
 
2375
  #: ../addons/gateway/carts/mycred-woocommerce.php:193
2376
+ #, php-format
2377
  msgid ""
2378
  "Allows users to pay using their myCRED %_singular% balance. Please note that "
2379
+ "users with insufficient funds and users who are not logged in will not see "
2380
+ "this payment gateway on the checkout page."
2381
  msgstr ""
2382
  "Permite a los usuarios pagar usando su mycred % _singular% saldo. Por favor, "
2383
+ "ten en cuenta que los usuarios con fondos insuficientes y los usuarios que "
2384
+ "no han iniciado sesión no verán esta pasarela de pago en la página de pago."
2385
 
2386
  #: ../addons/gateway/carts/mycred-woocommerce.php:214
2387
  msgid "You must be logged in to pay with %_plural%"
2393
  "No puede usar esta pasarela de pago. Por favor prueba una opción de pago "
2394
  "diferente."
2395
 
2396
+ #: ../addons/gateway/carts/mycred-woocommerce.php:237
2397
  msgid "Insufficient funds. Please try a different payment option."
2398
  msgstr "Fondos insuficientes. Por favor prueba con otra opción de pago."
2399
 
2400
+ #: ../addons/gateway/carts/mycred-woocommerce.php:299
2401
  msgid "Your account has successfully been charged."
2402
  msgstr "Su cuenta ha sido cambiado con éxito."
2403
 
2404
  #. assuming it is referring to order (buy something) not order (rank or organization)
2405
+ #: ../addons/gateway/carts/mycred-woocommerce.php:318
2406
  msgid "Order Missing"
2407
  msgstr "Falta de Pedido"
2408
 
2409
+ #: ../addons/gateway/carts/mycred-woocommerce.php:545 ..
2410
+ #: addons/gateway/carts/mycred-wpecommerce.php:131
2411
  msgid "Your current balance"
2412
  msgstr "Tu saldo actual"
2413
 
2436
  msgstr "Plantilla de Registro para Pagos"
2437
 
2438
  #: ../addons/gateway/carts/mycred-wpecommerce.php:357
2439
+ #, php-format
2440
  msgid "How much is 1 %s worth in %s"
2441
  msgstr "Cuanto vale 1 %s en %s"
2442
 
2450
 
2451
  #: ../addons/gateway/carts/mycred-wpecommerce.php:375
2452
  msgid ""
2453
+ "Optional instructions to show users when selecting this gateway. Leave empty "
2454
+ "to hide."
2455
  msgstr ""
2456
+ "Instrucciones opcionales para mostrar a los usuarios cuando se selecciona "
2457
+ "esta pasarela. Deje el campo vacío para ocultarlo."
2458
 
2459
  #: ../addons/gateway/carts/mycred-wpecommerce.php:379
2460
  msgid "Message to show visitors who are not logged in."
2465
  "Message to show when users does not have enough %plural% to pay using this "
2466
  "gateway."
2467
  msgstr ""
2468
+ "Monstrar mensaje cuando los usuarios no tienen bastante %plural% con que "
2469
+ "pagar usando esta pasarela de pago."
2470
 
2471
+ #: ../addons/gateway/event-booking/mycred-eventespresso3.php:27 ..
2472
+ #: addons/gateway/event-booking/mycred-eventsmanager-pro.php:39 ..
2473
+ #: addons/gateway/event-booking/mycred-eventsmanager.php:35
2474
  msgid "Pay Now"
2475
  msgstr "Pagar Ahora"
2476
 
2479
  msgstr "Pago para Registrar Evento"
2480
 
2481
  #: ../addons/gateway/event-booking/mycred-eventespresso3.php:343
2482
+ #, php-format
2483
  msgid "Activate %s"
2484
  msgstr "Activar %s"
2485
 
2486
  #: ../addons/gateway/event-booking/mycred-eventespresso3.php:351
2487
+ #, php-format
2488
  msgid "Deactivate %s"
2489
  msgstr "Desactivar %s"
2490
 
2491
+ #: ../addons/gateway/event-booking/mycred-eventespresso3.php:399 ..
2492
+ #: addons/gateway/event-booking/mycred-eventsmanager-pro.php:449 ..
2493
+ #: addons/gateway/event-booking/mycred-eventsmanager.php:524
2494
+ #, php-format
2495
  msgid "How many %s is 1 %s worth?"
2496
  msgstr "¿Cuantos %s vale un %s?"
2497
 
2499
  msgid "Gateways Settings Successfully Updated"
2500
  msgstr "Configuracion de l Pasarela de Pago ha sido Actualizado "
2501
 
2502
+ #: ../addons/gateway/event-booking/mycred-eventespresso3.php:415 ..
2503
+ #: addons/gateway/event-booking/mycred-eventsmanager-pro.php:535 ..
2504
+ #: addons/gateway/event-booking/mycred-eventsmanager.php:602
2505
  msgid "Labels"
2506
  msgstr "Etiquetas"
2507
 
2522
  msgid "Title to show on receipts and logs"
2523
  msgstr "El titulo a mostrar en la factura y en los registros."
2524
 
2525
+ #: ../addons/gateway/event-booking/mycred-eventespresso3.php:428 ..
2526
+ #: addons/gateway/event-booking/mycred-eventsmanager-pro.php:552 ..
2527
+ #: addons/gateway/event-booking/mycred-eventsmanager.php:619 ../addons/sell-
2528
+ #: content/myCRED-addon-sell-content.php:397 ../addons/sell-content/myCRED-addon-
2529
+ #: sell-content.php:590
2530
  msgid "Button Label"
2531
  msgstr "Eqiqueta Asignada al Botón"
2532
 
2534
  msgid "Pay Button"
2535
  msgstr "Botón de Pago"
2536
 
2537
+ #: ../addons/gateway/event-booking/mycred-eventespresso3.php:447 ..
2538
+ #: addons/gateway/event-booking/mycred-eventsmanager-pro.php:137 ..
2539
+ #: addons/gateway/event-booking/mycred-eventsmanager-pro.php:140 ..
2540
+ #: addons/gateway/event-booking/mycred-eventsmanager.php:336 ..
2541
+ #: addons/gateway/event-booking/mycred-eventsmanager.php:339 ../addons/sell-
2542
+ #: content/myCRED-addon-sell-content.php:388 ../addons/sell-content/myCRED-addon-
2543
+ #: sell-content.php:586
2544
  msgid "Price"
2545
  msgstr "Precio"
2546
 
2549
  "You can disable purchases using this gateway by adding a custom Event Meta: "
2550
  "<code>mycred_no_sale</code>"
2551
  msgstr ""
2552
+ "Puedes inhabilitar compras a traves de esta pasarela mediante la adición de "
2553
+ "un Evento Meta personalizado: <code>mycred_no_sale</code>"
2554
 
2555
  #: ../addons/gateway/event-booking/mycred-eventespresso3.php:458
2556
  msgid "Users must be logged in to use this gateway!"
2557
  msgstr "¡Los usuarios deben estar conectado para usar esta pasarela de pago!"
2558
 
2559
+ #: ../addons/gateway/event-booking/mycred-eventespresso3.php:467 ..
2560
+ #: modules/mycred-module-log.php:22 ../modules/mycred-module-log.php:23
2561
  msgid "Log"
2562
  msgstr "Registro"
2563
 
2564
+ #: ../addons/gateway/event-booking/mycred-eventespresso3.php:470 ..
2565
+ #: includes/mycred-admin.php:483
2566
  msgid "Log Entry"
2567
  msgstr "Entrada de Registro"
2568
 
2576
 
2577
  #: ../addons/gateway/event-booking/mycred-eventespresso3.php:482
2578
  msgid ""
2579
+ "Message to show users on the payment page before they are charged. Leave "
2580
+ "empty to hide."
2581
  msgstr ""
2582
  "Mostrar mensaje a los usuarios en la pagina de pago antes de cobrar. Dejalo "
2583
  "vacío para ocultar. "
2588
 
2589
  #: ../addons/gateway/event-booking/mycred-eventespresso3.php:487
2590
  msgid "Message to show users who do not have enough points to pay."
2591
+ msgstr ""
2592
+ "Mostrar mensaje a los usuarios que no tienen suficientes puntos con que "
2593
+ "pagar."
2594
 
2595
  #: ../addons/gateway/event-booking/mycred-eventespresso3.php:492
2596
  msgid "Message to show visitors (users not logged in) on the payment page."
2598
  "Mostrar mensaje a los visitantes (usuarios que no han iniciado sesión) en la "
2599
  "pagina de pago."
2600
 
2601
+ #: ../addons/gateway/event-booking/mycred-eventespresso3.php:502 ..
2602
+ #: modules/mycred-module-settings.php:540
2603
  msgid "Update Settings"
2604
  msgstr "Actualizar Configuraciones"
2605
 
2606
+ #: ../addons/gateway/event-booking/mycred-eventsmanager-pro.php:33 ..
2607
+ #: addons/gateway/event-booking/mycred-eventsmanager.php:29
2608
  msgid "Payment for tickets to %link_with_title%"
2609
  msgstr "Pago de entradas para %link_with_title%"
2610
 
2611
+ #: ../addons/gateway/event-booking/mycred-eventsmanager-pro.php:34 ..
2612
+ #: addons/gateway/event-booking/mycred-eventsmanager.php:30
2613
  msgid "Ticket refund for %link_with_title%"
2614
  msgstr "Reembolso de entrada para "
2615
 
2616
+ #: ../addons/gateway/event-booking/mycred-eventsmanager-pro.php:38 ..
2617
+ #: addons/gateway/event-booking/mycred-eventsmanager.php:34
2618
+ #, php-format
2619
  msgid "Pay using your %_plural% balance"
2620
  msgstr "Paga utilizando tu saldo de %_plural%"
2621
 
2622
+ #: ../addons/gateway/event-booking/mycred-eventsmanager-pro.php:40 ..
2623
+ #: addons/gateway/event-booking/mycred-eventsmanager.php:36
2624
  msgid "Pay"
2625
  msgstr "Pagar"
2626
 
2627
+ #: ../addons/gateway/event-booking/mycred-eventsmanager-pro.php:43 ..
2628
+ #: addons/gateway/event-booking/mycred-eventsmanager.php:39
2629
  msgid "Thank you for your payment!"
2630
  msgstr "¡Gracias por su pago!"
2631
 
2632
+ #: ../addons/gateway/event-booking/mycred-eventsmanager-pro.php:44 ..
2633
+ #: addons/gateway/event-booking/mycred-eventsmanager.php:40
2634
  msgid "I'm sorry but you can not pay for these tickets using %_plural%"
2635
  msgstr "Lo siento pero no puedes pagar estos billetes usando %_plural%"
2636
 
2637
+ #: ../addons/gateway/event-booking/mycred-eventsmanager-pro.php:134 ..
2638
+ #: addons/gateway/event-booking/mycred-eventsmanager.php:333
2639
  msgid "Ticket Type"
2640
  msgstr "Tipo de Billete"
2641
 
2642
+ #: ../addons/gateway/event-booking/mycred-eventsmanager-pro.php:143 ..
2643
+ #: addons/gateway/event-booking/mycred-eventsmanager.php:342
2644
  msgid "Spaces"
2645
  msgstr "Espacios"
2646
 
2652
  msgid "Reject"
2653
  msgstr "Rechazar"
2654
 
2655
+ #: ../addons/gateway/event-booking/mycred-eventsmanager-pro.php:374 ..
2656
+ #: modules/mycred-module-log.php:500 ../modules/mycred-module-settings.php:488 ..
2657
+ #: modules/mycred-module-settings.php:507
2658
  msgid "Delete"
2659
  msgstr "Borrar"
2660
 
2662
  msgid "Edit/View"
2663
  msgstr "Editar/Ver"
2664
 
2665
+ #: ../addons/gateway/event-booking/mycred-eventsmanager-pro.php:477 ..
2666
+ #: addons/gateway/event-booking/mycred-eventsmanager.php:542
2667
  msgid "Disabled - Users CAN NOT pay for tickets using %plural%."
2668
  msgstr "Deshabilitado - Usuarios NO PUEDEN pagar entradas utilizando %plural%."
2669
 
2670
+ #: ../addons/gateway/event-booking/mycred-eventsmanager-pro.php:478 ..
2671
+ #: addons/gateway/event-booking/mycred-eventsmanager.php:543
2672
  msgid "Single - Users can ONLY pay for tickets using %plural%."
2673
  msgstr "Individuales - Usuarios NO PUEDEN pagar entradas utilizando %plural%."
2674
 
2675
+ #: ../addons/gateway/event-booking/mycred-eventsmanager-pro.php:479 ..
2676
+ #: addons/gateway/event-booking/mycred-eventsmanager.php:544
2677
  msgid "Multi - Users can pay for tickets using other gateways or %plural%."
2678
  msgstr ""
2679
  "Multi-usuarios pueden pagar entradas utilizando otras pasarelas de pago o "
2680
  "%plural%."
2681
 
2682
+ #: ../addons/gateway/event-booking/mycred-eventsmanager-pro.php:483 ..
2683
+ #: addons/gateway/event-booking/mycred-eventsmanager-pro.php:516 ..
2684
+ #: addons/gateway/event-booking/mycred-eventsmanager.php:562 ..
2685
+ #: addons/gateway/event-booking/mycred-eventsmanager.php:595
2686
  msgid "Refunds"
2687
  msgstr "Reembolsos"
2688
 
2695
  "reserva. Utilice cero para no ofrecer reembolso ninguno. No se reembolsa "
2696
  "reservas \"Rechazadas\""
2697
 
2698
+ #: ../addons/gateway/event-booking/mycred-eventsmanager-pro.php:506 ..
2699
+ #: addons/gateway/event-booking/mycred-eventsmanager.php:585
2700
  msgid "Log Templates"
2701
  msgstr "Plantillas de Registro"
2702
 
2703
+ #: ../addons/gateway/event-booking/mycred-eventsmanager-pro.php:509 ..
2704
+ #: addons/gateway/event-booking/mycred-eventsmanager.php:588
2705
  msgid "Purchases"
2706
  msgstr "Compras"
2707
 
2708
+ #: ../addons/gateway/event-booking/mycred-eventsmanager-pro.php:538 ..
2709
+ #: addons/gateway/event-booking/mycred-eventsmanager.php:605
2710
  msgid "Payment Link Label"
2711
  msgstr "La Etiqueta del Enlace de Pago"
2712
 
2713
+ #: ../addons/gateway/event-booking/mycred-eventsmanager-pro.php:541 ..
2714
+ #: addons/gateway/event-booking/mycred-eventsmanager.php:608
2715
  msgid ""
2716
  "The payment link shows / hides the payment form under \"My Bookings\". No HTML "
2717
  "allowed."
2718
  msgstr ""
2719
+ "El enlace de pago muestra / oculta el formulario de pago en \"Mis Reservas\". "
2720
+ "¡No se permite HTML!"
2721
 
2722
+ #: ../addons/gateway/event-booking/mycred-eventsmanager-pro.php:545 ..
2723
+ #: addons/gateway/event-booking/mycred-eventsmanager.php:612
2724
  msgid "Payment Header"
2725
  msgstr "Encabezado de Pago"
2726
 
2727
+ #: ../addons/gateway/event-booking/mycred-eventsmanager-pro.php:548 ..
2728
+ #: addons/gateway/event-booking/mycred-eventsmanager.php:615
2729
  msgid "Shown on top of the payment form. No HTML allowed."
2730
  msgstr "Mostrar en la encima del formulario de pago. No se permite HTML."
2731
 
2732
+ #: ../addons/gateway/event-booking/mycred-eventsmanager-pro.php:555 ..
2733
+ #: addons/gateway/event-booking/mycred-eventsmanager.php:622
2734
  msgid "The button label for payments. No HTML allowed!"
2735
  msgstr "La etiqueta para el botón de pagos. ¡No se permite HTML!"
2736
 
2737
+ #: ../addons/gateway/event-booking/mycred-eventsmanager-pro.php:562 ..
2738
+ #: addons/gateway/event-booking/mycred-eventsmanager.php:629
2739
  msgid "Successful Payments"
2740
  msgstr "Compras Finalizadas con Exito"
2741
 
2742
+ #: ../addons/gateway/event-booking/mycred-eventsmanager-pro.php:565 ..
2743
+ #: addons/gateway/event-booking/mycred-eventsmanager-pro.php:572 ..
2744
+ #: addons/gateway/event-booking/mycred-eventsmanager.php:632 ..
2745
+ #: addons/gateway/event-booking/mycred-eventsmanager.php:639
2746
  msgid "No HTML allowed!"
2747
  msgstr "¡No se permite HTML!"
2748
 
2755
  msgstr "Haga clic para alternar"
2756
 
2757
  #: ../addons/gateway/event-booking/mycred-eventsmanager.php:533
2758
+ #, php-format
2759
  msgid "%s Payments"
2760
  msgstr "Pagos de "
2761
 
2768
  "reserva. Utilice cero para no ofrecer reembolso ninguno. No se reembolsa "
2769
  "reservas \"Rechazadas\""
2770
 
2771
+ #: ../addons/notifications/myCRED-addon-notifications.php:166 ../modules/mycred-
2772
+ #: module-addons.php:201
2773
  msgid "Notifications"
2774
  msgstr "Notificaciones"
2775
 
2781
  msgid "Use the included CSS Styling for notifications."
2782
  msgstr "Utilice el Estilo CSS incluido para notificaciones."
2783
 
2784
+ #: ../addons/notifications/myCRED-addon-notifications.php:175 ../modules/mycred-
2785
+ #: module-buddypress.php:410
2786
  msgid "Template"
2787
  msgstr "Plantilla"
2788
 
2789
  #: ../addons/notifications/myCRED-addon-notifications.php:179
2790
+ #, php-format
2791
  msgid "Use %entry% to show the log entry in the notice and %amount% for the amount."
2792
  msgstr ""
2793
+ "Utiliza %entry% para mostrar la entrada de registro en el aviso y %amount% "
2794
+ "para la cantidad."
2795
 
2796
  #: ../addons/notifications/myCRED-addon-notifications.php:182
2797
  msgid "Transient Lifespan"
2811
 
2812
  #: ../addons/notifications/myCRED-addon-notifications.php:193
2813
  msgid ""
2814
+ "The number of milliseconds a notice should be visible.<br />Use zero to "
2815
+ "require that the user closes the notice manually. 1000 milliseconds = 1 "
2816
+ "second."
2817
  msgstr ""
2818
+ "Los numeros de milisegundos durante que el aviso debe ser visible.<br "
2819
+ "/>Utilice cero para exigir que el usuario ciere el aviso manualmente. 1000 "
2820
+ "milisegundos = 1 segundo."
2821
 
2822
  #: ../addons/ranks/myCRED-addon-ranks.php:231
2823
  msgid "Warning! All ranks will be deleted! This can not be undone!"
2827
  msgid "Are you sure you want to re-assign user ranks?"
2828
  msgstr "Esta seguro que quieres reasignar rangos de los usuarios?"
2829
 
2830
+ #: ../addons/ranks/myCRED-addon-ranks.php:246 ../addons/ranks/myCRED-addon-ranks.
2831
+ #: php:252 ../addons/ranks/myCRED-addon-ranks.php:258 ../addons/ranks/myCRED-
2832
+ #: addon-ranks.php:787 ../addons/ranks/myCRED-addon-ranks.php:983 ..
2833
+ #: modules/mycred-module-addons.php:213
2834
  msgid "Ranks"
2835
  msgstr "Rangos"
2836
 
2837
+ #: ../addons/ranks/myCRED-addon-ranks.php:247 ../addons/ranks/myCRED-addon-ranks.
2838
+ #: php:479 ../addons/ranks/myCRED-addon-ranks.php:498 ../addons/ranks/myCRED-
2839
+ #: addon-ranks.php:593
2840
  msgid "Rank"
2841
  msgstr "Rango"
2842
 
2868
  msgid "No ranks found in Trash"
2869
  msgstr "Ningun rango encontrao el la papelera"
2870
 
2871
+ #: ../addons/ranks/myCRED-addon-ranks.php:344
2872
+ #, php-format
2873
  msgid "Completed - Total of %d users effected"
2874
  msgstr "Completado - Un total %d usuarios afectados"
2875
 
2876
+ #: ../addons/ranks/myCRED-addon-ranks.php:346
2877
  msgid "Log is Empty"
2878
  msgstr "Registro esta Vacío"
2879
 
2880
+ #: ../addons/ranks/myCRED-addon-ranks.php:553 ../addons/ranks/myCRED-addon-ranks.
2881
+ #: php:556
2882
+ #, php-format
2883
  msgid "Rank Updated. View <a href=\"%1$s\">All Ranks</a>."
2884
  msgstr "Rango Actualizado. Ver a Todos los Rangos"
2885
 
2886
+ #: ../addons/ranks/myCRED-addon-ranks.php:558
2887
  msgid "Rank Activated"
2888
  msgstr "Rango Activado"
2889
 
2890
+ #: ../addons/ranks/myCRED-addon-ranks.php:559
2891
  msgid "Rank Saved"
2892
  msgstr "Rango Guardado"
2893
 
2894
+ #: ../addons/ranks/myCRED-addon-ranks.php:560
2895
+ #, php-format
2896
  msgid "Rank Submitted for approval. View <a href=\"%1$s\">All Ranks</a>."
2897
  msgstr "Rango presentado para aprobación. Ver <a href=\"%1$s\">Todos los Rangos</a>."
2898
 
2899
  #. can also be: "Rango fijado para:"
2900
+ #: ../addons/ranks/myCRED-addon-ranks.php:562
2901
+ #, php-format
2902
  msgid "Rank scheduled for: <strong>%1$s</strong>."
2903
  msgstr "Rango programado para: <strong>%1$s</strong>."
2904
 
2905
+ #: ../addons/ranks/myCRED-addon-ranks.php:619 ../addons/ranks/myCRED-addon-ranks.
2906
+ #: php:672
2907
  msgid "Rank Title"
2908
  msgstr "Titulo de Rango"
2909
 
2910
+ #: ../addons/ranks/myCRED-addon-ranks.php:620
2911
  msgid "Logo"
2912
  msgstr "Logotipo"
2913
 
2914
+ #: ../addons/ranks/myCRED-addon-ranks.php:621
2915
  msgid "Requirement"
2916
  msgstr "Requisito"
2917
 
2918
+ #: ../addons/ranks/myCRED-addon-ranks.php:622 ../modules/mycred-module-settings.
2919
+ #: php:451
2920
  msgid "Users"
2921
  msgstr "Usuarios"
2922
 
2923
+ #: ../addons/ranks/myCRED-addon-ranks.php:638
2924
  msgid "No Logo Set"
2925
  msgstr "No hay Logotipo Configurado"
2926
 
2927
+ #: ../addons/ranks/myCRED-addon-ranks.php:647 ../addons/ranks/myCRED-addon-ranks.
2928
+ #: php:652
2929
  msgid "Any Value"
2930
  msgstr "Cualquier Valor"
2931
 
2932
+ #: ../addons/ranks/myCRED-addon-ranks.php:654
2933
  msgid "Maximum %plural%"
2934
  msgstr "Maximo %plural%"
2935
 
2936
+ #: ../addons/ranks/myCRED-addon-ranks.php:685
2937
  msgid "Rank Settings"
2938
  msgstr "Configuración de Rango"
2939
 
2940
+ #: ../addons/ranks/myCRED-addon-ranks.php:707
2941
  msgid "Minimum %plural% to reach this rank"
2942
  msgstr "Minimo %plural% para llegar a este rango"
2943
 
2944
+ #: ../addons/ranks/myCRED-addon-ranks.php:711
2945
  msgid "Maximum %plural% to be included in this rank"
2946
  msgstr "Maximo %plural% para ser incluido en este rango"
2947
 
2948
+ #: ../addons/ranks/myCRED-addon-ranks.php:718
2949
  msgid "All Published Ranks"
2950
  msgstr "Todos los Rangos Publicados"
2951
 
2952
+ #: ../addons/ranks/myCRED-addon-ranks.php:724 ../addons/ranks/myCRED-addon-ranks.
2953
+ #: php:726
2954
  msgid "Not Set"
2955
  msgstr "No Configurado"
2956
 
2957
+ #: ../addons/ranks/myCRED-addon-ranks.php:731
2958
  msgid "No Ranks found"
2959
  msgstr "Ningun rango encontrado"
2960
 
2961
+ #: ../addons/ranks/myCRED-addon-ranks.php:789
2962
  msgid "Rank Features"
2963
  msgstr "Caracteristicas de los Rangos"
2964
 
2965
+ #: ../addons/ranks/myCRED-addon-ranks.php:793
2966
  msgid "%plural% requirement"
2967
  msgstr "%plural% requisito"
2968
 
2969
+ #: ../addons/ranks/myCRED-addon-ranks.php:794
2970
  msgid "Featured Image (Logo)"
2971
  msgstr "Imagen Principal (Logotipo)"
2972
 
2973
+ #: ../addons/ranks/myCRED-addon-ranks.php:795
2974
  msgid "Content"
2975
  msgstr "Contenido"
2976
 
2977
+ #: ../addons/ranks/myCRED-addon-ranks.php:796
2978
  msgid "Excerpt"
2979
  msgstr "Extracto"
2980
 
2981
+ #: ../addons/ranks/myCRED-addon-ranks.php:797
2982
  msgid "Comments"
2983
  msgstr "Comentario"
2984
 
2985
+ #: ../addons/ranks/myCRED-addon-ranks.php:798
2986
  msgid "Page Attributes"
2987
  msgstr "Atributos de Página"
2988
 
2989
+ #: ../addons/ranks/myCRED-addon-ranks.php:799
2990
  msgid "Custom Fields"
2991
  msgstr "Campo Personalizado"
2992
 
2993
+ #: ../addons/ranks/myCRED-addon-ranks.php:802
2994
  msgid "Public"
2995
  msgstr "Público"
2996
 
2997
  #. This is not clear, especially the second sentence (fragment)!
2998
+ #: ../addons/ranks/myCRED-addon-ranks.php:806
2999
  msgid ""
3000
+ "If you want to create a template archive for each rank, you must select to "
3001
+ "have ranks public. Defaults to disabled."
3002
  msgstr ""
3003
  "Si desea crear un archivo de plantilla para cada rango, debe seleccionar que "
3004
  "los rangos sean público. Los valores predeterminados desactivado."
3005
 
3006
+ #: ../addons/ranks/myCRED-addon-ranks.php:809
3007
  msgid "Rank Basis"
3008
  msgstr "Base de Rango"
3009
 
3010
+ #: ../addons/ranks/myCRED-addon-ranks.php:812
3011
  msgid "Users are ranked according to their current balance."
3012
  msgstr "Los usuarios se clasifican según su saldo actual."
3013
 
3014
+ #: ../addons/ranks/myCRED-addon-ranks.php:815
3015
  msgid ""
3016
  "Users are ranked according to the total amount of %_plural% they have "
3017
  "accumulated."
3019
  "Los usuarios se clasifican según la cantidad total de %_plural% que han "
3020
  "acumulado."
3021
 
3022
+ #: ../addons/ranks/myCRED-addon-ranks.php:819 ../addons/ranks/myCRED-addon-ranks.
3023
+ #: php:824
3024
  msgid "Calculate Totals"
3025
  msgstr "Calcular Totales"
3026
 
3027
+ #: ../addons/ranks/myCRED-addon-ranks.php:822
3028
  msgid ""
3029
  "Use this button to calculate or re-calcualte your users totals. If not used, "
3030
  "the users current balance will be used as a starting point."
3031
  msgstr ""
3032
+ "Utilice este botón para calcular y volver a calcular las sumas de tus "
3033
+ "usuarios. Si no se utiliza, los saldos actuales de los usuarios se "
3034
+ "utilizaran como punto de partida."
3035
 
3036
+ #: ../addons/ranks/myCRED-addon-ranks.php:822
3037
  msgid ""
3038
  "Once a users total has been calculated, they will be assigned to their "
3039
  "appropriate roles. For this reason, it is highly recommended that you first "
3040
  "setup your ranks!"
3041
  msgstr ""
3042
+ "Una vez que la suma del usuario haya sido calculado, sus roles "
3043
+ "corespondientes seran asignados. ¡Por esta razón, se recomienda altamente "
3044
+ "que primero configures los rangos!"
3045
 
3046
+ #: ../addons/ranks/myCRED-addon-ranks.php:823
3047
  msgid ""
3048
+ "Depending on your log size and number of users this process may take a while."
3049
+ " Please do not leave, click \"Update Settings\" or re-fresh this page until "
3050
+ "this is completed!"
3051
  msgstr ""
3052
+ "Segun el tamaño de registro y los numeros de usuarios este proceso puede "
3053
+ "llevar un rato. ¡Por favor no abandone esta pagina, haga click sobre "
3054
+ "\"Actualizar Configuraciones\" o refrescar la pagina hasta que se haya "
3055
+ "completado!"
3056
 
3057
+ #: ../addons/ranks/myCRED-addon-ranks.php:828
3058
  msgid "Archive URL"
3059
  msgstr "URL del Archivo"
3060
 
3061
+ #: ../addons/ranks/myCRED-addon-ranks.php:832
3062
  msgid "Ignored if Ranks are not public"
3063
  msgstr "Sera Ingnorado si los Rangos no son Pulicos"
3064
 
3065
  #. not sure if this is order, as in ordering pizza or order as in rank, organization
3066
+ #: ../addons/ranks/myCRED-addon-ranks.php:835
3067
  msgid "Display Order"
3068
  msgstr "Orden de Visualización"
3069
 
3070
+ #: ../addons/ranks/myCRED-addon-ranks.php:842
3071
  msgid "Ascending - Lowest rank to highest"
3072
  msgstr "Ascendente - Rango más bajo a lo más alto"
3073
 
3074
+ #: ../addons/ranks/myCRED-addon-ranks.php:843
3075
  msgid "Descending - Highest rank to lowest"
3076
  msgstr "Descendiente - Rango más alto al más bajo"
3077
 
3078
+ #: ../addons/ranks/myCRED-addon-ranks.php:852
3079
  msgid ""
3080
+ "Select in what order ranks should be displayed in your admin area and/or "
3081
+ "front if ranks are \"Public\""
3082
  msgstr ""
3083
+ "Elige en que orden se debe mostrar los rangos en tu area de administrador "
3084
+ "y/o en el frente si los rangos son \"Público\""
3085
 
3086
+ #: ../addons/ranks/myCRED-addon-ranks.php:862 ../modules/mycred-module-buddypress.
3087
+ #: php:366 ../modules/mycred-module-buddypress.php:373
3088
  msgid "Do not show."
3089
  msgstr "No mostrar."
3090
 
3091
+ #: ../addons/ranks/myCRED-addon-ranks.php:863 ../modules/mycred-module-buddypress.
3092
+ #: php:367
3093
  msgid "Include in Profile Header."
3094
  msgstr "Incluir en Encabezado del Perfil"
3095
 
3096
+ #: ../addons/ranks/myCRED-addon-ranks.php:864 ../modules/mycred-module-buddypress.
3097
+ #: php:368
3098
  msgid "Include under the \"Profile\" tab"
3099
  msgstr "Incluir debajo de la pestaña del \"Perfil\""
3100
 
3101
+ #: ../addons/ranks/myCRED-addon-ranks.php:865 ../modules/mycred-module-buddypress.
3102
+ #: php:369
3103
  msgid "Include under the \"Profile\" tab and Profile Header."
3104
  msgstr "Incluir en la pestanã \"Perfil\" y Encabezado de Perfil"
3105
 
3106
+ #: ../addons/ranks/myCRED-addon-ranks.php:868
3107
  msgid "Rank in BuddyPress"
3108
  msgstr "Rango en BuddyPress"
3109
 
3110
+ #: ../addons/ranks/myCRED-addon-ranks.php:936
3111
  msgid "Script Communication Error"
3112
  msgstr "Error del Script de Comunicación"
3113
 
3114
+ #: ../addons/ranks/myCRED-addon-ranks.php:986
3115
  msgid "Rank Post Type"
3116
  msgstr "Clasificar Post Types"
3117
 
3118
+ #: ../addons/ranks/myCRED-addon-ranks.php:990
3119
  msgid "No. of ranks"
3120
  msgstr "Numero de Rangos"
3121
 
3122
+ #: ../addons/ranks/myCRED-addon-ranks.php:994 ../modules/mycred-module-log.php:
3123
+ #: 368 ../modules/mycred-module-settings.php:440 ../modules/mycred-module-
3124
+ #: settings.php:455
3125
  msgid "Actions"
3126
  msgstr "Acciones"
3127
 
3128
+ #: ../addons/ranks/myCRED-addon-ranks.php:995
3129
  msgid "Remove All Ranks"
3130
  msgstr "Quitar todos los Rangos"
3131
 
3132
+ #: ../addons/ranks/myCRED-addon-ranks.php:995
3133
  msgid "Assign Ranks to Users"
3134
  msgstr "Asignar Rango a los Usuarios"
3135
 
3136
+ #: ../addons/ranks/includes/mycred-rank-functions.php:192
3137
  msgid "mycred_get_users_rank() : Missing required user id"
3138
  msgstr "mycred_get_users_rank() : Falta el requisito id del usuario"
3139
 
3140
+ #: ../addons/ranks/includes/mycred-rank-functions.php:206
3141
  msgid "no rank"
3142
  msgstr "ningun rango"
3143
 
3144
+ #: ../addons/ranks/includes/mycred-rank-shortcodes.php:58 ..
3145
+ #: addons/ranks/includes/mycred-rank-shortcodes.php:134
3146
  msgid "No users found with this rank"
3147
  msgstr "Ningun usuario encontrado con este rango"
3148
 
3149
+ #: ../addons/ranks/includes/mycred-rank-shortcodes.php:63 ../includes/mycred-
3150
+ #: shortcodes.php:352 ../includes/mycred-shortcodes.php:355 ../includes/mycred-
3151
+ #: shortcodes.php:417 ../includes/mycred-shortcodes.php:478 ../includes/mycred-
3152
+ #: shortcodes.php:482 ../includes/mycred-shortcodes.php:486
3153
  msgid "error"
3154
  msgstr "error"
3155
 
3185
  msgid "Pay Content Author."
3186
  msgstr "Pagar al Autor del Contenido"
3187
 
3188
+ #: ../addons/sell-content/myCRED-addon-sell-content.php:339 ../includes/mycred-
3189
+ #: overview.php:141 ../includes/mycred-overview.php:148 ../modules/mycred-module-
3190
+ #: addons.php:224
3191
  msgid "Sell Content"
3192
  msgstr "Vender Contenido"
3193
 
3208
  "Percentage of the price to pay the author. Can not be zero and is ignored if "
3209
  "authors are not paid."
3210
  msgstr ""
3211
+ "Porcentaje del precio que pagar al autor. No puede ser cero y sera ignorado "
3212
+ "si no se les paga a los autores."
3213
 
3214
  #. also, "por defecto" and "predeterminados"
3215
  #: ../addons/sell-content/myCRED-addon-sell-content.php:385
3237
  msgstr "Guardar Plantilla para los no miembros"
3238
 
3239
  #: ../addons/sell-content/myCRED-addon-sell-content.php:415
3240
+ #, php-format
3241
  msgid ""
3242
+ "Do <strong>not</strong> use the %buy_button% in this template as a user must "
3243
+ "be logged in to buy content!"
3244
  msgstr ""
3245
  "<strong>¡No utilice</strong> el %buy_button% en esta plantilla porque el "
3246
  "usuario debe haber inciciado sesión para poder comprar contenidos!"
3249
  msgid "Sale Template for members"
3250
  msgstr "Plantilla de Venta para miembros"
3251
 
3252
+ #: ../addons/sell-content/myCRED-addon-sell-content.php:423 ../addons/sell-
3253
+ #: content/myCRED-addon-sell-content.php:431
3254
+ #, php-format
3255
  msgid "Your template must contain the %buy_button% tag for purchases to work!"
3256
  msgstr ""
3257
+ "¡Tu plantilla debe contener la etiqueta %buy_button% para que se pueda "
3258
+ "realizar compras!"
3259
 
3260
  #: ../addons/sell-content/myCRED-addon-sell-content.php:427
3261
  msgid "Insufficient funds template"
3270
  msgstr "Plantilla de registros para Ventas"
3271
 
3272
  #: ../addons/sell-content/myCRED-addon-sell-content.php:494
3273
+ #, php-format
3274
  msgid "%s Sell This"
3275
  msgstr "%s Vende Esto"
3276
 
3277
  #: ../addons/sell-content/myCRED-addon-sell-content.php:548
3278
+ #, php-format
3279
  msgid "%s Sell Content needs to be setup before you can use this feature."
3280
  msgstr ""
3281
+ "%s Vender Contenidos necesita haberse configurado antes de poder utilizar "
3282
+ "esta característica técnica."
3283
 
3284
  #: ../addons/sell-content/myCRED-addon-sell-content.php:551
3285
  msgid "Setup add-on"
3301
  msgid "Thank you for your purchase!"
3302
  msgstr "¡Gracias por su compra!"
3303
 
3304
+ #: ../addons/sell-content/myCRED-addon-sell-content.php:1008 ../addons/sell-
3305
+ #: content/myCRED-addon-sell-content.php:1094
3306
  msgid "The following content is set for sale:"
3307
  msgstr "El siguiente contenido esta listo para la venta:"
3308
 
3329
  #: ../addons/transfer/myCRED-addon-transfer.php:141
3330
  msgid "Security token could not be verified. Please contact your site administrator!"
3331
  msgstr ""
3332
+ "No se pudo verificar el 'token' (código) de seguridad. ¡Por favor, póngase "
3333
+ "en contacto con el administrador del sitio!"
3334
 
3335
  #: ../addons/transfer/myCRED-addon-transfer.php:142
3336
  msgid "Communications error. Please try again later."
3350
 
3351
  #: ../addons/transfer/myCRED-addon-transfer.php:146
3352
  msgid ""
3353
+ "This myCRED Add-on has not yet been setup! No transfers are allowed until "
3354
+ "this has been done!"
3355
  msgstr ""
3356
  "¡Esta Extensión de myCRED todavía no ha sido configurado! No se permite "
3357
  "transferencias hasta que se haga esto."
3384
  msgid "User Email (user_email)"
3385
  msgstr "Correo Electrónico del Usuario (user_email)"
3386
 
3387
+ #: ../addons/transfer/myCRED-addon-transfer.php:191 ../addons/transfer/myCRED-
3388
+ #: addon-transfer.php:631
3389
  msgid "Transfer %plural%"
3390
  msgstr "Transferir %plural%"
3391
 
3392
+ #: ../addons/transfer/myCRED-addon-transfer.php:195 ../includes/mycred-widgets.
3393
+ #: php:593 ../modules/mycred-module-settings.php:469
3394
  msgid "Point Types"
3395
  msgstr "Tipo de Puntos"
3396
 
3489
 
3490
  #: ../addons/transfer/myCRED-addon-transfer.php:296
3491
  msgid ""
3492
+ "Text to show when a users balance is to low for transfers. Leave empty to "
3493
+ "hide. No HTML elements allowed!"
3494
  msgstr ""
3495
  "Mostrar este texto cuando el saldo de un usuario es demasiado bajo para "
3496
  "efectuar transferencias. Deje el campo vacío para ocultarlo. ¡No se permite "
3505
  "Text to show when a user has reached their transfer limit (if used). Leave "
3506
  "empty to hide. No HTML elements allowed!"
3507
  msgstr ""
3508
+ "Mostrar este texto cuando un usuario haya llegado al límite de su "
3509
+ "transferencia (si se utiliza). Deje el campo vacío para ocultarlo. ¡No se "
3510
+ "permite ningun elemento de HTML!"
3511
 
3512
  #: ../addons/transfer/myCRED-addon-transfer.php:560
3513
  msgid "Allow transfers between users."
3514
  msgstr "Permitir transferencias entre usuarios."
3515
 
3516
  #: ../addons/transfer/myCRED-addon-transfer.php:562
3517
+ #, php-format
3518
  msgid "(%s) Transfer"
3519
  msgstr "(%s) Transfererir"
3520
 
3540
 
3541
  #. is this recipients plural or recipient's with an apostrophe missing?
3542
  #: ../addons/transfer/myCRED-addon-transfer.php:780
3543
+ #, php-format
3544
  msgid "recipients %s"
3545
  msgstr "destinatarios %s"
3546
 
3553
  msgstr "Cantidad:"
3554
 
3555
  #: ../includes/mycred-about.php:75
3556
+ #, php-format
3557
  msgid "Welcome to %s %s"
3558
  msgstr "Bienvenido a %s %s"
3559
 
3562
  "Re-save your myCRED Settings & all myCRED widget settings that you are "
3563
  "currently using."
3564
  msgstr ""
3565
+ "Volver a guardar tus Configuraciones de myCRED y todas las configuraciones "
3566
+ "del widget de myCRED que actualmente estas usuando."
3567
 
3568
  #: ../includes/mycred-admin.php:67
3569
  msgid "Re-save your myCRED Hook Settings."
3597
  msgid "Excluded"
3598
  msgstr "Excluido"
3599
 
3600
+ #: ../includes/mycred-admin.php:279 ../modules/mycred-module-log.php:250 ..
3601
+ #: modules/mycred-module-log.php:251
3602
  msgid "History"
3603
  msgstr "Historial"
3604
 
3607
  msgstr "Modificar"
3608
 
3609
  #: ../includes/mycred-admin.php:335 ../includes/mycred-admin.php:394
3610
+ #, php-format
3611
  msgid "%singular% balance"
3612
  msgstr "%singular% saldo"
3613
 
3724
  msgstr "erroneo marca de tiempo de unix (a):"
3725
 
3726
  #: ../includes/mycred-importer.php:11
3727
+ #, php-format
3728
  msgid "%s Log Import"
3729
  msgstr "Registro de Importe %s"
3730
 
3733
  msgstr "Importa las entradas de registro atraves de un fichero CSV."
3734
 
3735
  #: ../includes/mycred-importer.php:43
3736
+ #, php-format
3737
  msgid "%s Balance Import"
3738
  msgstr "%s balance de Importar"
3739
 
3742
  msgstr "Saldos Importar."
3743
 
3744
  #: ../includes/mycred-importer.php:75
3745
+ #, php-format
3746
  msgid "%s CubePoints Import"
3747
  msgstr "Importar CubePoints %s"
3748
 
3749
+ #: ../includes/mycred-importer.php:76 ../includes/importers/mycred-cubepoints.php:
3750
+ #: 344
3751
  msgid "Import CubePoints log entries and / or balances."
3752
  msgstr "Importar las entradas de registro de CubePoints y/o saldos."
3753
 
3769
 
3770
  #: ../includes/mycred-install.php:54
3771
  msgid ""
3772
+ "Sorry but your WordPress installation does not reach the minimum "
3773
+ "requirements for running myCRED. The following errors were given:"
3774
  msgstr ""
3775
  "Lo sentimos, pero tu instalación de WordPress no alcanza a los requisitos "
3776
  "mínimos de mycred. Se produce los siguientes errores:"
3788
  msgstr "Instalación de myCRED"
3789
 
3790
  #: ../includes/mycred-install.php:385
3791
+ #, php-format
3792
  msgid "%s Setup"
3793
  msgstr "Configurar %s"
3794
 
3798
 
3799
  #: ../includes/mycred-install.php:411
3800
  msgid ""
3801
+ "Click \"Begin Setup\" to install myCRED. You will be able to select your "
3802
+ "points format, layout and security settings."
3803
  msgstr ""
3804
+ "Haga clic en \"Empezar la Instalación\" para instalar myCRED. Podras ajustar "
3805
+ "el formato de puntos, disposiciones y configuraciones de seguridad."
3806
 
3807
  #: ../includes/mycred-install.php:412
3808
  msgid "Begin Setup"
3879
 
3880
  #: ../includes/mycred-install.php:556 ../modules/mycred-module-settings.php:390
3881
  msgid ""
3882
+ "As an added security, you can set the maximum amount a user can gain or "
3883
+ "loose in a single instance. If used, make sure this is the maximum amount a "
3884
+ "user would be able to transfer, buy, or spend in your store. Use zero to "
3885
+ "disable."
3886
  msgstr ""
3887
+ "Como mayor seguridad, puedes configurar la cantidad máxima que un usuario "
3888
+ "puede ganar o perder en una sola instancia. Si se utiliza esto, asegurate "
3889
+ "que es tambien la máxima cantidad que el usuario puede transferir, comprar, "
3890
+ "o gastar en tu tienda. Ponga zero para desactivar."
3891
 
3892
  #: ../includes/mycred-install.php:563 ../modules/mycred-module-settings.php:397
3893
  msgid "Exclude those who can \"Edit Settings\"."
3915
 
3916
  #: ../includes/mycred-install.php:600
3917
  msgid "Almost done! Click the button below to finish this setup."
3918
+ msgstr ""
3919
+ "¡Casi terminado! Haga clic al botón de abajo para finalizar esta "
3920
+ "configuración."
3921
 
3922
  #: ../includes/mycred-install.php:601
3923
  msgid "Install & Run"
3924
  msgstr "Instalar e ejecutar"
3925
 
3926
  #: ../includes/mycred-log.php:389
3927
+ #, php-format
3928
  msgid "Showing %d %s"
3929
  msgstr "Mostrando %d %s"
3930
 
3946
  msgstr "Página corriente"
3947
 
3948
  #: ../includes/mycred-log.php:424
3949
+ #, php-format
3950
  msgctxt "paging"
3951
  msgid "%1$s of %2$s"
3952
  msgstr "%1$s de %2$s"
3985
 
3986
  #: ../includes/mycred-log.php:609
3987
  msgid ""
3988
+ "Log entries are exported to a CSV file and depending on the number of "
3989
+ "entries selected, the process may take a few seconds."
3990
  msgstr ""
3991
+ "Se exporta las entradas de registro a un fichero CSV y dependiendo del "
3992
+ "número de entradas seleccionadas, el proceso puede tardar unos segundos."
3993
 
3994
  #: ../includes/mycred-log.php:613
3995
  msgid "No export options available."
4013
  msgid "search log entries"
4014
  msgstr "Búsqueda de las entradas de registro"
4015
 
4016
+ #: ../includes/mycred-log.php:842 ../modules/mycred-module-buddypress.php:232 ..
4017
+ #: modules/mycred-module-buddypress.php:245
4018
  msgid "All"
4019
  msgstr "Todo"
4020
 
4039
  msgstr "Configuración de la Red"
4040
 
4041
  #: ../includes/mycred-network.php:169
4042
+ #, php-format
4043
  msgid "%s Network"
4044
  msgstr "Red de %s"
4045
 
4046
  #: ../includes/mycred-network.php:175
4047
+ #, php-format
4048
  msgid "Note! %s has not yet been setup."
4049
  msgstr "¡Aviso! %s no ha sido configurado."
4050
 
4053
  msgstr "Configuraciones de la Red Actualizadas"
4054
 
4055
  #: ../includes/mycred-network.php:181
4056
+ #, php-format
4057
  msgid "Configure network settings for %s."
4058
  msgstr "Configure los parámetros de red para %s."
4059
 
4062
  msgstr "Plantilla Principal"
4063
 
4064
  #: ../includes/mycred-network.php:199
4065
+ #, php-format
4066
  msgid ""
4067
+ "If enabled, %s will use your main site's settings for all other sites in "
4068
+ "your network."
4069
  msgstr ""
4070
+ "Si activado, %s utilizara la configuración de tu sitio principal para todas "
4071
+ "los sitios en tu red."
4072
 
4073
  #: ../includes/mycred-network.php:202
4074
  msgid "Central Logging"
4075
  msgstr "Central de Registro"
4076
 
4077
  #: ../includes/mycred-network.php:213
4078
+ #, php-format
4079
  msgid "If enabled, %s will log all site actions in your main site's log."
4080
  msgstr ""
4081
+ "Si está activado, %s registrará todas las acciones en el registro de tu "
4082
+ "sitio principal."
4083
 
4084
  #: ../includes/mycred-network.php:216
4085
  msgid "Site Block"
4086
  msgstr "Bloqueo de Sitio"
4087
 
4088
  #: ../includes/mycred-network.php:220
4089
+ #, php-format
4090
  msgid "Comma separated list of blog ids where %s is to be disabled."
4091
  msgstr "Lista separada por comas de blog IDs donde %s se va a inhabilitar."
4092
 
4095
  msgstr "Guardar las Configuraciones de la Eed"
4096
 
4097
  #: ../includes/mycred-overview.php:25
4098
+ #, php-format
4099
  msgid "%s Overview"
4100
  msgstr "Descripción de %s"
4101
 
4112
  msgid "Deducted"
4113
  msgstr "Deducido"
4114
 
4115
+ #: ../includes/mycred-overview.php:120 ../includes/mycred-overview.php:127 ..
4116
+ #: modules/mycred-module-addons.php:235
4117
  msgid "Transfers"
4118
  msgstr "Transferencias"
4119
 
4130
  #: ../includes/mycred-remote.php:526
4131
  msgid "Click Update Settings to load the Remote API settings."
4132
  msgstr ""
4133
+ "Haga clic sobre Actualizar Configuraciones para cargar la configuración de "
4134
+ "API remoto."
4135
 
4136
  #: ../includes/mycred-remote.php:528
4137
  msgid "Allow Remote Access"
4172
  "Keep this key safe! Those you share this key with will be able to remotely "
4173
  "deduct / add / transfer %plural%!"
4174
  msgstr ""
4175
+ "¡Mantenga la seguridad de esta clave! Aquellos con quien compartes esta "
4176
+ "clave podran restar / añadir / transferir %plural% de forma remota."
4177
 
4178
  #: ../includes/mycred-remote.php:568
4179
  msgid "Incoming URI"
4180
  msgstr "URI Entrante"
4181
 
4182
  #: ../includes/mycred-remote.php:572
4183
+ msgid ""
4184
+ "The incoming call address. Remote calls made to any other URL will be "
4185
+ "ignored."
4186
  msgstr ""
4187
  "La dirección de la llamada entrante. Se ignorará las llamadas remotas a "
4188
  "cualquier otro URL."
4232
  msgstr "Este código corto (shortcode) precisa un ID del video."
4233
 
4234
  #: ../includes/mycred-widgets.php:21
4235
+ #, php-format
4236
  msgid "Show the current users %s balance"
4237
  msgstr "Enseñar el saldo de %s del usuario actual"
4238
 
4239
  #: ../includes/mycred-widgets.php:23
4240
+ #, php-format
4241
  msgid "(%s) My Balance"
4242
  msgstr "(%s) Mi Saldo"
4243
 
4291
  msgstr "Mensaje"
4292
 
4293
  #: ../includes/mycred-widgets.php:323
4294
+ #, php-format
4295
  msgid "Show a list of users sorted by their %s balance"
4296
  msgstr "Mustra una lista de usuarios ordenados por sus %s saldos"
4297
 
4298
  #: ../includes/mycred-widgets.php:325
4299
+ #, php-format
4300
  msgid "(%s) Leaderboard"
4301
  msgstr "(%s) Tabla de Clasificación"
4302
 
4332
 
4333
  #: ../includes/mycred-widgets.php:446
4334
  msgid ""
4335
+ "If the current user is not in this leaderboard, you can select to append "
4336
+ "them at the end with their current position."
4337
  msgstr ""
4338
  "Si el usuario actual no esta en esta tabla de clasificación, puedes elegir a "
4339
  "agregarles al final con su posición actual."
4343
  msgstr "Mostrar el saldo actual del usuario para cada tipo de puntos."
4344
 
4345
  #: ../includes/mycred-widgets.php:497
4346
+ #, php-format
4347
  msgid "(%s) Wallet"
4348
  msgstr "(%s) Cartera"
4349
 
4355
  msgid "Row Layout"
4356
  msgstr "Disposición de Filas"
4357
 
4358
+ #: ../includes/importers/mycred-balances.php:81 ../includes/importers/mycred-
4359
+ #: balances.php:159 ../includes/importers/mycred-balances.php:198 ..
4360
+ #: includes/importers/mycred-balances.php:213 ../includes/importers/mycred-log-
4361
+ #: entries.php:81 ../includes/importers/mycred-log-entries.php:126 ..
4362
+ #: includes/importers/mycred-log-entries.php:165 ../includes/importers/mycred-
4363
+ #: log-entries.php:180
4364
  msgid "Sorry, there has been an error."
4365
  msgstr "Lo sentimos, se ha producido un error."
4366
 
4367
+ #: ../includes/importers/mycred-balances.php:82 ../includes/importers/mycred-log-
4368
+ #: entries.php:82
4369
  msgid "The file does not exist, please try again."
4370
  msgstr "El fichero no existe, por favor inténtelo de nuevo más tarde."
4371
 
4372
+ #: ../includes/importers/mycred-balances.php:160 ../includes/importers/mycred-log-
4373
+ #: entries.php:127
4374
  msgid "The CSV is invalid."
4375
  msgstr "El CSV no es valido."
4376
 
4377
  #: ../includes/importers/mycred-balances.php:171
4378
+ #, php-format
4379
  msgid ""
4380
  "Import complete - A total of <strong>%d</strong> balances were successfully "
4381
  "imported. <strong>%d</strong> was skipped."
4382
  msgstr ""
4383
+ "Importación Finalizado - En total, <strong>%d</strong> saldos fueron "
4384
+ "importado con éxito. Se saltaron <strong>%d</strong>."
4385
 
4386
+ #: ../includes/importers/mycred-balances.php:181 ../includes/importers/mycred-
4387
+ #: cubepoints.php:293 ../includes/importers/mycred-log-entries.php:148
4388
  msgid "View Log"
4389
  msgstr "Ver Registro"
4390
 
4391
+ #: ../includes/importers/mycred-balances.php:181 ../includes/importers/mycred-
4392
+ #: cubepoints.php:293 ../includes/importers/mycred-log-entries.php:148
4393
  msgid "Import More"
4394
  msgstr "Importar Más"
4395
 
4401
  msgid "Import balances from a CSV file."
4402
  msgstr "Importa saldos de registro desde un fichero CSV."
4403
 
4404
+ #: ../includes/importers/mycred-balances.php:252 ../includes/importers/mycred-log-
4405
+ #: entries.php:219
4406
  msgid ""
4407
  "Before you can upload your import file, you will need to fix the following "
4408
  "error:"
4409
  msgstr ""
4410
+ "Antes que puedas subir tu fichero de importe, tendras que corregir los "
4411
+ "errores siguientes:"
4412
 
4413
+ #: ../includes/importers/mycred-balances.php:261 ../includes/importers/mycred-log-
4414
+ #: entries.php:228
4415
  msgid "Choose a file from your computer:"
4416
  msgstr "Elige un fichero en tu ordenador:"
4417
 
4418
+ #: ../includes/importers/mycred-balances.php:267 ../includes/importers/mycred-log-
4419
+ #: entries.php:234
4420
+ #, php-format
4421
  msgid "Maximum size: %s"
4422
  msgstr "Tamaño Máximo: %s"
4423
 
4424
+ #: ../includes/importers/mycred-balances.php:272 ../includes/importers/mycred-log-
4425
+ #: entries.php:239
4426
  msgid "OR enter path to file:"
4427
  msgstr "O rellena la ruta al fichero:"
4428
 
4429
+ #: ../includes/importers/mycred-balances.php:279 ../includes/importers/mycred-log-
4430
+ #: entries.php:246
4431
  msgid "Delimiter"
4432
  msgstr "Delimitador"
4433
 
4443
  msgid "Adjust current balances according to the amount in this CSV file"
4444
  msgstr "Ajustar los balances actuales de acuerdo al monto en el archivo CSV"
4445
 
4446
+ #: ../includes/importers/mycred-balances.php:292 ../includes/importers/mycred-log-
4447
+ #: entries.php:252
4448
  msgid "Upload file and import"
4449
  msgstr "Subir fichero e importar"
4450
 
4456
  msgid "No log entries were imported!"
4457
  msgstr "¡No se importo ninguna entrada de registro!"
4458
 
4459
+ #: ../includes/importers/mycred-cubepoints.php:282 ../includes/importers/mycred-
4460
+ #: log-entries.php:138
4461
+ #, php-format
4462
  msgid ""
4463
  "Import complete - A total of <strong>%d</strong> entries were successfully "
4464
  "imported. <strong>%d</strong> was skipped."
4495
  msgstr "Importar"
4496
 
4497
  #: ../includes/importers/mycred-cubepoints.php:360
4498
+ msgid ""
4499
+ "Warning! Importing CubePoints balances will replace your users myCRED "
4500
+ "balance!"
4501
  msgstr ""
4502
+ "¡Advertencia! ¡La importación de los saldos de CubePoints reemplazará el "
4503
+ "saldo de myCRED para tus usuarios!"
4504
 
4505
  #: ../includes/importers/mycred-cubepoints.php:378
4506
  msgid "Import Log"
4521
  #: ../modules/mycred-module-addons.php:158
4522
  msgid ""
4523
  "The <strong>buy</strong>CRED Add-on allows your users to buy points using "
4524
+ "PayPal, Skrill (Moneybookers) or NETbilling. <strong>buy</strong>CRED can "
4525
+ "also let your users buy points for other members."
4526
  msgstr ""
4527
  "La Extensión <strong>compra</strong>CRED permite que tus usuarios compren "
4528
  "puntos utilizando PayPal, Skrill (Moneybookers) o NETbilling. "
4534
  "The coupons add-on allows you to create coupons that users can use to add "
4535
  "points to their accounts."
4536
  msgstr ""
4537
+ "Los cupones de add-on le permite crear cupones que los usuarios pueden "
4538
+ "utilizar para agregar puntos a sus cuentas."
4539
 
4540
  #: ../modules/mycred-module-addons.php:180
4541
  msgid "Create email notices for any type of myCRED instance."
4542
+ msgstr ""
4543
+ "Crea avisos por correo electrónico para cualquier tipo de instancias de "
4544
+ "myCRED."
4545
 
4546
  #: ../modules/mycred-module-addons.php:191
4547
  msgid ""
4550
  "Bookings: Event Espresso and Events Manager (free & pro)."
4551
  msgstr ""
4552
  "Permite que tus usuarios paguen utilizando el saldo de sus puntos "
4553
+ "<strong>my</strong>CRED. Carritos soportados: WooCommerce, MarketPress and "
4554
+ "WP E-Commerce. Reservas de Eventos soportados: Event Espresso and Events "
4555
+ "Manager (gratis y pro)."
4556
 
4557
  #: ../modules/mycred-module-addons.php:202
4558
  msgid "Create pop-up notifications for when users gain or loose points."
4560
 
4561
  #: ../modules/mycred-module-addons.php:214
4562
  msgid ""
4563
+ "Create ranks for users reaching a certain number of %_plural% with the "
4564
+ "option to add logos for each rank."
4565
  msgstr ""
4566
+ "Crear rangos para los usuarios que alcanzan a un cierto número de %_plural% "
4567
+ "con la opción de añadir logotipos para cada rango."
4568
 
4569
  #: ../modules/mycred-module-addons.php:225
4570
  msgid ""
4573
  "parts of your content allowing you to offer \"teasers\"."
4574
  msgstr ""
4575
  "Esta extensión permite que vendas posts, páginas o cualquier tipo de "
4576
+ "publicación en tu sitio web. Puedes venter contenidos enteros o utilizando "
4577
+ "el código corto (shortcode), vender partes de tu contenido permitiendote "
4578
+ "ofrecer \"avances\"."
4579
 
4580
  #: ../modules/mycred-module-addons.php:236
4581
  msgid ""
4582
  "Allow your users to send or \"donate\" points to other members by either using "
4583
  "the mycred_transfer shortcode or the myCRED Transfer widget."
4584
  msgstr ""
4585
+ "Permite que los usuarios envien o \"donen\" puntos a otros miembros utilizando "
4586
+ "el código corto (shortcode) de mycred_transfer o el widget de Transferencia "
4587
+ "myCRED."
4588
 
4589
  #: ../modules/mycred-module-addons.php:272
4590
+ #, php-format
4591
  msgid "%s Add-ons"
4592
  msgstr "%s Extensiones (addons)"
4593
 
4606
  "técnicas."
4607
 
4608
  #: ../modules/mycred-module-addons.php:306
4609
+ #, php-format
4610
  msgid "You can find more add-ons in our %s."
4611
  msgstr "Puedes encontrar más extensiones (add-ons) en nuestro %s."
4612
 
4647
  msgstr "Mi Historial"
4648
 
4649
  #: ../modules/mycred-module-buddypress.php:31
4650
+ #, php-format
4651
  msgid "%s's History"
4652
  msgstr "La Historial de %s"
4653
 
4668
  msgstr "BuddyPress"
4669
 
4670
  #: ../modules/mycred-module-buddypress.php:389
4671
+ #, php-format
4672
  msgid "%singular% Balance"
4673
  msgstr "%singular% Saldo"
4674
 
4675
  #: ../modules/mycred-module-buddypress.php:405
4676
+ #, php-format
4677
  msgid "Members and visitors can other members %_singular% balance."
4678
  msgstr "Miembros y visitantes pueden ver el saldo de %_singular% de otros miembros."
4679
 
4696
  msgstr "Título mostrado a mi"
4697
 
4698
  #: ../modules/mycred-module-buddypress.php:445
4699
+ #, php-format
4700
  msgid "Title shown to others. Use %s to show the first name."
4701
  msgstr "Título mostrado a otros. Utilice %s para mostrar el nombre de pila."
4702
 
4720
  msgid "Number of history entries to show"
4721
  msgstr "Numero de entradas de historial a mostrar"
4722
 
4723
+ #: ../modules/mycred-module-hooks.php:25 ../modules/mycred-module-hooks.php:26 ..
4724
+ #: modules/mycred-module-hooks.php:27
4725
  msgid "Hooks"
4726
  msgstr "Ganchos"
4727
 
4728
  #: ../modules/mycred-module-hooks.php:87
4729
+ #, php-format
4730
  msgid "%plural% for registrations"
4731
  msgstr "%plural% por inscripciones"
4732
 
4733
  #: ../modules/mycred-module-hooks.php:88
4734
+ #, php-format
4735
  msgid "Award %_plural% for users joining your website."
4736
  msgstr "Concede %_plural% a usuarios para unirse a tu sitio de web."
4737
 
4738
  #: ../modules/mycred-module-hooks.php:94
4739
+ #, php-format
4740
  msgid "%plural% for logins"
4741
  msgstr "%plural% para ingresos"
4742
 
4743
  #: ../modules/mycred-module-hooks.php:95
4744
+ #, php-format
4745
  msgid ""
4746
  "Award %_plural% for logging in to your website. You can also set an optional "
4747
  "limit."
4748
  msgstr ""
4749
+ "Conceder %_plural% por iniciar sesión en tu sitio web. También puedes "
4750
+ "ajustar un limíte opcional."
4751
 
4752
  #: ../modules/mycred-module-hooks.php:101
4753
+ #, php-format
4754
  msgid "%plural% for publishing content"
4755
  msgstr "%plural% por publicar contenido"
4756
 
4757
  #: ../modules/mycred-module-hooks.php:102
4758
+ #, php-format
4759
  msgid ""
4760
  "Award %_plural% for publishing content on your website. If your custom post "
4761
  "type is not shown bellow, make sure it is set to \"Public\"."
4762
  msgstr "Concede %_plural% por publicar contenido en tu sitio web. "
4763
 
4764
  #: ../modules/mycred-module-hooks.php:108
4765
+ #, php-format
4766
  msgid "%plural% for comments"
4767
  msgstr "%plural% por comentarios"
4768
 
4769
  #: ../modules/mycred-module-hooks.php:108
4770
+ #, php-format
4771
  msgid "%plural% for Disqus comments"
4772
  msgstr "%plural% por comentarios Disqus"
4773
 
4774
  #: ../modules/mycred-module-hooks.php:109
4775
+ #, php-format
4776
  msgid "Award %_plural% for making comments."
4777
  msgstr "Concede %_plural% por hacer comentarios."
4778
 
4779
  #: ../modules/mycred-module-hooks.php:115
4780
+ #, php-format
4781
  msgid "%plural% for clicking on links"
4782
  msgstr "%plural% por hacer clic sobre enlaces"
4783
 
4786
  "Award %_plural% to users who clicks on links generated by the [mycred_link] "
4787
  "shortcode."
4788
  msgstr ""
4789
+ "Concede %_plural% a los usuarios que han hecho clic sobre enlaces generados "
4790
+ "por el [mycred_link] código corto (shortcode)."
4791
 
4792
  #: ../modules/mycred-module-hooks.php:122
4793
+ #, php-format
4794
  msgid "%plural% for viewing Videos"
4795
  msgstr "%plural% por ver videos"
4796
 
4797
  #: ../modules/mycred-module-hooks.php:123
4798
  msgid ""
4799
+ "Award %_plural% to users who watches videos embedded using the "
4800
+ "[mycred_video] shortcode."
4801
  msgstr ""
4802
+ "Concede %_plural% a los usuarios que han visto videos incrustados utilizando "
4803
+ "el [mycred_link] código corto (shortcode)."
4804
 
4805
  #: ../modules/mycred-module-hooks.php:129
4806
+ #, php-format
4807
  msgid "%plural% for referrals"
4808
  msgstr "%plural% por referencias (o recomendaciones)"
4809
 
4810
  #: ../modules/mycred-module-hooks.php:130
4811
  msgid "Award %_plural% to users who refer either visitors and/or new member signups."
4812
  msgstr ""
4813
+ "Concede %_plural% a los usuarios que o refieren visitantes y/o nuevos "
4814
+ "miembros inscritos."
4815
 
4816
  #: ../modules/mycred-module-hooks.php:163
4817
+ #, php-format
4818
  msgid "%s Hooks"
4819
  msgstr "Ganchos de %s"
4820
 
4823
  "Hooks are instances where %_plural% are awarded or deducted from a user, "
4824
  "depending on their actions around your website."
4825
  msgstr ""
4826
+ "Ganchas son instancias donde %_plural% son concedidos (o restados) al "
4827
+ "usuario, dependiendo de sus acciones en tu sitio web."
4828
+
4829
+ #: ../modules/mycred-module-hooks.php:326 ../modules/mycred-module-hooks.php:638 .
4830
+ #: ./modules/mycred-module-hooks.php:651 ../modules/mycred-module-hooks.php:687 ..
4831
+ #: modules/mycred-module-hooks.php:1067 ../modules/mycred-module-hooks.php:1084 .
4832
+ #: ./modules/mycred-module-hooks.php:1101 ../modules/mycred-module-hooks.php:2212
4833
+ #: ../modules/mycred-module-hooks.php:2241 ../plugins/mycred-hook-badgeOS.php:281
4834
+ #: ../plugins/mycred-hook-bbPress.php:471 ../plugins/mycred-hook-bbPress.php:484 .
4835
+ #: ./plugins/mycred-hook-bbPress.php:497 ../plugins/mycred-hook-bbPress.php:515 ..
4836
+ #: plugins/mycred-hook-bbPress.php:528 ../plugins/mycred-hook-bbPress.php:547 ..
4837
+ #: plugins/mycred-hook-bbPress.php:575 ../plugins/mycred-hook-buddypress-gallery.
4838
+ #: php:104 ../plugins/mycred-hook-buddypress-links.php:254 ../plugins/mycred-hook-
4839
+ #: buddypress-links.php:267 ../plugins/mycred-hook-buddypress-links.php:280 ..
4840
+ #: plugins/mycred-hook-buddypress-links.php:291 ../plugins/mycred-hook-
4841
+ #: buddypress-links.php:304 ../plugins/mycred-hook-buddypress-links.php:317 ..
4842
+ #: plugins/mycred-hook-buddypress-media.php:170 ../plugins/mycred-hook-
4843
+ #: buddypress-media.php:180 ../plugins/mycred-hook-buddypress-media.php:190 ..
4844
+ #: plugins/mycred-hook-buddypress-media.php:203 ../plugins/mycred-hook-
4845
+ #: buddypress-media.php:213 ../plugins/mycred-hook-buddypress-media.php:223 ..
4846
+ #: plugins/mycred-hook-buddypress.php:381 ../plugins/mycred-hook-buddypress.php:
4847
+ #: 394 ../plugins/mycred-hook-buddypress.php:407 ../plugins/mycred-hook-
4848
+ #: buddypress.php:420 ../plugins/mycred-hook-buddypress.php:433 ../plugins/mycred-
4849
+ #: hook-buddypress.php:446 ../plugins/mycred-hook-buddypress.php:459 ..
4850
+ #: plugins/mycred-hook-buddypress.php:472 ../plugins/mycred-hook-buddypress.php:
4851
+ #: 926 ../plugins/mycred-hook-buddypress.php:939 ../plugins/mycred-hook-
4852
+ #: buddypress.php:952 ../plugins/mycred-hook-buddypress.php:965 ../plugins/mycred-
4853
+ #: hook-buddypress.php:978 ../plugins/mycred-hook-buddypress.php:991 ..
4854
+ #: plugins/mycred-hook-buddypress.php:1005 ../plugins/mycred-hook-buddypress.php:
4855
+ #: 1018 ../plugins/mycred-hook-buddypress.php:1031 ../plugins/mycred-hook-
4856
+ #: buddypress.php:1044 ../plugins/mycred-hook-contact-form7.php:137 ..
4857
+ #: plugins/mycred-hook-gravityforms.php:113 ../plugins/mycred-hook-invite-anyone.
4858
+ #: php:219 ../plugins/mycred-hook-invite-anyone.php:240 ../plugins/mycred-hook-
4859
+ #: jetpack.php:506 ../plugins/mycred-hook-jetpack.php:519 ../plugins/mycred-hook-
4860
+ #: simplepress.php:330 ../plugins/mycred-hook-simplepress.php:343 ..
4861
+ #: plugins/mycred-hook-simplepress.php:356 ../plugins/mycred-hook-simplepress.
4862
+ #: php:380
4863
  msgid "Log template"
4864
  msgstr "Plantilla de Registro"
4865
 
4866
+ #: ../modules/mycred-module-hooks.php:527 ../modules/mycred-module-hooks.php:2220
4867
+ #: ../modules/mycred-module-hooks.php:2249 ../plugins/mycred-hook-invite-anyone.
4868
+ #: php:224 ../plugins/mycred-hook-invite-anyone.php:245
4869
  msgid "Limit"
4870
  msgstr "Límite"
4871
 
4872
  #: ../modules/mycred-module-hooks.php:632
4873
+ #, php-format
4874
  msgid "%plural% for Posts"
4875
  msgstr "%plural% por Posts"
4876
 
4877
  #: ../modules/mycred-module-hooks.php:645
4878
+ #, php-format
4879
  msgid "%plural% for Pages"
4880
  msgstr "%plural% por Paginas"
4881
 
4882
  #: ../modules/mycred-module-hooks.php:681
4883
+ #, php-format
4884
  msgid "%plural% for %s"
4885
  msgstr "%plural% por %s"
4886
 
4889
  "%plural% are only awarded when your website has been synced with the Disqus "
4890
  "server!"
4891
  msgstr ""
4892
+ "¡%_plural% seran concedidos unicamente cuando tu sitio web se ha "
4893
+ "sincronizado con el servidor de Disqus!"
4894
 
4895
  #: ../modules/mycred-module-hooks.php:1055
4896
  msgid "Approved Comment"
4897
  msgstr "Comentario Aprobado"
4898
 
4899
+ #: ../modules/mycred-module-hooks.php:1058 ../modules/mycred-module-hooks.php:
4900
+ #: 1075 ../modules/mycred-module-hooks.php:1092
4901
  msgid "Comment Author"
4902
  msgstr "Autor del Comentario"
4903
 
4904
+ #: ../modules/mycred-module-hooks.php:1062 ../modules/mycred-module-hooks.php:
4905
+ #: 1079 ../modules/mycred-module-hooks.php:1096
4906
  msgid "Content Author"
4907
  msgstr "Autor del Contenido"
4908
 
4938
  "número ilimitado."
4939
 
4940
  #: ../modules/mycred-module-hooks.php:1122
4941
+ msgid ""
4942
+ "%plural% is to be awarded even when comment authors reply to their own "
4943
+ "comment."
4944
  msgstr ""
4945
  "%_plural% seran concedidos incluso cuando los autores responden a su proprio "
4946
  "comentario."
4955
 
4956
  #: ../modules/mycred-module-hooks.php:1386
4957
  msgid ""
4958
+ "The default amount to award for clicking on links. You can override this in "
4959
+ "the shortcode."
4960
  msgstr ""
4961
  "La cantidad predefinida que sera cedida por hacer clic sobre enlaces. Puedes "
4962
  "anular esto con el 'shortcode' (código corto)."
4963
 
4964
  #: ../modules/mycred-module-hooks.php:1393
4965
+ #, php-format
4966
  msgid "Custom tags: %url%, %title% or %id%."
4967
  msgstr "Etiquetas personalizadas: %url%, %title% o/u %id%."
4968
 
4973
  #: ../modules/mycred-module-hooks.php:1404
4974
  msgid ""
4975
  "If no ID is set when using the mycred_link shortcode, the shortcode will "
4976
+ "generate one automatically based on the value set under href. If you are "
4977
+ "using this feature for \"sharing\" content, it is recommended that you limit "
4978
+ "by ID."
4979
  msgstr ""
4980
  "Si no se ha fijado ningun ID cuando estas utilizando el codigo corto "
4981
  "(shortcode) de mycred_link, se generará uno automaticamente basado sobre el "
4995
  msgstr "Lógica de Concesión"
4996
 
4997
  #: ../modules/mycred-module-hooks.php:1738
4998
+ #, php-format
4999
  msgid "Select when %_plural% should be awarded or deducted."
5000
  msgstr "Elige cuando %_plural% deberian ser concedidos o restados."
5001
 
5029
 
5030
  #: ../modules/mycred-module-hooks.php:1758
5031
  msgid ""
5032
+ "Do not set this value to zero! A lot of thing can happen while a user "
5033
+ "watches a movie and sometimes a few seconds can drop of the counter due to "
5034
+ "buffering or play back errors."
5035
  msgstr ""
5036
  "¡No fijes este valor a cero! Muchas cosas pueden suceder mientras que un "
5037
  "usuario ve una película y a veces la contador puede disminuir por pocos "
5094
  #: ../modules/mycred-module-hooks.php:2290
5095
  msgid "The number of times each IP address grants %_plural%. Use zero for unlimited."
5096
  msgstr ""
5097
+ "El numero de veces que cada IP concede %_plural%. Utilice cero para un "
5098
+ "número ilimitado"
5099
 
5100
  #: ../modules/mycred-module-hooks.php:2294 ../modules/mycred-module-hooks.php:2327
5101
  msgid "BuddyPress Profile"
5107
 
5108
  #: ../modules/mycred-module-hooks.php:2298
5109
  msgid ""
5110
+ "Option to inser the referral link in users profiles. Links will only be "
5111
+ "visible to users viewing their own profiles or administrators."
5112
  msgstr ""
5113
+ "Opción para insertar el enlace de referencia en los perfiles de los usuarios."
5114
+ " Estos enlaces serán visibles a los administradores o a los usuarios cuando "
5115
+ "ven a sus propios perfiles."
5116
 
5117
  #: ../modules/mycred-module-hooks.php:2304
5118
  msgid "Leave empty to hide."
5135
  "You can move around the referral link on your users profile by changing the "
5136
  "position. Increase to move up, decrease to move down."
5137
  msgstr ""
5138
+ "Puedes moverte por el enlace de referencia en su perfil los usuarios "
5139
+ "cambiando la posición. Aumentar a moverse hacia arriba, disminuye al bajar."
5140
 
5141
  #: ../modules/mycred-module-hooks.php:2323
5142
  msgid "You can not move the referral link above the users \"Base\" profile details!"
5143
  msgstr ""
5144
+ "¡No puedes trasladar el enlace de referencia encima de los detalles \"Base\" "
5145
+ "en el perfil del usuario!"
5146
 
5147
  #: ../modules/mycred-module-hooks.php:2329
5148
  msgid "Requires BuddyPress Extended Profiles to be enabled."
5152
  msgid "Available Shortcodes"
5153
  msgstr "Códigos cortos Disponibles"
5154
 
5155
+ #: ../modules/mycred-module-log.php:185 ../modules/mycred-module-log.php:206 ..
5156
+ #: modules/mycred-module-settings.php:61 ../modules/mycred-module-settings.php:102
5157
  msgid "Access denied for this action"
5158
  msgstr "Acceso denegado para esta acción"
5159
 
5173
  msgid "Entries"
5174
  msgstr "Entradas"
5175
 
5176
+ #: ../modules/mycred-module-log.php:301 ../modules/mycred-module-log.php:381 ..
5177
+ #: modules/mycred-module-log.php:625 ../modules/mycred-module-settings.php:570
5178
  msgid "Export"
5179
  msgstr "Exportar"
5180
 
5183
  msgstr "Buscar entre resultados por"
5184
 
5185
  #: ../modules/mycred-module-log.php:375
5186
+ #, php-format
5187
  msgid "%s Log"
5188
  msgstr "Registro de %s"
5189
 
5212
  msgstr "Actualiza la entrada de registro"
5213
 
5214
  #: ../modules/mycred-module-log.php:619
5215
+ #, php-format
5216
  msgid "My %s History"
5217
  msgstr "Mi Historial de %s"
5218
 
5219
+ #: ../modules/mycred-module-settings.php:65 ../modules/mycred-module-settings.php:
5220
+ #: 106 ../modules/mycred-module-settings.php:148
5221
  msgid "Missing point type"
5222
  msgstr "Falta el tipo de punto"
5223
 
5230
  msgstr "No se encontro usuarios para exportar"
5231
 
5232
  #: ../modules/mycred-module-settings.php:330
5233
+ #, php-format
5234
  msgid "%s Settings"
5235
  msgstr "Configuración de %s"
5236
 
5237
  #: ../modules/mycred-module-settings.php:333
5238
+ #, php-format
5239
  msgid "Adjust your core or add-on settings. Follow us on: %s %s"
5240
  msgstr ""
5241
+ "Ajusta las configuraciones basicos o las de las extensiones (addons). "
5242
+ "Síguenos en: %s %s"
5243
 
5244
  #: ../modules/mycred-module-settings.php:338
5245
  msgid "Core Settings"
5250
  msgstr "Nombre"
5251
 
5252
  #: ../modules/mycred-module-settings.php:345
5253
+ #, php-format
5254
  msgid "Accessible though the %singular% template tag."
5255
  msgstr "Acesible a través de la etiqueta de la plantilla del %singular%."
5256
 
5279
  msgstr "Editar las Configuraciones"
5280
 
5281
  #. or "Verificar la capacidad de"
5282
+ #: ../modules/mycred-module-settings.php:380 ../modules/mycred-module-settings.
5283
+ #: php:385
5284
  msgid "Capability to check for."
5285
  msgstr "La capacidad que se va a verificar."
5286
 
5326
  msgid "Default"
5327
  msgstr "Predefinido"
5328
 
5329
+ #: ../modules/mycred-module-settings.php:480 ../modules/mycred-module-settings.
5330
+ #: php:499 ../modules/mycred-module-settings.php:521
5331
  msgid "Meta Key"
5332
  msgstr "Clave Meta"
5333
 
5361
 
5362
  #: ../modules/mycred-module-settings.php:562
5363
  msgid ""
5364
+ "Use ID if you intend to use this export as a backup of your current site "
5365
+ "while Email is recommended if you want to export to a different site."
5366
  msgstr ""
5367
+ "Usa ID si deseas tener esta exportación como un respaldo de tu sitio, Usa "
5368
+ "Email si deseas exportar la data a otro sitio"
5369
 
5370
  #: ../modules/mycred-module-settings.php:565
5371
  msgid "Import Log Entry"
5372
  msgstr "Importa la entrada de registro"
5373
 
5374
  #: ../modules/mycred-module-settings.php:567
5375
+ #, php-format
5376
  msgid ""
5377
+ "Optional log entry to use if you intend to import this file in a different "
5378
+ "%s installation."
5379
  msgstr ""
5380
  "Usa la entrada de registro opcional si tiene la intención de importar este "
5381
  "fichero en otra instalación %s."
5393
  "Estos ajustes pueden ser anulados para el tipo de logro individual."
5394
 
5395
  #: ../plugins/mycred-hook-badgeOS.php:98
5396
+ #, php-format
5397
+ msgid ""
5398
+ "Please setup your <a href=\"%s\">default settings</a> before using this "
5399
+ "feature."
5400
  msgstr ""
5401
+ "Por favor configura tus <a href=\"%s\">configuraciones predefinidos</a> antes "
5402
+ "de usar este función."
5403
 
5404
  #: ../plugins/mycred-hook-badgeOS.php:109 ../plugins/mycred-hook-badgeOS.php:111
5405
  msgid "%plural% to Award"
5415
  msgstr "Plantilla de Registro Descontado"
5416
 
5417
  #: ../plugins/mycred-hook-badgeOS.php:261
5418
+ #, php-format
5419
  msgid "Default %s for %s"
5420
  msgstr "Predeterminar %s por %s"
5421
 
5432
  msgstr "bbPress"
5433
 
5434
  #: ../plugins/mycred-hook-bbPress.php:19
5435
+ #, php-format
5436
  msgid "Awards %_plural% for bbPress actions."
5437
  msgstr "Concede %_plural% por acciones en bbPress."
5438
 
5439
  #: ../plugins/mycred-hook-bbPress.php:464
5440
+ #, php-format
5441
  msgid "%plural% for New Forum"
5442
  msgstr "%plural% por nuevo foro"
5443
 
5444
  #: ../plugins/mycred-hook-bbPress.php:477
5445
+ #, php-format
5446
  msgid "%plural% for Forum Deletion"
5447
  msgstr "%plural% por Eliminar Foro"
5448
 
5449
+ #: ../plugins/mycred-hook-bbPress.php:490 ../plugins/mycred-hook-simplepress.php:
5450
+ #: 323
5451
+ #, php-format
5452
  msgid "%plural% for New Topic"
5453
  msgstr "%plural% por Nuevo Tema"
5454
 
5455
  #: ../plugins/mycred-hook-bbPress.php:504
5456
+ #, php-format
5457
  msgid "Forum authors can receive %_plural% for creating new topics."
5458
  msgstr "Autores "
5459
 
5460
+ #: ../plugins/mycred-hook-bbPress.php:508 ../plugins/mycred-hook-bbPress.php:568 .
5461
+ #: ./plugins/mycred-hook-simplepress.php:336
5462
+ #, php-format
5463
  msgid "%plural% for Topic Deletion"
5464
  msgstr "%plural% por Borrar Tema"
5465
 
5466
  #: ../plugins/mycred-hook-bbPress.php:521
5467
+ #, php-format
5468
  msgid "%plural% for Favorited Topic"
5469
  msgstr "%plural% por Añadir Tema a tus \"Favoritos\""
5470
 
5471
+ #: ../plugins/mycred-hook-bbPress.php:534 ../plugins/mycred-hook-bbPress.php:558 .
5472
+ #: ./plugins/mycred-hook-buddypress.php:375 ../plugins/mycred-hook-simplepress.
5473
+ #: php:367
5474
  msgid "Daily Limit"
5475
  msgstr "Limite Diario"
5476
 
5477
+ #: ../plugins/mycred-hook-bbPress.php:536 ../plugins/mycred-hook-bbPress.php:560 .
5478
+ #: ./plugins/mycred-hook-simplepress.php:369
5479
  msgid "Use zero for unlimited"
5480
  msgstr "Ponga cero para ilimitado"
5481
 
5482
  #: ../plugins/mycred-hook-bbPress.php:540
5483
+ #, php-format
5484
  msgid "%plural% for New Reply"
5485
  msgstr "%plural% por Nueva Respuesta"
5486
 
5487
  #: ../plugins/mycred-hook-bbPress.php:554
5488
+ #, php-format
5489
  msgid "Topic authors can receive %_plural% for replying to their own Topic"
5490
  msgstr "Autor de la tema puede recibir %_plural% por responder a su propia Tema"
5491
 
5492
  #: ../plugins/mycred-hook-bbPress.php:564
5493
+ #, php-format
5494
  msgid "Show users %_plural% balance in replies"
5495
  msgstr "Mostrar usuarios el saldo de %_plural% en las respuestas"
5496
 
5499
  msgstr "BuddyPress: Acciones sobre Galerías"
5500
 
5501
  #: ../plugins/mycred-hook-buddypress-gallery.php:20
5502
+ #, php-format
5503
  msgid ""
5504
  "Awards %_plural% for creating a new gallery either using BP Album+ or BP "
5505
  "Gallery."
5508
  "Gallery."
5509
 
5510
  #: ../plugins/mycred-hook-buddypress-gallery.php:97
5511
+ #, php-format
5512
  msgid "%plural% for New Gallery"
5513
  msgstr "%plural% por Nueva Galería"
5514
 
5517
  msgstr "BuddyPress: Enlaces"
5518
 
5519
  #: ../plugins/mycred-hook-buddypress-links.php:20
5520
+ #, php-format
5521
  msgid "Awards %_plural% for link related actions."
5522
  msgstr "Concede %_plural% por acciones relacionados a enlaces."
5523
 
5524
  #: ../plugins/mycred-hook-buddypress-links.php:247
5525
+ #, php-format
5526
  msgid "%plural% for New Links"
5527
  msgstr "%plural% por Nuevas Enlaces"
5528
 
5529
  #: ../plugins/mycred-hook-buddypress-links.php:260
5530
+ #, php-format
5531
  msgid "%plural% for Vote on Link"
5532
  msgstr "%plural% por Votar sobre Enlaces"
5533
 
5544
  msgstr "Votar en Contra "
5545
 
5546
  #: ../plugins/mycred-hook-buddypress-links.php:297
5547
+ #, php-format
5548
  msgid "%plural% for Updating Links"
5549
  msgstr "%plural% por Actualizar Enlaces"
5550
 
5551
  #: ../plugins/mycred-hook-buddypress-links.php:310
5552
+ #, php-format
5553
  msgid "%plural% for Deleting Links"
5554
  msgstr "%plural% por Borrar Enlaces"
5555
 
5558
  msgstr "Galerías rtMedia (rtMedia Galleries)"
5559
 
5560
  #: ../plugins/mycred-hook-buddypress-media.php:19
5561
+ #, php-format
5562
  msgid "Award / Deduct %_plural% for users creating albums or uploading new photos."
5563
  msgstr "Concede / Resta %_plural% a usuarios por crear álbumes o subir nuevos fotos."
5564
 
5599
  msgstr "BuddyPress: Miembros"
5600
 
5601
  #: ../plugins/mycred-hook-buddypress.php:21
5602
+ #, php-format
5603
  msgid "Awards %_plural% for profile related actions."
5604
  msgstr "Concede %_plural% por acciones relacionados al perfil."
5605
 
5608
  msgstr "BuddyPress: Grupos"
5609
 
5610
  #: ../plugins/mycred-hook-buddypress.php:29
5611
+ #, php-format
5612
  msgid ""
5613
  "Awards %_plural% for group related actions. Use minus to deduct %_plural% or "
5614
  "zero to disable a specific hook."
5617
  "sustraer %_plural% o cero para desabilitar un gancho especifico."
5618
 
5619
  #: ../plugins/mycred-hook-buddypress.php:369
5620
+ #, php-format
5621
  msgid "%plural% for Profile Updates"
5622
  msgstr "%plural% por Actualizar Perfil"
5623
 
5626
  msgstr "Limite Diario. Ponga cero para ilimitado."
5627
 
5628
  #: ../plugins/mycred-hook-buddypress.php:387
5629
+ #, php-format
5630
  msgid "%plural% for New Avatar"
5631
  msgstr "%plural% por Nuevo Avatar"
5632
 
5633
  #: ../plugins/mycred-hook-buddypress.php:400
5634
+ #, php-format
5635
  msgid "%plural% for New Friendships"
5636
  msgstr "%plural% por Nueva Amistad"
5637
 
5638
  #: ../plugins/mycred-hook-buddypress.php:413
5639
+ #, php-format
5640
  msgid "%plural% for Leaving Friendship"
5641
  msgstr "%plural% por Dejar Amistad"
5642
 
5643
  #: ../plugins/mycred-hook-buddypress.php:426
5644
+ #, php-format
5645
  msgid "%plural% for New Comment"
5646
  msgstr "%plural% por Nuevo Comentario"
5647
 
5648
  #: ../plugins/mycred-hook-buddypress.php:439
5649
+ #, php-format
5650
  msgid "%plural% for Deleting Comment"
5651
  msgstr "%plural% por Borrar Comentario"
5652
 
5653
  #: ../plugins/mycred-hook-buddypress.php:452
5654
+ #, php-format
5655
  msgid "%plural% for New Messages"
5656
  msgstr "%plural% por Nuevo Mensaje"
5657
 
5658
  #: ../plugins/mycred-hook-buddypress.php:465
5659
+ #, php-format
5660
  msgid "%plural% for Sending Gift"
5661
  msgstr "%plural% por Enviar Regalo"
5662
 
5663
  #: ../plugins/mycred-hook-buddypress.php:912
5664
+ #, php-format
5665
  msgid "%plural% for Creating Groups"
5666
  msgstr "%plural% por Creat Cupones"
5667
 
5682
  msgstr "Ponga cero para %_plural% cuando se crea un grupo."
5683
 
5684
  #: ../plugins/mycred-hook-buddypress.php:932
5685
+ #, php-format
5686
  msgid "%plural% for Deleting Groups"
5687
  msgstr "%plural% por Borrar Grupos"
5688
 
5689
  #: ../plugins/mycred-hook-buddypress.php:945
5690
+ #, php-format
5691
  msgid "%plural% for New Forum Topic"
5692
  msgstr "%plural% por Nuevo Tema de Foro"
5693
 
5694
  #: ../plugins/mycred-hook-buddypress.php:958
5695
+ #, php-format
5696
  msgid "%plural% for Editing Forum Topic"
5697
  msgstr "%plural% por Editar Tema de Foro"
5698
 
5699
  #: ../plugins/mycred-hook-buddypress.php:971
5700
+ #, php-format
5701
  msgid "%plural% for New Forum Post"
5702
  msgstr "%plural% por Nueva Publicación en Foro"
5703
 
5704
  #: ../plugins/mycred-hook-buddypress.php:984
5705
+ #, php-format
5706
  msgid "%plural% for Editing Forum Post"
5707
  msgstr "%plural% por Editar Publicación en Foro"
5708
 
5709
  #: ../plugins/mycred-hook-buddypress.php:997
5710
+ #, php-format
5711
  msgid "%plural% for Joining Groups"
5712
  msgstr "%plural% por Unirse a Grupos"
5713
 
5720
  "\"Unirse a Grupo\" sera desactivada."
5721
 
5722
  #: ../plugins/mycred-hook-buddypress.php:1011
5723
+ #, php-format
5724
  msgid "%plural% for Leaving Groups"
5725
  msgstr "%plural% por Dejar Grupos"
5726
 
5727
  #: ../plugins/mycred-hook-buddypress.php:1024
5728
+ #, php-format
5729
  msgid "%plural% for New Group Avatar"
5730
  msgstr "%plural% por Nuevo Avatar de Grupo"
5731
 
5732
  #: ../plugins/mycred-hook-buddypress.php:1037
5733
+ #, php-format
5734
  msgid "%plural% for New Group Comment"
5735
  msgstr "%plural% por Nuevo Comentario Grupo"
5736
 
5739
  msgstr "Presentación Formulario de Contact Form 7"
5740
 
5741
  #: ../plugins/mycred-hook-contact-form7.php:19
5742
+ #, php-format
5743
  msgid "Awards %_plural% for successful form submissions (by logged in users)."
5744
  msgstr ""
5745
  "Concede %_plural% por el exitoso envío del formulario (por usuarios que han "
5746
  "iniciado sesión)"
5747
 
5748
+ #: ../plugins/mycred-hook-contact-form7.php:110 ../plugins/mycred-hook-
5749
+ #: gravityforms.php:86
5750
  msgid "No forms found."
5751
  msgstr "No se ha encontrado ningun formulario."
5752
 
5755
  msgstr "Gestionamiento de Eventos"
5756
 
5757
  #: ../plugins/mycred-hook-events-manager-light.php:19
5758
+ #, php-format
5759
  msgid "Awards %_plural% for users attending events."
5760
  msgstr "Concede %_plural% para usuarios que asistieron actividades o eventos."
5761
 
5772
  msgstr "GD Star Rating"
5773
 
5774
  #: ../plugins/mycred-hook-gd-star-rating.php:19
5775
+ #, php-format
5776
  msgid "Awards %_plural% for users rate items using the GD Star Rating plugin."
5777
  msgstr ""
5778
+ "Concede %_plural% a usuarios que evaluan artículos a través de GD Star "
5779
+ "Rating plugin."
5780
 
5781
  #: ../plugins/mycred-hook-gd-star-rating.php:103
5782
  msgid "Rating"
5793
  msgstr "Entregas de Gravityform"
5794
 
5795
  #: ../plugins/mycred-hook-gravityforms.php:19
5796
+ #, php-format
5797
  msgid "Awards %_plural% for successful form submissions."
5798
  msgstr "Concede %_plural% por el exitoso envío del formularios."
5799
 
5803
  msgstr "Invite Anyone Plugin"
5804
 
5805
  #: ../plugins/mycred-hook-invite-anyone.php:19
5806
+ #, php-format
5807
  msgid ""
5808
  "Awards %_plural% for sending invitations and/or %_plural% if the invite is "
5809
  "accepted."
5811
  "Concede %_plural% por mandar invitaciones y/o %_plural% si se acepta la "
5812
  "invitación."
5813
 
5814
+ #: ../plugins/mycred-hook-invite-anyone.php:212
5815
+ #, php-format
5816
  msgid "%plural% for Sending An Invite"
5817
  msgstr "%plural% por Enviar una Invitación"
5818
 
5819
+ #: ../plugins/mycred-hook-invite-anyone.php:228
5820
  msgid "Maximum number of invites that grants %_plural%. Use zero for unlimited."
5821
  msgstr ""
5822
  "El maximo numero de invitaciones que conceden %_plural%. Ponga cero para "
5823
  "ilimitado."
5824
 
5825
+ #: ../plugins/mycred-hook-invite-anyone.php:232
5826
+ #, php-format
5827
  msgid "%plural% for Accepting An Invite"
5828
  msgstr "%plural% por Aceptar una Invitación"
5829
 
5830
+ #: ../plugins/mycred-hook-invite-anyone.php:236
5831
+ #, php-format
5832
  msgid "%plural% for each invited user that accepts an invitation."
5833
  msgstr "%plural% por cada usuario invitado que acepta la invitación."
5834
 
5835
+ #: ../plugins/mycred-hook-invite-anyone.php:249
5836
  msgid ""
5837
  "Maximum number of accepted invitations that grants %_plural%. Use zero for "
5838
  "unlimited."
5839
  msgstr ""
5840
+ "El maximo numero de invitaciones acceptados que conceden %_plural%. Ponga "
5841
+ "cero para ilimitado."
5842
 
5843
  #: ../plugins/mycred-hook-jetpack.php:18
5844
  msgid "Jetpack Subscriptions"
5845
  msgstr "Suscripciónes a Jetpack"
5846
 
5847
  #: ../plugins/mycred-hook-jetpack.php:19
5848
+ #, php-format
5849
+ msgid ""
5850
+ "Awards %_plural% for users signing up for site or comment updates using "
5851
+ "Jetpack."
5852
  msgstr ""
5853
+ "Concede %_plural% a usuarios por incribirse a las actualizaciones del sitio "
5854
+ "web o a los comentarios atraves de Jetpack."
5855
 
5856
  #: ../plugins/mycred-hook-jetpack.php:499
5857
  msgid "Site Subscriptions"
5866
  msgstr "Simple:Press"
5867
 
5868
  #: ../plugins/mycred-hook-simplepress.php:19
5869
+ #, php-format
5870
  msgid "Awards %_plural% for Simple:Press actions."
5871
  msgstr "Concede %_plural% por acciones en Simple:Press."
5872
 
5873
  #: ../plugins/mycred-hook-simplepress.php:349
5874
+ #, php-format
5875
  msgid "%plural% for New Topic Post"
5876
  msgstr "%plural% por Nueva Publicacion "
5877
 
5878
  #: ../plugins/mycred-hook-simplepress.php:363
5879
+ #, php-format
5880
  msgid "Topic authors can receive %_plural% for posting on their own Topic"
5881
  msgstr "Autor de la tema puede recibir %_plural% por publicar su propia Tema"
5882
 
5883
  #: ../plugins/mycred-hook-simplepress.php:373
5884
+ #, php-format
5885
  msgid "%plural% for Topic Post Deletion"
5886
  msgstr "%plural% por Borrar la Tema del Post"
5887
 
5890
  msgstr "WP Favorite Posts"
5891
 
5892
  #: ../plugins/mycred-hook-wp-favorite-posts.php:19
5893
+ #, php-format
5894
  msgid "Awards %_plural% for users adding posts to their favorites."
5895
  msgstr "Concede %_plural% a usuarios por añadir entradas a sus favoritos."
5896
 
5907
  msgstr "WP-Polls"
5908
 
5909
  #: ../plugins/mycred-hook-wp-polls.php:19
5910
+ #, php-format
5911
  msgid "Awards %_plural% for users voting in polls."
5912
  msgstr "Concede %_plural% a usuarios que han votado en encuestas."
lang/mycred-fa_IR.mo CHANGED
Binary file
lang/mycred-fa_IR.po CHANGED
@@ -2,129 +2,137 @@ msgid ""
2
  msgstr ""
3
  "Project-Id-Version: myCRED\n"
4
  "Report-Msgid-Bugs-To: http://mycred.me\n"
5
- "POT-Creation-Date: 2013-12-18 10:46+0100\n"
6
- "PO-Revision-Date: Wed May 28 2014 12:05:22 GMT+0200 (CEST)\n"
7
- "Last-Translator: Gabriel <gabrieldk@merovingi.com>\n"
8
  "Language-Team: LANGUAGE <support@mycred.me>\n"
9
  "Language: Persian (Iran)\n"
10
- "Plural-Forms: nplurals=1; plural=n!=1\n"
11
  "MIME-Version: 1.0\n"
12
  "Content-Type: text/plain; charset=UTF-8\n"
13
  "Content-Transfer-Encoding: 8bit\n"
14
  "X-Poedit-SourceCharset: UTF-8\n"
15
  "X-Generator: Loco - https://localise.biz/\n"
16
  "X-Poedit-Basepath: .\n"
17
- "X-Poedit-KeywordsList: _:1;gettext:1;dgettext:2;ngettext:1,2;dngettext:2,3;__:1;"
18
- "_e:1;_c:1;_n:1,2;_n_noop:1,2;_nc:1,2;__ngettext:1,2;__ngettext_noop:1,2;_x:1,2c;"
19
- "_ex:1,2c;_nx:1,2,4c;_nx_noop:1,2,3c;_n_js:1,2;_nx_js:1,2,3c;esc_attr__:1;"
20
- "esc_html__:1;esc_attr_e:1;esc_html_e:1;esc_attr_x:1,2c;esc_html_x:1,2c;"
21
- "comments_number_link:2,3;t:1;st:1;trans:1;transChoice:1,2\n"
22
  "X-Poedit-SearchPath-0: /Users/gabriel/Repositories/mycred/tags/1.3.3.1\n"
23
  "X-Poedit-SearchPath-1: .\n"
24
  "X-Loco-Target-Locale: fa_IR"
25
 
26
- #: ../mycred.php:398
27
  msgid "Balance"
28
  msgstr ""
29
 
30
- #: ../mycred.php:423
31
  msgid "%label% History"
32
  msgstr ""
33
 
34
- #: ../mycred.php:476
35
  msgid "No balances available."
36
  msgstr ""
37
 
38
- #: ../mycred.php:522
 
39
  msgid "About %s"
40
  msgstr "درباره %s"
41
 
42
- #: ../mycred.php:531
43
  msgid "Awesome People"
44
  msgstr "\"اعتبار من\""
45
 
46
- #: ../mycred.php:616 ../mycred.php:640 ../addons/ranks/myCRED-addon-ranks.php:230 ../addons/ranks/myCRED-addon-ranks.php:897 ../addons/sell-content/myCRED-addon-sell-content.php:309 ../addons/transfer/myCRED-addon-transfer.php:132 ../includes/mycred-shortcodes.php:535
 
 
 
47
  msgid "Processing..."
48
  msgstr "در حال پردازش ..."
49
 
50
- #: ../mycred.php:617
51
  msgid ""
52
- "Warning! All entries in your log will be permanently removed! This can not be "
53
- "undone!"
54
  msgstr ""
55
 
56
- #: ../mycred.php:618
57
  msgid ""
58
  "All log entries belonging to deleted users will be permanently deleted! This "
59
  "can not be undone!"
60
  msgstr ""
61
 
62
- #: ../mycred.php:619
63
  msgid "Warning! All user balances will be set to zero! This can not be undone!"
64
  msgstr ""
65
  "اخطار ! تمام میزان امتیازات کاربران شما روی صفر تنظیم خواهند شد ! این عمل "
66
  "غیرقابل بازگشت می باشد !"
67
 
68
- #: ../mycred.php:620
69
  msgid "Done!"
70
  msgstr "انجام شد !"
71
 
72
- #: ../mycred.php:621 ../mycred.php:639 ../mycred.php:657
73
  msgid "Close"
74
  msgstr "بستن"
75
 
76
- #: ../mycred.php:622
77
  msgid "Export users %plural%"
78
  msgstr "خروجی گرفتن از %plural% کاربران"
79
 
80
- #: ../mycred.php:638
81
  msgid "Edit Users Balance"
82
  msgstr ""
83
 
84
- #: ../mycred.php:656
85
  msgid "Edit Log Entry"
86
  msgstr ""
87
 
88
- #: ../mycred.php:658
89
  msgid "Updating..."
90
  msgstr ""
91
 
92
- #: ../mycred.php:660
93
  msgid "Are you sure you want to delete this log entry? This can not be undone!"
94
  msgstr ""
95
 
96
- #: ../mycred.php:661
97
  msgid "Log entry updated"
98
  msgstr ""
99
 
100
- #: ../mycred.php:713 ../mycred.php:734 ../addons/email-notices/myCRED-addon-email-notices.php:595 ../addons/gateway/event-booking/mycred-eventsmanager-pro.php:458 ../addons/gateway/event-booking/mycred-eventsmanager.php:537
 
 
101
  msgid "Setup"
102
  msgstr "نصب"
103
 
104
- #: ../mycred.php:715 ../addons/gateway/carts/mycred-marketpress.php:360 ../includes/mycred-network.php:186 ../modules/mycred-module-settings.php:20 ../modules/mycred-module-settings.php:21 ../modules/mycred-module-settings.php:22
 
 
105
  msgid "Settings"
106
  msgstr "تنظیمات"
107
 
108
- #: ../mycred.php:738 ../modules/mycred-module-addons.php:360
109
  msgid "About"
110
  msgstr "درباره"
111
 
112
- #: ../mycred.php:739
113
  msgid "Tutorials"
114
  msgstr "آموزش ها"
115
 
116
- #: ../mycred.php:740
117
  msgid "Codex"
118
  msgstr "مجموعه قوانین و دست نوشت ها"
119
 
120
- #: ../mycred.php:741
121
  msgid "Store"
122
  msgstr "فروشگاه"
123
 
124
- #: ../mycred.php:755
125
  msgid ""
126
- "Make sure to backup your database and files before updating, in case anything "
127
- "goes wrong!"
128
  msgstr ""
129
 
130
  #: ../abstracts/mycred-abstract-hook.php:70
@@ -135,7 +143,8 @@ msgstr "تابع myCRED_Hook::run() باید در کلاس زیرین ، تنظ
135
  msgid "This Hook has no settings"
136
  msgstr "این پنل تنظیمات ، چیزی برای تنظیم ندارد"
137
 
138
- #: ../abstracts/mycred-abstract-hook.php:157 ../modules/mycred-module-hooks.php:1192
 
139
  msgid "No limit"
140
  msgstr "بدون محدودیت"
141
 
@@ -155,7 +164,13 @@ msgstr "یک بار در هر 7 روز"
155
  msgid "Once per day (reset at midnight)"
156
  msgstr "روزی یک بار ( نیمه شب ریست می شود )"
157
 
158
- #: ../abstracts/mycred-abstract-hook.php:168 ../addons/banking/abstracts/mycred-abstract-service.php:342 ../addons/buy-creds/myCRED-addon-buy-creds.php:390 ../addons/buy-creds/myCRED-addon-buy-creds.php:411 ../addons/buy-creds/abstracts/mycred-abstract-payment-gateway.php:805 ../addons/buy-creds/abstracts/mycred-abstract-payment-gateway.php:828 ../addons/buy-creds/gateways/zombaio.php:375 ../addons/email-notices/myCRED-addon-email-notices.php:179 ../addons/email-notices/myCRED-addon-email-notices.php:745
 
 
 
 
 
 
159
  msgid "Select"
160
  msgstr "انتخاب"
161
 
@@ -163,7 +178,8 @@ msgstr "انتخاب"
163
  msgid "myCRED_Module() Error. A Module ID is required!"
164
  msgstr "خطای myCRED_Module() . شناسه طرح لازم است !"
165
 
166
- #: ../abstracts/mycred-abstract-module.php:343 ../abstracts/mycred-abstract-module.php:351
 
167
  msgid "Surprise"
168
  msgstr "غافلگیری"
169
 
@@ -175,11 +191,14 @@ msgstr "برای بستن کلیک کنید ."
175
  msgid "click to open"
176
  msgstr "برای باز شدن کلیک کنید ."
177
 
178
- #: ../abstracts/mycred-abstract-module.php:472 ../addons/banking/myCRED-addon-banking.php:163 ../addons/buy-creds/myCRED-addon-buy-creds.php:488
 
179
  msgid "Settings Updated"
180
  msgstr "تنظیمات به روز شد"
181
 
182
- #: ../addons/banking/myCRED-addon-banking.php:42 ../addons/banking/myCRED-addon-banking.php:43 ../addons/banking/myCRED-addon-banking.php:44 ../modules/mycred-module-addons.php:146
 
 
183
  msgid "Banking"
184
  msgstr "بانکداری"
185
 
@@ -188,37 +207,46 @@ msgid "Compound Interest"
188
  msgstr "محاسبه ی سود ( بهره )"
189
 
190
  #: ../addons/banking/myCRED-addon-banking.php:104
 
191
  msgid ""
192
  "Apply an interest rate on your users %_plural% balances. Interest rate is "
193
  "annual and is compounded daily as long as this service is enabled. Positive "
194
- "interest rate leads to users gaining %_plural% while a negative interest rate "
195
- "will to users loosing %_plural%."
196
  msgstr ""
197
- "بر روی میزان %_plural% کاربران خود ، نرخ سودی تعیین کنید . این نرخ سود سالیانه "
198
- "بوده و به صورت روزشمار از زمانی که این افزونه فعال باشد محاسبه خواهد شد . نرخ "
199
- "سود مثبت باعث افزایش امتیازات کاربران و نرخ سود منفی باعث کاهش آن می گردد ."
 
200
 
201
  #: ../addons/banking/myCRED-addon-banking.php:110
202
  msgid "Recurring Payouts"
203
  msgstr "پرداخت های مکرر"
204
 
205
  #: ../addons/banking/myCRED-addon-banking.php:111
 
206
  msgid ""
207
- "Give your users %_plural% on a regular basis with the option to set the number "
208
- "of times you want this payout to run (cycles)."
209
  msgstr ""
210
  "به کاربران خود بر پایه ی دوره های زمانی معینی %_plural% دهید . همچنین این "
211
  "قابلیت را خواهید داشت که تعیین کنید چند بار این دوره ی زمانی تکرار شود ."
212
 
213
- #: ../addons/banking/myCRED-addon-banking.php:156 ../addons/buy-creds/myCRED-addon-buy-creds.php:473 ../addons/buy-creds/myCRED-addon-buy-creds.php:603 ../includes/mycred-network.php:160 ../modules/mycred-module-addons.php:266 ../modules/mycred-module-hooks.php:157 ../modules/mycred-module-log.php:322 ../modules/mycred-module-log.php:575 ../modules/mycred-module-settings.php:312
 
 
 
 
214
  msgid "Access Denied"
215
  msgstr "دسترسی غیرمجاز می باشد"
216
 
217
  #: ../addons/banking/myCRED-addon-banking.php:167
 
218
  msgid "%s Banking"
219
  msgstr "بانکداری %s"
220
 
221
- #: ../addons/banking/myCRED-addon-banking.php:168 ../modules/mycred-module-addons.php:147
 
222
  msgid "Setup recurring payouts or offer / charge interest on user account balances."
223
  msgstr ""
224
 
@@ -229,15 +257,17 @@ msgstr "غیرفعالسازی WP-Cron یافت شد !"
229
  #: ../addons/banking/myCRED-addon-banking.php:172
230
  msgid "Warning! This add-on requires WP - Cron to work."
231
  msgstr ""
232
- "اخطار ! این افزونه ی جانبی برای فعالسازی به WP-Cron احتیاج دارد .<br/>WP-Cron "
233
- "چیست ؟<br/>قابلیتی در وردپرس می باشد که امکان زمانبندی های مختلف را به مدیر "
234
- "سایت می دهد"
235
 
236
- #: ../addons/banking/myCRED-addon-banking.php:188 ../addons/buy-creds/myCRED-addon-buy-creds.php:549 ../modules/mycred-module-hooks.php:182
 
237
  msgid "Enable"
238
  msgstr "فعالسازی"
239
 
240
- #: ../addons/banking/myCRED-addon-banking.php:201 ../modules/mycred-module-hooks.php:197
 
241
  msgid "Update Changes"
242
  msgstr "به روزرسانی تغییرات"
243
 
@@ -293,7 +323,8 @@ msgstr "پرداخت کردن / واریز کردن"
293
  msgid "The interest rate can be either positive or negative and is compounded daily."
294
  msgstr "نرخ سود می تواند مثبت یا منفی باشد و به صورت روزانه محاسبه می شود ."
295
 
296
- #: ../addons/banking/services/mycred-bank-service-interest.php:291 ../addons/coupons/myCRED-addon-coupons.php:392
 
297
  msgid "Minimum Balance"
298
  msgstr "کمترین میزان"
299
 
@@ -301,25 +332,42 @@ msgstr "کمترین میزان"
301
  msgid "The minimum requires balance for interest to apply."
302
  msgstr "کمترین میزان مورد نیاز برای اعمال سود ."
303
 
304
- #: ../addons/banking/services/mycred-bank-service-interest.php:298 ../addons/banking/services/mycred-bank-service-payouts.php:252 ../addons/buy-creds/myCRED-addon-buy-creds.php:368 ../addons/buy-creds/myCRED-addon-buy-creds.php:427 ../addons/coupons/myCRED-addon-coupons.php:440 ../addons/gateway/carts/mycred-marketpress.php:384 ../addons/gateway/carts/mycred-marketpress.php:417 ../addons/gateway/carts/mycred-woocommerce.php:98 ../addons/gateway/carts/mycred-woocommerce.php:164 ../addons/gateway/carts/mycred-wpecommerce.php:367 ../modules/mycred-module-hooks.php:520 ../modules/mycred-module-hooks.php:1389 ../modules/mycred-module-hooks.php:1729 ../plugins/mycred-hook-badgeOS.php:115 ../plugins/mycred-hook-badgeOS.php:117 ../plugins/mycred-hook-badgeOS.php:126 ../plugins/mycred-hook-events-manager-light.php:153 ../plugins/mycred-hook-events-manager-light.php:166 ../plugins/mycred-hook-gd-star-rating.php:109 ../plugins/mycred-hook-gd-star-rating.php:122 ../plugins/mycred-hook-wp-favorite-posts.php:135 ../plugins/mycred-hook-wp-favorite-posts.php:148 ../plugins/mycred-hook-wp-polls.php:136
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
305
  msgid "Log Template"
306
  msgstr "نمونه لیست گزارش ( لوگ )"
307
 
308
- #: ../addons/banking/services/mycred-bank-service-interest.php:305 ../addons/banking/services/mycred-bank-service-payouts.php:259
 
309
  msgid "Run Time"
310
  msgstr "مدت اجرا"
311
 
312
- #: ../addons/banking/services/mycred-bank-service-interest.php:309 ../addons/banking/services/mycred-bank-service-payouts.php:263
 
313
  msgid ""
314
- "For large websites, if you are running into time out issues during payouts, you "
315
- "can set the number of seconds a process can run. Use zero for unlimited, but be "
316
- "careful especially if you are on a shared server."
317
  msgstr ""
318
- "در وبسایت ها بزرگ ، اگر برای انجام پرداخت محدودیت های زمانی دارید ، می توانید "
319
- "از این قسمت تعداد ثانیه هایی که پروسه می تواند در حالت اجرا باشد را مشخص کنید . "
320
- "برای برداشتن محدودیت زمان می توانید عدد صفر را وارد فرمایید ، اما توجه کنید که "
321
- "اگر از سرورهای اشتراکی و یا هاست های اشتراکی استفاده می نمایید ، عدد مورد نظر "
322
- "باید محدود شود"
323
 
324
  #: ../addons/banking/services/mycred-bank-service-payouts.php:21
325
  msgid "Daily %_plural%"
@@ -333,7 +381,10 @@ msgstr "هنوز اجرا نشده است"
333
  msgid "Pay Users"
334
  msgstr "پرداخت به کاربران :"
335
 
336
- #: ../addons/banking/services/mycred-bank-service-payouts.php:222 ../addons/buy-creds/myCRED-addon-buy-creds.php:653 ../addons/buy-creds/myCRED-addon-buy-creds.php:1156 ../addons/buy-creds/abstracts/mycred-abstract-payment-gateway.php:425 ../includes/mycred-admin.php:371 ../includes/mycred-admin.php:482
 
 
 
337
  msgid "Amount"
338
  msgstr "مقدار"
339
 
@@ -341,11 +392,14 @@ msgstr "مقدار"
341
  msgid "Can not be zero."
342
  msgstr "عدد صفر مجاز نیست"
343
 
344
- #: ../addons/banking/services/mycred-bank-service-payouts.php:228 ../addons/banking/services/mycred-bank-service-payouts.php:241 ../modules/mycred-module-hooks.php:1744
 
 
345
  msgid "Interval"
346
  msgstr "فاصله زمانی"
347
 
348
- #: ../addons/banking/services/mycred-bank-service-payouts.php:233 ../addons/banking/services/mycred-bank-service-payouts.php:242
 
349
  msgid "Cycles"
350
  msgstr "دوره ( چند مرتبه این عمل تکرار شود ؟ )"
351
 
@@ -360,26 +414,28 @@ msgstr "آخرین دفعه ی اجرا / فعالسازی"
360
  #: ../addons/banking/services/mycred-bank-service-payouts.php:241
361
  msgid ""
362
  "Select how often you want to award %_plural%. Note that when this service is "
363
- "enabled, the first payout will be in the beginning of the next period. So with "
364
- "a \"Daily\" interval, the first payout will occur first thing in the morning."
 
365
  msgstr ""
366
  "فاصله ی زمانی اجرای این فرآیند را تعیین می کند ، اینکه هر چند وقت یکبار این "
367
- "مقدار %_plural% به کاربران اهدا گردد . البته گفتن این نکته خالی از لطف نیست که "
368
- "واریز اولیه ی امتیاز در ابتدای فاصله زمانی تعیین شده ی بعدی خواهد بود ، به طور "
369
- "مثال اگر فاصله زمانی را روزانه انتخاب کرده باشید ، اولین بار امتیاز تعیین شده "
370
- "بامداد روز بعد واریز می گردد ( مرجع نیمه شب است )"
371
 
372
  #: ../addons/banking/services/mycred-bank-service-payouts.php:242
373
  msgid ""
374
- "Cycles let you choose how many intervals this service should run. Each time a "
375
- "cycle runs, the value will decrease until it hits zero, in which case this "
376
  "service will deactivate itself. Use -1 to run unlimited times."
377
  msgstr ""
378
- "دوره ها به شما این اختیار را می دهند که تعیین فرمایید چند بار عمل واریز تکرار "
379
- "گردد . به طور مثال اگر این مقدار یک باشد فقط یک بار مقدار امتیازی که تعیین می "
380
- "کنید در فاصله زمانی تعیین شده به حساب کاربران واریز می شود . بعد از هر بار "
381
- "واریز هم تعداد دوره ها یک عدد کاهش می یابد تا نهایتا به صفر رسیده و عمل واریز "
382
- "متوقف شود . برای بی نهایت کردن این چرخه عدد 1-( منفی یک ) را وارد فرمایید"
 
383
 
384
  #: ../addons/banking/services/mycred-bank-service-payouts.php:243
385
  msgid "Important"
@@ -387,18 +443,19 @@ msgstr "نکته ی مهم"
387
 
388
  #: ../addons/banking/services/mycred-bank-service-payouts.php:243
389
  msgid ""
390
- "You can always stop payouts by deactivating this service. Just remember that if "
391
- "you deactivate while there are cycles left, this service will continue on when "
392
- "it gets re-activated. Set cycles to zero to reset."
393
- msgstr ""
394
- "هر وقت که مایل باشید می توانید عملیات پرداخت اتوماتیک سود را متوقف کنید . فقط "
395
- "یادتان باشد اگر به هنگام غیرفعالسازی عملیات ، هنوز تعداد دوره هایی باقی مانده "
396
- "باشد ( به طور مثال هنوز 3 دوره باقی باشد ) سرویس منتظر فعالسازی مجدد می ماند تا "
397
- "دوباره عملیات را ادامه دهد . بنابراین می توان گفت غیرفعالسازی یک نوع مکث تا "
398
- "زمان دلخواه شما ، برای عملیات واریز خواهد بود . برای ریست کردن تعداد دوره ها هم "
399
- "می توانید عدد صفر را وارد فرمایید"
400
-
401
- #: ../addons/banking/services/mycred-bank-service-payouts.php:245 ../includes/mycred-install.php:559 ../modules/mycred-module-settings.php:393
 
402
  msgid "Excludes"
403
  msgstr "کاربران استثنا"
404
 
@@ -407,256 +464,297 @@ msgid ""
407
  "Comma separated list of user IDs to exclude from this service. No spaces "
408
  "allowed!"
409
  msgstr ""
410
- "کاربرانی که نمی خواهید به آن ها سودی پرداخت کنید ! برای جدا کردن شناسه کاربران "
411
- "از ویرگول استفاده فرمایید ، فاصله ( اسپیس ) مجاز نیست !"
412
 
413
- #: ../addons/buy-creds/myCRED-addon-buy-creds.php:55 ../addons/buy-creds/myCRED-addon-buy-creds.php:56 ../addons/buy-creds/myCRED-addon-buy-creds.php:57
 
414
  msgid "Payment Gateways"
415
  msgstr "درگاه های پرداخت"
416
 
417
- #: ../addons/buy-creds/myCRED-addon-buy-creds.php:188
418
  msgid "buyCRED Purchase Log"
419
  msgstr ""
420
 
421
- #: ../addons/buy-creds/myCRED-addon-buy-creds.php:189 ../addons/buy-creds/myCRED-addon-buy-creds.php:417 ../addons/buy-creds/myCRED-addon-buy-creds.php:484
 
422
  msgid "Purchase Log"
423
  msgstr ""
424
 
425
- #: ../addons/buy-creds/myCRED-addon-buy-creds.php:277 ../addons/gateway/event-booking/mycred-eventespresso3.php:26 ../addons/gateway/event-booking/mycred-eventsmanager-pro.php:475 ../addons/gateway/event-booking/mycred-eventsmanager.php:540 ../addons/sell-content/myCRED-addon-sell-content.php:361
 
 
 
426
  msgid "Payments"
427
  msgstr "پرداخت ها"
428
 
429
- #: ../addons/buy-creds/myCRED-addon-buy-creds.php:307
430
  msgid "Please login to purchase %_plural%"
431
  msgstr "لطفا برای خرید امتیاز وارد سایت شوید"
432
 
433
- #: ../addons/buy-creds/myCRED-addon-buy-creds.php:322
 
434
  msgid "Gift purchase from %display_name%."
435
  msgstr "خرید هدیه توسط %display_name% ."
436
 
437
- #: ../addons/buy-creds/myCRED-addon-buy-creds.php:340 ../addons/ranks/myCRED-addon-ranks.php:624
 
438
  msgid "Minimum %plural%"
439
  msgstr "کمترین مفدار %plural%"
440
 
441
- #: ../addons/buy-creds/myCRED-addon-buy-creds.php:344
442
  msgid "Minimum amount of %plural% a user must purchase. Will default to 1."
443
  msgstr ""
444
- "کمترین مقدار %plural% مجازی که کاربر می تواند خرید بکند . به صورت پیش فرض روی "
445
- "عدد یک تنظیم شده است ."
446
-
447
- #: ../addons/buy-creds/myCRED-addon-buy-creds.php:349 ../addons/coupons/myCRED-addon-coupons.php:315 ../addons/gateway/carts/mycred-marketpress.php:378 ../addons/gateway/carts/mycred-woocommerce.php:108 ../addons/gateway/carts/mycred-wpecommerce.php:350 ../addons/gateway/event-booking/mycred-eventespresso3.php:437 ../addons/gateway/event-booking/mycred-eventsmanager-pro.php:463 ../addons/gateway/event-booking/mycred-eventsmanager.php:550 ../addons/sell-content/myCRED-addon-sell-content.php:349 ../includes/mycred-widgets.php:204 ../includes/mycred-widgets.php:401 ../includes/importers/mycred-cubepoints.php:365
 
 
 
 
 
 
 
 
448
  msgid "Point Type"
449
  msgstr ""
450
 
451
- #: ../addons/buy-creds/myCRED-addon-buy-creds.php:361
452
  msgid "Login Template"
453
  msgstr "نمونه طرح ورود به سایت"
454
 
455
- #: ../addons/buy-creds/myCRED-addon-buy-creds.php:365
456
  msgid "Content to show when a user is not logged in."
457
  msgstr "متنی که به کاربران لوگین نکرده نمایش داده خواهد شد ."
458
 
459
- #: ../addons/buy-creds/myCRED-addon-buy-creds.php:375
460
  msgid "Thank You Page"
461
  msgstr "صفحه ی تشکر بابت خرید"
462
 
463
- #: ../addons/buy-creds/myCRED-addon-buy-creds.php:378 ../addons/buy-creds/myCRED-addon-buy-creds.php:399
 
464
  msgid "Custom URL"
465
  msgstr "نشانی اینترنتی متفاوت"
466
 
467
- #: ../addons/buy-creds/myCRED-addon-buy-creds.php:383 ../addons/buy-creds/myCRED-addon-buy-creds.php:404
 
468
  msgid "Page"
469
  msgstr "صفحه"
470
 
471
- #: ../addons/buy-creds/myCRED-addon-buy-creds.php:396
472
  msgid "Cancellation Page"
473
  msgstr "صفحه ای که در صورت کنسل کردن خرید نمایش داده می شود"
474
 
475
- #: ../addons/buy-creds/myCRED-addon-buy-creds.php:419
476
  msgid "Show seperate log for %_plural% purchases."
477
  msgstr ""
478
 
479
- #: ../addons/buy-creds/myCRED-addon-buy-creds.php:421
480
  msgid "Gifting"
481
  msgstr "هدیه دادن"
482
 
483
- #: ../addons/buy-creds/myCRED-addon-buy-creds.php:423
 
484
  msgid "Allow users to buy %_plural% for other users."
485
  msgstr "به کاربران اجازه ی خرید %_plural% برای سایر اعضای سایت را بدهید ."
486
 
487
- #: ../addons/buy-creds/myCRED-addon-buy-creds.php:424
 
488
  msgid "Allow users to buy %_plural% for content authors."
489
  msgstr "به کاربران اجازه ی خرید %_plural% برای نویسندگان مطالب را بدهید ."
490
 
491
- #: ../addons/buy-creds/myCRED-addon-buy-creds.php:484
 
492
  msgid "%s Payment Gateways"
493
  msgstr "درگاه های پرداخت %s"
494
 
495
- #: ../addons/buy-creds/myCRED-addon-buy-creds.php:484 ../addons/buy-creds/myCRED-addon-buy-creds.php:659
 
496
  msgid "buyCRED Settings"
497
  msgstr ""
498
 
499
- #: ../addons/buy-creds/myCRED-addon-buy-creds.php:490
500
  msgid "Select the payment gateways you want to offer your users to buy %plural%."
501
  msgstr ""
502
  "درگاه پرداختی را که می خواهید کاربرانتان از طریق آن %plural% بخرند را انتخاب "
503
  "کنید ."
504
 
505
- #: ../addons/buy-creds/myCRED-addon-buy-creds.php:497
506
  msgid "Last Payment Notification"
507
  msgstr ""
508
 
509
- #: ../addons/buy-creds/myCRED-addon-buy-creds.php:499
510
  msgid ""
511
  "Here you can view the last payment confirmation that was sent to buyCRED for "
512
  "processing."
513
  msgstr ""
514
 
515
- #: ../addons/buy-creds/myCRED-addon-buy-creds.php:502
516
  msgid "Details"
517
  msgstr ""
518
 
519
- #: ../addons/buy-creds/myCRED-addon-buy-creds.php:505 ../modules/mycred-module-log.php:541
 
520
  msgid "Time"
521
  msgstr ""
522
 
523
- #: ../addons/buy-creds/myCRED-addon-buy-creds.php:509 ../addons/buy-creds/myCRED-addon-buy-creds.php:650 ../includes/mycred-overview.php:166 ../includes/mycred-overview.php:173 ../modules/mycred-module-addons.php:190
 
 
524
  msgid "Gateway"
525
  msgstr "درگاه"
526
 
527
- #: ../addons/buy-creds/myCRED-addon-buy-creds.php:513 ../addons/buy-creds/myCRED-addon-buy-creds.php:655
 
528
  msgid "Transaction ID"
529
  msgstr ""
530
 
531
- #: ../addons/buy-creds/myCRED-addon-buy-creds.php:517
532
  msgid "Outcome"
533
  msgstr ""
534
 
535
- #: ../addons/buy-creds/myCRED-addon-buy-creds.php:521
536
  msgid "Gateway Log"
537
  msgstr ""
538
 
539
- #: ../addons/buy-creds/myCRED-addon-buy-creds.php:529
540
  msgid "No recorded calls found."
541
  msgstr ""
542
 
543
- #: ../addons/buy-creds/myCRED-addon-buy-creds.php:542
544
  msgid "Test Mode"
545
  msgstr "حالت آزمایشی ( تست )"
546
 
547
- #: ../addons/buy-creds/myCRED-addon-buy-creds.php:544
548
  msgid "Enabled"
549
  msgstr "فعال شد"
550
 
551
- #: ../addons/buy-creds/myCRED-addon-buy-creds.php:547
552
  msgid "Disabled"
553
  msgstr "غیرفعال شد"
554
 
555
- #: ../addons/buy-creds/myCRED-addon-buy-creds.php:557
556
  msgid "Sandbox Mode"
557
  msgstr ""
558
- "حالت جعبه شنی ( حالت تست بانکی می باشد که در آن بابت تراکنش ها هیچ وجهی کسر نمی "
559
- "گردد )"
560
 
561
- #: ../addons/buy-creds/myCRED-addon-buy-creds.php:560
562
  msgid "Enable for test purchases."
563
  msgstr ""
564
 
565
- #: ../addons/buy-creds/myCRED-addon-buy-creds.php:577
566
  msgid "Update Gateway Settings"
567
  msgstr "به روزرسانی تنظیمات درگاه"
568
 
569
- #: ../addons/buy-creds/myCRED-addon-buy-creds.php:651 ../addons/email-notices/myCRED-addon-email-notices.php:643 ../addons/email-notices/myCRED-addon-email-notices.php:772 ../includes/mycred-admin.php:477 ../includes/mycred-log.php:639 ../modules/mycred-module-log.php:540
 
 
 
570
  msgid "User"
571
  msgstr "کاربر"
572
 
573
- #: ../addons/buy-creds/myCRED-addon-buy-creds.php:652 ../includes/mycred-log.php:640
 
574
  msgid "Date"
575
  msgstr "تاریخ"
576
 
577
- #: ../addons/buy-creds/myCRED-addon-buy-creds.php:654
578
  msgid "Payed"
579
  msgstr ""
580
 
581
- #: ../addons/buy-creds/myCRED-addon-buy-creds.php:659
582
  msgid "<strong>buy</strong>CRED Purchase Log"
583
  msgstr ""
584
 
585
- #: ../addons/buy-creds/myCRED-addon-buy-creds.php:659 ../addons/gateway/event-booking/mycred-eventespresso3.php:367
 
586
  msgid "Gateway Settings"
587
  msgstr "تنظیمات درگاه پرداخت"
588
 
589
- #: ../addons/buy-creds/myCRED-addon-buy-creds.php:663
590
  msgid ""
591
  "Only completed purchases are shown here. Purchases that were cancelled or "
592
  "failed are not logged."
593
  msgstr ""
594
 
595
- #: ../addons/buy-creds/myCRED-addon-buy-creds.php:772 ../includes/mycred-log.php:743 ../modules/mycred-module-log.php:462
 
596
  msgid "User Missing"
597
  msgstr "یافت نشدن کاربر"
598
 
599
- #: ../addons/buy-creds/myCRED-addon-buy-creds.php:835 ../addons/sell-content/myCRED-addon-sell-content.php:1112
 
600
  msgid "No purchases found"
601
  msgstr "خریدی یافت نشد"
602
 
603
- #: ../addons/buy-creds/myCRED-addon-buy-creds.php:907 ../addons/buy-creds/myCRED-addon-buy-creds.php:1004
 
604
  msgid "This Add-on needs to setup before you can use this shortcode."
605
  msgstr ""
606
  "برای اینکه بتوانید از این شورت کد استفاده نمایید ، باید ابتدا این افزونه ی "
607
  "جانبی را راه اندازی کنید ."
608
 
609
- #: ../addons/buy-creds/myCRED-addon-buy-creds.php:925 ../addons/buy-creds/myCRED-addon-buy-creds.php:1022
 
610
  msgid "No gateways installed."
611
  msgstr "هیچ درگاه پرداختی نصب نگردیده است ."
612
 
613
- #: ../addons/buy-creds/myCRED-addon-buy-creds.php:926 ../addons/buy-creds/myCRED-addon-buy-creds.php:1023
 
614
  msgid "Gateway does not exist."
615
  msgstr "درگاه موجود نیست ."
616
 
617
- #: ../addons/buy-creds/myCRED-addon-buy-creds.php:962
618
  msgid "Yourself"
619
  msgstr "خودتان"
620
 
621
- #: ../addons/buy-creds/myCRED-addon-buy-creds.php:1024
622
  msgid "No active gateways found."
623
  msgstr "درگاه پرداخت فعالی یافت نشد ."
624
 
625
- #: ../addons/buy-creds/myCRED-addon-buy-creds.php:1025
626
  msgid "The selected gateway is not active."
627
  msgstr "درگاه پرداخت انتخابی فعال نیست ."
628
 
629
- #: ../addons/buy-creds/myCRED-addon-buy-creds.php:1061
 
630
  msgid "Buy with %gateway%"
631
  msgstr ""
632
 
633
- #: ../addons/buy-creds/myCRED-addon-buy-creds.php:1067 ../addons/sell-content/myCRED-addon-sell-content.php:44
 
634
  msgid "Buy Now"
635
  msgstr "همین الان بخرید"
636
 
637
- #: ../addons/buy-creds/myCRED-addon-buy-creds.php:1107
638
  msgid "No users found"
639
  msgstr "کاربری یافت نشد"
640
 
641
- #: ../addons/buy-creds/myCRED-addon-buy-creds.php:1117
642
  msgid "To"
643
  msgstr "به"
644
 
645
- #: ../addons/buy-creds/myCRED-addon-buy-creds.php:1134
646
  msgid "Select Amount"
647
  msgstr "مقدار را انتخاب کنید"
648
 
649
- #: ../addons/buy-creds/myCRED-addon-buy-creds.php:1158
650
  msgid "min."
651
  msgstr "حداقل"
652
 
653
- #: ../addons/buy-creds/myCRED-addon-buy-creds.php:1166
654
  msgid "Select Gateway"
655
  msgstr "درگاه پرداخت را انتخاب کنید"
656
 
657
  #: ../addons/buy-creds/abstracts/mycred-abstract-payment-gateway.php:89
658
- msgid "function myCRED_Payment_Gateway::process() must be over-ridden in a sub-class."
659
- msgstr "تابع myCRED_Payment_Gateway::process() باید در کلاس زیرین ، تنظیم مجدد شود ."
 
 
 
 
660
 
661
  #: ../addons/buy-creds/abstracts/mycred-abstract-payment-gateway.php:98
662
  msgid "function myCRED_Payment_Gateway::buy() must be over-ridden in a sub-class."
@@ -671,6 +769,7 @@ msgid "Incoming confirmation call detected"
671
  msgstr ""
672
 
673
  #: ../addons/buy-creds/abstracts/mycred-abstract-payment-gateway.php:213
 
674
  msgid "Gateway identified itself as \"%s\""
675
  msgstr ""
676
 
@@ -682,7 +781,8 @@ msgstr ""
682
  msgid "Test Payment"
683
  msgstr ""
684
 
685
- #: ../addons/buy-creds/abstracts/mycred-abstract-payment-gateway.php:264 ../addons/gateway/carts/mycred-marketpress.php:179
 
686
  msgid "Payment"
687
  msgstr "پرداخت"
688
 
@@ -690,11 +790,13 @@ msgstr "پرداخت"
690
  msgid "Cancel purchase"
691
  msgstr ""
692
 
693
- #: ../addons/buy-creds/abstracts/mycred-abstract-payment-gateway.php:360 ../includes/mycred-admin.php:364 ../includes/mycred-admin.php:470
 
694
  msgid "required"
695
  msgstr "ضروری"
696
 
697
- #: ../addons/buy-creds/abstracts/mycred-abstract-payment-gateway.php:361 ../includes/mycred-admin.php:366 ../includes/mycred-admin.php:472
 
698
  msgid "optional"
699
  msgstr "اختیاری"
700
 
@@ -735,10 +837,12 @@ msgid "Choose Country"
735
  msgstr ""
736
 
737
  #: ../addons/buy-creds/abstracts/mycred-abstract-payment-gateway.php:419
 
738
  msgid "%s Purchase"
739
  msgstr ""
740
 
741
- #: ../addons/buy-creds/abstracts/mycred-abstract-payment-gateway.php:424 ../addons/gateway/carts/mycred-wpecommerce.php:112
 
742
  msgid "Item"
743
  msgstr "محصول"
744
 
@@ -752,10 +856,10 @@ msgstr "اشکال زدایی ( خطایابی )"
752
 
753
  #: ../addons/buy-creds/abstracts/mycred-abstract-payment-gateway.php:448
754
  msgid ""
755
- "Here you can see information that are collected and sent to this gateway. Debug "
756
- "information is only visible for administrators and are intended for "
757
- "troubleshooting / testing of this gateway. Please disable \"Sandbox Mode\" when "
758
- "you want to take this gateway online."
759
  msgstr ""
760
 
761
  #: ../addons/buy-creds/abstracts/mycred-abstract-payment-gateway.php:452
@@ -779,10 +883,12 @@ msgid "Gateway Response"
779
  msgstr ""
780
 
781
  #: ../addons/buy-creds/abstracts/mycred-abstract-payment-gateway.php:513
 
782
  msgid "Continue to %s"
783
  msgstr ""
784
 
785
- #: ../addons/buy-creds/abstracts/mycred-abstract-payment-gateway.php:514 ../addons/buy-creds/gateways/bitpay.php:240
 
786
  msgid "Click here if you are not automatically redirected"
787
  msgstr "اگر به صورت خودکار به آدرس مورد نظر منتقل نشدید ، اینجا را کلیک فرمایید ."
788
 
@@ -818,47 +924,80 @@ msgstr ""
818
  msgid "Duplicate transaction"
819
  msgstr ""
820
 
821
- #: ../addons/buy-creds/gateways/bitpay.php:25 ../addons/buy-creds/gateways/netbilling.php:30 ../addons/buy-creds/gateways/paypal-standard.php:25 ../addons/buy-creds/gateways/skrill.php:30
 
 
822
  msgid "Purchase of myCRED %plural%"
823
  msgstr "خرید %plural% \"اعتبار من\""
824
 
825
- #: ../addons/buy-creds/gateways/bitpay.php:68 ../addons/buy-creds/gateways/netbilling.php:102 ../addons/buy-creds/gateways/paypal-standard.php:162 ../addons/buy-creds/gateways/skrill.php:134
 
 
826
  msgid "Sales Data is Valid"
827
  msgstr ""
828
 
829
- #: ../addons/buy-creds/gateways/bitpay.php:72 ../addons/buy-creds/gateways/netbilling.php:106 ../addons/buy-creds/gateways/paypal-standard.php:166 ../addons/buy-creds/gateways/skrill.php:138
 
 
830
  msgid "Failed to validate sale"
831
  msgstr ""
832
 
833
- #: ../addons/buy-creds/gateways/bitpay.php:78 ../addons/buy-creds/gateways/netbilling.php:112 ../addons/buy-creds/gateways/paypal-standard.php:172 ../addons/buy-creds/gateways/skrill.php:144 ../addons/buy-creds/gateways/zombaio.php:166
 
 
 
834
  msgid "Failed to verify caller"
835
  msgstr ""
836
 
837
- #: ../addons/buy-creds/gateways/bitpay.php:86 ../addons/buy-creds/gateways/netbilling.php:120 ../addons/buy-creds/gateways/paypal-standard.php:180 ../addons/buy-creds/gateways/skrill.php:152 ../addons/buy-creds/gateways/zombaio.php:171
 
 
 
 
838
  msgid "Attempting to credit %s to users account"
839
  msgstr ""
840
 
841
- #: ../addons/buy-creds/gateways/bitpay.php:97 ../addons/buy-creds/gateways/netbilling.php:132 ../addons/buy-creds/gateways/paypal-standard.php:193 ../addons/buy-creds/gateways/skrill.php:164 ../addons/buy-creds/gateways/zombaio.php:207
 
 
 
 
842
  msgid "%s was successfully credited to users account"
843
  msgstr ""
844
 
845
- #: ../addons/buy-creds/gateways/bitpay.php:104 ../addons/buy-creds/gateways/netbilling.php:139 ../addons/buy-creds/gateways/paypal-standard.php:200 ../addons/buy-creds/gateways/skrill.php:171 ../addons/buy-creds/gateways/zombaio.php:214
 
 
 
846
  msgid "Failed to credit the users account"
847
  msgstr ""
848
 
849
- #: ../addons/buy-creds/gateways/bitpay.php:107 ../addons/buy-creds/gateways/netbilling.php:142 ../addons/buy-creds/gateways/paypal-standard.php:203 ../addons/buy-creds/gateways/skrill.php:174
 
 
850
  msgid "Purchase not paid"
851
  msgstr ""
852
 
853
- #: ../addons/buy-creds/gateways/bitpay.php:111 ../addons/buy-creds/gateways/netbilling.php:146 ../addons/buy-creds/gateways/paypal-standard.php:207 ../addons/buy-creds/gateways/skrill.php:178 ../addons/buy-creds/gateways/zombaio.php:218
 
 
 
854
  msgid "Hanging up on caller"
855
  msgstr ""
856
 
857
- #: ../addons/buy-creds/gateways/bitpay.php:175 ../addons/buy-creds/gateways/netbilling.php:173 ../addons/buy-creds/gateways/paypal-standard.php:237 ../addons/buy-creds/gateways/skrill.php:208 ../addons/buy-creds/gateways/zombaio.php:241
 
 
 
858
  msgid "Please setup this gateway before attempting to make a purchase!"
859
- msgstr "لطفا قبل از اینکه تلاش به انجام پرداختی کنید ، این درگاه را راه اندازی فرمایید ."
 
 
860
 
861
- #: ../addons/buy-creds/gateways/bitpay.php:226 ../addons/buy-creds/gateways/bitpay.php:235 ../addons/buy-creds/gateways/netbilling.php:224 ../addons/buy-creds/gateways/paypal-standard.php:295 ../addons/buy-creds/gateways/skrill.php:301 ../addons/buy-creds/gateways/zombaio.php:271
 
 
 
862
  msgid "Processing payment &hellip;"
863
  msgstr "پردازش پرداخت &hellip;"
864
 
@@ -880,7 +1019,9 @@ msgstr ""
880
  msgid "API Key"
881
  msgstr "کلید API"
882
 
883
- #: ../addons/buy-creds/gateways/bitpay.php:269 ../addons/buy-creds/gateways/paypal-standard.php:312 ../addons/buy-creds/gateways/skrill.php:319
 
 
884
  msgid "Currency"
885
  msgstr "واحد پولی"
886
 
@@ -888,19 +1029,28 @@ msgstr "واحد پولی"
888
  msgid "Currency Code"
889
  msgstr ""
890
 
891
- #: ../addons/buy-creds/gateways/bitpay.php:276 ../addons/buy-creds/gateways/netbilling.php:260 ../addons/buy-creds/gateways/paypal-standard.php:326 ../addons/buy-creds/gateways/skrill.php:339
 
 
892
  msgid "Item Name"
893
  msgstr "نام محصول"
894
 
895
- #: ../addons/buy-creds/gateways/bitpay.php:280 ../addons/buy-creds/gateways/netbilling.php:264 ../addons/buy-creds/gateways/paypal-standard.php:330 ../addons/buy-creds/gateways/skrill.php:343
 
 
896
  msgid "Description of the item being purchased by the user."
897
  msgstr "شرح محصولی که توسط کاربر خریداری می شود ."
898
 
899
- #: ../addons/buy-creds/gateways/bitpay.php:283 ../addons/buy-creds/gateways/netbilling.php:267 ../addons/buy-creds/gateways/paypal-standard.php:333 ../addons/buy-creds/gateways/skrill.php:346
 
 
 
900
  msgid "%plural% Exchange Rate"
901
  msgstr "نرخ تبادل %plural%"
902
 
903
- #: ../addons/buy-creds/gateways/bitpay.php:286 ../addons/buy-creds/gateways/paypal-standard.php:336 ../addons/buy-creds/gateways/skrill.php:349
 
 
904
  msgid "Select currency"
905
  msgstr ""
906
 
@@ -924,19 +1074,24 @@ msgstr ""
924
  msgid "Full Notifications"
925
  msgstr ""
926
 
927
- #: ../addons/buy-creds/gateways/bitpay.php:318 ../includes/mycred-network.php:196 ../includes/mycred-network.php:210
 
928
  msgid "No"
929
  msgstr "خیر"
930
 
931
- #: ../addons/buy-creds/gateways/bitpay.php:319 ../includes/mycred-network.php:192 ../includes/mycred-network.php:206
 
932
  msgid "Yes"
933
  msgstr "بلی"
934
 
935
- #: ../addons/buy-creds/gateways/netbilling.php:57 ../addons/buy-creds/gateways/skrill.php:89 ../addons/buy-creds/gateways/zombaio.php:103
 
936
  msgid "Invalid Call"
937
  msgstr ""
938
 
939
- #: ../addons/buy-creds/gateways/netbilling.php:59 ../addons/buy-creds/gateways/skrill.php:91 ../addons/buy-creds/gateways/zombaio.php:105
 
 
940
  msgid "Caller verified as \"%s\""
941
  msgstr ""
942
 
@@ -963,8 +1118,8 @@ msgstr ""
963
  #: ../addons/buy-creds/gateways/netbilling.php:277
964
  msgid ""
965
  "For this gateway to work, you must login to your NETbilling account and edit "
966
- "your site. Under \"Default payment form settings\" make sure the Postback CGI URL "
967
- "is set to the above address and \"Return method\" is set to POST."
968
  msgstr ""
969
 
970
  #: ../addons/buy-creds/gateways/netbilling.php:312
@@ -996,10 +1151,12 @@ msgid "Connection established"
996
  msgstr ""
997
 
998
  #: ../addons/buy-creds/gateways/paypal-standard.php:92
 
999
  msgid "Attempt: %d failed. Error: %s : %s"
1000
  msgstr ""
1001
 
1002
  #: ../addons/buy-creds/gateways/paypal-standard.php:103
 
1003
  msgid "Secondary systems failing. Final note: %s : %s"
1004
  msgstr ""
1005
 
@@ -1011,19 +1168,24 @@ msgstr ""
1011
  msgid "Call rejected"
1012
  msgstr ""
1013
 
1014
- #: ../addons/buy-creds/gateways/paypal-standard.php:223 ../addons/buy-creds/gateways/skrill.php:194
 
1015
  msgid "Success"
1016
  msgstr "موفق"
1017
 
1018
- #: ../addons/buy-creds/gateways/paypal-standard.php:224 ../addons/buy-creds/gateways/skrill.php:195
 
1019
  msgid "Thank you for your purchase"
1020
  msgstr "**ممنون از خرید و حمایتتان**"
1021
 
1022
- #: ../addons/buy-creds/gateways/paypal-standard.php:290 ../addons/buy-creds/gateways/skrill.php:247
 
1023
  msgid "Return to "
1024
  msgstr "بازگشت به"
1025
 
1026
- #: ../addons/buy-creds/gateways/paypal-standard.php:317 ../addons/buy-creds/gateways/skrill.php:376 ../addons/gateway/event-booking/mycred-eventespresso3.php:455
 
 
1027
  msgid "Important!"
1028
  msgstr "نکته ی مهم !"
1029
 
@@ -1033,9 +1195,9 @@ msgid ""
1033
  "transactions will not be approved until you login to your PayPal account and "
1034
  "Accept each transaction!"
1035
  msgstr ""
1036
- "اطمینان حاصل کنید که واحد پولی مورد نظرتان توسط اکانت پی پال شما ، پشتیبانی می "
1037
- "شود . در غیر این صورت تراکنش ها تایید نخواهند شد ، مگر اینکه به صورت دستی وارد "
1038
- "اکانت پی پال تان شده و دونه به دونه تراکنش ها را تایید فرمایید !"
1039
 
1040
  #: ../addons/buy-creds/gateways/paypal-standard.php:320
1041
  msgid "Account Email"
@@ -1048,16 +1210,17 @@ msgstr "آدرس IPN ( سیستم اطلاع رسانی آنی تراکنش ها
1048
  #: ../addons/buy-creds/gateways/paypal-standard.php:343
1049
  msgid ""
1050
  "For this gateway to work, you must login to your PayPal account and under "
1051
- "\"Profile\" > \"Selling Tools\" enable \"Instant Payment Notifications\". Make sure "
1052
- "the \"Notification URL\" is set to the above address and that you have selected "
1053
- "\"Receive IPN messages (Enabled)\"."
1054
- msgstr ""
1055
- "برای اینکه این درگاه به خوبی عمل کند ، شما باید وارد اکانت پی پال خود شده و به "
1056
- "این آدرس مراجعه کنید : \"Profile\" > \"Selling Tools\" سپس از آنجا ای گزینه را "
1057
- "فعال کنید : \"Instant Payment Notifications\" . اطمینان حاصل کنید که "
1058
- "\"Notification URL\" با آدرس وارد شده در بالا یکی باشد و همچنین این گزینه را تیک "
1059
- "زده باشید : \"Receive IPN messages (Enabled)\" ( برای اینکه راحت تر بخش های مورد "
1060
- "نظر رو توی اکانت مدیریتی پی پال خودتون پیدا کنید ، آدرس ها رو ترجمه نکردم :) )"
 
1061
 
1062
  #: ../addons/buy-creds/gateways/skrill.php:284
1063
  msgid "Product:"
@@ -1099,7 +1262,11 @@ msgstr ""
1099
  msgid "Checkout Page"
1100
  msgstr "صفحه تسویه حساب"
1101
 
1102
- #: ../addons/buy-creds/gateways/skrill.php:361 ../addons/gateway/carts/mycred-woocommerce.php:86 ../addons/ranks/myCRED-addon-ranks.php:767 ../addons/transfer/myCRED-addon-transfer.php:637 ../includes/mycred-widgets.php:197 ../includes/mycred-widgets.php:395 ../includes/mycred-widgets.php:587 ../modules/mycred-module-hooks.php:2302
 
 
 
 
1103
  msgid "Title"
1104
  msgstr "عنوان"
1105
 
@@ -1109,19 +1276,20 @@ msgstr ""
1109
  "اگر این بخش را خالی بگذارید ، از ایمیل اکانتتان برای عنوان صفحه ی پرداخت "
1110
  "Skrill استفاده خواهد شد ."
1111
 
1112
- #: ../addons/buy-creds/gateways/skrill.php:366 ../addons/buy-creds/gateways/zombaio.php:306
 
1113
  msgid "Logo URL"
1114
  msgstr "آدرس لوگو"
1115
 
1116
  #: ../addons/buy-creds/gateways/skrill.php:368
1117
  msgid ""
1118
  "The URL to the image you want to use on the top of the gateway. For best "
1119
- "integration results we recommend you use logos with dimensions up to 200px in "
1120
- "width and 50px in height."
1121
  msgstr ""
1122
  "آدرس عکسی که می خواید بالای صفحه ی پرداخت درگاه نمایش داده بشه . برای بهترین "
1123
- "نتیجه و هماهنگی بهتر عکس با درگاه ، پیشنهاد می کنیم که نهایتا عرض عکس 200 پیکسل "
1124
- "و ارتفاع آن 50 پیکسل باشد ."
1125
 
1126
  #: ../addons/buy-creds/gateways/skrill.php:371
1127
  msgid "Confirmation Note"
@@ -1129,33 +1297,34 @@ msgstr "متن تایید پرداخت"
1129
 
1130
  #: ../addons/buy-creds/gateways/skrill.php:373
1131
  msgid ""
1132
- "Optional text to show user once a transaction has been successfully completed. "
1133
- "This text is shown by Skrill."
1134
  msgstr ""
1135
- "متنی اختیاری که به محض موفقیت آمیز بودن پرداخت ، توسط Skrill به کاربر نمایش "
1136
- "داده خواهد شد ."
1137
 
1138
  #: ../addons/buy-creds/gateways/skrill.php:377
1139
  msgid ""
1140
- "By default all Skrill Merchant account accept payments via Bank Transfers. When "
1141
- "a user selects this option, no %_plural% are awarded! You will need to manually "
1142
- "award these once the bank transfer is completed."
1143
  msgstr ""
1144
- "به صورت پیش فرض ، تمام اکانت های Skrill پرداخت توسط جابجایی بین بانکی را قبول "
1145
- "می کنند . منتهی زمانی که کاربر از این روش برای پرداخت استفاده بکنه ، حتی یک "
1146
- "%_plural% هم بهش داده نمی شه ! در این صورت شما باید بعد از اتمام خرید و موفقیت "
1147
- "آمیز بودن آن ، به صورت دستی میزان سکه ی خریداری شده رو به کاربر اهدا کنید ."
 
1148
 
1149
  #: ../addons/buy-creds/gateways/skrill.php:378
1150
  msgid ""
1151
  "By default purchases made using Skrill will result in users having to signup "
1152
- "for a Skrill account (if they do not have one already). You can contact Skrill "
1153
- "Merchant Services and request to disable this feature."
1154
  msgstr ""
1155
- "به صورت پیش فرض ، خریدهایی که توسط Skrill انجام می گیره ، ثبت نام کاربر در این "
1156
- "سامانه رو به دنبال داره ! یعنی این سامانه پرداخت از کاربر می خواد که توی سیستمش "
1157
- "ثبت نام کنه تا بتونه پرداخت داشته باشه . در این موارد شما می تونید با این "
1158
- "سامانه مکاتبه داشته و درخواست بکنید که این ویژگی رو غیرفعال بکنند ."
1159
 
1160
  #: ../addons/buy-creds/gateways/zombaio.php:154
1161
  msgid "Checking Transaction ID"
@@ -1198,14 +1367,18 @@ msgid ""
1198
  "For this gateway to work, login to ZOA and set the Postback URL to the above "
1199
  "address and click validate."
1200
  msgstr ""
1201
- "برای اینکه این درگاه به خوبی عمل کند ، باید وارد حساب خود در سامانه Zombaio شده "
1202
- "و آدرس Postback را مطابق آدرس بالا وارد کرده و سپس تایید را بزنید ."
1203
 
1204
- #: ../addons/coupons/myCRED-addon-coupons.php:86 ../addons/coupons/myCRED-addon-coupons.php:92 ../addons/coupons/myCRED-addon-coupons.php:438 ../includes/mycred-overview.php:188 ../includes/mycred-overview.php:195 ../modules/mycred-module-addons.php:168
 
 
 
1205
  msgid "Coupons"
1206
  msgstr ""
1207
 
1208
- #: ../addons/coupons/myCRED-addon-coupons.php:87 ../addons/coupons/includes/mycred-coupon-shortcodes.php:69
 
1209
  msgid "Coupon"
1210
  msgstr ""
1211
 
@@ -1237,11 +1410,16 @@ msgstr ""
1237
  msgid "No coupons found in Trash"
1238
  msgstr ""
1239
 
1240
- #: ../addons/coupons/myCRED-addon-coupons.php:98 ../addons/email-notices/myCRED-addon-email-notices.php:148 ../addons/email-notices/myCRED-addon-email-notices.php:154 ../addons/email-notices/myCRED-addon-email-notices.php:160 ../addons/email-notices/myCRED-addon-email-notices.php:258 ../modules/mycred-module-addons.php:179
 
 
 
 
1241
  msgid "Email Notices"
1242
  msgstr "اطلاعیه های ایمیلی"
1243
 
1244
- #: ../addons/coupons/myCRED-addon-coupons.php:119 ../addons/coupons/myCRED-addon-coupons.php:122
 
1245
  msgid "Coupon updated."
1246
  msgstr ""
1247
 
@@ -1265,7 +1443,8 @@ msgstr ""
1265
  msgid "Coupon Code"
1266
  msgstr ""
1267
 
1268
- #: ../addons/coupons/myCRED-addon-coupons.php:157 ../addons/coupons/myCRED-addon-coupons.php:309
 
1269
  msgid "Value"
1270
  msgstr ""
1271
 
@@ -1273,7 +1452,9 @@ msgstr ""
1273
  msgid "Usage"
1274
  msgstr ""
1275
 
1276
- #: ../addons/coupons/myCRED-addon-coupons.php:159 ../addons/transfer/myCRED-addon-transfer.php:243 ../modules/mycred-module-hooks.php:1106 ../modules/mycred-module-hooks.php:1396
 
 
1277
  msgid "Limits"
1278
  msgstr "محدودیت ها"
1279
 
@@ -1285,7 +1466,8 @@ msgstr ""
1285
  msgid "not yet used"
1286
  msgstr ""
1287
 
1288
- #: ../addons/coupons/myCRED-addon-coupons.php:198 ../modules/mycred-module-hooks.php:1834
 
1289
  msgid "Total"
1290
  msgstr ""
1291
 
@@ -1302,6 +1484,7 @@ msgid "Expired"
1302
  msgstr ""
1303
 
1304
  #: ../addons/coupons/myCRED-addon-coupons.php:213
 
1305
  msgid "In %s time"
1306
  msgstr ""
1307
 
@@ -1339,8 +1522,8 @@ msgstr ""
1339
 
1340
  #: ../addons/coupons/myCRED-addon-coupons.php:356
1341
  msgid ""
1342
- "The maximum number of times this coupon can be used. Note that the coupon will "
1343
- "be automatically trashed once this maximum is reached!"
1344
  msgstr ""
1345
 
1346
  #: ../addons/coupons/myCRED-addon-coupons.php:360
@@ -1353,8 +1536,8 @@ msgstr ""
1353
 
1354
  #: ../addons/coupons/myCRED-addon-coupons.php:395
1355
  msgid ""
1356
- "Optional minimum balance a user must have in order to use this coupon. Use zero "
1357
- "to disable."
1358
  msgstr ""
1359
 
1360
  #: ../addons/coupons/myCRED-addon-coupons.php:399
@@ -1363,11 +1546,12 @@ msgstr ""
1363
 
1364
  #: ../addons/coupons/myCRED-addon-coupons.php:402
1365
  msgid ""
1366
- "Optional maximum balance a user can have in order to use this coupon. Use zero "
1367
- "to disable."
1368
  msgstr ""
1369
 
1370
  #: ../addons/coupons/myCRED-addon-coupons.php:444
 
1371
  msgid ""
1372
  "Log entry for successful coupon redemption. Use %coupon% to show the coupon "
1373
  "code."
@@ -1403,8 +1587,8 @@ msgstr ""
1403
 
1404
  #: ../addons/coupons/myCRED-addon-coupons.php:472
1405
  msgid ""
1406
- "Message to show when a user does not meet the minimum balance requirement. (if "
1407
- "used)"
1408
  msgstr ""
1409
 
1410
  #: ../addons/coupons/myCRED-addon-coupons.php:475
@@ -1413,8 +1597,8 @@ msgstr ""
1413
 
1414
  #: ../addons/coupons/myCRED-addon-coupons.php:479
1415
  msgid ""
1416
- "Message to show when a user does not meet the maximum balance requirement. (if "
1417
- "used)"
1418
  msgstr ""
1419
 
1420
  #: ../addons/coupons/myCRED-addon-coupons.php:482
@@ -1433,350 +1617,445 @@ msgstr ""
1433
  msgid "Apply Coupon"
1434
  msgstr ""
1435
 
1436
- #: ../addons/email-notices/myCRED-addon-email-notices.php:149
 
1437
  msgid "Email Notice"
1438
  msgstr "اطلاعیه ایمیلی"
1439
 
1440
- #: ../addons/email-notices/myCRED-addon-email-notices.php:150 ../addons/ranks/myCRED-addon-ranks.php:248
 
1441
  msgid "Add New"
1442
  msgstr "ساختن مورد جدید"
1443
 
1444
- #: ../addons/email-notices/myCRED-addon-email-notices.php:151
1445
  msgid "Add New Notice"
1446
  msgstr "ساختن اطلاعیه ایمیل جدید"
1447
 
1448
- #: ../addons/email-notices/myCRED-addon-email-notices.php:152
1449
  msgid "Edit Notice"
1450
  msgstr "ویرایش اطلاعیه"
1451
 
1452
- #: ../addons/email-notices/myCRED-addon-email-notices.php:153
1453
  msgid "New Notice"
1454
  msgstr "اطلاعیه جدید"
1455
 
1456
- #: ../addons/email-notices/myCRED-addon-email-notices.php:155
1457
  msgid "View Notice"
1458
  msgstr "نمایش اطلاعیه"
1459
 
1460
- #: ../addons/email-notices/myCRED-addon-email-notices.php:156
1461
  msgid "Search Email Notices"
1462
  msgstr "جستجو در بین اطلاعیه های ایمیلی"
1463
 
1464
- #: ../addons/email-notices/myCRED-addon-email-notices.php:157
1465
  msgid "No email notices found"
1466
  msgstr "هیچ اطلاعیه ای یافت نشد"
1467
 
1468
- #: ../addons/email-notices/myCRED-addon-email-notices.php:158
1469
  msgid "No email notices found in Trash"
1470
  msgstr "هیچ اطلاعیه ای در زباله دان یافت نشد"
1471
 
1472
- #: ../addons/email-notices/myCRED-addon-email-notices.php:181 ../addons/gateway/carts/mycred-wpecommerce.php:337 ../includes/mycred-functions.php:589
 
 
1473
  msgid "General"
1474
  msgstr "بخش عمومی"
1475
 
1476
- #: ../addons/email-notices/myCRED-addon-email-notices.php:182
1477
  msgid "users balance changes"
1478
  msgstr "میزان امتیازات کاربران تغییر کند"
1479
 
1480
- #: ../addons/email-notices/myCRED-addon-email-notices.php:183
1481
  msgid "user gains %_plural%"
1482
  msgstr "کاربران %_plural% کسب کنند"
1483
 
1484
- #: ../addons/email-notices/myCRED-addon-email-notices.php:184
1485
  msgid "user lose %_plural%"
1486
  msgstr "کاربران %_plural% از دست بدهند"
1487
 
1488
- #: ../addons/email-notices/myCRED-addon-email-notices.php:185
1489
  msgid "users balance reaches zero"
1490
  msgstr "میزان امتیازات کاربر به صفر برسد"
1491
 
1492
- #: ../addons/email-notices/myCRED-addon-email-notices.php:186
1493
  msgid "users balance goes minus"
1494
  msgstr "میزان امتیازات کاربر به عددی منفی برسد"
1495
 
1496
- #: ../addons/email-notices/myCRED-addon-email-notices.php:192
1497
  msgid "Sell Content Add-on"
1498
  msgstr "بخش مربوط به \"افزونه فروش محتوا\""
1499
 
1500
- #: ../addons/email-notices/myCRED-addon-email-notices.php:193
1501
  msgid "user buys content"
1502
  msgstr "کاربران محتوایی را بخرند"
1503
 
1504
- #: ../addons/email-notices/myCRED-addon-email-notices.php:194
1505
  msgid "authors content gets sold"
1506
  msgstr "متن نویسندگان به فروش برود"
1507
 
1508
- #: ../addons/email-notices/myCRED-addon-email-notices.php:201
1509
  msgid "buyCREDs Add-on"
1510
  msgstr "بخش مربوط به \"افزونه خرید امتیاز\""
1511
 
1512
- #: ../addons/email-notices/myCRED-addon-email-notices.php:202
1513
  msgid "user buys %_plural%"
1514
  msgstr "کاربران %_plural% بخرند"
1515
 
1516
- #: ../addons/email-notices/myCRED-addon-email-notices.php:209
1517
  msgid "Transfer Add-on"
1518
  msgstr "بخش مربوط به \"افزونه انتقال امتیاز\""
1519
 
1520
- #: ../addons/email-notices/myCRED-addon-email-notices.php:210
1521
  msgid "user sends %_plural%"
1522
  msgstr "کاربران %_plural% ارسال کنند"
1523
 
1524
- #: ../addons/email-notices/myCRED-addon-email-notices.php:211
1525
  msgid "user receives %_plural%"
1526
  msgstr "کاربران %_plural% دریافت کنند"
1527
 
1528
- #: ../addons/email-notices/myCRED-addon-email-notices.php:218
1529
  msgid "Ranks Add-on"
1530
  msgstr "بخش مربوط به \"افزونه مدال دهی\""
1531
 
1532
- #: ../addons/email-notices/myCRED-addon-email-notices.php:219
1533
  msgid "user is demoted"
1534
  msgstr "کاربر تنزل درجه پیدا کند ( رنک از دست بدهد )"
1535
 
1536
- #: ../addons/email-notices/myCRED-addon-email-notices.php:220
1537
  msgid "user is promoted"
1538
  msgstr "کاربر ترفیع درجه پیدا کند ( رنک بدست بیاورد )"
1539
 
1540
- #: ../addons/email-notices/myCRED-addon-email-notices.php:260
1541
  msgid ""
1542
  "Settings that apply to all email notices and can not be overridden for "
1543
  "individual emails."
1544
  msgstr ""
1545
- "تنظیماتی که بر روی تمام اطلاعیه های ایمیلی اعمال شده و برای ایمیل های تکی نمی "
1546
- "توان این تنظیم را تغییر داد ( با زبون بی زبونی داره می گه یعنی اگر توی بخش "
1547
- "اطلاعیه های ایمیل بخوای یه ایمیل جدید ایجاد بکنی ، اونجا نمی تونی این تنظیم رو "
1548
- "تغییر بدی که کد اچ تی ام ال هم قبول بکنه یا نکنه ، فقط از همینجا می تونی تغییر "
1549
- "بدی ! دیگه ببخشید خودمونی گفتم :دی )"
1550
 
1551
- #: ../addons/email-notices/myCRED-addon-email-notices.php:261
1552
  msgid "Email Format"
1553
  msgstr "فرمت ایمیل"
1554
 
1555
- #: ../addons/email-notices/myCRED-addon-email-notices.php:265
1556
  msgid "Plain text emails only."
1557
  msgstr "ایمیل هایی که فقط متن معمولی را در خود دارند ، بدون هیچ صفحه آرایی"
1558
 
1559
- #: ../addons/email-notices/myCRED-addon-email-notices.php:269
1560
  msgid "HTML or Plain text emails."
1561
  msgstr ""
1562
- "ایمیل های حاوی کدهای HTML و متن های عادی که با ترکیب این دو می توان ایمیل هایی "
1563
- "با صفحه بندی زیبا تولید کرد ."
1564
 
1565
- #: ../addons/email-notices/myCRED-addon-email-notices.php:272
1566
  msgid "Filters"
1567
  msgstr "پالایش ایمیل ها"
1568
 
1569
- #: ../addons/email-notices/myCRED-addon-email-notices.php:276
1570
  msgid ""
1571
- "Allow WordPress and Third Party Plugins to filter the email subject before an "
1572
- "email is sent."
1573
  msgstr ""
1574
- "به وردپرس و سایر پلاگین های شخص ثالث ، اجازه دهید تا عنوان ایمیل ها را قبل از "
1575
- "ارسال پالایش کنند ."
1576
 
1577
- #: ../addons/email-notices/myCRED-addon-email-notices.php:280
1578
  msgid ""
1579
- "Allow WordPress and Third Party Plugins to filter the email content before an "
1580
- "email is sent."
1581
  msgstr ""
1582
  "به وردپرس و سایر پلاگین های شخص ثالث ، اجازه دهید تا متن ایمیل ها را قبل از "
1583
  "ارسال پالایش کنند ."
1584
 
1585
- #: ../addons/email-notices/myCRED-addon-email-notices.php:283
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1586
  msgid ""
1587
  "Default email settings. These settings can be individually overridden when "
1588
  "editing emails."
1589
  msgstr ""
1590
- "تنظیمات پیش فرض ایمیل . این تنظیماتی که در زیر می آیند ، برای هر ایمیل تکی نیز "
1591
- "قابل ویرایش هستند ."
1592
 
1593
- #: ../addons/email-notices/myCRED-addon-email-notices.php:284 ../addons/email-notices/myCRED-addon-email-notices.php:659
 
1594
  msgid "Email Settings"
1595
  msgstr "تنظیمات ایمیل"
1596
 
1597
- #: ../addons/email-notices/myCRED-addon-email-notices.php:287 ../addons/email-notices/myCRED-addon-email-notices.php:778
 
1598
  msgid "Senders Name:"
1599
  msgstr "نام ارسال کننده :"
1600
 
1601
- #: ../addons/email-notices/myCRED-addon-email-notices.php:291 ../addons/email-notices/myCRED-addon-email-notices.php:780
 
1602
  msgid "Senders Email:"
1603
  msgstr "آدرس ایمیل ارسال کننده :"
1604
 
1605
- #: ../addons/email-notices/myCRED-addon-email-notices.php:295
1606
  msgid "Reply-To:"
1607
  msgstr "پاسخ های دریافتی به ایمیل زیر فرستاده شود :"
1608
 
1609
- #: ../addons/email-notices/myCRED-addon-email-notices.php:299
1610
  msgid "Default Email Content"
1611
  msgstr "محتوای پیش فرض ایمیل"
1612
 
1613
- #: ../addons/email-notices/myCRED-addon-email-notices.php:303
1614
  msgid "Default email content."
1615
  msgstr "در این بخش متن ایمیل پیش فرض رو وارد می کنید"
1616
 
1617
- #: ../addons/email-notices/myCRED-addon-email-notices.php:306
1618
  msgid "Default Email Styling"
1619
  msgstr "قالب پیش فرض ایمیل"
1620
 
1621
- #: ../addons/email-notices/myCRED-addon-email-notices.php:310
1622
  msgid "Ignored if HTML is not allowed in emails."
1623
  msgstr ""
1624
- "در اینجا هم قالب پیش فرض ایمیل رو تعیین می کنید که کد های HTML خواهند بود . در "
1625
- "صورتی که نمی خواید از HTML استفاده کنید ، توی این کادر چیزی وارد نفرمایید ."
 
1626
 
1627
- #: ../addons/email-notices/myCRED-addon-email-notices.php:593 ../addons/email-notices/myCRED-addon-email-notices.php:708
 
1628
  msgid "Email Subject"
1629
  msgstr "موضوع ایمیل"
1630
 
1631
- #: ../addons/email-notices/myCRED-addon-email-notices.php:594
1632
  msgid "Status"
1633
  msgstr "وضعیت"
1634
 
1635
- #: ../addons/email-notices/myCRED-addon-email-notices.php:614
1636
  msgid "Not Active"
1637
  msgstr "غیرفعال"
1638
 
1639
- #: ../addons/email-notices/myCRED-addon-email-notices.php:616
 
1640
  msgid "Scheduled:<br /><strong>%1$s</strong>"
1641
  msgstr "برنامه ریزی شده در : <br /><strong>%1$s</strong>"
1642
 
1643
- #: ../addons/email-notices/myCRED-addon-email-notices.php:620
1644
  msgid "Active"
1645
  msgstr "فعال"
1646
 
1647
- #: ../addons/email-notices/myCRED-addon-email-notices.php:622
 
1648
  msgid "Active - Last run:<br /><strong>%1$s</strong>"
1649
  msgstr "فعال - آخرین اجرا : <br /><strong>%1$s</strong>"
1650
 
1651
- #: ../addons/email-notices/myCRED-addon-email-notices.php:632
1652
  msgid "Email is sent when"
1653
  msgstr "ایمیل فرستاده وقتی فرستاده شود که"
1654
 
1655
- #: ../addons/email-notices/myCRED-addon-email-notices.php:634
1656
  msgid "Missing instance for this notice!"
1657
  msgstr "یکی از مراحل برای این اطلاعیه جا افتاده است !"
1658
 
1659
- #: ../addons/email-notices/myCRED-addon-email-notices.php:643 ../addons/email-notices/myCRED-addon-email-notices.php:645 ../addons/email-notices/myCRED-addon-email-notices.php:647
 
 
1660
  msgid "Sent To"
1661
  msgstr "ارسال شده به"
1662
 
1663
- #: ../addons/email-notices/myCRED-addon-email-notices.php:645 ../addons/email-notices/myCRED-addon-email-notices.php:773
 
1664
  msgid "Administrator"
1665
  msgstr "مدیر"
1666
 
1667
- #: ../addons/email-notices/myCRED-addon-email-notices.php:647
1668
  msgid "Both Administrator and User"
1669
  msgstr "هم کاربر و هم مدیر"
1670
 
1671
- #: ../addons/email-notices/myCRED-addon-email-notices.php:668
1672
  msgid "Available Template Tags"
1673
  msgstr "نمونه تگ های قابل استفاده"
1674
 
1675
- #: ../addons/email-notices/myCRED-addon-email-notices.php:679
1676
  msgid "Email Header"
1677
  msgstr "سربرگ ایمیل"
1678
 
1679
- #: ../addons/email-notices/myCRED-addon-email-notices.php:739
1680
  msgid "Send this email notice when..."
1681
  msgstr "این اطلاعیه ایمیلی زمانی ارسال شود که ..."
1682
 
1683
- #: ../addons/email-notices/myCRED-addon-email-notices.php:770
1684
  msgid "Recipient:"
1685
  msgstr "گیرندگان ایمیل :"
1686
 
1687
- #: ../addons/email-notices/myCRED-addon-email-notices.php:774
1688
  msgid "Both"
1689
  msgstr "هر دو"
1690
 
1691
- #: ../addons/email-notices/myCRED-addon-email-notices.php:782
 
 
 
 
 
 
 
1692
  msgid "Reply-To Email:"
1693
  msgstr "ایمیلی که پاسخ ها به آن ارسال می شود :"
1694
 
1695
- #: ../addons/email-notices/myCRED-addon-email-notices.php:788
1696
  msgid "Save"
1697
  msgstr "ذخیره"
1698
 
1699
- #: ../addons/email-notices/myCRED-addon-email-notices.php:800
1700
  msgid "CSS Styling"
1701
  msgstr "صفحه آرایی با CSS"
1702
 
1703
- #: ../addons/email-notices/myCRED-addon-email-notices.php:816
1704
  msgid "Site Related"
1705
  msgstr "مرتبط با سایت"
1706
 
1707
- #: ../addons/email-notices/myCRED-addon-email-notices.php:817
1708
  msgid "Your websites title"
1709
  msgstr "عنوان وبسایت شما"
1710
 
1711
- #: ../addons/email-notices/myCRED-addon-email-notices.php:818
1712
  msgid "Your websites address"
1713
  msgstr "آدرس وبسایت شما"
1714
 
1715
- #: ../addons/email-notices/myCRED-addon-email-notices.php:819
1716
  msgid "Your websites tagline (description)"
1717
  msgstr "شرح وبسایت شما"
1718
 
1719
- #: ../addons/email-notices/myCRED-addon-email-notices.php:820
1720
  msgid "Your websites admin email"
1721
  msgstr "آدرس ایمیل مدیر وبسایت شما"
1722
 
1723
- #: ../addons/email-notices/myCRED-addon-email-notices.php:821
1724
  msgid "Total number of blog members"
1725
  msgstr "تعداد کل کاربران سایت شما"
1726
 
1727
- #: ../addons/email-notices/myCRED-addon-email-notices.php:897 ../addons/email-notices/myCRED-addon-email-notices.php:900
 
 
1728
  msgid "Email Notice Updated. View <a href=\"%1$s\">All Notices</a>."
1729
  msgstr ""
1730
  "اطلاعیه ی ایمیلی به روزرسانی شد . برای دیدن تمامی اطلاعیه ها <a "
1731
  "href=\"%1$s\">کلیک فرمایید</a>"
1732
 
1733
- #: ../addons/email-notices/myCRED-addon-email-notices.php:902
1734
  msgid "Email Notice Activated"
1735
  msgstr "اطلاعیه فعال شد"
1736
 
1737
- #: ../addons/email-notices/myCRED-addon-email-notices.php:903
1738
  msgid "Email Notice Saved"
1739
  msgstr "اطلاعیه ذخیره شد"
1740
 
1741
- #: ../addons/email-notices/myCRED-addon-email-notices.php:904
 
1742
  msgid "Email Notice Submitted for approval. View <a href=\"%1$s\">All Notices</a>."
1743
  msgstr ""
1744
  "اطلاعیه ایمیلی برای تایید ثبت شد . برای نمایش تمام اطلاعیه ها <a "
1745
  "href=\"%1$s\">اینجا را کلیک فرمایید</a>"
1746
 
1747
- #: ../addons/email-notices/myCRED-addon-email-notices.php:906
 
1748
  msgid "Email Notice scheduled for: <strong>%1$s</strong>."
1749
  msgstr "اطلاعیه ایمیلی برای <strong>%1$s</strong> زمانبندی شد ."
1750
 
1751
- #: ../addons/email-notices/myCRED-addon-email-notices.php:925
1752
  msgid ""
1753
- "Once a notice is \"published\" it becomes active! Select \"Save Draft\" if you are "
1754
- "not yet ready to use this email notice!"
1755
  msgstr ""
1756
- "به محض اینکه اطلاعیه ای \"انتشار\" یابد ، فعال می شود ! اگر هنوز آماده ی استفاده "
1757
- "از این اطلاعیه نیستید ، کلید \"ذخیره به عنوان پیش نویس\" پیشنهاد می گردد ."
 
1758
 
1759
- #: ../addons/email-notices/myCRED-addon-email-notices.php:927
 
1760
  msgid "This notice will become active on:<br /><strong>%1$s</strong>"
1761
  msgstr "این اطلاعیه در تاریخ زیر فعال می شود :<br /><strong>%1$s</strong>"
1762
 
1763
- #: ../addons/email-notices/myCRED-addon-email-notices.php:929
1764
  msgid "This email notice is active."
1765
  msgstr "این اطلاعیه ی ایمیلی فعال شد ."
1766
 
1767
- #: ../addons/gateway/carts/mycred-marketpress.php:147 ../addons/gateway/event-booking/mycred-eventespresso3.php:277 ../addons/gateway/event-booking/mycred-eventespresso3.php:301 ../addons/gateway/event-booking/mycred-eventsmanager.php:412 ../includes/mycred-admin.php:478
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1768
  msgid "Current Balance"
1769
  msgstr "میزان امتیازات اخیر"
1770
 
1771
- #: ../addons/gateway/carts/mycred-marketpress.php:151 ../addons/gateway/carts/mycred-wpecommerce.php:123 ../addons/gateway/event-booking/mycred-eventespresso3.php:281 ../addons/gateway/event-booking/mycred-eventespresso3.php:305 ../addons/gateway/event-booking/mycred-eventsmanager.php:416
 
 
 
 
1772
  msgid "Total Cost"
1773
  msgstr "هزینه کل"
1774
 
1775
- #: ../addons/gateway/carts/mycred-marketpress.php:155 ../addons/gateway/event-booking/mycred-eventespresso3.php:285 ../addons/gateway/event-booking/mycred-eventespresso3.php:309
 
 
1776
  msgid "Balance After Purchase"
1777
  msgstr "میزان امتیاز بعد از خرید"
1778
 
1779
- #: ../addons/gateway/carts/mycred-marketpress.php:182 ../addons/gateway/carts/mycred-marketpress.php:231
 
1780
  msgid "Go Back"
1781
  msgstr ""
1782
 
@@ -1785,9 +2064,10 @@ msgid "will be deducted from your account."
1785
  msgstr "از اکانتتان کسر می گردد ."
1786
 
1787
  #: ../addons/gateway/carts/mycred-marketpress.php:221
 
1788
  msgid ""
1789
- "Sorry, but you can not use this gateway as your account is excluded. Please <a "
1790
- "href=\"%s\">select a different payment method</a>."
1791
  msgstr ""
1792
  "شرمنده ایم ، اما مادامی که اکانت شما بن شده است ، نمی توانید از این درگاه "
1793
  "استفاده کنید . لطفا <a href=\"%s\">درگاه پرداخت دیگری را انتخاب کنید .</a>"
@@ -1796,7 +2076,9 @@ msgstr ""
1796
  msgid "Paid"
1797
  msgstr "پرداخت شده"
1798
 
1799
- #: ../addons/gateway/carts/mycred-marketpress.php:243 ../addons/gateway/carts/mycred-woocommerce.php:33 ../includes/mycred-network.php:57 ../includes/mycred-network.php:58 ../plugins/mycred-hook-badgeOS.php:81
 
 
1800
  msgid "myCRED"
1801
  msgstr "افزونه \"اعتبار من\""
1802
 
@@ -1804,7 +2086,10 @@ msgstr "افزونه \"اعتبار من\""
1804
  msgid "%_singular% Balance"
1805
  msgstr "میزان %_singular%"
1806
 
1807
- #: ../addons/gateway/carts/mycred-marketpress.php:348 ../addons/gateway/carts/mycred-woocommerce.php:101 ../addons/gateway/carts/mycred-wpecommerce.php:27
 
 
 
1808
  msgid "Payment for Order: #%order_id%"
1809
  msgstr "پرداخت برای سفارش : #%order_id%"
1810
 
@@ -1817,20 +2102,22 @@ msgid "Pay using your account balance."
1817
  msgstr "پرداخت با میزان امتیاز اکانت کاربریتان"
1818
 
1819
  #: ../addons/gateway/carts/mycred-marketpress.php:353
 
1820
  msgid ""
1821
  "TOTAL amount has been deducted from your account. Your current balance is: "
1822
  "%balance_f%"
1823
  msgstr ""
1824
- "کل مقدار امتیازی که از حساب شما کسر شده است . میزان امتیاز فعلی شما در حال حاضر "
1825
- ": %balance_f%"
1826
 
1827
  #: ../addons/gateway/carts/mycred-marketpress.php:354
 
1828
  msgid ""
1829
- "Insufficient funds. Please select another form of payment. Your current balance "
1830
- "is: %balance_f%"
1831
  msgstr ""
1832
- "موجودی شما کافی نیست ! لطفا روش دیگری از پرداخت را انتخاب نمایید . میزان امتیاز "
1833
- "فعلی شما در حال حاضر %balance_f% می باشد ."
1834
 
1835
  #: ../addons/gateway/carts/mycred-marketpress.php:355
1836
  msgid ""
@@ -1841,13 +2128,15 @@ msgstr ""
1841
  "href=\"%login_url_here%\">این آدرس</a> وارد سایت شوید ."
1842
 
1843
  #: ../addons/gateway/carts/mycred-marketpress.php:362
 
1844
  msgid ""
1845
  "Let your users pay for items in their shopping cart using their %s Account. "
1846
- "Note! This gateway requires your users to be logged in when making a purchase!"
 
1847
  msgstr ""
1848
- "به کاربرانتان این امکان را بدهید که محصولات داخل سبد خریدشان را با میزان امتیاز "
1849
- "اکانت %s پرداخت کنند . توجه ! این درگاه ، کاربران را ملزم می دارد برای پرداخت ، "
1850
- "ابتدا وارد سایت شوند ."
1851
 
1852
  #: ../addons/gateway/carts/mycred-marketpress.php:365
1853
  msgid "Method Name"
@@ -1865,17 +2154,29 @@ msgstr ""
1865
  msgid "Gateway Logo URL"
1866
  msgstr "آدرس اینترنتی لوگوی درگاه"
1867
 
1868
- #: ../addons/gateway/carts/mycred-marketpress.php:393 ../addons/gateway/carts/mycred-woocommerce.php:124
 
 
1869
  msgid "How much is 1 %_singular% worth in %currency%?"
1870
  msgstr ""
1871
  "یک %_singular% معادل چند %currency% است ؟ ( معادل یک %_singular% در واحد "
1872
  "%currency% )"
1873
 
1874
- #: ../addons/gateway/carts/mycred-marketpress.php:398 ../addons/gateway/carts/mycred-woocommerce.php:129 ../addons/gateway/carts/mycred-wpecommerce.php:356 ../addons/gateway/event-booking/mycred-eventespresso3.php:450 ../addons/gateway/event-booking/mycred-eventsmanager-pro.php:499 ../addons/gateway/event-booking/mycred-eventsmanager.php:578
 
 
 
 
 
1875
  msgid "Exchange Rate"
1876
  msgstr "نرخ مبادلات"
1877
 
1878
- #: ../addons/gateway/carts/mycred-marketpress.php:407 ../addons/gateway/carts/mycred-woocommerce.php:157 ../addons/gateway/carts/mycred-wpecommerce.php:360 ../addons/gateway/event-booking/mycred-eventespresso3.php:462 ../addons/gateway/event-booking/mycred-eventsmanager-pro.php:490 ../addons/gateway/event-booking/mycred-eventsmanager.php:569
 
 
 
 
 
1879
  msgid "Profit Sharing"
1880
  msgstr "سهم سود"
1881
 
@@ -1883,15 +2184,26 @@ msgstr "سهم سود"
1883
  msgid "Percentage"
1884
  msgstr "درصد"
1885
 
1886
- #: ../addons/gateway/carts/mycred-marketpress.php:412 ../addons/gateway/carts/mycred-woocommerce.php:159 ../addons/gateway/carts/mycred-wpecommerce.php:364 ../addons/gateway/event-booking/mycred-eventespresso3.php:464 ../addons/gateway/event-booking/mycred-eventsmanager-pro.php:493 ../addons/gateway/event-booking/mycred-eventsmanager.php:572
 
 
 
 
 
1887
  msgid "Option to share sales with the product owner. Use zero to disable."
1888
  msgstr ""
1889
 
1890
- #: ../addons/gateway/carts/mycred-marketpress.php:424 ../addons/gateway/carts/mycred-wpecommerce.php:371 ../addons/gateway/event-booking/mycred-eventsmanager-pro.php:559 ../addons/gateway/event-booking/mycred-eventsmanager.php:626
 
 
 
1891
  msgid "Messages"
1892
  msgstr "پیام ها"
1893
 
1894
- #: ../addons/gateway/carts/mycred-marketpress.php:427 ../addons/gateway/carts/mycred-wpecommerce.php:382 ../addons/gateway/event-booking/mycred-eventsmanager-pro.php:569 ../addons/gateway/event-booking/mycred-eventsmanager.php:636
 
 
 
1895
  msgid "Insufficient Funds"
1896
  msgstr "موجودی کافی نیست !"
1897
 
@@ -1901,15 +2213,17 @@ msgstr ""
1901
  "هنگامی که کاربر نتواند از این درگاه استفاده کند ، این پیام به وی نمایش داده "
1902
  "خواهد شد ."
1903
 
1904
- #: ../addons/gateway/carts/mycred-marketpress.php:435 ../addons/gateway/carts/mycred-wpecommerce.php:378 ../addons/gateway/event-booking/mycred-eventespresso3.php:490
 
 
1905
  msgid "Visitors"
1906
  msgstr "بازدیدکنندگان"
1907
 
1908
  #: ../addons/gateway/carts/mycred-marketpress.php:437
1909
  msgid "Message to show to buyers that are not logged in."
1910
  msgstr ""
1911
- "هنگامی که خریداران وارد سایت نشده باشند ( لوگین نکرده باشند ) ، این پیام به آن "
1912
- "ها نمایش داده می شود ."
1913
 
1914
  #: ../addons/gateway/carts/mycred-marketpress.php:443
1915
  msgid "User Instructions"
@@ -1926,28 +2240,29 @@ msgstr "اطلاعات تایید"
1926
  #: ../addons/gateway/carts/mycred-marketpress.php:453
1927
  msgid "Information to display on the order confirmation page. - HTML allowed"
1928
  msgstr ""
1929
- "اطلاعاتی که در صفحه ی تایید سفارش نمایش داده خواهد شد . استفاده از کدهای HTML "
1930
- "مجاز است ."
1931
 
1932
  #: ../addons/gateway/carts/mycred-marketpress.php:459
1933
  msgid "Order Confirmation Email"
1934
  msgstr "ایمیل تایید سفارش"
1935
 
1936
  #: ../addons/gateway/carts/mycred-marketpress.php:461
 
1937
  msgid ""
1938
  "This is the email text to send to those who have made %s checkouts. It "
1939
- "overrides the default order checkout email. These codes will be replaced with "
1940
- "order details: CUSTOMERNAME, ORDERID, ORDERINFO, SHIPPINGINFO, PAYMENTINFO, "
1941
- "TOTAL, TRACKINGURL. No HTML allowed."
1942
- msgstr ""
1943
- "این متن ایمیل ، برای کسانی که صورتحساب های %s را پرداخت می کنند ، ارسال می گردد "
1944
- ". گفتنی است که متن پیش فرض \"ایمیل صورتحساب\" نادیده گرفته شده و متنی که در این "
1945
- "کادر وارد می کنید ارسال می گردد . از کدهای زیر نیز می توان برای درج اطلاعات "
1946
- "سفارش کمک گرفت :</ br>CUSTOMERNAME ( نام مشتری را درج می کند ) - ORDERID ( "
1947
- "شناسه سفارش را درج می کند ) - ORDERINFO ( اطلاعات سفارش را درج می کند ) - "
1948
- "SHIPPINGINFO ( اطلاعات خرید را درج می کند ) - PAYMENTINFO ( اطلاعات پرداخت ) - "
1949
- "TOTAL ( کل مبلغ سبد خرید را درج می کند ) - TRACKINGURL ( آدرس صفحه ی پیگیری "
1950
- "سفارش را درج می کند . ) ... استفاده از کدهای HTML مجاز نیست !"
1951
 
1952
  #: ../addons/gateway/carts/mycred-woocommerce.php:34
1953
  msgid "Let users pay using their myCRED balance."
@@ -1963,11 +2278,11 @@ msgstr "فعالسازی پرداخت از طریق امتیازات \"اعتب
1963
 
1964
  #: ../addons/gateway/carts/mycred-woocommerce.php:83
1965
  msgid ""
1966
- "Users who are not logged in or excluded from using myCRED will not have access "
1967
- "to this gateway!"
1968
  msgstr ""
1969
- "کاربرانی که وارد سایت نشده باشند ( لوگین نکرده باشند ) و یا کاربران محروم ( بن "
1970
- "شده ) قابلیت دسترسی و استفاده از این درگاه پرداخت را ندارند !"
1971
 
1972
  #: ../addons/gateway/carts/mycred-woocommerce.php:88
1973
  msgid "Title to show for this payment option."
@@ -1982,6 +2297,7 @@ msgid "Customer Message"
1982
  msgstr "پیام مشتری"
1983
 
1984
  #: ../addons/gateway/carts/mycred-woocommerce.php:95
 
1985
  msgid "Deduct the amount from your %_plural% balance."
1986
  msgstr "کسر این مقدار از میزان %_plural% شما ."
1987
 
@@ -2013,10 +2329,6 @@ msgstr "نمایش در صفحه ی تسویه حساب"
2013
  msgid "Show in Cart and on Checkout Page"
2014
  msgstr "نمایش در هر دو صفحه ی سبد خرید و تسویه حساب"
2015
 
2016
- #: ../addons/gateway/carts/mycred-woocommerce.php:148 ../modules/mycred-module-settings.php:484 ../modules/mycred-module-settings.php:503 ../modules/mycred-module-settings.php:526
2017
- msgid "Label"
2018
- msgstr "برچسب ( اتیکت )"
2019
-
2020
  #: ../addons/gateway/carts/mycred-woocommerce.php:150
2021
  msgid "Order Total in %_plural%"
2022
  msgstr "سفارش کل به واحد %_plural%"
@@ -2034,15 +2346,16 @@ msgid "myCRED Payment"
2034
  msgstr "پرداختاز طریق \"اعتبار من\""
2035
 
2036
  #: ../addons/gateway/carts/mycred-woocommerce.php:193
 
2037
  msgid ""
2038
  "Allows users to pay using their myCRED %_singular% balance. Please note that "
2039
- "users with insufficient funds and users who are not logged in will not see this "
2040
- "payment gateway on the checkout page."
2041
  msgstr ""
2042
  "به کاربران این امکان را می دهد که با استفاده از %_singular% موجود در حساب "
2043
- "\"اعتبار من\" خود ، پرداخت داشته باشند . توجه داشته باشید که کاربرانی که موجودی "
2044
- "کافی ندارند و یا کاربرانی که وارد سایت نشده اند ( لوگین نکرده اند ) این روش "
2045
- "پرداخت در صفحه ی تسویه حساب ، به آن ها نمایش داده نخواهد شد ."
2046
 
2047
  #: ../addons/gateway/carts/mycred-woocommerce.php:214
2048
  msgid "You must be logged in to pay with %_plural%"
@@ -2054,19 +2367,20 @@ msgstr ""
2054
  "شما نمی توانید از این روش برای پرداخت استفاده کنید . لطفا روش دیگری را برای "
2055
  "پرداخت انتخاب فرمایید ."
2056
 
2057
- #: ../addons/gateway/carts/mycred-woocommerce.php:233
2058
  msgid "Insufficient funds. Please try a different payment option."
2059
  msgstr "موجودی شما کافی نیست . لطفا از روش پرداخت دیگری استفاده فرمایید ."
2060
 
2061
- #: ../addons/gateway/carts/mycred-woocommerce.php:295
2062
  msgid "Your account has successfully been charged."
2063
  msgstr "حساب شما با موفقیت شارژ شد ."
2064
 
2065
- #: ../addons/gateway/carts/mycred-woocommerce.php:314
2066
  msgid "Order Missing"
2067
  msgstr ""
2068
 
2069
- #: ../addons/gateway/carts/mycred-woocommerce.php:537 ../addons/gateway/carts/mycred-wpecommerce.php:131
 
2070
  msgid "Your current balance"
2071
  msgstr "اعتبار فعلی شما"
2072
 
@@ -2095,6 +2409,7 @@ msgid "Log Template for Payments"
2095
  msgstr "نمونه لیست گزارش ( لوگ ) پرداخت ها"
2096
 
2097
  #: ../addons/gateway/carts/mycred-wpecommerce.php:357
 
2098
  msgid "How much is 1 %s worth in %s"
2099
  msgstr "هر 1 %s معادل چند %s است ؟"
2100
 
@@ -2108,11 +2423,11 @@ msgstr "دستورالعمل ها"
2108
 
2109
  #: ../addons/gateway/carts/mycred-wpecommerce.php:375
2110
  msgid ""
2111
- "Optional instructions to show users when selecting this gateway. Leave empty to "
2112
- "hide."
2113
  msgstr ""
2114
- "دستورالعمل های اختیاری ، برای نمایش به کاربران در هنگام انتخاب این درگاه . در "
2115
- "صورتی که کادر را خالی بگذارید این بخش نمایش داده نخواهد شد ."
2116
 
2117
  #: ../addons/gateway/carts/mycred-wpecommerce.php:379
2118
  msgid "Message to show visitors who are not logged in."
@@ -2123,10 +2438,12 @@ msgid ""
2123
  "Message to show when users does not have enough %plural% to pay using this "
2124
  "gateway."
2125
  msgstr ""
2126
- "هنگامی که کاربر %plural% کافی برای پرداخت از طریق این درگاه ( روش پرداخت ) را "
2127
- "نداشته باشد ، این پیام نمایش داده خواهد شد ."
2128
 
2129
- #: ../addons/gateway/event-booking/mycred-eventespresso3.php:27 ../addons/gateway/event-booking/mycred-eventsmanager-pro.php:39 ../addons/gateway/event-booking/mycred-eventsmanager.php:35
 
 
2130
  msgid "Pay Now"
2131
  msgstr "همین حالا بپردازید"
2132
 
@@ -2135,14 +2452,19 @@ msgid "Payment for Event Registration"
2135
  msgstr "پرداخت برای ثبت رویداد"
2136
 
2137
  #: ../addons/gateway/event-booking/mycred-eventespresso3.php:343
 
2138
  msgid "Activate %s"
2139
  msgstr "فعالسازی %s"
2140
 
2141
  #: ../addons/gateway/event-booking/mycred-eventespresso3.php:351
 
2142
  msgid "Deactivate %s"
2143
  msgstr "غیرفعالسازی %s"
2144
 
2145
- #: ../addons/gateway/event-booking/mycred-eventespresso3.php:399 ../addons/gateway/event-booking/mycred-eventsmanager-pro.php:449 ../addons/gateway/event-booking/mycred-eventsmanager.php:524
 
 
 
2146
  msgid "How many %s is 1 %s worth?"
2147
  msgstr "چه مقدار %s معادل 1 %s خواهد بود ؟"
2148
 
@@ -2150,7 +2472,9 @@ msgstr "چه مقدار %s معادل 1 %s خواهد بود ؟"
2150
  msgid "Gateways Settings Successfully Updated"
2151
  msgstr "تنظیمات درگاه پرداخت با موفقیت به روزرسانی شد ."
2152
 
2153
- #: ../addons/gateway/event-booking/mycred-eventespresso3.php:415 ../addons/gateway/event-booking/mycred-eventsmanager-pro.php:535 ../addons/gateway/event-booking/mycred-eventsmanager.php:602
 
 
2154
  msgid "Labels"
2155
  msgstr "برچسب ها"
2156
 
@@ -2170,7 +2494,11 @@ msgstr "نوع پرداخت"
2170
  msgid "Title to show on receipts and logs"
2171
  msgstr "عنوانی که در رسیدها و لیست گزارش ها ( لوگ ها ) نمایش داده می شود"
2172
 
2173
- #: ../addons/gateway/event-booking/mycred-eventespresso3.php:428 ../addons/gateway/event-booking/mycred-eventsmanager-pro.php:552 ../addons/gateway/event-booking/mycred-eventsmanager.php:619 ../addons/sell-content/myCRED-addon-sell-content.php:397 ../addons/sell-content/myCRED-addon-sell-content.php:590
 
 
 
 
2174
  msgid "Button Label"
2175
  msgstr "برچسب کلید"
2176
 
@@ -2178,7 +2506,13 @@ msgstr "برچسب کلید"
2178
  msgid "Pay Button"
2179
  msgstr "کلید پرداخت"
2180
 
2181
- #: ../addons/gateway/event-booking/mycred-eventespresso3.php:447 ../addons/gateway/event-booking/mycred-eventsmanager-pro.php:137 ../addons/gateway/event-booking/mycred-eventsmanager-pro.php:140 ../addons/gateway/event-booking/mycred-eventsmanager.php:336 ../addons/gateway/event-booking/mycred-eventsmanager.php:339 ../addons/sell-content/myCRED-addon-sell-content.php:388 ../addons/sell-content/myCRED-addon-sell-content.php:586
 
 
 
 
 
 
2182
  msgid "Price"
2183
  msgstr "هزینه"
2184
 
@@ -2187,18 +2521,20 @@ msgid ""
2187
  "You can disable purchases using this gateway by adding a custom Event Meta: "
2188
  "<code>mycred_no_sale</code>"
2189
  msgstr ""
2190
- "می توانید پرداخت به وسیله ی این درگاه را با اضافه کردن کد سفارشی روبرو ( Event "
2191
- "Meta ) ، غیرفعال کنید : <code>mycred_no_sale</code>"
2192
 
2193
  #: ../addons/gateway/event-booking/mycred-eventespresso3.php:458
2194
  msgid "Users must be logged in to use this gateway!"
2195
  msgstr "کاربران برای استفاده از درگاه باید وارد سایت شده باشند ( لوگین کرده باشند )"
2196
 
2197
- #: ../addons/gateway/event-booking/mycred-eventespresso3.php:467 ../modules/mycred-module-log.php:22 ../modules/mycred-module-log.php:23
 
2198
  msgid "Log"
2199
  msgstr "لیست گزارش ( لوگ )"
2200
 
2201
- #: ../addons/gateway/event-booking/mycred-eventespresso3.php:470 ../includes/mycred-admin.php:483
 
2202
  msgid "Log Entry"
2203
  msgstr "اطلاعات ورودی لیست گزارش ( لوگ )"
2204
 
@@ -2212,8 +2548,8 @@ msgstr "کاربران پولدار !"
2212
 
2213
  #: ../addons/gateway/event-booking/mycred-eventespresso3.php:482
2214
  msgid ""
2215
- "Message to show users on the payment page before they are charged. Leave empty "
2216
- "to hide."
2217
  msgstr ""
2218
 
2219
  #: ../addons/gateway/event-booking/mycred-eventespresso3.php:485
@@ -2228,41 +2564,51 @@ msgstr ""
2228
  msgid "Message to show visitors (users not logged in) on the payment page."
2229
  msgstr ""
2230
 
2231
- #: ../addons/gateway/event-booking/mycred-eventespresso3.php:502 ../modules/mycred-module-settings.php:540
 
2232
  msgid "Update Settings"
2233
  msgstr "به روزرسانی تنظیمات"
2234
 
2235
- #: ../addons/gateway/event-booking/mycred-eventsmanager-pro.php:33 ../addons/gateway/event-booking/mycred-eventsmanager.php:29
 
2236
  msgid "Payment for tickets to %link_with_title%"
2237
  msgstr "پرداخت برای بلیت های %link_with_title%"
2238
 
2239
- #: ../addons/gateway/event-booking/mycred-eventsmanager-pro.php:34 ../addons/gateway/event-booking/mycred-eventsmanager.php:30
 
2240
  msgid "Ticket refund for %link_with_title%"
2241
  msgstr "بلیت استرداد شده برای %link_with_title%"
2242
 
2243
- #: ../addons/gateway/event-booking/mycred-eventsmanager-pro.php:38 ../addons/gateway/event-booking/mycred-eventsmanager.php:34
 
 
2244
  msgid "Pay using your %_plural% balance"
2245
  msgstr "پرداخت به وسیله ی میزان %_plural% شما"
2246
 
2247
- #: ../addons/gateway/event-booking/mycred-eventsmanager-pro.php:40 ../addons/gateway/event-booking/mycred-eventsmanager.php:36
 
2248
  msgid "Pay"
2249
  msgstr "پرداخت"
2250
 
2251
- #: ../addons/gateway/event-booking/mycred-eventsmanager-pro.php:43 ../addons/gateway/event-booking/mycred-eventsmanager.php:39
 
2252
  msgid "Thank you for your payment!"
2253
  msgstr "بابت پرداختتان صمیمانه سپاسگذاریم !"
2254
 
2255
- #: ../addons/gateway/event-booking/mycred-eventsmanager-pro.php:44 ../addons/gateway/event-booking/mycred-eventsmanager.php:40
 
2256
  msgid "I'm sorry but you can not pay for these tickets using %_plural%"
2257
  msgstr ""
2258
  "متاسفیم ، اما نمی توانید با استفاده از %_plural%های خود ، بهای این بلیت را "
2259
  "بپردازید ."
2260
 
2261
- #: ../addons/gateway/event-booking/mycred-eventsmanager-pro.php:134 ../addons/gateway/event-booking/mycred-eventsmanager.php:333
 
2262
  msgid "Ticket Type"
2263
  msgstr "نوع بلیت"
2264
 
2265
- #: ../addons/gateway/event-booking/mycred-eventsmanager-pro.php:143 ../addons/gateway/event-booking/mycred-eventsmanager.php:342
 
2266
  msgid "Spaces"
2267
  msgstr "فضاها"
2268
 
@@ -2274,7 +2620,9 @@ msgstr "شما قادر به پرداخت توسط این درگاه نیستی
2274
  msgid "Reject"
2275
  msgstr "رد کردن"
2276
 
2277
- #: ../addons/gateway/event-booking/mycred-eventsmanager-pro.php:374 ../modules/mycred-module-log.php:500 ../modules/mycred-module-settings.php:488 ../modules/mycred-module-settings.php:507
 
 
2278
  msgid "Delete"
2279
  msgstr "پاک کردن"
2280
 
@@ -2282,21 +2630,27 @@ msgstr "پاک کردن"
2282
  msgid "Edit/View"
2283
  msgstr "ویرایش/نمایش"
2284
 
2285
- #: ../addons/gateway/event-booking/mycred-eventsmanager-pro.php:477 ../addons/gateway/event-booking/mycred-eventsmanager.php:542
 
2286
  msgid "Disabled - Users CAN NOT pay for tickets using %plural%."
2287
  msgstr "غیرفعال شد - کاربران نمی توانند بهای بلیت ها را با %plural% خود بدهند ."
2288
 
2289
- #: ../addons/gateway/event-booking/mycred-eventsmanager-pro.php:478 ../addons/gateway/event-booking/mycred-eventsmanager.php:543
 
2290
  msgid "Single - Users can ONLY pay for tickets using %plural%."
2291
  msgstr "جداگانه - کاربران فقط می توانند با %plural% بهای بلیت ها را پرداخت کنند ."
2292
 
2293
- #: ../addons/gateway/event-booking/mycred-eventsmanager-pro.php:479 ../addons/gateway/event-booking/mycred-eventsmanager.php:544
 
2294
  msgid "Multi - Users can pay for tickets using other gateways or %plural%."
2295
  msgstr ""
2296
  "چندگانه - کاربران می توانند از انواع درگاه های پرداخت و یا %plural% خودشان ، "
2297
  "اقدام به پرداخت بهای بلیت ها کنند ."
2298
 
2299
- #: ../addons/gateway/event-booking/mycred-eventsmanager-pro.php:483 ../addons/gateway/event-booking/mycred-eventsmanager-pro.php:516 ../addons/gateway/event-booking/mycred-eventsmanager.php:562 ../addons/gateway/event-booking/mycred-eventsmanager.php:595
 
 
 
2300
  msgid "Refunds"
2301
  msgstr "استردادی ها"
2302
 
@@ -2306,43 +2660,54 @@ msgid ""
2306
  "Use zero for no refunds. No refunds are given to \"Rejected\" bookings!"
2307
  msgstr ""
2308
 
2309
- #: ../addons/gateway/event-booking/mycred-eventsmanager-pro.php:506 ../addons/gateway/event-booking/mycred-eventsmanager.php:585
 
2310
  msgid "Log Templates"
2311
  msgstr "نمونه های لیست گزارش ( لوگ )"
2312
 
2313
- #: ../addons/gateway/event-booking/mycred-eventsmanager-pro.php:509 ../addons/gateway/event-booking/mycred-eventsmanager.php:588
 
2314
  msgid "Purchases"
2315
  msgstr "خریدها"
2316
 
2317
- #: ../addons/gateway/event-booking/mycred-eventsmanager-pro.php:538 ../addons/gateway/event-booking/mycred-eventsmanager.php:605
 
2318
  msgid "Payment Link Label"
2319
  msgstr "برچسب لینک پرداخت"
2320
 
2321
- #: ../addons/gateway/event-booking/mycred-eventsmanager-pro.php:541 ../addons/gateway/event-booking/mycred-eventsmanager.php:608
 
2322
  msgid ""
2323
  "The payment link shows / hides the payment form under \"My Bookings\". No HTML "
2324
  "allowed."
2325
  msgstr ""
2326
- "لینک پرداخت ، وجه پرداخت ها را در بخش \"رزرواسیون های من\" نمایش می دهد/نمی دهد . "
2327
- "استفاده از کدهای HTML مجاز نیست ."
2328
 
2329
- #: ../addons/gateway/event-booking/mycred-eventsmanager-pro.php:545 ../addons/gateway/event-booking/mycred-eventsmanager.php:612
 
2330
  msgid "Payment Header"
2331
  msgstr "سربرگ پرداخت"
2332
 
2333
- #: ../addons/gateway/event-booking/mycred-eventsmanager-pro.php:548 ../addons/gateway/event-booking/mycred-eventsmanager.php:615
 
2334
  msgid "Shown on top of the payment form. No HTML allowed."
2335
  msgstr "بالای فرم پرداخت نمایش داده می شود . استفاده از کدهای HTML مجاز نیست ."
2336
 
2337
- #: ../addons/gateway/event-booking/mycred-eventsmanager-pro.php:555 ../addons/gateway/event-booking/mycred-eventsmanager.php:622
 
2338
  msgid "The button label for payments. No HTML allowed!"
2339
  msgstr "برچسب کلید پرداخت . استفاده از کدهای HTML مجاز نیست !"
2340
 
2341
- #: ../addons/gateway/event-booking/mycred-eventsmanager-pro.php:562 ../addons/gateway/event-booking/mycred-eventsmanager.php:629
 
2342
  msgid "Successful Payments"
2343
  msgstr "پرداخت های موفقیت آمیز"
2344
 
2345
- #: ../addons/gateway/event-booking/mycred-eventsmanager-pro.php:565 ../addons/gateway/event-booking/mycred-eventsmanager-pro.php:572 ../addons/gateway/event-booking/mycred-eventsmanager.php:632 ../addons/gateway/event-booking/mycred-eventsmanager.php:639
 
 
 
2346
  msgid "No HTML allowed!"
2347
  msgstr ""
2348
 
@@ -2355,6 +2720,7 @@ msgid "Click to toggle"
2355
  msgstr "برای سوییچ کردن بین گزینه ها کلیک کنید"
2356
 
2357
  #: ../addons/gateway/event-booking/mycred-eventsmanager.php:533
 
2358
  msgid "%s Payments"
2359
  msgstr "پرداخت های %s"
2360
 
@@ -2363,11 +2729,12 @@ msgid ""
2363
  "The percentage of the paid amount to refund if a booking gets cancelled. Use "
2364
  "zero for no refunds. No refunds are given to \"Rejected\" bookings."
2365
  msgstr ""
2366
- "در صورتی که رزرواسیونی کنسل گردد ، درصدی از وجه پرداخت شده برای استرداد در نظر "
2367
- "گرفته می شود . از عدد صفر برای عدم استفاده از ویژگی استرداد بلیت استفاده کنید . "
2368
- "هیچ وجهی به عنوان استرداد برای بلیت های باطل شده ، پرداخت نمی شود ."
2369
 
2370
- #: ../addons/notifications/myCRED-addon-notifications.php:166 ../modules/mycred-module-addons.php:201
 
2371
  msgid "Notifications"
2372
  msgstr "آگاه سازها"
2373
 
@@ -2379,15 +2746,17 @@ msgstr "زیبا سازی ( قالب بندی )"
2379
  msgid "Use the included CSS Styling for notifications."
2380
  msgstr "از قالب ها و کدهای CSS موجود ، برای زیباسازی آگاه سازها استفاده کنید ."
2381
 
2382
- #: ../addons/notifications/myCRED-addon-notifications.php:175 ../modules/mycred-module-buddypress.php:410
 
2383
  msgid "Template"
2384
  msgstr "نمونه ( الگو )"
2385
 
2386
  #: ../addons/notifications/myCRED-addon-notifications.php:179
 
2387
  msgid "Use %entry% to show the log entry in the notice and %amount% for the amount."
2388
  msgstr ""
2389
- "از کد %entry% برای نشان دادن داده های لیست گزارش و همچنین %amount% برای مقدار "
2390
- "آن در آگاه ساز استفاده کنید ."
2391
 
2392
  #: ../addons/notifications/myCRED-addon-notifications.php:182
2393
  msgid "Transient Lifespan"
@@ -2405,12 +2774,13 @@ msgstr "مدت"
2405
 
2406
  #: ../addons/notifications/myCRED-addon-notifications.php:193
2407
  msgid ""
2408
- "The number of milliseconds a notice should be visible.<br />Use zero to require "
2409
- "that the user closes the notice manually. 1000 milliseconds = 1 second."
 
2410
  msgstr ""
2411
  "تعداد میلی ثانیه هایی که یک آگاه ساز باید مرئی بماند .<br /> اگر می خواهید "
2412
- "کاربر به صورت دستی آگاه ساز را ببندد ، عدد صفر را وارد کنید . قابل ذکر است ، هر "
2413
- "1000 میلی ثانیه = 1 ثانیه خواهد بود ."
2414
 
2415
  #: ../addons/ranks/myCRED-addon-ranks.php:231
2416
  msgid "Warning! All ranks will be deleted! This can not be undone!"
@@ -2420,11 +2790,16 @@ msgstr "اخطار ! کل مدال ها پاکسازی خواهند شد ! ای
2420
  msgid "Are you sure you want to re-assign user ranks?"
2421
  msgstr "مطمئنید که می خواهید دوباره عمل تخصیص مدال های کاربری را انجام دهید ؟"
2422
 
2423
- #: ../addons/ranks/myCRED-addon-ranks.php:246 ../addons/ranks/myCRED-addon-ranks.php:252 ../addons/ranks/myCRED-addon-ranks.php:258 ../addons/ranks/myCRED-addon-ranks.php:762 ../addons/ranks/myCRED-addon-ranks.php:958 ../modules/mycred-module-addons.php:213
 
 
 
2424
  msgid "Ranks"
2425
  msgstr "رنک و مدال ها"
2426
 
2427
- #: ../addons/ranks/myCRED-addon-ranks.php:247 ../addons/ranks/myCRED-addon-ranks.php:454 ../addons/ranks/myCRED-addon-ranks.php:473 ../addons/ranks/myCRED-addon-ranks.php:568
 
 
2428
  msgid "Rank"
2429
  msgstr "رنک و مدال"
2430
 
@@ -2456,264 +2831,286 @@ msgstr "هیچ مدالی یافت نشد"
2456
  msgid "No ranks found in Trash"
2457
  msgstr "هیچ رنکی در زباله دان یافت نشد"
2458
 
2459
- #: ../addons/ranks/myCRED-addon-ranks.php:323
 
2460
  msgid "Completed - Total of %d users effected"
2461
  msgstr "اتمام عملیات - کل %d کاربر ترتیب اثر داده شدند"
2462
 
2463
- #: ../addons/ranks/myCRED-addon-ranks.php:325
2464
  msgid "Log is Empty"
2465
  msgstr "لیست گزارش ( لوگ ) خالیست !"
2466
 
2467
- #: ../addons/ranks/myCRED-addon-ranks.php:528 ../addons/ranks/myCRED-addon-ranks.php:531
 
 
2468
  msgid "Rank Updated. View <a href=\"%1$s\">All Ranks</a>."
2469
- msgstr "مدال به روزرسانی شد . برای دیدن تمامی مدال ها ، <a href=\"%1$s\">کلیک کنید</a> ."
 
 
2470
 
2471
- #: ../addons/ranks/myCRED-addon-ranks.php:533
2472
  msgid "Rank Activated"
2473
  msgstr "مدال فعال شد"
2474
 
2475
- #: ../addons/ranks/myCRED-addon-ranks.php:534
2476
  msgid "Rank Saved"
2477
  msgstr "مدال ذخیره شد"
2478
 
2479
- #: ../addons/ranks/myCRED-addon-ranks.php:535
 
2480
  msgid "Rank Submitted for approval. View <a href=\"%1$s\">All Ranks</a>."
2481
  msgstr ""
2482
  "مدال ، برای تایید ، ثبت شد . برای دیدن تمامی مدال ها ، <a href=\"%1$s\">کلیک "
2483
  "کنید</a> ."
2484
 
2485
- #: ../addons/ranks/myCRED-addon-ranks.php:537
 
2486
  msgid "Rank scheduled for: <strong>%1$s</strong>."
2487
  msgstr "مدال برنامه ریزی شد برای : <strong>%1$s</strong>"
2488
 
2489
- #: ../addons/ranks/myCRED-addon-ranks.php:594 ../addons/ranks/myCRED-addon-ranks.php:647
 
2490
  msgid "Rank Title"
2491
  msgstr "عنوان مدال"
2492
 
2493
- #: ../addons/ranks/myCRED-addon-ranks.php:595
2494
  msgid "Logo"
2495
  msgstr "لوگو"
2496
 
2497
- #: ../addons/ranks/myCRED-addon-ranks.php:596
2498
  msgid "Requirement"
2499
  msgstr "پیش نیاز"
2500
 
2501
- #: ../addons/ranks/myCRED-addon-ranks.php:597 ../modules/mycred-module-settings.php:451
 
2502
  msgid "Users"
2503
  msgstr "کاربران"
2504
 
2505
- #: ../addons/ranks/myCRED-addon-ranks.php:613
2506
  msgid "No Logo Set"
2507
  msgstr "لوگویی ست نشده است"
2508
 
2509
- #: ../addons/ranks/myCRED-addon-ranks.php:622 ../addons/ranks/myCRED-addon-ranks.php:627
 
2510
  msgid "Any Value"
2511
  msgstr "هر مقداری"
2512
 
2513
- #: ../addons/ranks/myCRED-addon-ranks.php:629
2514
  msgid "Maximum %plural%"
2515
  msgstr "بیشترین مقدار %plural%"
2516
 
2517
- #: ../addons/ranks/myCRED-addon-ranks.php:660
2518
  msgid "Rank Settings"
2519
  msgstr "تنظیمات مدال"
2520
 
2521
- #: ../addons/ranks/myCRED-addon-ranks.php:682
2522
  msgid "Minimum %plural% to reach this rank"
2523
  msgstr "کمترین مقدار %plural% برای دستیابی به این مدال"
2524
 
2525
- #: ../addons/ranks/myCRED-addon-ranks.php:686
2526
  msgid "Maximum %plural% to be included in this rank"
2527
  msgstr "بیشترین مقدار %plural% که این مدال شامل آن می شود"
2528
 
2529
- #: ../addons/ranks/myCRED-addon-ranks.php:693
2530
  msgid "All Published Ranks"
2531
  msgstr "همه ی مدال های منتشر شده"
2532
 
2533
- #: ../addons/ranks/myCRED-addon-ranks.php:699 ../addons/ranks/myCRED-addon-ranks.php:701
 
2534
  msgid "Not Set"
2535
  msgstr "تنظیم نشده"
2536
 
2537
- #: ../addons/ranks/myCRED-addon-ranks.php:706
2538
  msgid "No Ranks found"
2539
  msgstr "مدالی پیدا نشد"
2540
 
2541
- #: ../addons/ranks/myCRED-addon-ranks.php:764
2542
  msgid "Rank Features"
2543
  msgstr "ویژگی های مدال"
2544
 
2545
- #: ../addons/ranks/myCRED-addon-ranks.php:768
2546
  msgid "%plural% requirement"
2547
  msgstr "پیش نیاز %plural%"
2548
 
2549
- #: ../addons/ranks/myCRED-addon-ranks.php:769
2550
  msgid "Featured Image (Logo)"
2551
  msgstr "عکس شاخص ( لوگو )"
2552
 
2553
- #: ../addons/ranks/myCRED-addon-ranks.php:770
2554
  msgid "Content"
2555
  msgstr "محتوا"
2556
 
2557
- #: ../addons/ranks/myCRED-addon-ranks.php:771
2558
  msgid "Excerpt"
2559
  msgstr "توضیح کوتاه ( نقل قول )"
2560
 
2561
- #: ../addons/ranks/myCRED-addon-ranks.php:772
2562
  msgid "Comments"
2563
  msgstr "دیدگاه ها"
2564
 
2565
- #: ../addons/ranks/myCRED-addon-ranks.php:773
2566
  msgid "Page Attributes"
2567
  msgstr "خصوصیت های صفحه"
2568
 
2569
- #: ../addons/ranks/myCRED-addon-ranks.php:774
2570
  msgid "Custom Fields"
2571
  msgstr "فیلدهای اضافی"
2572
 
2573
- #: ../addons/ranks/myCRED-addon-ranks.php:777
2574
  msgid "Public"
2575
  msgstr "عمومی"
2576
 
2577
- #: ../addons/ranks/myCRED-addon-ranks.php:781
2578
  msgid ""
2579
- "If you want to create a template archive for each rank, you must select to have "
2580
- "ranks public. Defaults to disabled."
2581
  msgstr ""
2582
- "اگر می خواهید آرشیو نمونه ای برای هر مدال بسازید ، باید انتخاب کنید که مدال ها "
2583
- "عمومی باشند . در حالت پیش فرض این حالت غیرفعال می باشد ."
2584
 
2585
- #: ../addons/ranks/myCRED-addon-ranks.php:784
2586
  msgid "Rank Basis"
2587
  msgstr "روش مدال دهی"
2588
 
2589
- #: ../addons/ranks/myCRED-addon-ranks.php:787
2590
  msgid "Users are ranked according to their current balance."
2591
  msgstr "کاربران بر اساس میزان امتیاز فعلیشان مدال می گیرند ."
2592
 
2593
- #: ../addons/ranks/myCRED-addon-ranks.php:790
2594
  msgid ""
2595
  "Users are ranked according to the total amount of %_plural% they have "
2596
  "accumulated."
2597
  msgstr "کاربران بر اساس کل %_plural% ای که جمع کرده اند مدال می گیرند ."
2598
 
2599
- #: ../addons/ranks/myCRED-addon-ranks.php:794 ../addons/ranks/myCRED-addon-ranks.php:799
 
2600
  msgid "Calculate Totals"
2601
  msgstr "محاسبه ی کل امتیازها"
2602
 
2603
- #: ../addons/ranks/myCRED-addon-ranks.php:797
2604
  msgid ""
2605
  "Use this button to calculate or re-calcualte your users totals. If not used, "
2606
  "the users current balance will be used as a starting point."
2607
  msgstr ""
2608
- "از این کلید برای محاسبه یا محاسبه ی مجدد کل امتیازهای کاربرانتان استفاده کنید . "
2609
- "اگر از این کلید استفاده نکنید ، مبنای امتیازات ، همین امتیاز فعلی کاربران می "
2610
- "باشد ."
2611
 
2612
- #: ../addons/ranks/myCRED-addon-ranks.php:797
2613
  msgid ""
2614
  "Once a users total has been calculated, they will be assigned to their "
2615
  "appropriate roles. For this reason, it is highly recommended that you first "
2616
  "setup your ranks!"
2617
  msgstr ""
2618
  "به محض اینکه میزان امتیاز کلی کاربران محاسبه شود ، آن ها به نقش متناسب با "
2619
- "امتیازشان منصوب می شوند . به همین منظور ، شدیدا پیشنهاد می گردد که ابتدا مدال "
2620
- "های خودتان را پیاده سازی کنید ."
2621
 
2622
- #: ../addons/ranks/myCRED-addon-ranks.php:798
2623
  msgid ""
2624
- "Depending on your log size and number of users this process may take a while. "
2625
- "Please do not leave, click \"Update Settings\" or re-fresh this page until this "
2626
- "is completed!"
2627
  msgstr ""
2628
- "بسته به سایز لیست گزارش ( لوگ ) و تعداد کاربران ، ممکن است این فرآیند مدتی طول "
2629
- "بکشد . لطفا تا پایان عملیات ، صفحه را رفرش نکنید ، آن را نبسته و یا بر روی \"به "
2630
- "روزرسانی تنظیمات\" کلیک نفرمایید ."
2631
 
2632
- #: ../addons/ranks/myCRED-addon-ranks.php:803
2633
  msgid "Archive URL"
2634
  msgstr "نشانی اینترنتی آرشیو"
2635
 
2636
- #: ../addons/ranks/myCRED-addon-ranks.php:807
2637
  msgid "Ignored if Ranks are not public"
2638
  msgstr "اگر مدال ها منتشر نشده اند ، آن ها را نادیده بگیر"
2639
 
2640
- #: ../addons/ranks/myCRED-addon-ranks.php:810
2641
  msgid "Display Order"
2642
  msgstr "ترتیب نمایش"
2643
 
2644
- #: ../addons/ranks/myCRED-addon-ranks.php:817
2645
  msgid "Ascending - Lowest rank to highest"
2646
  msgstr "صعودی - از پایین ترین مدال ها ، به بالاترین مدال ها"
2647
 
2648
- #: ../addons/ranks/myCRED-addon-ranks.php:818
2649
  msgid "Descending - Highest rank to lowest"
2650
  msgstr "نزولی - از بالاترین مدال ها ، به پایین ترین مدال ها"
2651
 
2652
- #: ../addons/ranks/myCRED-addon-ranks.php:827
2653
  msgid ""
2654
- "Select in what order ranks should be displayed in your admin area and/or front "
2655
- "if ranks are \"Public\""
2656
  msgstr ""
2657
- "انتخاب کنید که مدال ها به چه ترتیبی در ناحیه ی مدیریتی و/یا کاربری نمایش داده "
2658
- "شوند ، البته اگر مدال ها \"منتشر شده\" ( عمومی ) باشند ."
2659
 
2660
- #: ../addons/ranks/myCRED-addon-ranks.php:837 ../modules/mycred-module-buddypress.php:366 ../modules/mycred-module-buddypress.php:373
 
2661
  msgid "Do not show."
2662
  msgstr "عدم نمایش"
2663
 
2664
- #: ../addons/ranks/myCRED-addon-ranks.php:838 ../modules/mycred-module-buddypress.php:367
 
2665
  msgid "Include in Profile Header."
2666
  msgstr "شامل ( نمایش در ) هِدر ( سربرگ ) پروفایل کاربری"
2667
 
2668
- #: ../addons/ranks/myCRED-addon-ranks.php:839 ../modules/mycred-module-buddypress.php:368
 
2669
  msgid "Include under the \"Profile\" tab"
2670
  msgstr "شامل ( نمایش در ) زیر تب \"پروفایل کاربر\" "
2671
 
2672
- #: ../addons/ranks/myCRED-addon-ranks.php:840 ../modules/mycred-module-buddypress.php:369
 
2673
  msgid "Include under the \"Profile\" tab and Profile Header."
2674
  msgstr "نمایش در زیر تب \"Profile\" و همچنین سربرگ پروفایل کاربری ."
2675
 
2676
- #: ../addons/ranks/myCRED-addon-ranks.php:843
2677
  msgid "Rank in BuddyPress"
2678
  msgstr "مدال در بادی پرس"
2679
 
2680
- #: ../addons/ranks/myCRED-addon-ranks.php:911
2681
  msgid "Script Communication Error"
2682
  msgstr "خطا در ارتباط با اسکریپت"
2683
 
2684
- #: ../addons/ranks/myCRED-addon-ranks.php:961
2685
  msgid "Rank Post Type"
2686
  msgstr "نوع پست مدال"
2687
 
2688
- #: ../addons/ranks/myCRED-addon-ranks.php:965
2689
  msgid "No. of ranks"
2690
  msgstr "تعداد مدال ها"
2691
 
2692
- #: ../addons/ranks/myCRED-addon-ranks.php:969 ../modules/mycred-module-log.php:368 ../modules/mycred-module-settings.php:440 ../modules/mycred-module-settings.php:455
 
 
2693
  msgid "Actions"
2694
  msgstr "عملیات ها"
2695
 
2696
- #: ../addons/ranks/myCRED-addon-ranks.php:970
2697
  msgid "Remove All Ranks"
2698
  msgstr "پاکسازی همه ی مدال ها"
2699
 
2700
- #: ../addons/ranks/myCRED-addon-ranks.php:970
2701
  msgid "Assign Ranks to Users"
2702
  msgstr "تخصیص دادن مدال به کاربران"
2703
 
2704
- #: ../addons/ranks/includes/mycred-rank-functions.php:181
2705
  msgid "mycred_get_users_rank() : Missing required user id"
2706
  msgstr "mycred_get_users_rank() : شناسه کاربر خواسته شده ، یافت نشد !"
2707
 
2708
- #: ../addons/ranks/includes/mycred-rank-functions.php:191
2709
  msgid "no rank"
2710
  msgstr "مدالی یافت نشد"
2711
 
2712
- #: ../addons/ranks/includes/mycred-rank-shortcodes.php:58 ../addons/ranks/includes/mycred-rank-shortcodes.php:134
 
2713
  msgid "No users found with this rank"
2714
  msgstr "کاربری با این مدال یافت نشد"
2715
 
2716
- #: ../addons/ranks/includes/mycred-rank-shortcodes.php:63 ../includes/mycred-shortcodes.php:352 ../includes/mycred-shortcodes.php:355 ../includes/mycred-shortcodes.php:417 ../includes/mycred-shortcodes.php:478 ../includes/mycred-shortcodes.php:482 ../includes/mycred-shortcodes.php:486
 
 
 
2717
  msgid "error"
2718
  msgstr "خطا"
2719
 
@@ -2749,7 +3146,9 @@ msgstr "هیج پرداختی صورت نمی گیرد ، فقط واریز ان
2749
  msgid "Pay Content Author."
2750
  msgstr "پرداخت به نویسنده ی محتوا"
2751
 
2752
- #: ../addons/sell-content/myCRED-addon-sell-content.php:339 ../includes/mycred-overview.php:141 ../includes/mycred-overview.php:148 ../modules/mycred-module-addons.php:224
 
 
2753
  msgid "Sell Content"
2754
  msgstr "فروش محتوا"
2755
 
@@ -2770,8 +3169,8 @@ msgid ""
2770
  "Percentage of the price to pay the author. Can not be zero and is ignored if "
2771
  "authors are not paid."
2772
  msgstr ""
2773
- "درصدی از قیمت محتوا برای پرداخت به نویسنده . این مقدار نمی تواند عدد صفر باشد . "
2774
- "همچنین برای عدم پرداخت به نویسنده ، کادر را خالی بگذارید ."
2775
 
2776
  #: ../addons/sell-content/myCRED-addon-sell-content.php:385
2777
  msgid "Defaults"
@@ -2798,18 +3197,21 @@ msgid "Sale Template for non members"
2798
  msgstr "الگوی فروش برای غیر اعضا"
2799
 
2800
  #: ../addons/sell-content/myCRED-addon-sell-content.php:415
 
2801
  msgid ""
2802
- "Do <strong>not</strong> use the %buy_button% in this template as a user must be "
2803
- "logged in to buy content!"
2804
  msgstr ""
2805
- "توجه کنید که هرگز از %buy_button% در این الگوی نمونه استفاده نفرمایید ، چراکه "
2806
- "برای خرید محتوا ، کاربران حتما باید وارد سایت شوند ."
2807
 
2808
  #: ../addons/sell-content/myCRED-addon-sell-content.php:419
2809
  msgid "Sale Template for members"
2810
  msgstr "الگوی فروش برای اعضای سایت ( کاربران )"
2811
 
2812
- #: ../addons/sell-content/myCRED-addon-sell-content.php:423 ../addons/sell-content/myCRED-addon-sell-content.php:431
 
 
2813
  msgid "Your template must contain the %buy_button% tag for purchases to work!"
2814
  msgstr "الگوی نمونه ی شما ، برای اجرایی شدن باید شامل تگ %buy_button% باشد ."
2815
 
@@ -2826,10 +3228,12 @@ msgid "Log template for Sales"
2826
  msgstr "الگوی لیست گزارش برای فروش ها"
2827
 
2828
  #: ../addons/sell-content/myCRED-addon-sell-content.php:494
 
2829
  msgid "%s Sell This"
2830
  msgstr "فروش %s "
2831
 
2832
  #: ../addons/sell-content/myCRED-addon-sell-content.php:548
 
2833
  msgid "%s Sell Content needs to be setup before you can use this feature."
2834
  msgstr ""
2835
  "برای استفاده از این ویژگی ، باید ابتدا افزونه فروش محتوای %s را نصب و راه "
@@ -2855,7 +3259,8 @@ msgstr "خرید تا چند ساعت آینده ممکن باشد ؟"
2855
  msgid "Thank you for your purchase!"
2856
  msgstr "از خرید شما صمیمانه سپاسگذاریم !"
2857
 
2858
- #: ../addons/sell-content/myCRED-addon-sell-content.php:1008 ../addons/sell-content/myCRED-addon-sell-content.php:1094
 
2859
  msgid "The following content is set for sale:"
2860
  msgstr "محتوای زیر برای فروش تنظیم می شود :"
2861
 
@@ -2903,8 +3308,8 @@ msgstr "مقدار نامعتبر . لطفا مجددا با دقت مقدار
2903
 
2904
  #: ../addons/transfer/myCRED-addon-transfer.php:146
2905
  msgid ""
2906
- "This myCRED Add-on has not yet been setup! No transfers are allowed until this "
2907
- "has been done!"
2908
  msgstr ""
2909
  "این افزونه ی جانبی \"اعتبار من\" ، هنوز راه اندازی نشده است . تا قبل از آن ، "
2910
  "جابجایی امتیاز امکان پذیر نخواهد بود !"
@@ -2937,11 +3342,13 @@ msgstr "نام کاربری کاربر ( user_login )"
2937
  msgid "User Email (user_email)"
2938
  msgstr "ایمیل کاربر ( user_email )"
2939
 
2940
- #: ../addons/transfer/myCRED-addon-transfer.php:191 ../addons/transfer/myCRED-addon-transfer.php:631
 
2941
  msgid "Transfer %plural%"
2942
  msgstr "جابجایی %plural%"
2943
 
2944
- #: ../addons/transfer/myCRED-addon-transfer.php:195 ../includes/mycred-widgets.php:593 ../modules/mycred-module-settings.php:469
 
2945
  msgid "Point Types"
2946
  msgstr ""
2947
 
@@ -2994,8 +3401,8 @@ msgid ""
2994
  "Text to show when users are not logged in. Leave empty to hide. No HTML "
2995
  "elements allowed!"
2996
  msgstr ""
2997
- "متنی که برای کاربران وارد نشده نمایش داده می شود . برای نمایش داده نشدن کادر را "
2998
- "خالی بگذارید . استفاده از کدهای HTML مجاز نمی باشد ."
2999
 
3000
  #: ../addons/transfer/myCRED-addon-transfer.php:274
3001
  msgid "Balance Template"
@@ -3006,8 +3413,8 @@ msgid ""
3006
  "Template to use when displaying the users balance (if included). No HTML "
3007
  "elements allowed!"
3008
  msgstr ""
3009
- "الگویی که به هنگام نمایش میزان امتیاز کاربر ( در صورت داشتن ) ، استفاده می شود ."
3010
- " استفاده از کدهای HTML مجاز نیست !"
3011
 
3012
  #: ../addons/transfer/myCRED-addon-transfer.php:280
3013
  msgid "Limit Template"
@@ -3016,8 +3423,8 @@ msgstr "الگوی محدودیت"
3016
  #: ../addons/transfer/myCRED-addon-transfer.php:282
3017
  msgid "Template to use when displaying limits (if used). No HTML elements allowed!"
3018
  msgstr ""
3019
- "الگویی که به هنگام نمایش محدودیت ( در صورت داشتن ) استفاده می شود . کدهای HTML "
3020
- "مجاز نخواهند بود ."
3021
 
3022
  #: ../addons/transfer/myCRED-addon-transfer.php:286
3023
  msgid "Button Template"
@@ -3037,11 +3444,12 @@ msgstr "میزان امتیاز برای ارسال کافی نیست ."
3037
 
3038
  #: ../addons/transfer/myCRED-addon-transfer.php:296
3039
  msgid ""
3040
- "Text to show when a users balance is to low for transfers. Leave empty to hide. "
3041
- "No HTML elements allowed!"
3042
  msgstr ""
3043
- "متنی که به هنگام کافی نبودن میزان امتیاز کاربر برای جابجایی ، نمایش داده می شود "
3044
- ". برای عدم نمایش کادر را خالی بگذارید . استفاده از کدهای HTML هم مجاز نیستند !"
 
3045
 
3046
  #: ../addons/transfer/myCRED-addon-transfer.php:300
3047
  msgid "Transfer Limit Reached."
@@ -3052,15 +3460,16 @@ msgid ""
3052
  "Text to show when a user has reached their transfer limit (if used). Leave "
3053
  "empty to hide. No HTML elements allowed!"
3054
  msgstr ""
3055
- "متنی که به هنگام رسیدن کاربر به سقف مجاز تعیین شده برای جابجایی ( در صورت تعیین "
3056
- "شدن ) ، برای وی نمایش داده می شود . کادر را خالی بگذارید تا متنی نمایش داده "
3057
- "نشود . استفاده از کدهای HTML باز هم مجاز نیست !"
3058
 
3059
  #: ../addons/transfer/myCRED-addon-transfer.php:560
3060
  msgid "Allow transfers between users."
3061
  msgstr "اجازه ی جابجایی امتیاز بین کاربران ."
3062
 
3063
  #: ../addons/transfer/myCRED-addon-transfer.php:562
 
3064
  msgid "(%s) Transfer"
3065
  msgstr "جابجایی (%s)"
3066
 
@@ -3085,6 +3494,7 @@ msgid "email"
3085
  msgstr "ایمیل"
3086
 
3087
  #: ../addons/transfer/myCRED-addon-transfer.php:780
 
3088
  msgid "recipients %s"
3089
  msgstr "گیرندگان %s"
3090
 
@@ -3097,6 +3507,7 @@ msgid "Amount:"
3097
  msgstr "مقدار امتیاز :"
3098
 
3099
  #: ../includes/mycred-about.php:75
 
3100
  msgid "Welcome to %s %s"
3101
  msgstr "به افزونه \"اعتبار من\" ( %s ) نسخه %s خوش آمدید ."
3102
 
@@ -3136,7 +3547,8 @@ msgstr ""
3136
  msgid "Excluded"
3137
  msgstr "بن شده ( محروم شده )"
3138
 
3139
- #: ../includes/mycred-admin.php:279 ../modules/mycred-module-log.php:250 ../modules/mycred-module-log.php:251
 
3140
  msgid "History"
3141
  msgstr "لیست تغییرات"
3142
 
@@ -3145,6 +3557,7 @@ msgid "Adjust"
3145
  msgstr "تطبیق"
3146
 
3147
  #: ../includes/mycred-admin.php:335 ../includes/mycred-admin.php:394
 
3148
  msgid "%singular% balance"
3149
  msgstr ""
3150
 
@@ -3261,6 +3674,7 @@ msgid "incorrect unix timestamp (to):"
3261
  msgstr ""
3262
 
3263
  #: ../includes/mycred-importer.php:11
 
3264
  msgid "%s Log Import"
3265
  msgstr ""
3266
 
@@ -3269,6 +3683,7 @@ msgid "Import log entries via a CSV file."
3269
  msgstr ""
3270
 
3271
  #: ../includes/mycred-importer.php:43
 
3272
  msgid "%s Balance Import"
3273
  msgstr ""
3274
 
@@ -3277,10 +3692,12 @@ msgid "Import balances."
3277
  msgstr ""
3278
 
3279
  #: ../includes/mycred-importer.php:75
 
3280
  msgid "%s CubePoints Import"
3281
  msgstr ""
3282
 
3283
- #: ../includes/mycred-importer.php:76 ../includes/importers/mycred-cubepoints.php:344
 
3284
  msgid "Import CubePoints log entries and / or balances."
3285
  msgstr ""
3286
 
@@ -3294,7 +3711,9 @@ msgstr ""
3294
 
3295
  #: ../includes/mycred-install.php:44
3296
  msgid "myCRED requires PHP 5.2.4 or higher. Version detected: "
3297
- msgstr "افزونه ی \"اعتبار من\" برای اجرا به PHP نسخه 5.2.4 نیاز دارد . نسخه ی یافت شده :"
 
 
3298
 
3299
  #: ../includes/mycred-install.php:49
3300
  msgid "myCRED requires SQL 5.0 or higher. Version detected: "
@@ -3302,8 +3721,8 @@ msgstr "افزونه ی \"اعتبار من\" برای اجرا به SQL نسخ
3302
 
3303
  #: ../includes/mycred-install.php:54
3304
  msgid ""
3305
- "Sorry but your WordPress installation does not reach the minimum requirements "
3306
- "for running myCRED. The following errors were given:"
3307
  msgstr ""
3308
  "پوزش می خواهیم ، اما سایت وردپرسی شما حداقل امکانات لازم برای اجرای افزونه "
3309
  "\"اعتبارمن\" را ندارد . خطاهای زیر پیش آمده :"
@@ -3321,6 +3740,7 @@ msgid "myCRED Setup"
3321
  msgstr "راه اندازی \"اعتبار من\""
3322
 
3323
  #: ../includes/mycred-install.php:385
 
3324
  msgid "%s Setup"
3325
  msgstr ""
3326
 
@@ -3330,11 +3750,11 @@ msgstr "گام"
3330
 
3331
  #: ../includes/mycred-install.php:411
3332
  msgid ""
3333
- "Click \"Begin Setup\" to install myCRED. You will be able to select your points "
3334
- "format, layout and security settings."
3335
  msgstr ""
3336
- "برای نصب \"اعتبار من\" بر روی \"آغاز نصب\" کلیک فرمایید . در ادامه قادر خواهید بود "
3337
- "تا طرح امتیازها ، نمایه و تنظیمات امنیتی خود را اعمال فرمایید ."
3338
 
3339
  #: ../includes/mycred-install.php:412
3340
  msgid "Begin Setup"
@@ -3410,29 +3830,30 @@ msgstr "بیشترین پرداخت %plural%"
3410
 
3411
  #: ../includes/mycred-install.php:556 ../modules/mycred-module-settings.php:390
3412
  msgid ""
3413
- "As an added security, you can set the maximum amount a user can gain or loose "
3414
- "in a single instance. If used, make sure this is the maximum amount a user "
3415
- "would be able to transfer, buy, or spend in your store. Use zero to disable."
 
3416
  msgstr ""
3417
- "برای امنیت بیشتر ، می توانید سقف مجازی برای امتیازی که یک کاربر در یک مرحله به "
3418
- "دست می آورد یا از دست می دهد را تعیین فرمایید . اگر از این امکان استفاده می "
3419
- "نمایید ، حتما فراموش نکنید که سقف مجازی برای قسمت های دیگر ، نظیر مقدار امتیازی "
3420
- "که کاربر می تواند منتقل کند ، بخرد یا در فروشگاه شما خرج کند را هم تعیین بکنید ."
3421
- " برای غیرفعال سازی این ویژگی عدد صفر را در کادر وارد فرمایید ."
3422
 
3423
  #: ../includes/mycred-install.php:563 ../modules/mycred-module-settings.php:397
3424
  msgid "Exclude those who can \"Edit Settings\"."
3425
  msgstr ""
3426
- "استثنا قائل شدن برای کسانی که امکان \"ویرایش تنظیمات\" را دارند . ( اگر می خواهید "
3427
- "از بین کسانی که این امکان را دارند ، دسترسی چند نفر را بگیرید ، اسامی آن ها را "
3428
- "در این کادر وارد فرمایید . )"
3429
 
3430
  #: ../includes/mycred-install.php:567 ../modules/mycred-module-settings.php:401
3431
  msgid "Exclude those who can \"Edit Users %plural%\"."
3432
  msgstr ""
3433
- "استثنا قائل شدن برای کسانی که امکان \"ویرایش %plural% کاربران\" را دارند . ( اگر "
3434
- "می خواهید از بین کسانی که این امکان را دارند ، دسترسی چند نفر را بگیرید ، اسامی "
3435
- "آن ها را در این کادر وارد فرمایید . )"
3436
 
3437
  #: ../includes/mycred-install.php:570 ../modules/mycred-module-settings.php:405
3438
  msgid "Exclude the following user IDs:"
@@ -3461,6 +3882,7 @@ msgid "Install & Run"
3461
  msgstr "نصب و راه اندازی"
3462
 
3463
  #: ../includes/mycred-log.php:389
 
3464
  msgid "Showing %d %s"
3465
  msgstr "نمایش %d %s"
3466
 
@@ -3481,6 +3903,7 @@ msgid "Current page"
3481
  msgstr ""
3482
 
3483
  #: ../includes/mycred-log.php:424
 
3484
  msgctxt "paging"
3485
  msgid "%1$s of %2$s"
3486
  msgstr ""
@@ -3519,8 +3942,8 @@ msgstr "فیــلتر"
3519
 
3520
  #: ../includes/mycred-log.php:609
3521
  msgid ""
3522
- "Log entries are exported to a CSV file and depending on the number of entries "
3523
- "selected, the process may take a few seconds."
3524
  msgstr ""
3525
 
3526
  #: ../includes/mycred-log.php:613
@@ -3543,7 +3966,8 @@ msgstr "جستجو در میان لیست گزارش"
3543
  msgid "search log entries"
3544
  msgstr "جستجو در بین داده ها"
3545
 
3546
- #: ../includes/mycred-log.php:842 ../modules/mycred-module-buddypress.php:232 ../modules/mycred-module-buddypress.php:245
 
3547
  msgid "All"
3548
  msgstr "همگی"
3549
 
@@ -3568,10 +3992,12 @@ msgid "Network Settings"
3568
  msgstr "تنظیمات ظبکه"
3569
 
3570
  #: ../includes/mycred-network.php:169
 
3571
  msgid "%s Network"
3572
  msgstr "شبکه %s"
3573
 
3574
  #: ../includes/mycred-network.php:175
 
3575
  msgid "Note! %s has not yet been setup."
3576
  msgstr "توجه ! %s هنوز نصب نشده است ."
3577
 
@@ -3580,6 +4006,7 @@ msgid "Network Settings Updated"
3580
  msgstr "تنظیمات شبکه به روزرسانی شد"
3581
 
3582
  #: ../includes/mycred-network.php:181
 
3583
  msgid "Configure network settings for %s."
3584
  msgstr "ویرایش تنظیمات شبکه برای %s ."
3585
 
@@ -3588,9 +4015,10 @@ msgid "Master Template"
3588
  msgstr "الگوی اصلی"
3589
 
3590
  #: ../includes/mycred-network.php:199
 
3591
  msgid ""
3592
- "If enabled, %s will use your main site's settings for all other sites in your "
3593
- "network."
3594
  msgstr ""
3595
  "اگر فعال باشد ، %s از تنظیمات سایت اصلی شما برای دیگر سایت های درون شبکه تان "
3596
  "استفاده خواهد کرد ."
@@ -3600,24 +4028,29 @@ msgid "Central Logging"
3600
  msgstr "تهیه لیست گزارش مرکزی"
3601
 
3602
  #: ../includes/mycred-network.php:213
 
3603
  msgid "If enabled, %s will log all site actions in your main site's log."
3604
- msgstr "اگر فعال باشد ، %s تمام اعمال انجام شده ی سایت ها را در سایت مرکزی لیست می کند ."
 
 
3605
 
3606
  #: ../includes/mycred-network.php:216
3607
  msgid "Site Block"
3608
  msgstr "مسدود کردن سایت"
3609
 
3610
  #: ../includes/mycred-network.php:220
 
3611
  msgid "Comma separated list of blog ids where %s is to be disabled."
3612
  msgstr ""
3613
- "لیستی از شناسه ی سایت هایی که با ویرگول از هم جدا شده و %s آن ها را غیرفعال می "
3614
- "کند ."
3615
 
3616
  #: ../includes/mycred-network.php:229
3617
  msgid "Save Network Settings"
3618
  msgstr "ذخیره تنظیمات شبکه"
3619
 
3620
  #: ../includes/mycred-overview.php:25
 
3621
  msgid "%s Overview"
3622
  msgstr ""
3623
 
@@ -3633,7 +4066,8 @@ msgstr ""
3633
  msgid "Deducted"
3634
  msgstr ""
3635
 
3636
- #: ../includes/mycred-overview.php:120 ../includes/mycred-overview.php:127 ../modules/mycred-module-addons.php:235
 
3637
  msgid "Transfers"
3638
  msgstr ""
3639
 
@@ -3648,8 +4082,8 @@ msgstr "این ویژگی نیازمند آن است که پرمالینک ها
3648
  #: ../includes/mycred-remote.php:526
3649
  msgid "Click Update Settings to load the Remote API settings."
3650
  msgstr ""
3651
- "بر روی به روز رسانی تنظیمات کلیک کنید تا تنظیمات دسترسی از راه دور API بارگذاری "
3652
- "شود ."
3653
 
3654
  #: ../includes/mycred-remote.php:528
3655
  msgid "Allow Remote Access"
@@ -3688,19 +4122,21 @@ msgid ""
3688
  "Keep this key safe! Those you share this key with will be able to remotely "
3689
  "deduct / add / transfer %plural%!"
3690
  msgstr ""
3691
- "این کلید را در جای امنی نگهداری کنید ! کسانی که این کلید را با آن ها به اشتراک "
3692
- "می گذارید ، توانایی این را خواهند داشت که %plural% اضافه / کم کنند و یا حتی "
3693
- "%plural% انتقال دهند ."
3694
 
3695
  #: ../includes/mycred-remote.php:568
3696
  msgid "Incoming URI"
3697
  msgstr "آدرس اینترنتی ورودی"
3698
 
3699
  #: ../includes/mycred-remote.php:572
3700
- msgid "The incoming call address. Remote calls made to any other URL will be ignored."
 
 
3701
  msgstr ""
3702
- "آدرس فراخوان ورودی . فراخوان های راه دور که برای آدرس های اینترنتیِ دیگر ساخته "
3703
- "شده اند ، نادیده گرفته خواهند شد !"
3704
 
3705
  #: ../includes/mycred-remote.php:575
3706
  msgid "Debug Mode"
@@ -3747,10 +4183,12 @@ msgid "A video ID is required for this shortcode"
3747
  msgstr "شناسه ی ویدیو برای این \"شورت کد\" نیاز می باشد"
3748
 
3749
  #: ../includes/mycred-widgets.php:21
 
3750
  msgid "Show the current users %s balance"
3751
  msgstr "نمایش میزان امتیازات %s اخیری که برای کاربران ثبت شده"
3752
 
3753
  #: ../includes/mycred-widgets.php:23
 
3754
  msgid "(%s) My Balance"
3755
  msgstr "میزان امتیازات (%s) من"
3756
 
@@ -3764,7 +4202,9 @@ msgstr "گزارش جابجایی %plural%"
3764
 
3765
  #: ../includes/mycred-widgets.php:174 ../includes/mycred-widgets.php:583
3766
  msgid "<a href=\"%login_url_here%\">Login</a> to view your balance."
3767
- msgstr "برای دیدن میزان امتیازات خود ، لطفا <a href=\"%login_url_here%\">وارد</a> شوید ."
 
 
3768
 
3769
  #: ../includes/mycred-widgets.php:213
3770
  msgid "Layout"
@@ -3803,10 +4243,12 @@ msgid "Message"
3803
  msgstr "پیام"
3804
 
3805
  #: ../includes/mycred-widgets.php:323
 
3806
  msgid "Show a list of users sorted by their %s balance"
3807
  msgstr "نمایش لیستی از کاربران که بر اساس تعداد امتیازات %s خودشان مرتب شده اند"
3808
 
3809
  #: ../includes/mycred-widgets.php:325
 
3810
  msgid "(%s) Leaderboard"
3811
  msgstr "جدول برترین های (%s)"
3812
 
@@ -3842,8 +4284,8 @@ msgstr ""
3842
 
3843
  #: ../includes/mycred-widgets.php:446
3844
  msgid ""
3845
- "If the current user is not in this leaderboard, you can select to append them "
3846
- "at the end with their current position."
3847
  msgstr ""
3848
 
3849
  #: ../includes/mycred-widgets.php:495
@@ -3851,6 +4293,7 @@ msgid "Shows the current users balances for each point type."
3851
  msgstr ""
3852
 
3853
  #: ../includes/mycred-widgets.php:497
 
3854
  msgid "(%s) Wallet"
3855
  msgstr ""
3856
 
@@ -3862,29 +4305,39 @@ msgstr ""
3862
  msgid "Row Layout"
3863
  msgstr ""
3864
 
3865
- #: ../includes/importers/mycred-balances.php:81 ../includes/importers/mycred-balances.php:159 ../includes/importers/mycred-balances.php:198 ../includes/importers/mycred-balances.php:213 ../includes/importers/mycred-log-entries.php:81 ../includes/importers/mycred-log-entries.php:126 ../includes/importers/mycred-log-entries.php:165 ../includes/importers/mycred-log-entries.php:180
 
 
 
 
 
3866
  msgid "Sorry, there has been an error."
3867
  msgstr ""
3868
 
3869
- #: ../includes/importers/mycred-balances.php:82 ../includes/importers/mycred-log-entries.php:82
 
3870
  msgid "The file does not exist, please try again."
3871
  msgstr ""
3872
 
3873
- #: ../includes/importers/mycred-balances.php:160 ../includes/importers/mycred-log-entries.php:127
 
3874
  msgid "The CSV is invalid."
3875
  msgstr ""
3876
 
3877
  #: ../includes/importers/mycred-balances.php:171
 
3878
  msgid ""
3879
  "Import complete - A total of <strong>%d</strong> balances were successfully "
3880
  "imported. <strong>%d</strong> was skipped."
3881
  msgstr ""
3882
 
3883
- #: ../includes/importers/mycred-balances.php:181 ../includes/importers/mycred-cubepoints.php:293 ../includes/importers/mycred-log-entries.php:148
 
3884
  msgid "View Log"
3885
  msgstr ""
3886
 
3887
- #: ../includes/importers/mycred-balances.php:181 ../includes/importers/mycred-cubepoints.php:293 ../includes/importers/mycred-log-entries.php:148
 
3888
  msgid "Import More"
3889
  msgstr ""
3890
 
@@ -3896,25 +4349,31 @@ msgstr ""
3896
  msgid "Import balances from a CSV file."
3897
  msgstr ""
3898
 
3899
- #: ../includes/importers/mycred-balances.php:252 ../includes/importers/mycred-log-entries.php:219
 
3900
  msgid ""
3901
  "Before you can upload your import file, you will need to fix the following "
3902
  "error:"
3903
  msgstr ""
3904
 
3905
- #: ../includes/importers/mycred-balances.php:261 ../includes/importers/mycred-log-entries.php:228
 
3906
  msgid "Choose a file from your computer:"
3907
  msgstr ""
3908
 
3909
- #: ../includes/importers/mycred-balances.php:267 ../includes/importers/mycred-log-entries.php:234
 
 
3910
  msgid "Maximum size: %s"
3911
  msgstr ""
3912
 
3913
- #: ../includes/importers/mycred-balances.php:272 ../includes/importers/mycred-log-entries.php:239
 
3914
  msgid "OR enter path to file:"
3915
  msgstr ""
3916
 
3917
- #: ../includes/importers/mycred-balances.php:279 ../includes/importers/mycred-log-entries.php:246
 
3918
  msgid "Delimiter"
3919
  msgstr ""
3920
 
@@ -3930,7 +4389,8 @@ msgstr ""
3930
  msgid "Adjust current balances according to the amount in this CSV file"
3931
  msgstr ""
3932
 
3933
- #: ../includes/importers/mycred-balances.php:292 ../includes/importers/mycred-log-entries.php:252
 
3934
  msgid "Upload file and import"
3935
  msgstr ""
3936
 
@@ -3942,7 +4402,9 @@ msgstr ""
3942
  msgid "No log entries were imported!"
3943
  msgstr ""
3944
 
3945
- #: ../includes/importers/mycred-cubepoints.php:282 ../includes/importers/mycred-log-entries.php:138
 
 
3946
  msgid ""
3947
  "Import complete - A total of <strong>%d</strong> entries were successfully "
3948
  "imported. <strong>%d</strong> was skipped."
@@ -3977,7 +4439,9 @@ msgid "Import"
3977
  msgstr "درون ریزی"
3978
 
3979
  #: ../includes/importers/mycred-cubepoints.php:360
3980
- msgid "Warning! Importing CubePoints balances will replace your users myCRED balance!"
 
 
3981
  msgstr ""
3982
 
3983
  #: ../includes/importers/mycred-cubepoints.php:378
@@ -3999,14 +4463,14 @@ msgstr "افزونه های جانبی"
3999
  #: ../modules/mycred-module-addons.php:158
4000
  msgid ""
4001
  "The <strong>buy</strong>CRED Add-on allows your users to buy points using "
4002
- "PayPal, Skrill (Moneybookers) or NETbilling. <strong>buy</strong>CRED can also "
4003
- "let your users buy points for other members."
4004
  msgstr ""
4005
  "توسط افزونه ی جانبی <strong>خرید سکه یا امتیاز</strong> به کاربران خود امکان "
4006
- "خرید امتیاز توسط درگاه های مختلف بانکی نظیر پی پال ، مانی بوکرز و یا نت بیلینگ "
4007
- "، را می دهید . همچنین از این طریق می توانید این امکان را برای کاربران فراهم "
4008
- "کنید تا برای سایر اعضای سایت هم امتیاز بخرند . ( آقای ایکس برای آقای ایگرگ "
4009
- "امتیاز بخرد ! )"
4010
 
4011
  #: ../modules/mycred-module-addons.php:169
4012
  msgid ""
@@ -4031,8 +4495,8 @@ msgstr ""
4031
 
4032
  #: ../modules/mycred-module-addons.php:214
4033
  msgid ""
4034
- "Create ranks for users reaching a certain number of %_plural% with the option "
4035
- "to add logos for each rank."
4036
  msgstr ""
4037
 
4038
  #: ../modules/mycred-module-addons.php:225
@@ -4044,8 +4508,8 @@ msgstr ""
4044
  "این افزونه ی جانبی به شما این امکان را خواهد داد تا پست ها ، صفحه ها و یا هر "
4045
  "نوع محتوای عمومی دیگر را روی وبسایتتان بفروشید . هم می توانید کل یک متن را "
4046
  "بفروشید و هم می توانید با استفاده از شورت کدهای تولیدی این افزونه ، بخشی از "
4047
- "محتوای مورد نظرتان را از دسترس عموم خارج کرده و آن ها را تحت عناوین مختلف ، مثل "
4048
- "\"تیزر\" و یا \"پیش نمایش\" به فروش رسانید ."
4049
 
4050
  #: ../modules/mycred-module-addons.php:236
4051
  msgid ""
@@ -4057,6 +4521,7 @@ msgstr ""
4057
  "mycred_transfer و یا ابزارک جابجایی امتیاز \"اعتبار من\" ."
4058
 
4059
  #: ../modules/mycred-module-addons.php:272
 
4060
  msgid "%s Add-ons"
4061
  msgstr "افزونه های جانبی %s"
4062
 
@@ -4075,6 +4540,7 @@ msgstr ""
4075
  "ببخشند ."
4076
 
4077
  #: ../modules/mycred-module-addons.php:306
 
4078
  msgid "You can find more add-ons in our %s."
4079
  msgstr "می توانید افزونه های بیشتر را در %s ما بیابید ."
4080
 
@@ -4115,6 +4581,7 @@ msgid "My History"
4115
  msgstr "لیست اعمال من"
4116
 
4117
  #: ../modules/mycred-module-buddypress.php:31
 
4118
  msgid "%s's History"
4119
  msgstr "لیست اعمال و گزارشات %s"
4120
 
@@ -4135,10 +4602,12 @@ msgid "BuddyPress"
4135
  msgstr "افزونه ی بادی پرس ( افزونه ی محبوب ساخت شبکه ی اجتماعی بر روی وردپرس )"
4136
 
4137
  #: ../modules/mycred-module-buddypress.php:389
 
4138
  msgid "%singular% Balance"
4139
  msgstr "میزان %singular%"
4140
 
4141
  #: ../modules/mycred-module-buddypress.php:405
 
4142
  msgid "Members and visitors can other members %_singular% balance."
4143
  msgstr ""
4144
 
@@ -4161,6 +4630,7 @@ msgid "Title shown to me"
4161
  msgstr "عنوان به من نمایش داده شد"
4162
 
4163
  #: ../modules/mycred-module-buddypress.php:445
 
4164
  msgid "Title shown to others. Use %s to show the first name."
4165
  msgstr ""
4166
  "عنوان به کاربران نمایش داده شد . برای اینکه فقط نام اول نمایش داده شود از %s "
@@ -4186,56 +4656,67 @@ msgstr "از فضاهای خالی استفاده نکنید ( اسپیس نزن
4186
  msgid "Number of history entries to show"
4187
  msgstr "تعداد داده های ورودی (تغییرات) قابل نمایش لیست"
4188
 
4189
- #: ../modules/mycred-module-hooks.php:25 ../modules/mycred-module-hooks.php:26 ../modules/mycred-module-hooks.php:27
 
4190
  msgid "Hooks"
4191
  msgstr "پنل تنظیمات امتیازها"
4192
 
4193
  #: ../modules/mycred-module-hooks.php:87
 
4194
  msgid "%plural% for registrations"
4195
  msgstr "اهدای %_plural% برای ثبت نام"
4196
 
4197
  #: ../modules/mycred-module-hooks.php:88
 
4198
  msgid "Award %_plural% for users joining your website."
4199
  msgstr "برای کاربرانی که عضوی از سایت شما می شوند %_plural% جایزه دهید"
4200
 
4201
  #: ../modules/mycred-module-hooks.php:94
 
4202
  msgid "%plural% for logins"
4203
  msgstr "اهدای %_plural% برای وارد شدن به سایت"
4204
 
4205
  #: ../modules/mycred-module-hooks.php:95
 
4206
  msgid ""
4207
  "Award %_plural% for logging in to your website. You can also set an optional "
4208
  "limit."
4209
  msgstr ""
4210
- "به کاربرانی که در سایت شما لوگین می کنند %_plural% جایزه دهید . البته می توانید "
4211
- "محدودیت های اختیاری هم برای این بخش تعیین کنید ."
4212
 
4213
  #: ../modules/mycred-module-hooks.php:101
 
4214
  msgid "%plural% for publishing content"
4215
  msgstr "اهدای %_plural% به کاربران ، برای انتشار مطلب در سایت شما"
4216
 
4217
  #: ../modules/mycred-module-hooks.php:102
 
4218
  msgid ""
4219
  "Award %_plural% for publishing content on your website. If your custom post "
4220
  "type is not shown bellow, make sure it is set to \"Public\"."
4221
  msgstr ""
4222
- "به کاربرانی که در سایت شما مطلبی را انتشار می دهند ( با اشتراک گذاری فرق می کند "
4223
- ") ، %_plural% جایزه دهید . اگر نوع مطلبی که می خواهید در زیر نیامده است ، ابتدا "
4224
- "اطمینان حاصل کنید که نوع مطلب مورد نظرتان \"عمومی\" باشد ."
4225
 
4226
  #: ../modules/mycred-module-hooks.php:108
 
4227
  msgid "%plural% for comments"
4228
  msgstr "اهدای %_plural% برای ثبت دیدگاه"
4229
 
4230
  #: ../modules/mycred-module-hooks.php:108
 
4231
  msgid "%plural% for Disqus comments"
4232
  msgstr ""
4233
 
4234
  #: ../modules/mycred-module-hooks.php:109
 
4235
  msgid "Award %_plural% for making comments."
4236
  msgstr "به کاربرانی که در بخش های مختلف سایت شما نظر می دهند ، %_plural% جایزه دهید ."
4237
 
4238
  #: ../modules/mycred-module-hooks.php:115
 
4239
  msgid "%plural% for clicking on links"
4240
  msgstr "اهدای %_plural% برای کلیک کردن بر روی لینک ها"
4241
 
@@ -4248,18 +4729,20 @@ msgstr ""
4248
  "%_plural% جایزه دهید ."
4249
 
4250
  #: ../modules/mycred-module-hooks.php:122
 
4251
  msgid "%plural% for viewing Videos"
4252
  msgstr "اهدای %_plural% برای تماشای ویدیوها"
4253
 
4254
  #: ../modules/mycred-module-hooks.php:123
4255
  msgid ""
4256
- "Award %_plural% to users who watches videos embedded using the [mycred_video] "
4257
- "shortcode."
4258
  msgstr ""
4259
- "به کاربرانی که ویدیوهای تولید شده با کد-کوتاه [mycred_video] را تماشا می کنند "
4260
- "، %_plural% جایزه دهید ."
4261
 
4262
  #: ../modules/mycred-module-hooks.php:129
 
4263
  msgid "%plural% for referrals"
4264
  msgstr ""
4265
 
@@ -4268,6 +4751,7 @@ msgid "Award %_plural% to users who refer either visitors and/or new member sign
4268
  msgstr ""
4269
 
4270
  #: ../modules/mycred-module-hooks.php:163
 
4271
  msgid "%s Hooks"
4272
  msgstr "پنل تنظیمات امتیازهای %s"
4273
 
@@ -4276,26 +4760,64 @@ msgid ""
4276
  "Hooks are instances where %_plural% are awarded or deducted from a user, "
4277
  "depending on their actions around your website."
4278
  msgstr ""
4279
- "پنل تنظیماتی امتیازها محلی است که شما تعیین می کنید چه مقدار %_plural% بر اساس "
4280
- "انجام انواع عملیات ها ، به کاربرانتان اهدا شده و یا از آن ها کسر گردد ."
4281
-
4282
- #: ../modules/mycred-module-hooks.php:326 ../modules/mycred-module-hooks.php:638 ../modules/mycred-module-hooks.php:651 ../modules/mycred-module-hooks.php:687 ../modules/mycred-module-hooks.php:1067 ../modules/mycred-module-hooks.php:1084 ../modules/mycred-module-hooks.php:1101 ../modules/mycred-module-hooks.php:2212 ../modules/mycred-module-hooks.php:2241 ../plugins/mycred-hook-badgeOS.php:281 ../plugins/mycred-hook-bbPress.php:471 ../plugins/mycred-hook-bbPress.php:484 ../plugins/mycred-hook-bbPress.php:497 ../plugins/mycred-hook-bbPress.php:515 ../plugins/mycred-hook-bbPress.php:528 ../plugins/mycred-hook-bbPress.php:547 ../plugins/mycred-hook-bbPress.php:575 ../plugins/mycred-hook-buddypress-gallery.php:104 ../plugins/mycred-hook-buddypress-links.php:254 ../plugins/mycred-hook-buddypress-links.php:267 ../plugins/mycred-hook-buddypress-links.php:280 ../plugins/mycred-hook-buddypress-links.php:291 ../plugins/mycred-hook-buddypress-links.php:304 ../plugins/mycred-hook-buddypress-links.php:317 ../plugins/mycred-hook-buddypress-media.php:170 ../plugins/mycred-hook-buddypress-media.php:180 ../plugins/mycred-hook-buddypress-media.php:190 ../plugins/mycred-hook-buddypress-media.php:203 ../plugins/mycred-hook-buddypress-media.php:213 ../plugins/mycred-hook-buddypress-media.php:223 ../plugins/mycred-hook-buddypress.php:381 ../plugins/mycred-hook-buddypress.php:394 ../plugins/mycred-hook-buddypress.php:407 ../plugins/mycred-hook-buddypress.php:420 ../plugins/mycred-hook-buddypress.php:433 ../plugins/mycred-hook-buddypress.php:446 ../plugins/mycred-hook-buddypress.php:459 ../plugins/mycred-hook-buddypress.php:472 ../plugins/mycred-hook-buddypress.php:926 ../plugins/mycred-hook-buddypress.php:939 ../plugins/mycred-hook-buddypress.php:952 ../plugins/mycred-hook-buddypress.php:965 ../plugins/mycred-hook-buddypress.php:978 ../plugins/mycred-hook-buddypress.php:991 ../plugins/mycred-hook-buddypress.php:1005 ../plugins/mycred-hook-buddypress.php:1018 ../plugins/mycred-hook-buddypress.php:1031 ../plugins/mycred-hook-buddypress.php:1044 ../plugins/mycred-hook-contact-form7.php:137 ../plugins/mycred-hook-gravityforms.php:113 ../plugins/mycred-hook-invite-anyone.php:160 ../plugins/mycred-hook-invite-anyone.php:181 ../plugins/mycred-hook-jetpack.php:506 ../plugins/mycred-hook-jetpack.php:519 ../plugins/mycred-hook-simplepress.php:330 ../plugins/mycred-hook-simplepress.php:343 ../plugins/mycred-hook-simplepress.php:356 ../plugins/mycred-hook-simplepress.php:380
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
4283
  msgid "Log template"
4284
  msgstr "نمونه ی لیست گزارش ( لوگ )"
4285
 
4286
- #: ../modules/mycred-module-hooks.php:527 ../modules/mycred-module-hooks.php:2220 ../modules/mycred-module-hooks.php:2249 ../plugins/mycred-hook-invite-anyone.php:165 ../plugins/mycred-hook-invite-anyone.php:186
 
 
4287
  msgid "Limit"
4288
  msgstr "محدوده"
4289
 
4290
  #: ../modules/mycred-module-hooks.php:632
 
4291
  msgid "%plural% for Posts"
4292
  msgstr "اهدای %plural% برای پست ها"
4293
 
4294
  #: ../modules/mycred-module-hooks.php:645
 
4295
  msgid "%plural% for Pages"
4296
  msgstr "اهدای %plural% برای ایجاد صفحات"
4297
 
4298
  #: ../modules/mycred-module-hooks.php:681
 
4299
  msgid "%plural% for %s"
4300
  msgstr "اهدای %plural% برای %s"
4301
 
@@ -4309,11 +4831,13 @@ msgstr ""
4309
  msgid "Approved Comment"
4310
  msgstr "نظرات تایید شده"
4311
 
4312
- #: ../modules/mycred-module-hooks.php:1058 ../modules/mycred-module-hooks.php:1075 ../modules/mycred-module-hooks.php:1092
 
4313
  msgid "Comment Author"
4314
  msgstr "نویسنده ی دیدگاه"
4315
 
4316
- #: ../modules/mycred-module-hooks.php:1062 ../modules/mycred-module-hooks.php:1079 ../modules/mycred-module-hooks.php:1096
 
4317
  msgid "Content Author"
4318
  msgstr "نویسنده ی مطلب"
4319
 
@@ -4334,8 +4858,8 @@ msgid ""
4334
  "The number of comments per post that grants %_plural% to the comment author. "
4335
  "Use zero for unlimited."
4336
  msgstr ""
4337
- "تعداد دیدگاه های مجاز برای هر پست ، که باعث کسب %_plural% برای کاربر خواهد شد . "
4338
- "برای برداشتن این محدودیت عدد صفر را وارد کنید ."
4339
 
4340
  #: ../modules/mycred-module-hooks.php:1115
4341
  msgid "Limit per day"
@@ -4348,10 +4872,12 @@ msgstr ""
4348
  "این محدودیت عدد صفر را وارد کنید ."
4349
 
4350
  #: ../modules/mycred-module-hooks.php:1122
4351
- msgid "%plural% is to be awarded even when comment authors reply to their own comment."
 
 
4352
  msgstr ""
4353
- "اهدای %_plural% حتی برای زمانی که کاربر به نظر قبلی خودش پاسخ بدهد ( نظرهای تو "
4354
- "در تو )"
4355
 
4356
  #: ../modules/mycred-module-hooks.php:1193
4357
  msgid "Once for each unique URL"
@@ -4363,13 +4889,14 @@ msgstr "یک بار برای هر شناسه ( آی دی ) لینک یکتا"
4363
 
4364
  #: ../modules/mycred-module-hooks.php:1386
4365
  msgid ""
4366
- "The default amount to award for clicking on links. You can override this in the "
4367
- "shortcode."
4368
  msgstr ""
4369
- "مقدار پیش فرضی که برای کلیک بر روی لینک ها اهدا می گردد . می توانید این مقدار "
4370
- "را در شورت کد مربوطه ، مجددا تنظیم نمایید ."
4371
 
4372
  #: ../modules/mycred-module-hooks.php:1393
 
4373
  msgid "Custom tags: %url%, %title% or %id%."
4374
  msgstr ""
4375
 
@@ -4380,13 +4907,14 @@ msgstr "نکته !"
4380
  #: ../modules/mycred-module-hooks.php:1404
4381
  msgid ""
4382
  "If no ID is set when using the mycred_link shortcode, the shortcode will "
4383
- "generate one automatically based on the value set under href. If you are using "
4384
- "this feature for \"sharing\" content, it is recommended that you limit by ID."
 
4385
  msgstr ""
4386
  "اگر به هنگام استفاده از کد-کوتاه mycred_link shortcode هیچ شناسه ای ( ID ) "
4387
- "استفاده نشود ، خود کد-کوتاه به صورت اتوماتیک بر اساس داده های موجود در زیر href "
4388
- "، شناسه ای ایجاد می کند . اگر از این ویژگی برای به اشتراک گذاری محتوا استفاده "
4389
- "می کنید ، پیشنهاد می گردد با شناسه کار کنید ."
4390
 
4391
  #: ../modules/mycred-module-hooks.php:1406 ../modules/mycred-module-hooks.php:1762
4392
  msgid "Available Shortcode"
@@ -4401,6 +4929,7 @@ msgid "Award Logic"
4401
  msgstr "منطق اهدای امتیازات"
4402
 
4403
  #: ../modules/mycred-module-hooks.php:1738
 
4404
  msgid "Select when %_plural% should be awarded or deducted."
4405
  msgstr "مشخص کنید چه موقع باید %_plural% اهدا و یا کسر بشود ."
4406
 
@@ -4429,19 +4958,19 @@ msgid ""
4429
  "The maximum percentage a users view of a movie can differ from the actual "
4430
  "length."
4431
  msgstr ""
4432
- "بیشترین درصد ممکنی که طول یک ویدیو ممکنه با چیزی که برای کاربران نمایش داده می "
4433
- "شه ، تفاوت پیدا کنه"
4434
 
4435
  #: ../modules/mycred-module-hooks.php:1758
4436
  msgid ""
4437
- "Do not set this value to zero! A lot of thing can happen while a user watches a "
4438
- "movie and sometimes a few seconds can drop of the counter due to buffering or "
4439
- "play back errors."
4440
  msgstr ""
4441
  "عدد این کادر را برابر صفر قرار ندهید ! زمان هایی که کاربر ویدیویی رو نگاه می "
4442
- "کنه ، اتفاقات زیادی ممکنه پیش بیاد و گاهی وقتا بر اساس خطاهایی که اون ویدیو در "
4443
- "طی بارگذاری و یا پخش مجدد می گیره ، ممکنه چند ثانیه ش اینور و اونور بشه ( روی "
4444
- "ثانیه شمار ویدیو تغییر ایجاد کنه )"
4445
 
4446
  #: ../modules/mycred-module-hooks.php:1826
4447
  msgid "Affiliate Program"
@@ -4509,8 +5038,8 @@ msgstr ""
4509
 
4510
  #: ../modules/mycred-module-hooks.php:2298
4511
  msgid ""
4512
- "Option to inser the referral link in users profiles. Links will only be visible "
4513
- "to users viewing their own profiles or administrators."
4514
  msgstr ""
4515
 
4516
  #: ../modules/mycred-module-hooks.php:2304
@@ -4547,7 +5076,8 @@ msgstr ""
4547
  msgid "Available Shortcodes"
4548
  msgstr ""
4549
 
4550
- #: ../modules/mycred-module-log.php:185 ../modules/mycred-module-log.php:206 ../modules/mycred-module-settings.php:61 ../modules/mycred-module-settings.php:102
 
4551
  msgid "Access denied for this action"
4552
  msgstr "عدم دسترسی مجاز برای انجام این عملیات"
4553
 
@@ -4567,7 +5097,8 @@ msgstr ""
4567
  msgid "Entries"
4568
  msgstr "داده های ورودی"
4569
 
4570
- #: ../modules/mycred-module-log.php:301 ../modules/mycred-module-log.php:381 ../modules/mycred-module-log.php:625 ../modules/mycred-module-settings.php:570
 
4571
  msgid "Export"
4572
  msgstr "خروجی گرفتن"
4573
 
@@ -4576,6 +5107,7 @@ msgid "Search results for"
4576
  msgstr "نتایج جستجو برای عبارت"
4577
 
4578
  #: ../modules/mycred-module-log.php:375
 
4579
  msgid "%s Log"
4580
  msgstr ""
4581
 
@@ -4604,10 +5136,12 @@ msgid "Update Log Entry"
4604
  msgstr ""
4605
 
4606
  #: ../modules/mycred-module-log.php:619
 
4607
  msgid "My %s History"
4608
  msgstr ""
4609
 
4610
- #: ../modules/mycred-module-settings.php:65 ../modules/mycred-module-settings.php:106 ../modules/mycred-module-settings.php:148
 
4611
  msgid "Missing point type"
4612
  msgstr ""
4613
 
@@ -4620,10 +5154,12 @@ msgid "No users found to export"
4620
  msgstr "کاربری برای خروجی گرفتن یافت نشد"
4621
 
4622
  #: ../modules/mycred-module-settings.php:330
 
4623
  msgid "%s Settings"
4624
  msgstr "تنظیمات %s"
4625
 
4626
  #: ../modules/mycred-module-settings.php:333
 
4627
  msgid "Adjust your core or add-on settings. Follow us on: %s %s"
4628
  msgstr ""
4629
 
@@ -4636,6 +5172,7 @@ msgid "Name"
4636
  msgstr "نام"
4637
 
4638
  #: ../modules/mycred-module-settings.php:345
 
4639
  msgid "Accessible though the %singular% template tag."
4640
  msgstr "از بخش نمونه تگ های %singular% نیز قابل استفاده می باشد"
4641
 
@@ -4663,7 +5200,8 @@ msgstr "جدا کننده"
4663
  msgid "Edit Settings"
4664
  msgstr "تنظیم مجدد"
4665
 
4666
- #: ../modules/mycred-module-settings.php:380 ../modules/mycred-module-settings.php:385
 
4667
  msgid "Capability to check for."
4668
  msgstr "توانایی بررسی"
4669
 
@@ -4709,7 +5247,8 @@ msgstr "خروجی گرفتن به صورت فایل CVS"
4709
  msgid "Default"
4710
  msgstr ""
4711
 
4712
- #: ../modules/mycred-module-settings.php:480 ../modules/mycred-module-settings.php:499 ../modules/mycred-module-settings.php:521
 
4713
  msgid "Meta Key"
4714
  msgstr "کلید اطلاعات"
4715
 
@@ -4743,8 +5282,8 @@ msgstr "ورود کاربر"
4743
 
4744
  #: ../modules/mycred-module-settings.php:562
4745
  msgid ""
4746
- "Use ID if you intend to use this export as a backup of your current site while "
4747
- "Email is recommended if you want to export to a different site."
4748
  msgstr ""
4749
 
4750
  #: ../modules/mycred-module-settings.php:565
@@ -4752,30 +5291,36 @@ msgid "Import Log Entry"
4752
  msgstr "وارد کردن لیست گزارشات ( لوگ ) داده های ورودی"
4753
 
4754
  #: ../modules/mycred-module-settings.php:567
 
4755
  msgid ""
4756
- "Optional log entry to use if you intend to import this file in a different %s "
4757
- "installation."
4758
  msgstr ""
4759
- "لیست گزارشات ( لوگ ) اختیاری برای داده های ورودی ، اگر قصد دارید این فایل را در "
4760
- "مرحله ی نصب %s دیگری وارد فرمایید ."
4761
 
4762
  #: ../plugins/mycred-hook-badgeOS.php:20
4763
  msgid "BadgeOS"
4764
- msgstr "افزونه ی BadgeOS ( افزونه ی پیشرفته ی مدال دهی و اعطای تقدیرنامه یا گواهینامه )"
 
 
4765
 
4766
  #: ../plugins/mycred-hook-badgeOS.php:21
4767
  msgid ""
4768
  "Default settings for each BadgeOS Achievement type. These settings may be "
4769
  "overridden for individual achievement type."
4770
  msgstr ""
4771
- "تنظیمات پیش فرض برای هر کدام از مدال های badgeOS . می توان این تنظیمات را برای "
4772
- "مدال ها و گواهینامه های شخصی ، مجددا ویرایش نمود ."
4773
 
4774
  #: ../plugins/mycred-hook-badgeOS.php:98
4775
- msgid "Please setup your <a href=\"%s\">default settings</a> before using this feature."
 
 
 
4776
  msgstr ""
4777
- "برای استفاده از این ویژگی ، لطفا ابتدا <a href=\"%s\"> تنظیمات پیش فرض </a> خود "
4778
- "را سفارشی سازی کنید"
4779
 
4780
  #: ../plugins/mycred-hook-badgeOS.php:109 ../plugins/mycred-hook-badgeOS.php:111
4781
  msgid "%plural% to Award"
@@ -4790,6 +5335,7 @@ msgid "Deduction Log Template"
4790
  msgstr "نمونه گزارشاتِ ( لوگ ) کسر امتیاز"
4791
 
4792
  #: ../plugins/mycred-hook-badgeOS.php:261
 
4793
  msgid "Default %s for %s"
4794
  msgstr "%s پیش فرض برای %s"
4795
 
@@ -4806,50 +5352,65 @@ msgid "bbPress"
4806
  msgstr "افزونه ی انجمن ساز بی بی پرس"
4807
 
4808
  #: ../plugins/mycred-hook-bbPress.php:19
 
4809
  msgid "Awards %_plural% for bbPress actions."
4810
  msgstr "اهدای %_plural% برای فعالیت در بی بی پرس ( افزونه ی انجمن ساز برای وردپرس )"
4811
 
4812
  #: ../plugins/mycred-hook-bbPress.php:464
 
4813
  msgid "%plural% for New Forum"
4814
  msgstr "اهدای %plural% برای انجمن جدید"
4815
 
4816
  #: ../plugins/mycred-hook-bbPress.php:477
 
4817
  msgid "%plural% for Forum Deletion"
4818
  msgstr "اهدای %plural% برای حذف یا ادیت انجمن"
4819
 
4820
- #: ../plugins/mycred-hook-bbPress.php:490 ../plugins/mycred-hook-simplepress.php:323
 
 
4821
  msgid "%plural% for New Topic"
4822
  msgstr "اهدای %plural% برای تاپیک جدید"
4823
 
4824
  #: ../plugins/mycred-hook-bbPress.php:504
 
4825
  msgid "Forum authors can receive %_plural% for creating new topics."
4826
  msgstr "نویسندگان انجمن می توانند برای ساختن تاپیک %plural% دریافت کنند ."
4827
 
4828
- #: ../plugins/mycred-hook-bbPress.php:508 ../plugins/mycred-hook-bbPress.php:568 ../plugins/mycred-hook-simplepress.php:336
 
 
4829
  msgid "%plural% for Topic Deletion"
4830
  msgstr "اهدای %plural% برای پاکسازی و یا ادیت تاپیک"
4831
 
4832
  #: ../plugins/mycred-hook-bbPress.php:521
 
4833
  msgid "%plural% for Favorited Topic"
4834
  msgstr "اهدای %plural% برای تاپیک های مورد علاقه شده"
4835
 
4836
- #: ../plugins/mycred-hook-bbPress.php:534 ../plugins/mycred-hook-bbPress.php:558 ../plugins/mycred-hook-buddypress.php:375 ../plugins/mycred-hook-simplepress.php:367
 
 
4837
  msgid "Daily Limit"
4838
  msgstr "محدودیت روزانه"
4839
 
4840
- #: ../plugins/mycred-hook-bbPress.php:536 ../plugins/mycred-hook-bbPress.php:560 ../plugins/mycred-hook-simplepress.php:369
 
4841
  msgid "Use zero for unlimited"
4842
  msgstr "برای برداشتن این محدودیت عدد صفر را وارد فرمایید"
4843
 
4844
  #: ../plugins/mycred-hook-bbPress.php:540
 
4845
  msgid "%plural% for New Reply"
4846
  msgstr "اهدای %plural% برای پاسخ دادن به تاپیک"
4847
 
4848
  #: ../plugins/mycred-hook-bbPress.php:554
 
4849
  msgid "Topic authors can receive %_plural% for replying to their own Topic"
4850
  msgstr "نویسندگان تاپیک می توانند برای پاسخ به تاپیک خودشان %_plural% دریافت کنند"
4851
 
4852
  #: ../plugins/mycred-hook-bbPress.php:564
 
4853
  msgid "Show users %_plural% balance in replies"
4854
  msgstr "نمایش دادن %_plural% کاربران در جواب"
4855
 
@@ -4858,12 +5419,14 @@ msgid "BuddyPress: Gallery Actions"
4858
  msgstr "بادی پرس : فعالیت های گالری"
4859
 
4860
  #: ../plugins/mycred-hook-buddypress-gallery.php:20
 
4861
  msgid ""
4862
  "Awards %_plural% for creating a new gallery either using BP Album+ or BP "
4863
  "Gallery."
4864
  msgstr "اهدای %_plural% برای ساختن گالری جدید ، چه با BP Album+ ، چه با BP Gallery ."
4865
 
4866
  #: ../plugins/mycred-hook-buddypress-gallery.php:97
 
4867
  msgid "%plural% for New Gallery"
4868
  msgstr "اهدای %plural% برای گالری جدید"
4869
 
@@ -4872,14 +5435,17 @@ msgid "BuddyPress: Links"
4872
  msgstr "بادی پرس : لینک ها"
4873
 
4874
  #: ../plugins/mycred-hook-buddypress-links.php:20
 
4875
  msgid "Awards %_plural% for link related actions."
4876
  msgstr "اهدای %_plural% برای انجام فعالیت های مرتبط با لینک ، توسط کاربر"
4877
 
4878
  #: ../plugins/mycred-hook-buddypress-links.php:247
 
4879
  msgid "%plural% for New Links"
4880
  msgstr "اهدای %plural% برای لینک های جدید"
4881
 
4882
  #: ../plugins/mycred-hook-buddypress-links.php:260
 
4883
  msgid "%plural% for Vote on Link"
4884
  msgstr "اهدای %plural% برای رای دادن روی لینک ها"
4885
 
@@ -4896,10 +5462,12 @@ msgid "Vote Down"
4896
  msgstr ""
4897
 
4898
  #: ../plugins/mycred-hook-buddypress-links.php:297
 
4899
  msgid "%plural% for Updating Links"
4900
  msgstr "اهدای %plural% برای به روزرسانی لینک ها"
4901
 
4902
  #: ../plugins/mycred-hook-buddypress-links.php:310
 
4903
  msgid "%plural% for Deleting Links"
4904
  msgstr "اهدا یا کسر اهدای %plural% برای پاک کردن لینک ها"
4905
 
@@ -4908,6 +5476,7 @@ msgid "rtMedia Galleries"
4908
  msgstr ""
4909
 
4910
  #: ../plugins/mycred-hook-buddypress-media.php:19
 
4911
  msgid "Award / Deduct %_plural% for users creating albums or uploading new photos."
4912
  msgstr ""
4913
 
@@ -4948,6 +5517,7 @@ msgid "BuddyPress: Members"
4948
  msgstr "بادی پرس : اعضا"
4949
 
4950
  #: ../plugins/mycred-hook-buddypress.php:21
 
4951
  msgid "Awards %_plural% for profile related actions."
4952
  msgstr "اهدای %_plural% برای انجام فعالیت های مرتبط با پروفایل کاربری ."
4953
 
@@ -4956,6 +5526,7 @@ msgid "BuddyPress: Groups"
4956
  msgstr "بادی پرس : گروه ها"
4957
 
4958
  #: ../plugins/mycred-hook-buddypress.php:29
 
4959
  msgid ""
4960
  "Awards %_plural% for group related actions. Use minus to deduct %_plural% or "
4961
  "zero to disable a specific hook."
@@ -4964,6 +5535,7 @@ msgstr ""
4964
  "برای کسر %_plural% و عدد صفر برای غیرفعالسازی تنظیماتی خاص ، استفاده نمایید ."
4965
 
4966
  #: ../plugins/mycred-hook-buddypress.php:369
 
4967
  msgid "%plural% for Profile Updates"
4968
  msgstr "اهدای %plural% برای به روزرسانی پروفایل کاربری"
4969
 
@@ -4972,34 +5544,42 @@ msgid "Daily limit. Use zero for unlimited."
4972
  msgstr ""
4973
 
4974
  #: ../plugins/mycred-hook-buddypress.php:387
 
4975
  msgid "%plural% for New Avatar"
4976
  msgstr "اهدای %plural% برای آواتار جدید"
4977
 
4978
  #: ../plugins/mycred-hook-buddypress.php:400
 
4979
  msgid "%plural% for New Friendships"
4980
  msgstr "اهدای %plural% برای رابطه ی دوستی جدید"
4981
 
4982
  #: ../plugins/mycred-hook-buddypress.php:413
 
4983
  msgid "%plural% for Leaving Friendship"
4984
  msgstr "اهدا یا کسر %plural% برای حذف رابطه دوستی"
4985
 
4986
  #: ../plugins/mycred-hook-buddypress.php:426
 
4987
  msgid "%plural% for New Comment"
4988
  msgstr "اهدای %plural% برای دیدگاه جدید"
4989
 
4990
  #: ../plugins/mycred-hook-buddypress.php:439
 
4991
  msgid "%plural% for Deleting Comment"
4992
  msgstr "اهدا یا کسر %plural% برای پاک کردن دیدگاه"
4993
 
4994
  #: ../plugins/mycred-hook-buddypress.php:452
 
4995
  msgid "%plural% for New Messages"
4996
  msgstr "اهدای %plural% برای پیام جدید"
4997
 
4998
  #: ../plugins/mycred-hook-buddypress.php:465
 
4999
  msgid "%plural% for Sending Gift"
5000
  msgstr "اهدای %plural% برای ارسال هدیه"
5001
 
5002
  #: ../plugins/mycred-hook-buddypress.php:912
 
5003
  msgid "%plural% for Creating Groups"
5004
  msgstr "اهدای %plural% برای ساخت گروه ها"
5005
 
@@ -5008,8 +5588,8 @@ msgid ""
5008
  "If you use a negative value and the user does not have enough %_plural% the "
5009
  "\"Create Group\" button will be disabled."
5010
  msgstr ""
5011
- "اگر از مقداری منفی استفاده کنید و کاربر هم %_plural% کافی برای کسر شدن نداشته "
5012
- "باشد ، کلید \"ساخت گروه\" غیرفعال خواهد شد ."
5013
 
5014
  #: ../plugins/mycred-hook-buddypress.php:920
5015
  msgid "Number of members before awarding %_plural%"
@@ -5020,26 +5600,32 @@ msgid "Use zero to award %_plural% when group is created."
5020
  msgstr "برای اهدای %_plural% به هنگامی که گروه ساخته شد ، از عدد صفر استفاده نمایید ."
5021
 
5022
  #: ../plugins/mycred-hook-buddypress.php:932
 
5023
  msgid "%plural% for Deleting Groups"
5024
  msgstr "اهدای %plural% برای حذف گروه ها"
5025
 
5026
  #: ../plugins/mycred-hook-buddypress.php:945
 
5027
  msgid "%plural% for New Forum Topic"
5028
  msgstr "اهدای %plural% برای ایجاد تاپیک جدید در انجمن"
5029
 
5030
  #: ../plugins/mycred-hook-buddypress.php:958
 
5031
  msgid "%plural% for Editing Forum Topic"
5032
  msgstr "اهدای %plural% برای ویرایش تاپیک های انجمن"
5033
 
5034
  #: ../plugins/mycred-hook-buddypress.php:971
 
5035
  msgid "%plural% for New Forum Post"
5036
  msgstr "اهدای %plural% برای پست جدید در انجمن"
5037
 
5038
  #: ../plugins/mycred-hook-buddypress.php:984
 
5039
  msgid "%plural% for Editing Forum Post"
5040
  msgstr "اهدای %plural% برای ویرایش پست های انجمن"
5041
 
5042
  #: ../plugins/mycred-hook-buddypress.php:997
 
5043
  msgid "%plural% for Joining Groups"
5044
  msgstr "اهدای %plural% برای عضویت در گروه ها"
5045
 
@@ -5048,18 +5634,21 @@ msgid ""
5048
  "If you use a negative value and the user does not have enough %_plural% the "
5049
  "\"Join Group\" button will be disabled."
5050
  msgstr ""
5051
- "اگر از مقداری منفی استفاده کنید و کاربر هم %_plural% کافی برای کسر شدن نداشته "
5052
- "باشد ، کلید \"عضویت در گروه\" غیرفعال خواهد شد ."
5053
 
5054
  #: ../plugins/mycred-hook-buddypress.php:1011
 
5055
  msgid "%plural% for Leaving Groups"
5056
  msgstr "اهدا یا کسر %plural% برای ترک گروه ها"
5057
 
5058
  #: ../plugins/mycred-hook-buddypress.php:1024
 
5059
  msgid "%plural% for New Group Avatar"
5060
  msgstr "اهدای %plural% برای آپلود آواتار جدید در گروه "
5061
 
5062
  #: ../plugins/mycred-hook-buddypress.php:1037
 
5063
  msgid "%plural% for New Group Comment"
5064
  msgstr "اهدای %plural% برای دیدگاه جدید در گروه"
5065
 
@@ -5068,10 +5657,12 @@ msgid "Contact Form 7 Form Submissions"
5068
  msgstr "پر کردن فرم و فرستادن فرم برای افزونه ی Contact Form 7"
5069
 
5070
  #: ../plugins/mycred-hook-contact-form7.php:19
 
5071
  msgid "Awards %_plural% for successful form submissions (by logged in users)."
5072
  msgstr "اهدای %_plural% برای پر کردن و فرستادن فرم ( فقط کاربران لوگین شده )"
5073
 
5074
- #: ../plugins/mycred-hook-contact-form7.php:110 ../plugins/mycred-hook-gravityforms.php:86
 
5075
  msgid "No forms found."
5076
  msgstr "فرمی یافت نشد ."
5077
 
@@ -5080,6 +5671,7 @@ msgid "Events Manager"
5080
  msgstr "مدیریت رویدادها"
5081
 
5082
  #: ../plugins/mycred-hook-events-manager-light.php:19
 
5083
  msgid "Awards %_plural% for users attending events."
5084
  msgstr "اهدای %_plural% برای شرکت در رویدادها ."
5085
 
@@ -5096,10 +5688,11 @@ msgid "GD Star Rating"
5096
  msgstr "افزونه ی GD Star Rating"
5097
 
5098
  #: ../plugins/mycred-hook-gd-star-rating.php:19
 
5099
  msgid "Awards %_plural% for users rate items using the GD Star Rating plugin."
5100
  msgstr ""
5101
- "اهدای %_plural% برای کسانی که توسط افزونه ی GD Star Rating به انواع محتوای سایت "
5102
- "امتیاز می دهند ."
5103
 
5104
  #: ../plugins/mycred-hook-gd-star-rating.php:103
5105
  msgid "Rating"
@@ -5114,6 +5707,7 @@ msgid "Gravityform Submissions"
5114
  msgstr ""
5115
 
5116
  #: ../plugins/mycred-hook-gravityforms.php:19
 
5117
  msgid "Awards %_plural% for successful form submissions."
5118
  msgstr ""
5119
 
@@ -5122,43 +5716,50 @@ msgid "Invite Anyone Plugin"
5122
  msgstr "افزونه ی Invite Anyone"
5123
 
5124
  #: ../plugins/mycred-hook-invite-anyone.php:19
 
5125
  msgid ""
5126
  "Awards %_plural% for sending invitations and/or %_plural% if the invite is "
5127
  "accepted."
5128
  msgstr "اهدای %_plural% برای فرستادن و یا قبول کردن دعوتنامه"
5129
 
5130
- #: ../plugins/mycred-hook-invite-anyone.php:153
 
5131
  msgid "%plural% for Sending An Invite"
5132
  msgstr "اهدای %plural% برای ارسال دعوتنامه"
5133
 
5134
- #: ../plugins/mycred-hook-invite-anyone.php:169
5135
  msgid "Maximum number of invites that grants %_plural%. Use zero for unlimited."
5136
  msgstr ""
5137
  "تعداد مجاز دعوتنامه هایی که منجر به کسب %_plural% می شود . برای برداشتن این "
5138
  "محدودیت عدد صفر را وارد فرمایید ."
5139
 
5140
- #: ../plugins/mycred-hook-invite-anyone.php:173
 
5141
  msgid "%plural% for Accepting An Invite"
5142
  msgstr "اهدای %plural% برای قبول دعتنامه"
5143
 
5144
- #: ../plugins/mycred-hook-invite-anyone.php:177
 
5145
  msgid "%plural% for each invited user that accepts an invitation."
5146
  msgstr "اهدای %plural% به ازای هر کاربرِ دعوت شده ای که دعوتنامه را قبول کند ."
5147
 
5148
- #: ../plugins/mycred-hook-invite-anyone.php:190
5149
  msgid ""
5150
  "Maximum number of accepted invitations that grants %_plural%. Use zero for "
5151
  "unlimited."
5152
  msgstr ""
5153
- "بیشترین تعداد دعوتنامه های قبول شده که باعث کسب %_plural% برای کاربر می شوند . "
5154
- "برای برداشتن این محدودیت عدد صفر را وارد کنید ."
5155
 
5156
  #: ../plugins/mycred-hook-jetpack.php:18
5157
  msgid "Jetpack Subscriptions"
5158
  msgstr "اشتراک در افزونه جت پک"
5159
 
5160
  #: ../plugins/mycred-hook-jetpack.php:19
5161
- msgid "Awards %_plural% for users signing up for site or comment updates using Jetpack."
 
 
 
5162
  msgstr ""
5163
  "اهدای %_plural% برای کاربرانی که توسط افزونه ی جت پک و برای دریافت آپدیت های "
5164
  "بخش نظرات یا حتی خود سایت ثبت نام می کنند ."
@@ -5176,20 +5777,24 @@ msgid "Simple:Press"
5176
  msgstr "انجمن سازِ سیمپل پرس"
5177
 
5178
  #: ../plugins/mycred-hook-simplepress.php:19
 
5179
  msgid "Awards %_plural% for Simple:Press actions."
5180
  msgstr "اهدای %_plural% برای فعالیت در سیمپل پرس ( افزونه ای انجمن ساز برای وردپرس )"
5181
 
5182
  #: ../plugins/mycred-hook-simplepress.php:349
 
5183
  msgid "%plural% for New Topic Post"
5184
  msgstr "اهدای %_plural% برای پست تاپیک جدید"
5185
 
5186
  #: ../plugins/mycred-hook-simplepress.php:363
 
5187
  msgid "Topic authors can receive %_plural% for posting on their own Topic"
5188
  msgstr ""
5189
- "نویسندگان تاپیک می توانند برای قرار دادن پست بر روی تاپیک خودشان %_plural% کسب "
5190
- "کنند ."
5191
 
5192
  #: ../plugins/mycred-hook-simplepress.php:373
 
5193
  msgid "%plural% for Topic Post Deletion"
5194
  msgstr "اهدا یا کسر %plural% برای حذف کامل یا بخشی از پست تاپیک"
5195
 
@@ -5198,6 +5803,7 @@ msgid "WP Favorite Posts"
5198
  msgstr "پست های لیست علاقمندی ها"
5199
 
5200
  #: ../plugins/mycred-hook-wp-favorite-posts.php:19
 
5201
  msgid "Awards %_plural% for users adding posts to their favorites."
5202
  msgstr "اهدای %_plural% به کاربرانی که در لیست علاقمندی های خود پستی اضافه می کنند ."
5203
 
@@ -5214,5 +5820,6 @@ msgid "WP-Polls"
5214
  msgstr "نظرسنجی های وردپرس | WP-Polls"
5215
 
5216
  #: ../plugins/mycred-hook-wp-polls.php:19
 
5217
  msgid "Awards %_plural% for users voting in polls."
5218
  msgstr "اهدای %_plural% برای کاربرانی که در نظرسنجی ها رای می دهند ."
2
  msgstr ""
3
  "Project-Id-Version: myCRED\n"
4
  "Report-Msgid-Bugs-To: http://mycred.me\n"
5
+ "POT-Creation-Date: 2014-03-20 14:26+0100\n"
6
+ "PO-Revision-Date: Wed Jun 11 2014 16:26:30 GMT+0200 (CEST)\n"
7
+ "Last-Translator: Gabriel <gabriel.s@merovingi.com>\n"
8
  "Language-Team: LANGUAGE <support@mycred.me>\n"
9
  "Language: Persian (Iran)\n"
10
+ "Plural-Forms: nplurals=1; plural=0\n"
11
  "MIME-Version: 1.0\n"
12
  "Content-Type: text/plain; charset=UTF-8\n"
13
  "Content-Transfer-Encoding: 8bit\n"
14
  "X-Poedit-SourceCharset: UTF-8\n"
15
  "X-Generator: Loco - https://localise.biz/\n"
16
  "X-Poedit-Basepath: .\n"
17
+ "X-Poedit-KeywordsList: _:1;gettext:1;dgettext:2;ngettext:1,2;dngettext:2,3;"
18
+ "__:1;_e:1;_c:1;_n:1,2;_n_noop:1,2;_nc:1,2;__ngettext:1,2;__ngettext_noop:1,2;"
19
+ "_x:1,2c;_ex:1,2c;_nx:1,2,4c;_nx_noop:1,2,3c;_n_js:1,2;_nx_js:1,2,3c;"
20
+ "esc_attr__:1;esc_html__:1;esc_attr_e:1;esc_html_e:1;esc_attr_x:1,2c;"
21
+ "esc_html_x:1,2c;comments_number_link:2,3;t:1;st:1;trans:1;transChoice:1,2\n"
22
  "X-Poedit-SearchPath-0: /Users/gabriel/Repositories/mycred/tags/1.3.3.1\n"
23
  "X-Poedit-SearchPath-1: .\n"
24
  "X-Loco-Target-Locale: fa_IR"
25
 
26
+ #: ../mycred.php:400
27
  msgid "Balance"
28
  msgstr ""
29
 
30
+ #: ../mycred.php:425
31
  msgid "%label% History"
32
  msgstr ""
33
 
34
+ #: ../mycred.php:478
35
  msgid "No balances available."
36
  msgstr ""
37
 
38
+ #: ../mycred.php:524
39
+ #, php-format
40
  msgid "About %s"
41
  msgstr "درباره %s"
42
 
43
+ #: ../mycred.php:533
44
  msgid "Awesome People"
45
  msgstr "\"اعتبار من\""
46
 
47
+ #: ../mycred.php:618 ../mycred.php:642 ../addons/ranks/myCRED-addon-ranks.php:230
48
+ #: ../addons/ranks/myCRED-addon-ranks.php:922 ../addons/sell-content/myCRED-addon-
49
+ #: sell-content.php:309 ../addons/transfer/myCRED-addon-transfer.php:132 ..
50
+ #: includes/mycred-shortcodes.php:535
51
  msgid "Processing..."
52
  msgstr "در حال پردازش ..."
53
 
54
+ #: ../mycred.php:619
55
  msgid ""
56
+ "Warning! All entries in your log will be permanently removed! This can not "
57
+ "be undone!"
58
  msgstr ""
59
 
60
+ #: ../mycred.php:620
61
  msgid ""
62
  "All log entries belonging to deleted users will be permanently deleted! This "
63
  "can not be undone!"
64
  msgstr ""
65
 
66
+ #: ../mycred.php:621
67
  msgid "Warning! All user balances will be set to zero! This can not be undone!"
68
  msgstr ""
69
  "اخطار ! تمام میزان امتیازات کاربران شما روی صفر تنظیم خواهند شد ! این عمل "
70
  "غیرقابل بازگشت می باشد !"
71
 
72
+ #: ../mycred.php:622
73
  msgid "Done!"
74
  msgstr "انجام شد !"
75
 
76
+ #: ../mycred.php:623 ../mycred.php:641 ../mycred.php:659
77
  msgid "Close"
78
  msgstr "بستن"
79
 
80
+ #: ../mycred.php:624
81
  msgid "Export users %plural%"
82
  msgstr "خروجی گرفتن از %plural% کاربران"
83
 
84
+ #: ../mycred.php:640
85
  msgid "Edit Users Balance"
86
  msgstr ""
87
 
88
+ #: ../mycred.php:658
89
  msgid "Edit Log Entry"
90
  msgstr ""
91
 
92
+ #: ../mycred.php:660
93
  msgid "Updating..."
94
  msgstr ""
95
 
96
+ #: ../mycred.php:662
97
  msgid "Are you sure you want to delete this log entry? This can not be undone!"
98
  msgstr ""
99
 
100
+ #: ../mycred.php:663
101
  msgid "Log entry updated"
102
  msgstr ""
103
 
104
+ #: ../mycred.php:715 ../mycred.php:736 ../addons/email-notices/myCRED-addon-email-
105
+ #: notices.php:738 ../addons/gateway/event-booking/mycred-eventsmanager-pro.php:
106
+ #: 458 ../addons/gateway/event-booking/mycred-eventsmanager.php:537
107
  msgid "Setup"
108
  msgstr "نصب"
109
 
110
+ #: ../mycred.php:717 ../addons/gateway/carts/mycred-marketpress.php:360 ..
111
+ #: includes/mycred-network.php:186 ../modules/mycred-module-settings.php:20 ..
112
+ #: modules/mycred-module-settings.php:21 ../modules/mycred-module-settings.php:22
113
  msgid "Settings"
114
  msgstr "تنظیمات"
115
 
116
+ #: ../mycred.php:740 ../modules/mycred-module-addons.php:360
117
  msgid "About"
118
  msgstr "درباره"
119
 
120
+ #: ../mycred.php:741
121
  msgid "Tutorials"
122
  msgstr "آموزش ها"
123
 
124
+ #: ../mycred.php:742
125
  msgid "Codex"
126
  msgstr "مجموعه قوانین و دست نوشت ها"
127
 
128
+ #: ../mycred.php:743
129
  msgid "Store"
130
  msgstr "فروشگاه"
131
 
132
+ #: ../mycred.php:757
133
  msgid ""
134
+ "Make sure to backup your database and files before updating, in case "
135
+ "anything goes wrong!"
136
  msgstr ""
137
 
138
  #: ../abstracts/mycred-abstract-hook.php:70
143
  msgid "This Hook has no settings"
144
  msgstr "این پنل تنظیمات ، چیزی برای تنظیم ندارد"
145
 
146
+ #: ../abstracts/mycred-abstract-hook.php:157 ../modules/mycred-module-hooks.php:
147
+ #: 1192
148
  msgid "No limit"
149
  msgstr "بدون محدودیت"
150
 
164
  msgid "Once per day (reset at midnight)"
165
  msgstr "روزی یک بار ( نیمه شب ریست می شود )"
166
 
167
+ #: ../abstracts/mycred-abstract-hook.php:168 ../addons/banking/abstracts/mycred-
168
+ #: abstract-service.php:342 ../addons/buy-creds/myCRED-addon-buy-creds.php:394 ..
169
+ #: addons/buy-creds/myCRED-addon-buy-creds.php:415 ../addons/buy-
170
+ #: creds/abstracts/mycred-abstract-payment-gateway.php:805 ../addons/buy-
171
+ #: creds/abstracts/mycred-abstract-payment-gateway.php:828 ../addons/buy-
172
+ #: creds/gateways/zombaio.php:375 ../addons/email-notices/myCRED-addon-email-
173
+ #: notices.php:193 ../addons/email-notices/myCRED-addon-email-notices.php:888
174
  msgid "Select"
175
  msgstr "انتخاب"
176
 
178
  msgid "myCRED_Module() Error. A Module ID is required!"
179
  msgstr "خطای myCRED_Module() . شناسه طرح لازم است !"
180
 
181
+ #: ../abstracts/mycred-abstract-module.php:343 ../abstracts/mycred-abstract-
182
+ #: module.php:351
183
  msgid "Surprise"
184
  msgstr "غافلگیری"
185
 
191
  msgid "click to open"
192
  msgstr "برای باز شدن کلیک کنید ."
193
 
194
+ #: ../abstracts/mycred-abstract-module.php:472 ../addons/banking/myCRED-addon-
195
+ #: banking.php:163 ../addons/buy-creds/myCRED-addon-buy-creds.php:492
196
  msgid "Settings Updated"
197
  msgstr "تنظیمات به روز شد"
198
 
199
+ #: ../addons/banking/myCRED-addon-banking.php:42 ../addons/banking/myCRED-addon-
200
+ #: banking.php:43 ../addons/banking/myCRED-addon-banking.php:44 ../modules/mycred-
201
+ #: module-addons.php:146
202
  msgid "Banking"
203
  msgstr "بانکداری"
204
 
207
  msgstr "محاسبه ی سود ( بهره )"
208
 
209
  #: ../addons/banking/myCRED-addon-banking.php:104
210
+ #, php-format
211
  msgid ""
212
  "Apply an interest rate on your users %_plural% balances. Interest rate is "
213
  "annual and is compounded daily as long as this service is enabled. Positive "
214
+ "interest rate leads to users gaining %_plural% while a negative interest "
215
+ "rate will to users loosing %_plural%."
216
  msgstr ""
217
+ "بر روی میزان %_plural% کاربران خود ، نرخ سودی تعیین کنید . این نرخ سود "
218
+ "سالیانه بوده و به صورت روزشمار از زمانی که این افزونه فعال باشد محاسبه خواهد "
219
+ "شد . نرخ سود مثبت باعث افزایش امتیازات کاربران و نرخ سود منفی باعث کاهش آن "
220
+ "می گردد ."
221
 
222
  #: ../addons/banking/myCRED-addon-banking.php:110
223
  msgid "Recurring Payouts"
224
  msgstr "پرداخت های مکرر"
225
 
226
  #: ../addons/banking/myCRED-addon-banking.php:111
227
+ #, php-format
228
  msgid ""
229
+ "Give your users %_plural% on a regular basis with the option to set the "
230
+ "number of times you want this payout to run (cycles)."
231
  msgstr ""
232
  "به کاربران خود بر پایه ی دوره های زمانی معینی %_plural% دهید . همچنین این "
233
  "قابلیت را خواهید داشت که تعیین کنید چند بار این دوره ی زمانی تکرار شود ."
234
 
235
+ #: ../addons/banking/myCRED-addon-banking.php:156 ../addons/buy-creds/myCRED-
236
+ #: addon-buy-creds.php:477 ../addons/buy-creds/myCRED-addon-buy-creds.php:607 ..
237
+ #: includes/mycred-network.php:160 ../modules/mycred-module-addons.php:266 ..
238
+ #: modules/mycred-module-hooks.php:157 ../modules/mycred-module-log.php:322 ..
239
+ #: modules/mycred-module-log.php:575 ../modules/mycred-module-settings.php:312
240
  msgid "Access Denied"
241
  msgstr "دسترسی غیرمجاز می باشد"
242
 
243
  #: ../addons/banking/myCRED-addon-banking.php:167
244
+ #, php-format
245
  msgid "%s Banking"
246
  msgstr "بانکداری %s"
247
 
248
+ #: ../addons/banking/myCRED-addon-banking.php:168 ../modules/mycred-module-addons.
249
+ #: php:147
250
  msgid "Setup recurring payouts or offer / charge interest on user account balances."
251
  msgstr ""
252
 
257
  #: ../addons/banking/myCRED-addon-banking.php:172
258
  msgid "Warning! This add-on requires WP - Cron to work."
259
  msgstr ""
260
+ "اخطار ! این افزونه ی جانبی برای فعالسازی به WP-Cron احتیاج دارد .<br/>WP-"
261
+ "Cron چیست ؟<br/>قابلیتی در وردپرس می باشد که امکان زمانبندی های مختلف را به "
262
+ "مدیر سایت می دهد"
263
 
264
+ #: ../addons/banking/myCRED-addon-banking.php:188 ../addons/buy-creds/myCRED-
265
+ #: addon-buy-creds.php:553 ../modules/mycred-module-hooks.php:182
266
  msgid "Enable"
267
  msgstr "فعالسازی"
268
 
269
+ #: ../addons/banking/myCRED-addon-banking.php:201 ../modules/mycred-module-hooks.
270
+ #: php:197
271
  msgid "Update Changes"
272
  msgstr "به روزرسانی تغییرات"
273
 
323
  msgid "The interest rate can be either positive or negative and is compounded daily."
324
  msgstr "نرخ سود می تواند مثبت یا منفی باشد و به صورت روزانه محاسبه می شود ."
325
 
326
+ #: ../addons/banking/services/mycred-bank-service-interest.php:291 ..
327
+ #: addons/coupons/myCRED-addon-coupons.php:392
328
  msgid "Minimum Balance"
329
  msgstr "کمترین میزان"
330
 
332
  msgid "The minimum requires balance for interest to apply."
333
  msgstr "کمترین میزان مورد نیاز برای اعمال سود ."
334
 
335
+ #: ../addons/banking/services/mycred-bank-service-interest.php:298 ..
336
+ #: addons/banking/services/mycred-bank-service-payouts.php:252 ../addons/buy-
337
+ #: creds/myCRED-addon-buy-creds.php:372 ../addons/buy-creds/myCRED-addon-buy-
338
+ #: creds.php:431 ../addons/coupons/myCRED-addon-coupons.php:440 ..
339
+ #: addons/gateway/carts/mycred-marketpress.php:384 ..
340
+ #: addons/gateway/carts/mycred-marketpress.php:417 ..
341
+ #: addons/gateway/carts/mycred-woocommerce.php:98 ../addons/gateway/carts/mycred-
342
+ #: woocommerce.php:164 ../addons/gateway/carts/mycred-wpecommerce.php:367 ..
343
+ #: modules/mycred-module-hooks.php:520 ../modules/mycred-module-hooks.php:1389 ..
344
+ #: modules/mycred-module-hooks.php:1729 ../plugins/mycred-hook-badgeOS.php:115 ..
345
+ #: plugins/mycred-hook-badgeOS.php:117 ../plugins/mycred-hook-badgeOS.php:126 ..
346
+ #: plugins/mycred-hook-events-manager-light.php:153 ../plugins/mycred-hook-
347
+ #: events-manager-light.php:166 ../plugins/mycred-hook-gd-star-rating.php:109 ..
348
+ #: plugins/mycred-hook-gd-star-rating.php:122 ../plugins/mycred-hook-wp-favorite-
349
+ #: posts.php:135 ../plugins/mycred-hook-wp-favorite-posts.php:148 ..
350
+ #: plugins/mycred-hook-wp-polls.php:136
351
  msgid "Log Template"
352
  msgstr "نمونه لیست گزارش ( لوگ )"
353
 
354
+ #: ../addons/banking/services/mycred-bank-service-interest.php:305 ..
355
+ #: addons/banking/services/mycred-bank-service-payouts.php:259
356
  msgid "Run Time"
357
  msgstr "مدت اجرا"
358
 
359
+ #: ../addons/banking/services/mycred-bank-service-interest.php:309 ..
360
+ #: addons/banking/services/mycred-bank-service-payouts.php:263
361
  msgid ""
362
+ "For large websites, if you are running into time out issues during payouts, "
363
+ "you can set the number of seconds a process can run. Use zero for unlimited, "
364
+ "but be careful especially if you are on a shared server."
365
  msgstr ""
366
+ "در وبسایت ها بزرگ ، اگر برای انجام پرداخت محدودیت های زمانی دارید ، می "
367
+ "توانید از این قسمت تعداد ثانیه هایی که پروسه می تواند در حالت اجرا باشد را "
368
+ "مشخص کنید . برای برداشتن محدودیت زمان می توانید عدد صفر را وارد فرمایید ، "
369
+ "اما توجه کنید که اگر از سرورهای اشتراکی و یا هاست های اشتراکی استفاده می "
370
+ "نمایید ، عدد مورد نظر باید محدود شود"
371
 
372
  #: ../addons/banking/services/mycred-bank-service-payouts.php:21
373
  msgid "Daily %_plural%"
381
  msgid "Pay Users"
382
  msgstr "پرداخت به کاربران :"
383
 
384
+ #: ../addons/banking/services/mycred-bank-service-payouts.php:222 ../addons/buy-
385
+ #: creds/myCRED-addon-buy-creds.php:657 ../addons/buy-creds/myCRED-addon-buy-
386
+ #: creds.php:1160 ../addons/buy-creds/abstracts/mycred-abstract-payment-gateway.
387
+ #: php:425 ../includes/mycred-admin.php:371 ../includes/mycred-admin.php:482
388
  msgid "Amount"
389
  msgstr "مقدار"
390
 
392
  msgid "Can not be zero."
393
  msgstr "عدد صفر مجاز نیست"
394
 
395
+ #: ../addons/banking/services/mycred-bank-service-payouts.php:228 ..
396
+ #: addons/banking/services/mycred-bank-service-payouts.php:241 ../modules/mycred-
397
+ #: module-hooks.php:1744
398
  msgid "Interval"
399
  msgstr "فاصله زمانی"
400
 
401
+ #: ../addons/banking/services/mycred-bank-service-payouts.php:233 ..
402
+ #: addons/banking/services/mycred-bank-service-payouts.php:242
403
  msgid "Cycles"
404
  msgstr "دوره ( چند مرتبه این عمل تکرار شود ؟ )"
405
 
414
  #: ../addons/banking/services/mycred-bank-service-payouts.php:241
415
  msgid ""
416
  "Select how often you want to award %_plural%. Note that when this service is "
417
+ "enabled, the first payout will be in the beginning of the next period. So "
418
+ "with a \"Daily\" interval, the first payout will occur first thing in the "
419
+ "morning."
420
  msgstr ""
421
  "فاصله ی زمانی اجرای این فرآیند را تعیین می کند ، اینکه هر چند وقت یکبار این "
422
+ "مقدار %_plural% به کاربران اهدا گردد . البته گفتن این نکته خالی از لطف نیست "
423
+ "که واریز اولیه ی امتیاز در ابتدای فاصله زمانی تعیین شده ی بعدی خواهد بود ، "
424
+ "به طور مثال اگر فاصله زمانی را روزانه انتخاب کرده باشید ، اولین بار امتیاز "
425
+ "تعیین شده بامداد روز بعد واریز می گردد ( مرجع نیمه شب است )"
426
 
427
  #: ../addons/banking/services/mycred-bank-service-payouts.php:242
428
  msgid ""
429
+ "Cycles let you choose how many intervals this service should run. Each time "
430
+ "a cycle runs, the value will decrease until it hits zero, in which case this "
431
  "service will deactivate itself. Use -1 to run unlimited times."
432
  msgstr ""
433
+ "دوره ها به شما این اختیار را می دهند که تعیین فرمایید چند بار عمل واریز "
434
+ "تکرار گردد . به طور مثال اگر این مقدار یک باشد فقط یک بار مقدار امتیازی که "
435
+ "تعیین می کنید در فاصله زمانی تعیین شده به حساب کاربران واریز می شود . بعد از "
436
+ "هر بار واریز هم تعداد دوره ها یک عدد کاهش می یابد تا نهایتا به صفر رسیده و "
437
+ "عمل واریز متوقف شود . برای بی نهایت کردن این چرخه عدد 1-( منفی یک ) را وارد "
438
+ "فرمایید"
439
 
440
  #: ../addons/banking/services/mycred-bank-service-payouts.php:243
441
  msgid "Important"
443
 
444
  #: ../addons/banking/services/mycred-bank-service-payouts.php:243
445
  msgid ""
446
+ "You can always stop payouts by deactivating this service. Just remember that "
447
+ "if you deactivate while there are cycles left, this service will continue on "
448
+ "when it gets re-activated. Set cycles to zero to reset."
449
+ msgstr ""
450
+ "هر وقت که مایل باشید می توانید عملیات پرداخت اتوماتیک سود را متوقف کنید . "
451
+ "فقط یادتان باشد اگر به هنگام غیرفعالسازی عملیات ، هنوز تعداد دوره هایی باقی "
452
+ "مانده باشد ( به طور مثال هنوز 3 دوره باقی باشد ) سرویس منتظر فعالسازی مجدد "
453
+ "می ماند تا دوباره عملیات را ادامه دهد . بنابراین می توان گفت غیرفعالسازی یک "
454
+ "نوع مکث تا زمان دلخواه شما ، برای عملیات واریز خواهد بود . برای ریست کردن "
455
+ "تعداد دوره ها هم می توانید عدد صفر را وارد فرمایید"
456
+
457
+ #: ../addons/banking/services/mycred-bank-service-payouts.php:245 ..
458
+ #: includes/mycred-install.php:559 ../modules/mycred-module-settings.php:393
459
  msgid "Excludes"
460
  msgstr "کاربران استثنا"
461
 
464
  "Comma separated list of user IDs to exclude from this service. No spaces "
465
  "allowed!"
466
  msgstr ""
467
+ "کاربرانی که نمی خواهید به آن ها سودی پرداخت کنید ! برای جدا کردن شناسه "
468
+ "کاربران از ویرگول استفاده فرمایید ، فاصله ( اسپیس ) مجاز نیست !"
469
 
470
+ #: ../addons/buy-creds/myCRED-addon-buy-creds.php:55 ../addons/buy-creds/myCRED-
471
+ #: addon-buy-creds.php:56 ../addons/buy-creds/myCRED-addon-buy-creds.php:57
472
  msgid "Payment Gateways"
473
  msgstr "درگاه های پرداخت"
474
 
475
+ #: ../addons/buy-creds/myCRED-addon-buy-creds.php:192
476
  msgid "buyCRED Purchase Log"
477
  msgstr ""
478
 
479
+ #: ../addons/buy-creds/myCRED-addon-buy-creds.php:193 ../addons/buy-creds/myCRED-
480
+ #: addon-buy-creds.php:421 ../addons/buy-creds/myCRED-addon-buy-creds.php:488
481
  msgid "Purchase Log"
482
  msgstr ""
483
 
484
+ #: ../addons/buy-creds/myCRED-addon-buy-creds.php:281 ../addons/gateway/event-
485
+ #: booking/mycred-eventespresso3.php:26 ../addons/gateway/event-booking/mycred-
486
+ #: eventsmanager-pro.php:475 ../addons/gateway/event-booking/mycred-eventsmanager.
487
+ #: php:540 ../addons/sell-content/myCRED-addon-sell-content.php:361
488
  msgid "Payments"
489
  msgstr "پرداخت ها"
490
 
491
+ #: ../addons/buy-creds/myCRED-addon-buy-creds.php:311
492
  msgid "Please login to purchase %_plural%"
493
  msgstr "لطفا برای خرید امتیاز وارد سایت شوید"
494
 
495
+ #: ../addons/buy-creds/myCRED-addon-buy-creds.php:326
496
+ #, php-format
497
  msgid "Gift purchase from %display_name%."
498
  msgstr "خرید هدیه توسط %display_name% ."
499
 
500
+ #: ../addons/buy-creds/myCRED-addon-buy-creds.php:344 ../addons/ranks/myCRED-
501
+ #: addon-ranks.php:649
502
  msgid "Minimum %plural%"
503
  msgstr "کمترین مفدار %plural%"
504
 
505
+ #: ../addons/buy-creds/myCRED-addon-buy-creds.php:348
506
  msgid "Minimum amount of %plural% a user must purchase. Will default to 1."
507
  msgstr ""
508
+ "کمترین مقدار %plural% مجازی که کاربر می تواند خرید بکند . به صورت پیش فرض "
509
+ "روی عدد یک تنظیم شده است ."
510
+
511
+ #: ../addons/buy-creds/myCRED-addon-buy-creds.php:353 ../addons/coupons/myCRED-
512
+ #: addon-coupons.php:315 ../addons/gateway/carts/mycred-marketpress.php:378 ..
513
+ #: addons/gateway/carts/mycred-woocommerce.php:108 ..
514
+ #: addons/gateway/carts/mycred-wpecommerce.php:350 ../addons/gateway/event-
515
+ #: booking/mycred-eventespresso3.php:437 ../addons/gateway/event-booking/mycred-
516
+ #: eventsmanager-pro.php:463 ../addons/gateway/event-booking/mycred-eventsmanager.
517
+ #: php:550 ../addons/sell-content/myCRED-addon-sell-content.php:349 ..
518
+ #: includes/mycred-widgets.php:204 ../includes/mycred-widgets.php:401 ..
519
+ #: includes/importers/mycred-cubepoints.php:365
520
  msgid "Point Type"
521
  msgstr ""
522
 
523
+ #: ../addons/buy-creds/myCRED-addon-buy-creds.php:365
524
  msgid "Login Template"
525
  msgstr "نمونه طرح ورود به سایت"
526
 
527
+ #: ../addons/buy-creds/myCRED-addon-buy-creds.php:369
528
  msgid "Content to show when a user is not logged in."
529
  msgstr "متنی که به کاربران لوگین نکرده نمایش داده خواهد شد ."
530
 
531
+ #: ../addons/buy-creds/myCRED-addon-buy-creds.php:379
532
  msgid "Thank You Page"
533
  msgstr "صفحه ی تشکر بابت خرید"
534
 
535
+ #: ../addons/buy-creds/myCRED-addon-buy-creds.php:382 ../addons/buy-creds/myCRED-
536
+ #: addon-buy-creds.php:403
537
  msgid "Custom URL"
538
  msgstr "نشانی اینترنتی متفاوت"
539
 
540
+ #: ../addons/buy-creds/myCRED-addon-buy-creds.php:387 ../addons/buy-creds/myCRED-
541
+ #: addon-buy-creds.php:408
542
  msgid "Page"
543
  msgstr "صفحه"
544
 
545
+ #: ../addons/buy-creds/myCRED-addon-buy-creds.php:400
546
  msgid "Cancellation Page"
547
  msgstr "صفحه ای که در صورت کنسل کردن خرید نمایش داده می شود"
548
 
549
+ #: ../addons/buy-creds/myCRED-addon-buy-creds.php:423
550
  msgid "Show seperate log for %_plural% purchases."
551
  msgstr ""
552
 
553
+ #: ../addons/buy-creds/myCRED-addon-buy-creds.php:425
554
  msgid "Gifting"
555
  msgstr "هدیه دادن"
556
 
557
+ #: ../addons/buy-creds/myCRED-addon-buy-creds.php:427
558
+ #, php-format
559
  msgid "Allow users to buy %_plural% for other users."
560
  msgstr "به کاربران اجازه ی خرید %_plural% برای سایر اعضای سایت را بدهید ."
561
 
562
+ #: ../addons/buy-creds/myCRED-addon-buy-creds.php:428
563
+ #, php-format
564
  msgid "Allow users to buy %_plural% for content authors."
565
  msgstr "به کاربران اجازه ی خرید %_plural% برای نویسندگان مطالب را بدهید ."
566
 
567
+ #: ../addons/buy-creds/myCRED-addon-buy-creds.php:488
568
+ #, php-format
569
  msgid "%s Payment Gateways"
570
  msgstr "درگاه های پرداخت %s"
571
 
572
+ #: ../addons/buy-creds/myCRED-addon-buy-creds.php:488 ../addons/buy-creds/myCRED-
573
+ #: addon-buy-creds.php:663
574
  msgid "buyCRED Settings"
575
  msgstr ""
576
 
577
+ #: ../addons/buy-creds/myCRED-addon-buy-creds.php:494
578
  msgid "Select the payment gateways you want to offer your users to buy %plural%."
579
  msgstr ""
580
  "درگاه پرداختی را که می خواهید کاربرانتان از طریق آن %plural% بخرند را انتخاب "
581
  "کنید ."
582
 
583
+ #: ../addons/buy-creds/myCRED-addon-buy-creds.php:501
584
  msgid "Last Payment Notification"
585
  msgstr ""
586
 
587
+ #: ../addons/buy-creds/myCRED-addon-buy-creds.php:503
588
  msgid ""
589
  "Here you can view the last payment confirmation that was sent to buyCRED for "
590
  "processing."
591
  msgstr ""
592
 
593
+ #: ../addons/buy-creds/myCRED-addon-buy-creds.php:506
594
  msgid "Details"
595
  msgstr ""
596
 
597
+ #: ../addons/buy-creds/myCRED-addon-buy-creds.php:509 ../modules/mycred-module-
598
+ #: log.php:541
599
  msgid "Time"
600
  msgstr ""
601
 
602
+ #: ../addons/buy-creds/myCRED-addon-buy-creds.php:513 ../addons/buy-creds/myCRED-
603
+ #: addon-buy-creds.php:654 ../includes/mycred-overview.php:166 ../includes/mycred-
604
+ #: overview.php:173 ../modules/mycred-module-addons.php:190
605
  msgid "Gateway"
606
  msgstr "درگاه"
607
 
608
+ #: ../addons/buy-creds/myCRED-addon-buy-creds.php:517 ../addons/buy-creds/myCRED-
609
+ #: addon-buy-creds.php:659
610
  msgid "Transaction ID"
611
  msgstr ""
612
 
613
+ #: ../addons/buy-creds/myCRED-addon-buy-creds.php:521
614
  msgid "Outcome"
615
  msgstr ""
616
 
617
+ #: ../addons/buy-creds/myCRED-addon-buy-creds.php:525
618
  msgid "Gateway Log"
619
  msgstr ""
620
 
621
+ #: ../addons/buy-creds/myCRED-addon-buy-creds.php:533
622
  msgid "No recorded calls found."
623
  msgstr ""
624
 
625
+ #: ../addons/buy-creds/myCRED-addon-buy-creds.php:546
626
  msgid "Test Mode"
627
  msgstr "حالت آزمایشی ( تست )"
628
 
629
+ #: ../addons/buy-creds/myCRED-addon-buy-creds.php:548
630
  msgid "Enabled"
631
  msgstr "فعال شد"
632
 
633
+ #: ../addons/buy-creds/myCRED-addon-buy-creds.php:551
634
  msgid "Disabled"
635
  msgstr "غیرفعال شد"
636
 
637
+ #: ../addons/buy-creds/myCRED-addon-buy-creds.php:561
638
  msgid "Sandbox Mode"
639
  msgstr ""
640
+ "حالت جعبه شنی ( حالت تست بانکی می باشد که در آن بابت تراکنش ها هیچ وجهی کسر "
641
+ "نمی گردد )"
642
 
643
+ #: ../addons/buy-creds/myCRED-addon-buy-creds.php:564
644
  msgid "Enable for test purchases."
645
  msgstr ""
646
 
647
+ #: ../addons/buy-creds/myCRED-addon-buy-creds.php:581
648
  msgid "Update Gateway Settings"
649
  msgstr "به روزرسانی تنظیمات درگاه"
650
 
651
+ #: ../addons/buy-creds/myCRED-addon-buy-creds.php:655 ../addons/email-
652
+ #: notices/myCRED-addon-email-notices.php:786 ../addons/email-notices/myCRED-
653
+ #: addon-email-notices.php:915 ../includes/mycred-admin.php:477 ..
654
+ #: includes/mycred-log.php:639 ../modules/mycred-module-log.php:540
655
  msgid "User"
656
  msgstr "کاربر"
657
 
658
+ #: ../addons/buy-creds/myCRED-addon-buy-creds.php:656 ../includes/mycred-log.php:
659
+ #: 640
660
  msgid "Date"
661
  msgstr "تاریخ"
662
 
663
+ #: ../addons/buy-creds/myCRED-addon-buy-creds.php:658
664
  msgid "Payed"
665
  msgstr ""
666
 
667
+ #: ../addons/buy-creds/myCRED-addon-buy-creds.php:663
668
  msgid "<strong>buy</strong>CRED Purchase Log"
669
  msgstr ""
670
 
671
+ #: ../addons/buy-creds/myCRED-addon-buy-creds.php:663 ../addons/gateway/event-
672
+ #: booking/mycred-eventespresso3.php:367
673
  msgid "Gateway Settings"
674
  msgstr "تنظیمات درگاه پرداخت"
675
 
676
+ #: ../addons/buy-creds/myCRED-addon-buy-creds.php:667
677
  msgid ""
678
  "Only completed purchases are shown here. Purchases that were cancelled or "
679
  "failed are not logged."
680
  msgstr ""
681
 
682
+ #: ../addons/buy-creds/myCRED-addon-buy-creds.php:776 ../includes/mycred-log.php:
683
+ #: 743 ../modules/mycred-module-log.php:462
684
  msgid "User Missing"
685
  msgstr "یافت نشدن کاربر"
686
 
687
+ #: ../addons/buy-creds/myCRED-addon-buy-creds.php:839 ../addons/sell-
688
+ #: content/myCRED-addon-sell-content.php:1112
689
  msgid "No purchases found"
690
  msgstr "خریدی یافت نشد"
691
 
692
+ #: ../addons/buy-creds/myCRED-addon-buy-creds.php:911 ../addons/buy-creds/myCRED-
693
+ #: addon-buy-creds.php:1008
694
  msgid "This Add-on needs to setup before you can use this shortcode."
695
  msgstr ""
696
  "برای اینکه بتوانید از این شورت کد استفاده نمایید ، باید ابتدا این افزونه ی "
697
  "جانبی را راه اندازی کنید ."
698
 
699
+ #: ../addons/buy-creds/myCRED-addon-buy-creds.php:929 ../addons/buy-creds/myCRED-
700
+ #: addon-buy-creds.php:1026
701
  msgid "No gateways installed."
702
  msgstr "هیچ درگاه پرداختی نصب نگردیده است ."
703
 
704
+ #: ../addons/buy-creds/myCRED-addon-buy-creds.php:930 ../addons/buy-creds/myCRED-
705
+ #: addon-buy-creds.php:1027
706
  msgid "Gateway does not exist."
707
  msgstr "درگاه موجود نیست ."
708
 
709
+ #: ../addons/buy-creds/myCRED-addon-buy-creds.php:966
710
  msgid "Yourself"
711
  msgstr "خودتان"
712
 
713
+ #: ../addons/buy-creds/myCRED-addon-buy-creds.php:1028
714
  msgid "No active gateways found."
715
  msgstr "درگاه پرداخت فعالی یافت نشد ."
716
 
717
+ #: ../addons/buy-creds/myCRED-addon-buy-creds.php:1029
718
  msgid "The selected gateway is not active."
719
  msgstr "درگاه پرداخت انتخابی فعال نیست ."
720
 
721
+ #: ../addons/buy-creds/myCRED-addon-buy-creds.php:1065
722
+ #, php-format
723
  msgid "Buy with %gateway%"
724
  msgstr ""
725
 
726
+ #: ../addons/buy-creds/myCRED-addon-buy-creds.php:1071 ../addons/sell-
727
+ #: content/myCRED-addon-sell-content.php:44
728
  msgid "Buy Now"
729
  msgstr "همین الان بخرید"
730
 
731
+ #: ../addons/buy-creds/myCRED-addon-buy-creds.php:1111
732
  msgid "No users found"
733
  msgstr "کاربری یافت نشد"
734
 
735
+ #: ../addons/buy-creds/myCRED-addon-buy-creds.php:1121
736
  msgid "To"
737
  msgstr "به"
738
 
739
+ #: ../addons/buy-creds/myCRED-addon-buy-creds.php:1138
740
  msgid "Select Amount"
741
  msgstr "مقدار را انتخاب کنید"
742
 
743
+ #: ../addons/buy-creds/myCRED-addon-buy-creds.php:1162
744
  msgid "min."
745
  msgstr "حداقل"
746
 
747
+ #: ../addons/buy-creds/myCRED-addon-buy-creds.php:1170
748
  msgid "Select Gateway"
749
  msgstr "درگاه پرداخت را انتخاب کنید"
750
 
751
  #: ../addons/buy-creds/abstracts/mycred-abstract-payment-gateway.php:89
752
+ msgid ""
753
+ "function myCRED_Payment_Gateway::process() must be over-ridden in a sub-"
754
+ "class."
755
+ msgstr ""
756
+ "تابع myCRED_Payment_Gateway::process() باید در کلاس زیرین ، تنظیم مجدد شود "
757
+ "."
758
 
759
  #: ../addons/buy-creds/abstracts/mycred-abstract-payment-gateway.php:98
760
  msgid "function myCRED_Payment_Gateway::buy() must be over-ridden in a sub-class."
769
  msgstr ""
770
 
771
  #: ../addons/buy-creds/abstracts/mycred-abstract-payment-gateway.php:213
772
+ #, php-format
773
  msgid "Gateway identified itself as \"%s\""
774
  msgstr ""
775
 
781
  msgid "Test Payment"
782
  msgstr ""
783
 
784
+ #: ../addons/buy-creds/abstracts/mycred-abstract-payment-gateway.php:264 ..
785
+ #: addons/gateway/carts/mycred-marketpress.php:179
786
  msgid "Payment"
787
  msgstr "پرداخت"
788
 
790
  msgid "Cancel purchase"
791
  msgstr ""
792
 
793
+ #: ../addons/buy-creds/abstracts/mycred-abstract-payment-gateway.php:360 ..
794
+ #: includes/mycred-admin.php:364 ../includes/mycred-admin.php:470
795
  msgid "required"
796
  msgstr "ضروری"
797
 
798
+ #: ../addons/buy-creds/abstracts/mycred-abstract-payment-gateway.php:361 ..
799
+ #: includes/mycred-admin.php:366 ../includes/mycred-admin.php:472
800
  msgid "optional"
801
  msgstr "اختیاری"
802
 
837
  msgstr ""
838
 
839
  #: ../addons/buy-creds/abstracts/mycred-abstract-payment-gateway.php:419
840
+ #, php-format
841
  msgid "%s Purchase"
842
  msgstr ""
843
 
844
+ #: ../addons/buy-creds/abstracts/mycred-abstract-payment-gateway.php:424 ..
845
+ #: addons/gateway/carts/mycred-wpecommerce.php:112
846
  msgid "Item"
847
  msgstr "محصول"
848
 
856
 
857
  #: ../addons/buy-creds/abstracts/mycred-abstract-payment-gateway.php:448
858
  msgid ""
859
+ "Here you can see information that are collected and sent to this gateway. "
860
+ "Debug information is only visible for administrators and are intended for "
861
+ "troubleshooting / testing of this gateway. Please disable \"Sandbox Mode\" "
862
+ "when you want to take this gateway online."
863
  msgstr ""
864
 
865
  #: ../addons/buy-creds/abstracts/mycred-abstract-payment-gateway.php:452
883
  msgstr ""
884
 
885
  #: ../addons/buy-creds/abstracts/mycred-abstract-payment-gateway.php:513
886
+ #, php-format
887
  msgid "Continue to %s"
888
  msgstr ""
889
 
890
+ #: ../addons/buy-creds/abstracts/mycred-abstract-payment-gateway.php:514 ..
891
+ #: addons/buy-creds/gateways/bitpay.php:240
892
  msgid "Click here if you are not automatically redirected"
893
  msgstr "اگر به صورت خودکار به آدرس مورد نظر منتقل نشدید ، اینجا را کلیک فرمایید ."
894
 
924
  msgid "Duplicate transaction"
925
  msgstr ""
926
 
927
+ #: ../addons/buy-creds/gateways/bitpay.php:25 ../addons/buy-
928
+ #: creds/gateways/netbilling.php:30 ../addons/buy-creds/gateways/paypal-standard.
929
+ #: php:25 ../addons/buy-creds/gateways/skrill.php:30
930
  msgid "Purchase of myCRED %plural%"
931
  msgstr "خرید %plural% \"اعتبار من\""
932
 
933
+ #: ../addons/buy-creds/gateways/bitpay.php:68 ../addons/buy-
934
+ #: creds/gateways/netbilling.php:102 ../addons/buy-creds/gateways/paypal-standard.
935
+ #: php:162 ../addons/buy-creds/gateways/skrill.php:134
936
  msgid "Sales Data is Valid"
937
  msgstr ""
938
 
939
+ #: ../addons/buy-creds/gateways/bitpay.php:72 ../addons/buy-
940
+ #: creds/gateways/netbilling.php:106 ../addons/buy-creds/gateways/paypal-standard.
941
+ #: php:166 ../addons/buy-creds/gateways/skrill.php:138
942
  msgid "Failed to validate sale"
943
  msgstr ""
944
 
945
+ #: ../addons/buy-creds/gateways/bitpay.php:78 ../addons/buy-
946
+ #: creds/gateways/netbilling.php:112 ../addons/buy-creds/gateways/paypal-standard.
947
+ #: php:172 ../addons/buy-creds/gateways/skrill.php:144 ../addons/buy-
948
+ #: creds/gateways/zombaio.php:166
949
  msgid "Failed to verify caller"
950
  msgstr ""
951
 
952
+ #: ../addons/buy-creds/gateways/bitpay.php:86 ../addons/buy-
953
+ #: creds/gateways/netbilling.php:120 ../addons/buy-creds/gateways/paypal-standard.
954
+ #: php:180 ../addons/buy-creds/gateways/skrill.php:152 ../addons/buy-
955
+ #: creds/gateways/zombaio.php:171
956
+ #, php-format
957
  msgid "Attempting to credit %s to users account"
958
  msgstr ""
959
 
960
+ #: ../addons/buy-creds/gateways/bitpay.php:97 ../addons/buy-
961
+ #: creds/gateways/netbilling.php:132 ../addons/buy-creds/gateways/paypal-standard.
962
+ #: php:193 ../addons/buy-creds/gateways/skrill.php:164 ../addons/buy-
963
+ #: creds/gateways/zombaio.php:207
964
+ #, php-format
965
  msgid "%s was successfully credited to users account"
966
  msgstr ""
967
 
968
+ #: ../addons/buy-creds/gateways/bitpay.php:104 ../addons/buy-
969
+ #: creds/gateways/netbilling.php:139 ../addons/buy-creds/gateways/paypal-standard.
970
+ #: php:200 ../addons/buy-creds/gateways/skrill.php:171 ../addons/buy-
971
+ #: creds/gateways/zombaio.php:214
972
  msgid "Failed to credit the users account"
973
  msgstr ""
974
 
975
+ #: ../addons/buy-creds/gateways/bitpay.php:107 ../addons/buy-
976
+ #: creds/gateways/netbilling.php:142 ../addons/buy-creds/gateways/paypal-standard.
977
+ #: php:203 ../addons/buy-creds/gateways/skrill.php:174
978
  msgid "Purchase not paid"
979
  msgstr ""
980
 
981
+ #: ../addons/buy-creds/gateways/bitpay.php:111 ../addons/buy-
982
+ #: creds/gateways/netbilling.php:146 ../addons/buy-creds/gateways/paypal-standard.
983
+ #: php:207 ../addons/buy-creds/gateways/skrill.php:178 ../addons/buy-
984
+ #: creds/gateways/zombaio.php:218
985
  msgid "Hanging up on caller"
986
  msgstr ""
987
 
988
+ #: ../addons/buy-creds/gateways/bitpay.php:175 ../addons/buy-
989
+ #: creds/gateways/netbilling.php:173 ../addons/buy-creds/gateways/paypal-standard.
990
+ #: php:237 ../addons/buy-creds/gateways/skrill.php:208 ../addons/buy-
991
+ #: creds/gateways/zombaio.php:241
992
  msgid "Please setup this gateway before attempting to make a purchase!"
993
+ msgstr ""
994
+ "لطفا قبل از اینکه تلاش به انجام پرداختی کنید ، این درگاه را راه اندازی "
995
+ "فرمایید ."
996
 
997
+ #: ../addons/buy-creds/gateways/bitpay.php:226 ../addons/buy-
998
+ #: creds/gateways/bitpay.php:235 ../addons/buy-creds/gateways/netbilling.php:224 .
999
+ #: ./addons/buy-creds/gateways/paypal-standard.php:295 ../addons/buy-
1000
+ #: creds/gateways/skrill.php:301 ../addons/buy-creds/gateways/zombaio.php:271
1001
  msgid "Processing payment &hellip;"
1002
  msgstr "پردازش پرداخت &hellip;"
1003
 
1019
  msgid "API Key"
1020
  msgstr "کلید API"
1021
 
1022
+ #: ../addons/buy-creds/gateways/bitpay.php:269 ../addons/buy-
1023
+ #: creds/gateways/paypal-standard.php:312 ../addons/buy-creds/gateways/skrill.php:
1024
+ #: 319
1025
  msgid "Currency"
1026
  msgstr "واحد پولی"
1027
 
1029
  msgid "Currency Code"
1030
  msgstr ""
1031
 
1032
+ #: ../addons/buy-creds/gateways/bitpay.php:276 ../addons/buy-
1033
+ #: creds/gateways/netbilling.php:260 ../addons/buy-creds/gateways/paypal-standard.
1034
+ #: php:326 ../addons/buy-creds/gateways/skrill.php:339
1035
  msgid "Item Name"
1036
  msgstr "نام محصول"
1037
 
1038
+ #: ../addons/buy-creds/gateways/bitpay.php:280 ../addons/buy-
1039
+ #: creds/gateways/netbilling.php:264 ../addons/buy-creds/gateways/paypal-standard.
1040
+ #: php:330 ../addons/buy-creds/gateways/skrill.php:343
1041
  msgid "Description of the item being purchased by the user."
1042
  msgstr "شرح محصولی که توسط کاربر خریداری می شود ."
1043
 
1044
+ #: ../addons/buy-creds/gateways/bitpay.php:283 ../addons/buy-
1045
+ #: creds/gateways/netbilling.php:267 ../addons/buy-creds/gateways/paypal-standard.
1046
+ #: php:333 ../addons/buy-creds/gateways/skrill.php:346
1047
+ #, php-format
1048
  msgid "%plural% Exchange Rate"
1049
  msgstr "نرخ تبادل %plural%"
1050
 
1051
+ #: ../addons/buy-creds/gateways/bitpay.php:286 ../addons/buy-
1052
+ #: creds/gateways/paypal-standard.php:336 ../addons/buy-creds/gateways/skrill.php:
1053
+ #: 349
1054
  msgid "Select currency"
1055
  msgstr ""
1056
 
1074
  msgid "Full Notifications"
1075
  msgstr ""
1076
 
1077
+ #: ../addons/buy-creds/gateways/bitpay.php:318 ../includes/mycred-network.php:196
1078
+ #: ../includes/mycred-network.php:210
1079
  msgid "No"
1080
  msgstr "خیر"
1081
 
1082
+ #: ../addons/buy-creds/gateways/bitpay.php:319 ../includes/mycred-network.php:192
1083
+ #: ../includes/mycred-network.php:206
1084
  msgid "Yes"
1085
  msgstr "بلی"
1086
 
1087
+ #: ../addons/buy-creds/gateways/netbilling.php:57 ../addons/buy-
1088
+ #: creds/gateways/skrill.php:89 ../addons/buy-creds/gateways/zombaio.php:103
1089
  msgid "Invalid Call"
1090
  msgstr ""
1091
 
1092
+ #: ../addons/buy-creds/gateways/netbilling.php:59 ../addons/buy-
1093
+ #: creds/gateways/skrill.php:91 ../addons/buy-creds/gateways/zombaio.php:105
1094
+ #, php-format
1095
  msgid "Caller verified as \"%s\""
1096
  msgstr ""
1097
 
1118
  #: ../addons/buy-creds/gateways/netbilling.php:277
1119
  msgid ""
1120
  "For this gateway to work, you must login to your NETbilling account and edit "
1121
+ "your site. Under \"Default payment form settings\" make sure the Postback CGI "
1122
+ "URL is set to the above address and \"Return method\" is set to POST."
1123
  msgstr ""
1124
 
1125
  #: ../addons/buy-creds/gateways/netbilling.php:312
1151
  msgstr ""
1152
 
1153
  #: ../addons/buy-creds/gateways/paypal-standard.php:92
1154
+ #, php-format
1155
  msgid "Attempt: %d failed. Error: %s : %s"
1156
  msgstr ""
1157
 
1158
  #: ../addons/buy-creds/gateways/paypal-standard.php:103
1159
+ #, php-format
1160
  msgid "Secondary systems failing. Final note: %s : %s"
1161
  msgstr ""
1162
 
1168
  msgid "Call rejected"
1169
  msgstr ""
1170
 
1171
+ #: ../addons/buy-creds/gateways/paypal-standard.php:223 ../addons/buy-
1172
+ #: creds/gateways/skrill.php:194
1173
  msgid "Success"
1174
  msgstr "موفق"
1175
 
1176
+ #: ../addons/buy-creds/gateways/paypal-standard.php:224 ../addons/buy-
1177
+ #: creds/gateways/skrill.php:195
1178
  msgid "Thank you for your purchase"
1179
  msgstr "**ممنون از خرید و حمایتتان**"
1180
 
1181
+ #: ../addons/buy-creds/gateways/paypal-standard.php:290 ../addons/buy-
1182
+ #: creds/gateways/skrill.php:247
1183
  msgid "Return to "
1184
  msgstr "بازگشت به"
1185
 
1186
+ #: ../addons/buy-creds/gateways/paypal-standard.php:317 ../addons/buy-
1187
+ #: creds/gateways/skrill.php:376 ../addons/gateway/event-booking/mycred-
1188
+ #: eventespresso3.php:455
1189
  msgid "Important!"
1190
  msgstr "نکته ی مهم !"
1191
 
1195
  "transactions will not be approved until you login to your PayPal account and "
1196
  "Accept each transaction!"
1197
  msgstr ""
1198
+ "اطمینان حاصل کنید که واحد پولی مورد نظرتان توسط اکانت پی پال شما ، پشتیبانی "
1199
+ "می شود . در غیر این صورت تراکنش ها تایید نخواهند شد ، مگر اینکه به صورت دستی "
1200
+ "وارد اکانت پی پال تان شده و دونه به دونه تراکنش ها را تایید فرمایید !"
1201
 
1202
  #: ../addons/buy-creds/gateways/paypal-standard.php:320
1203
  msgid "Account Email"
1210
  #: ../addons/buy-creds/gateways/paypal-standard.php:343
1211
  msgid ""
1212
  "For this gateway to work, you must login to your PayPal account and under "
1213
+ "\"Profile\" > \"Selling Tools\" enable \"Instant Payment Notifications\". Make "
1214
+ "sure the \"Notification URL\" is set to the above address and that you have "
1215
+ "selected \"Receive IPN messages (Enabled)\"."
1216
+ msgstr ""
1217
+ "برای اینکه این درگاه به خوبی عمل کند ، شما باید وارد اکانت پی پال خود شده و "
1218
+ "به این آدرس مراجعه کنید : \"Profile\" > \"Selling Tools\" سپس از آنجا ای "
1219
+ "گزینه را فعال کنید : \"Instant Payment Notifications\" . اطمینان حاصل کنید "
1220
+ "که \"Notification URL\" با آدرس وارد شده در بالا یکی باشد و همچنین این گزینه "
1221
+ "را تیک زده باشید : \"Receive IPN messages (Enabled)\" ( برای اینکه راحت تر "
1222
+ "بخش های مورد نظر رو توی اکانت مدیریتی پی پال خودتون پیدا کنید ، آدرس ها رو "
1223
+ "ترجمه نکردم :) )"
1224
 
1225
  #: ../addons/buy-creds/gateways/skrill.php:284
1226
  msgid "Product:"
1262
  msgid "Checkout Page"
1263
  msgstr "صفحه تسویه حساب"
1264
 
1265
+ #: ../addons/buy-creds/gateways/skrill.php:361 ../addons/gateway/carts/mycred-
1266
+ #: woocommerce.php:86 ../addons/ranks/myCRED-addon-ranks.php:792 ..
1267
+ #: addons/transfer/myCRED-addon-transfer.php:637 ../includes/mycred-widgets.php:
1268
+ #: 197 ../includes/mycred-widgets.php:395 ../includes/mycred-widgets.php:587 ..
1269
+ #: modules/mycred-module-hooks.php:2302
1270
  msgid "Title"
1271
  msgstr "عنوان"
1272
 
1276
  "اگر این بخش را خالی بگذارید ، از ایمیل اکانتتان برای عنوان صفحه ی پرداخت "
1277
  "Skrill استفاده خواهد شد ."
1278
 
1279
+ #: ../addons/buy-creds/gateways/skrill.php:366 ../addons/buy-
1280
+ #: creds/gateways/zombaio.php:306
1281
  msgid "Logo URL"
1282
  msgstr "آدرس لوگو"
1283
 
1284
  #: ../addons/buy-creds/gateways/skrill.php:368
1285
  msgid ""
1286
  "The URL to the image you want to use on the top of the gateway. For best "
1287
+ "integration results we recommend you use logos with dimensions up to 200px "
1288
+ "in width and 50px in height."
1289
  msgstr ""
1290
  "آدرس عکسی که می خواید بالای صفحه ی پرداخت درگاه نمایش داده بشه . برای بهترین "
1291
+ "نتیجه و هماهنگی بهتر عکس با درگاه ، پیشنهاد می کنیم که نهایتا عرض عکس 200 "
1292
+ "پیکسل و ارتفاع آن 50 پیکسل باشد ."
1293
 
1294
  #: ../addons/buy-creds/gateways/skrill.php:371
1295
  msgid "Confirmation Note"
1297
 
1298
  #: ../addons/buy-creds/gateways/skrill.php:373
1299
  msgid ""
1300
+ "Optional text to show user once a transaction has been successfully "
1301
+ "completed. This text is shown by Skrill."
1302
  msgstr ""
1303
+ "متنی اختیاری که به محض موفقیت آمیز بودن پرداخت ، توسط Skrill به کاربر "
1304
+ "نمایش داده خواهد شد ."
1305
 
1306
  #: ../addons/buy-creds/gateways/skrill.php:377
1307
  msgid ""
1308
+ "By default all Skrill Merchant account accept payments via Bank Transfers. "
1309
+ "When a user selects this option, no %_plural% are awarded! You will need to "
1310
+ "manually award these once the bank transfer is completed."
1311
  msgstr ""
1312
+ "به صورت پیش فرض ، تمام اکانت های Skrill پرداخت توسط جابجایی بین بانکی را "
1313
+ "قبول می کنند . منتهی زمانی که کاربر از این روش برای پرداخت استفاده بکنه ، "
1314
+ "حتی یک %_plural% هم بهش داده نمی شه ! در این صورت شما باید بعد از اتمام خرید "
1315
+ "و موفقیت آمیز بودن آن ، به صورت دستی میزان سکه ی خریداری شده رو به کاربر "
1316
+ "اهدا کنید ."
1317
 
1318
  #: ../addons/buy-creds/gateways/skrill.php:378
1319
  msgid ""
1320
  "By default purchases made using Skrill will result in users having to signup "
1321
+ "for a Skrill account (if they do not have one already). You can contact "
1322
+ "Skrill Merchant Services and request to disable this feature."
1323
  msgstr ""
1324
+ "به صورت پیش فرض ، خریدهایی که توسط Skrill انجام می گیره ، ثبت نام کاربر در "
1325
+ "این سامانه رو به دنبال داره ! یعنی این سامانه پرداخت از کاربر می خواد که توی "
1326
+ "سیستمش ثبت نام کنه تا بتونه پرداخت داشته باشه . در این موارد شما می تونید با "
1327
+ "این سامانه مکاتبه داشته و درخواست بکنید که این ویژگی رو غیرفعال بکنند ."
1328
 
1329
  #: ../addons/buy-creds/gateways/zombaio.php:154
1330
  msgid "Checking Transaction ID"
1367
  "For this gateway to work, login to ZOA and set the Postback URL to the above "
1368
  "address and click validate."
1369
  msgstr ""
1370
+ "برای اینکه این درگاه به خوبی عمل کند ، باید وارد حساب خود در سامانه Zombaio "
1371
+ "شده و آدرس Postback را مطابق آدرس بالا وارد کرده و سپس تایید را بزنید ."
1372
 
1373
+ #: ../addons/coupons/myCRED-addon-coupons.php:86 ../addons/coupons/myCRED-addon-
1374
+ #: coupons.php:92 ../addons/coupons/myCRED-addon-coupons.php:438 ..
1375
+ #: includes/mycred-overview.php:188 ../includes/mycred-overview.php:195 ..
1376
+ #: modules/mycred-module-addons.php:168
1377
  msgid "Coupons"
1378
  msgstr ""
1379
 
1380
+ #: ../addons/coupons/myCRED-addon-coupons.php:87 ..
1381
+ #: addons/coupons/includes/mycred-coupon-shortcodes.php:69
1382
  msgid "Coupon"
1383
  msgstr ""
1384
 
1410
  msgid "No coupons found in Trash"
1411
  msgstr ""
1412
 
1413
+ #: ../addons/coupons/myCRED-addon-coupons.php:98 ../addons/email-notices/myCRED-
1414
+ #: addon-email-notices.php:161 ../addons/email-notices/myCRED-addon-email-notices.
1415
+ #: php:167 ../addons/email-notices/myCRED-addon-email-notices.php:173 ..
1416
+ #: addons/email-notices/myCRED-addon-email-notices.php:270 ../modules/mycred-
1417
+ #: module-addons.php:179
1418
  msgid "Email Notices"
1419
  msgstr "اطلاعیه های ایمیلی"
1420
 
1421
+ #: ../addons/coupons/myCRED-addon-coupons.php:119 ../addons/coupons/myCRED-addon-
1422
+ #: coupons.php:122
1423
  msgid "Coupon updated."
1424
  msgstr ""
1425
 
1443
  msgid "Coupon Code"
1444
  msgstr ""
1445
 
1446
+ #: ../addons/coupons/myCRED-addon-coupons.php:157 ../addons/coupons/myCRED-addon-
1447
+ #: coupons.php:309
1448
  msgid "Value"
1449
  msgstr ""
1450
 
1452
  msgid "Usage"
1453
  msgstr ""
1454
 
1455
+ #: ../addons/coupons/myCRED-addon-coupons.php:159 ../addons/transfer/myCRED-addon-
1456
+ #: transfer.php:243 ../modules/mycred-module-hooks.php:1106 ../modules/mycred-
1457
+ #: module-hooks.php:1396
1458
  msgid "Limits"
1459
  msgstr "محدودیت ها"
1460
 
1466
  msgid "not yet used"
1467
  msgstr ""
1468
 
1469
+ #: ../addons/coupons/myCRED-addon-coupons.php:198 ../modules/mycred-module-hooks.
1470
+ #: php:1834
1471
  msgid "Total"
1472
  msgstr ""
1473
 
1484
  msgstr ""
1485
 
1486
  #: ../addons/coupons/myCRED-addon-coupons.php:213
1487
+ #, php-format
1488
  msgid "In %s time"
1489
  msgstr ""
1490
 
1522
 
1523
  #: ../addons/coupons/myCRED-addon-coupons.php:356
1524
  msgid ""
1525
+ "The maximum number of times this coupon can be used. Note that the coupon "
1526
+ "will be automatically trashed once this maximum is reached!"
1527
  msgstr ""
1528
 
1529
  #: ../addons/coupons/myCRED-addon-coupons.php:360
1536
 
1537
  #: ../addons/coupons/myCRED-addon-coupons.php:395
1538
  msgid ""
1539
+ "Optional minimum balance a user must have in order to use this coupon. Use "
1540
+ "zero to disable."
1541
  msgstr ""
1542
 
1543
  #: ../addons/coupons/myCRED-addon-coupons.php:399
1546
 
1547
  #: ../addons/coupons/myCRED-addon-coupons.php:402
1548
  msgid ""
1549
+ "Optional maximum balance a user can have in order to use this coupon. Use "
1550
+ "zero to disable."
1551
  msgstr ""
1552
 
1553
  #: ../addons/coupons/myCRED-addon-coupons.php:444
1554
+ #, php-format
1555
  msgid ""
1556
  "Log entry for successful coupon redemption. Use %coupon% to show the coupon "
1557
  "code."
1587
 
1588
  #: ../addons/coupons/myCRED-addon-coupons.php:472
1589
  msgid ""
1590
+ "Message to show when a user does not meet the minimum balance requirement. "
1591
+ "(if used)"
1592
  msgstr ""
1593
 
1594
  #: ../addons/coupons/myCRED-addon-coupons.php:475
1597
 
1598
  #: ../addons/coupons/myCRED-addon-coupons.php:479
1599
  msgid ""
1600
+ "Message to show when a user does not meet the maximum balance requirement. "
1601
+ "(if used)"
1602
  msgstr ""
1603
 
1604
  #: ../addons/coupons/myCRED-addon-coupons.php:482
1617
  msgid "Apply Coupon"
1618
  msgstr ""
1619
 
1620
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:162 ../addons/email-
1621
+ #: notices/myCRED-addon-email-notices.php:1138
1622
  msgid "Email Notice"
1623
  msgstr "اطلاعیه ایمیلی"
1624
 
1625
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:163 ..
1626
+ #: addons/ranks/myCRED-addon-ranks.php:248
1627
  msgid "Add New"
1628
  msgstr "ساختن مورد جدید"
1629
 
1630
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:164
1631
  msgid "Add New Notice"
1632
  msgstr "ساختن اطلاعیه ایمیل جدید"
1633
 
1634
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:165
1635
  msgid "Edit Notice"
1636
  msgstr "ویرایش اطلاعیه"
1637
 
1638
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:166
1639
  msgid "New Notice"
1640
  msgstr "اطلاعیه جدید"
1641
 
1642
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:168
1643
  msgid "View Notice"
1644
  msgstr "نمایش اطلاعیه"
1645
 
1646
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:169
1647
  msgid "Search Email Notices"
1648
  msgstr "جستجو در بین اطلاعیه های ایمیلی"
1649
 
1650
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:170
1651
  msgid "No email notices found"
1652
  msgstr "هیچ اطلاعیه ای یافت نشد"
1653
 
1654
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:171
1655
  msgid "No email notices found in Trash"
1656
  msgstr "هیچ اطلاعیه ای در زباله دان یافت نشد"
1657
 
1658
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:195 ..
1659
+ #: addons/gateway/carts/mycred-wpecommerce.php:337 ../includes/mycred-functions.
1660
+ #: php:589
1661
  msgid "General"
1662
  msgstr "بخش عمومی"
1663
 
1664
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:196
1665
  msgid "users balance changes"
1666
  msgstr "میزان امتیازات کاربران تغییر کند"
1667
 
1668
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:197
1669
  msgid "user gains %_plural%"
1670
  msgstr "کاربران %_plural% کسب کنند"
1671
 
1672
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:198
1673
  msgid "user lose %_plural%"
1674
  msgstr "کاربران %_plural% از دست بدهند"
1675
 
1676
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:199
1677
  msgid "users balance reaches zero"
1678
  msgstr "میزان امتیازات کاربر به صفر برسد"
1679
 
1680
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:200
1681
  msgid "users balance goes minus"
1682
  msgstr "میزان امتیازات کاربر به عددی منفی برسد"
1683
 
1684
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:206
1685
  msgid "Sell Content Add-on"
1686
  msgstr "بخش مربوط به \"افزونه فروش محتوا\""
1687
 
1688
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:207
1689
  msgid "user buys content"
1690
  msgstr "کاربران محتوایی را بخرند"
1691
 
1692
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:208
1693
  msgid "authors content gets sold"
1694
  msgstr "متن نویسندگان به فروش برود"
1695
 
1696
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:215
1697
  msgid "buyCREDs Add-on"
1698
  msgstr "بخش مربوط به \"افزونه خرید امتیاز\""
1699
 
1700
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:216
1701
  msgid "user buys %_plural%"
1702
  msgstr "کاربران %_plural% بخرند"
1703
 
1704
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:223
1705
  msgid "Transfer Add-on"
1706
  msgstr "بخش مربوط به \"افزونه انتقال امتیاز\""
1707
 
1708
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:224
1709
  msgid "user sends %_plural%"
1710
  msgstr "کاربران %_plural% ارسال کنند"
1711
 
1712
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:225
1713
  msgid "user receives %_plural%"
1714
  msgstr "کاربران %_plural% دریافت کنند"
1715
 
1716
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:232
1717
  msgid "Ranks Add-on"
1718
  msgstr "بخش مربوط به \"افزونه مدال دهی\""
1719
 
1720
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:233
1721
  msgid "user is demoted"
1722
  msgstr "کاربر تنزل درجه پیدا کند ( رنک از دست بدهد )"
1723
 
1724
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:234
1725
  msgid "user is promoted"
1726
  msgstr "کاربر ترفیع درجه پیدا کند ( رنک بدست بیاورد )"
1727
 
1728
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:272
1729
  msgid ""
1730
  "Settings that apply to all email notices and can not be overridden for "
1731
  "individual emails."
1732
  msgstr ""
1733
+ "تنظیماتی که بر روی تمام اطلاعیه های ایمیلی اعمال شده و برای ایمیل های تکی "
1734
+ "نمی توان این تنظیم را تغییر داد ( با زبون بی زبونی داره می گه یعنی اگر توی "
1735
+ "بخش اطلاعیه های ایمیل بخوای یه ایمیل جدید ایجاد بکنی ، اونجا نمی تونی این "
1736
+ "تنظیم رو تغییر بدی که کد اچ تی ام ال هم قبول بکنه یا نکنه ، فقط از همینجا می "
1737
+ "تونی تغییر بدی ! دیگه ببخشید خودمونی گفتم :دی )"
1738
 
1739
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:273
1740
  msgid "Email Format"
1741
  msgstr "فرمت ایمیل"
1742
 
1743
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:277
1744
  msgid "Plain text emails only."
1745
  msgstr "ایمیل هایی که فقط متن معمولی را در خود دارند ، بدون هیچ صفحه آرایی"
1746
 
1747
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:281
1748
  msgid "HTML or Plain text emails."
1749
  msgstr ""
1750
+ "ایمیل های حاوی کدهای HTML و متن های عادی که با ترکیب این دو می توان ایمیل "
1751
+ "هایی با صفحه بندی زیبا تولید کرد ."
1752
 
1753
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:284
1754
  msgid "Filters"
1755
  msgstr "پالایش ایمیل ها"
1756
 
1757
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:288
1758
  msgid ""
1759
+ "Allow WordPress and Third Party Plugins to filter the email subject before "
1760
+ "an email is sent."
1761
  msgstr ""
1762
+ "به وردپرس و سایر پلاگین های شخص ثالث ، اجازه دهید تا عنوان ایمیل ها را قبل "
1763
+ "از ارسال پالایش کنند ."
1764
 
1765
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:292
1766
  msgid ""
1767
+ "Allow WordPress and Third Party Plugins to filter the email content before "
1768
+ "an email is sent."
1769
  msgstr ""
1770
  "به وردپرس و سایر پلاگین های شخص ثالث ، اجازه دهید تا متن ایمیل ها را قبل از "
1771
  "ارسال پالایش کنند ."
1772
 
1773
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:297 ../addons/email-
1774
+ #: notices/myCRED-addon-email-notices.php:303
1775
+ msgid "Email Schedule"
1776
+ msgstr ""
1777
+
1778
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:299
1779
+ msgid "WordPress Cron is disabled. Emails will be sent immediately."
1780
+ msgstr ""
1781
+
1782
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:307
1783
+ msgid "Send emails immediately"
1784
+ msgstr ""
1785
+
1786
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:311
1787
+ msgid "Send emails once an hour"
1788
+ msgstr ""
1789
+
1790
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:315
1791
+ msgid "Send emails once a day"
1792
+ msgstr ""
1793
+
1794
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:318
1795
+ msgid "Subscriptions"
1796
+ msgstr ""
1797
+
1798
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:320
1799
+ #, php-format
1800
+ msgid ""
1801
+ "Use the %s shortcode to allow users to subscribe / unsubscribe to email "
1802
+ "updates."
1803
+ msgstr ""
1804
+
1805
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:325
1806
+ msgid "SMTP Override"
1807
+ msgstr ""
1808
+
1809
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:329
1810
+ msgid ""
1811
+ "SMTP Debug. Enable if you are experiencing issues with wp_mail() or if you "
1812
+ "use a SMTP plugin for emails."
1813
+ msgstr ""
1814
+
1815
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:332
1816
  msgid ""
1817
  "Default email settings. These settings can be individually overridden when "
1818
  "editing emails."
1819
  msgstr ""
1820
+ "تنظیمات پیش فرض ایمیل . این تنظیماتی که در زیر می آیند ، برای هر ایمیل تکی "
1821
+ "نیز قابل ویرایش هستند ."
1822
 
1823
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:333 ../addons/email-
1824
+ #: notices/myCRED-addon-email-notices.php:802
1825
  msgid "Email Settings"
1826
  msgstr "تنظیمات ایمیل"
1827
 
1828
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:336 ../addons/email-
1829
+ #: notices/myCRED-addon-email-notices.php:925
1830
  msgid "Senders Name:"
1831
  msgstr "نام ارسال کننده :"
1832
 
1833
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:340 ../addons/email-
1834
+ #: notices/myCRED-addon-email-notices.php:927
1835
  msgid "Senders Email:"
1836
  msgstr "آدرس ایمیل ارسال کننده :"
1837
 
1838
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:344
1839
  msgid "Reply-To:"
1840
  msgstr "پاسخ های دریافتی به ایمیل زیر فرستاده شود :"
1841
 
1842
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:348
1843
  msgid "Default Email Content"
1844
  msgstr "محتوای پیش فرض ایمیل"
1845
 
1846
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:352
1847
  msgid "Default email content."
1848
  msgstr "در این بخش متن ایمیل پیش فرض رو وارد می کنید"
1849
 
1850
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:355
1851
  msgid "Default Email Styling"
1852
  msgstr "قالب پیش فرض ایمیل"
1853
 
1854
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:359
1855
  msgid "Ignored if HTML is not allowed in emails."
1856
  msgstr ""
1857
+ "در اینجا هم قالب پیش فرض ایمیل رو تعیین می کنید که کد های HTML خواهند بود . "
1858
+ "در صورتی که نمی خواید از HTML استفاده کنید ، توی این کادر چیزی وارد نفرمایید "
1859
+ "."
1860
 
1861
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:736 ../addons/email-
1862
+ #: notices/myCRED-addon-email-notices.php:851
1863
  msgid "Email Subject"
1864
  msgstr "موضوع ایمیل"
1865
 
1866
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:737
1867
  msgid "Status"
1868
  msgstr "وضعیت"
1869
 
1870
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:757
1871
  msgid "Not Active"
1872
  msgstr "غیرفعال"
1873
 
1874
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:759
1875
+ #, php-format
1876
  msgid "Scheduled:<br /><strong>%1$s</strong>"
1877
  msgstr "برنامه ریزی شده در : <br /><strong>%1$s</strong>"
1878
 
1879
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:763
1880
  msgid "Active"
1881
  msgstr "فعال"
1882
 
1883
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:765
1884
+ #, php-format
1885
  msgid "Active - Last run:<br /><strong>%1$s</strong>"
1886
  msgstr "فعال - آخرین اجرا : <br /><strong>%1$s</strong>"
1887
 
1888
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:775
1889
  msgid "Email is sent when"
1890
  msgstr "ایمیل فرستاده وقتی فرستاده شود که"
1891
 
1892
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:777
1893
  msgid "Missing instance for this notice!"
1894
  msgstr "یکی از مراحل برای این اطلاعیه جا افتاده است !"
1895
 
1896
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:786 ../addons/email-
1897
+ #: notices/myCRED-addon-email-notices.php:788 ../addons/email-notices/myCRED-
1898
+ #: addon-email-notices.php:790
1899
  msgid "Sent To"
1900
  msgstr "ارسال شده به"
1901
 
1902
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:788 ../addons/email-
1903
+ #: notices/myCRED-addon-email-notices.php:916
1904
  msgid "Administrator"
1905
  msgstr "مدیر"
1906
 
1907
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:790
1908
  msgid "Both Administrator and User"
1909
  msgstr "هم کاربر و هم مدیر"
1910
 
1911
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:811
1912
  msgid "Available Template Tags"
1913
  msgstr "نمونه تگ های قابل استفاده"
1914
 
1915
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:822
1916
  msgid "Email Header"
1917
  msgstr "سربرگ ایمیل"
1918
 
1919
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:882
1920
  msgid "Send this email notice when..."
1921
  msgstr "این اطلاعیه ایمیلی زمانی ارسال شود که ..."
1922
 
1923
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:913
1924
  msgid "Recipient:"
1925
  msgstr "گیرندگان ایمیل :"
1926
 
1927
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:917
1928
  msgid "Both"
1929
  msgstr "هر دو"
1930
 
1931
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:921 ..
1932
+ #: addons/gateway/carts/mycred-woocommerce.php:148 ../modules/mycred-module-
1933
+ #: settings.php:484 ../modules/mycred-module-settings.php:503 ../modules/mycred-
1934
+ #: module-settings.php:526
1935
+ msgid "Label"
1936
+ msgstr "برچسب ( اتیکت )"
1937
+
1938
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:929
1939
  msgid "Reply-To Email:"
1940
  msgstr "ایمیلی که پاسخ ها به آن ارسال می شود :"
1941
 
1942
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:935
1943
  msgid "Save"
1944
  msgstr "ذخیره"
1945
 
1946
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:947
1947
  msgid "CSS Styling"
1948
  msgstr "صفحه آرایی با CSS"
1949
 
1950
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:963
1951
  msgid "Site Related"
1952
  msgstr "مرتبط با سایت"
1953
 
1954
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:964
1955
  msgid "Your websites title"
1956
  msgstr "عنوان وبسایت شما"
1957
 
1958
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:965
1959
  msgid "Your websites address"
1960
  msgstr "آدرس وبسایت شما"
1961
 
1962
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:966
1963
  msgid "Your websites tagline (description)"
1964
  msgstr "شرح وبسایت شما"
1965
 
1966
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:967
1967
  msgid "Your websites admin email"
1968
  msgstr "آدرس ایمیل مدیر وبسایت شما"
1969
 
1970
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:968
1971
  msgid "Total number of blog members"
1972
  msgstr "تعداد کل کاربران سایت شما"
1973
 
1974
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:1046 ../addons/email-
1975
+ #: notices/myCRED-addon-email-notices.php:1049
1976
+ #, php-format
1977
  msgid "Email Notice Updated. View <a href=\"%1$s\">All Notices</a>."
1978
  msgstr ""
1979
  "اطلاعیه ی ایمیلی به روزرسانی شد . برای دیدن تمامی اطلاعیه ها <a "
1980
  "href=\"%1$s\">کلیک فرمایید</a>"
1981
 
1982
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:1051
1983
  msgid "Email Notice Activated"
1984
  msgstr "اطلاعیه فعال شد"
1985
 
1986
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:1052
1987
  msgid "Email Notice Saved"
1988
  msgstr "اطلاعیه ذخیره شد"
1989
 
1990
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:1053
1991
+ #, php-format
1992
  msgid "Email Notice Submitted for approval. View <a href=\"%1$s\">All Notices</a>."
1993
  msgstr ""
1994
  "اطلاعیه ایمیلی برای تایید ثبت شد . برای نمایش تمام اطلاعیه ها <a "
1995
  "href=\"%1$s\">اینجا را کلیک فرمایید</a>"
1996
 
1997
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:1055
1998
+ #, php-format
1999
  msgid "Email Notice scheduled for: <strong>%1$s</strong>."
2000
  msgstr "اطلاعیه ایمیلی برای <strong>%1$s</strong> زمانبندی شد ."
2001
 
2002
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:1074
2003
  msgid ""
2004
+ "Once a notice is \"published\" it becomes active! Select \"Save Draft\" if you "
2005
+ "are not yet ready to use this email notice!"
2006
  msgstr ""
2007
+ "به محض اینکه اطلاعیه ای \"انتشار\" یابد ، فعال می شود ! اگر هنوز آماده ی "
2008
+ "استفاده از این اطلاعیه نیستید ، کلید \"ذخیره به عنوان پیش نویس\" پیشنهاد می "
2009
+ "گردد ."
2010
 
2011
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:1076
2012
+ #, php-format
2013
  msgid "This notice will become active on:<br /><strong>%1$s</strong>"
2014
  msgstr "این اطلاعیه در تاریخ زیر فعال می شود :<br /><strong>%1$s</strong>"
2015
 
2016
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:1078
2017
  msgid "This email notice is active."
2018
  msgstr "این اطلاعیه ی ایمیلی فعال شد ."
2019
 
2020
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:1089
2021
+ msgid "Settings saved."
2022
+ msgstr ""
2023
+
2024
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:1137
2025
+ msgid "Unsubscribe"
2026
+ msgstr ""
2027
+
2028
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:1158
2029
+ msgid "There are no email notifications yet."
2030
+ msgstr ""
2031
+
2032
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:1164
2033
+ msgid "Save Changes"
2034
+ msgstr ""
2035
+
2036
+ #: ../addons/gateway/carts/mycred-marketpress.php:147 ../addons/gateway/event-
2037
+ #: booking/mycred-eventespresso3.php:277 ../addons/gateway/event-booking/mycred-
2038
+ #: eventespresso3.php:301 ../addons/gateway/event-booking/mycred-eventsmanager.
2039
+ #: php:412 ../includes/mycred-admin.php:478
2040
  msgid "Current Balance"
2041
  msgstr "میزان امتیازات اخیر"
2042
 
2043
+ #: ../addons/gateway/carts/mycred-marketpress.php:151 ..
2044
+ #: addons/gateway/carts/mycred-wpecommerce.php:123 ../addons/gateway/event-
2045
+ #: booking/mycred-eventespresso3.php:281 ../addons/gateway/event-booking/mycred-
2046
+ #: eventespresso3.php:305 ../addons/gateway/event-booking/mycred-eventsmanager.
2047
+ #: php:416
2048
  msgid "Total Cost"
2049
  msgstr "هزینه کل"
2050
 
2051
+ #: ../addons/gateway/carts/mycred-marketpress.php:155 ../addons/gateway/event-
2052
+ #: booking/mycred-eventespresso3.php:285 ../addons/gateway/event-booking/mycred-
2053
+ #: eventespresso3.php:309
2054
  msgid "Balance After Purchase"
2055
  msgstr "میزان امتیاز بعد از خرید"
2056
 
2057
+ #: ../addons/gateway/carts/mycred-marketpress.php:182 ..
2058
+ #: addons/gateway/carts/mycred-marketpress.php:231
2059
  msgid "Go Back"
2060
  msgstr ""
2061
 
2064
  msgstr "از اکانتتان کسر می گردد ."
2065
 
2066
  #: ../addons/gateway/carts/mycred-marketpress.php:221
2067
+ #, php-format
2068
  msgid ""
2069
+ "Sorry, but you can not use this gateway as your account is excluded. Please "
2070
+ "<a href=\"%s\">select a different payment method</a>."
2071
  msgstr ""
2072
  "شرمنده ایم ، اما مادامی که اکانت شما بن شده است ، نمی توانید از این درگاه "
2073
  "استفاده کنید . لطفا <a href=\"%s\">درگاه پرداخت دیگری را انتخاب کنید .</a>"
2076
  msgid "Paid"
2077
  msgstr "پرداخت شده"
2078
 
2079
+ #: ../addons/gateway/carts/mycred-marketpress.php:243 ..
2080
+ #: addons/gateway/carts/mycred-woocommerce.php:33 ../includes/mycred-network.php:
2081
+ #: 57 ../includes/mycred-network.php:58 ../plugins/mycred-hook-badgeOS.php:81
2082
  msgid "myCRED"
2083
  msgstr "افزونه \"اعتبار من\""
2084
 
2086
  msgid "%_singular% Balance"
2087
  msgstr "میزان %_singular%"
2088
 
2089
+ #: ../addons/gateway/carts/mycred-marketpress.php:348 ..
2090
+ #: addons/gateway/carts/mycred-woocommerce.php:101 ..
2091
+ #: addons/gateway/carts/mycred-wpecommerce.php:27
2092
+ #, php-format
2093
  msgid "Payment for Order: #%order_id%"
2094
  msgstr "پرداخت برای سفارش : #%order_id%"
2095
 
2102
  msgstr "پرداخت با میزان امتیاز اکانت کاربریتان"
2103
 
2104
  #: ../addons/gateway/carts/mycred-marketpress.php:353
2105
+ #, php-format
2106
  msgid ""
2107
  "TOTAL amount has been deducted from your account. Your current balance is: "
2108
  "%balance_f%"
2109
  msgstr ""
2110
+ "کل مقدار امتیازی که از حساب شما کسر شده است . میزان امتیاز فعلی شما در حال "
2111
+ "حاضر : %balance_f%"
2112
 
2113
  #: ../addons/gateway/carts/mycred-marketpress.php:354
2114
+ #, php-format
2115
  msgid ""
2116
+ "Insufficient funds. Please select another form of payment. Your current "
2117
+ "balance is: %balance_f%"
2118
  msgstr ""
2119
+ "موجودی شما کافی نیست ! لطفا روش دیگری از پرداخت را انتخاب نمایید . میزان "
2120
+ "امتیاز فعلی شما در حال حاضر %balance_f% می باشد ."
2121
 
2122
  #: ../addons/gateway/carts/mycred-marketpress.php:355
2123
  msgid ""
2128
  "href=\"%login_url_here%\">این آدرس</a> وارد سایت شوید ."
2129
 
2130
  #: ../addons/gateway/carts/mycred-marketpress.php:362
2131
+ #, php-format
2132
  msgid ""
2133
  "Let your users pay for items in their shopping cart using their %s Account. "
2134
+ "Note! This gateway requires your users to be logged in when making a "
2135
+ "purchase!"
2136
  msgstr ""
2137
+ "به کاربرانتان این امکان را بدهید که محصولات داخل سبد خریدشان را با میزان "
2138
+ "امتیاز اکانت %s پرداخت کنند . توجه ! این درگاه ، کاربران را ملزم می دارد "
2139
+ "برای پرداخت ، ابتدا وارد سایت شوند ."
2140
 
2141
  #: ../addons/gateway/carts/mycred-marketpress.php:365
2142
  msgid "Method Name"
2154
  msgid "Gateway Logo URL"
2155
  msgstr "آدرس اینترنتی لوگوی درگاه"
2156
 
2157
+ #: ../addons/gateway/carts/mycred-marketpress.php:393 ..
2158
+ #: addons/gateway/carts/mycred-woocommerce.php:124
2159
+ #, php-format
2160
  msgid "How much is 1 %_singular% worth in %currency%?"
2161
  msgstr ""
2162
  "یک %_singular% معادل چند %currency% است ؟ ( معادل یک %_singular% در واحد "
2163
  "%currency% )"
2164
 
2165
+ #: ../addons/gateway/carts/mycred-marketpress.php:398 ..
2166
+ #: addons/gateway/carts/mycred-woocommerce.php:129 ..
2167
+ #: addons/gateway/carts/mycred-wpecommerce.php:356 ../addons/gateway/event-
2168
+ #: booking/mycred-eventespresso3.php:450 ../addons/gateway/event-booking/mycred-
2169
+ #: eventsmanager-pro.php:499 ../addons/gateway/event-booking/mycred-eventsmanager.
2170
+ #: php:578
2171
  msgid "Exchange Rate"
2172
  msgstr "نرخ مبادلات"
2173
 
2174
+ #: ../addons/gateway/carts/mycred-marketpress.php:407 ..
2175
+ #: addons/gateway/carts/mycred-woocommerce.php:157 ..
2176
+ #: addons/gateway/carts/mycred-wpecommerce.php:360 ../addons/gateway/event-
2177
+ #: booking/mycred-eventespresso3.php:462 ../addons/gateway/event-booking/mycred-
2178
+ #: eventsmanager-pro.php:490 ../addons/gateway/event-booking/mycred-eventsmanager.
2179
+ #: php:569
2180
  msgid "Profit Sharing"
2181
  msgstr "سهم سود"
2182
 
2184
  msgid "Percentage"
2185
  msgstr "درصد"
2186
 
2187
+ #: ../addons/gateway/carts/mycred-marketpress.php:412 ..
2188
+ #: addons/gateway/carts/mycred-woocommerce.php:159 ..
2189
+ #: addons/gateway/carts/mycred-wpecommerce.php:364 ../addons/gateway/event-
2190
+ #: booking/mycred-eventespresso3.php:464 ../addons/gateway/event-booking/mycred-
2191
+ #: eventsmanager-pro.php:493 ../addons/gateway/event-booking/mycred-eventsmanager.
2192
+ #: php:572
2193
  msgid "Option to share sales with the product owner. Use zero to disable."
2194
  msgstr ""
2195
 
2196
+ #: ../addons/gateway/carts/mycred-marketpress.php:424 ..
2197
+ #: addons/gateway/carts/mycred-wpecommerce.php:371 ../addons/gateway/event-
2198
+ #: booking/mycred-eventsmanager-pro.php:559 ../addons/gateway/event-
2199
+ #: booking/mycred-eventsmanager.php:626
2200
  msgid "Messages"
2201
  msgstr "پیام ها"
2202
 
2203
+ #: ../addons/gateway/carts/mycred-marketpress.php:427 ..
2204
+ #: addons/gateway/carts/mycred-wpecommerce.php:382 ../addons/gateway/event-
2205
+ #: booking/mycred-eventsmanager-pro.php:569 ../addons/gateway/event-
2206
+ #: booking/mycred-eventsmanager.php:636
2207
  msgid "Insufficient Funds"
2208
  msgstr "موجودی کافی نیست !"
2209
 
2213
  "هنگامی که کاربر نتواند از این درگاه استفاده کند ، این پیام به وی نمایش داده "
2214
  "خواهد شد ."
2215
 
2216
+ #: ../addons/gateway/carts/mycred-marketpress.php:435 ..
2217
+ #: addons/gateway/carts/mycred-wpecommerce.php:378 ../addons/gateway/event-
2218
+ #: booking/mycred-eventespresso3.php:490
2219
  msgid "Visitors"
2220
  msgstr "بازدیدکنندگان"
2221
 
2222
  #: ../addons/gateway/carts/mycred-marketpress.php:437
2223
  msgid "Message to show to buyers that are not logged in."
2224
  msgstr ""
2225
+ "هنگامی که خریداران وارد سایت نشده باشند ( لوگین نکرده باشند ) ، این پیام به "
2226
+ "آن ها نمایش داده می شود ."
2227
 
2228
  #: ../addons/gateway/carts/mycred-marketpress.php:443
2229
  msgid "User Instructions"
2240
  #: ../addons/gateway/carts/mycred-marketpress.php:453
2241
  msgid "Information to display on the order confirmation page. - HTML allowed"
2242
  msgstr ""
2243
+ "اطلاعاتی که در صفحه ی تایید سفارش نمایش داده خواهد شد . استفاده از کدهای "
2244
+ "HTML مجاز است ."
2245
 
2246
  #: ../addons/gateway/carts/mycred-marketpress.php:459
2247
  msgid "Order Confirmation Email"
2248
  msgstr "ایمیل تایید سفارش"
2249
 
2250
  #: ../addons/gateway/carts/mycred-marketpress.php:461
2251
+ #, php-format
2252
  msgid ""
2253
  "This is the email text to send to those who have made %s checkouts. It "
2254
+ "overrides the default order checkout email. These codes will be replaced "
2255
+ "with order details: CUSTOMERNAME, ORDERID, ORDERINFO, SHIPPINGINFO, "
2256
+ "PAYMENTINFO, TOTAL, TRACKINGURL. No HTML allowed."
2257
+ msgstr ""
2258
+ "این متن ایمیل ، برای کسانی که صورتحساب های %s را پرداخت می کنند ، ارسال می "
2259
+ "گردد . گفتنی است که متن پیش فرض \"ایمیل صورتحساب\" نادیده گرفته شده و متنی که "
2260
+ "در این کادر وارد می کنید ارسال می گردد . از کدهای زیر نیز می توان برای درج "
2261
+ "اطلاعات سفارش کمک گرفت :</ br>CUSTOMERNAME ( نام مشتری را درج می کند ) - "
2262
+ "ORDERID ( شناسه سفارش را درج می کند ) - ORDERINFO ( اطلاعات سفارش را درج می "
2263
+ "کند ) - SHIPPINGINFO ( اطلاعات خرید را درج می کند ) - PAYMENTINFO ( اطلاعات "
2264
+ "پرداخت ) - TOTAL ( کل مبلغ سبد خرید را درج می کند ) - TRACKINGURL ( آدرس "
2265
+ "صفحه ی پیگیری سفارش را درج می کند . ) ... استفاده از کدهای HTML مجاز نیست !"
2266
 
2267
  #: ../addons/gateway/carts/mycred-woocommerce.php:34
2268
  msgid "Let users pay using their myCRED balance."
2278
 
2279
  #: ../addons/gateway/carts/mycred-woocommerce.php:83
2280
  msgid ""
2281
+ "Users who are not logged in or excluded from using myCRED will not have "
2282
+ "access to this gateway!"
2283
  msgstr ""
2284
+ "کاربرانی که وارد سایت نشده باشند ( لوگین نکرده باشند ) و یا کاربران محروم ( "
2285
+ "بن شده ) قابلیت دسترسی و استفاده از این درگاه پرداخت را ندارند !"
2286
 
2287
  #: ../addons/gateway/carts/mycred-woocommerce.php:88
2288
  msgid "Title to show for this payment option."
2297
  msgstr "پیام مشتری"
2298
 
2299
  #: ../addons/gateway/carts/mycred-woocommerce.php:95
2300
+ #, php-format
2301
  msgid "Deduct the amount from your %_plural% balance."
2302
  msgstr "کسر این مقدار از میزان %_plural% شما ."
2303
 
2329
  msgid "Show in Cart and on Checkout Page"
2330
  msgstr "نمایش در هر دو صفحه ی سبد خرید و تسویه حساب"
2331
 
 
 
 
 
2332
  #: ../addons/gateway/carts/mycred-woocommerce.php:150
2333
  msgid "Order Total in %_plural%"
2334
  msgstr "سفارش کل به واحد %_plural%"
2346
  msgstr "پرداختاز طریق \"اعتبار من\""
2347
 
2348
  #: ../addons/gateway/carts/mycred-woocommerce.php:193
2349
+ #, php-format
2350
  msgid ""
2351
  "Allows users to pay using their myCRED %_singular% balance. Please note that "
2352
+ "users with insufficient funds and users who are not logged in will not see "
2353
+ "this payment gateway on the checkout page."
2354
  msgstr ""
2355
  "به کاربران این امکان را می دهد که با استفاده از %_singular% موجود در حساب "
2356
+ "\"اعتبار من\" خود ، پرداخت داشته باشند . توجه داشته باشید که کاربرانی که "
2357
+ "موجودی کافی ندارند و یا کاربرانی که وارد سایت نشده اند ( لوگین نکرده اند ) "
2358
+ "این روش پرداخت در صفحه ی تسویه حساب ، به آن ها نمایش داده نخواهد شد ."
2359
 
2360
  #: ../addons/gateway/carts/mycred-woocommerce.php:214
2361
  msgid "You must be logged in to pay with %_plural%"
2367
  "شما نمی توانید از این روش برای پرداخت استفاده کنید . لطفا روش دیگری را برای "
2368
  "پرداخت انتخاب فرمایید ."
2369
 
2370
+ #: ../addons/gateway/carts/mycred-woocommerce.php:237
2371
  msgid "Insufficient funds. Please try a different payment option."
2372
  msgstr "موجودی شما کافی نیست . لطفا از روش پرداخت دیگری استفاده فرمایید ."
2373
 
2374
+ #: ../addons/gateway/carts/mycred-woocommerce.php:299
2375
  msgid "Your account has successfully been charged."
2376
  msgstr "حساب شما با موفقیت شارژ شد ."
2377
 
2378
+ #: ../addons/gateway/carts/mycred-woocommerce.php:318
2379
  msgid "Order Missing"
2380
  msgstr ""
2381
 
2382
+ #: ../addons/gateway/carts/mycred-woocommerce.php:545 ..
2383
+ #: addons/gateway/carts/mycred-wpecommerce.php:131
2384
  msgid "Your current balance"
2385
  msgstr "اعتبار فعلی شما"
2386
 
2409
  msgstr "نمونه لیست گزارش ( لوگ ) پرداخت ها"
2410
 
2411
  #: ../addons/gateway/carts/mycred-wpecommerce.php:357
2412
+ #, php-format
2413
  msgid "How much is 1 %s worth in %s"
2414
  msgstr "هر 1 %s معادل چند %s است ؟"
2415
 
2423
 
2424
  #: ../addons/gateway/carts/mycred-wpecommerce.php:375
2425
  msgid ""
2426
+ "Optional instructions to show users when selecting this gateway. Leave empty "
2427
+ "to hide."
2428
  msgstr ""
2429
+ "دستورالعمل های اختیاری ، برای نمایش به کاربران در هنگام انتخاب این درگاه . "
2430
+ "در صورتی که کادر را خالی بگذارید این بخش نمایش داده نخواهد شد ."
2431
 
2432
  #: ../addons/gateway/carts/mycred-wpecommerce.php:379
2433
  msgid "Message to show visitors who are not logged in."
2438
  "Message to show when users does not have enough %plural% to pay using this "
2439
  "gateway."
2440
  msgstr ""
2441
+ "هنگامی که کاربر %plural% کافی برای پرداخت از طریق این درگاه ( روش پرداخت ) "
2442
+ "را نداشته باشد ، این پیام نمایش داده خواهد شد ."
2443
 
2444
+ #: ../addons/gateway/event-booking/mycred-eventespresso3.php:27 ..
2445
+ #: addons/gateway/event-booking/mycred-eventsmanager-pro.php:39 ..
2446
+ #: addons/gateway/event-booking/mycred-eventsmanager.php:35
2447
  msgid "Pay Now"
2448
  msgstr "همین حالا بپردازید"
2449
 
2452
  msgstr "پرداخت برای ثبت رویداد"
2453
 
2454
  #: ../addons/gateway/event-booking/mycred-eventespresso3.php:343
2455
+ #, php-format
2456
  msgid "Activate %s"
2457
  msgstr "فعالسازی %s"
2458
 
2459
  #: ../addons/gateway/event-booking/mycred-eventespresso3.php:351
2460
+ #, php-format
2461
  msgid "Deactivate %s"
2462
  msgstr "غیرفعالسازی %s"
2463
 
2464
+ #: ../addons/gateway/event-booking/mycred-eventespresso3.php:399 ..
2465
+ #: addons/gateway/event-booking/mycred-eventsmanager-pro.php:449 ..
2466
+ #: addons/gateway/event-booking/mycred-eventsmanager.php:524
2467
+ #, php-format
2468
  msgid "How many %s is 1 %s worth?"
2469
  msgstr "چه مقدار %s معادل 1 %s خواهد بود ؟"
2470
 
2472
  msgid "Gateways Settings Successfully Updated"
2473
  msgstr "تنظیمات درگاه پرداخت با موفقیت به روزرسانی شد ."
2474
 
2475
+ #: ../addons/gateway/event-booking/mycred-eventespresso3.php:415 ..
2476
+ #: addons/gateway/event-booking/mycred-eventsmanager-pro.php:535 ..
2477
+ #: addons/gateway/event-booking/mycred-eventsmanager.php:602
2478
  msgid "Labels"
2479
  msgstr "برچسب ها"
2480
 
2494
  msgid "Title to show on receipts and logs"
2495
  msgstr "عنوانی که در رسیدها و لیست گزارش ها ( لوگ ها ) نمایش داده می شود"
2496
 
2497
+ #: ../addons/gateway/event-booking/mycred-eventespresso3.php:428 ..
2498
+ #: addons/gateway/event-booking/mycred-eventsmanager-pro.php:552 ..
2499
+ #: addons/gateway/event-booking/mycred-eventsmanager.php:619 ../addons/sell-
2500
+ #: content/myCRED-addon-sell-content.php:397 ../addons/sell-content/myCRED-addon-
2501
+ #: sell-content.php:590
2502
  msgid "Button Label"
2503
  msgstr "برچسب کلید"
2504
 
2506
  msgid "Pay Button"
2507
  msgstr "کلید پرداخت"
2508
 
2509
+ #: ../addons/gateway/event-booking/mycred-eventespresso3.php:447 ..
2510
+ #: addons/gateway/event-booking/mycred-eventsmanager-pro.php:137 ..
2511
+ #: addons/gateway/event-booking/mycred-eventsmanager-pro.php:140 ..
2512
+ #: addons/gateway/event-booking/mycred-eventsmanager.php:336 ..
2513
+ #: addons/gateway/event-booking/mycred-eventsmanager.php:339 ../addons/sell-
2514
+ #: content/myCRED-addon-sell-content.php:388 ../addons/sell-content/myCRED-addon-
2515
+ #: sell-content.php:586
2516
  msgid "Price"
2517
  msgstr "هزینه"
2518
 
2521
  "You can disable purchases using this gateway by adding a custom Event Meta: "
2522
  "<code>mycred_no_sale</code>"
2523
  msgstr ""
2524
+ "می توانید پرداخت به وسیله ی این درگاه را با اضافه کردن کد سفارشی روبرو ( "
2525
+ "Event Meta ) ، غیرفعال کنید : <code>mycred_no_sale</code>"
2526
 
2527
  #: ../addons/gateway/event-booking/mycred-eventespresso3.php:458
2528
  msgid "Users must be logged in to use this gateway!"
2529
  msgstr "کاربران برای استفاده از درگاه باید وارد سایت شده باشند ( لوگین کرده باشند )"
2530
 
2531
+ #: ../addons/gateway/event-booking/mycred-eventespresso3.php:467 ..
2532
+ #: modules/mycred-module-log.php:22 ../modules/mycred-module-log.php:23
2533
  msgid "Log"
2534
  msgstr "لیست گزارش ( لوگ )"
2535
 
2536
+ #: ../addons/gateway/event-booking/mycred-eventespresso3.php:470 ..
2537
+ #: includes/mycred-admin.php:483
2538
  msgid "Log Entry"
2539
  msgstr "اطلاعات ورودی لیست گزارش ( لوگ )"
2540
 
2548
 
2549
  #: ../addons/gateway/event-booking/mycred-eventespresso3.php:482
2550
  msgid ""
2551
+ "Message to show users on the payment page before they are charged. Leave "
2552
+ "empty to hide."
2553
  msgstr ""
2554
 
2555
  #: ../addons/gateway/event-booking/mycred-eventespresso3.php:485
2564
  msgid "Message to show visitors (users not logged in) on the payment page."
2565
  msgstr ""
2566
 
2567
+ #: ../addons/gateway/event-booking/mycred-eventespresso3.php:502 ..
2568
+ #: modules/mycred-module-settings.php:540
2569
  msgid "Update Settings"
2570
  msgstr "به روزرسانی تنظیمات"
2571
 
2572
+ #: ../addons/gateway/event-booking/mycred-eventsmanager-pro.php:33 ..
2573
+ #: addons/gateway/event-booking/mycred-eventsmanager.php:29
2574
  msgid "Payment for tickets to %link_with_title%"
2575
  msgstr "پرداخت برای بلیت های %link_with_title%"
2576
 
2577
+ #: ../addons/gateway/event-booking/mycred-eventsmanager-pro.php:34 ..
2578
+ #: addons/gateway/event-booking/mycred-eventsmanager.php:30
2579
  msgid "Ticket refund for %link_with_title%"
2580
  msgstr "بلیت استرداد شده برای %link_with_title%"
2581
 
2582
+ #: ../addons/gateway/event-booking/mycred-eventsmanager-pro.php:38 ..
2583
+ #: addons/gateway/event-booking/mycred-eventsmanager.php:34
2584
+ #, php-format
2585
  msgid "Pay using your %_plural% balance"
2586
  msgstr "پرداخت به وسیله ی میزان %_plural% شما"
2587
 
2588
+ #: ../addons/gateway/event-booking/mycred-eventsmanager-pro.php:40 ..
2589
+ #: addons/gateway/event-booking/mycred-eventsmanager.php:36
2590
  msgid "Pay"
2591
  msgstr "پرداخت"
2592
 
2593
+ #: ../addons/gateway/event-booking/mycred-eventsmanager-pro.php:43 ..
2594
+ #: addons/gateway/event-booking/mycred-eventsmanager.php:39
2595
  msgid "Thank you for your payment!"
2596
  msgstr "بابت پرداختتان صمیمانه سپاسگذاریم !"
2597
 
2598
+ #: ../addons/gateway/event-booking/mycred-eventsmanager-pro.php:44 ..
2599
+ #: addons/gateway/event-booking/mycred-eventsmanager.php:40
2600
  msgid "I'm sorry but you can not pay for these tickets using %_plural%"
2601
  msgstr ""
2602
  "متاسفیم ، اما نمی توانید با استفاده از %_plural%های خود ، بهای این بلیت را "
2603
  "بپردازید ."
2604
 
2605
+ #: ../addons/gateway/event-booking/mycred-eventsmanager-pro.php:134 ..
2606
+ #: addons/gateway/event-booking/mycred-eventsmanager.php:333
2607
  msgid "Ticket Type"
2608
  msgstr "نوع بلیت"
2609
 
2610
+ #: ../addons/gateway/event-booking/mycred-eventsmanager-pro.php:143 ..
2611
+ #: addons/gateway/event-booking/mycred-eventsmanager.php:342
2612
  msgid "Spaces"
2613
  msgstr "فضاها"
2614
 
2620
  msgid "Reject"
2621
  msgstr "رد کردن"
2622
 
2623
+ #: ../addons/gateway/event-booking/mycred-eventsmanager-pro.php:374 ..
2624
+ #: modules/mycred-module-log.php:500 ../modules/mycred-module-settings.php:488 ..
2625
+ #: modules/mycred-module-settings.php:507
2626
  msgid "Delete"
2627
  msgstr "پاک کردن"
2628
 
2630
  msgid "Edit/View"
2631
  msgstr "ویرایش/نمایش"
2632
 
2633
+ #: ../addons/gateway/event-booking/mycred-eventsmanager-pro.php:477 ..
2634
+ #: addons/gateway/event-booking/mycred-eventsmanager.php:542
2635
  msgid "Disabled - Users CAN NOT pay for tickets using %plural%."
2636
  msgstr "غیرفعال شد - کاربران نمی توانند بهای بلیت ها را با %plural% خود بدهند ."
2637
 
2638
+ #: ../addons/gateway/event-booking/mycred-eventsmanager-pro.php:478 ..
2639
+ #: addons/gateway/event-booking/mycred-eventsmanager.php:543
2640
  msgid "Single - Users can ONLY pay for tickets using %plural%."
2641
  msgstr "جداگانه - کاربران فقط می توانند با %plural% بهای بلیت ها را پرداخت کنند ."
2642
 
2643
+ #: ../addons/gateway/event-booking/mycred-eventsmanager-pro.php:479 ..
2644
+ #: addons/gateway/event-booking/mycred-eventsmanager.php:544
2645
  msgid "Multi - Users can pay for tickets using other gateways or %plural%."
2646
  msgstr ""
2647
  "چندگانه - کاربران می توانند از انواع درگاه های پرداخت و یا %plural% خودشان ، "
2648
  "اقدام به پرداخت بهای بلیت ها کنند ."
2649
 
2650
+ #: ../addons/gateway/event-booking/mycred-eventsmanager-pro.php:483 ..
2651
+ #: addons/gateway/event-booking/mycred-eventsmanager-pro.php:516 ..
2652
+ #: addons/gateway/event-booking/mycred-eventsmanager.php:562 ..
2653
+ #: addons/gateway/event-booking/mycred-eventsmanager.php:595
2654
  msgid "Refunds"
2655
  msgstr "استردادی ها"
2656
 
2660
  "Use zero for no refunds. No refunds are given to \"Rejected\" bookings!"
2661
  msgstr ""
2662
 
2663
+ #: ../addons/gateway/event-booking/mycred-eventsmanager-pro.php:506 ..
2664
+ #: addons/gateway/event-booking/mycred-eventsmanager.php:585
2665
  msgid "Log Templates"
2666
  msgstr "نمونه های لیست گزارش ( لوگ )"
2667
 
2668
+ #: ../addons/gateway/event-booking/mycred-eventsmanager-pro.php:509 ..
2669
+ #: addons/gateway/event-booking/mycred-eventsmanager.php:588
2670
  msgid "Purchases"
2671
  msgstr "خریدها"
2672
 
2673
+ #: ../addons/gateway/event-booking/mycred-eventsmanager-pro.php:538 ..
2674
+ #: addons/gateway/event-booking/mycred-eventsmanager.php:605
2675
  msgid "Payment Link Label"
2676
  msgstr "برچسب لینک پرداخت"
2677
 
2678
+ #: ../addons/gateway/event-booking/mycred-eventsmanager-pro.php:541 ..
2679
+ #: addons/gateway/event-booking/mycred-eventsmanager.php:608
2680
  msgid ""
2681
  "The payment link shows / hides the payment form under \"My Bookings\". No HTML "
2682
  "allowed."
2683
  msgstr ""
2684
+ "لینک پرداخت ، وجه پرداخت ها را در بخش \"رزرواسیون های من\" نمایش می دهد/نمی "
2685
+ "دهد . استفاده از کدهای HTML مجاز نیست ."
2686
 
2687
+ #: ../addons/gateway/event-booking/mycred-eventsmanager-pro.php:545 ..
2688
+ #: addons/gateway/event-booking/mycred-eventsmanager.php:612
2689
  msgid "Payment Header"
2690
  msgstr "سربرگ پرداخت"
2691
 
2692
+ #: ../addons/gateway/event-booking/mycred-eventsmanager-pro.php:548 ..
2693
+ #: addons/gateway/event-booking/mycred-eventsmanager.php:615
2694
  msgid "Shown on top of the payment form. No HTML allowed."
2695
  msgstr "بالای فرم پرداخت نمایش داده می شود . استفاده از کدهای HTML مجاز نیست ."
2696
 
2697
+ #: ../addons/gateway/event-booking/mycred-eventsmanager-pro.php:555 ..
2698
+ #: addons/gateway/event-booking/mycred-eventsmanager.php:622
2699
  msgid "The button label for payments. No HTML allowed!"
2700
  msgstr "برچسب کلید پرداخت . استفاده از کدهای HTML مجاز نیست !"
2701
 
2702
+ #: ../addons/gateway/event-booking/mycred-eventsmanager-pro.php:562 ..
2703
+ #: addons/gateway/event-booking/mycred-eventsmanager.php:629
2704
  msgid "Successful Payments"
2705
  msgstr "پرداخت های موفقیت آمیز"
2706
 
2707
+ #: ../addons/gateway/event-booking/mycred-eventsmanager-pro.php:565 ..
2708
+ #: addons/gateway/event-booking/mycred-eventsmanager-pro.php:572 ..
2709
+ #: addons/gateway/event-booking/mycred-eventsmanager.php:632 ..
2710
+ #: addons/gateway/event-booking/mycred-eventsmanager.php:639
2711
  msgid "No HTML allowed!"
2712
  msgstr ""
2713
 
2720
  msgstr "برای سوییچ کردن بین گزینه ها کلیک کنید"
2721
 
2722
  #: ../addons/gateway/event-booking/mycred-eventsmanager.php:533
2723
+ #, php-format
2724
  msgid "%s Payments"
2725
  msgstr "پرداخت های %s"
2726
 
2729
  "The percentage of the paid amount to refund if a booking gets cancelled. Use "
2730
  "zero for no refunds. No refunds are given to \"Rejected\" bookings."
2731
  msgstr ""
2732
+ "در صورتی که رزرواسیونی کنسل گردد ، درصدی از وجه پرداخت شده برای استرداد در "
2733
+ "نظر گرفته می شود . از عدد صفر برای عدم استفاده از ویژگی استرداد بلیت استفاده "
2734
+ "کنید . هیچ وجهی به عنوان استرداد برای بلیت های باطل شده ، پرداخت نمی شود ."
2735
 
2736
+ #: ../addons/notifications/myCRED-addon-notifications.php:166 ../modules/mycred-
2737
+ #: module-addons.php:201
2738
  msgid "Notifications"
2739
  msgstr "آگاه سازها"
2740
 
2746
  msgid "Use the included CSS Styling for notifications."
2747
  msgstr "از قالب ها و کدهای CSS موجود ، برای زیباسازی آگاه سازها استفاده کنید ."
2748
 
2749
+ #: ../addons/notifications/myCRED-addon-notifications.php:175 ../modules/mycred-
2750
+ #: module-buddypress.php:410
2751
  msgid "Template"
2752
  msgstr "نمونه ( الگو )"
2753
 
2754
  #: ../addons/notifications/myCRED-addon-notifications.php:179
2755
+ #, php-format
2756
  msgid "Use %entry% to show the log entry in the notice and %amount% for the amount."
2757
  msgstr ""
2758
+ "از کد %entry% برای نشان دادن داده های لیست گزارش و همچنین %amount% برای "
2759
+ "مقدار آن در آگاه ساز استفاده کنید ."
2760
 
2761
  #: ../addons/notifications/myCRED-addon-notifications.php:182
2762
  msgid "Transient Lifespan"
2774
 
2775
  #: ../addons/notifications/myCRED-addon-notifications.php:193
2776
  msgid ""
2777
+ "The number of milliseconds a notice should be visible.<br />Use zero to "
2778
+ "require that the user closes the notice manually. 1000 milliseconds = 1 "
2779
+ "second."
2780
  msgstr ""
2781
  "تعداد میلی ثانیه هایی که یک آگاه ساز باید مرئی بماند .<br /> اگر می خواهید "
2782
+ "کاربر به صورت دستی آگاه ساز را ببندد ، عدد صفر را وارد کنید . قابل ذکر است ، "
2783
+ "هر 1000 میلی ثانیه = 1 ثانیه خواهد بود ."
2784
 
2785
  #: ../addons/ranks/myCRED-addon-ranks.php:231
2786
  msgid "Warning! All ranks will be deleted! This can not be undone!"
2790
  msgid "Are you sure you want to re-assign user ranks?"
2791
  msgstr "مطمئنید که می خواهید دوباره عمل تخصیص مدال های کاربری را انجام دهید ؟"
2792
 
2793
+ #: ../addons/ranks/myCRED-addon-ranks.php:246 ../addons/ranks/myCRED-addon-ranks.
2794
+ #: php:252 ../addons/ranks/myCRED-addon-ranks.php:258 ../addons/ranks/myCRED-
2795
+ #: addon-ranks.php:787 ../addons/ranks/myCRED-addon-ranks.php:983 ..
2796
+ #: modules/mycred-module-addons.php:213
2797
  msgid "Ranks"
2798
  msgstr "رنک و مدال ها"
2799
 
2800
+ #: ../addons/ranks/myCRED-addon-ranks.php:247 ../addons/ranks/myCRED-addon-ranks.
2801
+ #: php:479 ../addons/ranks/myCRED-addon-ranks.php:498 ../addons/ranks/myCRED-
2802
+ #: addon-ranks.php:593
2803
  msgid "Rank"
2804
  msgstr "رنک و مدال"
2805
 
2831
  msgid "No ranks found in Trash"
2832
  msgstr "هیچ رنکی در زباله دان یافت نشد"
2833
 
2834
+ #: ../addons/ranks/myCRED-addon-ranks.php:344
2835
+ #, php-format
2836
  msgid "Completed - Total of %d users effected"
2837
  msgstr "اتمام عملیات - کل %d کاربر ترتیب اثر داده شدند"
2838
 
2839
+ #: ../addons/ranks/myCRED-addon-ranks.php:346
2840
  msgid "Log is Empty"
2841
  msgstr "لیست گزارش ( لوگ ) خالیست !"
2842
 
2843
+ #: ../addons/ranks/myCRED-addon-ranks.php:553 ../addons/ranks/myCRED-addon-ranks.
2844
+ #: php:556
2845
+ #, php-format
2846
  msgid "Rank Updated. View <a href=\"%1$s\">All Ranks</a>."
2847
+ msgstr ""
2848
+ "مدال به روزرسانی شد . برای دیدن تمامی مدال ها ، <a href=\"%1$s\">کلیک کنید</a> "
2849
+ "."
2850
 
2851
+ #: ../addons/ranks/myCRED-addon-ranks.php:558
2852
  msgid "Rank Activated"
2853
  msgstr "مدال فعال شد"
2854
 
2855
+ #: ../addons/ranks/myCRED-addon-ranks.php:559
2856
  msgid "Rank Saved"
2857
  msgstr "مدال ذخیره شد"
2858
 
2859
+ #: ../addons/ranks/myCRED-addon-ranks.php:560
2860
+ #, php-format
2861
  msgid "Rank Submitted for approval. View <a href=\"%1$s\">All Ranks</a>."
2862
  msgstr ""
2863
  "مدال ، برای تایید ، ثبت شد . برای دیدن تمامی مدال ها ، <a href=\"%1$s\">کلیک "
2864
  "کنید</a> ."
2865
 
2866
+ #: ../addons/ranks/myCRED-addon-ranks.php:562
2867
+ #, php-format
2868
  msgid "Rank scheduled for: <strong>%1$s</strong>."
2869
  msgstr "مدال برنامه ریزی شد برای : <strong>%1$s</strong>"
2870
 
2871
+ #: ../addons/ranks/myCRED-addon-ranks.php:619 ../addons/ranks/myCRED-addon-ranks.
2872
+ #: php:672
2873
  msgid "Rank Title"
2874
  msgstr "عنوان مدال"
2875
 
2876
+ #: ../addons/ranks/myCRED-addon-ranks.php:620
2877
  msgid "Logo"
2878
  msgstr "لوگو"
2879
 
2880
+ #: ../addons/ranks/myCRED-addon-ranks.php:621
2881
  msgid "Requirement"
2882
  msgstr "پیش نیاز"
2883
 
2884
+ #: ../addons/ranks/myCRED-addon-ranks.php:622 ../modules/mycred-module-settings.
2885
+ #: php:451
2886
  msgid "Users"
2887
  msgstr "کاربران"
2888
 
2889
+ #: ../addons/ranks/myCRED-addon-ranks.php:638
2890
  msgid "No Logo Set"
2891
  msgstr "لوگویی ست نشده است"
2892
 
2893
+ #: ../addons/ranks/myCRED-addon-ranks.php:647 ../addons/ranks/myCRED-addon-ranks.
2894
+ #: php:652
2895
  msgid "Any Value"
2896
  msgstr "هر مقداری"
2897
 
2898
+ #: ../addons/ranks/myCRED-addon-ranks.php:654
2899
  msgid "Maximum %plural%"
2900
  msgstr "بیشترین مقدار %plural%"
2901
 
2902
+ #: ../addons/ranks/myCRED-addon-ranks.php:685
2903
  msgid "Rank Settings"
2904
  msgstr "تنظیمات مدال"
2905
 
2906
+ #: ../addons/ranks/myCRED-addon-ranks.php:707
2907
  msgid "Minimum %plural% to reach this rank"
2908
  msgstr "کمترین مقدار %plural% برای دستیابی به این مدال"
2909
 
2910
+ #: ../addons/ranks/myCRED-addon-ranks.php:711
2911
  msgid "Maximum %plural% to be included in this rank"
2912
  msgstr "بیشترین مقدار %plural% که این مدال شامل آن می شود"
2913
 
2914
+ #: ../addons/ranks/myCRED-addon-ranks.php:718
2915
  msgid "All Published Ranks"
2916
  msgstr "همه ی مدال های منتشر شده"
2917
 
2918
+ #: ../addons/ranks/myCRED-addon-ranks.php:724 ../addons/ranks/myCRED-addon-ranks.
2919
+ #: php:726
2920
  msgid "Not Set"
2921
  msgstr "تنظیم نشده"
2922
 
2923
+ #: ../addons/ranks/myCRED-addon-ranks.php:731
2924
  msgid "No Ranks found"
2925
  msgstr "مدالی پیدا نشد"
2926
 
2927
+ #: ../addons/ranks/myCRED-addon-ranks.php:789
2928
  msgid "Rank Features"
2929
  msgstr "ویژگی های مدال"
2930
 
2931
+ #: ../addons/ranks/myCRED-addon-ranks.php:793
2932
  msgid "%plural% requirement"
2933
  msgstr "پیش نیاز %plural%"
2934
 
2935
+ #: ../addons/ranks/myCRED-addon-ranks.php:794
2936
  msgid "Featured Image (Logo)"
2937
  msgstr "عکس شاخص ( لوگو )"
2938
 
2939
+ #: ../addons/ranks/myCRED-addon-ranks.php:795
2940
  msgid "Content"
2941
  msgstr "محتوا"
2942
 
2943
+ #: ../addons/ranks/myCRED-addon-ranks.php:796
2944
  msgid "Excerpt"
2945
  msgstr "توضیح کوتاه ( نقل قول )"
2946
 
2947
+ #: ../addons/ranks/myCRED-addon-ranks.php:797
2948
  msgid "Comments"
2949
  msgstr "دیدگاه ها"
2950
 
2951
+ #: ../addons/ranks/myCRED-addon-ranks.php:798
2952
  msgid "Page Attributes"
2953
  msgstr "خصوصیت های صفحه"
2954
 
2955
+ #: ../addons/ranks/myCRED-addon-ranks.php:799
2956
  msgid "Custom Fields"
2957
  msgstr "فیلدهای اضافی"
2958
 
2959
+ #: ../addons/ranks/myCRED-addon-ranks.php:802
2960
  msgid "Public"
2961
  msgstr "عمومی"
2962
 
2963
+ #: ../addons/ranks/myCRED-addon-ranks.php:806
2964
  msgid ""
2965
+ "If you want to create a template archive for each rank, you must select to "
2966
+ "have ranks public. Defaults to disabled."
2967
  msgstr ""
2968
+ "اگر می خواهید آرشیو نمونه ای برای هر مدال بسازید ، باید انتخاب کنید که مدال "
2969
+ "ها عمومی باشند . در حالت پیش فرض این حالت غیرفعال می باشد ."
2970
 
2971
+ #: ../addons/ranks/myCRED-addon-ranks.php:809
2972
  msgid "Rank Basis"
2973
  msgstr "روش مدال دهی"
2974
 
2975
+ #: ../addons/ranks/myCRED-addon-ranks.php:812
2976
  msgid "Users are ranked according to their current balance."
2977
  msgstr "کاربران بر اساس میزان امتیاز فعلیشان مدال می گیرند ."
2978
 
2979
+ #: ../addons/ranks/myCRED-addon-ranks.php:815
2980
  msgid ""
2981
  "Users are ranked according to the total amount of %_plural% they have "
2982
  "accumulated."
2983
  msgstr "کاربران بر اساس کل %_plural% ای که جمع کرده اند مدال می گیرند ."
2984
 
2985
+ #: ../addons/ranks/myCRED-addon-ranks.php:819 ../addons/ranks/myCRED-addon-ranks.
2986
+ #: php:824
2987
  msgid "Calculate Totals"
2988
  msgstr "محاسبه ی کل امتیازها"
2989
 
2990
+ #: ../addons/ranks/myCRED-addon-ranks.php:822
2991
  msgid ""
2992
  "Use this button to calculate or re-calcualte your users totals. If not used, "
2993
  "the users current balance will be used as a starting point."
2994
  msgstr ""
2995
+ "از این کلید برای محاسبه یا محاسبه ی مجدد کل امتیازهای کاربرانتان استفاده "
2996
+ "کنید . اگر از این کلید استفاده نکنید ، مبنای امتیازات ، همین امتیاز فعلی "
2997
+ "کاربران می باشد ."
2998
 
2999
+ #: ../addons/ranks/myCRED-addon-ranks.php:822
3000
  msgid ""
3001
  "Once a users total has been calculated, they will be assigned to their "
3002
  "appropriate roles. For this reason, it is highly recommended that you first "
3003
  "setup your ranks!"
3004
  msgstr ""
3005
  "به محض اینکه میزان امتیاز کلی کاربران محاسبه شود ، آن ها به نقش متناسب با "
3006
+ "امتیازشان منصوب می شوند . به همین منظور ، شدیدا پیشنهاد می گردد که ابتدا "
3007
+ "مدال های خودتان را پیاده سازی کنید ."
3008
 
3009
+ #: ../addons/ranks/myCRED-addon-ranks.php:823
3010
  msgid ""
3011
+ "Depending on your log size and number of users this process may take a while."
3012
+ " Please do not leave, click \"Update Settings\" or re-fresh this page until "
3013
+ "this is completed!"
3014
  msgstr ""
3015
+ "بسته به سایز لیست گزارش ( لوگ ) و تعداد کاربران ، ممکن است این فرآیند مدتی "
3016
+ "طول بکشد . لطفا تا پایان عملیات ، صفحه را رفرش نکنید ، آن را نبسته و یا بر "
3017
+ "روی \"به روزرسانی تنظیمات\" کلیک نفرمایید ."
3018
 
3019
+ #: ../addons/ranks/myCRED-addon-ranks.php:828
3020
  msgid "Archive URL"
3021
  msgstr "نشانی اینترنتی آرشیو"
3022
 
3023
+ #: ../addons/ranks/myCRED-addon-ranks.php:832
3024
  msgid "Ignored if Ranks are not public"
3025
  msgstr "اگر مدال ها منتشر نشده اند ، آن ها را نادیده بگیر"
3026
 
3027
+ #: ../addons/ranks/myCRED-addon-ranks.php:835
3028
  msgid "Display Order"
3029
  msgstr "ترتیب نمایش"
3030
 
3031
+ #: ../addons/ranks/myCRED-addon-ranks.php:842
3032
  msgid "Ascending - Lowest rank to highest"
3033
  msgstr "صعودی - از پایین ترین مدال ها ، به بالاترین مدال ها"
3034
 
3035
+ #: ../addons/ranks/myCRED-addon-ranks.php:843
3036
  msgid "Descending - Highest rank to lowest"
3037
  msgstr "نزولی - از بالاترین مدال ها ، به پایین ترین مدال ها"
3038
 
3039
+ #: ../addons/ranks/myCRED-addon-ranks.php:852
3040
  msgid ""
3041
+ "Select in what order ranks should be displayed in your admin area and/or "
3042
+ "front if ranks are \"Public\""
3043
  msgstr ""
3044
+ "انتخاب کنید که مدال ها به چه ترتیبی در ناحیه ی مدیریتی و/یا کاربری نمایش "
3045
+ "داده شوند ، البته اگر مدال ها \"منتشر شده\" ( عمومی ) باشند ."
3046
 
3047
+ #: ../addons/ranks/myCRED-addon-ranks.php:862 ../modules/mycred-module-buddypress.
3048
+ #: php:366 ../modules/mycred-module-buddypress.php:373
3049
  msgid "Do not show."
3050
  msgstr "عدم نمایش"
3051
 
3052
+ #: ../addons/ranks/myCRED-addon-ranks.php:863 ../modules/mycred-module-buddypress.
3053
+ #: php:367
3054
  msgid "Include in Profile Header."
3055
  msgstr "شامل ( نمایش در ) هِدر ( سربرگ ) پروفایل کاربری"
3056
 
3057
+ #: ../addons/ranks/myCRED-addon-ranks.php:864 ../modules/mycred-module-buddypress.
3058
+ #: php:368
3059
  msgid "Include under the \"Profile\" tab"
3060
  msgstr "شامل ( نمایش در ) زیر تب \"پروفایل کاربر\" "
3061
 
3062
+ #: ../addons/ranks/myCRED-addon-ranks.php:865 ../modules/mycred-module-buddypress.
3063
+ #: php:369
3064
  msgid "Include under the \"Profile\" tab and Profile Header."
3065
  msgstr "نمایش در زیر تب \"Profile\" و همچنین سربرگ پروفایل کاربری ."
3066
 
3067
+ #: ../addons/ranks/myCRED-addon-ranks.php:868
3068
  msgid "Rank in BuddyPress"
3069
  msgstr "مدال در بادی پرس"
3070
 
3071
+ #: ../addons/ranks/myCRED-addon-ranks.php:936
3072
  msgid "Script Communication Error"
3073
  msgstr "خطا در ارتباط با اسکریپت"
3074
 
3075
+ #: ../addons/ranks/myCRED-addon-ranks.php:986
3076
  msgid "Rank Post Type"
3077
  msgstr "نوع پست مدال"
3078
 
3079
+ #: ../addons/ranks/myCRED-addon-ranks.php:990
3080
  msgid "No. of ranks"
3081
  msgstr "تعداد مدال ها"
3082
 
3083
+ #: ../addons/ranks/myCRED-addon-ranks.php:994 ../modules/mycred-module-log.php:
3084
+ #: 368 ../modules/mycred-module-settings.php:440 ../modules/mycred-module-
3085
+ #: settings.php:455
3086
  msgid "Actions"
3087
  msgstr "عملیات ها"
3088
 
3089
+ #: ../addons/ranks/myCRED-addon-ranks.php:995
3090
  msgid "Remove All Ranks"
3091
  msgstr "پاکسازی همه ی مدال ها"
3092
 
3093
+ #: ../addons/ranks/myCRED-addon-ranks.php:995
3094
  msgid "Assign Ranks to Users"
3095
  msgstr "تخصیص دادن مدال به کاربران"
3096
 
3097
+ #: ../addons/ranks/includes/mycred-rank-functions.php:192
3098
  msgid "mycred_get_users_rank() : Missing required user id"
3099
  msgstr "mycred_get_users_rank() : شناسه کاربر خواسته شده ، یافت نشد !"
3100
 
3101
+ #: ../addons/ranks/includes/mycred-rank-functions.php:206
3102
  msgid "no rank"
3103
  msgstr "مدالی یافت نشد"
3104
 
3105
+ #: ../addons/ranks/includes/mycred-rank-shortcodes.php:58 ..
3106
+ #: addons/ranks/includes/mycred-rank-shortcodes.php:134
3107
  msgid "No users found with this rank"
3108
  msgstr "کاربری با این مدال یافت نشد"
3109
 
3110
+ #: ../addons/ranks/includes/mycred-rank-shortcodes.php:63 ../includes/mycred-
3111
+ #: shortcodes.php:352 ../includes/mycred-shortcodes.php:355 ../includes/mycred-
3112
+ #: shortcodes.php:417 ../includes/mycred-shortcodes.php:478 ../includes/mycred-
3113
+ #: shortcodes.php:482 ../includes/mycred-shortcodes.php:486
3114
  msgid "error"
3115
  msgstr "خطا"
3116
 
3146
  msgid "Pay Content Author."
3147
  msgstr "پرداخت به نویسنده ی محتوا"
3148
 
3149
+ #: ../addons/sell-content/myCRED-addon-sell-content.php:339 ../includes/mycred-
3150
+ #: overview.php:141 ../includes/mycred-overview.php:148 ../modules/mycred-module-
3151
+ #: addons.php:224
3152
  msgid "Sell Content"
3153
  msgstr "فروش محتوا"
3154
 
3169
  "Percentage of the price to pay the author. Can not be zero and is ignored if "
3170
  "authors are not paid."
3171
  msgstr ""
3172
+ "درصدی از قیمت محتوا برای پرداخت به نویسنده . این مقدار نمی تواند عدد صفر "
3173
+ "باشد . همچنین برای عدم پرداخت به نویسنده ، کادر را خالی بگذارید ."
3174
 
3175
  #: ../addons/sell-content/myCRED-addon-sell-content.php:385
3176
  msgid "Defaults"
3197
  msgstr "الگوی فروش برای غیر اعضا"
3198
 
3199
  #: ../addons/sell-content/myCRED-addon-sell-content.php:415
3200
+ #, php-format
3201
  msgid ""
3202
+ "Do <strong>not</strong> use the %buy_button% in this template as a user must "
3203
+ "be logged in to buy content!"
3204
  msgstr ""
3205
+ "توجه کنید که هرگز از %buy_button% در این الگوی نمونه استفاده نفرمایید ، "
3206
+ "چراکه برای خرید محتوا ، کاربران حتما باید وارد سایت شوند ."
3207
 
3208
  #: ../addons/sell-content/myCRED-addon-sell-content.php:419
3209
  msgid "Sale Template for members"
3210
  msgstr "الگوی فروش برای اعضای سایت ( کاربران )"
3211
 
3212
+ #: ../addons/sell-content/myCRED-addon-sell-content.php:423 ../addons/sell-
3213
+ #: content/myCRED-addon-sell-content.php:431
3214
+ #, php-format
3215
  msgid "Your template must contain the %buy_button% tag for purchases to work!"
3216
  msgstr "الگوی نمونه ی شما ، برای اجرایی شدن باید شامل تگ %buy_button% باشد ."
3217
 
3228
  msgstr "الگوی لیست گزارش برای فروش ها"
3229
 
3230
  #: ../addons/sell-content/myCRED-addon-sell-content.php:494
3231
+ #, php-format
3232
  msgid "%s Sell This"
3233
  msgstr "فروش %s "
3234
 
3235
  #: ../addons/sell-content/myCRED-addon-sell-content.php:548
3236
+ #, php-format
3237
  msgid "%s Sell Content needs to be setup before you can use this feature."
3238
  msgstr ""
3239
  "برای استفاده از این ویژگی ، باید ابتدا افزونه فروش محتوای %s را نصب و راه "
3259
  msgid "Thank you for your purchase!"
3260
  msgstr "از خرید شما صمیمانه سپاسگذاریم !"
3261
 
3262
+ #: ../addons/sell-content/myCRED-addon-sell-content.php:1008 ../addons/sell-
3263
+ #: content/myCRED-addon-sell-content.php:1094
3264
  msgid "The following content is set for sale:"
3265
  msgstr "محتوای زیر برای فروش تنظیم می شود :"
3266
 
3308
 
3309
  #: ../addons/transfer/myCRED-addon-transfer.php:146
3310
  msgid ""
3311
+ "This myCRED Add-on has not yet been setup! No transfers are allowed until "
3312
+ "this has been done!"
3313
  msgstr ""
3314
  "این افزونه ی جانبی \"اعتبار من\" ، هنوز راه اندازی نشده است . تا قبل از آن ، "
3315
  "جابجایی امتیاز امکان پذیر نخواهد بود !"
3342
  msgid "User Email (user_email)"
3343
  msgstr "ایمیل کاربر ( user_email )"
3344
 
3345
+ #: ../addons/transfer/myCRED-addon-transfer.php:191 ../addons/transfer/myCRED-
3346
+ #: addon-transfer.php:631
3347
  msgid "Transfer %plural%"
3348
  msgstr "جابجایی %plural%"
3349
 
3350
+ #: ../addons/transfer/myCRED-addon-transfer.php:195 ../includes/mycred-widgets.
3351
+ #: php:593 ../modules/mycred-module-settings.php:469
3352
  msgid "Point Types"
3353
  msgstr ""
3354
 
3401
  "Text to show when users are not logged in. Leave empty to hide. No HTML "
3402
  "elements allowed!"
3403
  msgstr ""
3404
+ "متنی که برای کاربران وارد نشده نمایش داده می شود . برای نمایش داده نشدن کادر "
3405
+ "را خالی بگذارید . استفاده از کدهای HTML مجاز نمی باشد ."
3406
 
3407
  #: ../addons/transfer/myCRED-addon-transfer.php:274
3408
  msgid "Balance Template"
3413
  "Template to use when displaying the users balance (if included). No HTML "
3414
  "elements allowed!"
3415
  msgstr ""
3416
+ "الگویی که به هنگام نمایش میزان امتیاز کاربر ( در صورت داشتن ) ، استفاده می "
3417
+ "شود . استفاده از کدهای HTML مجاز نیست !"
3418
 
3419
  #: ../addons/transfer/myCRED-addon-transfer.php:280
3420
  msgid "Limit Template"
3423
  #: ../addons/transfer/myCRED-addon-transfer.php:282
3424
  msgid "Template to use when displaying limits (if used). No HTML elements allowed!"
3425
  msgstr ""
3426
+ "الگویی که به هنگام نمایش محدودیت ( در صورت داشتن ) استفاده می شود . کدهای "
3427
+ "HTML مجاز نخواهند بود ."
3428
 
3429
  #: ../addons/transfer/myCRED-addon-transfer.php:286
3430
  msgid "Button Template"
3444
 
3445
  #: ../addons/transfer/myCRED-addon-transfer.php:296
3446
  msgid ""
3447
+ "Text to show when a users balance is to low for transfers. Leave empty to "
3448
+ "hide. No HTML elements allowed!"
3449
  msgstr ""
3450
+ "متنی که به هنگام کافی نبودن میزان امتیاز کاربر برای جابجایی ، نمایش داده می "
3451
+ "شود . برای عدم نمایش کادر را خالی بگذارید . استفاده از کدهای HTML هم مجاز "
3452
+ "نیستند !"
3453
 
3454
  #: ../addons/transfer/myCRED-addon-transfer.php:300
3455
  msgid "Transfer Limit Reached."
3460
  "Text to show when a user has reached their transfer limit (if used). Leave "
3461
  "empty to hide. No HTML elements allowed!"
3462
  msgstr ""
3463
+ "متنی که به هنگام رسیدن کاربر به سقف مجاز تعیین شده برای جابجایی ( در صورت "
3464
+ "تعیین شدن ) ، برای وی نمایش داده می شود . کادر را خالی بگذارید تا متنی نمایش "
3465
+ "داده نشود . استفاده از کدهای HTML باز هم مجاز نیست !"
3466
 
3467
  #: ../addons/transfer/myCRED-addon-transfer.php:560
3468
  msgid "Allow transfers between users."
3469
  msgstr "اجازه ی جابجایی امتیاز بین کاربران ."
3470
 
3471
  #: ../addons/transfer/myCRED-addon-transfer.php:562
3472
+ #, php-format
3473
  msgid "(%s) Transfer"
3474
  msgstr "جابجایی (%s)"
3475
 
3494
  msgstr "ایمیل"
3495
 
3496
  #: ../addons/transfer/myCRED-addon-transfer.php:780
3497
+ #, php-format
3498
  msgid "recipients %s"
3499
  msgstr "گیرندگان %s"
3500
 
3507
  msgstr "مقدار امتیاز :"
3508
 
3509
  #: ../includes/mycred-about.php:75
3510
+ #, php-format
3511
  msgid "Welcome to %s %s"
3512
  msgstr "به افزونه \"اعتبار من\" ( %s ) نسخه %s خوش آمدید ."
3513
 
3547
  msgid "Excluded"
3548
  msgstr "بن شده ( محروم شده )"
3549
 
3550
+ #: ../includes/mycred-admin.php:279 ../modules/mycred-module-log.php:250 ..
3551
+ #: modules/mycred-module-log.php:251
3552
  msgid "History"
3553
  msgstr "لیست تغییرات"
3554
 
3557
  msgstr "تطبیق"
3558
 
3559
  #: ../includes/mycred-admin.php:335 ../includes/mycred-admin.php:394
3560
+ #, php-format
3561
  msgid "%singular% balance"
3562
  msgstr ""
3563
 
3674
  msgstr ""
3675
 
3676
  #: ../includes/mycred-importer.php:11
3677
+ #, php-format
3678
  msgid "%s Log Import"
3679
  msgstr ""
3680
 
3683
  msgstr ""
3684
 
3685
  #: ../includes/mycred-importer.php:43
3686
+ #, php-format
3687
  msgid "%s Balance Import"
3688
  msgstr ""
3689
 
3692
  msgstr ""
3693
 
3694
  #: ../includes/mycred-importer.php:75
3695
+ #, php-format
3696
  msgid "%s CubePoints Import"
3697
  msgstr ""
3698
 
3699
+ #: ../includes/mycred-importer.php:76 ../includes/importers/mycred-cubepoints.php:
3700
+ #: 344
3701
  msgid "Import CubePoints log entries and / or balances."
3702
  msgstr ""
3703
 
3711
 
3712
  #: ../includes/mycred-install.php:44
3713
  msgid "myCRED requires PHP 5.2.4 or higher. Version detected: "
3714
+ msgstr ""
3715
+ "افزونه ی \"اعتبار من\" برای اجرا به PHP نسخه 5.2.4 نیاز دارد . نسخه ی یافت شده "
3716
+ ":"
3717
 
3718
  #: ../includes/mycred-install.php:49
3719
  msgid "myCRED requires SQL 5.0 or higher. Version detected: "
3721
 
3722
  #: ../includes/mycred-install.php:54
3723
  msgid ""
3724
+ "Sorry but your WordPress installation does not reach the minimum "
3725
+ "requirements for running myCRED. The following errors were given:"
3726
  msgstr ""
3727
  "پوزش می خواهیم ، اما سایت وردپرسی شما حداقل امکانات لازم برای اجرای افزونه "
3728
  "\"اعتبارمن\" را ندارد . خطاهای زیر پیش آمده :"
3740
  msgstr "راه اندازی \"اعتبار من\""
3741
 
3742
  #: ../includes/mycred-install.php:385
3743
+ #, php-format
3744
  msgid "%s Setup"
3745
  msgstr ""
3746
 
3750
 
3751
  #: ../includes/mycred-install.php:411
3752
  msgid ""
3753
+ "Click \"Begin Setup\" to install myCRED. You will be able to select your "
3754
+ "points format, layout and security settings."
3755
  msgstr ""
3756
+ "برای نصب \"اعتبار من\" بر روی \"آغاز نصب\" کلیک فرمایید . در ادامه قادر خواهید "
3757
+ "بود تا طرح امتیازها ، نمایه و تنظیمات امنیتی خود را اعمال فرمایید ."
3758
 
3759
  #: ../includes/mycred-install.php:412
3760
  msgid "Begin Setup"
3830
 
3831
  #: ../includes/mycred-install.php:556 ../modules/mycred-module-settings.php:390
3832
  msgid ""
3833
+ "As an added security, you can set the maximum amount a user can gain or "
3834
+ "loose in a single instance. If used, make sure this is the maximum amount a "
3835
+ "user would be able to transfer, buy, or spend in your store. Use zero to "
3836
+ "disable."
3837
  msgstr ""
3838
+ "برای امنیت بیشتر ، می توانید سقف مجازی برای امتیازی که یک کاربر در یک مرحله "
3839
+ "به دست می آورد یا از دست می دهد را تعیین فرمایید . اگر از این امکان استفاده "
3840
+ "می نمایید ، حتما فراموش نکنید که سقف مجازی برای قسمت های دیگر ، نظیر مقدار "
3841
+ "امتیازی که کاربر می تواند منتقل کند ، بخرد یا در فروشگاه شما خرج کند را هم "
3842
+ "تعیین بکنید . برای غیرفعال سازی این ویژگی عدد صفر را در کادر وارد فرمایید ."
3843
 
3844
  #: ../includes/mycred-install.php:563 ../modules/mycred-module-settings.php:397
3845
  msgid "Exclude those who can \"Edit Settings\"."
3846
  msgstr ""
3847
+ "استثنا قائل شدن برای کسانی که امکان \"ویرایش تنظیمات\" را دارند . ( اگر می "
3848
+ "خواهید از بین کسانی که این امکان را دارند ، دسترسی چند نفر را بگیرید ، اسامی "
3849
+ "آن ها را در این کادر وارد فرمایید . )"
3850
 
3851
  #: ../includes/mycred-install.php:567 ../modules/mycred-module-settings.php:401
3852
  msgid "Exclude those who can \"Edit Users %plural%\"."
3853
  msgstr ""
3854
+ "استثنا قائل شدن برای کسانی که امکان \"ویرایش %plural% کاربران\" را دارند . ( "
3855
+ "اگر می خواهید از بین کسانی که این امکان را دارند ، دسترسی چند نفر را بگیرید "
3856
+ "، اسامی آن ها را در این کادر وارد فرمایید . )"
3857
 
3858
  #: ../includes/mycred-install.php:570 ../modules/mycred-module-settings.php:405
3859
  msgid "Exclude the following user IDs:"
3882
  msgstr "نصب و راه اندازی"
3883
 
3884
  #: ../includes/mycred-log.php:389
3885
+ #, php-format
3886
  msgid "Showing %d %s"
3887
  msgstr "نمایش %d %s"
3888
 
3903
  msgstr ""
3904
 
3905
  #: ../includes/mycred-log.php:424
3906
+ #, php-format
3907
  msgctxt "paging"
3908
  msgid "%1$s of %2$s"
3909
  msgstr ""
3942
 
3943
  #: ../includes/mycred-log.php:609
3944
  msgid ""
3945
+ "Log entries are exported to a CSV file and depending on the number of "
3946
+ "entries selected, the process may take a few seconds."
3947
  msgstr ""
3948
 
3949
  #: ../includes/mycred-log.php:613
3966
  msgid "search log entries"
3967
  msgstr "جستجو در بین داده ها"
3968
 
3969
+ #: ../includes/mycred-log.php:842 ../modules/mycred-module-buddypress.php:232 ..
3970
+ #: modules/mycred-module-buddypress.php:245
3971
  msgid "All"
3972
  msgstr "همگی"
3973
 
3992
  msgstr "تنظیمات ظبکه"
3993
 
3994
  #: ../includes/mycred-network.php:169
3995
+ #, php-format
3996
  msgid "%s Network"
3997
  msgstr "شبکه %s"
3998
 
3999
  #: ../includes/mycred-network.php:175
4000
+ #, php-format
4001
  msgid "Note! %s has not yet been setup."
4002
  msgstr "توجه ! %s هنوز نصب نشده است ."
4003
 
4006
  msgstr "تنظیمات شبکه به روزرسانی شد"
4007
 
4008
  #: ../includes/mycred-network.php:181
4009
+ #, php-format
4010
  msgid "Configure network settings for %s."
4011
  msgstr "ویرایش تنظیمات شبکه برای %s ."
4012
 
4015
  msgstr "الگوی اصلی"
4016
 
4017
  #: ../includes/mycred-network.php:199
4018
+ #, php-format
4019
  msgid ""
4020
+ "If enabled, %s will use your main site's settings for all other sites in "
4021
+ "your network."
4022
  msgstr ""
4023
  "اگر فعال باشد ، %s از تنظیمات سایت اصلی شما برای دیگر سایت های درون شبکه تان "
4024
  "استفاده خواهد کرد ."
4028
  msgstr "تهیه لیست گزارش مرکزی"
4029
 
4030
  #: ../includes/mycred-network.php:213
4031
+ #, php-format
4032
  msgid "If enabled, %s will log all site actions in your main site's log."
4033
+ msgstr ""
4034
+ "اگر فعال باشد ، %s تمام اعمال انجام شده ی سایت ها را در سایت مرکزی لیست می "
4035
+ "کند ."
4036
 
4037
  #: ../includes/mycred-network.php:216
4038
  msgid "Site Block"
4039
  msgstr "مسدود کردن سایت"
4040
 
4041
  #: ../includes/mycred-network.php:220
4042
+ #, php-format
4043
  msgid "Comma separated list of blog ids where %s is to be disabled."
4044
  msgstr ""
4045
+ "لیستی از شناسه ی سایت هایی که با ویرگول از هم جدا شده و %s آن ها را غیرفعال "
4046
+ "می کند ."
4047
 
4048
  #: ../includes/mycred-network.php:229
4049
  msgid "Save Network Settings"
4050
  msgstr "ذخیره تنظیمات شبکه"
4051
 
4052
  #: ../includes/mycred-overview.php:25
4053
+ #, php-format
4054
  msgid "%s Overview"
4055
  msgstr ""
4056
 
4066
  msgid "Deducted"
4067
  msgstr ""
4068
 
4069
+ #: ../includes/mycred-overview.php:120 ../includes/mycred-overview.php:127 ..
4070
+ #: modules/mycred-module-addons.php:235
4071
  msgid "Transfers"
4072
  msgstr ""
4073
 
4082
  #: ../includes/mycred-remote.php:526
4083
  msgid "Click Update Settings to load the Remote API settings."
4084
  msgstr ""
4085
+ "بر روی به روز رسانی تنظیمات کلیک کنید تا تنظیمات دسترسی از راه دور API "
4086
+ "بارگذاری شود ."
4087
 
4088
  #: ../includes/mycred-remote.php:528
4089
  msgid "Allow Remote Access"
4122
  "Keep this key safe! Those you share this key with will be able to remotely "
4123
  "deduct / add / transfer %plural%!"
4124
  msgstr ""
4125
+ "این کلید را در جای امنی نگهداری کنید ! کسانی که این کلید را با آن ها به "
4126
+ "اشتراک می گذارید ، توانایی این را خواهند داشت که %plural% اضافه / کم کنند و "
4127
+ "یا حتی %plural% انتقال دهند ."
4128
 
4129
  #: ../includes/mycred-remote.php:568
4130
  msgid "Incoming URI"
4131
  msgstr "آدرس اینترنتی ورودی"
4132
 
4133
  #: ../includes/mycred-remote.php:572
4134
+ msgid ""
4135
+ "The incoming call address. Remote calls made to any other URL will be "
4136
+ "ignored."
4137
  msgstr ""
4138
+ "آدرس فراخوان ورودی . فراخوان های راه دور که برای آدرس های اینترنتیِ دیگر "
4139
+ "ساخته شده اند ، نادیده گرفته خواهند شد !"
4140
 
4141
  #: ../includes/mycred-remote.php:575
4142
  msgid "Debug Mode"
4183
  msgstr "شناسه ی ویدیو برای این \"شورت کد\" نیاز می باشد"
4184
 
4185
  #: ../includes/mycred-widgets.php:21
4186
+ #, php-format
4187
  msgid "Show the current users %s balance"
4188
  msgstr "نمایش میزان امتیازات %s اخیری که برای کاربران ثبت شده"
4189
 
4190
  #: ../includes/mycred-widgets.php:23
4191
+ #, php-format
4192
  msgid "(%s) My Balance"
4193
  msgstr "میزان امتیازات (%s) من"
4194
 
4202
 
4203
  #: ../includes/mycred-widgets.php:174 ../includes/mycred-widgets.php:583
4204
  msgid "<a href=\"%login_url_here%\">Login</a> to view your balance."
4205
+ msgstr ""
4206
+ "برای دیدن میزان امتیازات خود ، لطفا <a href=\"%login_url_here%\">وارد</a> شوید "
4207
+ "."
4208
 
4209
  #: ../includes/mycred-widgets.php:213
4210
  msgid "Layout"
4243
  msgstr "پیام"
4244
 
4245
  #: ../includes/mycred-widgets.php:323
4246
+ #, php-format
4247
  msgid "Show a list of users sorted by their %s balance"
4248
  msgstr "نمایش لیستی از کاربران که بر اساس تعداد امتیازات %s خودشان مرتب شده اند"
4249
 
4250
  #: ../includes/mycred-widgets.php:325
4251
+ #, php-format
4252
  msgid "(%s) Leaderboard"
4253
  msgstr "جدول برترین های (%s)"
4254
 
4284
 
4285
  #: ../includes/mycred-widgets.php:446
4286
  msgid ""
4287
+ "If the current user is not in this leaderboard, you can select to append "
4288
+ "them at the end with their current position."
4289
  msgstr ""
4290
 
4291
  #: ../includes/mycred-widgets.php:495
4293
  msgstr ""
4294
 
4295
  #: ../includes/mycred-widgets.php:497
4296
+ #, php-format
4297
  msgid "(%s) Wallet"
4298
  msgstr ""
4299
 
4305
  msgid "Row Layout"
4306
  msgstr ""
4307
 
4308
+ #: ../includes/importers/mycred-balances.php:81 ../includes/importers/mycred-
4309
+ #: balances.php:159 ../includes/importers/mycred-balances.php:198 ..
4310
+ #: includes/importers/mycred-balances.php:213 ../includes/importers/mycred-log-
4311
+ #: entries.php:81 ../includes/importers/mycred-log-entries.php:126 ..
4312
+ #: includes/importers/mycred-log-entries.php:165 ../includes/importers/mycred-
4313
+ #: log-entries.php:180
4314
  msgid "Sorry, there has been an error."
4315
  msgstr ""
4316
 
4317
+ #: ../includes/importers/mycred-balances.php:82 ../includes/importers/mycred-log-
4318
+ #: entries.php:82
4319
  msgid "The file does not exist, please try again."
4320
  msgstr ""
4321
 
4322
+ #: ../includes/importers/mycred-balances.php:160 ../includes/importers/mycred-log-
4323
+ #: entries.php:127
4324
  msgid "The CSV is invalid."
4325
  msgstr ""
4326
 
4327
  #: ../includes/importers/mycred-balances.php:171
4328
+ #, php-format
4329
  msgid ""
4330
  "Import complete - A total of <strong>%d</strong> balances were successfully "
4331
  "imported. <strong>%d</strong> was skipped."
4332
  msgstr ""
4333
 
4334
+ #: ../includes/importers/mycred-balances.php:181 ../includes/importers/mycred-
4335
+ #: cubepoints.php:293 ../includes/importers/mycred-log-entries.php:148
4336
  msgid "View Log"
4337
  msgstr ""
4338
 
4339
+ #: ../includes/importers/mycred-balances.php:181 ../includes/importers/mycred-
4340
+ #: cubepoints.php:293 ../includes/importers/mycred-log-entries.php:148
4341
  msgid "Import More"
4342
  msgstr ""
4343
 
4349
  msgid "Import balances from a CSV file."
4350
  msgstr ""
4351
 
4352
+ #: ../includes/importers/mycred-balances.php:252 ../includes/importers/mycred-log-
4353
+ #: entries.php:219
4354
  msgid ""
4355
  "Before you can upload your import file, you will need to fix the following "
4356
  "error:"
4357
  msgstr ""
4358
 
4359
+ #: ../includes/importers/mycred-balances.php:261 ../includes/importers/mycred-log-
4360
+ #: entries.php:228
4361
  msgid "Choose a file from your computer:"
4362
  msgstr ""
4363
 
4364
+ #: ../includes/importers/mycred-balances.php:267 ../includes/importers/mycred-log-
4365
+ #: entries.php:234
4366
+ #, php-format
4367
  msgid "Maximum size: %s"
4368
  msgstr ""
4369
 
4370
+ #: ../includes/importers/mycred-balances.php:272 ../includes/importers/mycred-log-
4371
+ #: entries.php:239
4372
  msgid "OR enter path to file:"
4373
  msgstr ""
4374
 
4375
+ #: ../includes/importers/mycred-balances.php:279 ../includes/importers/mycred-log-
4376
+ #: entries.php:246
4377
  msgid "Delimiter"
4378
  msgstr ""
4379
 
4389
  msgid "Adjust current balances according to the amount in this CSV file"
4390
  msgstr ""
4391
 
4392
+ #: ../includes/importers/mycred-balances.php:292 ../includes/importers/mycred-log-
4393
+ #: entries.php:252
4394
  msgid "Upload file and import"
4395
  msgstr ""
4396
 
4402
  msgid "No log entries were imported!"
4403
  msgstr ""
4404
 
4405
+ #: ../includes/importers/mycred-cubepoints.php:282 ../includes/importers/mycred-
4406
+ #: log-entries.php:138
4407
+ #, php-format
4408
  msgid ""
4409
  "Import complete - A total of <strong>%d</strong> entries were successfully "
4410
  "imported. <strong>%d</strong> was skipped."
4439
  msgstr "درون ریزی"
4440
 
4441
  #: ../includes/importers/mycred-cubepoints.php:360
4442
+ msgid ""
4443
+ "Warning! Importing CubePoints balances will replace your users myCRED "
4444
+ "balance!"
4445
  msgstr ""
4446
 
4447
  #: ../includes/importers/mycred-cubepoints.php:378
4463
  #: ../modules/mycred-module-addons.php:158
4464
  msgid ""
4465
  "The <strong>buy</strong>CRED Add-on allows your users to buy points using "
4466
+ "PayPal, Skrill (Moneybookers) or NETbilling. <strong>buy</strong>CRED can "
4467
+ "also let your users buy points for other members."
4468
  msgstr ""
4469
  "توسط افزونه ی جانبی <strong>خرید سکه یا امتیاز</strong> به کاربران خود امکان "
4470
+ "خرید امتیاز توسط درگاه های مختلف بانکی نظیر پی پال ، مانی بوکرز و یا نت "
4471
+ "بیلینگ ، را می دهید . همچنین از این طریق می توانید این امکان را برای کاربران "
4472
+ "فراهم کنید تا برای سایر اعضای سایت هم امتیاز بخرند . ( آقای ایکس برای آقای "
4473
+ "ایگرگ امتیاز بخرد ! )"
4474
 
4475
  #: ../modules/mycred-module-addons.php:169
4476
  msgid ""
4495
 
4496
  #: ../modules/mycred-module-addons.php:214
4497
  msgid ""
4498
+ "Create ranks for users reaching a certain number of %_plural% with the "
4499
+ "option to add logos for each rank."
4500
  msgstr ""
4501
 
4502
  #: ../modules/mycred-module-addons.php:225
4508
  "این افزونه ی جانبی به شما این امکان را خواهد داد تا پست ها ، صفحه ها و یا هر "
4509
  "نوع محتوای عمومی دیگر را روی وبسایتتان بفروشید . هم می توانید کل یک متن را "
4510
  "بفروشید و هم می توانید با استفاده از شورت کدهای تولیدی این افزونه ، بخشی از "
4511
+ "محتوای مورد نظرتان را از دسترس عموم خارج کرده و آن ها را تحت عناوین مختلف ، "
4512
+ "مثل \"تیزر\" و یا \"پیش نمایش\" به فروش رسانید ."
4513
 
4514
  #: ../modules/mycred-module-addons.php:236
4515
  msgid ""
4521
  "mycred_transfer و یا ابزارک جابجایی امتیاز \"اعتبار من\" ."
4522
 
4523
  #: ../modules/mycred-module-addons.php:272
4524
+ #, php-format
4525
  msgid "%s Add-ons"
4526
  msgstr "افزونه های جانبی %s"
4527
 
4540
  "ببخشند ."
4541
 
4542
  #: ../modules/mycred-module-addons.php:306
4543
+ #, php-format
4544
  msgid "You can find more add-ons in our %s."
4545
  msgstr "می توانید افزونه های بیشتر را در %s ما بیابید ."
4546
 
4581
  msgstr "لیست اعمال من"
4582
 
4583
  #: ../modules/mycred-module-buddypress.php:31
4584
+ #, php-format
4585
  msgid "%s's History"
4586
  msgstr "لیست اعمال و گزارشات %s"
4587
 
4602
  msgstr "افزونه ی بادی پرس ( افزونه ی محبوب ساخت شبکه ی اجتماعی بر روی وردپرس )"
4603
 
4604
  #: ../modules/mycred-module-buddypress.php:389
4605
+ #, php-format
4606
  msgid "%singular% Balance"
4607
  msgstr "میزان %singular%"
4608
 
4609
  #: ../modules/mycred-module-buddypress.php:405
4610
+ #, php-format
4611
  msgid "Members and visitors can other members %_singular% balance."
4612
  msgstr ""
4613
 
4630
  msgstr "عنوان به من نمایش داده شد"
4631
 
4632
  #: ../modules/mycred-module-buddypress.php:445
4633
+ #, php-format
4634
  msgid "Title shown to others. Use %s to show the first name."
4635
  msgstr ""
4636
  "عنوان به کاربران نمایش داده شد . برای اینکه فقط نام اول نمایش داده شود از %s "
4656
  msgid "Number of history entries to show"
4657
  msgstr "تعداد داده های ورودی (تغییرات) قابل نمایش لیست"
4658
 
4659
+ #: ../modules/mycred-module-hooks.php:25 ../modules/mycred-module-hooks.php:26 ..
4660
+ #: modules/mycred-module-hooks.php:27
4661
  msgid "Hooks"
4662
  msgstr "پنل تنظیمات امتیازها"
4663
 
4664
  #: ../modules/mycred-module-hooks.php:87
4665
+ #, php-format
4666
  msgid "%plural% for registrations"
4667
  msgstr "اهدای %_plural% برای ثبت نام"
4668
 
4669
  #: ../modules/mycred-module-hooks.php:88
4670
+ #, php-format
4671
  msgid "Award %_plural% for users joining your website."
4672
  msgstr "برای کاربرانی که عضوی از سایت شما می شوند %_plural% جایزه دهید"
4673
 
4674
  #: ../modules/mycred-module-hooks.php:94
4675
+ #, php-format
4676
  msgid "%plural% for logins"
4677
  msgstr "اهدای %_plural% برای وارد شدن به سایت"
4678
 
4679
  #: ../modules/mycred-module-hooks.php:95
4680
+ #, php-format
4681
  msgid ""
4682
  "Award %_plural% for logging in to your website. You can also set an optional "
4683
  "limit."
4684
  msgstr ""
4685
+ "به کاربرانی که در سایت شما لوگین می کنند %_plural% جایزه دهید . البته می "
4686
+ "توانید محدودیت های اختیاری هم برای این بخش تعیین کنید ."
4687
 
4688
  #: ../modules/mycred-module-hooks.php:101
4689
+ #, php-format
4690
  msgid "%plural% for publishing content"
4691
  msgstr "اهدای %_plural% به کاربران ، برای انتشار مطلب در سایت شما"
4692
 
4693
  #: ../modules/mycred-module-hooks.php:102
4694
+ #, php-format
4695
  msgid ""
4696
  "Award %_plural% for publishing content on your website. If your custom post "
4697
  "type is not shown bellow, make sure it is set to \"Public\"."
4698
  msgstr ""
4699
+ "به کاربرانی که در سایت شما مطلبی را انتشار می دهند ( با اشتراک گذاری فرق می "
4700
+ "کند ) ، %_plural% جایزه دهید . اگر نوع مطلبی که می خواهید در زیر نیامده است "
4701
+ "، ابتدا اطمینان حاصل کنید که نوع مطلب مورد نظرتان \"عمومی\" باشد ."
4702
 
4703
  #: ../modules/mycred-module-hooks.php:108
4704
+ #, php-format
4705
  msgid "%plural% for comments"
4706
  msgstr "اهدای %_plural% برای ثبت دیدگاه"
4707
 
4708
  #: ../modules/mycred-module-hooks.php:108
4709
+ #, php-format
4710
  msgid "%plural% for Disqus comments"
4711
  msgstr ""
4712
 
4713
  #: ../modules/mycred-module-hooks.php:109
4714
+ #, php-format
4715
  msgid "Award %_plural% for making comments."
4716
  msgstr "به کاربرانی که در بخش های مختلف سایت شما نظر می دهند ، %_plural% جایزه دهید ."
4717
 
4718
  #: ../modules/mycred-module-hooks.php:115
4719
+ #, php-format
4720
  msgid "%plural% for clicking on links"
4721
  msgstr "اهدای %_plural% برای کلیک کردن بر روی لینک ها"
4722
 
4729
  "%_plural% جایزه دهید ."
4730
 
4731
  #: ../modules/mycred-module-hooks.php:122
4732
+ #, php-format
4733
  msgid "%plural% for viewing Videos"
4734
  msgstr "اهدای %_plural% برای تماشای ویدیوها"
4735
 
4736
  #: ../modules/mycred-module-hooks.php:123
4737
  msgid ""
4738
+ "Award %_plural% to users who watches videos embedded using the "
4739
+ "[mycred_video] shortcode."
4740
  msgstr ""
4741
+ "به کاربرانی که ویدیوهای تولید شده با کد-کوتاه [mycred_video] را تماشا می "
4742
+ "کنند ، %_plural% جایزه دهید ."
4743
 
4744
  #: ../modules/mycred-module-hooks.php:129
4745
+ #, php-format
4746
  msgid "%plural% for referrals"
4747
  msgstr ""
4748
 
4751
  msgstr ""
4752
 
4753
  #: ../modules/mycred-module-hooks.php:163
4754
+ #, php-format
4755
  msgid "%s Hooks"
4756
  msgstr "پنل تنظیمات امتیازهای %s"
4757
 
4760
  "Hooks are instances where %_plural% are awarded or deducted from a user, "
4761
  "depending on their actions around your website."
4762
  msgstr ""
4763
+ "پنل تنظیماتی امتیازها محلی است که شما تعیین می کنید چه مقدار %_plural% بر "
4764
+ "اساس انجام انواع عملیات ها ، به کاربرانتان اهدا شده و یا از آن ها کسر گردد ."
4765
+
4766
+ #: ../modules/mycred-module-hooks.php:326 ../modules/mycred-module-hooks.php:638 .
4767
+ #: ./modules/mycred-module-hooks.php:651 ../modules/mycred-module-hooks.php:687 ..
4768
+ #: modules/mycred-module-hooks.php:1067 ../modules/mycred-module-hooks.php:1084 .
4769
+ #: ./modules/mycred-module-hooks.php:1101 ../modules/mycred-module-hooks.php:2212
4770
+ #: ../modules/mycred-module-hooks.php:2241 ../plugins/mycred-hook-badgeOS.php:281
4771
+ #: ../plugins/mycred-hook-bbPress.php:471 ../plugins/mycred-hook-bbPress.php:484 .
4772
+ #: ./plugins/mycred-hook-bbPress.php:497 ../plugins/mycred-hook-bbPress.php:515 ..
4773
+ #: plugins/mycred-hook-bbPress.php:528 ../plugins/mycred-hook-bbPress.php:547 ..
4774
+ #: plugins/mycred-hook-bbPress.php:575 ../plugins/mycred-hook-buddypress-gallery.
4775
+ #: php:104 ../plugins/mycred-hook-buddypress-links.php:254 ../plugins/mycred-hook-
4776
+ #: buddypress-links.php:267 ../plugins/mycred-hook-buddypress-links.php:280 ..
4777
+ #: plugins/mycred-hook-buddypress-links.php:291 ../plugins/mycred-hook-
4778
+ #: buddypress-links.php:304 ../plugins/mycred-hook-buddypress-links.php:317 ..
4779
+ #: plugins/mycred-hook-buddypress-media.php:170 ../plugins/mycred-hook-
4780
+ #: buddypress-media.php:180 ../plugins/mycred-hook-buddypress-media.php:190 ..
4781
+ #: plugins/mycred-hook-buddypress-media.php:203 ../plugins/mycred-hook-
4782
+ #: buddypress-media.php:213 ../plugins/mycred-hook-buddypress-media.php:223 ..
4783
+ #: plugins/mycred-hook-buddypress.php:381 ../plugins/mycred-hook-buddypress.php:
4784
+ #: 394 ../plugins/mycred-hook-buddypress.php:407 ../plugins/mycred-hook-
4785
+ #: buddypress.php:420 ../plugins/mycred-hook-buddypress.php:433 ../plugins/mycred-
4786
+ #: hook-buddypress.php:446 ../plugins/mycred-hook-buddypress.php:459 ..
4787
+ #: plugins/mycred-hook-buddypress.php:472 ../plugins/mycred-hook-buddypress.php:
4788
+ #: 926 ../plugins/mycred-hook-buddypress.php:939 ../plugins/mycred-hook-
4789
+ #: buddypress.php:952 ../plugins/mycred-hook-buddypress.php:965 ../plugins/mycred-
4790
+ #: hook-buddypress.php:978 ../plugins/mycred-hook-buddypress.php:991 ..
4791
+ #: plugins/mycred-hook-buddypress.php:1005 ../plugins/mycred-hook-buddypress.php:
4792
+ #: 1018 ../plugins/mycred-hook-buddypress.php:1031 ../plugins/mycred-hook-
4793
+ #: buddypress.php:1044 ../plugins/mycred-hook-contact-form7.php:137 ..
4794
+ #: plugins/mycred-hook-gravityforms.php:113 ../plugins/mycred-hook-invite-anyone.
4795
+ #: php:219 ../plugins/mycred-hook-invite-anyone.php:240 ../plugins/mycred-hook-
4796
+ #: jetpack.php:506 ../plugins/mycred-hook-jetpack.php:519 ../plugins/mycred-hook-
4797
+ #: simplepress.php:330 ../plugins/mycred-hook-simplepress.php:343 ..
4798
+ #: plugins/mycred-hook-simplepress.php:356 ../plugins/mycred-hook-simplepress.
4799
+ #: php:380
4800
  msgid "Log template"
4801
  msgstr "نمونه ی لیست گزارش ( لوگ )"
4802
 
4803
+ #: ../modules/mycred-module-hooks.php:527 ../modules/mycred-module-hooks.php:2220
4804
+ #: ../modules/mycred-module-hooks.php:2249 ../plugins/mycred-hook-invite-anyone.
4805
+ #: php:224 ../plugins/mycred-hook-invite-anyone.php:245
4806
  msgid "Limit"
4807
  msgstr "محدوده"
4808
 
4809
  #: ../modules/mycred-module-hooks.php:632
4810
+ #, php-format
4811
  msgid "%plural% for Posts"
4812
  msgstr "اهدای %plural% برای پست ها"
4813
 
4814
  #: ../modules/mycred-module-hooks.php:645
4815
+ #, php-format
4816
  msgid "%plural% for Pages"
4817
  msgstr "اهدای %plural% برای ایجاد صفحات"
4818
 
4819
  #: ../modules/mycred-module-hooks.php:681
4820
+ #, php-format
4821
  msgid "%plural% for %s"
4822
  msgstr "اهدای %plural% برای %s"
4823
 
4831
  msgid "Approved Comment"
4832
  msgstr "نظرات تایید شده"
4833
 
4834
+ #: ../modules/mycred-module-hooks.php:1058 ../modules/mycred-module-hooks.php:
4835
+ #: 1075 ../modules/mycred-module-hooks.php:1092
4836
  msgid "Comment Author"
4837
  msgstr "نویسنده ی دیدگاه"
4838
 
4839
+ #: ../modules/mycred-module-hooks.php:1062 ../modules/mycred-module-hooks.php:
4840
+ #: 1079 ../modules/mycred-module-hooks.php:1096
4841
  msgid "Content Author"
4842
  msgstr "نویسنده ی مطلب"
4843
 
4858
  "The number of comments per post that grants %_plural% to the comment author. "
4859
  "Use zero for unlimited."
4860
  msgstr ""
4861
+ "تعداد دیدگاه های مجاز برای هر پست ، که باعث کسب %_plural% برای کاربر خواهد "
4862
+ "شد . برای برداشتن این محدودیت عدد صفر را وارد کنید ."
4863
 
4864
  #: ../modules/mycred-module-hooks.php:1115
4865
  msgid "Limit per day"
4872
  "این محدودیت عدد صفر را وارد کنید ."
4873
 
4874
  #: ../modules/mycred-module-hooks.php:1122
4875
+ msgid ""
4876
+ "%plural% is to be awarded even when comment authors reply to their own "
4877
+ "comment."
4878
  msgstr ""
4879
+ "اهدای %_plural% حتی برای زمانی که کاربر به نظر قبلی خودش پاسخ بدهد ( نظرهای "
4880
+ "تو در تو )"
4881
 
4882
  #: ../modules/mycred-module-hooks.php:1193
4883
  msgid "Once for each unique URL"
4889
 
4890
  #: ../modules/mycred-module-hooks.php:1386
4891
  msgid ""
4892
+ "The default amount to award for clicking on links. You can override this in "
4893
+ "the shortcode."
4894
  msgstr ""
4895
+ "مقدار پیش فرضی که برای کلیک بر روی لینک ها اهدا می گردد . می توانید این "
4896
+ "مقدار را در شورت کد مربوطه ، مجددا تنظیم نمایید ."
4897
 
4898
  #: ../modules/mycred-module-hooks.php:1393
4899
+ #, php-format
4900
  msgid "Custom tags: %url%, %title% or %id%."
4901
  msgstr ""
4902
 
4907
  #: ../modules/mycred-module-hooks.php:1404
4908
  msgid ""
4909
  "If no ID is set when using the mycred_link shortcode, the shortcode will "
4910
+ "generate one automatically based on the value set under href. If you are "
4911
+ "using this feature for \"sharing\" content, it is recommended that you limit "
4912
+ "by ID."
4913
  msgstr ""
4914
  "اگر به هنگام استفاده از کد-کوتاه mycred_link shortcode هیچ شناسه ای ( ID ) "
4915
+ "استفاده نشود ، خود کد-کوتاه به صورت اتوماتیک بر اساس داده های موجود در زیر "
4916
+ "href ، شناسه ای ایجاد می کند . اگر از این ویژگی برای به اشتراک گذاری محتوا "
4917
+ "استفاده می کنید ، پیشنهاد می گردد با شناسه کار کنید ."
4918
 
4919
  #: ../modules/mycred-module-hooks.php:1406 ../modules/mycred-module-hooks.php:1762
4920
  msgid "Available Shortcode"
4929
  msgstr "منطق اهدای امتیازات"
4930
 
4931
  #: ../modules/mycred-module-hooks.php:1738
4932
+ #, php-format
4933
  msgid "Select when %_plural% should be awarded or deducted."
4934
  msgstr "مشخص کنید چه موقع باید %_plural% اهدا و یا کسر بشود ."
4935
 
4958
  "The maximum percentage a users view of a movie can differ from the actual "
4959
  "length."
4960
  msgstr ""
4961
+ "بیشترین درصد ممکنی که طول یک ویدیو ممکنه با چیزی که برای کاربران نمایش داده "
4962
+ "می شه ، تفاوت پیدا کنه"
4963
 
4964
  #: ../modules/mycred-module-hooks.php:1758
4965
  msgid ""
4966
+ "Do not set this value to zero! A lot of thing can happen while a user "
4967
+ "watches a movie and sometimes a few seconds can drop of the counter due to "
4968
+ "buffering or play back errors."
4969
  msgstr ""
4970
  "عدد این کادر را برابر صفر قرار ندهید ! زمان هایی که کاربر ویدیویی رو نگاه می "
4971
+ "کنه ، اتفاقات زیادی ممکنه پیش بیاد و گاهی وقتا بر اساس خطاهایی که اون ویدیو "
4972
+ "در طی بارگذاری و یا پخش مجدد می گیره ، ممکنه چند ثانیه ش اینور و اونور بشه ( "
4973
+ "روی ثانیه شمار ویدیو تغییر ایجاد کنه )"
4974
 
4975
  #: ../modules/mycred-module-hooks.php:1826
4976
  msgid "Affiliate Program"
5038
 
5039
  #: ../modules/mycred-module-hooks.php:2298
5040
  msgid ""
5041
+ "Option to inser the referral link in users profiles. Links will only be "
5042
+ "visible to users viewing their own profiles or administrators."
5043
  msgstr ""
5044
 
5045
  #: ../modules/mycred-module-hooks.php:2304
5076
  msgid "Available Shortcodes"
5077
  msgstr ""
5078
 
5079
+ #: ../modules/mycred-module-log.php:185 ../modules/mycred-module-log.php:206 ..
5080
+ #: modules/mycred-module-settings.php:61 ../modules/mycred-module-settings.php:102
5081
  msgid "Access denied for this action"
5082
  msgstr "عدم دسترسی مجاز برای انجام این عملیات"
5083
 
5097
  msgid "Entries"
5098
  msgstr "داده های ورودی"
5099
 
5100
+ #: ../modules/mycred-module-log.php:301 ../modules/mycred-module-log.php:381 ..
5101
+ #: modules/mycred-module-log.php:625 ../modules/mycred-module-settings.php:570
5102
  msgid "Export"
5103
  msgstr "خروجی گرفتن"
5104
 
5107
  msgstr "نتایج جستجو برای عبارت"
5108
 
5109
  #: ../modules/mycred-module-log.php:375
5110
+ #, php-format
5111
  msgid "%s Log"
5112
  msgstr ""
5113
 
5136
  msgstr ""
5137
 
5138
  #: ../modules/mycred-module-log.php:619
5139
+ #, php-format
5140
  msgid "My %s History"
5141
  msgstr ""
5142
 
5143
+ #: ../modules/mycred-module-settings.php:65 ../modules/mycred-module-settings.php:
5144
+ #: 106 ../modules/mycred-module-settings.php:148
5145
  msgid "Missing point type"
5146
  msgstr ""
5147
 
5154
  msgstr "کاربری برای خروجی گرفتن یافت نشد"
5155
 
5156
  #: ../modules/mycred-module-settings.php:330
5157
+ #, php-format
5158
  msgid "%s Settings"
5159
  msgstr "تنظیمات %s"
5160
 
5161
  #: ../modules/mycred-module-settings.php:333
5162
+ #, php-format
5163
  msgid "Adjust your core or add-on settings. Follow us on: %s %s"
5164
  msgstr ""
5165
 
5172
  msgstr "نام"
5173
 
5174
  #: ../modules/mycred-module-settings.php:345
5175
+ #, php-format
5176
  msgid "Accessible though the %singular% template tag."
5177
  msgstr "از بخش نمونه تگ های %singular% نیز قابل استفاده می باشد"
5178
 
5200
  msgid "Edit Settings"
5201
  msgstr "تنظیم مجدد"
5202
 
5203
+ #: ../modules/mycred-module-settings.php:380 ../modules/mycred-module-settings.
5204
+ #: php:385
5205
  msgid "Capability to check for."
5206
  msgstr "توانایی بررسی"
5207
 
5247
  msgid "Default"
5248
  msgstr ""
5249
 
5250
+ #: ../modules/mycred-module-settings.php:480 ../modules/mycred-module-settings.
5251
+ #: php:499 ../modules/mycred-module-settings.php:521
5252
  msgid "Meta Key"
5253
  msgstr "کلید اطلاعات"
5254
 
5282
 
5283
  #: ../modules/mycred-module-settings.php:562
5284
  msgid ""
5285
+ "Use ID if you intend to use this export as a backup of your current site "
5286
+ "while Email is recommended if you want to export to a different site."
5287
  msgstr ""
5288
 
5289
  #: ../modules/mycred-module-settings.php:565
5291
  msgstr "وارد کردن لیست گزارشات ( لوگ ) داده های ورودی"
5292
 
5293
  #: ../modules/mycred-module-settings.php:567
5294
+ #, php-format
5295
  msgid ""
5296
+ "Optional log entry to use if you intend to import this file in a different "
5297
+ "%s installation."
5298
  msgstr ""
5299
+ "لیست گزارشات ( لوگ ) اختیاری برای داده های ورودی ، اگر قصد دارید این فایل را "
5300
+ "در مرحله ی نصب %s دیگری وارد فرمایید ."
5301
 
5302
  #: ../plugins/mycred-hook-badgeOS.php:20
5303
  msgid "BadgeOS"
5304
+ msgstr ""
5305
+ "افزونه ی BadgeOS ( افزونه ی پیشرفته ی مدال دهی و اعطای تقدیرنامه یا "
5306
+ "گواهینامه )"
5307
 
5308
  #: ../plugins/mycred-hook-badgeOS.php:21
5309
  msgid ""
5310
  "Default settings for each BadgeOS Achievement type. These settings may be "
5311
  "overridden for individual achievement type."
5312
  msgstr ""
5313
+ "تنظیمات پیش فرض برای هر کدام از مدال های badgeOS . می توان این تنظیمات را "
5314
+ "برای مدال ها و گواهینامه های شخصی ، مجددا ویرایش نمود ."
5315
 
5316
  #: ../plugins/mycred-hook-badgeOS.php:98
5317
+ #, php-format
5318
+ msgid ""
5319
+ "Please setup your <a href=\"%s\">default settings</a> before using this "
5320
+ "feature."
5321
  msgstr ""
5322
+ "برای استفاده از این ویژگی ، لطفا ابتدا <a href=\"%s\"> تنظیمات پیش فرض </a> "
5323
+ "خود را سفارشی سازی کنید"
5324
 
5325
  #: ../plugins/mycred-hook-badgeOS.php:109 ../plugins/mycred-hook-badgeOS.php:111
5326
  msgid "%plural% to Award"
5335
  msgstr "نمونه گزارشاتِ ( لوگ ) کسر امتیاز"
5336
 
5337
  #: ../plugins/mycred-hook-badgeOS.php:261
5338
+ #, php-format
5339
  msgid "Default %s for %s"
5340
  msgstr "%s پیش فرض برای %s"
5341
 
5352
  msgstr "افزونه ی انجمن ساز بی بی پرس"
5353
 
5354
  #: ../plugins/mycred-hook-bbPress.php:19
5355
+ #, php-format
5356
  msgid "Awards %_plural% for bbPress actions."
5357
  msgstr "اهدای %_plural% برای فعالیت در بی بی پرس ( افزونه ی انجمن ساز برای وردپرس )"
5358
 
5359
  #: ../plugins/mycred-hook-bbPress.php:464
5360
+ #, php-format
5361
  msgid "%plural% for New Forum"
5362
  msgstr "اهدای %plural% برای انجمن جدید"
5363
 
5364
  #: ../plugins/mycred-hook-bbPress.php:477
5365
+ #, php-format
5366
  msgid "%plural% for Forum Deletion"
5367
  msgstr "اهدای %plural% برای حذف یا ادیت انجمن"
5368
 
5369
+ #: ../plugins/mycred-hook-bbPress.php:490 ../plugins/mycred-hook-simplepress.php:
5370
+ #: 323
5371
+ #, php-format
5372
  msgid "%plural% for New Topic"
5373
  msgstr "اهدای %plural% برای تاپیک جدید"
5374
 
5375
  #: ../plugins/mycred-hook-bbPress.php:504
5376
+ #, php-format
5377
  msgid "Forum authors can receive %_plural% for creating new topics."
5378
  msgstr "نویسندگان انجمن می توانند برای ساختن تاپیک %plural% دریافت کنند ."
5379
 
5380
+ #: ../plugins/mycred-hook-bbPress.php:508 ../plugins/mycred-hook-bbPress.php:568 .
5381
+ #: ./plugins/mycred-hook-simplepress.php:336
5382
+ #, php-format
5383
  msgid "%plural% for Topic Deletion"
5384
  msgstr "اهدای %plural% برای پاکسازی و یا ادیت تاپیک"
5385
 
5386
  #: ../plugins/mycred-hook-bbPress.php:521
5387
+ #, php-format
5388
  msgid "%plural% for Favorited Topic"
5389
  msgstr "اهدای %plural% برای تاپیک های مورد علاقه شده"
5390
 
5391
+ #: ../plugins/mycred-hook-bbPress.php:534 ../plugins/mycred-hook-bbPress.php:558 .
5392
+ #: ./plugins/mycred-hook-buddypress.php:375 ../plugins/mycred-hook-simplepress.
5393
+ #: php:367
5394
  msgid "Daily Limit"
5395
  msgstr "محدودیت روزانه"
5396
 
5397
+ #: ../plugins/mycred-hook-bbPress.php:536 ../plugins/mycred-hook-bbPress.php:560 .
5398
+ #: ./plugins/mycred-hook-simplepress.php:369
5399
  msgid "Use zero for unlimited"
5400
  msgstr "برای برداشتن این محدودیت عدد صفر را وارد فرمایید"
5401
 
5402
  #: ../plugins/mycred-hook-bbPress.php:540
5403
+ #, php-format
5404
  msgid "%plural% for New Reply"
5405
  msgstr "اهدای %plural% برای پاسخ دادن به تاپیک"
5406
 
5407
  #: ../plugins/mycred-hook-bbPress.php:554
5408
+ #, php-format
5409
  msgid "Topic authors can receive %_plural% for replying to their own Topic"
5410
  msgstr "نویسندگان تاپیک می توانند برای پاسخ به تاپیک خودشان %_plural% دریافت کنند"
5411
 
5412
  #: ../plugins/mycred-hook-bbPress.php:564
5413
+ #, php-format
5414
  msgid "Show users %_plural% balance in replies"
5415
  msgstr "نمایش دادن %_plural% کاربران در جواب"
5416
 
5419
  msgstr "بادی پرس : فعالیت های گالری"
5420
 
5421
  #: ../plugins/mycred-hook-buddypress-gallery.php:20
5422
+ #, php-format
5423
  msgid ""
5424
  "Awards %_plural% for creating a new gallery either using BP Album+ or BP "
5425
  "Gallery."
5426
  msgstr "اهدای %_plural% برای ساختن گالری جدید ، چه با BP Album+ ، چه با BP Gallery ."
5427
 
5428
  #: ../plugins/mycred-hook-buddypress-gallery.php:97
5429
+ #, php-format
5430
  msgid "%plural% for New Gallery"
5431
  msgstr "اهدای %plural% برای گالری جدید"
5432
 
5435
  msgstr "بادی پرس : لینک ها"
5436
 
5437
  #: ../plugins/mycred-hook-buddypress-links.php:20
5438
+ #, php-format
5439
  msgid "Awards %_plural% for link related actions."
5440
  msgstr "اهدای %_plural% برای انجام فعالیت های مرتبط با لینک ، توسط کاربر"
5441
 
5442
  #: ../plugins/mycred-hook-buddypress-links.php:247
5443
+ #, php-format
5444
  msgid "%plural% for New Links"
5445
  msgstr "اهدای %plural% برای لینک های جدید"
5446
 
5447
  #: ../plugins/mycred-hook-buddypress-links.php:260
5448
+ #, php-format
5449
  msgid "%plural% for Vote on Link"
5450
  msgstr "اهدای %plural% برای رای دادن روی لینک ها"
5451
 
5462
  msgstr ""
5463
 
5464
  #: ../plugins/mycred-hook-buddypress-links.php:297
5465
+ #, php-format
5466
  msgid "%plural% for Updating Links"
5467
  msgstr "اهدای %plural% برای به روزرسانی لینک ها"
5468
 
5469
  #: ../plugins/mycred-hook-buddypress-links.php:310
5470
+ #, php-format
5471
  msgid "%plural% for Deleting Links"
5472
  msgstr "اهدا یا کسر اهدای %plural% برای پاک کردن لینک ها"
5473
 
5476
  msgstr ""
5477
 
5478
  #: ../plugins/mycred-hook-buddypress-media.php:19
5479
+ #, php-format
5480
  msgid "Award / Deduct %_plural% for users creating albums or uploading new photos."
5481
  msgstr ""
5482
 
5517
  msgstr "بادی پرس : اعضا"
5518
 
5519
  #: ../plugins/mycred-hook-buddypress.php:21
5520
+ #, php-format
5521
  msgid "Awards %_plural% for profile related actions."
5522
  msgstr "اهدای %_plural% برای انجام فعالیت های مرتبط با پروفایل کاربری ."
5523
 
5526
  msgstr "بادی پرس : گروه ها"
5527
 
5528
  #: ../plugins/mycred-hook-buddypress.php:29
5529
+ #, php-format
5530
  msgid ""
5531
  "Awards %_plural% for group related actions. Use minus to deduct %_plural% or "
5532
  "zero to disable a specific hook."
5535
  "برای کسر %_plural% و عدد صفر برای غیرفعالسازی تنظیماتی خاص ، استفاده نمایید ."
5536
 
5537
  #: ../plugins/mycred-hook-buddypress.php:369
5538
+ #, php-format
5539
  msgid "%plural% for Profile Updates"
5540
  msgstr "اهدای %plural% برای به روزرسانی پروفایل کاربری"
5541
 
5544
  msgstr ""
5545
 
5546
  #: ../plugins/mycred-hook-buddypress.php:387
5547
+ #, php-format
5548
  msgid "%plural% for New Avatar"
5549
  msgstr "اهدای %plural% برای آواتار جدید"
5550
 
5551
  #: ../plugins/mycred-hook-buddypress.php:400
5552
+ #, php-format
5553
  msgid "%plural% for New Friendships"
5554
  msgstr "اهدای %plural% برای رابطه ی دوستی جدید"
5555
 
5556
  #: ../plugins/mycred-hook-buddypress.php:413
5557
+ #, php-format
5558
  msgid "%plural% for Leaving Friendship"
5559
  msgstr "اهدا یا کسر %plural% برای حذف رابطه دوستی"
5560
 
5561
  #: ../plugins/mycred-hook-buddypress.php:426
5562
+ #, php-format
5563
  msgid "%plural% for New Comment"
5564
  msgstr "اهدای %plural% برای دیدگاه جدید"
5565
 
5566
  #: ../plugins/mycred-hook-buddypress.php:439
5567
+ #, php-format
5568
  msgid "%plural% for Deleting Comment"
5569
  msgstr "اهدا یا کسر %plural% برای پاک کردن دیدگاه"
5570
 
5571
  #: ../plugins/mycred-hook-buddypress.php:452
5572
+ #, php-format
5573
  msgid "%plural% for New Messages"
5574
  msgstr "اهدای %plural% برای پیام جدید"
5575
 
5576
  #: ../plugins/mycred-hook-buddypress.php:465
5577
+ #, php-format
5578
  msgid "%plural% for Sending Gift"
5579
  msgstr "اهدای %plural% برای ارسال هدیه"
5580
 
5581
  #: ../plugins/mycred-hook-buddypress.php:912
5582
+ #, php-format
5583
  msgid "%plural% for Creating Groups"
5584
  msgstr "اهدای %plural% برای ساخت گروه ها"
5585
 
5588
  "If you use a negative value and the user does not have enough %_plural% the "
5589
  "\"Create Group\" button will be disabled."
5590
  msgstr ""
5591
+ "اگر از مقداری منفی استفاده کنید و کاربر هم %_plural% کافی برای کسر شدن "
5592
+ "نداشته باشد ، کلید \"ساخت گروه\" غیرفعال خواهد شد ."
5593
 
5594
  #: ../plugins/mycred-hook-buddypress.php:920
5595
  msgid "Number of members before awarding %_plural%"
5600
  msgstr "برای اهدای %_plural% به هنگامی که گروه ساخته شد ، از عدد صفر استفاده نمایید ."
5601
 
5602
  #: ../plugins/mycred-hook-buddypress.php:932
5603
+ #, php-format
5604
  msgid "%plural% for Deleting Groups"
5605
  msgstr "اهدای %plural% برای حذف گروه ها"
5606
 
5607
  #: ../plugins/mycred-hook-buddypress.php:945
5608
+ #, php-format
5609
  msgid "%plural% for New Forum Topic"
5610
  msgstr "اهدای %plural% برای ایجاد تاپیک جدید در انجمن"
5611
 
5612
  #: ../plugins/mycred-hook-buddypress.php:958
5613
+ #, php-format
5614
  msgid "%plural% for Editing Forum Topic"
5615
  msgstr "اهدای %plural% برای ویرایش تاپیک های انجمن"
5616
 
5617
  #: ../plugins/mycred-hook-buddypress.php:971
5618
+ #, php-format
5619
  msgid "%plural% for New Forum Post"
5620
  msgstr "اهدای %plural% برای پست جدید در انجمن"
5621
 
5622
  #: ../plugins/mycred-hook-buddypress.php:984
5623
+ #, php-format
5624
  msgid "%plural% for Editing Forum Post"
5625
  msgstr "اهدای %plural% برای ویرایش پست های انجمن"
5626
 
5627
  #: ../plugins/mycred-hook-buddypress.php:997
5628
+ #, php-format
5629
  msgid "%plural% for Joining Groups"
5630
  msgstr "اهدای %plural% برای عضویت در گروه ها"
5631
 
5634
  "If you use a negative value and the user does not have enough %_plural% the "
5635
  "\"Join Group\" button will be disabled."
5636
  msgstr ""
5637
+ "اگر از مقداری منفی استفاده کنید و کاربر هم %_plural% کافی برای کسر شدن "
5638
+ "نداشته باشد ، کلید \"عضویت در گروه\" غیرفعال خواهد شد ."
5639
 
5640
  #: ../plugins/mycred-hook-buddypress.php:1011
5641
+ #, php-format
5642
  msgid "%plural% for Leaving Groups"
5643
  msgstr "اهدا یا کسر %plural% برای ترک گروه ها"
5644
 
5645
  #: ../plugins/mycred-hook-buddypress.php:1024
5646
+ #, php-format
5647
  msgid "%plural% for New Group Avatar"
5648
  msgstr "اهدای %plural% برای آپلود آواتار جدید در گروه "
5649
 
5650
  #: ../plugins/mycred-hook-buddypress.php:1037
5651
+ #, php-format
5652
  msgid "%plural% for New Group Comment"
5653
  msgstr "اهدای %plural% برای دیدگاه جدید در گروه"
5654
 
5657
  msgstr "پر کردن فرم و فرستادن فرم برای افزونه ی Contact Form 7"
5658
 
5659
  #: ../plugins/mycred-hook-contact-form7.php:19
5660
+ #, php-format
5661
  msgid "Awards %_plural% for successful form submissions (by logged in users)."
5662
  msgstr "اهدای %_plural% برای پر کردن و فرستادن فرم ( فقط کاربران لوگین شده )"
5663
 
5664
+ #: ../plugins/mycred-hook-contact-form7.php:110 ../plugins/mycred-hook-
5665
+ #: gravityforms.php:86
5666
  msgid "No forms found."
5667
  msgstr "فرمی یافت نشد ."
5668
 
5671
  msgstr "مدیریت رویدادها"
5672
 
5673
  #: ../plugins/mycred-hook-events-manager-light.php:19
5674
+ #, php-format
5675
  msgid "Awards %_plural% for users attending events."
5676
  msgstr "اهدای %_plural% برای شرکت در رویدادها ."
5677
 
5688
  msgstr "افزونه ی GD Star Rating"
5689
 
5690
  #: ../plugins/mycred-hook-gd-star-rating.php:19
5691
+ #, php-format
5692
  msgid "Awards %_plural% for users rate items using the GD Star Rating plugin."
5693
  msgstr ""
5694
+ "اهدای %_plural% برای کسانی که توسط افزونه ی GD Star Rating به انواع محتوای "
5695
+ "سایت امتیاز می دهند ."
5696
 
5697
  #: ../plugins/mycred-hook-gd-star-rating.php:103
5698
  msgid "Rating"
5707
  msgstr ""
5708
 
5709
  #: ../plugins/mycred-hook-gravityforms.php:19
5710
+ #, php-format
5711
  msgid "Awards %_plural% for successful form submissions."
5712
  msgstr ""
5713
 
5716
  msgstr "افزونه ی Invite Anyone"
5717
 
5718
  #: ../plugins/mycred-hook-invite-anyone.php:19
5719
+ #, php-format
5720
  msgid ""
5721
  "Awards %_plural% for sending invitations and/or %_plural% if the invite is "
5722
  "accepted."
5723
  msgstr "اهدای %_plural% برای فرستادن و یا قبول کردن دعوتنامه"
5724
 
5725
+ #: ../plugins/mycred-hook-invite-anyone.php:212
5726
+ #, php-format
5727
  msgid "%plural% for Sending An Invite"
5728
  msgstr "اهدای %plural% برای ارسال دعوتنامه"
5729
 
5730
+ #: ../plugins/mycred-hook-invite-anyone.php:228
5731
  msgid "Maximum number of invites that grants %_plural%. Use zero for unlimited."
5732
  msgstr ""
5733
  "تعداد مجاز دعوتنامه هایی که منجر به کسب %_plural% می شود . برای برداشتن این "
5734
  "محدودیت عدد صفر را وارد فرمایید ."
5735
 
5736
+ #: ../plugins/mycred-hook-invite-anyone.php:232
5737
+ #, php-format
5738
  msgid "%plural% for Accepting An Invite"
5739
  msgstr "اهدای %plural% برای قبول دعتنامه"
5740
 
5741
+ #: ../plugins/mycred-hook-invite-anyone.php:236
5742
+ #, php-format
5743
  msgid "%plural% for each invited user that accepts an invitation."
5744
  msgstr "اهدای %plural% به ازای هر کاربرِ دعوت شده ای که دعوتنامه را قبول کند ."
5745
 
5746
+ #: ../plugins/mycred-hook-invite-anyone.php:249
5747
  msgid ""
5748
  "Maximum number of accepted invitations that grants %_plural%. Use zero for "
5749
  "unlimited."
5750
  msgstr ""
5751
+ "بیشترین تعداد دعوتنامه های قبول شده که باعث کسب %_plural% برای کاربر می شوند "
5752
+ ". برای برداشتن این محدودیت عدد صفر را وارد کنید ."
5753
 
5754
  #: ../plugins/mycred-hook-jetpack.php:18
5755
  msgid "Jetpack Subscriptions"
5756
  msgstr "اشتراک در افزونه جت پک"
5757
 
5758
  #: ../plugins/mycred-hook-jetpack.php:19
5759
+ #, php-format
5760
+ msgid ""
5761
+ "Awards %_plural% for users signing up for site or comment updates using "
5762
+ "Jetpack."
5763
  msgstr ""
5764
  "اهدای %_plural% برای کاربرانی که توسط افزونه ی جت پک و برای دریافت آپدیت های "
5765
  "بخش نظرات یا حتی خود سایت ثبت نام می کنند ."
5777
  msgstr "انجمن سازِ سیمپل پرس"
5778
 
5779
  #: ../plugins/mycred-hook-simplepress.php:19
5780
+ #, php-format
5781
  msgid "Awards %_plural% for Simple:Press actions."
5782
  msgstr "اهدای %_plural% برای فعالیت در سیمپل پرس ( افزونه ای انجمن ساز برای وردپرس )"
5783
 
5784
  #: ../plugins/mycred-hook-simplepress.php:349
5785
+ #, php-format
5786
  msgid "%plural% for New Topic Post"
5787
  msgstr "اهدای %_plural% برای پست تاپیک جدید"
5788
 
5789
  #: ../plugins/mycred-hook-simplepress.php:363
5790
+ #, php-format
5791
  msgid "Topic authors can receive %_plural% for posting on their own Topic"
5792
  msgstr ""
5793
+ "نویسندگان تاپیک می توانند برای قرار دادن پست بر روی تاپیک خودشان %_plural% "
5794
+ "کسب کنند ."
5795
 
5796
  #: ../plugins/mycred-hook-simplepress.php:373
5797
+ #, php-format
5798
  msgid "%plural% for Topic Post Deletion"
5799
  msgstr "اهدا یا کسر %plural% برای حذف کامل یا بخشی از پست تاپیک"
5800
 
5803
  msgstr "پست های لیست علاقمندی ها"
5804
 
5805
  #: ../plugins/mycred-hook-wp-favorite-posts.php:19
5806
+ #, php-format
5807
  msgid "Awards %_plural% for users adding posts to their favorites."
5808
  msgstr "اهدای %_plural% به کاربرانی که در لیست علاقمندی های خود پستی اضافه می کنند ."
5809
 
5820
  msgstr "نظرسنجی های وردپرس | WP-Polls"
5821
 
5822
  #: ../plugins/mycred-hook-wp-polls.php:19
5823
+ #, php-format
5824
  msgid "Awards %_plural% for users voting in polls."
5825
  msgstr "اهدای %_plural% برای کاربرانی که در نظرسنجی ها رای می دهند ."
lang/mycred-fr_FR.mo CHANGED
Binary file
lang/mycred-fr_FR.po CHANGED
@@ -1,149 +1,158 @@
1
  msgid ""
2
  msgstr ""
3
- "Project-Id-Version: myCRED 1.4.4\n"
4
  "Report-Msgid-Bugs-To: http://mycred.me\n"
5
  "POT-Creation-Date: 2014-03-20 14:26+0100\n"
6
- "PO-Revision-Date: Wed May 28 2014 12:05:53 GMT+0200 (CEST)\n"
7
- "Last-Translator: Gabriel <gabrieldk@merovingi.com>\n"
8
- "Language-Team: Dan <danco38@gmail.com>\n"
9
  "Language: French\n"
10
  "Plural-Forms: nplurals=2; plural=n > 1\n"
11
  "MIME-Version: 1.0\n"
12
  "Content-Type: text/plain; charset=UTF-8\n"
13
  "Content-Transfer-Encoding: 8bit\n"
14
  "X-Poedit-SourceCharset: UTF-8\n"
15
- "X-Poedit-KeywordsList: _:1;gettext:1;dgettext:2;ngettext:1,2;dngettext:2,3;__:1;"
16
- "_e:1;_c:1;_n:1,2;_n_noop:1,2;_nc:1,2;__ngettext:1,2;__ngettext_noop:1,2;_x:1,2c;"
17
- "_ex:1,2c;_nx:1,2,4c;_nx_noop:1,2,3c;_n_js:1,2;_nx_js:1,2,3c;esc_attr__:1;"
18
- "esc_html__:1;esc_attr_e:1;esc_html_e:1;esc_attr_x:1,2c;esc_html_x:1,2c;"
19
- "comments_number_link:2,3;t:1;st:1;trans:1;transChoice:1,2\n"
20
  "X-Poedit-Basepath: .\n"
21
  "X-Loco-Target-Locale: fr_FR\n"
22
  "X-Generator: Loco - https://localise.biz/"
23
 
24
- #: ../mycred.php:398
25
  msgid "Balance"
26
  msgstr "Solde"
27
 
28
- #: ../mycred.php:423
29
  msgid "%label% History"
30
  msgstr "Historique %label%"
31
 
32
- #: ../mycred.php:476
33
  msgid "No balances available."
34
  msgstr "Aucun solde disponible"
35
 
36
- #: ../mycred.php:522
 
37
  msgid "About %s"
38
  msgstr "&Agrave; propos de %s"
39
 
40
- #: ../mycred.php:531
41
  msgid "Awesome People"
42
  msgstr "On les remercie"
43
 
44
- #: ../mycred.php:616 ../mycred.php:640 ../addons/ranks/myCRED-addon-ranks.php:230 ../addons/ranks/myCRED-addon-ranks.php:897 ../addons/sell-content/myCRED-addon-sell-content.php:309 ../addons/transfer/myCRED-addon-transfer.php:132 ../includes/mycred-shortcodes.php:535
 
 
 
45
  msgid "Processing..."
46
  msgstr "Chargement en cours..."
47
 
48
- #: ../mycred.php:617
49
  msgid ""
50
- "Warning! All entries in your log will be permanently removed! This can not be "
51
- "undone!"
52
  msgstr ""
53
- "Attention ! Toutes les entrées seront définitivement supprimées. Cette action "
54
- "ne pourra pas être annulée."
55
 
56
- #: ../mycred.php:618
57
  msgid ""
58
  "All log entries belonging to deleted users will be permanently deleted! This "
59
  "can not be undone!"
60
  msgstr ""
61
- "Toutes les entrées appartenant aux utilisateurs supprimés seront définitivement "
62
- "détruites. Cette action ne pourra pas être annulée."
63
 
64
- #: ../mycred.php:619
65
  msgid "Warning! All user balances will be set to zero! This can not be undone!"
66
  msgstr ""
67
  "Attention ! Les soldes de tous les utilisateurs seront remis à zéro. Cette "
68
  "action ne pourra pas être annulée."
69
 
70
- #: ../mycred.php:620
71
  msgid "Done!"
72
  msgstr "Terminé !"
73
 
74
- #: ../mycred.php:621 ../mycred.php:639 ../mycred.php:657
75
  msgid "Close"
76
  msgstr "fermer"
77
 
78
- #: ../mycred.php:622
79
  msgid "Export users %plural%"
80
  msgstr "Exportation des %plural% des utilisateurs"
81
 
82
- #: ../mycred.php:638
83
  msgid "Edit Users Balance"
84
  msgstr "Modifier le solde des utilisateurs"
85
 
86
- #: ../mycred.php:656
87
  msgid "Edit Log Entry"
88
  msgstr "Modifier une entrée du journal"
89
 
90
- #: ../mycred.php:658
91
  msgid "Updating..."
92
  msgstr "Mise à jour en cours..."
93
 
94
- #: ../mycred.php:660
95
  msgid "Are you sure you want to delete this log entry? This can not be undone!"
96
  msgstr ""
97
- "Soyez prudent. L'action que vous vous apprêtez à effectuer ne pourra pas être "
98
- "annulée."
99
 
100
- #: ../mycred.php:661
101
  msgid "Log entry updated"
102
  msgstr "L'entrée du journal a été mise à jour"
103
 
104
- #: ../mycred.php:713 ../mycred.php:734 ../addons/email-notices/myCRED-addon-email-notices.php:595 ../addons/gateway/event-booking/mycred-eventsmanager-pro.php:458 ../addons/gateway/event-booking/mycred-eventsmanager.php:537
 
 
105
  msgid "Setup"
106
  msgstr "Configuration"
107
 
108
- #: ../mycred.php:715 ../addons/gateway/carts/mycred-marketpress.php:360 ../includes/mycred-network.php:186 ../modules/mycred-module-settings.php:20 ../modules/mycred-module-settings.php:21 ../modules/mycred-module-settings.php:22
 
 
109
  msgid "Settings"
110
  msgstr "Configuration"
111
 
112
- #: ../mycred.php:738 ../modules/mycred-module-addons.php:360
113
  msgid "About"
114
  msgstr "&Agrave; propos"
115
 
116
- #: ../mycred.php:739
117
  msgid "Tutorials"
118
  msgstr "Tutoriels"
119
 
120
- #: ../mycred.php:740
121
  msgid "Codex"
122
  msgstr "Codex"
123
 
124
- #: ../mycred.php:741
125
  msgid "Store"
126
  msgstr "Boutique"
127
 
128
- #: ../mycred.php:755
129
  msgid ""
130
- "Make sure to backup your database and files before updating, in case anything "
131
- "goes wrong!"
132
  msgstr ""
133
- "Agissez prudemment en sauvegardant votre base de données et vos fichiers avant "
134
- "de lancer la mise à jour."
135
 
136
  #: ../abstracts/mycred-abstract-hook.php:70
137
  msgid "function myCRED_Hook::run() must be over-ridden in a sub-class."
138
  msgstr ""
139
- "La fonction myCRED_Hook::run() doit &ecirc;tre substitu&eacute;e par une sous-"
140
- "classe."
141
 
142
  #: ../abstracts/mycred-abstract-hook.php:79
143
  msgid "This Hook has no settings"
144
  msgstr "Ce hook n'a pas de paramètre."
145
 
146
- #: ../abstracts/mycred-abstract-hook.php:157 ../modules/mycred-module-hooks.php:1192
 
147
  msgid "No limit"
148
  msgstr "Illimité"
149
 
@@ -163,7 +172,13 @@ msgstr "Une fois tous les 7 jours"
163
  msgid "Once per day (reset at midnight)"
164
  msgstr "Une fois par jour (remise à zéro à minuit)"
165
 
166
- #: ../abstracts/mycred-abstract-hook.php:168 ../addons/banking/abstracts/mycred-abstract-service.php:342 ../addons/buy-creds/myCRED-addon-buy-creds.php:390 ../addons/buy-creds/myCRED-addon-buy-creds.php:411 ../addons/buy-creds/abstracts/mycred-abstract-payment-gateway.php:805 ../addons/buy-creds/abstracts/mycred-abstract-payment-gateway.php:828 ../addons/buy-creds/gateways/zombaio.php:375 ../addons/email-notices/myCRED-addon-email-notices.php:179 ../addons/email-notices/myCRED-addon-email-notices.php:745
 
 
 
 
 
 
167
  msgid "Select"
168
  msgstr "sélectionnez"
169
 
@@ -171,7 +186,8 @@ msgstr "sélectionnez"
171
  msgid "myCRED_Module() Error. A Module ID is required!"
172
  msgstr "Erreur de module myCred. Un ID est obligatoire."
173
 
174
- #: ../abstracts/mycred-abstract-module.php:343 ../abstracts/mycred-abstract-module.php:351
 
175
  msgid "Surprise"
176
  msgstr "Surprise"
177
 
@@ -183,11 +199,14 @@ msgstr "cliquez pour fermer"
183
  msgid "click to open"
184
  msgstr "cliquez pour ouvrir"
185
 
186
- #: ../abstracts/mycred-abstract-module.php:472 ../addons/banking/myCRED-addon-banking.php:163 ../addons/buy-creds/myCRED-addon-buy-creds.php:488
 
187
  msgid "Settings Updated"
188
  msgstr "Configuration mise à jour"
189
 
190
- #: ../addons/banking/myCRED-addon-banking.php:42 ../addons/banking/myCRED-addon-banking.php:43 ../addons/banking/myCRED-addon-banking.php:44 ../modules/mycred-module-addons.php:146
 
 
191
  msgid "Banking"
192
  msgstr "Banque"
193
 
@@ -196,11 +215,12 @@ msgid "Compound Interest"
196
  msgstr "Appliquer des Intérêts"
197
 
198
  #: ../addons/banking/myCRED-addon-banking.php:104
 
199
  msgid ""
200
  "Apply an interest rate on your users %_plural% balances. Interest rate is "
201
  "annual and is compounded daily as long as this service is enabled. Positive "
202
- "interest rate leads to users gaining %_plural% while a negative interest rate "
203
- "will to users loosing %_plural%."
204
  msgstr ""
205
  "Appliquez un taux d'intérêt aux comptes de %_plural% de vos utilisateurs. Le "
206
  "taux est annuel et il est recomposé quotidiennement tant que ce service est "
@@ -212,26 +232,33 @@ msgid "Recurring Payouts"
212
  msgstr "Paiements répétés"
213
 
214
  #: ../addons/banking/myCRED-addon-banking.php:111
 
215
  msgid ""
216
- "Give your users %_plural% on a regular basis with the option to set the number "
217
- "of times you want this payout to run (cycles)."
218
  msgstr ""
219
- "Attribuez régulièrement des %_plural% à vos utilisateurs, en fixant le cycle de "
220
- "répétition pour les créditer."
221
 
222
- #: ../addons/banking/myCRED-addon-banking.php:156 ../addons/buy-creds/myCRED-addon-buy-creds.php:473 ../addons/buy-creds/myCRED-addon-buy-creds.php:603 ../includes/mycred-network.php:160 ../modules/mycred-module-addons.php:266 ../modules/mycred-module-hooks.php:157 ../modules/mycred-module-log.php:322 ../modules/mycred-module-log.php:575 ../modules/mycred-module-settings.php:312
 
 
 
 
223
  msgid "Access Denied"
224
  msgstr "Accès refusé"
225
 
226
  #: ../addons/banking/myCRED-addon-banking.php:167
 
227
  msgid "%s Banking"
228
  msgstr "Paiement %s"
229
 
230
- #: ../addons/banking/myCRED-addon-banking.php:168 ../modules/mycred-module-addons.php:147
 
231
  msgid "Setup recurring payouts or offer / charge interest on user account balances."
232
  msgstr ""
233
- "Paramétrez les paiements réguliers ou offres / pénalités et intérêts relatifs "
234
- "aux soldes de comptes de vos utilisateurs."
235
 
236
  #: ../addons/banking/myCRED-addon-banking.php:171
237
  msgid "WP-Cron deactivation detected!"
@@ -241,11 +268,13 @@ msgstr "Détection de la désactivation de WP-Cron !"
241
  msgid "Warning! This add-on requires WP - Cron to work."
242
  msgstr "Attention ! Pour utiliser ce module, WP-Cron est obligatoire."
243
 
244
- #: ../addons/banking/myCRED-addon-banking.php:188 ../addons/buy-creds/myCRED-addon-buy-creds.php:549 ../modules/mycred-module-hooks.php:182
 
245
  msgid "Enable"
246
  msgstr "Activer"
247
 
248
- #: ../addons/banking/myCRED-addon-banking.php:201 ../modules/mycred-module-hooks.php:197
 
249
  msgid "Update Changes"
250
  msgstr "Enregistrer les modifications"
251
 
@@ -301,9 +330,12 @@ msgstr "Payé / Facturé"
301
 
302
  #: ../addons/banking/services/mycred-bank-service-interest.php:288
303
  msgid "The interest rate can be either positive or negative and is compounded daily."
304
- msgstr "Le taux d'intérêt est recalculé quotidiennement et peut être positif ou négatif."
 
 
305
 
306
- #: ../addons/banking/services/mycred-bank-service-interest.php:291 ../addons/coupons/myCRED-addon-coupons.php:392
 
307
  msgid "Minimum Balance"
308
  msgstr "Solde minimum"
309
 
@@ -311,22 +343,39 @@ msgstr "Solde minimum"
311
  msgid "The minimum requires balance for interest to apply."
312
  msgstr "Le solde minimum pour l'application d'intérêts"
313
 
314
- #: ../addons/banking/services/mycred-bank-service-interest.php:298 ../addons/banking/services/mycred-bank-service-payouts.php:252 ../addons/buy-creds/myCRED-addon-buy-creds.php:368 ../addons/buy-creds/myCRED-addon-buy-creds.php:427 ../addons/coupons/myCRED-addon-coupons.php:440 ../addons/gateway/carts/mycred-marketpress.php:384 ../addons/gateway/carts/mycred-marketpress.php:417 ../addons/gateway/carts/mycred-woocommerce.php:98 ../addons/gateway/carts/mycred-woocommerce.php:164 ../addons/gateway/carts/mycred-wpecommerce.php:367 ../modules/mycred-module-hooks.php:520 ../modules/mycred-module-hooks.php:1389 ../modules/mycred-module-hooks.php:1729 ../plugins/mycred-hook-badgeOS.php:115 ../plugins/mycred-hook-badgeOS.php:117 ../plugins/mycred-hook-badgeOS.php:126 ../plugins/mycred-hook-events-manager-light.php:153 ../plugins/mycred-hook-events-manager-light.php:166 ../plugins/mycred-hook-gd-star-rating.php:109 ../plugins/mycred-hook-gd-star-rating.php:122 ../plugins/mycred-hook-wp-favorite-posts.php:135 ../plugins/mycred-hook-wp-favorite-posts.php:148 ../plugins/mycred-hook-wp-polls.php:136
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
315
  msgid "Log Template"
316
  msgstr "Texte à afficher"
317
 
318
- #: ../addons/banking/services/mycred-bank-service-interest.php:305 ../addons/banking/services/mycred-bank-service-payouts.php:259
 
319
  msgid "Run Time"
320
  msgstr "Délai d'exécution"
321
 
322
- #: ../addons/banking/services/mycred-bank-service-interest.php:309 ../addons/banking/services/mycred-bank-service-payouts.php:263
 
323
  msgid ""
324
- "For large websites, if you are running into time out issues during payouts, you "
325
- "can set the number of seconds a process can run. Use zero for unlimited, but be "
326
- "careful especially if you are on a shared server."
327
  msgstr ""
328
- "Si vous rencontrez des problèmes d'exécution pendant les paiements sur un gros "
329
- "site, vous pouvez définir le nombre de secondes alloué à l'exécution du "
330
  "processus. Indiquez 0 pour un nombre illimité. Dans ce cas, soyez "
331
  "particulièrement prudent si vous êtes sur un hébergement mutualisé."
332
 
@@ -342,7 +391,10 @@ msgstr "N'est pas en service"
342
  msgid "Pay Users"
343
  msgstr "Payer les Utilisateurs"
344
 
345
- #: ../addons/banking/services/mycred-bank-service-payouts.php:222 ../addons/buy-creds/myCRED-addon-buy-creds.php:653 ../addons/buy-creds/myCRED-addon-buy-creds.php:1156 ../addons/buy-creds/abstracts/mycred-abstract-payment-gateway.php:425 ../includes/mycred-admin.php:371 ../includes/mycred-admin.php:482
 
 
 
346
  msgid "Amount"
347
  msgstr "Montant"
348
 
@@ -350,11 +402,14 @@ msgstr "Montant"
350
  msgid "Can not be zero."
351
  msgstr "Ne peut être zéro."
352
 
353
- #: ../addons/banking/services/mycred-bank-service-payouts.php:228 ../addons/banking/services/mycred-bank-service-payouts.php:241 ../modules/mycred-module-hooks.php:1744
 
 
354
  msgid "Interval"
355
  msgstr "Intervalle"
356
 
357
- #: ../addons/banking/services/mycred-bank-service-payouts.php:233 ../addons/banking/services/mycred-bank-service-payouts.php:242
 
358
  msgid "Cycles"
359
  msgstr "Périodicité"
360
 
@@ -369,23 +424,24 @@ msgstr "Dernière activité / Activé"
369
  #: ../addons/banking/services/mycred-bank-service-payouts.php:241
370
  msgid ""
371
  "Select how often you want to award %_plural%. Note that when this service is "
372
- "enabled, the first payout will be in the beginning of the next period. So with "
373
- "a \"Daily\" interval, the first payout will occur first thing in the morning."
 
374
  msgstr ""
375
- "Choisissez le nombre de fois que vous voulez attribuer des %_plural%. Notez que "
376
- "si ce service est activé, le premier paiement ne se fera qu'au début de la "
377
- "période suivante. Par exemple, si vous choissez \"Quotidiennement\", il ne sera "
378
- "effectué que le lendemain matin."
379
 
380
  #: ../addons/banking/services/mycred-bank-service-payouts.php:242
381
  msgid ""
382
- "Cycles let you choose how many intervals this service should run. Each time a "
383
- "cycle runs, the value will decrease until it hits zero, in which case this "
384
  "service will deactivate itself. Use -1 to run unlimited times."
385
  msgstr ""
386
  "Les cycles vous permettent de choisir l'intervalle d'exécution du service. "
387
- "Après chaque cycle, la valeur décroitra jusqu'à atteindre zéro, auquel cas le "
388
- "service se désactivera de lui-même. Utilisez -1 pour un fonctionnement "
389
  "perpétuel."
390
 
391
  #: ../addons/banking/services/mycred-bank-service-payouts.php:243
@@ -394,16 +450,17 @@ msgstr "Important"
394
 
395
  #: ../addons/banking/services/mycred-bank-service-payouts.php:243
396
  msgid ""
397
- "You can always stop payouts by deactivating this service. Just remember that if "
398
- "you deactivate while there are cycles left, this service will continue on when "
399
- "it gets re-activated. Set cycles to zero to reset."
400
  msgstr ""
401
  "Vous pourrez toujours stopper les paiements en désactivant ce service. Notez "
402
- "que si vous le désactivez alors que des cycles sont encore en cours, le service "
403
- "reprendra à ce stade lorque vous le réactiverez. Indiquez zéro pour "
404
  "réinitialiser les cycles."
405
 
406
- #: ../addons/banking/services/mycred-bank-service-payouts.php:245 ../includes/mycred-install.php:559 ../modules/mycred-module-settings.php:393
 
407
  msgid "Excludes"
408
  msgstr "Exclure"
409
 
@@ -415,179 +472,211 @@ msgstr ""
415
  "Liste des utilisateurs à exclure. Séparez les ID par une virgule. Espaces "
416
  "interdits !"
417
 
418
- #: ../addons/buy-creds/myCRED-addon-buy-creds.php:55 ../addons/buy-creds/myCRED-addon-buy-creds.php:56 ../addons/buy-creds/myCRED-addon-buy-creds.php:57
 
419
  msgid "Payment Gateways"
420
  msgstr "Services de paiement"
421
 
422
- #: ../addons/buy-creds/myCRED-addon-buy-creds.php:188
423
  msgid "buyCRED Purchase Log"
424
  msgstr "Journal d'achat buyCRED"
425
 
426
- #: ../addons/buy-creds/myCRED-addon-buy-creds.php:189 ../addons/buy-creds/myCRED-addon-buy-creds.php:417 ../addons/buy-creds/myCRED-addon-buy-creds.php:484
 
427
  msgid "Purchase Log"
428
  msgstr "Journal d'achat"
429
 
430
- #: ../addons/buy-creds/myCRED-addon-buy-creds.php:277 ../addons/gateway/event-booking/mycred-eventespresso3.php:26 ../addons/gateway/event-booking/mycred-eventsmanager-pro.php:475 ../addons/gateway/event-booking/mycred-eventsmanager.php:540 ../addons/sell-content/myCRED-addon-sell-content.php:361
 
 
 
431
  msgid "Payments"
432
  msgstr "Paiements"
433
 
434
- #: ../addons/buy-creds/myCRED-addon-buy-creds.php:307
435
  msgid "Please login to purchase %_plural%"
436
  msgstr "Veuillez vous connecter pour acquérir des %_plural%"
437
 
438
- #: ../addons/buy-creds/myCRED-addon-buy-creds.php:322
 
439
  msgid "Gift purchase from %display_name%."
440
  msgstr "Achat de cadeau par %display_name%."
441
 
442
- #: ../addons/buy-creds/myCRED-addon-buy-creds.php:340 ../addons/ranks/myCRED-addon-ranks.php:624
 
443
  msgid "Minimum %plural%"
444
  msgstr "%plural% minimum"
445
 
446
- #: ../addons/buy-creds/myCRED-addon-buy-creds.php:344
447
  msgid "Minimum amount of %plural% a user must purchase. Will default to 1."
448
  msgstr "Nombre minimum de %_plural% qu&#39;un membre peut acheter. 1 par défaut !"
449
 
450
- #: ../addons/buy-creds/myCRED-addon-buy-creds.php:349 ../addons/coupons/myCRED-addon-coupons.php:315 ../addons/gateway/carts/mycred-marketpress.php:378 ../addons/gateway/carts/mycred-woocommerce.php:108 ../addons/gateway/carts/mycred-wpecommerce.php:350 ../addons/gateway/event-booking/mycred-eventespresso3.php:437 ../addons/gateway/event-booking/mycred-eventsmanager-pro.php:463 ../addons/gateway/event-booking/mycred-eventsmanager.php:550 ../addons/sell-content/myCRED-addon-sell-content.php:349 ../includes/mycred-widgets.php:204 ../includes/mycred-widgets.php:401 ../includes/importers/mycred-cubepoints.php:365
 
 
 
 
 
 
 
 
451
  msgid "Point Type"
452
  msgstr "Type de point"
453
 
454
- #: ../addons/buy-creds/myCRED-addon-buy-creds.php:361
455
  msgid "Login Template"
456
  msgstr "Template de connexion"
457
 
458
- #: ../addons/buy-creds/myCRED-addon-buy-creds.php:365
459
  msgid "Content to show when a user is not logged in."
460
  msgstr "Contenu à afficher quand un utilisateur n'est pas connecté."
461
 
462
- #: ../addons/buy-creds/myCRED-addon-buy-creds.php:375
463
  msgid "Thank You Page"
464
  msgstr "Page de remerciement"
465
 
466
- #: ../addons/buy-creds/myCRED-addon-buy-creds.php:378 ../addons/buy-creds/myCRED-addon-buy-creds.php:399
 
467
  msgid "Custom URL"
468
  msgstr "URL personnalisée"
469
 
470
- #: ../addons/buy-creds/myCRED-addon-buy-creds.php:383 ../addons/buy-creds/myCRED-addon-buy-creds.php:404
 
471
  msgid "Page"
472
  msgstr "Page"
473
 
474
- #: ../addons/buy-creds/myCRED-addon-buy-creds.php:396
475
  msgid "Cancellation Page"
476
  msgstr "Page d'annulation"
477
 
478
- #: ../addons/buy-creds/myCRED-addon-buy-creds.php:419
479
  msgid "Show seperate log for %_plural% purchases."
480
  msgstr "Afficher des journaux séparés pour l'achat de %_plural%"
481
 
482
- #: ../addons/buy-creds/myCRED-addon-buy-creds.php:421
483
  msgid "Gifting"
484
  msgstr "Remise de cadeaux"
485
 
486
- #: ../addons/buy-creds/myCRED-addon-buy-creds.php:423
 
487
  msgid "Allow users to buy %_plural% for other users."
488
  msgstr "Autoriser les membres à acquérir des %_plural% pour d'autres membres"
489
 
490
- #: ../addons/buy-creds/myCRED-addon-buy-creds.php:424
 
491
  msgid "Allow users to buy %_plural% for content authors."
492
  msgstr "Autoriser les membres à acquérir des %_plural% pour les auteurs de contenus"
493
 
494
- #: ../addons/buy-creds/myCRED-addon-buy-creds.php:484
 
495
  msgid "%s Payment Gateways"
496
  msgstr "%s Services de Paiements"
497
 
498
- #: ../addons/buy-creds/myCRED-addon-buy-creds.php:484 ../addons/buy-creds/myCRED-addon-buy-creds.php:659
 
499
  msgid "buyCRED Settings"
500
  msgstr "Configuration buyCRED"
501
 
502
- #: ../addons/buy-creds/myCRED-addon-buy-creds.php:490
503
  msgid "Select the payment gateways you want to offer your users to buy %plural%."
504
  msgstr ""
505
- "S&eacute;lectionnez le syst&egrave;me de paiement de %plural% que vous voulez "
506
- "mettre &agrave; la disposition de vos membres."
507
 
508
- #: ../addons/buy-creds/myCRED-addon-buy-creds.php:497
509
  msgid "Last Payment Notification"
510
  msgstr "Message pour dernier paiement"
511
 
512
- #: ../addons/buy-creds/myCRED-addon-buy-creds.php:499
513
  msgid ""
514
  "Here you can view the last payment confirmation that was sent to buyCRED for "
515
  "processing."
516
- msgstr "Consultez ici le message de confirmation du dernier paiement traité par buyCRED"
 
 
517
 
518
- #: ../addons/buy-creds/myCRED-addon-buy-creds.php:502
519
  msgid "Details"
520
  msgstr "Détails"
521
 
522
- #: ../addons/buy-creds/myCRED-addon-buy-creds.php:505 ../modules/mycred-module-log.php:541
 
523
  msgid "Time"
524
  msgstr "Durée"
525
 
526
- #: ../addons/buy-creds/myCRED-addon-buy-creds.php:509 ../addons/buy-creds/myCRED-addon-buy-creds.php:650 ../includes/mycred-overview.php:166 ../includes/mycred-overview.php:173 ../modules/mycred-module-addons.php:190
 
 
527
  msgid "Gateway"
528
  msgstr "Service"
529
 
530
- #: ../addons/buy-creds/myCRED-addon-buy-creds.php:513 ../addons/buy-creds/myCRED-addon-buy-creds.php:655
 
531
  msgid "Transaction ID"
532
  msgstr "ID de la transaction"
533
 
534
- #: ../addons/buy-creds/myCRED-addon-buy-creds.php:517
535
  msgid "Outcome"
536
  msgstr "Résultat"
537
 
538
- #: ../addons/buy-creds/myCRED-addon-buy-creds.php:521
539
  msgid "Gateway Log"
540
  msgstr "Traçage du Service"
541
 
542
- #: ../addons/buy-creds/myCRED-addon-buy-creds.php:529
543
  msgid "No recorded calls found."
544
  msgstr "Aucun enregistrement d'appel n'a été trouvé."
545
 
546
- #: ../addons/buy-creds/myCRED-addon-buy-creds.php:542
547
  msgid "Test Mode"
548
  msgstr "Mode Test"
549
 
550
- #: ../addons/buy-creds/myCRED-addon-buy-creds.php:544
551
  msgid "Enabled"
552
  msgstr "Activé"
553
 
554
- #: ../addons/buy-creds/myCRED-addon-buy-creds.php:547
555
  msgid "Disabled"
556
  msgstr "Désactivé"
557
 
558
- #: ../addons/buy-creds/myCRED-addon-buy-creds.php:557
559
  msgid "Sandbox Mode"
560
  msgstr "Mode bac à sable"
561
 
562
- #: ../addons/buy-creds/myCRED-addon-buy-creds.php:560
563
  msgid "Enable for test purchases."
564
  msgstr "Activez pour faire des tests d'achats factices."
565
 
566
- #: ../addons/buy-creds/myCRED-addon-buy-creds.php:577
567
  msgid "Update Gateway Settings"
568
  msgstr "Mettre à jour la configuration du service de paiement"
569
 
570
- #: ../addons/buy-creds/myCRED-addon-buy-creds.php:651 ../addons/email-notices/myCRED-addon-email-notices.php:643 ../addons/email-notices/myCRED-addon-email-notices.php:772 ../includes/mycred-admin.php:477 ../includes/mycred-log.php:639 ../modules/mycred-module-log.php:540
 
 
 
571
  msgid "User"
572
  msgstr "Utilisateur"
573
 
574
- #: ../addons/buy-creds/myCRED-addon-buy-creds.php:652 ../includes/mycred-log.php:640
 
575
  msgid "Date"
576
  msgstr "Daté"
577
 
578
- #: ../addons/buy-creds/myCRED-addon-buy-creds.php:654
579
  msgid "Payed"
580
  msgstr "Payé"
581
 
582
- #: ../addons/buy-creds/myCRED-addon-buy-creds.php:659
583
  msgid "<strong>buy</strong>CRED Purchase Log"
584
  msgstr "Relevé des achats <strong>buy</strong>CRED"
585
 
586
- #: ../addons/buy-creds/myCRED-addon-buy-creds.php:659 ../addons/gateway/event-booking/mycred-eventespresso3.php:367
 
587
  msgid "Gateway Settings"
588
  msgstr "Configuration du service de paiement"
589
 
590
- #: ../addons/buy-creds/myCRED-addon-buy-creds.php:663
591
  msgid ""
592
  "Only completed purchases are shown here. Purchases that were cancelled or "
593
  "failed are not logged."
@@ -595,79 +684,88 @@ msgstr ""
595
  "Seuls les achats entièrement réglés sont affichés ici. Les achats annulés ou "
596
  "interrompus ne sont pas enregistrés et n'apparaissent pas sur ce relevé."
597
 
598
- #: ../addons/buy-creds/myCRED-addon-buy-creds.php:772 ../includes/mycred-log.php:743 ../modules/mycred-module-log.php:462
 
599
  msgid "User Missing"
600
  msgstr "Utilisateur inexistant"
601
 
602
- #: ../addons/buy-creds/myCRED-addon-buy-creds.php:835 ../addons/sell-content/myCRED-addon-sell-content.php:1112
 
603
  msgid "No purchases found"
604
  msgstr "Aucun achat trouvé"
605
 
606
- #: ../addons/buy-creds/myCRED-addon-buy-creds.php:907 ../addons/buy-creds/myCRED-addon-buy-creds.php:1004
 
607
  msgid "This Add-on needs to setup before you can use this shortcode."
608
  msgstr ""
609
  "Ce module doit d'abord être paramétré avant que vous ne puissiez utiliser ce "
610
  "shortcode."
611
 
612
- #: ../addons/buy-creds/myCRED-addon-buy-creds.php:925 ../addons/buy-creds/myCRED-addon-buy-creds.php:1022
 
613
  msgid "No gateways installed."
614
  msgstr "Aucun systme de paiement n'est installé."
615
 
616
- #: ../addons/buy-creds/myCRED-addon-buy-creds.php:926 ../addons/buy-creds/myCRED-addon-buy-creds.php:1023
 
617
  msgid "Gateway does not exist."
618
  msgstr "Le service de paiement n'existe pas."
619
 
620
- #: ../addons/buy-creds/myCRED-addon-buy-creds.php:962
621
  msgid "Yourself"
622
  msgstr "Vous-même"
623
 
624
- #: ../addons/buy-creds/myCRED-addon-buy-creds.php:1024
625
  msgid "No active gateways found."
626
  msgstr "Aucun service de paiement n'a été trouvé."
627
 
628
- #: ../addons/buy-creds/myCRED-addon-buy-creds.php:1025
629
  msgid "The selected gateway is not active."
630
  msgstr "Ce service de paiement n'est pas activé"
631
 
632
- #: ../addons/buy-creds/myCRED-addon-buy-creds.php:1061
 
633
  msgid "Buy with %gateway%"
634
  msgstr "Régler avec %gateway%"
635
 
636
- #: ../addons/buy-creds/myCRED-addon-buy-creds.php:1067 ../addons/sell-content/myCRED-addon-sell-content.php:44
 
637
  msgid "Buy Now"
638
  msgstr "Acheter maintenant"
639
 
640
- #: ../addons/buy-creds/myCRED-addon-buy-creds.php:1107
641
  msgid "No users found"
642
  msgstr "Aucun membre n'a été trouvé"
643
 
644
- #: ../addons/buy-creds/myCRED-addon-buy-creds.php:1117
645
  msgid "To"
646
  msgstr "à"
647
 
648
- #: ../addons/buy-creds/myCRED-addon-buy-creds.php:1134
649
  msgid "Select Amount"
650
  msgstr "Sélectionnez le montant"
651
 
652
- #: ../addons/buy-creds/myCRED-addon-buy-creds.php:1158
653
  msgid "min."
654
  msgstr "mini."
655
 
656
- #: ../addons/buy-creds/myCRED-addon-buy-creds.php:1166
657
  msgid "Select Gateway"
658
  msgstr "Sélectionnez le service de paiement"
659
 
660
  #: ../addons/buy-creds/abstracts/mycred-abstract-payment-gateway.php:89
661
- msgid "function myCRED_Payment_Gateway::process() must be over-ridden in a sub-class."
 
 
662
  msgstr ""
663
- "La fonction myCRED_Payment_Gateway::process() doit être suplantée dans une sous-"
664
- "classe."
665
 
666
  #: ../addons/buy-creds/abstracts/mycred-abstract-payment-gateway.php:98
667
  msgid "function myCRED_Payment_Gateway::buy() must be over-ridden in a sub-class."
668
  msgstr ""
669
- "La fonction myCRED_Payment_Gateway::buy() doit &ecirc;tre substitu&eacute;e par "
670
- "une sous-classe."
671
 
672
  #: ../addons/buy-creds/abstracts/mycred-abstract-payment-gateway.php:114
673
  msgid "This Payment Gateway has no settings"
@@ -678,6 +776,7 @@ msgid "Incoming confirmation call detected"
678
  msgstr "Un appel de confirmation entrant a été détecté."
679
 
680
  #: ../addons/buy-creds/abstracts/mycred-abstract-payment-gateway.php:213
 
681
  msgid "Gateway identified itself as \"%s\""
682
  msgstr "Le Service s'identifie lui-même en tant que \"%s\""
683
 
@@ -689,7 +788,8 @@ msgstr "Vérification de l'appelant"
689
  msgid "Test Payment"
690
  msgstr "Paiement de test"
691
 
692
- #: ../addons/buy-creds/abstracts/mycred-abstract-payment-gateway.php:264 ../addons/gateway/carts/mycred-marketpress.php:179
 
693
  msgid "Payment"
694
  msgstr "Paiement"
695
 
@@ -697,11 +797,13 @@ msgstr "Paiement"
697
  msgid "Cancel purchase"
698
  msgstr "Achat annulé"
699
 
700
- #: ../addons/buy-creds/abstracts/mycred-abstract-payment-gateway.php:360 ../includes/mycred-admin.php:364 ../includes/mycred-admin.php:470
 
701
  msgid "required"
702
  msgstr "obligatoire"
703
 
704
- #: ../addons/buy-creds/abstracts/mycred-abstract-payment-gateway.php:361 ../includes/mycred-admin.php:366 ../includes/mycred-admin.php:472
 
705
  msgid "optional"
706
  msgstr "optionnel"
707
 
@@ -742,10 +844,12 @@ msgid "Choose Country"
742
  msgstr "Sélectionnez un pays"
743
 
744
  #: ../addons/buy-creds/abstracts/mycred-abstract-payment-gateway.php:419
 
745
  msgid "%s Purchase"
746
  msgstr "%s Achat"
747
 
748
- #: ../addons/buy-creds/abstracts/mycred-abstract-payment-gateway.php:424 ../addons/gateway/carts/mycred-wpecommerce.php:112
 
749
  msgid "Item"
750
  msgstr "Intitulé"
751
 
@@ -759,16 +863,16 @@ msgstr "Déboguage"
759
 
760
  #: ../addons/buy-creds/abstracts/mycred-abstract-payment-gateway.php:448
761
  msgid ""
762
- "Here you can see information that are collected and sent to this gateway. Debug "
763
- "information is only visible for administrators and are intended for "
764
- "troubleshooting / testing of this gateway. Please disable \"Sandbox Mode\" when "
765
- "you want to take this gateway online."
766
  msgstr ""
767
  "Consultez ici les éléments d'informations qui sont réunis et envoyés à ce "
768
  "Service. Les informations de débogage sont uniquement visibles des "
769
  "administrateurs et destinées à la résolution de problèmes et pour tester ce "
770
- "Service. N'oubliez pas de désactiver le mode \"bac à sable\" si vous avez choisi "
771
- "travailler avec ce service en ligne."
772
 
773
  #: ../addons/buy-creds/abstracts/mycred-abstract-payment-gateway.php:452
774
  msgid "Section"
@@ -791,10 +895,12 @@ msgid "Gateway Response"
791
  msgstr "Réponse du Service"
792
 
793
  #: ../addons/buy-creds/abstracts/mycred-abstract-payment-gateway.php:513
 
794
  msgid "Continue to %s"
795
  msgstr "Continuer vers %s"
796
 
797
- #: ../addons/buy-creds/abstracts/mycred-abstract-payment-gateway.php:514 ../addons/buy-creds/gateways/bitpay.php:240
 
798
  msgid "Click here if you are not automatically redirected"
799
  msgstr "Cliquez ici si vous n'êtes pas automatiquement redirigé"
800
 
@@ -830,57 +936,88 @@ msgstr "Inadéquation de la devise"
830
  msgid "Duplicate transaction"
831
  msgstr "Transaction dupliquée"
832
 
833
- #: ../addons/buy-creds/gateways/bitpay.php:25 ../addons/buy-creds/gateways/netbilling.php:30 ../addons/buy-creds/gateways/paypal-standard.php:25 ../addons/buy-creds/gateways/skrill.php:30
 
 
834
  msgid "Purchase of myCRED %plural%"
835
  msgstr "Achat de %_plural% myCRED "
836
 
837
- #: ../addons/buy-creds/gateways/bitpay.php:68 ../addons/buy-creds/gateways/netbilling.php:102 ../addons/buy-creds/gateways/paypal-standard.php:162 ../addons/buy-creds/gateways/skrill.php:134
 
 
838
  msgid "Sales Data is Valid"
839
  msgstr "Les données de la transaction sont valides"
840
 
841
- #: ../addons/buy-creds/gateways/bitpay.php:72 ../addons/buy-creds/gateways/netbilling.php:106 ../addons/buy-creds/gateways/paypal-standard.php:166 ../addons/buy-creds/gateways/skrill.php:138
 
 
842
  msgid "Failed to validate sale"
843
  msgstr "Echec lors de la validation de la transaction"
844
 
845
- #: ../addons/buy-creds/gateways/bitpay.php:78 ../addons/buy-creds/gateways/netbilling.php:112 ../addons/buy-creds/gateways/paypal-standard.php:172 ../addons/buy-creds/gateways/skrill.php:144 ../addons/buy-creds/gateways/zombaio.php:166
 
 
 
846
  msgid "Failed to verify caller"
847
  msgstr "Echec lors de la vérification de l'appelant"
848
 
849
- #: ../addons/buy-creds/gateways/bitpay.php:86 ../addons/buy-creds/gateways/netbilling.php:120 ../addons/buy-creds/gateways/paypal-standard.php:180 ../addons/buy-creds/gateways/skrill.php:152 ../addons/buy-creds/gateways/zombaio.php:171
 
 
 
 
850
  msgid "Attempting to credit %s to users account"
851
  msgstr "Tentative pour créditer %s sur le compte de l'utilisateur"
852
 
853
- #: ../addons/buy-creds/gateways/bitpay.php:97 ../addons/buy-creds/gateways/netbilling.php:132 ../addons/buy-creds/gateways/paypal-standard.php:193 ../addons/buy-creds/gateways/skrill.php:164 ../addons/buy-creds/gateways/zombaio.php:207
 
 
 
 
854
  msgid "%s was successfully credited to users account"
855
  msgstr "%s ont été crédités avec succés sur le compte de l'utilisateur"
856
 
857
- #: ../addons/buy-creds/gateways/bitpay.php:104 ../addons/buy-creds/gateways/netbilling.php:139 ../addons/buy-creds/gateways/paypal-standard.php:200 ../addons/buy-creds/gateways/skrill.php:171 ../addons/buy-creds/gateways/zombaio.php:214
 
 
 
858
  msgid "Failed to credit the users account"
859
  msgstr "Echec de la créditation du compte de l'utilisateur"
860
 
861
- #: ../addons/buy-creds/gateways/bitpay.php:107 ../addons/buy-creds/gateways/netbilling.php:142 ../addons/buy-creds/gateways/paypal-standard.php:203 ../addons/buy-creds/gateways/skrill.php:174
 
 
862
  msgid "Purchase not paid"
863
  msgstr "L'achat n'a pas été payé"
864
 
865
- #: ../addons/buy-creds/gateways/bitpay.php:111 ../addons/buy-creds/gateways/netbilling.php:146 ../addons/buy-creds/gateways/paypal-standard.php:207 ../addons/buy-creds/gateways/skrill.php:178 ../addons/buy-creds/gateways/zombaio.php:218
 
 
 
866
  msgid "Hanging up on caller"
867
  msgstr "Appel terminé"
868
 
869
- #: ../addons/buy-creds/gateways/bitpay.php:175 ../addons/buy-creds/gateways/netbilling.php:173 ../addons/buy-creds/gateways/paypal-standard.php:237 ../addons/buy-creds/gateways/skrill.php:208 ../addons/buy-creds/gateways/zombaio.php:241
 
 
 
870
  msgid "Please setup this gateway before attempting to make a purchase!"
871
  msgstr ""
872
  "Veuillez d'abord paramètrer ce service de paiement avant d'essayer de "
873
  "finaliser un achat !"
874
 
875
- #: ../addons/buy-creds/gateways/bitpay.php:226 ../addons/buy-creds/gateways/bitpay.php:235 ../addons/buy-creds/gateways/netbilling.php:224 ../addons/buy-creds/gateways/paypal-standard.php:295 ../addons/buy-creds/gateways/skrill.php:301 ../addons/buy-creds/gateways/zombaio.php:271
 
 
 
876
  msgid "Processing payment &hellip;"
877
  msgstr "Procédure de paiement en cours &hellip;"
878
 
879
  #: ../addons/buy-creds/gateways/bitpay.php:228
880
  msgid "Could not create a BitPay Invoice. Please contact the site administrator!"
881
  msgstr ""
882
- "Impossible de créer une facture BitPay. Veuillez contacter l'administrateur du "
883
- "site."
884
 
885
  #: ../addons/buy-creds/gateways/bitpay.php:229
886
  msgid "Bitpay returned the following error message:"
@@ -899,7 +1036,9 @@ msgstr ""
899
  msgid "API Key"
900
  msgstr "Clé API"
901
 
902
- #: ../addons/buy-creds/gateways/bitpay.php:269 ../addons/buy-creds/gateways/paypal-standard.php:312 ../addons/buy-creds/gateways/skrill.php:319
 
 
903
  msgid "Currency"
904
  msgstr "Devise"
905
 
@@ -907,19 +1046,28 @@ msgstr "Devise"
907
  msgid "Currency Code"
908
  msgstr "Code devise"
909
 
910
- #: ../addons/buy-creds/gateways/bitpay.php:276 ../addons/buy-creds/gateways/netbilling.php:260 ../addons/buy-creds/gateways/paypal-standard.php:326 ../addons/buy-creds/gateways/skrill.php:339
 
 
911
  msgid "Item Name"
912
  msgstr "Nom de l'item"
913
 
914
- #: ../addons/buy-creds/gateways/bitpay.php:280 ../addons/buy-creds/gateways/netbilling.php:264 ../addons/buy-creds/gateways/paypal-standard.php:330 ../addons/buy-creds/gateways/skrill.php:343
 
 
915
  msgid "Description of the item being purchased by the user."
916
  msgstr "Description de l'item acquis par l'utilisateur"
917
 
918
- #: ../addons/buy-creds/gateways/bitpay.php:283 ../addons/buy-creds/gateways/netbilling.php:267 ../addons/buy-creds/gateways/paypal-standard.php:333 ../addons/buy-creds/gateways/skrill.php:346
 
 
 
919
  msgid "%plural% Exchange Rate"
920
  msgstr "Taux de change des %_plural%"
921
 
922
- #: ../addons/buy-creds/gateways/bitpay.php:286 ../addons/buy-creds/gateways/paypal-standard.php:336 ../addons/buy-creds/gateways/skrill.php:349
 
 
923
  msgid "Select currency"
924
  msgstr "S&eacute;lectionnez une devise"
925
 
@@ -943,19 +1091,24 @@ msgstr "Basse"
943
  msgid "Full Notifications"
944
  msgstr "Messages complets"
945
 
946
- #: ../addons/buy-creds/gateways/bitpay.php:318 ../includes/mycred-network.php:196 ../includes/mycred-network.php:210
 
947
  msgid "No"
948
  msgstr "non"
949
 
950
- #: ../addons/buy-creds/gateways/bitpay.php:319 ../includes/mycred-network.php:192 ../includes/mycred-network.php:206
 
951
  msgid "Yes"
952
  msgstr "oui"
953
 
954
- #: ../addons/buy-creds/gateways/netbilling.php:57 ../addons/buy-creds/gateways/skrill.php:89 ../addons/buy-creds/gateways/zombaio.php:103
 
955
  msgid "Invalid Call"
956
  msgstr "Appel invalide"
957
 
958
- #: ../addons/buy-creds/gateways/netbilling.php:59 ../addons/buy-creds/gateways/skrill.php:91 ../addons/buy-creds/gateways/zombaio.php:105
 
 
959
  msgid "Caller verified as \"%s\""
960
  msgstr "Appelant identifié: %s"
961
 
@@ -982,13 +1135,13 @@ msgstr "Adresse de retour CGI"
982
  #: ../addons/buy-creds/gateways/netbilling.php:277
983
  msgid ""
984
  "For this gateway to work, you must login to your NETbilling account and edit "
985
- "your site. Under \"Default payment form settings\" make sure the Postback CGI URL "
986
- "is set to the above address and \"Return method\" is set to POST."
987
  msgstr ""
988
  "Vous que ce service fonctionne, vous devez vous connecter à votre compte "
989
  "Netbilling et modifier les paramètres de votre site. A la rubrique \"Default "
990
- "payment form settings\", indiquez l'URL ci-dessous dans la case Postback CGI URL "
991
- "et assurez-vous que la case \"Return method\" est bien sur POST."
992
 
993
  #: ../addons/buy-creds/gateways/netbilling.php:312
994
  msgid "Incorrect Credit Card number"
@@ -1019,10 +1172,12 @@ msgid "Connection established"
1019
  msgstr "Contact établi"
1020
 
1021
  #: ../addons/buy-creds/gateways/paypal-standard.php:92
 
1022
  msgid "Attempt: %d failed. Error: %s : %s"
1023
  msgstr "Tentative: %d échec. Erreur: %s : %s"
1024
 
1025
  #: ../addons/buy-creds/gateways/paypal-standard.php:103
 
1026
  msgid "Secondary systems failing. Final note: %s : %s"
1027
  msgstr "Echec des systèmes secondaires. Note finale: %s : %s"
1028
 
@@ -1034,19 +1189,24 @@ msgstr "Appel vérifié"
1034
  msgid "Call rejected"
1035
  msgstr "Appel rejeté"
1036
 
1037
- #: ../addons/buy-creds/gateways/paypal-standard.php:223 ../addons/buy-creds/gateways/skrill.php:194
 
1038
  msgid "Success"
1039
  msgstr "Succès !"
1040
 
1041
- #: ../addons/buy-creds/gateways/paypal-standard.php:224 ../addons/buy-creds/gateways/skrill.php:195
 
1042
  msgid "Thank you for your purchase"
1043
  msgstr "Merci pour votre achat"
1044
 
1045
- #: ../addons/buy-creds/gateways/paypal-standard.php:290 ../addons/buy-creds/gateways/skrill.php:247
 
1046
  msgid "Return to "
1047
  msgstr "Retour vers"
1048
 
1049
- #: ../addons/buy-creds/gateways/paypal-standard.php:317 ../addons/buy-creds/gateways/skrill.php:376 ../addons/gateway/event-booking/mycred-eventespresso3.php:455
 
 
1050
  msgid "Important!"
1051
  msgstr "Important !"
1052
 
@@ -1056,11 +1216,12 @@ msgid ""
1056
  "transactions will not be approved until you login to your PayPal account and "
1057
  "Accept each transaction!"
1058
  msgstr ""
1059
- "Assurez-vous de bien sélectionner la devise autorisée sur votre compte PayPal, "
1060
- "sinon les transactions ne seront pas validées. En effet, les achats effectués "
1061
- "avec une devise non reconnue par votre compte ne peuvent être imputés à "
1062
- "l'acheteur. En cas d'erreur de votre part, vous serez obligé de vous connecter "
1063
- "à votre compte PayPal pour valider chaque transaction séparément !"
 
1064
 
1065
  #: ../addons/buy-creds/gateways/paypal-standard.php:320
1066
  msgid "Account Email"
@@ -1073,15 +1234,15 @@ msgstr "Adresse IPN"
1073
  #: ../addons/buy-creds/gateways/paypal-standard.php:343
1074
  msgid ""
1075
  "For this gateway to work, you must login to your PayPal account and under "
1076
- "\"Profile\" > \"Selling Tools\" enable \"Instant Payment Notifications\". Make sure "
1077
- "the \"Notification URL\" is set to the above address and that you have selected "
1078
- "\"Receive IPN messages (Enabled)\"."
1079
  msgstr ""
1080
- "Pour assurer le bon fonctionnement de ce service, vous devez vous connecter à "
1081
- "votre compte PayPal et dans \"Profil\" > \"Outils de ventes\" activer l'option "
1082
- "\"Notifications de paiement instantané\". Assurez-vous également que \"l'URL de "
1083
- "Notification \" contient bien l'adresse ci-dessus et que vous avez sélectionné "
1084
- "\"Recevoir les messages IPN (activé)\"."
1085
 
1086
  #: ../addons/buy-creds/gateways/skrill.php:284
1087
  msgid "Product:"
@@ -1123,29 +1284,34 @@ msgstr ""
1123
  msgid "Checkout Page"
1124
  msgstr "Page de contrôle"
1125
 
1126
- #: ../addons/buy-creds/gateways/skrill.php:361 ../addons/gateway/carts/mycred-woocommerce.php:86 ../addons/ranks/myCRED-addon-ranks.php:767 ../addons/transfer/myCRED-addon-transfer.php:637 ../includes/mycred-widgets.php:197 ../includes/mycred-widgets.php:395 ../includes/mycred-widgets.php:587 ../modules/mycred-module-hooks.php:2302
 
 
 
 
1127
  msgid "Title"
1128
  msgstr "Titre"
1129
 
1130
  #: ../addons/buy-creds/gateways/skrill.php:363
1131
  msgid "If left empty, your account email is used as title on the Skill Payment Page."
1132
  msgstr ""
1133
- "Si vous laissez vide, c'est votre mail de compte qui sera utilisé comme titre "
1134
- "de la page de paiement de Skrill"
1135
 
1136
- #: ../addons/buy-creds/gateways/skrill.php:366 ../addons/buy-creds/gateways/zombaio.php:306
 
1137
  msgid "Logo URL"
1138
  msgstr "URL du logo"
1139
 
1140
  #: ../addons/buy-creds/gateways/skrill.php:368
1141
  msgid ""
1142
  "The URL to the image you want to use on the top of the gateway. For best "
1143
- "integration results we recommend you use logos with dimensions up to 200px in "
1144
- "width and 50px in height."
1145
  msgstr ""
1146
- "L'url vers l'image à afficher sur l'interface du service de paiement. Pour une "
1147
- "intégration optimale, nous vous recommandons d'utiliser un logo de 200 par 50 "
1148
- "pixels."
1149
 
1150
  #: ../addons/buy-creds/gateways/skrill.php:371
1151
  msgid "Confirmation Note"
@@ -1153,32 +1319,32 @@ msgstr "Message de confirmation"
1153
 
1154
  #: ../addons/buy-creds/gateways/skrill.php:373
1155
  msgid ""
1156
- "Optional text to show user once a transaction has been successfully completed. "
1157
- "This text is shown by Skrill."
1158
  msgstr ""
1159
- "Texte additionnel en option qui s'affichera une fois une transaction complétée "
1160
- "avec succès. Ce texte est affiché par Skrill."
1161
 
1162
  #: ../addons/buy-creds/gateways/skrill.php:377
1163
  msgid ""
1164
- "By default all Skrill Merchant account accept payments via Bank Transfers. When "
1165
- "a user selects this option, no %_plural% are awarded! You will need to manually "
1166
- "award these once the bank transfer is completed."
1167
  msgstr ""
1168
- "Les comptes Skrill Merchant acceptent les paiements par virements bancaires par "
1169
- "défaut. Quand un utilisateur sélectionne cette option, les %_plural% ne sont "
1170
- "pas récompensé ! Vous devrez donc le faire manuellement une fois le transfert "
1171
- "de banque complété et terminé."
1172
 
1173
  #: ../addons/buy-creds/gateways/skrill.php:378
1174
  msgid ""
1175
  "By default purchases made using Skrill will result in users having to signup "
1176
- "for a Skrill account (if they do not have one already). You can contact Skrill "
1177
- "Merchant Services and request to disable this feature."
1178
  msgstr ""
1179
  "Par défaut, tout achat effectué par l'intermédiaire de Skrill nécessite "
1180
- "d'ouvrir un compte Skrill de la part de l'acheteur (s'il n'en a pas déjà un). "
1181
- "Vous pouvez néanmoins contacter Skrill et leur demander de désactiver ce "
1182
  "service."
1183
 
1184
  #: ../addons/buy-creds/gateways/zombaio.php:154
@@ -1225,11 +1391,15 @@ msgstr ""
1225
  "Pour faire fonctionner ce service, veuillez d'abord vous connecter à ZOA et "
1226
  "indiquez l'adresse ci-dessus comme URL de retour avant de valider."
1227
 
1228
- #: ../addons/coupons/myCRED-addon-coupons.php:86 ../addons/coupons/myCRED-addon-coupons.php:92 ../addons/coupons/myCRED-addon-coupons.php:438 ../includes/mycred-overview.php:188 ../includes/mycred-overview.php:195 ../modules/mycred-module-addons.php:168
 
 
 
1229
  msgid "Coupons"
1230
  msgstr "Promotions"
1231
 
1232
- #: ../addons/coupons/myCRED-addon-coupons.php:87 ../addons/coupons/includes/mycred-coupon-shortcodes.php:69
 
1233
  msgid "Coupon"
1234
  msgstr "Promotion"
1235
 
@@ -1261,11 +1431,16 @@ msgstr "Aucune promo trouvée"
1261
  msgid "No coupons found in Trash"
1262
  msgstr "Aucune promo dans la corbeille"
1263
 
1264
- #: ../addons/coupons/myCRED-addon-coupons.php:98 ../addons/email-notices/myCRED-addon-email-notices.php:148 ../addons/email-notices/myCRED-addon-email-notices.php:154 ../addons/email-notices/myCRED-addon-email-notices.php:160 ../addons/email-notices/myCRED-addon-email-notices.php:258 ../modules/mycred-module-addons.php:179
 
 
 
 
1265
  msgid "Email Notices"
1266
  msgstr "Messagerie"
1267
 
1268
- #: ../addons/coupons/myCRED-addon-coupons.php:119 ../addons/coupons/myCRED-addon-coupons.php:122
 
1269
  msgid "Coupon updated."
1270
  msgstr "Promo mise à jour."
1271
 
@@ -1289,7 +1464,8 @@ msgstr "Code Promo Unique"
1289
  msgid "Coupon Code"
1290
  msgstr "Code Promo"
1291
 
1292
- #: ../addons/coupons/myCRED-addon-coupons.php:157 ../addons/coupons/myCRED-addon-coupons.php:309
 
1293
  msgid "Value"
1294
  msgstr "Valeur"
1295
 
@@ -1297,7 +1473,9 @@ msgstr "Valeur"
1297
  msgid "Usage"
1298
  msgstr "Utilisation"
1299
 
1300
- #: ../addons/coupons/myCRED-addon-coupons.php:159 ../addons/transfer/myCRED-addon-transfer.php:243 ../modules/mycred-module-hooks.php:1106 ../modules/mycred-module-hooks.php:1396
 
 
1301
  msgid "Limits"
1302
  msgstr "Règles de limitation"
1303
 
@@ -1309,7 +1487,8 @@ msgstr "Date d'expiration"
1309
  msgid "not yet used"
1310
  msgstr "pas encore utilisé"
1311
 
1312
- #: ../addons/coupons/myCRED-addon-coupons.php:198 ../modules/mycred-module-hooks.php:1834
 
1313
  msgid "Total"
1314
  msgstr "Total"
1315
 
@@ -1326,6 +1505,7 @@ msgid "Expired"
1326
  msgstr "Expiré"
1327
 
1328
  #: ../addons/coupons/myCRED-addon-coupons.php:213
 
1329
  msgid "In %s time"
1330
  msgstr "En %s fois"
1331
 
@@ -1365,11 +1545,11 @@ msgstr "Maximum global"
1365
 
1366
  #: ../addons/coupons/myCRED-addon-coupons.php:356
1367
  msgid ""
1368
- "The maximum number of times this coupon can be used. Note that the coupon will "
1369
- "be automatically trashed once this maximum is reached!"
1370
  msgstr ""
1371
- "Le nombre de fois que ce bon peut être utilisé. Notez que le bon sera mis à la "
1372
- "corbeille une fois que ce nombre est atteint."
1373
 
1374
  #: ../addons/coupons/myCRED-addon-coupons.php:360
1375
  msgid "User Maximum"
@@ -1381,8 +1561,8 @@ msgstr "Le nombre de fois qu'un utilisateur peut utiliser ce bon."
1381
 
1382
  #: ../addons/coupons/myCRED-addon-coupons.php:395
1383
  msgid ""
1384
- "Optional minimum balance a user must have in order to use this coupon. Use zero "
1385
- "to disable."
1386
  msgstr ""
1387
  "Le solde minimum d'un utilisateur pour utiliser ce bon. Indiquez zéro pour "
1388
  "désactiver l'option."
@@ -1393,13 +1573,14 @@ msgstr "Solde maximum"
1393
 
1394
  #: ../addons/coupons/myCRED-addon-coupons.php:402
1395
  msgid ""
1396
- "Optional maximum balance a user can have in order to use this coupon. Use zero "
1397
- "to disable."
1398
  msgstr ""
1399
  "Le solde maximum d'un utilisateur pour utiliser ce bon. Indiquez zéro pour "
1400
  "désactiver l'option."
1401
 
1402
  #: ../addons/coupons/myCRED-addon-coupons.php:444
 
1403
  msgid ""
1404
  "Log entry for successful coupon redemption. Use %coupon% to show the coupon "
1405
  "code."
@@ -1413,7 +1594,9 @@ msgstr "Message de coupon invalide"
1413
 
1414
  #: ../addons/coupons/myCRED-addon-coupons.php:451
1415
  msgid "Message to show when users try to use a coupon that does not exists."
1416
- msgstr "Le message à afficher lorsqu'un utilisateur tente d'utiliser un bon inexistant."
 
 
1417
 
1418
  #: ../addons/coupons/myCRED-addon-coupons.php:454
1419
  msgid "Expired Coupon Message"
@@ -1439,8 +1622,8 @@ msgstr "Message de solde minimum"
1439
 
1440
  #: ../addons/coupons/myCRED-addon-coupons.php:472
1441
  msgid ""
1442
- "Message to show when a user does not meet the minimum balance requirement. (if "
1443
- "used)"
1444
  msgstr ""
1445
  "Le message à afficher lorsqu'un utilisateur ne possède pas le solde minimum "
1446
  "requis. (si activé)"
@@ -1451,8 +1634,8 @@ msgstr "Message de solde maximum"
1451
 
1452
  #: ../addons/coupons/myCRED-addon-coupons.php:479
1453
  msgid ""
1454
- "Message to show when a user does not meet the maximum balance requirement. (if "
1455
- "used)"
1456
  msgstr ""
1457
  "Le message à afficher lorsqu'un utilisateur ne possède pas le solde maximum "
1458
  "requis. (si activé)"
@@ -1475,111 +1658,115 @@ msgstr "Rachat de bon"
1475
  msgid "Apply Coupon"
1476
  msgstr "Appliquer le bon"
1477
 
1478
- #: ../addons/email-notices/myCRED-addon-email-notices.php:149
 
1479
  msgid "Email Notice"
1480
  msgstr "Message à envoyer"
1481
 
1482
- #: ../addons/email-notices/myCRED-addon-email-notices.php:150 ../addons/ranks/myCRED-addon-ranks.php:248
 
1483
  msgid "Add New"
1484
  msgstr "Ajouter"
1485
 
1486
- #: ../addons/email-notices/myCRED-addon-email-notices.php:151
1487
  msgid "Add New Notice"
1488
  msgstr "Ajouter un message"
1489
 
1490
- #: ../addons/email-notices/myCRED-addon-email-notices.php:152
1491
  msgid "Edit Notice"
1492
  msgstr "Modifier le message"
1493
 
1494
- #: ../addons/email-notices/myCRED-addon-email-notices.php:153
1495
  msgid "New Notice"
1496
  msgstr "Nouveau message"
1497
 
1498
- #: ../addons/email-notices/myCRED-addon-email-notices.php:155
1499
  msgid "View Notice"
1500
  msgstr "Afficher le message"
1501
 
1502
- #: ../addons/email-notices/myCRED-addon-email-notices.php:156
1503
  msgid "Search Email Notices"
1504
  msgstr "Rechercher un message"
1505
 
1506
- #: ../addons/email-notices/myCRED-addon-email-notices.php:157
1507
  msgid "No email notices found"
1508
  msgstr "Aucun message trouvé"
1509
 
1510
- #: ../addons/email-notices/myCRED-addon-email-notices.php:158
1511
  msgid "No email notices found in Trash"
1512
  msgstr "Il n'y a pas de message dans la corbeille"
1513
 
1514
- #: ../addons/email-notices/myCRED-addon-email-notices.php:181 ../addons/gateway/carts/mycred-wpecommerce.php:337 ../includes/mycred-functions.php:589
 
 
1515
  msgid "General"
1516
  msgstr "Général"
1517
 
1518
- #: ../addons/email-notices/myCRED-addon-email-notices.php:182
1519
  msgid "users balance changes"
1520
  msgstr "le solde a changé"
1521
 
1522
- #: ../addons/email-notices/myCRED-addon-email-notices.php:183
1523
  msgid "user gains %_plural%"
1524
  msgstr "gains de %_plural%"
1525
 
1526
- #: ../addons/email-notices/myCRED-addon-email-notices.php:184
1527
  msgid "user lose %_plural%"
1528
  msgstr "perte de %_plural%"
1529
 
1530
- #: ../addons/email-notices/myCRED-addon-email-notices.php:185
1531
  msgid "users balance reaches zero"
1532
  msgstr "le solde est à zéro"
1533
 
1534
- #: ../addons/email-notices/myCRED-addon-email-notices.php:186
1535
  msgid "users balance goes minus"
1536
  msgstr "le solde est négatif"
1537
 
1538
- #: ../addons/email-notices/myCRED-addon-email-notices.php:192
1539
  msgid "Sell Content Add-on"
1540
  msgstr "Module de vente de contenu"
1541
 
1542
- #: ../addons/email-notices/myCRED-addon-email-notices.php:193
1543
  msgid "user buys content"
1544
  msgstr "l'utilisateur a acheté du contenu"
1545
 
1546
- #: ../addons/email-notices/myCRED-addon-email-notices.php:194
1547
  msgid "authors content gets sold"
1548
  msgstr "le contenu de cet auteur a été vendu"
1549
 
1550
- #: ../addons/email-notices/myCRED-addon-email-notices.php:201
1551
  msgid "buyCREDs Add-on"
1552
  msgstr "Module achatCRED"
1553
 
1554
- #: ../addons/email-notices/myCRED-addon-email-notices.php:202
1555
  msgid "user buys %_plural%"
1556
  msgstr "l'utilisateur a acheté des %_plural%"
1557
 
1558
- #: ../addons/email-notices/myCRED-addon-email-notices.php:209
1559
  msgid "Transfer Add-on"
1560
  msgstr "Module de transfert"
1561
 
1562
- #: ../addons/email-notices/myCRED-addon-email-notices.php:210
1563
  msgid "user sends %_plural%"
1564
  msgstr "l'utilisateur a envoyé des %_plural%"
1565
 
1566
- #: ../addons/email-notices/myCRED-addon-email-notices.php:211
1567
  msgid "user receives %_plural%"
1568
  msgstr "l'utilisateur a reçu des %_plural%"
1569
 
1570
- #: ../addons/email-notices/myCRED-addon-email-notices.php:218
1571
  msgid "Ranks Add-on"
1572
  msgstr "Application de classement"
1573
 
1574
- #: ../addons/email-notices/myCRED-addon-email-notices.php:219
1575
  msgid "user is demoted"
1576
  msgstr "utilisateur rétrogradé"
1577
 
1578
- #: ../addons/email-notices/myCRED-addon-email-notices.php:220
1579
  msgid "user is promoted"
1580
  msgstr "utilisateur promu"
1581
 
1582
- #: ../addons/email-notices/myCRED-addon-email-notices.php:260
1583
  msgid ""
1584
  "Settings that apply to all email notices and can not be overridden for "
1585
  "individual emails."
@@ -1587,39 +1774,81 @@ msgstr ""
1587
  "Ces paramètres s'appliquent à toutes les envois par mail et ne peuvent être "
1588
  "appliqués individuellement."
1589
 
1590
- #: ../addons/email-notices/myCRED-addon-email-notices.php:261
1591
  msgid "Email Format"
1592
  msgstr "Format des mails"
1593
 
1594
- #: ../addons/email-notices/myCRED-addon-email-notices.php:265
1595
  msgid "Plain text emails only."
1596
  msgstr "Format texte uniquement"
1597
 
1598
- #: ../addons/email-notices/myCRED-addon-email-notices.php:269
1599
  msgid "HTML or Plain text emails."
1600
  msgstr "Format texte ou HTML"
1601
 
1602
- #: ../addons/email-notices/myCRED-addon-email-notices.php:272
1603
  msgid "Filters"
1604
  msgstr "Filtres de recherche"
1605
 
1606
- #: ../addons/email-notices/myCRED-addon-email-notices.php:276
1607
  msgid ""
1608
- "Allow WordPress and Third Party Plugins to filter the email subject before an "
1609
- "email is sent."
1610
  msgstr ""
1611
- "Autoriser WordPress et les plugins tiers à filtrer le sujet avant l'envoi d'un "
1612
- "mail."
1613
 
1614
- #: ../addons/email-notices/myCRED-addon-email-notices.php:280
1615
  msgid ""
1616
- "Allow WordPress and Third Party Plugins to filter the email content before an "
1617
- "email is sent."
1618
  msgstr ""
1619
  "Autoriser WordPress et les plugins tiers à filtrer le contenu avant l'envoi "
1620
  "d'un mail."
1621
 
1622
- #: ../addons/email-notices/myCRED-addon-email-notices.php:283
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1623
  msgid ""
1624
  "Default email settings. These settings can be individually overridden when "
1625
  "editing emails."
@@ -1627,189 +1856,237 @@ msgstr ""
1627
  "Paramètres par défaut des mails. Ils pourront être modifiés individuellement "
1628
  "lors de la modification d'un mail."
1629
 
1630
- #: ../addons/email-notices/myCRED-addon-email-notices.php:284 ../addons/email-notices/myCRED-addon-email-notices.php:659
 
1631
  msgid "Email Settings"
1632
  msgstr "Configuration des mails"
1633
 
1634
- #: ../addons/email-notices/myCRED-addon-email-notices.php:287 ../addons/email-notices/myCRED-addon-email-notices.php:778
 
1635
  msgid "Senders Name:"
1636
  msgstr "Expéditeur:"
1637
 
1638
- #: ../addons/email-notices/myCRED-addon-email-notices.php:291 ../addons/email-notices/myCRED-addon-email-notices.php:780
 
1639
  msgid "Senders Email:"
1640
  msgstr "Email de l'expéditeur"
1641
 
1642
- #: ../addons/email-notices/myCRED-addon-email-notices.php:295
1643
  msgid "Reply-To:"
1644
  msgstr "Adresse de réponse:"
1645
 
1646
- #: ../addons/email-notices/myCRED-addon-email-notices.php:299
1647
  msgid "Default Email Content"
1648
  msgstr "Contenu par défaut"
1649
 
1650
- #: ../addons/email-notices/myCRED-addon-email-notices.php:303
1651
  msgid "Default email content."
1652
  msgstr "contenu par défaut"
1653
 
1654
- #: ../addons/email-notices/myCRED-addon-email-notices.php:306
1655
  msgid "Default Email Styling"
1656
  msgstr "Style par défaut"
1657
 
1658
- #: ../addons/email-notices/myCRED-addon-email-notices.php:310
1659
  msgid "Ignored if HTML is not allowed in emails."
1660
  msgstr "Sera ignoré si HTML désactivé pour les mails"
1661
 
1662
- #: ../addons/email-notices/myCRED-addon-email-notices.php:593 ../addons/email-notices/myCRED-addon-email-notices.php:708
 
1663
  msgid "Email Subject"
1664
  msgstr "Sujet du mail"
1665
 
1666
- #: ../addons/email-notices/myCRED-addon-email-notices.php:594
1667
  msgid "Status"
1668
  msgstr "Statut"
1669
 
1670
- #: ../addons/email-notices/myCRED-addon-email-notices.php:614
1671
  msgid "Not Active"
1672
  msgstr "Inactif"
1673
 
1674
- #: ../addons/email-notices/myCRED-addon-email-notices.php:616
 
1675
  msgid "Scheduled:<br /><strong>%1$s</strong>"
1676
  msgstr "Pr&eacute;vu pour le:<br /><strong>%1$s</strong>"
1677
 
1678
- #: ../addons/email-notices/myCRED-addon-email-notices.php:620
1679
  msgid "Active"
1680
  msgstr "Actif"
1681
 
1682
- #: ../addons/email-notices/myCRED-addon-email-notices.php:622
 
1683
  msgid "Active - Last run:<br /><strong>%1$s</strong>"
1684
  msgstr "Actif - derni&egave;re utilisation:<br /><strong>%1$s</strong>"
1685
 
1686
- #: ../addons/email-notices/myCRED-addon-email-notices.php:632
1687
  msgid "Email is sent when"
1688
  msgstr "Le mail sera envoyé quand"
1689
 
1690
- #: ../addons/email-notices/myCRED-addon-email-notices.php:634
1691
  msgid "Missing instance for this notice!"
1692
  msgstr "Ce message n'est pas instancié !"
1693
 
1694
- #: ../addons/email-notices/myCRED-addon-email-notices.php:643 ../addons/email-notices/myCRED-addon-email-notices.php:645 ../addons/email-notices/myCRED-addon-email-notices.php:647
 
 
1695
  msgid "Sent To"
1696
  msgstr "Envoyer à"
1697
 
1698
- #: ../addons/email-notices/myCRED-addon-email-notices.php:645 ../addons/email-notices/myCRED-addon-email-notices.php:773
 
1699
  msgid "Administrator"
1700
  msgstr "Administrateur"
1701
 
1702
- #: ../addons/email-notices/myCRED-addon-email-notices.php:647
1703
  msgid "Both Administrator and User"
1704
  msgstr "A l'administrateur et à l'utilisateur"
1705
 
1706
- #: ../addons/email-notices/myCRED-addon-email-notices.php:668
1707
  msgid "Available Template Tags"
1708
  msgstr "Mots-clés utilisables ici"
1709
 
1710
- #: ../addons/email-notices/myCRED-addon-email-notices.php:679
1711
  msgid "Email Header"
1712
  msgstr "En-tête du mail"
1713
 
1714
- #: ../addons/email-notices/myCRED-addon-email-notices.php:739
1715
  msgid "Send this email notice when..."
1716
  msgstr "Envoyer ce mail quand...."
1717
 
1718
- #: ../addons/email-notices/myCRED-addon-email-notices.php:770
1719
  msgid "Recipient:"
1720
  msgstr "Destinataire:"
1721
 
1722
- #: ../addons/email-notices/myCRED-addon-email-notices.php:774
1723
  msgid "Both"
1724
  msgstr "Les deux"
1725
 
1726
- #: ../addons/email-notices/myCRED-addon-email-notices.php:782
 
 
 
 
 
 
 
1727
  msgid "Reply-To Email:"
1728
  msgstr "Adresse de réponse"
1729
 
1730
- #: ../addons/email-notices/myCRED-addon-email-notices.php:788
1731
  msgid "Save"
1732
  msgstr "Enregistrer"
1733
 
1734
- #: ../addons/email-notices/myCRED-addon-email-notices.php:800
1735
  msgid "CSS Styling"
1736
  msgstr "Règles de style"
1737
 
1738
- #: ../addons/email-notices/myCRED-addon-email-notices.php:816
1739
  msgid "Site Related"
1740
  msgstr "A propos du site"
1741
 
1742
- #: ../addons/email-notices/myCRED-addon-email-notices.php:817
1743
  msgid "Your websites title"
1744
  msgstr "Titre de votre site"
1745
 
1746
- #: ../addons/email-notices/myCRED-addon-email-notices.php:818
1747
  msgid "Your websites address"
1748
  msgstr "Adresse de votre site"
1749
 
1750
- #: ../addons/email-notices/myCRED-addon-email-notices.php:819
1751
  msgid "Your websites tagline (description)"
1752
  msgstr "Description de votre site"
1753
 
1754
- #: ../addons/email-notices/myCRED-addon-email-notices.php:820
1755
  msgid "Your websites admin email"
1756
  msgstr "Email de l'administrateur du site"
1757
 
1758
- #: ../addons/email-notices/myCRED-addon-email-notices.php:821
1759
  msgid "Total number of blog members"
1760
  msgstr "Total des membres de votre blog"
1761
 
1762
- #: ../addons/email-notices/myCRED-addon-email-notices.php:897 ../addons/email-notices/myCRED-addon-email-notices.php:900
 
 
1763
  msgid "Email Notice Updated. View <a href=\"%1$s\">All Notices</a>."
1764
  msgstr "Message mis à jour. Afficher <a href=\"%1$s\">tous les messages</a>."
1765
 
1766
- #: ../addons/email-notices/myCRED-addon-email-notices.php:902
1767
  msgid "Email Notice Activated"
1768
  msgstr "Message activé"
1769
 
1770
- #: ../addons/email-notices/myCRED-addon-email-notices.php:903
1771
  msgid "Email Notice Saved"
1772
  msgstr "Message enregistré"
1773
 
1774
- #: ../addons/email-notices/myCRED-addon-email-notices.php:904
 
1775
  msgid "Email Notice Submitted for approval. View <a href=\"%1$s\">All Notices</a>."
1776
  msgstr ""
1777
  "Le message est en attente de validation. Afficher <a href=\"%1$s\">tous les "
1778
  "messages</a>."
1779
 
1780
- #: ../addons/email-notices/myCRED-addon-email-notices.php:906
 
1781
  msgid "Email Notice scheduled for: <strong>%1$s</strong>."
1782
  msgstr "Mail pr&eacute;vu pour le: <strong>%1$s</strong>."
1783
 
1784
- #: ../addons/email-notices/myCRED-addon-email-notices.php:925
1785
  msgid ""
1786
- "Once a notice is \"published\" it becomes active! Select \"Save Draft\" if you are "
1787
- "not yet ready to use this email notice!"
1788
  msgstr ""
1789
- "<strong>ATTENTION</strong><br/>Une fois que le message est publié il est actif !"
1790
- " Sélectionnez \"Enregistrer brouillon\" si vous n'êtes pas prêt à l'utiliser."
 
1791
 
1792
- #: ../addons/email-notices/myCRED-addon-email-notices.php:927
 
1793
  msgid "This notice will become active on:<br /><strong>%1$s</strong>"
1794
  msgstr "Ce message sera activ&eacute; le:<br /><strong>%1$s</strong>"
1795
 
1796
- #: ../addons/email-notices/myCRED-addon-email-notices.php:929
1797
  msgid "This email notice is active."
1798
  msgstr "Ce message est activé."
1799
 
1800
- #: ../addons/gateway/carts/mycred-marketpress.php:147 ../addons/gateway/event-booking/mycred-eventespresso3.php:277 ../addons/gateway/event-booking/mycred-eventespresso3.php:301 ../addons/gateway/event-booking/mycred-eventsmanager.php:412 ../includes/mycred-admin.php:478
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1801
  msgid "Current Balance"
1802
  msgstr "Solde actuel"
1803
 
1804
- #: ../addons/gateway/carts/mycred-marketpress.php:151 ../addons/gateway/carts/mycred-wpecommerce.php:123 ../addons/gateway/event-booking/mycred-eventespresso3.php:281 ../addons/gateway/event-booking/mycred-eventespresso3.php:305 ../addons/gateway/event-booking/mycred-eventsmanager.php:416
 
 
 
 
1805
  msgid "Total Cost"
1806
  msgstr "Coût total"
1807
 
1808
- #: ../addons/gateway/carts/mycred-marketpress.php:155 ../addons/gateway/event-booking/mycred-eventespresso3.php:285 ../addons/gateway/event-booking/mycred-eventespresso3.php:309
 
 
1809
  msgid "Balance After Purchase"
1810
  msgstr "Solde après achats"
1811
 
1812
- #: ../addons/gateway/carts/mycred-marketpress.php:182 ../addons/gateway/carts/mycred-marketpress.php:231
 
1813
  msgid "Go Back"
1814
  msgstr "Revenir en arrière"
1815
 
@@ -1818,19 +2095,22 @@ msgid "will be deducted from your account."
1818
  msgstr "sera déduit de votre compte."
1819
 
1820
  #: ../addons/gateway/carts/mycred-marketpress.php:221
 
1821
  msgid ""
1822
- "Sorry, but you can not use this gateway as your account is excluded. Please <a "
1823
- "href=\"%s\">select a different payment method</a>."
1824
  msgstr ""
1825
- "D&eacute;sol&eacute;, mais vous ne pouvez pas utiliser ce service de paiement, "
1826
- "votre compte en est exclu. Veuillez <a href=\"%s\">choisir une autre m&eacute;"
1827
- "thode de paiement</a>."
1828
 
1829
  #: ../addons/gateway/carts/mycred-marketpress.php:240
1830
  msgid "Paid"
1831
  msgstr "Payé"
1832
 
1833
- #: ../addons/gateway/carts/mycred-marketpress.php:243 ../addons/gateway/carts/mycred-woocommerce.php:33 ../includes/mycred-network.php:57 ../includes/mycred-network.php:58 ../plugins/mycred-hook-badgeOS.php:81
 
 
1834
  msgid "myCRED"
1835
  msgstr "myCred"
1836
 
@@ -1838,7 +2118,10 @@ msgstr "myCred"
1838
  msgid "%_singular% Balance"
1839
  msgstr "Solde de %_singular%"
1840
 
1841
- #: ../addons/gateway/carts/mycred-marketpress.php:348 ../addons/gateway/carts/mycred-woocommerce.php:101 ../addons/gateway/carts/mycred-wpecommerce.php:27
 
 
 
1842
  msgid "Payment for Order: #%order_id%"
1843
  msgstr "R&egrave;glement de la commande: #%order_id%"
1844
 
@@ -1851,17 +2134,19 @@ msgid "Pay using your account balance."
1851
  msgstr "Régler avec votre solde de compte"
1852
 
1853
  #: ../addons/gateway/carts/mycred-marketpress.php:353
 
1854
  msgid ""
1855
  "TOTAL amount has been deducted from your account. Your current balance is: "
1856
  "%balance_f%"
1857
  msgstr ""
1858
- "Le montant TOTAL a été déduit de votre compte. Votre solde courant s'élève à : "
1859
- "%balance_f%"
1860
 
1861
  #: ../addons/gateway/carts/mycred-marketpress.php:354
 
1862
  msgid ""
1863
- "Insufficient funds. Please select another form of payment. Your current balance "
1864
- "is: %balance_f%"
1865
  msgstr ""
1866
  "Fonds insuffisants. Veuillez sélectionner un autre mode de règlement. Votre "
1867
  "solde courant s'élève à : %balance_f%"
@@ -1875,13 +2160,15 @@ msgstr ""
1875
  "href=\"%login_url_here%\">connecter</a>."
1876
 
1877
  #: ../addons/gateway/carts/mycred-marketpress.php:362
 
1878
  msgid ""
1879
  "Let your users pay for items in their shopping cart using their %s Account. "
1880
- "Note! This gateway requires your users to be logged in when making a purchase!"
 
1881
  msgstr ""
1882
- "Autorisez les utilisateurs &agrave; payer le contenu de leur caddie avec leur "
1883
- "compte %s. Notez que ce service n&eacute;cessite une connexion &agrave; votre "
1884
- "site de la part de l&#39;utilisateur au moment de son achat."
1885
 
1886
  #: ../addons/gateway/carts/mycred-marketpress.php:365
1887
  msgid "Method Name"
@@ -1892,22 +2179,34 @@ msgid ""
1892
  "Enter a public name for this payment method that is displayed to users - No "
1893
  "HTML"
1894
  msgstr ""
1895
- "Indiquer le nom qui sera affiché publiquement pour cette méthode de paiement. "
1896
- "HTML interdit."
1897
 
1898
  #: ../addons/gateway/carts/mycred-marketpress.php:372
1899
  msgid "Gateway Logo URL"
1900
  msgstr "URL du logo du service de paiement"
1901
 
1902
- #: ../addons/gateway/carts/mycred-marketpress.php:393 ../addons/gateway/carts/mycred-woocommerce.php:124
 
 
1903
  msgid "How much is 1 %_singular% worth in %currency%?"
1904
  msgstr "Combien vaut 1 %_singular% en %currency% ?"
1905
 
1906
- #: ../addons/gateway/carts/mycred-marketpress.php:398 ../addons/gateway/carts/mycred-woocommerce.php:129 ../addons/gateway/carts/mycred-wpecommerce.php:356 ../addons/gateway/event-booking/mycred-eventespresso3.php:450 ../addons/gateway/event-booking/mycred-eventsmanager-pro.php:499 ../addons/gateway/event-booking/mycred-eventsmanager.php:578
 
 
 
 
 
1907
  msgid "Exchange Rate"
1908
  msgstr "Taux de change"
1909
 
1910
- #: ../addons/gateway/carts/mycred-marketpress.php:407 ../addons/gateway/carts/mycred-woocommerce.php:157 ../addons/gateway/carts/mycred-wpecommerce.php:360 ../addons/gateway/event-booking/mycred-eventespresso3.php:462 ../addons/gateway/event-booking/mycred-eventsmanager-pro.php:490 ../addons/gateway/event-booking/mycred-eventsmanager.php:569
 
 
 
 
 
1911
  msgid "Profit Sharing"
1912
  msgstr "Partage de bénéfice"
1913
 
@@ -1915,17 +2214,28 @@ msgstr "Partage de bénéfice"
1915
  msgid "Percentage"
1916
  msgstr "Pourcentage"
1917
 
1918
- #: ../addons/gateway/carts/mycred-marketpress.php:412 ../addons/gateway/carts/mycred-woocommerce.php:159 ../addons/gateway/carts/mycred-wpecommerce.php:364 ../addons/gateway/event-booking/mycred-eventespresso3.php:464 ../addons/gateway/event-booking/mycred-eventsmanager-pro.php:493 ../addons/gateway/event-booking/mycred-eventsmanager.php:572
 
 
 
 
 
1919
  msgid "Option to share sales with the product owner. Use zero to disable."
1920
  msgstr ""
1921
  "Option de partage des ventes avec le propriétaire du produit. Indiquez zéro "
1922
  "pour désactiver l'option."
1923
 
1924
- #: ../addons/gateway/carts/mycred-marketpress.php:424 ../addons/gateway/carts/mycred-wpecommerce.php:371 ../addons/gateway/event-booking/mycred-eventsmanager-pro.php:559 ../addons/gateway/event-booking/mycred-eventsmanager.php:626
 
 
 
1925
  msgid "Messages"
1926
  msgstr "Messages"
1927
 
1928
- #: ../addons/gateway/carts/mycred-marketpress.php:427 ../addons/gateway/carts/mycred-wpecommerce.php:382 ../addons/gateway/event-booking/mycred-eventsmanager-pro.php:569 ../addons/gateway/event-booking/mycred-eventsmanager.php:636
 
 
 
1929
  msgid "Insufficient Funds"
1930
  msgstr "Fonds insuffisants"
1931
 
@@ -1933,7 +2243,9 @@ msgstr "Fonds insuffisants"
1933
  msgid "Message to show when the user can not use this gateway."
1934
  msgstr "Message à afficher quand un utilisateur ne peut pas utiliser ce service."
1935
 
1936
- #: ../addons/gateway/carts/mycred-marketpress.php:435 ../addons/gateway/carts/mycred-wpecommerce.php:378 ../addons/gateway/event-booking/mycred-eventespresso3.php:490
 
 
1937
  msgid "Visitors"
1938
  msgstr "Visiteurs"
1939
 
@@ -1955,24 +2267,27 @@ msgstr "Information de confirmation "
1955
 
1956
  #: ../addons/gateway/carts/mycred-marketpress.php:453
1957
  msgid "Information to display on the order confirmation page. - HTML allowed"
1958
- msgstr "Informations à afficher sur la page de confirmation de commande. HTML autorisé."
 
 
1959
 
1960
  #: ../addons/gateway/carts/mycred-marketpress.php:459
1961
  msgid "Order Confirmation Email"
1962
  msgstr "Email de confirmation de commande"
1963
 
1964
  #: ../addons/gateway/carts/mycred-marketpress.php:461
 
1965
  msgid ""
1966
  "This is the email text to send to those who have made %s checkouts. It "
1967
- "overrides the default order checkout email. These codes will be replaced with "
1968
- "order details: CUSTOMERNAME, ORDERID, ORDERINFO, SHIPPINGINFO, PAYMENTINFO, "
1969
- "TOTAL, TRACKINGURL. No HTML allowed."
1970
  msgstr ""
1971
- "Ceci est le message qui sera envoyé aux utilisateurs ayant v&eacute;rifi&eacute;"
1972
- "s leur compte %s. Il remplace le mail par d&eacute;faut de v&eacute;rification "
1973
- "de compte. Les codes suivants seront remplac&eacute;s par les d&eacute;tails de "
1974
- "la commande: CUSTOMERNAME, ORDERID, ORDERINFO, SHIPPINGINFO, PAYMENTINFO, TOTAL,"
1975
- " TRACKINGURL. HTML interdit."
1976
 
1977
  #: ../addons/gateway/carts/mycred-woocommerce.php:34
1978
  msgid "Let users pay using their myCRED balance."
@@ -1988,8 +2303,8 @@ msgstr "Activer le paiement myCRED"
1988
 
1989
  #: ../addons/gateway/carts/mycred-woocommerce.php:83
1990
  msgid ""
1991
- "Users who are not logged in or excluded from using myCRED will not have access "
1992
- "to this gateway!"
1993
  msgstr ""
1994
  "Les utilisateurs qui ne sont pas connectés ou qui sont exclus de myCRED "
1995
  "n'auront pas accès à ce service de paiement !"
@@ -2007,6 +2322,7 @@ msgid "Customer Message"
2007
  msgstr "Message au client"
2008
 
2009
  #: ../addons/gateway/carts/mycred-woocommerce.php:95
 
2010
  msgid "Deduct the amount from your %_plural% balance."
2011
  msgstr "Déduire le montant de votre solde de %_plural%"
2012
 
@@ -2038,10 +2354,6 @@ msgstr "Afficher sur la page de contrôle d'achats"
2038
  msgid "Show in Cart and on Checkout Page"
2039
  msgstr "Afficher avec le panier et sur la page de contrôle"
2040
 
2041
- #: ../addons/gateway/carts/mycred-woocommerce.php:148 ../modules/mycred-module-settings.php:484 ../modules/mycred-module-settings.php:503 ../modules/mycred-module-settings.php:526
2042
- msgid "Label"
2043
- msgstr "Etiquette"
2044
-
2045
  #: ../addons/gateway/carts/mycred-woocommerce.php:150
2046
  msgid "Order Total in %_plural%"
2047
  msgstr "Commande totale en %_plural%"
@@ -2059,15 +2371,16 @@ msgid "myCRED Payment"
2059
  msgstr "Paiement myCRED"
2060
 
2061
  #: ../addons/gateway/carts/mycred-woocommerce.php:193
 
2062
  msgid ""
2063
  "Allows users to pay using their myCRED %_singular% balance. Please note that "
2064
- "users with insufficient funds and users who are not logged in will not see this "
2065
- "payment gateway on the checkout page."
2066
  msgstr ""
2067
  "Autoriser les utilisateur à régler avec leur solde de %_singular% myCRED. "
2068
- "Notez que les utilisateurs avec des fonds insuffisants et ceux qui ne sont pas "
2069
- "connectés ne verront pas ce service de paiement sur la page de contrôle de "
2070
- "leurs paiements."
2071
 
2072
  #: ../addons/gateway/carts/mycred-woocommerce.php:214
2073
  msgid "You must be logged in to pay with %_plural%"
@@ -2079,19 +2392,20 @@ msgstr ""
2079
  "Vous ne pouvez pas utiliser ce service. Veuillez essayer une autre option de "
2080
  "règlement."
2081
 
2082
- #: ../addons/gateway/carts/mycred-woocommerce.php:233
2083
  msgid "Insufficient funds. Please try a different payment option."
2084
  msgstr "Fonds insuffisants. Veuillez essayer une autre option de règlement."
2085
 
2086
- #: ../addons/gateway/carts/mycred-woocommerce.php:295
2087
  msgid "Your account has successfully been charged."
2088
  msgstr "Votre compte a été débité avec succès."
2089
 
2090
- #: ../addons/gateway/carts/mycred-woocommerce.php:314
2091
  msgid "Order Missing"
2092
  msgstr "Bon de commande absent"
2093
 
2094
- #: ../addons/gateway/carts/mycred-woocommerce.php:537 ../addons/gateway/carts/mycred-wpecommerce.php:131
 
2095
  msgid "Your current balance"
2096
  msgstr "Votre solde actuel"
2097
 
@@ -2120,6 +2434,7 @@ msgid "Log Template for Payments"
2120
  msgstr "Template de paiements"
2121
 
2122
  #: ../addons/gateway/carts/mycred-wpecommerce.php:357
 
2123
  msgid "How much is 1 %s worth in %s"
2124
  msgstr "Combien vaut 1 %s dans %s"
2125
 
@@ -2133,8 +2448,8 @@ msgstr "Instructions"
2133
 
2134
  #: ../addons/gateway/carts/mycred-wpecommerce.php:375
2135
  msgid ""
2136
- "Optional instructions to show users when selecting this gateway. Leave empty to "
2137
- "hide."
2138
  msgstr ""
2139
  "Informations additionnelles à afficher quand l'utilisateur sélectionne ce "
2140
  "système de paiement. Laissez vide pour ne rien afficher."
@@ -2148,10 +2463,12 @@ msgid ""
2148
  "Message to show when users does not have enough %plural% to pay using this "
2149
  "gateway."
2150
  msgstr ""
2151
- "Message à afficher lorsque l'utilisateur n'a pas suffisamment de %plural% pour "
2152
- "payer avec ce système de paiement."
2153
 
2154
- #: ../addons/gateway/event-booking/mycred-eventespresso3.php:27 ../addons/gateway/event-booking/mycred-eventsmanager-pro.php:39 ../addons/gateway/event-booking/mycred-eventsmanager.php:35
 
 
2155
  msgid "Pay Now"
2156
  msgstr "Payer maintenant"
2157
 
@@ -2160,14 +2477,19 @@ msgid "Payment for Event Registration"
2160
  msgstr "Paiement pour l'enregistrement d'un événement"
2161
 
2162
  #: ../addons/gateway/event-booking/mycred-eventespresso3.php:343
 
2163
  msgid "Activate %s"
2164
  msgstr "Activer %s"
2165
 
2166
  #: ../addons/gateway/event-booking/mycred-eventespresso3.php:351
 
2167
  msgid "Deactivate %s"
2168
  msgstr "Désactiver %s"
2169
 
2170
- #: ../addons/gateway/event-booking/mycred-eventespresso3.php:399 ../addons/gateway/event-booking/mycred-eventsmanager-pro.php:449 ../addons/gateway/event-booking/mycred-eventsmanager.php:524
 
 
 
2171
  msgid "How many %s is 1 %s worth?"
2172
  msgstr "Combien de %s vaut 1 %s ?"
2173
 
@@ -2175,7 +2497,9 @@ msgstr "Combien de %s vaut 1 %s ?"
2175
  msgid "Gateways Settings Successfully Updated"
2176
  msgstr "Configuration du service mise à jour"
2177
 
2178
- #: ../addons/gateway/event-booking/mycred-eventespresso3.php:415 ../addons/gateway/event-booking/mycred-eventsmanager-pro.php:535 ../addons/gateway/event-booking/mycred-eventsmanager.php:602
 
 
2179
  msgid "Labels"
2180
  msgstr "Intitulés"
2181
 
@@ -2195,7 +2519,11 @@ msgstr "Type de Paiement"
2195
  msgid "Title to show on receipts and logs"
2196
  msgstr "Titre à afficher pour les rapports et les journaux d'activités"
2197
 
2198
- #: ../addons/gateway/event-booking/mycred-eventespresso3.php:428 ../addons/gateway/event-booking/mycred-eventsmanager-pro.php:552 ../addons/gateway/event-booking/mycred-eventsmanager.php:619 ../addons/sell-content/myCRED-addon-sell-content.php:397 ../addons/sell-content/myCRED-addon-sell-content.php:590
 
 
 
 
2199
  msgid "Button Label"
2200
  msgstr "Intitulé du bouton"
2201
 
@@ -2203,7 +2531,13 @@ msgstr "Intitulé du bouton"
2203
  msgid "Pay Button"
2204
  msgstr "Bouton de paiement"
2205
 
2206
- #: ../addons/gateway/event-booking/mycred-eventespresso3.php:447 ../addons/gateway/event-booking/mycred-eventsmanager-pro.php:137 ../addons/gateway/event-booking/mycred-eventsmanager-pro.php:140 ../addons/gateway/event-booking/mycred-eventsmanager.php:336 ../addons/gateway/event-booking/mycred-eventsmanager.php:339 ../addons/sell-content/myCRED-addon-sell-content.php:388 ../addons/sell-content/myCRED-addon-sell-content.php:586
 
 
 
 
 
 
2207
  msgid "Price"
2208
  msgstr "Prix"
2209
 
@@ -2219,11 +2553,13 @@ msgstr ""
2219
  msgid "Users must be logged in to use this gateway!"
2220
  msgstr "Vous devez vous connecter pour utiliser ce service !"
2221
 
2222
- #: ../addons/gateway/event-booking/mycred-eventespresso3.php:467 ../modules/mycred-module-log.php:22 ../modules/mycred-module-log.php:23
 
2223
  msgid "Log"
2224
  msgstr "Vue d&#39;ensemble"
2225
 
2226
- #: ../addons/gateway/event-booking/mycred-eventespresso3.php:470 ../includes/mycred-admin.php:483
 
2227
  msgid "Log Entry"
2228
  msgstr "Journal d'activité"
2229
 
@@ -2237,8 +2573,8 @@ msgstr "Utilisateurs solvables"
2237
 
2238
  #: ../addons/gateway/event-booking/mycred-eventespresso3.php:482
2239
  msgid ""
2240
- "Message to show users on the payment page before they are charged. Leave empty "
2241
- "to hide."
2242
  msgstr ""
2243
  "Message à afficher sur la page de paiement avant que l'utilisateur ne soit "
2244
  "débité. Laissez vide pour ne rien afficher."
@@ -2255,39 +2591,49 @@ msgstr "Message à afficher aux membres n'ayant pas suffisamment de points pour
2255
  msgid "Message to show visitors (users not logged in) on the payment page."
2256
  msgstr "Message à afficher aux visiteurs non connectés sur la page de paiement."
2257
 
2258
- #: ../addons/gateway/event-booking/mycred-eventespresso3.php:502 ../modules/mycred-module-settings.php:540
 
2259
  msgid "Update Settings"
2260
  msgstr "Enregistrer la configuration"
2261
 
2262
- #: ../addons/gateway/event-booking/mycred-eventsmanager-pro.php:33 ../addons/gateway/event-booking/mycred-eventsmanager.php:29
 
2263
  msgid "Payment for tickets to %link_with_title%"
2264
  msgstr "tickets de Paiement vers %link_with_title%"
2265
 
2266
- #: ../addons/gateway/event-booking/mycred-eventsmanager-pro.php:34 ../addons/gateway/event-booking/mycred-eventsmanager.php:30
 
2267
  msgid "Ticket refund for %link_with_title%"
2268
  msgstr "Ticket de Remboursement vers %link_with_title%"
2269
 
2270
- #: ../addons/gateway/event-booking/mycred-eventsmanager-pro.php:38 ../addons/gateway/event-booking/mycred-eventsmanager.php:34
 
 
2271
  msgid "Pay using your %_plural% balance"
2272
  msgstr "Payez avec votre solde de %_plural%"
2273
 
2274
- #: ../addons/gateway/event-booking/mycred-eventsmanager-pro.php:40 ../addons/gateway/event-booking/mycred-eventsmanager.php:36
 
2275
  msgid "Pay"
2276
  msgstr "Payer"
2277
 
2278
- #: ../addons/gateway/event-booking/mycred-eventsmanager-pro.php:43 ../addons/gateway/event-booking/mycred-eventsmanager.php:39
 
2279
  msgid "Thank you for your payment!"
2280
  msgstr "Merci pour votre paiement !"
2281
 
2282
- #: ../addons/gateway/event-booking/mycred-eventsmanager-pro.php:44 ../addons/gateway/event-booking/mycred-eventsmanager.php:40
 
2283
  msgid "I'm sorry but you can not pay for these tickets using %_plural%"
2284
  msgstr "Désolé mais vous ne pouvez pas payer pour ces tickets à l'aide de %_plural%"
2285
 
2286
- #: ../addons/gateway/event-booking/mycred-eventsmanager-pro.php:134 ../addons/gateway/event-booking/mycred-eventsmanager.php:333
 
2287
  msgid "Ticket Type"
2288
  msgstr "Type de ticket"
2289
 
2290
- #: ../addons/gateway/event-booking/mycred-eventsmanager-pro.php:143 ../addons/gateway/event-booking/mycred-eventsmanager.php:342
 
2291
  msgid "Spaces"
2292
  msgstr "Espaces"
2293
 
@@ -2299,7 +2645,9 @@ msgstr "Vous ne pouvez pas payer à l'aide de ce système de paiement."
2299
  msgid "Reject"
2300
  msgstr "Rejeter"
2301
 
2302
- #: ../addons/gateway/event-booking/mycred-eventsmanager-pro.php:374 ../modules/mycred-module-log.php:500 ../modules/mycred-module-settings.php:488 ../modules/mycred-module-settings.php:507
 
 
2303
  msgid "Delete"
2304
  msgstr "Suppirmer"
2305
 
@@ -2307,25 +2655,31 @@ msgstr "Suppirmer"
2307
  msgid "Edit/View"
2308
  msgstr "Modifier/Aperçu"
2309
 
2310
- #: ../addons/gateway/event-booking/mycred-eventsmanager-pro.php:477 ../addons/gateway/event-booking/mycred-eventsmanager.php:542
 
2311
  msgid "Disabled - Users CAN NOT pay for tickets using %plural%."
2312
  msgstr ""
2313
  "Désactivé - les utilisateurs NE PEUVENT PAS régler de tickets avec leurs "
2314
  "%_plural%."
2315
 
2316
- #: ../addons/gateway/event-booking/mycred-eventsmanager-pro.php:478 ../addons/gateway/event-booking/mycred-eventsmanager.php:543
 
2317
  msgid "Single - Users can ONLY pay for tickets using %plural%."
2318
  msgstr ""
2319
  "Unique - les utilisateurs PEUVENT SEULEMENT payer des tickets avec leurs "
2320
  "%_plural%"
2321
 
2322
- #: ../addons/gateway/event-booking/mycred-eventsmanager-pro.php:479 ../addons/gateway/event-booking/mycred-eventsmanager.php:544
 
2323
  msgid "Multi - Users can pay for tickets using other gateways or %plural%."
2324
  msgstr ""
2325
- "Multi - les utilisateurs peuvent payer leurs tickets avec d'autres services ou "
2326
- "avec leurs %_plural%"
2327
 
2328
- #: ../addons/gateway/event-booking/mycred-eventsmanager-pro.php:483 ../addons/gateway/event-booking/mycred-eventsmanager-pro.php:516 ../addons/gateway/event-booking/mycred-eventsmanager.php:562 ../addons/gateway/event-booking/mycred-eventsmanager.php:595
 
 
 
2329
  msgid "Refunds"
2330
  msgstr "Remboursements"
2331
 
@@ -2334,47 +2688,58 @@ msgid ""
2334
  "The percentage of the paid amount to refund if a user cancels their booking. "
2335
  "Use zero for no refunds. No refunds are given to \"Rejected\" bookings!"
2336
  msgstr ""
2337
- "Le pourcentage de la somme versée à rembourser quand un utilisateur annule une "
2338
- "réservation. Indiquez zéro pour aucun remboursement. Aucun remboursement n'est "
2339
- "effectué pour les réservations \"Rejetées\" !"
2340
 
2341
- #: ../addons/gateway/event-booking/mycred-eventsmanager-pro.php:506 ../addons/gateway/event-booking/mycred-eventsmanager.php:585
 
2342
  msgid "Log Templates"
2343
  msgstr "Textes à afficher"
2344
 
2345
- #: ../addons/gateway/event-booking/mycred-eventsmanager-pro.php:509 ../addons/gateway/event-booking/mycred-eventsmanager.php:588
 
2346
  msgid "Purchases"
2347
  msgstr "Achats"
2348
 
2349
- #: ../addons/gateway/event-booking/mycred-eventsmanager-pro.php:538 ../addons/gateway/event-booking/mycred-eventsmanager.php:605
 
2350
  msgid "Payment Link Label"
2351
  msgstr "Intitulé du lien de paiement"
2352
 
2353
- #: ../addons/gateway/event-booking/mycred-eventsmanager-pro.php:541 ../addons/gateway/event-booking/mycred-eventsmanager.php:608
 
2354
  msgid ""
2355
  "The payment link shows / hides the payment form under \"My Bookings\". No HTML "
2356
  "allowed."
2357
  msgstr ""
2358
- "Le lien pour afficher/masquer le formulaire de paiement sous \"Mes commandes\". "
2359
- "HTML interdit."
2360
 
2361
- #: ../addons/gateway/event-booking/mycred-eventsmanager-pro.php:545 ../addons/gateway/event-booking/mycred-eventsmanager.php:612
 
2362
  msgid "Payment Header"
2363
  msgstr "En-tête de la page de paiement"
2364
 
2365
- #: ../addons/gateway/event-booking/mycred-eventsmanager-pro.php:548 ../addons/gateway/event-booking/mycred-eventsmanager.php:615
 
2366
  msgid "Shown on top of the payment form. No HTML allowed."
2367
  msgstr "Sera affiché au-dessus du formulaire de paiement. HTML interdit."
2368
 
2369
- #: ../addons/gateway/event-booking/mycred-eventsmanager-pro.php:555 ../addons/gateway/event-booking/mycred-eventsmanager.php:622
 
2370
  msgid "The button label for payments. No HTML allowed!"
2371
  msgstr "Intitulé du bouton de paiement. HTML interdit !"
2372
 
2373
- #: ../addons/gateway/event-booking/mycred-eventsmanager-pro.php:562 ../addons/gateway/event-booking/mycred-eventsmanager.php:629
 
2374
  msgid "Successful Payments"
2375
  msgstr "Paiements réussis"
2376
 
2377
- #: ../addons/gateway/event-booking/mycred-eventsmanager-pro.php:565 ../addons/gateway/event-booking/mycred-eventsmanager-pro.php:572 ../addons/gateway/event-booking/mycred-eventsmanager.php:632 ../addons/gateway/event-booking/mycred-eventsmanager.php:639
 
 
 
2378
  msgid "No HTML allowed!"
2379
  msgstr "Le HTML n'est pas autorisé !"
2380
 
@@ -2387,6 +2752,7 @@ msgid "Click to toggle"
2387
  msgstr "Cliquez pour basculer"
2388
 
2389
  #: ../addons/gateway/event-booking/mycred-eventsmanager.php:533
 
2390
  msgid "%s Payments"
2391
  msgstr "%s Paiements"
2392
 
@@ -2395,11 +2761,12 @@ msgid ""
2395
  "The percentage of the paid amount to refund if a booking gets cancelled. Use "
2396
  "zero for no refunds. No refunds are given to \"Rejected\" bookings."
2397
  msgstr ""
2398
- "Le pourcentage du montant à rembourser en cas d'annulation de commande. Mettez "
2399
- "zéro pour ne rien rembourser. Aucun remboursement n'est attribué aux commandes "
2400
- "\"Rejetées\"."
2401
 
2402
- #: ../addons/notifications/myCRED-addon-notifications.php:166 ../modules/mycred-module-addons.php:201
 
2403
  msgid "Notifications"
2404
  msgstr "Notifications"
2405
 
@@ -2411,11 +2778,13 @@ msgstr "Style"
2411
  msgid "Use the included CSS Styling for notifications."
2412
  msgstr "Utiliser le style CSS inclus pour les notifications."
2413
 
2414
- #: ../addons/notifications/myCRED-addon-notifications.php:175 ../modules/mycred-module-buddypress.php:410
 
2415
  msgid "Template"
2416
  msgstr "Texte à afficher"
2417
 
2418
  #: ../addons/notifications/myCRED-addon-notifications.php:179
 
2419
  msgid "Use %entry% to show the log entry in the notice and %amount% for the amount."
2420
  msgstr ""
2421
  "Utilisez %entry% pour afficher l'élément concerné dans la notice et %amount% "
@@ -2430,8 +2799,8 @@ msgid ""
2430
  "The number of days a users notification is saved before being automatically "
2431
  "deleted."
2432
  msgstr ""
2433
- "Le nombre de jours de conservations d'une notice adressée à l'utilisateur avant "
2434
- "qu'elle ne soit automatiquement supprimée."
2435
 
2436
  #: ../addons/notifications/myCRED-addon-notifications.php:189
2437
  msgid "Duration"
@@ -2439,12 +2808,13 @@ msgstr "Durée"
2439
 
2440
  #: ../addons/notifications/myCRED-addon-notifications.php:193
2441
  msgid ""
2442
- "The number of milliseconds a notice should be visible.<br />Use zero to require "
2443
- "that the user closes the notice manually. 1000 milliseconds = 1 second."
 
2444
  msgstr ""
2445
  "La durée d'apparition d'une notice, en millisecondes avant qu'elle ne se "
2446
- "referme automatiquement.<br/>Utilisez zéro pour forcer l'utilisateur à fermer "
2447
- "la notice manuellement. 1000 millisecondes = 1 seconde."
2448
 
2449
  #: ../addons/ranks/myCRED-addon-ranks.php:231
2450
  msgid "Warning! All ranks will be deleted! This can not be undone!"
@@ -2456,11 +2826,16 @@ msgstr ""
2456
  msgid "Are you sure you want to re-assign user ranks?"
2457
  msgstr "Je confirme la réassignation du classement de l'utilisateur"
2458
 
2459
- #: ../addons/ranks/myCRED-addon-ranks.php:246 ../addons/ranks/myCRED-addon-ranks.php:252 ../addons/ranks/myCRED-addon-ranks.php:258 ../addons/ranks/myCRED-addon-ranks.php:762 ../addons/ranks/myCRED-addon-ranks.php:958 ../modules/mycred-module-addons.php:213
 
 
 
2460
  msgid "Ranks"
2461
  msgstr "Attribution de Points"
2462
 
2463
- #: ../addons/ranks/myCRED-addon-ranks.php:247 ../addons/ranks/myCRED-addon-ranks.php:454 ../addons/ranks/myCRED-addon-ranks.php:473 ../addons/ranks/myCRED-addon-ranks.php:568
 
 
2464
  msgid "Rank"
2465
  msgstr "Classement"
2466
 
@@ -2492,271 +2867,291 @@ msgstr "Aucun classement trouvé"
2492
  msgid "No ranks found in Trash"
2493
  msgstr "Aucun classement trouvé dans la corbeille"
2494
 
2495
- #: ../addons/ranks/myCRED-addon-ranks.php:323
 
2496
  msgid "Completed - Total of %d users effected"
2497
  msgstr "Terminé - %d utilisateurs ont été affectés"
2498
 
2499
- #: ../addons/ranks/myCRED-addon-ranks.php:325
2500
  msgid "Log is Empty"
2501
  msgstr "L'affichage est vide"
2502
 
2503
- #: ../addons/ranks/myCRED-addon-ranks.php:528 ../addons/ranks/myCRED-addon-ranks.php:531
 
 
2504
  msgid "Rank Updated. View <a href=\"%1$s\">All Ranks</a>."
2505
  msgstr "Classement mis à jour. Afficher <a href=\"%1$s\">tous les classements</a>."
2506
 
2507
- #: ../addons/ranks/myCRED-addon-ranks.php:533
2508
  msgid "Rank Activated"
2509
  msgstr "Classement activé"
2510
 
2511
- #: ../addons/ranks/myCRED-addon-ranks.php:534
2512
  msgid "Rank Saved"
2513
  msgstr "Classement enregistré"
2514
 
2515
- #: ../addons/ranks/myCRED-addon-ranks.php:535
 
2516
  msgid "Rank Submitted for approval. View <a href=\"%1$s\">All Ranks</a>."
2517
  msgstr ""
2518
  "Classement en cours de validation. Afficher <a href=\"%1$s\">tous les "
2519
  "classements</a>."
2520
 
2521
- #: ../addons/ranks/myCRED-addon-ranks.php:537
 
2522
  msgid "Rank scheduled for: <strong>%1$s</strong>."
2523
  msgstr "Classement pr&eacute;vu pour: <strong>%1$s</strong>."
2524
 
2525
- #: ../addons/ranks/myCRED-addon-ranks.php:594 ../addons/ranks/myCRED-addon-ranks.php:647
 
2526
  msgid "Rank Title"
2527
  msgstr "Titre du classement"
2528
 
2529
- #: ../addons/ranks/myCRED-addon-ranks.php:595
2530
  msgid "Logo"
2531
  msgstr "Logo"
2532
 
2533
- #: ../addons/ranks/myCRED-addon-ranks.php:596
2534
  msgid "Requirement"
2535
  msgstr "Obligation"
2536
 
2537
- #: ../addons/ranks/myCRED-addon-ranks.php:597 ../modules/mycred-module-settings.php:451
 
2538
  msgid "Users"
2539
  msgstr "Utilisateurs"
2540
 
2541
- #: ../addons/ranks/myCRED-addon-ranks.php:613
2542
  msgid "No Logo Set"
2543
  msgstr "Aucun logo défini"
2544
 
2545
- #: ../addons/ranks/myCRED-addon-ranks.php:622 ../addons/ranks/myCRED-addon-ranks.php:627
 
2546
  msgid "Any Value"
2547
  msgstr "Valeur au choix"
2548
 
2549
- #: ../addons/ranks/myCRED-addon-ranks.php:629
2550
  msgid "Maximum %plural%"
2551
  msgstr "Maximum de %plural%"
2552
 
2553
- #: ../addons/ranks/myCRED-addon-ranks.php:660
2554
  msgid "Rank Settings"
2555
  msgstr "Configuration des classements"
2556
 
2557
- #: ../addons/ranks/myCRED-addon-ranks.php:682
2558
  msgid "Minimum %plural% to reach this rank"
2559
  msgstr ""
2560
  "Minimum de %plural% &agrave; d&eacute;tenir pour acc&eacute;der &agrave; ce "
2561
  "classement"
2562
 
2563
- #: ../addons/ranks/myCRED-addon-ranks.php:686
2564
  msgid "Maximum %plural% to be included in this rank"
2565
  msgstr ""
2566
  "Maximum de %plural% &agrave; poss&eacute;der pour &ecirc;tre inclus dans ce "
2567
  "classement"
2568
 
2569
- #: ../addons/ranks/myCRED-addon-ranks.php:693
2570
  msgid "All Published Ranks"
2571
  msgstr "Tous les classements publiés"
2572
 
2573
- #: ../addons/ranks/myCRED-addon-ranks.php:699 ../addons/ranks/myCRED-addon-ranks.php:701
 
2574
  msgid "Not Set"
2575
  msgstr "Non configuré"
2576
 
2577
- #: ../addons/ranks/myCRED-addon-ranks.php:706
2578
  msgid "No Ranks found"
2579
  msgstr "Aucun classement trouivé"
2580
 
2581
- #: ../addons/ranks/myCRED-addon-ranks.php:764
2582
  msgid "Rank Features"
2583
  msgstr "Caractéristiques du classement"
2584
 
2585
- #: ../addons/ranks/myCRED-addon-ranks.php:768
2586
  msgid "%plural% requirement"
2587
  msgstr "condition requise pour l&#39;attribution de %_plural%"
2588
 
2589
- #: ../addons/ranks/myCRED-addon-ranks.php:769
2590
  msgid "Featured Image (Logo)"
2591
  msgstr "Illustration (logo)"
2592
 
2593
- #: ../addons/ranks/myCRED-addon-ranks.php:770
2594
  msgid "Content"
2595
  msgstr "Contenu"
2596
 
2597
- #: ../addons/ranks/myCRED-addon-ranks.php:771
2598
  msgid "Excerpt"
2599
  msgstr "Extrait"
2600
 
2601
- #: ../addons/ranks/myCRED-addon-ranks.php:772
2602
  msgid "Comments"
2603
  msgstr "Commentaires"
2604
 
2605
- #: ../addons/ranks/myCRED-addon-ranks.php:773
2606
  msgid "Page Attributes"
2607
  msgstr "Attributs de la page"
2608
 
2609
- #: ../addons/ranks/myCRED-addon-ranks.php:774
2610
  msgid "Custom Fields"
2611
  msgstr "Champs Personnalisés"
2612
 
2613
- #: ../addons/ranks/myCRED-addon-ranks.php:777
2614
  msgid "Public"
2615
  msgstr "Public"
2616
 
2617
- #: ../addons/ranks/myCRED-addon-ranks.php:781
2618
  msgid ""
2619
- "If you want to create a template archive for each rank, you must select to have "
2620
- "ranks public. Defaults to disabled."
2621
  msgstr ""
2622
- "Pour créer un template d'archivage pour chaque classement, ceux-ci doivent être "
2623
- "publics. Désactivé par défaut."
2624
 
2625
- #: ../addons/ranks/myCRED-addon-ranks.php:784
2626
  msgid "Rank Basis"
2627
  msgstr "Base de Classement"
2628
 
2629
- #: ../addons/ranks/myCRED-addon-ranks.php:787
2630
  msgid "Users are ranked according to their current balance."
2631
  msgstr "Les utilisateurs sont classés selon leur solde courant"
2632
 
2633
- #: ../addons/ranks/myCRED-addon-ranks.php:790
2634
  msgid ""
2635
  "Users are ranked according to the total amount of %_plural% they have "
2636
  "accumulated."
2637
  msgstr ""
2638
- "Les utilisateurs sont classés selon le montant de total de %_plural% qu'ils ont "
2639
- "accumulés."
2640
 
2641
- #: ../addons/ranks/myCRED-addon-ranks.php:794 ../addons/ranks/myCRED-addon-ranks.php:799
 
2642
  msgid "Calculate Totals"
2643
  msgstr "Calculer les totaux"
2644
 
2645
- #: ../addons/ranks/myCRED-addon-ranks.php:797
2646
  msgid ""
2647
  "Use this button to calculate or re-calcualte your users totals. If not used, "
2648
  "the users current balance will be used as a starting point."
2649
  msgstr ""
2650
- "Utilisez ce bouton pour calculer ou recalculer les totaux de vos utilisateurs. "
2651
- "Si inutilisez c'est le solde courant des utilisateurs qui servira de point de "
2652
- "départ."
2653
 
2654
- #: ../addons/ranks/myCRED-addon-ranks.php:797
2655
  msgid ""
2656
  "Once a users total has been calculated, they will be assigned to their "
2657
  "appropriate roles. For this reason, it is highly recommended that you first "
2658
  "setup your ranks!"
2659
  msgstr ""
2660
- "Une fois les totaux de vos utilisateurs calculés, leurs rôles respectifs leurs "
2661
- "seront assignés. Pour cette raison, il est fortement recommandé que vous "
2662
- "configurez d'abord vos classements !"
2663
 
2664
- #: ../addons/ranks/myCRED-addon-ranks.php:798
2665
  msgid ""
2666
- "Depending on your log size and number of users this process may take a while. "
2667
- "Please do not leave, click \"Update Settings\" or re-fresh this page until this "
2668
- "is completed!"
2669
  msgstr ""
2670
  "Selon la taille de votre hébergement et le nombres d'utilisateurs, cette "
2671
- "opération peut prendre un certain temps. Ne quittez pas cette page, ne cliquez "
2672
- "pas sur \"Mettre à jour\" et ne rafraichissez pas la page avant la fin de "
2673
- "l'opération !"
2674
 
2675
- #: ../addons/ranks/myCRED-addon-ranks.php:803
2676
  msgid "Archive URL"
2677
  msgstr "URL des archives"
2678
 
2679
- #: ../addons/ranks/myCRED-addon-ranks.php:807
2680
  msgid "Ignored if Ranks are not public"
2681
  msgstr "Ignoré si le classement n'est pas public"
2682
 
2683
- #: ../addons/ranks/myCRED-addon-ranks.php:810
2684
  msgid "Display Order"
2685
  msgstr "Ordre d'affichage"
2686
 
2687
- #: ../addons/ranks/myCRED-addon-ranks.php:817
2688
  msgid "Ascending - Lowest rank to highest"
2689
  msgstr "Ascendant - Du plus petit au plus grand"
2690
 
2691
- #: ../addons/ranks/myCRED-addon-ranks.php:818
2692
  msgid "Descending - Highest rank to lowest"
2693
  msgstr "Descendant - Du plus grand au plus petit"
2694
 
2695
- #: ../addons/ranks/myCRED-addon-ranks.php:827
2696
  msgid ""
2697
- "Select in what order ranks should be displayed in your admin area and/or front "
2698
- "if ranks are \"Public\""
2699
  msgstr ""
2700
- "Choisissez l'ordre d'affichage des classements dans l'admin et/ou sur le site "
2701
- "quand les classements sont marqués comme \"Publics\""
2702
 
2703
- #: ../addons/ranks/myCRED-addon-ranks.php:837 ../modules/mycred-module-buddypress.php:366 ../modules/mycred-module-buddypress.php:373
 
2704
  msgid "Do not show."
2705
  msgstr "Ne pas afficher."
2706
 
2707
- #: ../addons/ranks/myCRED-addon-ranks.php:838 ../modules/mycred-module-buddypress.php:367
 
2708
  msgid "Include in Profile Header."
2709
  msgstr "Inclure dans l'en-tête du profil."
2710
 
2711
- #: ../addons/ranks/myCRED-addon-ranks.php:839 ../modules/mycred-module-buddypress.php:368
 
2712
  msgid "Include under the \"Profile\" tab"
2713
  msgstr "Inclure sous l'onglet \"Profil\""
2714
 
2715
- #: ../addons/ranks/myCRED-addon-ranks.php:840 ../modules/mycred-module-buddypress.php:369
 
2716
  msgid "Include under the \"Profile\" tab and Profile Header."
2717
  msgstr "Inclure sous l'onglet \"Profil\" et dans l'en-tête du profil."
2718
 
2719
- #: ../addons/ranks/myCRED-addon-ranks.php:843
2720
  msgid "Rank in BuddyPress"
2721
  msgstr "Classement dans BuddyPress"
2722
 
2723
- #: ../addons/ranks/myCRED-addon-ranks.php:911
2724
  msgid "Script Communication Error"
2725
  msgstr "Erreur de communication des scripts"
2726
 
2727
- #: ../addons/ranks/myCRED-addon-ranks.php:961
2728
  msgid "Rank Post Type"
2729
  msgstr "Classer le type d'article"
2730
 
2731
- #: ../addons/ranks/myCRED-addon-ranks.php:965
2732
  msgid "No. of ranks"
2733
  msgstr "N° de classement"
2734
 
2735
- #: ../addons/ranks/myCRED-addon-ranks.php:969 ../modules/mycred-module-log.php:368 ../modules/mycred-module-settings.php:440 ../modules/mycred-module-settings.php:455
 
 
2736
  msgid "Actions"
2737
  msgstr "Actions"
2738
 
2739
- #: ../addons/ranks/myCRED-addon-ranks.php:970
2740
  msgid "Remove All Ranks"
2741
  msgstr "Supprimer tous les classements"
2742
 
2743
- #: ../addons/ranks/myCRED-addon-ranks.php:970
2744
  msgid "Assign Ranks to Users"
2745
  msgstr "Attribuer un classement à l'utilisateur"
2746
 
2747
- #: ../addons/ranks/includes/mycred-rank-functions.php:181
2748
  msgid "mycred_get_users_rank() : Missing required user id"
2749
  msgstr "mycred_get_users_rank() : l'ID utilisateur requis est manquant"
2750
 
2751
- #: ../addons/ranks/includes/mycred-rank-functions.php:191
2752
  msgid "no rank"
2753
  msgstr "pas classé"
2754
 
2755
- #: ../addons/ranks/includes/mycred-rank-shortcodes.php:58 ../addons/ranks/includes/mycred-rank-shortcodes.php:134
 
2756
  msgid "No users found with this rank"
2757
  msgstr "Aucun utilisateur avec ce classement n'a été trouvé."
2758
 
2759
- #: ../addons/ranks/includes/mycred-rank-shortcodes.php:63 ../includes/mycred-shortcodes.php:352 ../includes/mycred-shortcodes.php:355 ../includes/mycred-shortcodes.php:417 ../includes/mycred-shortcodes.php:478 ../includes/mycred-shortcodes.php:482 ../includes/mycred-shortcodes.php:486
 
 
 
2760
  msgid "error"
2761
  msgstr "erreur"
2762
 
@@ -2792,7 +3187,9 @@ msgstr "Pas de paiement. Uniquement facturer."
2792
  msgid "Pay Content Author."
2793
  msgstr "Payer l'auteur du contenu"
2794
 
2795
- #: ../addons/sell-content/myCRED-addon-sell-content.php:339 ../includes/mycred-overview.php:141 ../includes/mycred-overview.php:148 ../modules/mycred-module-addons.php:224
 
 
2796
  msgid "Sell Content"
2797
  msgstr "Vendre du contenu"
2798
 
@@ -2841,18 +3238,21 @@ msgid "Sale Template for non members"
2841
  msgstr "Template des ventes pour les non mebmres"
2842
 
2843
  #: ../addons/sell-content/myCRED-addon-sell-content.php:415
 
2844
  msgid ""
2845
- "Do <strong>not</strong> use the %buy_button% in this template as a user must be "
2846
- "logged in to buy content!"
2847
  msgstr ""
2848
- "N&#39;utilisez <strong>pas</strong> %buy_button% sur ce template, puisque l&#39;"
2849
- "utilisateur doit &ecirc;tre connect&eacute; pour acheter du contenu !"
2850
 
2851
  #: ../addons/sell-content/myCRED-addon-sell-content.php:419
2852
  msgid "Sale Template for members"
2853
  msgstr "Template des ventes pour les membres"
2854
 
2855
- #: ../addons/sell-content/myCRED-addon-sell-content.php:423 ../addons/sell-content/myCRED-addon-sell-content.php:431
 
 
2856
  msgid "Your template must contain the %buy_button% tag for purchases to work!"
2857
  msgstr ""
2858
  "Votre template doit contenir le mot-cl&eacute; %buy_button% pour que l&#39;"
@@ -2871,10 +3271,12 @@ msgid "Log template for Sales"
2871
  msgstr "Template de connexion pour les ventes"
2872
 
2873
  #: ../addons/sell-content/myCRED-addon-sell-content.php:494
 
2874
  msgid "%s Sell This"
2875
  msgstr "%s a vendu ceci"
2876
 
2877
  #: ../addons/sell-content/myCRED-addon-sell-content.php:548
 
2878
  msgid "%s Sell Content needs to be setup before you can use this feature."
2879
  msgstr ""
2880
  "%s Vendre du contenu doit être paramétré avant que vous ne puissiez utiliser "
@@ -2900,7 +3302,8 @@ msgstr "Les achats expirent après"
2900
  msgid "Thank you for your purchase!"
2901
  msgstr "Merci pour votre achat"
2902
 
2903
- #: ../addons/sell-content/myCRED-addon-sell-content.php:1008 ../addons/sell-content/myCRED-addon-sell-content.php:1094
 
2904
  msgid "The following content is set for sale:"
2905
  msgstr "Le contenu suivant est prévu à la vente:"
2906
 
@@ -2948,11 +3351,11 @@ msgstr "Montant incorrect. Veuillez recommencer."
2948
 
2949
  #: ../addons/transfer/myCRED-addon-transfer.php:146
2950
  msgid ""
2951
- "This myCRED Add-on has not yet been setup! No transfers are allowed until this "
2952
- "has been done!"
2953
  msgstr ""
2954
- "Ce module myCRED n'a pas encore été paramétré. Aucun transfert n'est autorisé "
2955
- "avant qu'il ne soit activé."
2956
 
2957
  #: ../addons/transfer/myCRED-addon-transfer.php:147
2958
  msgid "Insufficient funds. Please enter a lower amount."
@@ -2982,11 +3385,13 @@ msgstr "Nom d'utilisateur (user_login)"
2982
  msgid "User Email (user_email)"
2983
  msgstr "Email (user_email)"
2984
 
2985
- #: ../addons/transfer/myCRED-addon-transfer.php:191 ../addons/transfer/myCRED-addon-transfer.php:631
 
2986
  msgid "Transfer %plural%"
2987
  msgstr "Transf&eacute;rer des %plural%"
2988
 
2989
- #: ../addons/transfer/myCRED-addon-transfer.php:195 ../includes/mycred-widgets.php:593 ../modules/mycred-module-settings.php:469
 
2990
  msgid "Point Types"
2991
  msgstr "Types de Points"
2992
 
@@ -3039,8 +3444,8 @@ msgid ""
3039
  "Text to show when users are not logged in. Leave empty to hide. No HTML "
3040
  "elements allowed!"
3041
  msgstr ""
3042
- "Texte à afficher aux utilisateurs qui ne sont pas connectés. Laissez vide pour "
3043
- "masquer la zone. Les éléments HTML ne sont pas autorisés"
3044
 
3045
  #: ../addons/transfer/myCRED-addon-transfer.php:274
3046
  msgid "Balance Template"
@@ -3051,8 +3456,8 @@ msgid ""
3051
  "Template to use when displaying the users balance (if included). No HTML "
3052
  "elements allowed!"
3053
  msgstr ""
3054
- "Template à utiliser pour l'affichage des relevés des utilisateurs (si inclus). "
3055
- "Les éléments HTML ne sont pas autorisés."
3056
 
3057
  #: ../addons/transfer/myCRED-addon-transfer.php:280
3058
  msgid "Limit Template"
@@ -3084,8 +3489,8 @@ msgstr "Solde insuffisant pour un envoi."
3084
 
3085
  #: ../addons/transfer/myCRED-addon-transfer.php:296
3086
  msgid ""
3087
- "Text to show when a users balance is to low for transfers. Leave empty to hide. "
3088
- "No HTML elements allowed!"
3089
  msgstr ""
3090
  "Texte à afficher quand le solde d'un utilisateur est trop faible pour un "
3091
  "transfert. Laissez vide pour masquer la zone. Les éléments HTML ne sont pas "
@@ -3109,6 +3514,7 @@ msgid "Allow transfers between users."
3109
  msgstr "Autoriser les transferts entre utilisateurs"
3110
 
3111
  #: ../addons/transfer/myCRED-addon-transfer.php:562
 
3112
  msgid "(%s) Transfer"
3113
  msgstr "(%s) Transfert"
3114
 
@@ -3133,6 +3539,7 @@ msgid "email"
3133
  msgstr "email"
3134
 
3135
  #: ../addons/transfer/myCRED-addon-transfer.php:780
 
3136
  msgid "recipients %s"
3137
  msgstr "destinataires %s"
3138
 
@@ -3145,6 +3552,7 @@ msgid "Amount:"
3145
  msgstr "Montant :"
3146
 
3147
  #: ../includes/mycred-about.php:75
 
3148
  msgid "Welcome to %s %s"
3149
  msgstr "Bienvenue dans %s %s"
3150
 
@@ -3153,8 +3561,8 @@ msgid ""
3153
  "Re-save your myCRED Settings & all myCRED widget settings that you are "
3154
  "currently using."
3155
  msgstr ""
3156
- "Réenregistrez vos paramètres myCRED et tous les réglages des widgets myCRED que "
3157
- "vous utilisez actuellement."
3158
 
3159
  #: ../includes/mycred-admin.php:67
3160
  msgid "Re-save your myCRED Hook Settings."
@@ -3165,8 +3573,8 @@ msgid ""
3165
  "Please complete the following tasks in order to finish updating myCRED to "
3166
  "version 1.4:"
3167
  msgstr ""
3168
- "Veuillez compléter les points suivants pour terminer la mise à jour de myCRED 1."
3169
- "4&nbsp;:"
3170
 
3171
  #: ../includes/mycred-admin.php:97
3172
  msgid "User is excluded"
@@ -3188,7 +3596,8 @@ msgstr "&Eacute;chec de la mise à jour de ce solde"
3188
  msgid "Excluded"
3189
  msgstr "Exclus"
3190
 
3191
- #: ../includes/mycred-admin.php:279 ../modules/mycred-module-log.php:250 ../modules/mycred-module-log.php:251
 
3192
  msgid "History"
3193
  msgstr "Mes points"
3194
 
@@ -3197,6 +3606,7 @@ msgid "Adjust"
3197
  msgstr "Ajustement"
3198
 
3199
  #: ../includes/mycred-admin.php:335 ../includes/mycred-admin.php:394
 
3200
  msgid "%singular% balance"
3201
  msgstr "solde de %singular%"
3202
 
@@ -3313,6 +3723,7 @@ msgid "incorrect unix timestamp (to):"
3313
  msgstr "Horodatage unix incorrect (to):"
3314
 
3315
  #: ../includes/mycred-importer.php:11
 
3316
  msgid "%s Log Import"
3317
  msgstr "Importation du journal %s"
3318
 
@@ -3321,6 +3732,7 @@ msgid "Import log entries via a CSV file."
3321
  msgstr "Importation des données de connexion via un fichier CSV"
3322
 
3323
  #: ../includes/mycred-importer.php:43
 
3324
  msgid "%s Balance Import"
3325
  msgstr "Import des soldes %s"
3326
 
@@ -3329,10 +3741,12 @@ msgid "Import balances."
3329
  msgstr "Importer les soldes"
3330
 
3331
  #: ../includes/mycred-importer.php:75
 
3332
  msgid "%s CubePoints Import"
3333
  msgstr "Importation CubePoints %s"
3334
 
3335
- #: ../includes/mycred-importer.php:76 ../includes/importers/mycred-cubepoints.php:344
 
3336
  msgid "Import CubePoints log entries and / or balances."
3337
  msgstr "Importe les données de onnexion CubePoints et/ou les soldes"
3338
 
@@ -3354,8 +3768,8 @@ msgstr "myCRED requiert SQL 5.0 ou sup&eacute;rieur. Version trouv&eacute;e: "
3354
 
3355
  #: ../includes/mycred-install.php:54
3356
  msgid ""
3357
- "Sorry but your WordPress installation does not reach the minimum requirements "
3358
- "for running myCRED. The following errors were given:"
3359
  msgstr ""
3360
  "Désolé mais votre installation WordPress ne dispose pas des ressources "
3361
  "nécessaires au bon fonctionnement de myCRED. Les erreurs suivantes sont "
@@ -3374,6 +3788,7 @@ msgid "myCRED Setup"
3374
  msgstr "Installation de myCRED"
3375
 
3376
  #: ../includes/mycred-install.php:385
 
3377
  msgid "%s Setup"
3378
  msgstr "Configuration %s"
3379
 
@@ -3383,12 +3798,12 @@ msgstr "Etape"
3383
 
3384
  #: ../includes/mycred-install.php:411
3385
  msgid ""
3386
- "Click \"Begin Setup\" to install myCRED. You will be able to select your points "
3387
- "format, layout and security settings."
3388
  msgstr ""
3389
- "Cliquez sur \"Démarrer le paramétrage\" pour installer myCRED. Vous serez alors "
3390
- "en mesure de choisir le format de points, l'apparence et les paramètres de "
3391
- "sécurité."
3392
 
3393
  #: ../includes/mycred-install.php:412
3394
  msgid "Begin Setup"
@@ -3464,14 +3879,16 @@ msgstr "Maximum de %plural% à régler"
3464
 
3465
  #: ../includes/mycred-install.php:556 ../modules/mycred-module-settings.php:390
3466
  msgid ""
3467
- "As an added security, you can set the maximum amount a user can gain or loose "
3468
- "in a single instance. If used, make sure this is the maximum amount a user "
3469
- "would be able to transfer, buy, or spend in your store. Use zero to disable."
3470
- msgstr ""
3471
- "Pour renforcer la sécurité du dispositif, vous pouvez fixer le montant maximum "
3472
- "qu'un utilisateur peut gagner ou perdre lors d'une session. Si vous voulez "
3473
- "utiliser cette option, assurez-vous que ceci est bien le montant maximum "
3474
- "pouvant être dépensé, transféré ou reçu. Utilisez zéro pour désactiver l'option."
 
 
3475
 
3476
  #: ../includes/mycred-install.php:563 ../modules/mycred-module-settings.php:397
3477
  msgid "Exclude those who can \"Edit Settings\"."
@@ -3508,6 +3925,7 @@ msgid "Install & Run"
3508
  msgstr "Installer et démarrer"
3509
 
3510
  #: ../includes/mycred-log.php:389
 
3511
  msgid "Showing %d %s"
3512
  msgstr "Affichage de %d %s"
3513
 
@@ -3528,6 +3946,7 @@ msgid "Current page"
3528
  msgstr "Page actuelle"
3529
 
3530
  #: ../includes/mycred-log.php:424
 
3531
  msgctxt "paging"
3532
  msgid "%1$s of %2$s"
3533
  msgstr "%1$s sur %2$s"
@@ -3566,8 +3985,8 @@ msgstr "Filtre"
3566
 
3567
  #: ../includes/mycred-log.php:609
3568
  msgid ""
3569
- "Log entries are exported to a CSV file and depending on the number of entries "
3570
- "selected, the process may take a few seconds."
3571
  msgstr ""
3572
  "Les données sont exportées dans un fichier CSV. Selon le nombre "
3573
  "d'enregistrements sélectionnés, le processus peut durer un petit moment."
@@ -3592,7 +4011,8 @@ msgstr "Journal de recherche"
3592
  msgid "search log entries"
3593
  msgstr "Recherchez une donnée"
3594
 
3595
- #: ../includes/mycred-log.php:842 ../modules/mycred-module-buddypress.php:232 ../modules/mycred-module-buddypress.php:245
 
3596
  msgid "All"
3597
  msgstr "Historique complet"
3598
 
@@ -3617,10 +4037,12 @@ msgid "Network Settings"
3617
  msgstr "Paramètres du réseau"
3618
 
3619
  #: ../includes/mycred-network.php:169
 
3620
  msgid "%s Network"
3621
  msgstr "Réseau %s"
3622
 
3623
  #: ../includes/mycred-network.php:175
 
3624
  msgid "Note! %s has not yet been setup."
3625
  msgstr "Inofrmation: %s n'a pas encore été configuré."
3626
 
@@ -3629,6 +4051,7 @@ msgid "Network Settings Updated"
3629
  msgstr "Paramètres réseau mis à jour"
3630
 
3631
  #: ../includes/mycred-network.php:181
 
3632
  msgid "Configure network settings for %s."
3633
  msgstr "Configurer le r&eacute;seau pour %s"
3634
 
@@ -3637,18 +4060,20 @@ msgid "Master Template"
3637
  msgstr "Template principal"
3638
 
3639
  #: ../includes/mycred-network.php:199
 
3640
  msgid ""
3641
- "If enabled, %s will use your main site's settings for all other sites in your "
3642
- "network."
3643
  msgstr ""
3644
- "Si activé, %s utilisera les paramètres du site principal pour tous les autres "
3645
- "sites de votre réseau."
3646
 
3647
  #: ../includes/mycred-network.php:202
3648
  msgid "Central Logging"
3649
  msgstr "Connexion centrale"
3650
 
3651
  #: ../includes/mycred-network.php:213
 
3652
  msgid "If enabled, %s will log all site actions in your main site's log."
3653
  msgstr ""
3654
  "Si activé, %s enregistrera toutes les actions du site parmi les activités du "
@@ -3659,16 +4084,18 @@ msgid "Site Block"
3659
  msgstr "Partie site"
3660
 
3661
  #: ../includes/mycred-network.php:220
 
3662
  msgid "Comma separated list of blog ids where %s is to be disabled."
3663
  msgstr ""
3664
- "ID, sépar&eacute;s par des virgules, des blogs ou %s doit &ecirc;tre d&eacute;"
3665
- "sactiv&eacute;."
3666
 
3667
  #: ../includes/mycred-network.php:229
3668
  msgid "Save Network Settings"
3669
  msgstr "Enregistrer les paramètres du réseau"
3670
 
3671
  #: ../includes/mycred-overview.php:25
 
3672
  msgid "%s Overview"
3673
  msgstr "Aperçu %s"
3674
 
@@ -3684,7 +4111,8 @@ msgstr "Promu"
3684
  msgid "Deducted"
3685
  msgstr "Déduit"
3686
 
3687
- #: ../includes/mycred-overview.php:120 ../includes/mycred-overview.php:127 ../modules/mycred-module-addons.php:235
 
3688
  msgid "Transfers"
3689
  msgstr "transferts"
3690
 
@@ -3751,8 +4179,12 @@ msgid "Incoming URI"
3751
  msgstr "URI entrante"
3752
 
3753
  #: ../includes/mycred-remote.php:572
3754
- msgid "The incoming call address. Remote calls made to any other URL will be ignored."
3755
- msgstr "L'adresse d'appel entrante. Tout appel distant depuis une autre URL sera ignoré."
 
 
 
 
3756
 
3757
  #: ../includes/mycred-remote.php:575
3758
  msgid "Debug Mode"
@@ -3800,10 +4232,12 @@ msgid "A video ID is required for this shortcode"
3800
  msgstr "Un ID de vidéo est nécessaire pour utiliser ce shortcode"
3801
 
3802
  #: ../includes/mycred-widgets.php:21
 
3803
  msgid "Show the current users %s balance"
3804
  msgstr "Afficher le solde %s de l'utilisateur"
3805
 
3806
  #: ../includes/mycred-widgets.php:23
 
3807
  msgid "(%s) My Balance"
3808
  msgstr "Mon solde (%s)"
3809
 
@@ -3856,10 +4290,12 @@ msgid "Message"
3856
  msgstr "Message"
3857
 
3858
  #: ../includes/mycred-widgets.php:323
 
3859
  msgid "Show a list of users sorted by their %s balance"
3860
  msgstr "Afficher les utilisateurs triés par leur relevé %s"
3861
 
3862
  #: ../includes/mycred-widgets.php:325
 
3863
  msgid "(%s) Leaderboard"
3864
  msgstr "Classement (%s)"
3865
 
@@ -3893,17 +4329,18 @@ msgstr "Afficher le classement de l'utilisateur courant"
3893
 
3894
  #: ../includes/mycred-widgets.php:446
3895
  msgid ""
3896
- "If the current user is not in this leaderboard, you can select to append them "
3897
- "at the end with their current position."
3898
  msgstr ""
3899
- "Si l'utilisateur courant ne figure pas dans ce classement, vous pouvez choisir "
3900
- "de l'afficher à la fin avec sa position actuelle"
3901
 
3902
  #: ../includes/mycred-widgets.php:495
3903
  msgid "Shows the current users balances for each point type."
3904
  msgstr "Affiche le solde de chaque type de points détenu par l'utilisateur courant."
3905
 
3906
  #: ../includes/mycred-widgets.php:497
 
3907
  msgid "(%s) Wallet"
3908
  msgstr "Wallet (%s)"
3909
 
@@ -3915,19 +4352,27 @@ msgstr "Mon Wallet"
3915
  msgid "Row Layout"
3916
  msgstr "Affichage des colonnes"
3917
 
3918
- #: ../includes/importers/mycred-balances.php:81 ../includes/importers/mycred-balances.php:159 ../includes/importers/mycred-balances.php:198 ../includes/importers/mycred-balances.php:213 ../includes/importers/mycred-log-entries.php:81 ../includes/importers/mycred-log-entries.php:126 ../includes/importers/mycred-log-entries.php:165 ../includes/importers/mycred-log-entries.php:180
 
 
 
 
 
3919
  msgid "Sorry, there has been an error."
3920
  msgstr "Désolé, mais une erreur est survenue&nbsp;!"
3921
 
3922
- #: ../includes/importers/mycred-balances.php:82 ../includes/importers/mycred-log-entries.php:82
 
3923
  msgid "The file does not exist, please try again."
3924
  msgstr "Le fichier n'existe pas, veuillez faire un nouvel essai."
3925
 
3926
- #: ../includes/importers/mycred-balances.php:160 ../includes/importers/mycred-log-entries.php:127
 
3927
  msgid "The CSV is invalid."
3928
  msgstr "Le fichier CSV n'est pas valide."
3929
 
3930
  #: ../includes/importers/mycred-balances.php:171
 
3931
  msgid ""
3932
  "Import complete - A total of <strong>%d</strong> balances were successfully "
3933
  "imported. <strong>%d</strong> was skipped."
@@ -3935,11 +4380,13 @@ msgstr ""
3935
  "Import terminé - Un total de <strong>%d</strong> soldes a été importé avec "
3936
  "succès ! <strong>%d</strong> reste(nt) ignoré(s)"
3937
 
3938
- #: ../includes/importers/mycred-balances.php:181 ../includes/importers/mycred-cubepoints.php:293 ../includes/importers/mycred-log-entries.php:148
 
3939
  msgid "View Log"
3940
  msgstr "Afficher le rapport"
3941
 
3942
- #: ../includes/importers/mycred-balances.php:181 ../includes/importers/mycred-cubepoints.php:293 ../includes/importers/mycred-log-entries.php:148
 
3943
  msgid "Import More"
3944
  msgstr "En importer davantage"
3945
 
@@ -3951,7 +4398,8 @@ msgstr "Importation des soldes"
3951
  msgid "Import balances from a CSV file."
3952
  msgstr "Importer les soldes depuis un fichier CSV."
3953
 
3954
- #: ../includes/importers/mycred-balances.php:252 ../includes/importers/mycred-log-entries.php:219
 
3955
  msgid ""
3956
  "Before you can upload your import file, you will need to fix the following "
3957
  "error:"
@@ -3959,19 +4407,24 @@ msgstr ""
3959
  "Avant de pouvoir télécharger votre fichier d'importation, vous devez d'abord "
3960
  "corriger les erreurs suivantes:"
3961
 
3962
- #: ../includes/importers/mycred-balances.php:261 ../includes/importers/mycred-log-entries.php:228
 
3963
  msgid "Choose a file from your computer:"
3964
  msgstr "Sélectionnez un fichier:"
3965
 
3966
- #: ../includes/importers/mycred-balances.php:267 ../includes/importers/mycred-log-entries.php:234
 
 
3967
  msgid "Maximum size: %s"
3968
  msgstr "Taille maximum: %s"
3969
 
3970
- #: ../includes/importers/mycred-balances.php:272 ../includes/importers/mycred-log-entries.php:239
 
3971
  msgid "OR enter path to file:"
3972
  msgstr "OU indiquez le chemin vers le fichier:"
3973
 
3974
- #: ../includes/importers/mycred-balances.php:279 ../includes/importers/mycred-log-entries.php:246
 
3975
  msgid "Delimiter"
3976
  msgstr "Délimiteur"
3977
 
@@ -3987,7 +4440,8 @@ msgstr "Remplace le solde actuel par le montant figurant dans le fichier CSV"
3987
  msgid "Adjust current balances according to the amount in this CSV file"
3988
  msgstr "Ajuste les soldes actuels avec les montants figurants dans le fichier CSV"
3989
 
3990
- #: ../includes/importers/mycred-balances.php:292 ../includes/importers/mycred-log-entries.php:252
 
3991
  msgid "Upload file and import"
3992
  msgstr "Télécharger et importer le fichier"
3993
 
@@ -3999,7 +4453,9 @@ msgstr "Aucun solde n'a été importé"
3999
  msgid "No log entries were imported!"
4000
  msgstr "Aucune donnée n'a été importée"
4001
 
4002
- #: ../includes/importers/mycred-cubepoints.php:282 ../includes/importers/mycred-log-entries.php:138
1
  msgid ""
2
  msgstr ""
3
+ "Project-Id-Version: myCRED\n"
4
  "Report-Msgid-Bugs-To: http://mycred.me\n"
5
  "POT-Creation-Date: 2014-03-20 14:26+0100\n"
6
+ "PO-Revision-Date: Wed Jun 11 2014 16:26:49 GMT+0200 (CEST)\n"
7
+ "Last-Translator: Gabriel <gabriel.s@merovingi.com>\n"
8
+ "Language-Team: LANGUAGE <support@mycred.me>\n"
9
  "Language: French\n"
10
  "Plural-Forms: nplurals=2; plural=n > 1\n"
11
  "MIME-Version: 1.0\n"
12
  "Content-Type: text/plain; charset=UTF-8\n"
13
  "Content-Transfer-Encoding: 8bit\n"
14
  "X-Poedit-SourceCharset: UTF-8\n"
15
+ "X-Poedit-KeywordsList: _:1;gettext:1;dgettext:2;ngettext:1,2;dngettext:2,3;"
16
+ "__:1;_e:1;_c:1;_n:1,2;_n_noop:1,2;_nc:1,2;__ngettext:1,2;__ngettext_noop:1,2;"
17
+ "_x:1,2c;_ex:1,2c;_nx:1,2,4c;_nx_noop:1,2,3c;_n_js:1,2;_nx_js:1,2,3c;"
18
+ "esc_attr__:1;esc_html__:1;esc_attr_e:1;esc_html_e:1;esc_attr_x:1,2c;"
19
+ "esc_html_x:1,2c;comments_number_link:2,3;t:1;st:1;trans:1;transChoice:1,2\n"
20
  "X-Poedit-Basepath: .\n"
21
  "X-Loco-Target-Locale: fr_FR\n"
22
  "X-Generator: Loco - https://localise.biz/"
23
 
24
+ #: ../mycred.php:400
25
  msgid "Balance"
26
  msgstr "Solde"
27
 
28
+ #: ../mycred.php:425
29
  msgid "%label% History"
30
  msgstr "Historique %label%"
31
 
32
+ #: ../mycred.php:478
33
  msgid "No balances available."
34
  msgstr "Aucun solde disponible"
35
 
36
+ #: ../mycred.php:524
37
+ #, php-format
38
  msgid "About %s"
39
  msgstr "&Agrave; propos de %s"
40
 
41
+ #: ../mycred.php:533
42
  msgid "Awesome People"
43
  msgstr "On les remercie"
44
 
45
+ #: ../mycred.php:618 ../mycred.php:642 ../addons/ranks/myCRED-addon-ranks.php:230
46
+ #: ../addons/ranks/myCRED-addon-ranks.php:922 ../addons/sell-content/myCRED-addon-
47
+ #: sell-content.php:309 ../addons/transfer/myCRED-addon-transfer.php:132 ..
48
+ #: includes/mycred-shortcodes.php:535
49
  msgid "Processing..."
50
  msgstr "Chargement en cours..."
51
 
52
+ #: ../mycred.php:619
53
  msgid ""
54
+ "Warning! All entries in your log will be permanently removed! This can not "
55
+ "be undone!"
56
  msgstr ""
57
+ "Attention ! Toutes les entrées seront définitivement supprimées. Cette "
58
+ "action ne pourra pas être annulée."
59
 
60
+ #: ../mycred.php:620
61
  msgid ""
62
  "All log entries belonging to deleted users will be permanently deleted! This "
63
  "can not be undone!"
64
  msgstr ""
65
+ "Toutes les entrées appartenant aux utilisateurs supprimés seront "
66
+ "définitivement détruites. Cette action ne pourra pas être annulée."
67
 
68
+ #: ../mycred.php:621
69
  msgid "Warning! All user balances will be set to zero! This can not be undone!"
70
  msgstr ""
71
  "Attention ! Les soldes de tous les utilisateurs seront remis à zéro. Cette "
72
  "action ne pourra pas être annulée."
73
 
74
+ #: ../mycred.php:622
75
  msgid "Done!"
76
  msgstr "Terminé !"
77
 
78
+ #: ../mycred.php:623 ../mycred.php:641 ../mycred.php:659
79
  msgid "Close"
80
  msgstr "fermer"
81
 
82
+ #: ../mycred.php:624
83
  msgid "Export users %plural%"
84
  msgstr "Exportation des %plural% des utilisateurs"
85
 
86
+ #: ../mycred.php:640
87
  msgid "Edit Users Balance"
88
  msgstr "Modifier le solde des utilisateurs"
89
 
90
+ #: ../mycred.php:658
91
  msgid "Edit Log Entry"
92
  msgstr "Modifier une entrée du journal"
93
 
94
+ #: ../mycred.php:660
95
  msgid "Updating..."
96
  msgstr "Mise à jour en cours..."
97
 
98
+ #: ../mycred.php:662
99
  msgid "Are you sure you want to delete this log entry? This can not be undone!"
100
  msgstr ""
101
+ "Soyez prudent. L'action que vous vous apprêtez à effectuer ne pourra pas "
102
+ "être annulée."
103
 
104
+ #: ../mycred.php:663
105
  msgid "Log entry updated"
106
  msgstr "L'entrée du journal a été mise à jour"
107
 
108
+ #: ../mycred.php:715 ../mycred.php:736 ../addons/email-notices/myCRED-addon-email-
109
+ #: notices.php:738 ../addons/gateway/event-booking/mycred-eventsmanager-pro.php:
110
+ #: 458 ../addons/gateway/event-booking/mycred-eventsmanager.php:537
111
  msgid "Setup"
112
  msgstr "Configuration"
113
 
114
+ #: ../mycred.php:717 ../addons/gateway/carts/mycred-marketpress.php:360 ..
115
+ #: includes/mycred-network.php:186 ../modules/mycred-module-settings.php:20 ..
116
+ #: modules/mycred-module-settings.php:21 ../modules/mycred-module-settings.php:22
117
  msgid "Settings"
118
  msgstr "Configuration"
119
 
120
+ #: ../mycred.php:740 ../modules/mycred-module-addons.php:360
121
  msgid "About"
122
  msgstr "&Agrave; propos"
123
 
124
+ #: ../mycred.php:741
125
  msgid "Tutorials"
126
  msgstr "Tutoriels"
127
 
128
+ #: ../mycred.php:742
129
  msgid "Codex"
130
  msgstr "Codex"
131
 
132
+ #: ../mycred.php:743
133
  msgid "Store"
134
  msgstr "Boutique"
135
 
136
+ #: ../mycred.php:757
137
  msgid ""
138
+ "Make sure to backup your database and files before updating, in case "
139
+ "anything goes wrong!"
140
  msgstr ""
141
+ "Agissez prudemment en sauvegardant votre base de données et vos fichiers "
142
+ "avant de lancer la mise à jour."
143
 
144
  #: ../abstracts/mycred-abstract-hook.php:70
145
  msgid "function myCRED_Hook::run() must be over-ridden in a sub-class."
146
  msgstr ""
147
+ "La fonction myCRED_Hook::run() doit &ecirc;tre substitu&eacute;e par une "
148
+ "sous-classe."
149
 
150
  #: ../abstracts/mycred-abstract-hook.php:79
151
  msgid "This Hook has no settings"
152
  msgstr "Ce hook n'a pas de paramètre."
153
 
154
+ #: ../abstracts/mycred-abstract-hook.php:157 ../modules/mycred-module-hooks.php:
155
+ #: 1192
156
  msgid "No limit"
157
  msgstr "Illimité"
158
 
172
  msgid "Once per day (reset at midnight)"
173
  msgstr "Une fois par jour (remise à zéro à minuit)"
174
 
175
+ #: ../abstracts/mycred-abstract-hook.php:168 ../addons/banking/abstracts/mycred-
176
+ #: abstract-service.php:342 ../addons/buy-creds/myCRED-addon-buy-creds.php:394 ..
177
+ #: addons/buy-creds/myCRED-addon-buy-creds.php:415 ../addons/buy-
178
+ #: creds/abstracts/mycred-abstract-payment-gateway.php:805 ../addons/buy-
179
+ #: creds/abstracts/mycred-abstract-payment-gateway.php:828 ../addons/buy-
180
+ #: creds/gateways/zombaio.php:375 ../addons/email-notices/myCRED-addon-email-
181
+ #: notices.php:193 ../addons/email-notices/myCRED-addon-email-notices.php:888
182
  msgid "Select"
183
  msgstr "sélectionnez"
184
 
186
  msgid "myCRED_Module() Error. A Module ID is required!"
187
  msgstr "Erreur de module myCred. Un ID est obligatoire."
188
 
189
+ #: ../abstracts/mycred-abstract-module.php:343 ../abstracts/mycred-abstract-
190
+ #: module.php:351
191
  msgid "Surprise"
192
  msgstr "Surprise"
193
 
199
  msgid "click to open"
200
  msgstr "cliquez pour ouvrir"
201
 
202
+ #: ../abstracts/mycred-abstract-module.php:472 ../addons/banking/myCRED-addon-
203
+ #: banking.php:163 ../addons/buy-creds/myCRED-addon-buy-creds.php:492
204
  msgid "Settings Updated"
205
  msgstr "Configuration mise à jour"
206
 
207
+ #: ../addons/banking/myCRED-addon-banking.php:42 ../addons/banking/myCRED-addon-
208
+ #: banking.php:43 ../addons/banking/myCRED-addon-banking.php:44 ../modules/mycred-
209
+ #: module-addons.php:146
210
  msgid "Banking"
211
  msgstr "Banque"
212
 
215
  msgstr "Appliquer des Intérêts"
216
 
217
  #: ../addons/banking/myCRED-addon-banking.php:104
218
+ #, php-format
219
  msgid ""
220
  "Apply an interest rate on your users %_plural% balances. Interest rate is "
221
  "annual and is compounded daily as long as this service is enabled. Positive "
222
+ "interest rate leads to users gaining %_plural% while a negative interest "
223
+ "rate will to users loosing %_plural%."
224
  msgstr ""
225
  "Appliquez un taux d'intérêt aux comptes de %_plural% de vos utilisateurs. Le "
226
  "taux est annuel et il est recomposé quotidiennement tant que ce service est "
232
  msgstr "Paiements répétés"
233
 
234
  #: ../addons/banking/myCRED-addon-banking.php:111
235
+ #, php-format
236
  msgid ""
237
+ "Give your users %_plural% on a regular basis with the option to set the "
238
+ "number of times you want this payout to run (cycles)."
239
  msgstr ""
240
+ "Attribuez régulièrement des %_plural% à vos utilisateurs, en fixant le cycle "
241
+ "de répétition pour les créditer."
242
 
243
+ #: ../addons/banking/myCRED-addon-banking.php:156 ../addons/buy-creds/myCRED-
244
+ #: addon-buy-creds.php:477 ../addons/buy-creds/myCRED-addon-buy-creds.php:607 ..
245
+ #: includes/mycred-network.php:160 ../modules/mycred-module-addons.php:266 ..
246
+ #: modules/mycred-module-hooks.php:157 ../modules/mycred-module-log.php:322 ..
247
+ #: modules/mycred-module-log.php:575 ../modules/mycred-module-settings.php:312
248
  msgid "Access Denied"
249
  msgstr "Accès refusé"
250
 
251
  #: ../addons/banking/myCRED-addon-banking.php:167
252
+ #, php-format
253
  msgid "%s Banking"
254
  msgstr "Paiement %s"
255
 
256
+ #: ../addons/banking/myCRED-addon-banking.php:168 ../modules/mycred-module-addons.
257
+ #: php:147
258
  msgid "Setup recurring payouts or offer / charge interest on user account balances."
259
  msgstr ""
260
+ "Paramétrez les paiements réguliers ou offres / pénalités et intérêts "
261
+ "relatifs aux soldes de comptes de vos utilisateurs."
262
 
263
  #: ../addons/banking/myCRED-addon-banking.php:171
264
  msgid "WP-Cron deactivation detected!"
268
  msgid "Warning! This add-on requires WP - Cron to work."
269
  msgstr "Attention ! Pour utiliser ce module, WP-Cron est obligatoire."
270
 
271
+ #: ../addons/banking/myCRED-addon-banking.php:188 ../addons/buy-creds/myCRED-
272
+ #: addon-buy-creds.php:553 ../modules/mycred-module-hooks.php:182
273
  msgid "Enable"
274
  msgstr "Activer"
275
 
276
+ #: ../addons/banking/myCRED-addon-banking.php:201 ../modules/mycred-module-hooks.
277
+ #: php:197
278
  msgid "Update Changes"
279
  msgstr "Enregistrer les modifications"
280
 
330
 
331
  #: ../addons/banking/services/mycred-bank-service-interest.php:288
332
  msgid "The interest rate can be either positive or negative and is compounded daily."
333
+ msgstr ""
334
+ "Le taux d'intérêt est recalculé quotidiennement et peut être positif ou "
335
+ "négatif."
336
 
337
+ #: ../addons/banking/services/mycred-bank-service-interest.php:291 ..
338
+ #: addons/coupons/myCRED-addon-coupons.php:392
339
  msgid "Minimum Balance"
340
  msgstr "Solde minimum"
341
 
343
  msgid "The minimum requires balance for interest to apply."
344
  msgstr "Le solde minimum pour l'application d'intérêts"
345
 
346
+ #: ../addons/banking/services/mycred-bank-service-interest.php:298 ..
347
+ #: addons/banking/services/mycred-bank-service-payouts.php:252 ../addons/buy-
348
+ #: creds/myCRED-addon-buy-creds.php:372 ../addons/buy-creds/myCRED-addon-buy-
349
+ #: creds.php:431 ../addons/coupons/myCRED-addon-coupons.php:440 ..
350
+ #: addons/gateway/carts/mycred-marketpress.php:384 ..
351
+ #: addons/gateway/carts/mycred-marketpress.php:417 ..
352
+ #: addons/gateway/carts/mycred-woocommerce.php:98 ../addons/gateway/carts/mycred-
353
+ #: woocommerce.php:164 ../addons/gateway/carts/mycred-wpecommerce.php:367 ..
354
+ #: modules/mycred-module-hooks.php:520 ../modules/mycred-module-hooks.php:1389 ..
355
+ #: modules/mycred-module-hooks.php:1729 ../plugins/mycred-hook-badgeOS.php:115 ..
356
+ #: plugins/mycred-hook-badgeOS.php:117 ../plugins/mycred-hook-badgeOS.php:126 ..
357
+ #: plugins/mycred-hook-events-manager-light.php:153 ../plugins/mycred-hook-
358
+ #: events-manager-light.php:166 ../plugins/mycred-hook-gd-star-rating.php:109 ..
359
+ #: plugins/mycred-hook-gd-star-rating.php:122 ../plugins/mycred-hook-wp-favorite-
360
+ #: posts.php:135 ../plugins/mycred-hook-wp-favorite-posts.php:148 ..
361
+ #: plugins/mycred-hook-wp-polls.php:136
362
  msgid "Log Template"
363
  msgstr "Texte à afficher"
364
 
365
+ #: ../addons/banking/services/mycred-bank-service-interest.php:305 ..
366
+ #: addons/banking/services/mycred-bank-service-payouts.php:259
367
  msgid "Run Time"
368
  msgstr "Délai d'exécution"
369
 
370
+ #: ../addons/banking/services/mycred-bank-service-interest.php:309 ..
371
+ #: addons/banking/services/mycred-bank-service-payouts.php:263
372
  msgid ""
373
+ "For large websites, if you are running into time out issues during payouts, "
374
+ "you can set the number of seconds a process can run. Use zero for unlimited, "
375
+ "but be careful especially if you are on a shared server."
376
  msgstr ""
377
+ "Si vous rencontrez des problèmes d'exécution pendant les paiements sur un "
378
+ "gros site, vous pouvez définir le nombre de secondes alloué à l'exécution du "
379
  "processus. Indiquez 0 pour un nombre illimité. Dans ce cas, soyez "
380
  "particulièrement prudent si vous êtes sur un hébergement mutualisé."
381
 
391
  msgid "Pay Users"
392
  msgstr "Payer les Utilisateurs"
393
 
394
+ #: ../addons/banking/services/mycred-bank-service-payouts.php:222 ../addons/buy-
395
+ #: creds/myCRED-addon-buy-creds.php:657 ../addons/buy-creds/myCRED-addon-buy-
396
+ #: creds.php:1160 ../addons/buy-creds/abstracts/mycred-abstract-payment-gateway.
397
+ #: php:425 ../includes/mycred-admin.php:371 ../includes/mycred-admin.php:482
398
  msgid "Amount"
399
  msgstr "Montant"
400
 
402
  msgid "Can not be zero."
403
  msgstr "Ne peut être zéro."
404
 
405
+ #: ../addons/banking/services/mycred-bank-service-payouts.php:228 ..
406
+ #: addons/banking/services/mycred-bank-service-payouts.php:241 ../modules/mycred-
407
+ #: module-hooks.php:1744
408
  msgid "Interval"
409
  msgstr "Intervalle"
410
 
411
+ #: ../addons/banking/services/mycred-bank-service-payouts.php:233 ..
412
+ #: addons/banking/services/mycred-bank-service-payouts.php:242
413
  msgid "Cycles"
414
  msgstr "Périodicité"
415
 
424
  #: ../addons/banking/services/mycred-bank-service-payouts.php:241
425
  msgid ""
426
  "Select how often you want to award %_plural%. Note that when this service is "
427
+ "enabled, the first payout will be in the beginning of the next period. So "
428
+ "with a \"Daily\" interval, the first payout will occur first thing in the "
429
+ "morning."
430
  msgstr ""
431
+ "Choisissez le nombre de fois que vous voulez attribuer des %_plural%. Notez "
432
+ "que si ce service est activé, le premier paiement ne se fera qu'au début de "
433
+ "la période suivante. Par exemple, si vous choissez \"Quotidiennement\", il ne "
434
+ "sera effectué que le lendemain matin."
435
 
436
  #: ../addons/banking/services/mycred-bank-service-payouts.php:242
437
  msgid ""
438
+ "Cycles let you choose how many intervals this service should run. Each time "
439
+ "a cycle runs, the value will decrease until it hits zero, in which case this "
440
  "service will deactivate itself. Use -1 to run unlimited times."
441
  msgstr ""
442
  "Les cycles vous permettent de choisir l'intervalle d'exécution du service. "
443
+ "Après chaque cycle, la valeur décroitra jusqu'à atteindre zéro, auquel cas "
444
+ "le service se désactivera de lui-même. Utilisez -1 pour un fonctionnement "
445
  "perpétuel."
446
 
447
  #: ../addons/banking/services/mycred-bank-service-payouts.php:243
450
 
451
  #: ../addons/banking/services/mycred-bank-service-payouts.php:243
452
  msgid ""
453
+ "You can always stop payouts by deactivating this service. Just remember that "
454
+ "if you deactivate while there are cycles left, this service will continue on "
455
+ "when it gets re-activated. Set cycles to zero to reset."
456
  msgstr ""
457
  "Vous pourrez toujours stopper les paiements en désactivant ce service. Notez "
458
+ "que si vous le désactivez alors que des cycles sont encore en cours, le "
459
+ "service reprendra à ce stade lorque vous le réactiverez. Indiquez zéro pour "
460
  "réinitialiser les cycles."
461
 
462
+ #: ../addons/banking/services/mycred-bank-service-payouts.php:245 ..
463
+ #: includes/mycred-install.php:559 ../modules/mycred-module-settings.php:393
464
  msgid "Excludes"
465
  msgstr "Exclure"
466
 
472
  "Liste des utilisateurs à exclure. Séparez les ID par une virgule. Espaces "
473
  "interdits !"
474
 
475
+ #: ../addons/buy-creds/myCRED-addon-buy-creds.php:55 ../addons/buy-creds/myCRED-
476
+ #: addon-buy-creds.php:56 ../addons/buy-creds/myCRED-addon-buy-creds.php:57
477
  msgid "Payment Gateways"
478
  msgstr "Services de paiement"
479
 
480
+ #: ../addons/buy-creds/myCRED-addon-buy-creds.php:192
481
  msgid "buyCRED Purchase Log"
482
  msgstr "Journal d'achat buyCRED"
483
 
484
+ #: ../addons/buy-creds/myCRED-addon-buy-creds.php:193 ../addons/buy-creds/myCRED-
485
+ #: addon-buy-creds.php:421 ../addons/buy-creds/myCRED-addon-buy-creds.php:488
486
  msgid "Purchase Log"
487
  msgstr "Journal d'achat"
488
 
489
+ #: ../addons/buy-creds/myCRED-addon-buy-creds.php:281 ../addons/gateway/event-
490
+ #: booking/mycred-eventespresso3.php:26 ../addons/gateway/event-booking/mycred-
491
+ #: eventsmanager-pro.php:475 ../addons/gateway/event-booking/mycred-eventsmanager.
492
+ #: php:540 ../addons/sell-content/myCRED-addon-sell-content.php:361
493
  msgid "Payments"
494
  msgstr "Paiements"
495
 
496
+ #: ../addons/buy-creds/myCRED-addon-buy-creds.php:311
497
  msgid "Please login to purchase %_plural%"
498
  msgstr "Veuillez vous connecter pour acquérir des %_plural%"
499
 
500
+ #: ../addons/buy-creds/myCRED-addon-buy-creds.php:326
501
+ #, php-format
502
  msgid "Gift purchase from %display_name%."
503
  msgstr "Achat de cadeau par %display_name%."
504
 
505
+ #: ../addons/buy-creds/myCRED-addon-buy-creds.php:344 ../addons/ranks/myCRED-
506
+ #: addon-ranks.php:649
507
  msgid "Minimum %plural%"
508
  msgstr "%plural% minimum"
509
 
510
+ #: ../addons/buy-creds/myCRED-addon-buy-creds.php:348
511
  msgid "Minimum amount of %plural% a user must purchase. Will default to 1."
512
  msgstr "Nombre minimum de %_plural% qu&#39;un membre peut acheter. 1 par défaut !"
513
 
514
+ #: ../addons/buy-creds/myCRED-addon-buy-creds.php:353 ../addons/coupons/myCRED-
515
+ #: addon-coupons.php:315 ../addons/gateway/carts/mycred-marketpress.php:378 ..
516
+ #: addons/gateway/carts/mycred-woocommerce.php:108 ..
517
+ #: addons/gateway/carts/mycred-wpecommerce.php:350 ../addons/gateway/event-
518
+ #: booking/mycred-eventespresso3.php:437 ../addons/gateway/event-booking/mycred-
519
+ #: eventsmanager-pro.php:463 ../addons/gateway/event-booking/mycred-eventsmanager.
520
+ #: php:550 ../addons/sell-content/myCRED-addon-sell-content.php:349 ..
521
+ #: includes/mycred-widgets.php:204 ../includes/mycred-widgets.php:401 ..
522
+ #: includes/importers/mycred-cubepoints.php:365
523
  msgid "Point Type"
524
  msgstr "Type de point"
525
 
526
+ #: ../addons/buy-creds/myCRED-addon-buy-creds.php:365
527
  msgid "Login Template"
528
  msgstr "Template de connexion"
529
 
530
+ #: ../addons/buy-creds/myCRED-addon-buy-creds.php:369
531
  msgid "Content to show when a user is not logged in."
532
  msgstr "Contenu à afficher quand un utilisateur n'est pas connecté."
533
 
534
+ #: ../addons/buy-creds/myCRED-addon-buy-creds.php:379
535
  msgid "Thank You Page"
536
  msgstr "Page de remerciement"
537
 
538
+ #: ../addons/buy-creds/myCRED-addon-buy-creds.php:382 ../addons/buy-creds/myCRED-
539
+ #: addon-buy-creds.php:403
540
  msgid "Custom URL"
541
  msgstr "URL personnalisée"
542
 
543
+ #: ../addons/buy-creds/myCRED-addon-buy-creds.php:387 ../addons/buy-creds/myCRED-
544
+ #: addon-buy-creds.php:408
545
  msgid "Page"
546
  msgstr "Page"
547
 
548
+ #: ../addons/buy-creds/myCRED-addon-buy-creds.php:400
549
  msgid "Cancellation Page"
550
  msgstr "Page d'annulation"
551
 
552
+ #: ../addons/buy-creds/myCRED-addon-buy-creds.php:423
553
  msgid "Show seperate log for %_plural% purchases."
554
  msgstr "Afficher des journaux séparés pour l'achat de %_plural%"
555
 
556
+ #: ../addons/buy-creds/myCRED-addon-buy-creds.php:425
557
  msgid "Gifting"
558
  msgstr "Remise de cadeaux"
559
 
560
+ #: ../addons/buy-creds/myCRED-addon-buy-creds.php:427
561
+ #, php-format
562
  msgid "Allow users to buy %_plural% for other users."
563
  msgstr "Autoriser les membres à acquérir des %_plural% pour d'autres membres"
564
 
565
+ #: ../addons/buy-creds/myCRED-addon-buy-creds.php:428
566
+ #, php-format
567
  msgid "Allow users to buy %_plural% for content authors."
568
  msgstr "Autoriser les membres à acquérir des %_plural% pour les auteurs de contenus"
569
 
570
+ #: ../addons/buy-creds/myCRED-addon-buy-creds.php:488
571
+ #, php-format
572
  msgid "%s Payment Gateways"
573
  msgstr "%s Services de Paiements"
574
 
575
+ #: ../addons/buy-creds/myCRED-addon-buy-creds.php:488 ../addons/buy-creds/myCRED-
576
+ #: addon-buy-creds.php:663
577
  msgid "buyCRED Settings"
578
  msgstr "Configuration buyCRED"
579
 
580
+ #: ../addons/buy-creds/myCRED-addon-buy-creds.php:494
581
  msgid "Select the payment gateways you want to offer your users to buy %plural%."
582
  msgstr ""
583
+ "S&eacute;lectionnez le syst&egrave;me de paiement de %plural% que vous "
584
+ "voulez mettre &agrave; la disposition de vos membres."
585
 
586
+ #: ../addons/buy-creds/myCRED-addon-buy-creds.php:501
587
  msgid "Last Payment Notification"
588
  msgstr "Message pour dernier paiement"
589
 
590
+ #: ../addons/buy-creds/myCRED-addon-buy-creds.php:503
591
  msgid ""
592
  "Here you can view the last payment confirmation that was sent to buyCRED for "
593
  "processing."
594
+ msgstr ""
595
+ "Consultez ici le message de confirmation du dernier paiement traité par "
596
+ "buyCRED"
597
 
598
+ #: ../addons/buy-creds/myCRED-addon-buy-creds.php:506
599
  msgid "Details"
600
  msgstr "Détails"
601
 
602
+ #: ../addons/buy-creds/myCRED-addon-buy-creds.php:509 ../modules/mycred-module-
603
+ #: log.php:541
604
  msgid "Time"
605
  msgstr "Durée"
606
 
607
+ #: ../addons/buy-creds/myCRED-addon-buy-creds.php:513 ../addons/buy-creds/myCRED-
608
+ #: addon-buy-creds.php:654 ../includes/mycred-overview.php:166 ../includes/mycred-
609
+ #: overview.php:173 ../modules/mycred-module-addons.php:190
610
  msgid "Gateway"
611
  msgstr "Service"
612
 
613
+ #: ../addons/buy-creds/myCRED-addon-buy-creds.php:517 ../addons/buy-creds/myCRED-
614
+ #: addon-buy-creds.php:659
615
  msgid "Transaction ID"
616
  msgstr "ID de la transaction"
617
 
618
+ #: ../addons/buy-creds/myCRED-addon-buy-creds.php:521
619
  msgid "Outcome"
620
  msgstr "Résultat"
621
 
622
+ #: ../addons/buy-creds/myCRED-addon-buy-creds.php:525
623
  msgid "Gateway Log"
624
  msgstr "Traçage du Service"
625
 
626
+ #: ../addons/buy-creds/myCRED-addon-buy-creds.php:533
627
  msgid "No recorded calls found."
628
  msgstr "Aucun enregistrement d'appel n'a été trouvé."
629
 
630
+ #: ../addons/buy-creds/myCRED-addon-buy-creds.php:546
631
  msgid "Test Mode"
632
  msgstr "Mode Test"
633
 
634
+ #: ../addons/buy-creds/myCRED-addon-buy-creds.php:548
635
  msgid "Enabled"
636
  msgstr "Activé"
637
 
638
+ #: ../addons/buy-creds/myCRED-addon-buy-creds.php:551
639
  msgid "Disabled"
640
  msgstr "Désactivé"
641
 
642
+ #: ../addons/buy-creds/myCRED-addon-buy-creds.php:561
643
  msgid "Sandbox Mode"
644
  msgstr "Mode bac à sable"
645
 
646
+ #: ../addons/buy-creds/myCRED-addon-buy-creds.php:564
647
  msgid "Enable for test purchases."
648
  msgstr "Activez pour faire des tests d'achats factices."
649
 
650
+ #: ../addons/buy-creds/myCRED-addon-buy-creds.php:581
651
  msgid "Update Gateway Settings"
652
  msgstr "Mettre à jour la configuration du service de paiement"
653
 
654
+ #: ../addons/buy-creds/myCRED-addon-buy-creds.php:655 ../addons/email-
655
+ #: notices/myCRED-addon-email-notices.php:786 ../addons/email-notices/myCRED-
656
+ #: addon-email-notices.php:915 ../includes/mycred-admin.php:477 ..
657
+ #: includes/mycred-log.php:639 ../modules/mycred-module-log.php:540
658
  msgid "User"
659
  msgstr "Utilisateur"
660
 
661
+ #: ../addons/buy-creds/myCRED-addon-buy-creds.php:656 ../includes/mycred-log.php:
662
+ #: 640
663
  msgid "Date"
664
  msgstr "Daté"
665
 
666
+ #: ../addons/buy-creds/myCRED-addon-buy-creds.php:658
667
  msgid "Payed"
668
  msgstr "Payé"
669
 
670
+ #: ../addons/buy-creds/myCRED-addon-buy-creds.php:663
671
  msgid "<strong>buy</strong>CRED Purchase Log"
672
  msgstr "Relevé des achats <strong>buy</strong>CRED"
673
 
674
+ #: ../addons/buy-creds/myCRED-addon-buy-creds.php:663 ../addons/gateway/event-
675
+ #: booking/mycred-eventespresso3.php:367
676
  msgid "Gateway Settings"
677
  msgstr "Configuration du service de paiement"
678
 
679
+ #: ../addons/buy-creds/myCRED-addon-buy-creds.php:667
680
  msgid ""
681
  "Only completed purchases are shown here. Purchases that were cancelled or "
682
  "failed are not logged."
684
  "Seuls les achats entièrement réglés sont affichés ici. Les achats annulés ou "
685
  "interrompus ne sont pas enregistrés et n'apparaissent pas sur ce relevé."
686
 
687
+ #: ../addons/buy-creds/myCRED-addon-buy-creds.php:776 ../includes/mycred-log.php:
688
+ #: 743 ../modules/mycred-module-log.php:462
689
  msgid "User Missing"
690
  msgstr "Utilisateur inexistant"
691
 
692
+ #: ../addons/buy-creds/myCRED-addon-buy-creds.php:839 ../addons/sell-
693
+ #: content/myCRED-addon-sell-content.php:1112
694
  msgid "No purchases found"
695
  msgstr "Aucun achat trouvé"
696
 
697
+ #: ../addons/buy-creds/myCRED-addon-buy-creds.php:911 ../addons/buy-creds/myCRED-
698
+ #: addon-buy-creds.php:1008
699
  msgid "This Add-on needs to setup before you can use this shortcode."
700
  msgstr ""
701
  "Ce module doit d'abord être paramétré avant que vous ne puissiez utiliser ce "
702
  "shortcode."
703
 
704
+ #: ../addons/buy-creds/myCRED-addon-buy-creds.php:929 ../addons/buy-creds/myCRED-
705
+ #: addon-buy-creds.php:1026
706
  msgid "No gateways installed."
707
  msgstr "Aucun systme de paiement n'est installé."
708
 
709
+ #: ../addons/buy-creds/myCRED-addon-buy-creds.php:930 ../addons/buy-creds/myCRED-
710
+ #: addon-buy-creds.php:1027
711
  msgid "Gateway does not exist."
712
  msgstr "Le service de paiement n'existe pas."
713
 
714
+ #: ../addons/buy-creds/myCRED-addon-buy-creds.php:966
715
  msgid "Yourself"
716
  msgstr "Vous-même"
717
 
718
+ #: ../addons/buy-creds/myCRED-addon-buy-creds.php:1028
719
  msgid "No active gateways found."
720
  msgstr "Aucun service de paiement n'a été trouvé."
721
 
722
+ #: ../addons/buy-creds/myCRED-addon-buy-creds.php:1029
723
  msgid "The selected gateway is not active."
724
  msgstr "Ce service de paiement n'est pas activé"
725
 
726
+ #: ../addons/buy-creds/myCRED-addon-buy-creds.php:1065
727
+ #, php-format
728
  msgid "Buy with %gateway%"
729
  msgstr "Régler avec %gateway%"
730
 
731
+ #: ../addons/buy-creds/myCRED-addon-buy-creds.php:1071 ../addons/sell-
732
+ #: content/myCRED-addon-sell-content.php:44
733
  msgid "Buy Now"
734
  msgstr "Acheter maintenant"
735
 
736
+ #: ../addons/buy-creds/myCRED-addon-buy-creds.php:1111
737
  msgid "No users found"
738
  msgstr "Aucun membre n'a été trouvé"
739
 
740
+ #: ../addons/buy-creds/myCRED-addon-buy-creds.php:1121
741
  msgid "To"
742
  msgstr "à"
743
 
744
+ #: ../addons/buy-creds/myCRED-addon-buy-creds.php:1138
745
  msgid "Select Amount"
746
  msgstr "Sélectionnez le montant"
747
 
748
+ #: ../addons/buy-creds/myCRED-addon-buy-creds.php:1162
749
  msgid "min."
750
  msgstr "mini."
751
 
752
+ #: ../addons/buy-creds/myCRED-addon-buy-creds.php:1170
753
  msgid "Select Gateway"
754
  msgstr "Sélectionnez le service de paiement"
755
 
756
  #: ../addons/buy-creds/abstracts/mycred-abstract-payment-gateway.php:89
757
+ msgid ""
758
+ "function myCRED_Payment_Gateway::process() must be over-ridden in a sub-"
759
+ "class."
760
  msgstr ""
761
+ "La fonction myCRED_Payment_Gateway::process() doit être suplantée dans une "
762
+ "sous-classe."
763
 
764
  #: ../addons/buy-creds/abstracts/mycred-abstract-payment-gateway.php:98
765
  msgid "function myCRED_Payment_Gateway::buy() must be over-ridden in a sub-class."
766
  msgstr ""
767
+ "La fonction myCRED_Payment_Gateway::buy() doit &ecirc;tre substitu&eacute;e "
768
+ "par une sous-classe."
769
 
770
  #: ../addons/buy-creds/abstracts/mycred-abstract-payment-gateway.php:114
771
  msgid "This Payment Gateway has no settings"
776
  msgstr "Un appel de confirmation entrant a été détecté."
777
 
778
  #: ../addons/buy-creds/abstracts/mycred-abstract-payment-gateway.php:213
779
+ #, php-format
780
  msgid "Gateway identified itself as \"%s\""
781
  msgstr "Le Service s'identifie lui-même en tant que \"%s\""
782
 
788
  msgid "Test Payment"
789
  msgstr "Paiement de test"
790
 
791
+ #: ../addons/buy-creds/abstracts/mycred-abstract-payment-gateway.php:264 ..
792
+ #: addons/gateway/carts/mycred-marketpress.php:179
793
  msgid "Payment"
794
  msgstr "Paiement"
795
 
797
  msgid "Cancel purchase"
798
  msgstr "Achat annulé"
799
 
800
+ #: ../addons/buy-creds/abstracts/mycred-abstract-payment-gateway.php:360 ..
801
+ #: includes/mycred-admin.php:364 ../includes/mycred-admin.php:470
802
  msgid "required"
803
  msgstr "obligatoire"
804
 
805
+ #: ../addons/buy-creds/abstracts/mycred-abstract-payment-gateway.php:361 ..
806
+ #: includes/mycred-admin.php:366 ../includes/mycred-admin.php:472
807
  msgid "optional"
808
  msgstr "optionnel"
809
 
844
  msgstr "Sélectionnez un pays"
845
 
846
  #: ../addons/buy-creds/abstracts/mycred-abstract-payment-gateway.php:419
847
+ #, php-format
848
  msgid "%s Purchase"
849
  msgstr "%s Achat"
850
 
851
+ #: ../addons/buy-creds/abstracts/mycred-abstract-payment-gateway.php:424 ..
852
+ #: addons/gateway/carts/mycred-wpecommerce.php:112
853
  msgid "Item"
854
  msgstr "Intitulé"
855
 
863
 
864
  #: ../addons/buy-creds/abstracts/mycred-abstract-payment-gateway.php:448
865
  msgid ""
866
+ "Here you can see information that are collected and sent to this gateway. "
867
+ "Debug information is only visible for administrators and are intended for "
868
+ "troubleshooting / testing of this gateway. Please disable \"Sandbox Mode\" "
869
+ "when you want to take this gateway online."
870
  msgstr ""
871
  "Consultez ici les éléments d'informations qui sont réunis et envoyés à ce "
872
  "Service. Les informations de débogage sont uniquement visibles des "
873
  "administrateurs et destinées à la résolution de problèmes et pour tester ce "
874
+ "Service. N'oubliez pas de désactiver le mode \"bac à sable\" si vous avez "
875
+ "choisi travailler avec ce service en ligne."
876
 
877
  #: ../addons/buy-creds/abstracts/mycred-abstract-payment-gateway.php:452
878
  msgid "Section"
895
  msgstr "Réponse du Service"
896
 
897
  #: ../addons/buy-creds/abstracts/mycred-abstract-payment-gateway.php:513
898
+ #, php-format
899
  msgid "Continue to %s"
900
  msgstr "Continuer vers %s"
901
 
902
+ #: ../addons/buy-creds/abstracts/mycred-abstract-payment-gateway.php:514 ..
903
+ #: addons/buy-creds/gateways/bitpay.php:240
904
  msgid "Click here if you are not automatically redirected"
905
  msgstr "Cliquez ici si vous n'êtes pas automatiquement redirigé"
906
 
936
  msgid "Duplicate transaction"
937
  msgstr "Transaction dupliquée"
938
 
939
+ #: ../addons/buy-creds/gateways/bitpay.php:25 ../addons/buy-
940
+ #: creds/gateways/netbilling.php:30 ../addons/buy-creds/gateways/paypal-standard.
941
+ #: php:25 ../addons/buy-creds/gateways/skrill.php:30
942
  msgid "Purchase of myCRED %plural%"
943
  msgstr "Achat de %_plural% myCRED "
944
 
945
+ #: ../addons/buy-creds/gateways/bitpay.php:68 ../addons/buy-
946
+ #: creds/gateways/netbilling.php:102 ../addons/buy-creds/gateways/paypal-standard.
947
+ #: php:162 ../addons/buy-creds/gateways/skrill.php:134
948
  msgid "Sales Data is Valid"
949
  msgstr "Les données de la transaction sont valides"
950
 
951
+ #: ../addons/buy-creds/gateways/bitpay.php:72 ../addons/buy-
952
+ #: creds/gateways/netbilling.php:106 ../addons/buy-creds/gateways/paypal-standard.
953
+ #: php:166 ../addons/buy-creds/gateways/skrill.php:138
954
  msgid "Failed to validate sale"
955
  msgstr "Echec lors de la validation de la transaction"
956
 
957
+ #: ../addons/buy-creds/gateways/bitpay.php:78 ../addons/buy-
958
+ #: creds/gateways/netbilling.php:112 ../addons/buy-creds/gateways/paypal-standard.
959
+ #: php:172 ../addons/buy-creds/gateways/skrill.php:144 ../addons/buy-
960
+ #: creds/gateways/zombaio.php:166
961
  msgid "Failed to verify caller"
962
  msgstr "Echec lors de la vérification de l'appelant"
963
 
964
+ #: ../addons/buy-creds/gateways/bitpay.php:86 ../addons/buy-
965
+ #: creds/gateways/netbilling.php:120 ../addons/buy-creds/gateways/paypal-standard.
966
+ #: php:180 ../addons/buy-creds/gateways/skrill.php:152 ../addons/buy-
967
+ #: creds/gateways/zombaio.php:171
968
+ #, php-format
969
  msgid "Attempting to credit %s to users account"
970
  msgstr "Tentative pour créditer %s sur le compte de l'utilisateur"
971
 
972
+ #: ../addons/buy-creds/gateways/bitpay.php:97 ../addons/buy-
973
+ #: creds/gateways/netbilling.php:132 ../addons/buy-creds/gateways/paypal-standard.
974
+ #: php:193 ../addons/buy-creds/gateways/skrill.php:164 ../addons/buy-
975
+ #: creds/gateways/zombaio.php:207
976
+ #, php-format
977
  msgid "%s was successfully credited to users account"
978
  msgstr "%s ont été crédités avec succés sur le compte de l'utilisateur"
979
 
980
+ #: ../addons/buy-creds/gateways/bitpay.php:104 ../addons/buy-
981
+ #: creds/gateways/netbilling.php:139 ../addons/buy-creds/gateways/paypal-standard.
982
+ #: php:200 ../addons/buy-creds/gateways/skrill.php:171 ../addons/buy-
983
+ #: creds/gateways/zombaio.php:214
984
  msgid "Failed to credit the users account"
985
  msgstr "Echec de la créditation du compte de l'utilisateur"
986
 
987
+ #: ../addons/buy-creds/gateways/bitpay.php:107 ../addons/buy-
988
+ #: creds/gateways/netbilling.php:142 ../addons/buy-creds/gateways/paypal-standard.
989
+ #: php:203 ../addons/buy-creds/gateways/skrill.php:174
990
  msgid "Purchase not paid"
991
  msgstr "L'achat n'a pas été payé"
992
 
993
+ #: ../addons/buy-creds/gateways/bitpay.php:111 ../addons/buy-
994
+ #: creds/gateways/netbilling.php:146 ../addons/buy-creds/gateways/paypal-standard.
995
+ #: php:207 ../addons/buy-creds/gateways/skrill.php:178 ../addons/buy-
996
+ #: creds/gateways/zombaio.php:218
997
  msgid "Hanging up on caller"
998
  msgstr "Appel terminé"
999
 
1000
+ #: ../addons/buy-creds/gateways/bitpay.php:175 ../addons/buy-
1001
+ #: creds/gateways/netbilling.php:173 ../addons/buy-creds/gateways/paypal-standard.
1002
+ #: php:237 ../addons/buy-creds/gateways/skrill.php:208 ../addons/buy-
1003
+ #: creds/gateways/zombaio.php:241
1004
  msgid "Please setup this gateway before attempting to make a purchase!"
1005
  msgstr ""
1006
  "Veuillez d'abord paramètrer ce service de paiement avant d'essayer de "
1007
  "finaliser un achat !"
1008
 
1009
+ #: ../addons/buy-creds/gateways/bitpay.php:226 ../addons/buy-
1010
+ #: creds/gateways/bitpay.php:235 ../addons/buy-creds/gateways/netbilling.php:224 .
1011
+ #: ./addons/buy-creds/gateways/paypal-standard.php:295 ../addons/buy-
1012
+ #: creds/gateways/skrill.php:301 ../addons/buy-creds/gateways/zombaio.php:271
1013
  msgid "Processing payment &hellip;"
1014
  msgstr "Procédure de paiement en cours &hellip;"
1015
 
1016
  #: ../addons/buy-creds/gateways/bitpay.php:228
1017
  msgid "Could not create a BitPay Invoice. Please contact the site administrator!"
1018
  msgstr ""
1019
+ "Impossible de créer une facture BitPay. Veuillez contacter l'administrateur "
1020
+ "du site."
1021
 
1022
  #: ../addons/buy-creds/gateways/bitpay.php:229
1023
  msgid "Bitpay returned the following error message:"
1036
  msgid "API Key"
1037
  msgstr "Clé API"
1038
 
1039
+ #: ../addons/buy-creds/gateways/bitpay.php:269 ../addons/buy-
1040
+ #: creds/gateways/paypal-standard.php:312 ../addons/buy-creds/gateways/skrill.php:
1041
+ #: 319
1042
  msgid "Currency"
1043
  msgstr "Devise"
1044
 
1046
  msgid "Currency Code"
1047
  msgstr "Code devise"
1048
 
1049
+ #: ../addons/buy-creds/gateways/bitpay.php:276 ../addons/buy-
1050
+ #: creds/gateways/netbilling.php:260 ../addons/buy-creds/gateways/paypal-standard.
1051
+ #: php:326 ../addons/buy-creds/gateways/skrill.php:339
1052
  msgid "Item Name"
1053
  msgstr "Nom de l'item"
1054
 
1055
+ #: ../addons/buy-creds/gateways/bitpay.php:280 ../addons/buy-
1056
+ #: creds/gateways/netbilling.php:264 ../addons/buy-creds/gateways/paypal-standard.
1057
+ #: php:330 ../addons/buy-creds/gateways/skrill.php:343
1058
  msgid "Description of the item being purchased by the user."
1059
  msgstr "Description de l'item acquis par l'utilisateur"
1060
 
1061
+ #: ../addons/buy-creds/gateways/bitpay.php:283 ../addons/buy-
1062
+ #: creds/gateways/netbilling.php:267 ../addons/buy-creds/gateways/paypal-standard.
1063
+ #: php:333 ../addons/buy-creds/gateways/skrill.php:346
1064
+ #, php-format
1065
  msgid "%plural% Exchange Rate"
1066
  msgstr "Taux de change des %_plural%"
1067
 
1068
+ #: ../addons/buy-creds/gateways/bitpay.php:286 ../addons/buy-
1069
+ #: creds/gateways/paypal-standard.php:336 ../addons/buy-creds/gateways/skrill.php:
1070
+ #: 349
1071
  msgid "Select currency"
1072
  msgstr "S&eacute;lectionnez une devise"
1073
 
1091
  msgid "Full Notifications"
1092
  msgstr "Messages complets"
1093
 
1094
+ #: ../addons/buy-creds/gateways/bitpay.php:318 ../includes/mycred-network.php:196
1095
+ #: ../includes/mycred-network.php:210
1096
  msgid "No"
1097
  msgstr "non"
1098
 
1099
+ #: ../addons/buy-creds/gateways/bitpay.php:319 ../includes/mycred-network.php:192
1100
+ #: ../includes/mycred-network.php:206
1101
  msgid "Yes"
1102
  msgstr "oui"
1103
 
1104
+ #: ../addons/buy-creds/gateways/netbilling.php:57 ../addons/buy-
1105
+ #: creds/gateways/skrill.php:89 ../addons/buy-creds/gateways/zombaio.php:103
1106
  msgid "Invalid Call"
1107
  msgstr "Appel invalide"
1108
 
1109
+ #: ../addons/buy-creds/gateways/netbilling.php:59 ../addons/buy-
1110
+ #: creds/gateways/skrill.php:91 ../addons/buy-creds/gateways/zombaio.php:105
1111
+ #, php-format
1112
  msgid "Caller verified as \"%s\""
1113
  msgstr "Appelant identifié: %s"
1114
 
1135
  #: ../addons/buy-creds/gateways/netbilling.php:277
1136
  msgid ""
1137
  "For this gateway to work, you must login to your NETbilling account and edit "
1138
+ "your site. Under \"Default payment form settings\" make sure the Postback CGI "
1139
+ "URL is set to the above address and \"Return method\" is set to POST."
1140
  msgstr ""
1141
  "Vous que ce service fonctionne, vous devez vous connecter à votre compte "
1142
  "Netbilling et modifier les paramètres de votre site. A la rubrique \"Default "
1143
+ "payment form settings\", indiquez l'URL ci-dessous dans la case Postback CGI "
1144
+ "URL et assurez-vous que la case \"Return method\" est bien sur POST."
1145
 
1146
  #: ../addons/buy-creds/gateways/netbilling.php:312
1147
  msgid "Incorrect Credit Card number"
1172
  msgstr "Contact établi"
1173
 
1174
  #: ../addons/buy-creds/gateways/paypal-standard.php:92
1175
+ #, php-format
1176
  msgid "Attempt: %d failed. Error: %s : %s"
1177
  msgstr "Tentative: %d échec. Erreur: %s : %s"
1178
 
1179
  #: ../addons/buy-creds/gateways/paypal-standard.php:103
1180
+ #, php-format
1181
  msgid "Secondary systems failing. Final note: %s : %s"
1182
  msgstr "Echec des systèmes secondaires. Note finale: %s : %s"
1183
 
1189
  msgid "Call rejected"
1190
  msgstr "Appel rejeté"
1191
 
1192
+ #: ../addons/buy-creds/gateways/paypal-standard.php:223 ../addons/buy-
1193
+ #: creds/gateways/skrill.php:194
1194
  msgid "Success"
1195
  msgstr "Succès !"
1196
 
1197
+ #: ../addons/buy-creds/gateways/paypal-standard.php:224 ../addons/buy-
1198
+ #: creds/gateways/skrill.php:195
1199
  msgid "Thank you for your purchase"
1200
  msgstr "Merci pour votre achat"
1201
 
1202
+ #: ../addons/buy-creds/gateways/paypal-standard.php:290 ../addons/buy-
1203
+ #: creds/gateways/skrill.php:247
1204
  msgid "Return to "
1205
  msgstr "Retour vers"
1206
 
1207
+ #: ../addons/buy-creds/gateways/paypal-standard.php:317 ../addons/buy-
1208
+ #: creds/gateways/skrill.php:376 ../addons/gateway/event-booking/mycred-
1209
+ #: eventespresso3.php:455
1210
  msgid "Important!"
1211
  msgstr "Important !"
1212
 
1216
  "transactions will not be approved until you login to your PayPal account and "
1217
  "Accept each transaction!"
1218
  msgstr ""
1219
+ "Assurez-vous de bien sélectionner la devise autorisée sur votre compte "
1220
+ "PayPal, sinon les transactions ne seront pas validées. En effet, les achats "
1221
+ "effectués avec une devise non reconnue par votre compte ne peuvent être "
1222
+ "imputés à l'acheteur. En cas d'erreur de votre part, vous serez obligé de "
1223
+ "vous connecter à votre compte PayPal pour valider chaque transaction "
1224
+ "séparément !"
1225
 
1226
  #: ../addons/buy-creds/gateways/paypal-standard.php:320
1227
  msgid "Account Email"
1234
  #: ../addons/buy-creds/gateways/paypal-standard.php:343
1235
  msgid ""
1236
  "For this gateway to work, you must login to your PayPal account and under "
1237
+ "\"Profile\" > \"Selling Tools\" enable \"Instant Payment Notifications\". Make "
1238
+ "sure the \"Notification URL\" is set to the above address and that you have "
1239
+ "selected \"Receive IPN messages (Enabled)\"."
1240
  msgstr ""
1241
+ "Pour assurer le bon fonctionnement de ce service, vous devez vous connecter "
1242
+ "à votre compte PayPal et dans \"Profil\" > \"Outils de ventes\" activer l'option "
1243
+ " \"Notifications de paiement instantané\". Assurez-vous également que \"l'URL "
1244
+ "de Notification \" contient bien l'adresse ci-dessus et que vous avez "
1245
+ "sélectionné \"Recevoir les messages IPN (activé)\"."
1246
 
1247
  #: ../addons/buy-creds/gateways/skrill.php:284
1248
  msgid "Product:"
1284
  msgid "Checkout Page"
1285
  msgstr "Page de contrôle"
1286
 
1287
+ #: ../addons/buy-creds/gateways/skrill.php:361 ../addons/gateway/carts/mycred-
1288
+ #: woocommerce.php:86 ../addons/ranks/myCRED-addon-ranks.php:792 ..
1289
+ #: addons/transfer/myCRED-addon-transfer.php:637 ../includes/mycred-widgets.php:
1290
+ #: 197 ../includes/mycred-widgets.php:395 ../includes/mycred-widgets.php:587 ..
1291
+ #: modules/mycred-module-hooks.php:2302
1292
  msgid "Title"
1293
  msgstr "Titre"
1294
 
1295
  #: ../addons/buy-creds/gateways/skrill.php:363
1296
  msgid "If left empty, your account email is used as title on the Skill Payment Page."
1297
  msgstr ""
1298
+ "Si vous laissez vide, c'est votre mail de compte qui sera utilisé comme "
1299
+ "titre de la page de paiement de Skrill"
1300
 
1301
+ #: ../addons/buy-creds/gateways/skrill.php:366 ../addons/buy-
1302
+ #: creds/gateways/zombaio.php:306
1303
  msgid "Logo URL"
1304
  msgstr "URL du logo"
1305
 
1306
  #: ../addons/buy-creds/gateways/skrill.php:368
1307
  msgid ""
1308
  "The URL to the image you want to use on the top of the gateway. For best "
1309
+ "integration results we recommend you use logos with dimensions up to 200px "
1310
+ "in width and 50px in height."
1311
  msgstr ""
1312
+ "L'url vers l'image à afficher sur l'interface du service de paiement. Pour "
1313
+ "une intégration optimale, nous vous recommandons d'utiliser un logo de 200 "
1314
+ "par 50 pixels."
1315
 
1316
  #: ../addons/buy-creds/gateways/skrill.php:371
1317
  msgid "Confirmation Note"
1319
 
1320
  #: ../addons/buy-creds/gateways/skrill.php:373
1321
  msgid ""
1322
+ "Optional text to show user once a transaction has been successfully "
1323
+ "completed. This text is shown by Skrill."
1324
  msgstr ""
1325
+ "Texte additionnel en option qui s'affichera une fois une transaction "
1326
+ "complétée avec succès. Ce texte est affiché par Skrill."
1327
 
1328
  #: ../addons/buy-creds/gateways/skrill.php:377
1329
  msgid ""
1330
+ "By default all Skrill Merchant account accept payments via Bank Transfers. "
1331
+ "When a user selects this option, no %_plural% are awarded! You will need to "
1332
+ "manually award these once the bank transfer is completed."
1333
  msgstr ""
1334
+ "Les comptes Skrill Merchant acceptent les paiements par virements bancaires "
1335
+ "par défaut. Quand un utilisateur sélectionne cette option, les %_plural% ne "
1336
+ "sont pas récompensé ! Vous devrez donc le faire manuellement une fois le "
1337
+ "transfert de banque complété et terminé."
1338
 
1339
  #: ../addons/buy-creds/gateways/skrill.php:378
1340
  msgid ""
1341
  "By default purchases made using Skrill will result in users having to signup "
1342
+ "for a Skrill account (if they do not have one already). You can contact "
1343
+ "Skrill Merchant Services and request to disable this feature."
1344
  msgstr ""
1345
  "Par défaut, tout achat effectué par l'intermédiaire de Skrill nécessite "
1346
+ "d'ouvrir un compte Skrill de la part de l'acheteur (s'il n'en a pas déjà un)."
1347
+ " Vous pouvez néanmoins contacter Skrill et leur demander de désactiver ce "
1348
  "service."
1349
 
1350
  #: ../addons/buy-creds/gateways/zombaio.php:154
1391
  "Pour faire fonctionner ce service, veuillez d'abord vous connecter à ZOA et "
1392
  "indiquez l'adresse ci-dessus comme URL de retour avant de valider."
1393
 
1394
+ #: ../addons/coupons/myCRED-addon-coupons.php:86 ../addons/coupons/myCRED-addon-
1395
+ #: coupons.php:92 ../addons/coupons/myCRED-addon-coupons.php:438 ..
1396
+ #: includes/mycred-overview.php:188 ../includes/mycred-overview.php:195 ..
1397
+ #: modules/mycred-module-addons.php:168
1398
  msgid "Coupons"
1399
  msgstr "Promotions"
1400
 
1401
+ #: ../addons/coupons/myCRED-addon-coupons.php:87 ..
1402
+ #: addons/coupons/includes/mycred-coupon-shortcodes.php:69
1403
  msgid "Coupon"
1404
  msgstr "Promotion"
1405
 
1431
  msgid "No coupons found in Trash"
1432
  msgstr "Aucune promo dans la corbeille"
1433
 
1434
+ #: ../addons/coupons/myCRED-addon-coupons.php:98 ../addons/email-notices/myCRED-
1435
+ #: addon-email-notices.php:161 ../addons/email-notices/myCRED-addon-email-notices.
1436
+ #: php:167 ../addons/email-notices/myCRED-addon-email-notices.php:173 ..
1437
+ #: addons/email-notices/myCRED-addon-email-notices.php:270 ../modules/mycred-
1438
+ #: module-addons.php:179
1439
  msgid "Email Notices"
1440
  msgstr "Messagerie"
1441
 
1442
+ #: ../addons/coupons/myCRED-addon-coupons.php:119 ../addons/coupons/myCRED-addon-
1443
+ #: coupons.php:122
1444
  msgid "Coupon updated."
1445
  msgstr "Promo mise à jour."
1446
 
1464
  msgid "Coupon Code"
1465
  msgstr "Code Promo"
1466
 
1467
+ #: ../addons/coupons/myCRED-addon-coupons.php:157 ../addons/coupons/myCRED-addon-
1468
+ #: coupons.php:309
1469
  msgid "Value"
1470
  msgstr "Valeur"
1471
 
1473
  msgid "Usage"
1474
  msgstr "Utilisation"
1475
 
1476
+ #: ../addons/coupons/myCRED-addon-coupons.php:159 ../addons/transfer/myCRED-addon-
1477
+ #: transfer.php:243 ../modules/mycred-module-hooks.php:1106 ../modules/mycred-
1478
+ #: module-hooks.php:1396
1479
  msgid "Limits"
1480
  msgstr "Règles de limitation"
1481
 
1487
  msgid "not yet used"
1488
  msgstr "pas encore utilisé"
1489
 
1490
+ #: ../addons/coupons/myCRED-addon-coupons.php:198 ../modules/mycred-module-hooks.
1491
+ #: php:1834
1492
  msgid "Total"
1493
  msgstr "Total"
1494
 
1505
  msgstr "Expiré"
1506
 
1507
  #: ../addons/coupons/myCRED-addon-coupons.php:213
1508
+ #, php-format
1509
  msgid "In %s time"
1510
  msgstr "En %s fois"
1511
 
1545
 
1546
  #: ../addons/coupons/myCRED-addon-coupons.php:356
1547
  msgid ""
1548
+ "The maximum number of times this coupon can be used. Note that the coupon "
1549
+ "will be automatically trashed once this maximum is reached!"
1550
  msgstr ""
1551
+ "Le nombre de fois que ce bon peut être utilisé. Notez que le bon sera mis à "
1552
+ "la corbeille une fois que ce nombre est atteint."
1553
 
1554
  #: ../addons/coupons/myCRED-addon-coupons.php:360
1555
  msgid "User Maximum"
1561
 
1562
  #: ../addons/coupons/myCRED-addon-coupons.php:395
1563
  msgid ""
1564
+ "Optional minimum balance a user must have in order to use this coupon. Use "
1565
+ "zero to disable."
1566
  msgstr ""
1567
  "Le solde minimum d'un utilisateur pour utiliser ce bon. Indiquez zéro pour "
1568
  "désactiver l'option."
1573
 
1574
  #: ../addons/coupons/myCRED-addon-coupons.php:402
1575
  msgid ""
1576
+ "Optional maximum balance a user can have in order to use this coupon. Use "
1577
+ "zero to disable."
1578
  msgstr ""
1579
  "Le solde maximum d'un utilisateur pour utiliser ce bon. Indiquez zéro pour "
1580
  "désactiver l'option."
1581
 
1582
  #: ../addons/coupons/myCRED-addon-coupons.php:444
1583
+ #, php-format
1584
  msgid ""
1585
  "Log entry for successful coupon redemption. Use %coupon% to show the coupon "
1586
  "code."
1594
 
1595
  #: ../addons/coupons/myCRED-addon-coupons.php:451
1596
  msgid "Message to show when users try to use a coupon that does not exists."
1597
+ msgstr ""
1598
+ "Le message à afficher lorsqu'un utilisateur tente d'utiliser un bon "
1599
+ "inexistant."
1600
 
1601
  #: ../addons/coupons/myCRED-addon-coupons.php:454
1602
  msgid "Expired Coupon Message"
1622
 
1623
  #: ../addons/coupons/myCRED-addon-coupons.php:472
1624
  msgid ""
1625
+ "Message to show when a user does not meet the minimum balance requirement. "
1626
+ "(if used)"
1627
  msgstr ""
1628
  "Le message à afficher lorsqu'un utilisateur ne possède pas le solde minimum "
1629
  "requis. (si activé)"
1634
 
1635
  #: ../addons/coupons/myCRED-addon-coupons.php:479
1636
  msgid ""
1637
+ "Message to show when a user does not meet the maximum balance requirement. "
1638
+ "(if used)"
1639
  msgstr ""
1640
  "Le message à afficher lorsqu'un utilisateur ne possède pas le solde maximum "
1641
  "requis. (si activé)"
1658
  msgid "Apply Coupon"
1659
  msgstr "Appliquer le bon"
1660
 
1661
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:162 ../addons/email-
1662
+ #: notices/myCRED-addon-email-notices.php:1138
1663
  msgid "Email Notice"
1664
  msgstr "Message à envoyer"
1665
 
1666
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:163 ..
1667
+ #: addons/ranks/myCRED-addon-ranks.php:248
1668
  msgid "Add New"
1669
  msgstr "Ajouter"
1670
 
1671
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:164
1672
  msgid "Add New Notice"
1673
  msgstr "Ajouter un message"
1674
 
1675
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:165
1676
  msgid "Edit Notice"
1677
  msgstr "Modifier le message"
1678
 
1679
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:166
1680
  msgid "New Notice"
1681
  msgstr "Nouveau message"
1682
 
1683
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:168
1684
  msgid "View Notice"
1685
  msgstr "Afficher le message"
1686
 
1687
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:169
1688
  msgid "Search Email Notices"
1689
  msgstr "Rechercher un message"
1690
 
1691
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:170
1692
  msgid "No email notices found"
1693
  msgstr "Aucun message trouvé"
1694
 
1695
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:171
1696
  msgid "No email notices found in Trash"
1697
  msgstr "Il n'y a pas de message dans la corbeille"
1698
 
1699
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:195 ..
1700
+ #: addons/gateway/carts/mycred-wpecommerce.php:337 ../includes/mycred-functions.
1701
+ #: php:589
1702
  msgid "General"
1703
  msgstr "Général"
1704
 
1705
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:196
1706
  msgid "users balance changes"
1707
  msgstr "le solde a changé"
1708
 
1709
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:197
1710
  msgid "user gains %_plural%"
1711
  msgstr "gains de %_plural%"
1712
 
1713
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:198
1714
  msgid "user lose %_plural%"
1715
  msgstr "perte de %_plural%"
1716
 
1717
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:199
1718
  msgid "users balance reaches zero"
1719
  msgstr "le solde est à zéro"
1720
 
1721
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:200
1722
  msgid "users balance goes minus"
1723
  msgstr "le solde est négatif"
1724
 
1725
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:206
1726
  msgid "Sell Content Add-on"
1727
  msgstr "Module de vente de contenu"
1728
 
1729
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:207
1730
  msgid "user buys content"
1731
  msgstr "l'utilisateur a acheté du contenu"
1732
 
1733
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:208
1734
  msgid "authors content gets sold"
1735
  msgstr "le contenu de cet auteur a été vendu"
1736
 
1737
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:215
1738
  msgid "buyCREDs Add-on"
1739
  msgstr "Module achatCRED"
1740
 
1741
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:216
1742
  msgid "user buys %_plural%"
1743
  msgstr "l'utilisateur a acheté des %_plural%"
1744
 
1745
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:223
1746
  msgid "Transfer Add-on"
1747
  msgstr "Module de transfert"
1748
 
1749
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:224
1750
  msgid "user sends %_plural%"
1751
  msgstr "l'utilisateur a envoyé des %_plural%"
1752
 
1753
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:225
1754
  msgid "user receives %_plural%"
1755
  msgstr "l'utilisateur a reçu des %_plural%"
1756
 
1757
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:232
1758
  msgid "Ranks Add-on"
1759
  msgstr "Application de classement"
1760
 
1761
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:233
1762
  msgid "user is demoted"
1763
  msgstr "utilisateur rétrogradé"
1764
 
1765
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:234
1766
  msgid "user is promoted"
1767
  msgstr "utilisateur promu"
1768
 
1769
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:272
1770
  msgid ""
1771
  "Settings that apply to all email notices and can not be overridden for "
1772
  "individual emails."
1774
  "Ces paramètres s'appliquent à toutes les envois par mail et ne peuvent être "
1775
  "appliqués individuellement."
1776
 
1777
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:273
1778
  msgid "Email Format"
1779
  msgstr "Format des mails"
1780
 
1781
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:277
1782
  msgid "Plain text emails only."
1783
  msgstr "Format texte uniquement"
1784
 
1785
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:281
1786
  msgid "HTML or Plain text emails."
1787
  msgstr "Format texte ou HTML"
1788
 
1789
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:284
1790
  msgid "Filters"
1791
  msgstr "Filtres de recherche"
1792
 
1793
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:288
1794
  msgid ""
1795
+ "Allow WordPress and Third Party Plugins to filter the email subject before "
1796
+ "an email is sent."
1797
  msgstr ""
1798
+ "Autoriser WordPress et les plugins tiers à filtrer le sujet avant l'envoi "
1799
+ "d'un mail."
1800
 
1801
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:292
1802
  msgid ""
1803
+ "Allow WordPress and Third Party Plugins to filter the email content before "
1804
+ "an email is sent."
1805
  msgstr ""
1806
  "Autoriser WordPress et les plugins tiers à filtrer le contenu avant l'envoi "
1807
  "d'un mail."
1808
 
1809
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:297 ../addons/email-
1810
+ #: notices/myCRED-addon-email-notices.php:303
1811
+ msgid "Email Schedule"
1812
+ msgstr ""
1813
+
1814
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:299
1815
+ msgid "WordPress Cron is disabled. Emails will be sent immediately."
1816
+ msgstr ""
1817
+
1818
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:307
1819
+ msgid "Send emails immediately"
1820
+ msgstr ""
1821
+
1822
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:311
1823
+ msgid "Send emails once an hour"
1824
+ msgstr ""
1825
+
1826
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:315
1827
+ msgid "Send emails once a day"
1828
+ msgstr ""
1829
+
1830
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:318
1831
+ msgid "Subscriptions"
1832
+ msgstr ""
1833
+
1834
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:320
1835
+ #, php-format
1836
+ msgid ""
1837
+ "Use the %s shortcode to allow users to subscribe / unsubscribe to email "
1838
+ "updates."
1839
+ msgstr ""
1840
+
1841
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:325
1842
+ msgid "SMTP Override"
1843
+ msgstr ""
1844
+
1845
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:329
1846
+ msgid ""
1847
+ "SMTP Debug. Enable if you are experiencing issues with wp_mail() or if you "
1848
+ "use a SMTP plugin for emails."
1849
+ msgstr ""
1850
+
1851
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:332
1852
  msgid ""
1853
  "Default email settings. These settings can be individually overridden when "
1854
  "editing emails."
1856
  "Paramètres par défaut des mails. Ils pourront être modifiés individuellement "
1857
  "lors de la modification d'un mail."
1858
 
1859
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:333 ../addons/email-
1860
+ #: notices/myCRED-addon-email-notices.php:802
1861
  msgid "Email Settings"
1862
  msgstr "Configuration des mails"
1863
 
1864
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:336 ../addons/email-
1865
+ #: notices/myCRED-addon-email-notices.php:925
1866
  msgid "Senders Name:"
1867
  msgstr "Expéditeur:"
1868
 
1869
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:340 ../addons/email-
1870
+ #: notices/myCRED-addon-email-notices.php:927
1871
  msgid "Senders Email:"
1872
  msgstr "Email de l'expéditeur"
1873
 
1874
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:344
1875
  msgid "Reply-To:"
1876
  msgstr "Adresse de réponse:"
1877
 
1878
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:348
1879
  msgid "Default Email Content"
1880
  msgstr "Contenu par défaut"
1881
 
1882
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:352
1883
  msgid "Default email content."
1884
  msgstr "contenu par défaut"
1885
 
1886
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:355
1887
  msgid "Default Email Styling"
1888
  msgstr "Style par défaut"
1889
 
1890
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:359
1891
  msgid "Ignored if HTML is not allowed in emails."
1892
  msgstr "Sera ignoré si HTML désactivé pour les mails"
1893
 
1894
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:736 ../addons/email-
1895
+ #: notices/myCRED-addon-email-notices.php:851
1896
  msgid "Email Subject"
1897
  msgstr "Sujet du mail"
1898
 
1899
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:737
1900
  msgid "Status"
1901
  msgstr "Statut"
1902
 
1903
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:757
1904
  msgid "Not Active"
1905
  msgstr "Inactif"
1906
 
1907
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:759
1908
+ #, php-format
1909
  msgid "Scheduled:<br /><strong>%1$s</strong>"
1910
  msgstr "Pr&eacute;vu pour le:<br /><strong>%1$s</strong>"
1911
 
1912
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:763
1913
  msgid "Active"
1914
  msgstr "Actif"
1915
 
1916
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:765
1917
+ #, php-format
1918
  msgid "Active - Last run:<br /><strong>%1$s</strong>"
1919
  msgstr "Actif - derni&egave;re utilisation:<br /><strong>%1$s</strong>"
1920
 
1921
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:775
1922
  msgid "Email is sent when"
1923
  msgstr "Le mail sera envoyé quand"
1924
 
1925
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:777
1926
  msgid "Missing instance for this notice!"
1927
  msgstr "Ce message n'est pas instancié !"
1928
 
1929
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:786 ../addons/email-
1930
+ #: notices/myCRED-addon-email-notices.php:788 ../addons/email-notices/myCRED-
1931
+ #: addon-email-notices.php:790
1932
  msgid "Sent To"
1933
  msgstr "Envoyer à"
1934
 
1935
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:788 ../addons/email-
1936
+ #: notices/myCRED-addon-email-notices.php:916
1937
  msgid "Administrator"
1938
  msgstr "Administrateur"
1939
 
1940
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:790
1941
  msgid "Both Administrator and User"
1942
  msgstr "A l'administrateur et à l'utilisateur"
1943
 
1944
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:811
1945
  msgid "Available Template Tags"
1946
  msgstr "Mots-clés utilisables ici"
1947
 
1948
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:822
1949
  msgid "Email Header"
1950
  msgstr "En-tête du mail"
1951
 
1952
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:882
1953
  msgid "Send this email notice when..."
1954
  msgstr "Envoyer ce mail quand...."
1955
 
1956
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:913
1957
  msgid "Recipient:"
1958
  msgstr "Destinataire:"
1959
 
1960
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:917
1961
  msgid "Both"
1962
  msgstr "Les deux"
1963
 
1964
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:921 ..
1965
+ #: addons/gateway/carts/mycred-woocommerce.php:148 ../modules/mycred-module-
1966
+ #: settings.php:484 ../modules/mycred-module-settings.php:503 ../modules/mycred-
1967
+ #: module-settings.php:526
1968
+ msgid "Label"
1969
+ msgstr "Etiquette"
1970
+
1971
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:929
1972
  msgid "Reply-To Email:"
1973
  msgstr "Adresse de réponse"
1974
 
1975
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:935
1976
  msgid "Save"
1977
  msgstr "Enregistrer"
1978
 
1979
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:947
1980
  msgid "CSS Styling"
1981
  msgstr "Règles de style"
1982
 
1983
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:963
1984
  msgid "Site Related"
1985
  msgstr "A propos du site"
1986
 
1987
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:964
1988
  msgid "Your websites title"
1989
  msgstr "Titre de votre site"
1990
 
1991
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:965
1992
  msgid "Your websites address"
1993
  msgstr "Adresse de votre site"
1994
 
1995
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:966
1996
  msgid "Your websites tagline (description)"
1997
  msgstr "Description de votre site"
1998
 
1999
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:967
2000
  msgid "Your websites admin email"
2001
  msgstr "Email de l'administrateur du site"
2002
 
2003
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:968
2004
  msgid "Total number of blog members"
2005
  msgstr "Total des membres de votre blog"
2006
 
2007
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:1046 ../addons/email-
2008
+ #: notices/myCRED-addon-email-notices.php:1049
2009
+ #, php-format
2010
  msgid "Email Notice Updated. View <a href=\"%1$s\">All Notices</a>."
2011
  msgstr "Message mis à jour. Afficher <a href=\"%1$s\">tous les messages</a>."
2012
 
2013
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:1051
2014
  msgid "Email Notice Activated"
2015
  msgstr "Message activé"
2016
 
2017
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:1052
2018
  msgid "Email Notice Saved"
2019
  msgstr "Message enregistré"
2020
 
2021
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:1053
2022
+ #, php-format
2023
  msgid "Email Notice Submitted for approval. View <a href=\"%1$s\">All Notices</a>."
2024
  msgstr ""
2025
  "Le message est en attente de validation. Afficher <a href=\"%1$s\">tous les "
2026
  "messages</a>."
2027
 
2028
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:1055
2029
+ #, php-format
2030
  msgid "Email Notice scheduled for: <strong>%1$s</strong>."
2031
  msgstr "Mail pr&eacute;vu pour le: <strong>%1$s</strong>."
2032
 
2033
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:1074
2034
  msgid ""
2035
+ "Once a notice is \"published\" it becomes active! Select \"Save Draft\" if you "
2036
+ "are not yet ready to use this email notice!"
2037
  msgstr ""
2038
+ "<strong>ATTENTION</strong><br/>Une fois que le message est publié il est "
2039
+ "actif ! Sélectionnez \"Enregistrer brouillon\" si vous n'êtes pas prêt à "
2040
+ "l'utiliser."
2041
 
2042
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:1076
2043
+ #, php-format
2044
  msgid "This notice will become active on:<br /><strong>%1$s</strong>"
2045
  msgstr "Ce message sera activ&eacute; le:<br /><strong>%1$s</strong>"
2046
 
2047
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:1078
2048
  msgid "This email notice is active."
2049
  msgstr "Ce message est activé."
2050
 
2051
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:1089
2052
+ msgid "Settings saved."
2053
+ msgstr ""
2054
+
2055
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:1137
2056
+ msgid "Unsubscribe"
2057
+ msgstr ""
2058
+
2059
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:1158
2060
+ msgid "There are no email notifications yet."
2061
+ msgstr ""
2062
+
2063
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:1164
2064
+ msgid "Save Changes"
2065
+ msgstr ""
2066
+
2067
+ #: ../addons/gateway/carts/mycred-marketpress.php:147 ../addons/gateway/event-
2068
+ #: booking/mycred-eventespresso3.php:277 ../addons/gateway/event-booking/mycred-
2069
+ #: eventespresso3.php:301 ../addons/gateway/event-booking/mycred-eventsmanager.
2070
+ #: php:412 ../includes/mycred-admin.php:478
2071
  msgid "Current Balance"
2072
  msgstr "Solde actuel"
2073
 
2074
+ #: ../addons/gateway/carts/mycred-marketpress.php:151 ..
2075
+ #: addons/gateway/carts/mycred-wpecommerce.php:123 ../addons/gateway/event-
2076
+ #: booking/mycred-eventespresso3.php:281 ../addons/gateway/event-booking/mycred-
2077
+ #: eventespresso3.php:305 ../addons/gateway/event-booking/mycred-eventsmanager.
2078
+ #: php:416
2079
  msgid "Total Cost"
2080
  msgstr "Coût total"
2081
 
2082
+ #: ../addons/gateway/carts/mycred-marketpress.php:155 ../addons/gateway/event-
2083
+ #: booking/mycred-eventespresso3.php:285 ../addons/gateway/event-booking/mycred-
2084
+ #: eventespresso3.php:309
2085
  msgid "Balance After Purchase"
2086
  msgstr "Solde après achats"
2087
 
2088
+ #: ../addons/gateway/carts/mycred-marketpress.php:182 ..
2089
+ #: addons/gateway/carts/mycred-marketpress.php:231
2090
  msgid "Go Back"
2091
  msgstr "Revenir en arrière"
2092
 
2095
  msgstr "sera déduit de votre compte."
2096
 
2097
  #: ../addons/gateway/carts/mycred-marketpress.php:221
2098
+ #, php-format
2099
  msgid ""
2100
+ "Sorry, but you can not use this gateway as your account is excluded. Please "
2101
+ "<a href=\"%s\">select a different payment method</a>."
2102
  msgstr ""
2103
+ "D&eacute;sol&eacute;, mais vous ne pouvez pas utiliser ce service de "
2104
+ "paiement, votre compte en est exclu. Veuillez <a href=\"%s\">choisir une autre "
2105
+ "m&eacute;thode de paiement</a>."
2106
 
2107
  #: ../addons/gateway/carts/mycred-marketpress.php:240
2108
  msgid "Paid"
2109
  msgstr "Payé"
2110
 
2111
+ #: ../addons/gateway/carts/mycred-marketpress.php:243 ..
2112
+ #: addons/gateway/carts/mycred-woocommerce.php:33 ../includes/mycred-network.php:
2113
+ #: 57 ../includes/mycred-network.php:58 ../plugins/mycred-hook-badgeOS.php:81
2114
  msgid "myCRED"
2115
  msgstr "myCred"
2116
 
2118
  msgid "%_singular% Balance"
2119
  msgstr "Solde de %_singular%"
2120
 
2121
+ #: ../addons/gateway/carts/mycred-marketpress.php:348 ..
2122
+ #: addons/gateway/carts/mycred-woocommerce.php:101 ..
2123
+ #: addons/gateway/carts/mycred-wpecommerce.php:27
2124
+ #, php-format
2125
  msgid "Payment for Order: #%order_id%"
2126
  msgstr "R&egrave;glement de la commande: #%order_id%"
2127
 
2134
  msgstr "Régler avec votre solde de compte"
2135
 
2136
  #: ../addons/gateway/carts/mycred-marketpress.php:353
2137
+ #, php-format
2138
  msgid ""
2139
  "TOTAL amount has been deducted from your account. Your current balance is: "
2140
  "%balance_f%"
2141
  msgstr ""
2142
+ "Le montant TOTAL a été déduit de votre compte. Votre solde courant s'élève à "
2143
+ ": %balance_f%"
2144
 
2145
  #: ../addons/gateway/carts/mycred-marketpress.php:354
2146
+ #, php-format
2147
  msgid ""
2148
+ "Insufficient funds. Please select another form of payment. Your current "
2149
+ "balance is: %balance_f%"
2150
  msgstr ""
2151
  "Fonds insuffisants. Veuillez sélectionner un autre mode de règlement. Votre "
2152
  "solde courant s'élève à : %balance_f%"
2160
  "href=\"%login_url_here%\">connecter</a>."
2161
 
2162
  #: ../addons/gateway/carts/mycred-marketpress.php:362
2163
+ #, php-format
2164
  msgid ""
2165
  "Let your users pay for items in their shopping cart using their %s Account. "
2166
+ "Note! This gateway requires your users to be logged in when making a "
2167
+ "purchase!"
2168
  msgstr ""
2169
+ "Autorisez les utilisateurs &agrave; payer le contenu de leur caddie avec "
2170
+ "leur compte %s. Notez que ce service n&eacute;cessite une connexion &agrave; "
2171
+ "votre site de la part de l&#39;utilisateur au moment de son achat."
2172
 
2173
  #: ../addons/gateway/carts/mycred-marketpress.php:365
2174
  msgid "Method Name"
2179
  "Enter a public name for this payment method that is displayed to users - No "
2180
  "HTML"
2181
  msgstr ""
2182
+ "Indiquer le nom qui sera affiché publiquement pour cette méthode de paiement."
2183
+ " HTML interdit."
2184
 
2185
  #: ../addons/gateway/carts/mycred-marketpress.php:372
2186
  msgid "Gateway Logo URL"
2187
  msgstr "URL du logo du service de paiement"
2188
 
2189
+ #: ../addons/gateway/carts/mycred-marketpress.php:393 ..
2190
+ #: addons/gateway/carts/mycred-woocommerce.php:124
2191
+ #, php-format
2192
  msgid "How much is 1 %_singular% worth in %currency%?"
2193
  msgstr "Combien vaut 1 %_singular% en %currency% ?"
2194
 
2195
+ #: ../addons/gateway/carts/mycred-marketpress.php:398 ..
2196
+ #: addons/gateway/carts/mycred-woocommerce.php:129 ..
2197
+ #: addons/gateway/carts/mycred-wpecommerce.php:356 ../addons/gateway/event-
2198
+ #: booking/mycred-eventespresso3.php:450 ../addons/gateway/event-booking/mycred-
2199
+ #: eventsmanager-pro.php:499 ../addons/gateway/event-booking/mycred-eventsmanager.
2200
+ #: php:578
2201
  msgid "Exchange Rate"
2202
  msgstr "Taux de change"
2203
 
2204
+ #: ../addons/gateway/carts/mycred-marketpress.php:407 ..
2205
+ #: addons/gateway/carts/mycred-woocommerce.php:157 ..
2206
+ #: addons/gateway/carts/mycred-wpecommerce.php:360 ../addons/gateway/event-
2207
+ #: booking/mycred-eventespresso3.php:462 ../addons/gateway/event-booking/mycred-
2208
+ #: eventsmanager-pro.php:490 ../addons/gateway/event-booking/mycred-eventsmanager.
2209
+ #: php:569
2210
  msgid "Profit Sharing"
2211
  msgstr "Partage de bénéfice"
2212
 
2214
  msgid "Percentage"
2215
  msgstr "Pourcentage"
2216
 
2217
+ #: ../addons/gateway/carts/mycred-marketpress.php:412 ..
2218
+ #: addons/gateway/carts/mycred-woocommerce.php:159 ..
2219
+ #: addons/gateway/carts/mycred-wpecommerce.php:364 ../addons/gateway/event-
2220
+ #: booking/mycred-eventespresso3.php:464 ../addons/gateway/event-booking/mycred-
2221
+ #: eventsmanager-pro.php:493 ../addons/gateway/event-booking/mycred-eventsmanager.
2222
+ #: php:572
2223
  msgid "Option to share sales with the product owner. Use zero to disable."
2224
  msgstr ""
2225
  "Option de partage des ventes avec le propriétaire du produit. Indiquez zéro "
2226
  "pour désactiver l'option."
2227
 
2228
+ #: ../addons/gateway/carts/mycred-marketpress.php:424 ..
2229
+ #: addons/gateway/carts/mycred-wpecommerce.php:371 ../addons/gateway/event-
2230
+ #: booking/mycred-eventsmanager-pro.php:559 ../addons/gateway/event-
2231
+ #: booking/mycred-eventsmanager.php:626
2232
  msgid "Messages"
2233
  msgstr "Messages"
2234
 
2235
+ #: ../addons/gateway/carts/mycred-marketpress.php:427 ..
2236
+ #: addons/gateway/carts/mycred-wpecommerce.php:382 ../addons/gateway/event-
2237
+ #: booking/mycred-eventsmanager-pro.php:569 ../addons/gateway/event-
2238
+ #: booking/mycred-eventsmanager.php:636
2239
  msgid "Insufficient Funds"
2240
  msgstr "Fonds insuffisants"
2241
 
2243
  msgid "Message to show when the user can not use this gateway."
2244
  msgstr "Message à afficher quand un utilisateur ne peut pas utiliser ce service."
2245
 
2246
+ #: ../addons/gateway/carts/mycred-marketpress.php:435 ..
2247
+ #: addons/gateway/carts/mycred-wpecommerce.php:378 ../addons/gateway/event-
2248
+ #: booking/mycred-eventespresso3.php:490
2249
  msgid "Visitors"
2250
  msgstr "Visiteurs"
2251
 
2267
 
2268
  #: ../addons/gateway/carts/mycred-marketpress.php:453
2269
  msgid "Information to display on the order confirmation page. - HTML allowed"
2270
+ msgstr ""
2271
+ "Informations à afficher sur la page de confirmation de commande. HTML "
2272
+ "autorisé."
2273
 
2274
  #: ../addons/gateway/carts/mycred-marketpress.php:459
2275
  msgid "Order Confirmation Email"
2276
  msgstr "Email de confirmation de commande"
2277
 
2278
  #: ../addons/gateway/carts/mycred-marketpress.php:461
2279
+ #, php-format
2280
  msgid ""
2281
  "This is the email text to send to those who have made %s checkouts. It "
2282
+ "overrides the default order checkout email. These codes will be replaced "
2283
+ "with order details: CUSTOMERNAME, ORDERID, ORDERINFO, SHIPPINGINFO, "
2284
+ "PAYMENTINFO, TOTAL, TRACKINGURL. No HTML allowed."
2285
  msgstr ""
2286
+ "Ceci est le message qui sera envoyé aux utilisateurs ayant v&eacute;"
2287
+ "rifi&eacute;s leur compte %s. Il remplace le mail par d&eacute;faut de "
2288
+ "v&eacute;rification de compte. Les codes suivants seront remplac&eacute;s "
2289
+ "par les d&eacute;tails de la commande: CUSTOMERNAME, ORDERID, ORDERINFO, "
2290
+ "SHIPPINGINFO, PAYMENTINFO, TOTAL, TRACKINGURL. HTML interdit."
2291
 
2292
  #: ../addons/gateway/carts/mycred-woocommerce.php:34
2293
  msgid "Let users pay using their myCRED balance."
2303
 
2304
  #: ../addons/gateway/carts/mycred-woocommerce.php:83
2305
  msgid ""
2306
+ "Users who are not logged in or excluded from using myCRED will not have "
2307
+ "access to this gateway!"
2308
  msgstr ""
2309
  "Les utilisateurs qui ne sont pas connectés ou qui sont exclus de myCRED "
2310
  "n'auront pas accès à ce service de paiement !"
2322
  msgstr "Message au client"
2323
 
2324
  #: ../addons/gateway/carts/mycred-woocommerce.php:95
2325
+ #, php-format
2326
  msgid "Deduct the amount from your %_plural% balance."
2327
  msgstr "Déduire le montant de votre solde de %_plural%"
2328
 
2354
  msgid "Show in Cart and on Checkout Page"
2355
  msgstr "Afficher avec le panier et sur la page de contrôle"
2356
 
 
 
 
 
2357
  #: ../addons/gateway/carts/mycred-woocommerce.php:150
2358
  msgid "Order Total in %_plural%"
2359
  msgstr "Commande totale en %_plural%"
2371
  msgstr "Paiement myCRED"
2372
 
2373
  #: ../addons/gateway/carts/mycred-woocommerce.php:193
2374
+ #, php-format
2375
  msgid ""
2376
  "Allows users to pay using their myCRED %_singular% balance. Please note that "
2377
+ "users with insufficient funds and users who are not logged in will not see "
2378
+ "this payment gateway on the checkout page."
2379
  msgstr ""
2380
  "Autoriser les utilisateur à régler avec leur solde de %_singular% myCRED. "
2381
+ "Notez que les utilisateurs avec des fonds insuffisants et ceux qui ne sont "
2382
+ "pas connectés ne verront pas ce service de paiement sur la page de contrôle "
2383
+ "de leurs paiements."
2384
 
2385
  #: ../addons/gateway/carts/mycred-woocommerce.php:214
2386
  msgid "You must be logged in to pay with %_plural%"
2392
  "Vous ne pouvez pas utiliser ce service. Veuillez essayer une autre option de "
2393
  "règlement."
2394
 
2395
+ #: ../addons/gateway/carts/mycred-woocommerce.php:237
2396
  msgid "Insufficient funds. Please try a different payment option."
2397
  msgstr "Fonds insuffisants. Veuillez essayer une autre option de règlement."
2398
 
2399
+ #: ../addons/gateway/carts/mycred-woocommerce.php:299
2400
  msgid "Your account has successfully been charged."
2401
  msgstr "Votre compte a été débité avec succès."
2402
 
2403
+ #: ../addons/gateway/carts/mycred-woocommerce.php:318
2404
  msgid "Order Missing"
2405
  msgstr "Bon de commande absent"
2406
 
2407
+ #: ../addons/gateway/carts/mycred-woocommerce.php:545 ..
2408
+ #: addons/gateway/carts/mycred-wpecommerce.php:131
2409
  msgid "Your current balance"
2410
  msgstr "Votre solde actuel"
2411
 
2434
  msgstr "Template de paiements"
2435
 
2436
  #: ../addons/gateway/carts/mycred-wpecommerce.php:357
2437
+ #, php-format
2438
  msgid "How much is 1 %s worth in %s"
2439
  msgstr "Combien vaut 1 %s dans %s"
2440
 
2448
 
2449
  #: ../addons/gateway/carts/mycred-wpecommerce.php:375
2450
  msgid ""
2451
+ "Optional instructions to show users when selecting this gateway. Leave empty "
2452
+ "to hide."
2453
  msgstr ""
2454
  "Informations additionnelles à afficher quand l'utilisateur sélectionne ce "
2455
  "système de paiement. Laissez vide pour ne rien afficher."
2463
  "Message to show when users does not have enough %plural% to pay using this "
2464
  "gateway."
2465
  msgstr ""
2466
+ "Message à afficher lorsque l'utilisateur n'a pas suffisamment de %plural% "
2467
+ "pour payer avec ce système de paiement."
2468
 
2469
+ #: ../addons/gateway/event-booking/mycred-eventespresso3.php:27 ..
2470
+ #: addons/gateway/event-booking/mycred-eventsmanager-pro.php:39 ..
2471
+ #: addons/gateway/event-booking/mycred-eventsmanager.php:35
2472
  msgid "Pay Now"
2473
  msgstr "Payer maintenant"
2474
 
2477
  msgstr "Paiement pour l'enregistrement d'un événement"
2478
 
2479
  #: ../addons/gateway/event-booking/mycred-eventespresso3.php:343
2480
+ #, php-format
2481
  msgid "Activate %s"
2482
  msgstr "Activer %s"
2483
 
2484
  #: ../addons/gateway/event-booking/mycred-eventespresso3.php:351
2485
+ #, php-format
2486
  msgid "Deactivate %s"
2487
  msgstr "Désactiver %s"
2488
 
2489
+ #: ../addons/gateway/event-booking/mycred-eventespresso3.php:399 ..
2490
+ #: addons/gateway/event-booking/mycred-eventsmanager-pro.php:449 ..
2491
+ #: addons/gateway/event-booking/mycred-eventsmanager.php:524
2492
+ #, php-format
2493
  msgid "How many %s is 1 %s worth?"
2494
  msgstr "Combien de %s vaut 1 %s ?"
2495
 
2497
  msgid "Gateways Settings Successfully Updated"
2498
  msgstr "Configuration du service mise à jour"
2499
 
2500
+ #: ../addons/gateway/event-booking/mycred-eventespresso3.php:415 ..
2501
+ #: addons/gateway/event-booking/mycred-eventsmanager-pro.php:535 ..
2502
+ #: addons/gateway/event-booking/mycred-eventsmanager.php:602
2503
  msgid "Labels"
2504
  msgstr "Intitulés"
2505
 
2519
  msgid "Title to show on receipts and logs"
2520
  msgstr "Titre à afficher pour les rapports et les journaux d'activités"
2521
 
2522
+ #: ../addons/gateway/event-booking/mycred-eventespresso3.php:428 ..
2523
+ #: addons/gateway/event-booking/mycred-eventsmanager-pro.php:552 ..
2524
+ #: addons/gateway/event-booking/mycred-eventsmanager.php:619 ../addons/sell-
2525
+ #: content/myCRED-addon-sell-content.php:397 ../addons/sell-content/myCRED-addon-
2526
+ #: sell-content.php:590
2527
  msgid "Button Label"
2528
  msgstr "Intitulé du bouton"
2529
 
2531
  msgid "Pay Button"
2532
  msgstr "Bouton de paiement"
2533
 
2534
+ #: ../addons/gateway/event-booking/mycred-eventespresso3.php:447 ..
2535
+ #: addons/gateway/event-booking/mycred-eventsmanager-pro.php:137 ..
2536
+ #: addons/gateway/event-booking/mycred-eventsmanager-pro.php:140 ..
2537
+ #: addons/gateway/event-booking/mycred-eventsmanager.php:336 ..
2538
+ #: addons/gateway/event-booking/mycred-eventsmanager.php:339 ../addons/sell-
2539
+ #: content/myCRED-addon-sell-content.php:388 ../addons/sell-content/myCRED-addon-
2540
+ #: sell-content.php:586
2541
  msgid "Price"
2542
  msgstr "Prix"
2543
 
2553
  msgid "Users must be logged in to use this gateway!"
2554
  msgstr "Vous devez vous connecter pour utiliser ce service !"
2555
 
2556
+ #: ../addons/gateway/event-booking/mycred-eventespresso3.php:467 ..
2557
+ #: modules/mycred-module-log.php:22 ../modules/mycred-module-log.php:23
2558
  msgid "Log"
2559
  msgstr "Vue d&#39;ensemble"
2560
 
2561
+ #: ../addons/gateway/event-booking/mycred-eventespresso3.php:470 ..
2562
+ #: includes/mycred-admin.php:483
2563
  msgid "Log Entry"
2564
  msgstr "Journal d'activité"
2565
 
2573
 
2574
  #: ../addons/gateway/event-booking/mycred-eventespresso3.php:482
2575
  msgid ""
2576
+ "Message to show users on the payment page before they are charged. Leave "
2577
+ "empty to hide."
2578
  msgstr ""
2579
  "Message à afficher sur la page de paiement avant que l'utilisateur ne soit "
2580
  "débité. Laissez vide pour ne rien afficher."
2591
  msgid "Message to show visitors (users not logged in) on the payment page."
2592
  msgstr "Message à afficher aux visiteurs non connectés sur la page de paiement."
2593
 
2594
+ #: ../addons/gateway/event-booking/mycred-eventespresso3.php:502 ..
2595
+ #: modules/mycred-module-settings.php:540
2596
  msgid "Update Settings"
2597
  msgstr "Enregistrer la configuration"
2598
 
2599
+ #: ../addons/gateway/event-booking/mycred-eventsmanager-pro.php:33 ..
2600
+ #: addons/gateway/event-booking/mycred-eventsmanager.php:29
2601
  msgid "Payment for tickets to %link_with_title%"
2602
  msgstr "tickets de Paiement vers %link_with_title%"
2603
 
2604
+ #: ../addons/gateway/event-booking/mycred-eventsmanager-pro.php:34 ..
2605
+ #: addons/gateway/event-booking/mycred-eventsmanager.php:30
2606
  msgid "Ticket refund for %link_with_title%"
2607
  msgstr "Ticket de Remboursement vers %link_with_title%"
2608
 
2609
+ #: ../addons/gateway/event-booking/mycred-eventsmanager-pro.php:38 ..
2610
+ #: addons/gateway/event-booking/mycred-eventsmanager.php:34
2611
+ #, php-format
2612
  msgid "Pay using your %_plural% balance"
2613
  msgstr "Payez avec votre solde de %_plural%"
2614
 
2615
+ #: ../addons/gateway/event-booking/mycred-eventsmanager-pro.php:40 ..
2616
+ #: addons/gateway/event-booking/mycred-eventsmanager.php:36
2617
  msgid "Pay"
2618
  msgstr "Payer"
2619
 
2620
+ #: ../addons/gateway/event-booking/mycred-eventsmanager-pro.php:43 ..
2621
+ #: addons/gateway/event-booking/mycred-eventsmanager.php:39
2622
  msgid "Thank you for your payment!"
2623
  msgstr "Merci pour votre paiement !"
2624
 
2625
+ #: ../addons/gateway/event-booking/mycred-eventsmanager-pro.php:44 ..
2626
+ #: addons/gateway/event-booking/mycred-eventsmanager.php:40
2627
  msgid "I'm sorry but you can not pay for these tickets using %_plural%"
2628
  msgstr "Désolé mais vous ne pouvez pas payer pour ces tickets à l'aide de %_plural%"
2629
 
2630
+ #: ../addons/gateway/event-booking/mycred-eventsmanager-pro.php:134 ..
2631
+ #: addons/gateway/event-booking/mycred-eventsmanager.php:333
2632
  msgid "Ticket Type"
2633
  msgstr "Type de ticket"
2634
 
2635
+ #: ../addons/gateway/event-booking/mycred-eventsmanager-pro.php:143 ..
2636
+ #: addons/gateway/event-booking/mycred-eventsmanager.php:342
2637
  msgid "Spaces"
2638
  msgstr "Espaces"
2639
 
2645
  msgid "Reject"
2646
  msgstr "Rejeter"
2647
 
2648
+ #: ../addons/gateway/event-booking/mycred-eventsmanager-pro.php:374 ..
2649
+ #: modules/mycred-module-log.php:500 ../modules/mycred-module-settings.php:488 ..
2650
+ #: modules/mycred-module-settings.php:507
2651
  msgid "Delete"
2652
  msgstr "Suppirmer"
2653
 
2655
  msgid "Edit/View"
2656
  msgstr "Modifier/Aperçu"
2657
 
2658
+ #: ../addons/gateway/event-booking/mycred-eventsmanager-pro.php:477 ..
2659
+ #: addons/gateway/event-booking/mycred-eventsmanager.php:542
2660
  msgid "Disabled - Users CAN NOT pay for tickets using %plural%."
2661
  msgstr ""
2662
  "Désactivé - les utilisateurs NE PEUVENT PAS régler de tickets avec leurs "
2663
  "%_plural%."
2664
 
2665
+ #: ../addons/gateway/event-booking/mycred-eventsmanager-pro.php:478 ..
2666
+ #: addons/gateway/event-booking/mycred-eventsmanager.php:543
2667
  msgid "Single - Users can ONLY pay for tickets using %plural%."
2668
  msgstr ""
2669
  "Unique - les utilisateurs PEUVENT SEULEMENT payer des tickets avec leurs "
2670
  "%_plural%"
2671
 
2672
+ #: ../addons/gateway/event-booking/mycred-eventsmanager-pro.php:479 ..
2673
+ #: addons/gateway/event-booking/mycred-eventsmanager.php:544
2674
  msgid "Multi - Users can pay for tickets using other gateways or %plural%."
2675
  msgstr ""
2676
+ "Multi - les utilisateurs peuvent payer leurs tickets avec d'autres services "
2677
+ "ou avec leurs %_plural%"
2678
 
2679
+ #: ../addons/gateway/event-booking/mycred-eventsmanager-pro.php:483 ..
2680
+ #: addons/gateway/event-booking/mycred-eventsmanager-pro.php:516 ..
2681
+ #: addons/gateway/event-booking/mycred-eventsmanager.php:562 ..
2682
+ #: addons/gateway/event-booking/mycred-eventsmanager.php:595
2683
  msgid "Refunds"
2684
  msgstr "Remboursements"
2685
 
2688
  "The percentage of the paid amount to refund if a user cancels their booking. "
2689
  "Use zero for no refunds. No refunds are given to \"Rejected\" bookings!"
2690
  msgstr ""
2691
+ "Le pourcentage de la somme versée à rembourser quand un utilisateur annule "
2692
+ "une réservation. Indiquez zéro pour aucun remboursement. Aucun remboursement "
2693
+ "n'est effectué pour les réservations \"Rejetées\" !"
2694
 
2695
+ #: ../addons/gateway/event-booking/mycred-eventsmanager-pro.php:506 ..
2696
+ #: addons/gateway/event-booking/mycred-eventsmanager.php:585
2697
  msgid "Log Templates"
2698
  msgstr "Textes à afficher"
2699
 
2700
+ #: ../addons/gateway/event-booking/mycred-eventsmanager-pro.php:509 ..
2701
+ #: addons/gateway/event-booking/mycred-eventsmanager.php:588
2702
  msgid "Purchases"
2703
  msgstr "Achats"
2704
 
2705
+ #: ../addons/gateway/event-booking/mycred-eventsmanager-pro.php:538 ..
2706
+ #: addons/gateway/event-booking/mycred-eventsmanager.php:605
2707
  msgid "Payment Link Label"
2708
  msgstr "Intitulé du lien de paiement"
2709
 
2710
+ #: ../addons/gateway/event-booking/mycred-eventsmanager-pro.php:541 ..
2711
+ #: addons/gateway/event-booking/mycred-eventsmanager.php:608
2712
  msgid ""
2713
  "The payment link shows / hides the payment form under \"My Bookings\". No HTML "
2714
  "allowed."
2715
  msgstr ""
2716
+ "Le lien pour afficher/masquer le formulaire de paiement sous \"Mes commandes\"."
2717
+ " HTML interdit."
2718
 
2719
+ #: ../addons/gateway/event-booking/mycred-eventsmanager-pro.php:545 ..
2720
+ #: addons/gateway/event-booking/mycred-eventsmanager.php:612
2721
  msgid "Payment Header"
2722
  msgstr "En-tête de la page de paiement"
2723
 
2724
+ #: ../addons/gateway/event-booking/mycred-eventsmanager-pro.php:548 ..
2725
+ #: addons/gateway/event-booking/mycred-eventsmanager.php:615
2726
  msgid "Shown on top of the payment form. No HTML allowed."
2727
  msgstr "Sera affiché au-dessus du formulaire de paiement. HTML interdit."
2728
 
2729
+ #: ../addons/gateway/event-booking/mycred-eventsmanager-pro.php:555 ..
2730
+ #: addons/gateway/event-booking/mycred-eventsmanager.php:622
2731
  msgid "The button label for payments. No HTML allowed!"
2732
  msgstr "Intitulé du bouton de paiement. HTML interdit !"
2733
 
2734
+ #: ../addons/gateway/event-booking/mycred-eventsmanager-pro.php:562 ..
2735
+ #: addons/gateway/event-booking/mycred-eventsmanager.php:629
2736
  msgid "Successful Payments"
2737
  msgstr "Paiements réussis"
2738
 
2739
+ #: ../addons/gateway/event-booking/mycred-eventsmanager-pro.php:565 ..
2740
+ #: addons/gateway/event-booking/mycred-eventsmanager-pro.php:572 ..
2741
+ #: addons/gateway/event-booking/mycred-eventsmanager.php:632 ..
2742
+ #: addons/gateway/event-booking/mycred-eventsmanager.php:639
2743
  msgid "No HTML allowed!"
2744
  msgstr "Le HTML n'est pas autorisé !"
2745
 
2752
  msgstr "Cliquez pour basculer"
2753
 
2754
  #: ../addons/gateway/event-booking/mycred-eventsmanager.php:533
2755
+ #, php-format
2756
  msgid "%s Payments"
2757
  msgstr "%s Paiements"
2758
 
2761
  "The percentage of the paid amount to refund if a booking gets cancelled. Use "
2762
  "zero for no refunds. No refunds are given to \"Rejected\" bookings."
2763
  msgstr ""
2764
+ "Le pourcentage du montant à rembourser en cas d'annulation de commande. "
2765
+ "Mettez zéro pour ne rien rembourser. Aucun remboursement n'est attribué aux "
2766
+ "commandes \"Rejetées\"."
2767
 
2768
+ #: ../addons/notifications/myCRED-addon-notifications.php:166 ../modules/mycred-
2769
+ #: module-addons.php:201
2770
  msgid "Notifications"
2771
  msgstr "Notifications"
2772
 
2778
  msgid "Use the included CSS Styling for notifications."
2779
  msgstr "Utiliser le style CSS inclus pour les notifications."
2780
 
2781
+ #: ../addons/notifications/myCRED-addon-notifications.php:175 ../modules/mycred-
2782
+ #: module-buddypress.php:410
2783
  msgid "Template"
2784
  msgstr "Texte à afficher"
2785
 
2786
  #: ../addons/notifications/myCRED-addon-notifications.php:179
2787
+ #, php-format
2788
  msgid "Use %entry% to show the log entry in the notice and %amount% for the amount."
2789
  msgstr ""
2790
  "Utilisez %entry% pour afficher l'élément concerné dans la notice et %amount% "
2799
  "The number of days a users notification is saved before being automatically "
2800
  "deleted."
2801
  msgstr ""
2802
+ "Le nombre de jours de conservations d'une notice adressée à l'utilisateur "
2803
+ "avant qu'elle ne soit automatiquement supprimée."
2804
 
2805
  #: ../addons/notifications/myCRED-addon-notifications.php:189
2806
  msgid "Duration"
2808
 
2809
  #: ../addons/notifications/myCRED-addon-notifications.php:193
2810
  msgid ""
2811
+ "The number of milliseconds a notice should be visible.<br />Use zero to "
2812
+ "require that the user closes the notice manually. 1000 milliseconds = 1 "
2813
+ "second."
2814
  msgstr ""
2815
  "La durée d'apparition d'une notice, en millisecondes avant qu'elle ne se "
2816
+ "referme automatiquement.<br/>Utilisez zéro pour forcer l'utilisateur à "
2817
+ "fermer la notice manuellement. 1000 millisecondes = 1 seconde."
2818
 
2819
  #: ../addons/ranks/myCRED-addon-ranks.php:231
2820
  msgid "Warning! All ranks will be deleted! This can not be undone!"
2826
  msgid "Are you sure you want to re-assign user ranks?"
2827
  msgstr "Je confirme la réassignation du classement de l'utilisateur"
2828
 
2829
+ #: ../addons/ranks/myCRED-addon-ranks.php:246 ../addons/ranks/myCRED-addon-ranks.
2830
+ #: php:252 ../addons/ranks/myCRED-addon-ranks.php:258 ../addons/ranks/myCRED-
2831
+ #: addon-ranks.php:787 ../addons/ranks/myCRED-addon-ranks.php:983 ..
2832
+ #: modules/mycred-module-addons.php:213
2833
  msgid "Ranks"
2834
  msgstr "Attribution de Points"
2835
 
2836
+ #: ../addons/ranks/myCRED-addon-ranks.php:247 ../addons/ranks/myCRED-addon-ranks.
2837
+ #: php:479 ../addons/ranks/myCRED-addon-ranks.php:498 ../addons/ranks/myCRED-
2838
+ #: addon-ranks.php:593
2839
  msgid "Rank"
2840
  msgstr "Classement"
2841
 
2867
  msgid "No ranks found in Trash"
2868
  msgstr "Aucun classement trouvé dans la corbeille"
2869
 
2870
+ #: ../addons/ranks/myCRED-addon-ranks.php:344
2871
+ #, php-format
2872
  msgid "Completed - Total of %d users effected"
2873
  msgstr "Terminé - %d utilisateurs ont été affectés"
2874
 
2875
+ #: ../addons/ranks/myCRED-addon-ranks.php:346
2876
  msgid "Log is Empty"
2877
  msgstr "L'affichage est vide"
2878
 
2879
+ #: ../addons/ranks/myCRED-addon-ranks.php:553 ../addons/ranks/myCRED-addon-ranks.
2880
+ #: php:556
2881
+ #, php-format
2882
  msgid "Rank Updated. View <a href=\"%1$s\">All Ranks</a>."
2883
  msgstr "Classement mis à jour. Afficher <a href=\"%1$s\">tous les classements</a>."
2884
 
2885
+ #: ../addons/ranks/myCRED-addon-ranks.php:558
2886
  msgid "Rank Activated"
2887
  msgstr "Classement activé"
2888
 
2889
+ #: ../addons/ranks/myCRED-addon-ranks.php:559
2890
  msgid "Rank Saved"
2891
  msgstr "Classement enregistré"
2892
 
2893
+ #: ../addons/ranks/myCRED-addon-ranks.php:560
2894
+ #, php-format
2895
  msgid "Rank Submitted for approval. View <a href=\"%1$s\">All Ranks</a>."
2896
  msgstr ""
2897
  "Classement en cours de validation. Afficher <a href=\"%1$s\">tous les "
2898
  "classements</a>."
2899
 
2900
+ #: ../addons/ranks/myCRED-addon-ranks.php:562
2901
+ #, php-format
2902
  msgid "Rank scheduled for: <strong>%1$s</strong>."
2903
  msgstr "Classement pr&eacute;vu pour: <strong>%1$s</strong>."
2904
 
2905
+ #: ../addons/ranks/myCRED-addon-ranks.php:619 ../addons/ranks/myCRED-addon-ranks.
2906
+ #: php:672
2907
  msgid "Rank Title"
2908
  msgstr "Titre du classement"
2909
 
2910
+ #: ../addons/ranks/myCRED-addon-ranks.php:620
2911
  msgid "Logo"
2912
  msgstr "Logo"
2913
 
2914
+ #: ../addons/ranks/myCRED-addon-ranks.php:621
2915
  msgid "Requirement"
2916
  msgstr "Obligation"
2917
 
2918
+ #: ../addons/ranks/myCRED-addon-ranks.php:622 ../modules/mycred-module-settings.
2919
+ #: php:451
2920
  msgid "Users"
2921
  msgstr "Utilisateurs"
2922
 
2923
+ #: ../addons/ranks/myCRED-addon-ranks.php:638
2924
  msgid "No Logo Set"
2925
  msgstr "Aucun logo défini"
2926
 
2927
+ #: ../addons/ranks/myCRED-addon-ranks.php:647 ../addons/ranks/myCRED-addon-ranks.
2928
+ #: php:652
2929
  msgid "Any Value"
2930
  msgstr "Valeur au choix"
2931
 
2932
+ #: ../addons/ranks/myCRED-addon-ranks.php:654
2933
  msgid "Maximum %plural%"
2934
  msgstr "Maximum de %plural%"
2935
 
2936
+ #: ../addons/ranks/myCRED-addon-ranks.php:685
2937
  msgid "Rank Settings"
2938
  msgstr "Configuration des classements"
2939
 
2940
+ #: ../addons/ranks/myCRED-addon-ranks.php:707
2941
  msgid "Minimum %plural% to reach this rank"
2942
  msgstr ""
2943
  "Minimum de %plural% &agrave; d&eacute;tenir pour acc&eacute;der &agrave; ce "
2944
  "classement"
2945
 
2946
+ #: ../addons/ranks/myCRED-addon-ranks.php:711
2947
  msgid "Maximum %plural% to be included in this rank"
2948
  msgstr ""
2949
  "Maximum de %plural% &agrave; poss&eacute;der pour &ecirc;tre inclus dans ce "
2950
  "classement"
2951
 
2952
+ #: ../addons/ranks/myCRED-addon-ranks.php:718
2953
  msgid "All Published Ranks"
2954
  msgstr "Tous les classements publiés"
2955
 
2956
+ #: ../addons/ranks/myCRED-addon-ranks.php:724 ../addons/ranks/myCRED-addon-ranks.
2957
+ #: php:726
2958
  msgid "Not Set"
2959
  msgstr "Non configuré"
2960
 
2961
+ #: ../addons/ranks/myCRED-addon-ranks.php:731
2962
  msgid "No Ranks found"
2963
  msgstr "Aucun classement trouivé"
2964
 
2965
+ #: ../addons/ranks/myCRED-addon-ranks.php:789
2966
  msgid "Rank Features"
2967
  msgstr "Caractéristiques du classement"
2968
 
2969
+ #: ../addons/ranks/myCRED-addon-ranks.php:793
2970
  msgid "%plural% requirement"
2971
  msgstr "condition requise pour l&#39;attribution de %_plural%"
2972
 
2973
+ #: ../addons/ranks/myCRED-addon-ranks.php:794
2974
  msgid "Featured Image (Logo)"
2975
  msgstr "Illustration (logo)"
2976
 
2977
+ #: ../addons/ranks/myCRED-addon-ranks.php:795
2978
  msgid "Content"
2979
  msgstr "Contenu"
2980
 
2981
+ #: ../addons/ranks/myCRED-addon-ranks.php:796
2982
  msgid "Excerpt"
2983
  msgstr "Extrait"
2984
 
2985
+ #: ../addons/ranks/myCRED-addon-ranks.php:797
2986
  msgid "Comments"
2987
  msgstr "Commentaires"
2988
 
2989
+ #: ../addons/ranks/myCRED-addon-ranks.php:798
2990
  msgid "Page Attributes"
2991
  msgstr "Attributs de la page"
2992
 
2993
+ #: ../addons/ranks/myCRED-addon-ranks.php:799
2994
  msgid "Custom Fields"
2995
  msgstr "Champs Personnalisés"
2996
 
2997
+ #: ../addons/ranks/myCRED-addon-ranks.php:802
2998
  msgid "Public"
2999
  msgstr "Public"
3000
 
3001
+ #: ../addons/ranks/myCRED-addon-ranks.php:806
3002
  msgid ""
3003
+ "If you want to create a template archive for each rank, you must select to "
3004
+ "have ranks public. Defaults to disabled."
3005
  msgstr ""
3006
+ "Pour créer un template d'archivage pour chaque classement, ceux-ci doivent "
3007
+ "être publics. Désactivé par défaut."
3008
 
3009
+ #: ../addons/ranks/myCRED-addon-ranks.php:809
3010
  msgid "Rank Basis"
3011
  msgstr "Base de Classement"
3012
 
3013
+ #: ../addons/ranks/myCRED-addon-ranks.php:812
3014
  msgid "Users are ranked according to their current balance."
3015
  msgstr "Les utilisateurs sont classés selon leur solde courant"
3016
 
3017
+ #: ../addons/ranks/myCRED-addon-ranks.php:815
3018
  msgid ""
3019
  "Users are ranked according to the total amount of %_plural% they have "
3020
  "accumulated."
3021
  msgstr ""
3022
+ "Les utilisateurs sont classés selon le montant de total de %_plural% qu'ils "
3023
+ "ont accumulés."
3024
 
3025
+ #: ../addons/ranks/myCRED-addon-ranks.php:819 ../addons/ranks/myCRED-addon-ranks.
3026
+ #: php:824
3027
  msgid "Calculate Totals"
3028
  msgstr "Calculer les totaux"
3029
 
3030
+ #: ../addons/ranks/myCRED-addon-ranks.php:822
3031
  msgid ""
3032
  "Use this button to calculate or re-calcualte your users totals. If not used, "
3033
  "the users current balance will be used as a starting point."
3034
  msgstr ""
3035
+ "Utilisez ce bouton pour calculer ou recalculer les totaux de vos "
3036
+ "utilisateurs. Si inutilisez c'est le solde courant des utilisateurs qui "
3037
+ "servira de point de départ."
3038
 
3039
+ #: ../addons/ranks/myCRED-addon-ranks.php:822
3040
  msgid ""
3041
  "Once a users total has been calculated, they will be assigned to their "
3042
  "appropriate roles. For this reason, it is highly recommended that you first "
3043
  "setup your ranks!"
3044
  msgstr ""
3045
+ "Une fois les totaux de vos utilisateurs calculés, leurs rôles respectifs "
3046
+ "leurs seront assignés. Pour cette raison, il est fortement recommandé que "
3047
+ "vous configurez d'abord vos classements !"
3048
 
3049
+ #: ../addons/ranks/myCRED-addon-ranks.php:823
3050
  msgid ""
3051
+ "Depending on your log size and number of users this process may take a while."
3052
+ " Please do not leave, click \"Update Settings\" or re-fresh this page until "
3053
+ "this is completed!"
3054
  msgstr ""
3055
  "Selon la taille de votre hébergement et le nombres d'utilisateurs, cette "
3056
+ "opération peut prendre un certain temps. Ne quittez pas cette page, ne "
3057
+ "cliquez pas sur \"Mettre à jour\" et ne rafraichissez pas la page avant la fin "
3058
+ "de l'opération !"
3059
 
3060
+ #: ../addons/ranks/myCRED-addon-ranks.php:828
3061
  msgid "Archive URL"
3062
  msgstr "URL des archives"
3063
 
3064
+ #: ../addons/ranks/myCRED-addon-ranks.php:832
3065
  msgid "Ignored if Ranks are not public"
3066
  msgstr "Ignoré si le classement n'est pas public"
3067
 
3068
+ #: ../addons/ranks/myCRED-addon-ranks.php:835
3069
  msgid "Display Order"
3070
  msgstr "Ordre d'affichage"
3071
 
3072
+ #: ../addons/ranks/myCRED-addon-ranks.php:842
3073
  msgid "Ascending - Lowest rank to highest"
3074
  msgstr "Ascendant - Du plus petit au plus grand"
3075
 
3076
+ #: ../addons/ranks/myCRED-addon-ranks.php:843
3077
  msgid "Descending - Highest rank to lowest"
3078
  msgstr "Descendant - Du plus grand au plus petit"
3079
 
3080
+ #: ../addons/ranks/myCRED-addon-ranks.php:852
3081
  msgid ""
3082
+ "Select in what order ranks should be displayed in your admin area and/or "
3083
+ "front if ranks are \"Public\""
3084
  msgstr ""
3085
+ "Choisissez l'ordre d'affichage des classements dans l'admin et/ou sur le "
3086
+ "site quand les classements sont marqués comme \"Publics\""
3087
 
3088
+ #: ../addons/ranks/myCRED-addon-ranks.php:862 ../modules/mycred-module-buddypress.
3089
+ #: php:366 ../modules/mycred-module-buddypress.php:373
3090
  msgid "Do not show."
3091
  msgstr "Ne pas afficher."
3092
 
3093
+ #: ../addons/ranks/myCRED-addon-ranks.php:863 ../modules/mycred-module-buddypress.
3094
+ #: php:367
3095
  msgid "Include in Profile Header."
3096
  msgstr "Inclure dans l'en-tête du profil."
3097
 
3098
+ #: ../addons/ranks/myCRED-addon-ranks.php:864 ../modules/mycred-module-buddypress.
3099
+ #: php:368
3100
  msgid "Include under the \"Profile\" tab"
3101
  msgstr "Inclure sous l'onglet \"Profil\""
3102
 
3103
+ #: ../addons/ranks/myCRED-addon-ranks.php:865 ../modules/mycred-module-buddypress.
3104
+ #: php:369
3105
  msgid "Include under the \"Profile\" tab and Profile Header."
3106
  msgstr "Inclure sous l'onglet \"Profil\" et dans l'en-tête du profil."
3107
 
3108
+ #: ../addons/ranks/myCRED-addon-ranks.php:868
3109
  msgid "Rank in BuddyPress"
3110
  msgstr "Classement dans BuddyPress"
3111
 
3112
+ #: ../addons/ranks/myCRED-addon-ranks.php:936
3113
  msgid "Script Communication Error"
3114
  msgstr "Erreur de communication des scripts"
3115
 
3116
+ #: ../addons/ranks/myCRED-addon-ranks.php:986
3117
  msgid "Rank Post Type"
3118
  msgstr "Classer le type d'article"
3119
 
3120
+ #: ../addons/ranks/myCRED-addon-ranks.php:990
3121
  msgid "No. of ranks"
3122
  msgstr "N° de classement"
3123
 
3124
+ #: ../addons/ranks/myCRED-addon-ranks.php:994 ../modules/mycred-module-log.php:
3125
+ #: 368 ../modules/mycred-module-settings.php:440 ../modules/mycred-module-
3126
+ #: settings.php:455
3127
  msgid "Actions"
3128
  msgstr "Actions"
3129
 
3130
+ #: ../addons/ranks/myCRED-addon-ranks.php:995
3131
  msgid "Remove All Ranks"
3132
  msgstr "Supprimer tous les classements"
3133
 
3134
+ #: ../addons/ranks/myCRED-addon-ranks.php:995
3135
  msgid "Assign Ranks to Users"
3136
  msgstr "Attribuer un classement à l'utilisateur"
3137
 
3138
+ #: ../addons/ranks/includes/mycred-rank-functions.php:192
3139
  msgid "mycred_get_users_rank() : Missing required user id"
3140
  msgstr "mycred_get_users_rank() : l'ID utilisateur requis est manquant"
3141
 
3142
+ #: ../addons/ranks/includes/mycred-rank-functions.php:206
3143
  msgid "no rank"
3144
  msgstr "pas classé"
3145
 
3146
+ #: ../addons/ranks/includes/mycred-rank-shortcodes.php:58 ..
3147
+ #: addons/ranks/includes/mycred-rank-shortcodes.php:134
3148
  msgid "No users found with this rank"
3149
  msgstr "Aucun utilisateur avec ce classement n'a été trouvé."
3150
 
3151
+ #: ../addons/ranks/includes/mycred-rank-shortcodes.php:63 ../includes/mycred-
3152
+ #: shortcodes.php:352 ../includes/mycred-shortcodes.php:355 ../includes/mycred-
3153
+ #: shortcodes.php:417 ../includes/mycred-shortcodes.php:478 ../includes/mycred-
3154
+ #: shortcodes.php:482 ../includes/mycred-shortcodes.php:486
3155
  msgid "error"
3156
  msgstr "erreur"
3157
 
3187
  msgid "Pay Content Author."
3188
  msgstr "Payer l'auteur du contenu"
3189
 
3190
+ #: ../addons/sell-content/myCRED-addon-sell-content.php:339 ../includes/mycred-
3191
+ #: overview.php:141 ../includes/mycred-overview.php:148 ../modules/mycred-module-
3192
+ #: addons.php:224
3193
  msgid "Sell Content"
3194
  msgstr "Vendre du contenu"
3195
 
3238
  msgstr "Template des ventes pour les non mebmres"
3239
 
3240
  #: ../addons/sell-content/myCRED-addon-sell-content.php:415
3241
+ #, php-format
3242
  msgid ""
3243
+ "Do <strong>not</strong> use the %buy_button% in this template as a user must "
3244
+ "be logged in to buy content!"
3245
  msgstr ""
3246
+ "N&#39;utilisez <strong>pas</strong> %buy_button% sur ce template, puisque "
3247
+ "l&#39;utilisateur doit &ecirc;tre connect&eacute; pour acheter du contenu !"
3248
 
3249
  #: ../addons/sell-content/myCRED-addon-sell-content.php:419
3250
  msgid "Sale Template for members"
3251
  msgstr "Template des ventes pour les membres"
3252
 
3253
+ #: ../addons/sell-content/myCRED-addon-sell-content.php:423 ../addons/sell-
3254
+ #: content/myCRED-addon-sell-content.php:431
3255
+ #, php-format
3256
  msgid "Your template must contain the %buy_button% tag for purchases to work!"
3257
  msgstr ""
3258
  "Votre template doit contenir le mot-cl&eacute; %buy_button% pour que l&#39;"
3271
  msgstr "Template de connexion pour les ventes"
3272
 
3273
  #: ../addons/sell-content/myCRED-addon-sell-content.php:494
3274
+ #, php-format
3275
  msgid "%s Sell This"
3276
  msgstr "%s a vendu ceci"
3277
 
3278
  #: ../addons/sell-content/myCRED-addon-sell-content.php:548
3279
+ #, php-format
3280
  msgid "%s Sell Content needs to be setup before you can use this feature."
3281
  msgstr ""
3282
  "%s Vendre du contenu doit être paramétré avant que vous ne puissiez utiliser "
3302
  msgid "Thank you for your purchase!"
3303
  msgstr "Merci pour votre achat"
3304
 
3305
+ #: ../addons/sell-content/myCRED-addon-sell-content.php:1008 ../addons/sell-
3306
+ #: content/myCRED-addon-sell-content.php:1094
3307
  msgid "The following content is set for sale:"
3308
  msgstr "Le contenu suivant est prévu à la vente:"
3309
 
3351
 
3352
  #: ../addons/transfer/myCRED-addon-transfer.php:146
3353
  msgid ""
3354
+ "This myCRED Add-on has not yet been setup! No transfers are allowed until "
3355
+ "this has been done!"
3356
  msgstr ""
3357
+ "Ce module myCRED n'a pas encore été paramétré. Aucun transfert n'est "
3358
+ "autorisé avant qu'il ne soit activé."
3359
 
3360
  #: ../addons/transfer/myCRED-addon-transfer.php:147
3361
  msgid "Insufficient funds. Please enter a lower amount."
3385
  msgid "User Email (user_email)"
3386
  msgstr "Email (user_email)"
3387
 
3388
+ #: ../addons/transfer/myCRED-addon-transfer.php:191 ../addons/transfer/myCRED-
3389
+ #: addon-transfer.php:631
3390
  msgid "Transfer %plural%"
3391
  msgstr "Transf&eacute;rer des %plural%"
3392
 
3393
+ #: ../addons/transfer/myCRED-addon-transfer.php:195 ../includes/mycred-widgets.
3394
+ #: php:593 ../modules/mycred-module-settings.php:469
3395
  msgid "Point Types"
3396
  msgstr "Types de Points"
3397
 
3444
  "Text to show when users are not logged in. Leave empty to hide. No HTML "
3445
  "elements allowed!"
3446
  msgstr ""
3447
+ "Texte à afficher aux utilisateurs qui ne sont pas connectés. Laissez vide "
3448
+ "pour masquer la zone. Les éléments HTML ne sont pas autorisés"
3449
 
3450
  #: ../addons/transfer/myCRED-addon-transfer.php:274
3451
  msgid "Balance Template"
3456
  "Template to use when displaying the users balance (if included). No HTML "
3457
  "elements allowed!"
3458
  msgstr ""
3459
+ "Template à utiliser pour l'affichage des relevés des utilisateurs (si "
3460
+ "inclus). Les éléments HTML ne sont pas autorisés."
3461
 
3462
  #: ../addons/transfer/myCRED-addon-transfer.php:280
3463
  msgid "Limit Template"
3489
 
3490
  #: ../addons/transfer/myCRED-addon-transfer.php:296
3491
  msgid ""
3492
+ "Text to show when a users balance is to low for transfers. Leave empty to "
3493
+ "hide. No HTML elements allowed!"
3494
  msgstr ""
3495
  "Texte à afficher quand le solde d'un utilisateur est trop faible pour un "
3496
  "transfert. Laissez vide pour masquer la zone. Les éléments HTML ne sont pas "
3514
  msgstr "Autoriser les transferts entre utilisateurs"
3515
 
3516
  #: ../addons/transfer/myCRED-addon-transfer.php:562
3517
+ #, php-format
3518
  msgid "(%s) Transfer"
3519
  msgstr "(%s) Transfert"
3520
 
3539
  msgstr "email"
3540
 
3541
  #: ../addons/transfer/myCRED-addon-transfer.php:780
3542
+ #, php-format
3543
  msgid "recipients %s"
3544
  msgstr "destinataires %s"
3545
 
3552
  msgstr "Montant :"
3553
 
3554
  #: ../includes/mycred-about.php:75
3555
+ #, php-format
3556
  msgid "Welcome to %s %s"
3557
  msgstr "Bienvenue dans %s %s"
3558
 
3561
  "Re-save your myCRED Settings & all myCRED widget settings that you are "
3562
  "currently using."
3563
  msgstr ""
3564
+ "Réenregistrez vos paramètres myCRED et tous les réglages des widgets myCRED "
3565
+ "que vous utilisez actuellement."
3566
 
3567
  #: ../includes/mycred-admin.php:67
3568
  msgid "Re-save your myCRED Hook Settings."
3573
  "Please complete the following tasks in order to finish updating myCRED to "
3574
  "version 1.4:"
3575
  msgstr ""
3576
+ "Veuillez compléter les points suivants pour terminer la mise à jour de "
3577
+ "myCRED 1.4&nbsp;:"
3578
 
3579
  #: ../includes/mycred-admin.php:97
3580
  msgid "User is excluded"
3596
  msgid "Excluded"
3597
  msgstr "Exclus"
3598
 
3599
+ #: ../includes/mycred-admin.php:279 ../modules/mycred-module-log.php:250 ..
3600
+ #: modules/mycred-module-log.php:251
3601
  msgid "History"
3602
  msgstr "Mes points"
3603
 
3606
  msgstr "Ajustement"
3607
 
3608
  #: ../includes/mycred-admin.php:335 ../includes/mycred-admin.php:394
3609
+ #, php-format
3610
  msgid "%singular% balance"
3611
  msgstr "solde de %singular%"
3612
 
3723
  msgstr "Horodatage unix incorrect (to):"
3724
 
3725
  #: ../includes/mycred-importer.php:11
3726
+ #, php-format
3727
  msgid "%s Log Import"
3728
  msgstr "Importation du journal %s"
3729
 
3732
  msgstr "Importation des données de connexion via un fichier CSV"
3733
 
3734
  #: ../includes/mycred-importer.php:43
3735
+ #, php-format
3736
  msgid "%s Balance Import"
3737
  msgstr "Import des soldes %s"
3738
 
3741
  msgstr "Importer les soldes"
3742
 
3743
  #: ../includes/mycred-importer.php:75
3744
+ #, php-format
3745
  msgid "%s CubePoints Import"
3746
  msgstr "Importation CubePoints %s"
3747
 
3748
+ #: ../includes/mycred-importer.php:76 ../includes/importers/mycred-cubepoints.php:
3749
+ #: 344
3750
  msgid "Import CubePoints log entries and / or balances."
3751
  msgstr "Importe les données de onnexion CubePoints et/ou les soldes"
3752
 
3768
 
3769
  #: ../includes/mycred-install.php:54
3770
  msgid ""
3771
+ "Sorry but your WordPress installation does not reach the minimum "
3772
+ "requirements for running myCRED. The following errors were given:"
3773
  msgstr ""
3774
  "Désolé mais votre installation WordPress ne dispose pas des ressources "
3775
  "nécessaires au bon fonctionnement de myCRED. Les erreurs suivantes sont "
3788
  msgstr "Installation de myCRED"
3789
 
3790
  #: ../includes/mycred-install.php:385
3791
+ #, php-format
3792
  msgid "%s Setup"
3793
  msgstr "Configuration %s"
3794
 
3798
 
3799
  #: ../includes/mycred-install.php:411
3800
  msgid ""
3801
+ "Click \"Begin Setup\" to install myCRED. You will be able to select your "
3802
+ "points format, layout and security settings."
3803
  msgstr ""
3804
+ "Cliquez sur \"Démarrer le paramétrage\" pour installer myCRED. Vous serez "
3805
+ "alors en mesure de choisir le format de points, l'apparence et les "
3806
+ "paramètres de sécurité."
3807
 
3808
  #: ../includes/mycred-install.php:412
3809
  msgid "Begin Setup"
3879
 
3880
  #: ../includes/mycred-install.php:556 ../modules/mycred-module-settings.php:390
3881
  msgid ""
3882
+ "As an added security, you can set the maximum amount a user can gain or "
3883
+ "loose in a single instance. If used, make sure this is the maximum amount a "
3884
+ "user would be able to transfer, buy, or spend in your store. Use zero to "
3885
+ "disable."
3886
+ msgstr ""
3887
+ "Pour renforcer la sécurité du dispositif, vous pouvez fixer le montant "
3888
+ "maximum qu'un utilisateur peut gagner ou perdre lors d'une session. Si vous "
3889
+ "voulez utiliser cette option, assurez-vous que ceci est bien le montant "
3890
+ "maximum pouvant être dépensé, transféré ou reçu. Utilisez zéro pour "
3891
+ "désactiver l'option."
3892
 
3893
  #: ../includes/mycred-install.php:563 ../modules/mycred-module-settings.php:397
3894
  msgid "Exclude those who can \"Edit Settings\"."
3925
  msgstr "Installer et démarrer"
3926
 
3927
  #: ../includes/mycred-log.php:389
3928
+ #, php-format
3929
  msgid "Showing %d %s"
3930
  msgstr "Affichage de %d %s"
3931
 
3946
  msgstr "Page actuelle"
3947
 
3948
  #: ../includes/mycred-log.php:424
3949
+ #, php-format
3950
  msgctxt "paging"
3951
  msgid "%1$s of %2$s"
3952
  msgstr "%1$s sur %2$s"
3985
 
3986
  #: ../includes/mycred-log.php:609
3987
  msgid ""
3988
+ "Log entries are exported to a CSV file and depending on the number of "
3989
+ "entries selected, the process may take a few seconds."
3990
  msgstr ""
3991
  "Les données sont exportées dans un fichier CSV. Selon le nombre "
3992
  "d'enregistrements sélectionnés, le processus peut durer un petit moment."
4011
  msgid "search log entries"
4012
  msgstr "Recherchez une donnée"
4013
 
4014
+ #: ../includes/mycred-log.php:842 ../modules/mycred-module-buddypress.php:232 ..
4015
+ #: modules/mycred-module-buddypress.php:245
4016
  msgid "All"
4017
  msgstr "Historique complet"
4018
 
4037
  msgstr "Paramètres du réseau"
4038
 
4039
  #: ../includes/mycred-network.php:169
4040
+ #, php-format
4041
  msgid "%s Network"
4042
  msgstr "Réseau %s"
4043
 
4044
  #: ../includes/mycred-network.php:175
4045
+ #, php-format
4046
  msgid "Note! %s has not yet been setup."
4047
  msgstr "Inofrmation: %s n'a pas encore été configuré."
4048
 
4051
  msgstr "Paramètres réseau mis à jour"
4052
 
4053
  #: ../includes/mycred-network.php:181
4054
+ #, php-format
4055
  msgid "Configure network settings for %s."
4056
  msgstr "Configurer le r&eacute;seau pour %s"
4057
 
4060
  msgstr "Template principal"
4061
 
4062
  #: ../includes/mycred-network.php:199
4063
+ #, php-format
4064
  msgid ""
4065
+ "If enabled, %s will use your main site's settings for all other sites in "
4066
+ "your network."
4067
  msgstr ""
4068
+ "Si activé, %s utilisera les paramètres du site principal pour tous les "
4069
+ "autres sites de votre réseau."
4070
 
4071
  #: ../includes/mycred-network.php:202
4072
  msgid "Central Logging"
4073
  msgstr "Connexion centrale"
4074
 
4075
  #: ../includes/mycred-network.php:213
4076
+ #, php-format
4077
  msgid "If enabled, %s will log all site actions in your main site's log."
4078
  msgstr ""
4079
  "Si activé, %s enregistrera toutes les actions du site parmi les activités du "
4084
  msgstr "Partie site"
4085
 
4086
  #: ../includes/mycred-network.php:220
4087
+ #, php-format
4088
  msgid "Comma separated list of blog ids where %s is to be disabled."
4089
  msgstr ""
4090
+ "ID, sépar&eacute;s par des virgules, des blogs ou %s doit &ecirc;tre "
4091
+ "d&eacute;sactiv&eacute;."
4092
 
4093
  #: ../includes/mycred-network.php:229
4094
  msgid "Save Network Settings"
4095
  msgstr "Enregistrer les paramètres du réseau"
4096
 
4097
  #: ../includes/mycred-overview.php:25
4098
+ #, php-format
4099
  msgid "%s Overview"
4100
  msgstr "Aperçu %s"
4101
 
4111
  msgid "Deducted"
4112
  msgstr "Déduit"
4113
 
4114
+ #: ../includes/mycred-overview.php:120 ../includes/mycred-overview.php:127 ..
4115
+ #: modules/mycred-module-addons.php:235
4116
  msgid "Transfers"
4117
  msgstr "transferts"
4118
 
4179
  msgstr "URI entrante"
4180
 
4181
  #: ../includes/mycred-remote.php:572
4182
+ msgid ""
4183
+ "The incoming call address. Remote calls made to any other URL will be "
4184
+ "ignored."
4185
+ msgstr ""
4186
+ "L'adresse d'appel entrante. Tout appel distant depuis une autre URL sera "
4187
+ "ignoré."
4188
 
4189
  #: ../includes/mycred-remote.php:575
4190
  msgid "Debug Mode"
4232
  msgstr "Un ID de vidéo est nécessaire pour utiliser ce shortcode"
4233
 
4234
  #: ../includes/mycred-widgets.php:21
4235
+ #, php-format
4236
  msgid "Show the current users %s balance"
4237
  msgstr "Afficher le solde %s de l'utilisateur"
4238
 
4239
  #: ../includes/mycred-widgets.php:23
4240
+ #, php-format
4241
  msgid "(%s) My Balance"
4242
  msgstr "Mon solde (%s)"
4243
 
4290
  msgstr "Message"
4291
 
4292
  #: ../includes/mycred-widgets.php:323
4293
+ #, php-format
4294
  msgid "Show a list of users sorted by their %s balance"
4295
  msgstr "Afficher les utilisateurs triés par leur relevé %s"
4296
 
4297
  #: ../includes/mycred-widgets.php:325
4298
+ #, php-format
4299
  msgid "(%s) Leaderboard"
4300
  msgstr "Classement (%s)"
4301
 
4329
 
4330
  #: ../includes/mycred-widgets.php:446
4331
  msgid ""
4332
+ "If the current user is not in this leaderboard, you can select to append "
4333
+ "them at the end with their current position."
4334
  msgstr ""
4335
+ "Si l'utilisateur courant ne figure pas dans ce classement, vous pouvez "
4336
+ "choisir de l'afficher à la fin avec sa position actuelle"
4337
 
4338
  #: ../includes/mycred-widgets.php:495
4339
  msgid "Shows the current users balances for each point type."
4340
  msgstr "Affiche le solde de chaque type de points détenu par l'utilisateur courant."
4341
 
4342
  #: ../includes/mycred-widgets.php:497
4343
+ #, php-format
4344
  msgid "(%s) Wallet"
4345
  msgstr "Wallet (%s)"
4346
 
4352
  msgid "Row Layout"
4353
  msgstr "Affichage des colonnes"
4354
 
4355
+ #: ../includes/importers/mycred-balances.php:81 ../includes/importers/mycred-
4356
+ #: balances.php:159 ../includes/importers/mycred-balances.php:198 ..
4357
+ #: includes/importers/mycred-balances.php:213 ../includes/importers/mycred-log-
4358
+ #: entries.php:81 ../includes/importers/mycred-log-entries.php:126 ..
4359
+ #: includes/importers/mycred-log-entries.php:165 ../includes/importers/mycred-
4360
+ #: log-entries.php:180
4361
  msgid "Sorry, there has been an error."
4362
  msgstr "Désolé, mais une erreur est survenue&nbsp;!"
4363
 
4364
+ #: ../includes/importers/mycred-balances.php:82 ../includes/importers/mycred-log-
4365
+ #: entries.php:82
4366
  msgid "The file does not exist, please try again."
4367
  msgstr "Le fichier n'existe pas, veuillez faire un nouvel essai."
4368
 
4369
+ #: ../includes/importers/mycred-balances.php:160 ../includes/importers/mycred-log-
4370
+ #: entries.php:127
4371
  msgid "The CSV is invalid."
4372
  msgstr "Le fichier CSV n'est pas valide."
4373
 
4374
  #: ../includes/importers/mycred-balances.php:171
4375
+ #, php-format
4376
  msgid ""
4377
  "Import complete - A total of <strong>%d</strong> balances were successfully "
4378
  "imported. <strong>%d</strong> was skipped."
4380
  "Import terminé - Un total de <strong>%d</strong> soldes a été importé avec "
4381
  "succès ! <strong>%d</strong> reste(nt) ignoré(s)"
4382
 
4383
+ #: ../includes/importers/mycred-balances.php:181 ../includes/importers/mycred-
4384
+ #: cubepoints.php:293 ../includes/importers/mycred-log-entries.php:148
4385
  msgid "View Log"
4386
  msgstr "Afficher le rapport"
4387
 
4388
+ #: ../includes/importers/mycred-balances.php:181 ../includes/importers/mycred-
4389
+ #: cubepoints.php:293 ../includes/importers/mycred-log-entries.php:148
4390
  msgid "Import More"
4391
  msgstr "En importer davantage"
4392
 
4398
  msgid "Import balances from a CSV file."
4399
  msgstr "Importer les soldes depuis un fichier CSV."
4400
 
4401
+ #: ../includes/importers/mycred-balances.php:252 ../includes/importers/mycred-log-
4402
+ #: entries.php:219
4403
  msgid ""
4404
  "Before you can upload your import file, you will need to fix the following "
4405
  "error:"
4407
  "Avant de pouvoir télécharger votre fichier d'importation, vous devez d'abord "
4408
  "corriger les erreurs suivantes:"
4409
 
4410
+ #: ../includes/importers/mycred-balances.php:261 ../includes/importers/mycred-log-
4411
+ #: entries.php:228
4412
  msgid "Choose a file from your computer:"
4413
  msgstr "Sélectionnez un fichier:"
4414
 
4415
+ #: ../includes/importers/mycred-balances.php:267 ../includes/importers/mycred-log-
4416
+ #: entries.php:234
4417
+ #, php-format
4418
  msgid "Maximum size: %s"
4419
  msgstr "Taille maximum: %s"
4420
 
4421
+ #: ../includes/importers/mycred-balances.php:272 ../includes/importers/mycred-log-
4422
+ #: entries.php:239
4423
  msgid "OR enter path to file:"
4424
  msgstr "OU indiquez le chemin vers le fichier:"
4425
 
4426
+ #: ../includes/importers/mycred-balances.php:279 ../includes/importers/mycred-log-
4427
+ #: entries.php:246
4428
  msgid "Delimiter"
4429
  msgstr "Délimiteur"
4430
 
4440
  msgid "Adjust current balances according to the amount in this CSV file"
4441
  msgstr "Ajuste les soldes actuels avec les montants figurants dans le fichier CSV"
4442
 
4443
+ #: ../includes/importers/mycred-balances.php:292 ../includes/importers/mycred-log-
4444
+ #: entries.php:252
4445
  msgid "Upload file and import"
4446
  msgstr "Télécharger et importer le fichier"
4447
 
4453
  msgid "No log entries were imported!"
4454
  msgstr "Aucune donnée n'a été importée"
4455
 
4456
+ #: ../includes/importers/mycred-cubepoints.php:282 ../includes/importers/mycred-