myCRED - Version 1.6.7

Version Description

Big fixes.

=

Download this release

Release Info

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

Code changes from version 1.6.6 to 1.6.7

abstracts/mycred-abstract-hook.php CHANGED
@@ -217,6 +217,9 @@ if ( ! class_exists( 'myCRED_Hook' ) ) :
217
  if ( $ref_id !== NULL && strlen( $ref_id ) > 0 )
218
  $exists_check = true;
219
 
 
 
 
220
  // Prep settings
221
  list ( $amount, $period ) = explode( '/', $prefs );
222
  $amount = (int) $amount;
217
  if ( $ref_id !== NULL && strlen( $ref_id ) > 0 )
218
  $exists_check = true;
219
 
220
+ if ( count( explode( '/', $prefs ) ) != 2 )
221
+ $prefs = '0/x';
222
+
223
  // Prep settings
224
  list ( $amount, $period ) = explode( '/', $prefs );
225
  $amount = (int) $amount;
abstracts/mycred-abstract-module.php CHANGED
@@ -5,7 +5,7 @@ if ( ! defined( 'myCRED_VERSION' ) ) exit;
5
  * myCRED_Module class
6
  * @see http://codex.mycred.me/classes/mycred_module/
7
  * @since 0.1
8
- * @version 1.3.3
9
  */
10
  if ( ! class_exists( 'myCRED_Module' ) ) :
11
  abstract class myCRED_Module {
@@ -118,8 +118,6 @@ if ( ! class_exists( 'myCRED_Module' ) ) :
118
  $this->menu_pos = $args['menu_pos'];
119
 
120
  $this->default_prefs = $args['defaults'];
121
-
122
- $this->current_user_id = get_current_user_id();
123
  $this->now = current_time( 'timestamp' );
124
 
125
  $this->set_settings();
@@ -567,7 +565,7 @@ h4.ui-accordion-header:before { content: "<?php _e( 'click to open', 'mycred' );
567
  * @since 0.1
568
  * @version 1.0
569
  */
570
- function after_general_settings() { }
571
 
572
  /**
573
  * Sanitize Core Settings
5
  * myCRED_Module class
6
  * @see http://codex.mycred.me/classes/mycred_module/
7
  * @since 0.1
8
+ * @version 1.3.4
9
  */
10
  if ( ! class_exists( 'myCRED_Module' ) ) :
11
  abstract class myCRED_Module {
118
  $this->menu_pos = $args['menu_pos'];
119
 
120
  $this->default_prefs = $args['defaults'];
 
 
121
  $this->now = current_time( 'timestamp' );
122
 
123
  $this->set_settings();
565
  * @since 0.1
566
  * @version 1.0
567
  */
568
+ function after_general_settings( $mycred = NULL ) { }
569
 
570
  /**
571
  * Sanitize Core Settings
addons/badges/includes/mycred-badge-functions.php CHANGED
@@ -270,7 +270,7 @@ endif;
270
  * Display Users Badges
271
  * Will echo all badge images a given user has earned.
272
  * @since 1.5
273
- * @version 1.1
274
  */
275
  if ( ! function_exists( 'mycred_display_users_badges' ) ) :
276
  function mycred_display_users_badges( $user_id = NULL )
@@ -291,7 +291,9 @@ if ( ! function_exists( 'mycred_display_users_badges' ) ) :
291
  if ( $level_image == '' )
292
  $level_image = get_post_meta( $badge_id, 'main_image', true );
293
 
294
- echo '<img src="' . $level_image . '" class="mycred-badge earned badge-id-' . $badge_id . ' level-' . $level . '" alt="' . get_the_title( $badge_id ) . '" title="' . get_the_title( $badge_id ) . '" />';
 
 
295
  }
296
 
297
  }
270
  * Display Users Badges
271
  * Will echo all badge images a given user has earned.
272
  * @since 1.5
273
+ * @version 1.2
274
  */
275
  if ( ! function_exists( 'mycred_display_users_badges' ) ) :
276
  function mycred_display_users_badges( $user_id = NULL )
291
  if ( $level_image == '' )
292
  $level_image = get_post_meta( $badge_id, 'main_image', true );
293
 
294
+ $badge = '<img src="' . $level_image . '" class="mycred-badge earned badge-id-' . $badge_id . ' level-' . $level . '" alt="' . get_the_title( $badge_id ) . '" title="' . get_the_title( $badge_id ) . '" />';
295
+ echo apply_filters( 'mycred_the_badge', $badge, $badge_id, $level, $user_id );
296
+
297
  }
298
 
299
  }
addons/badges/myCRED-addon-badges.php CHANGED
@@ -943,7 +943,7 @@ jQuery(function($) {
943
  * Add to General Settings
944
  * @version 1.0.1
945
  */
946
- public function after_general_settings() {
947
  $settings = $this->badges;
948
 
949
  $buddypress = false;
@@ -1028,15 +1028,15 @@ jQuery(function($) {
1028
 
1029
  /**
1030
  * Save Settings
1031
- * @version 1.0
1032
  */
1033
  public function sanitize_extra_settings( $new_data, $data, $core ) {
1034
 
1035
- $new_data['badges']['show_all_bp'] = ( isset( $new_data['badges']['show_all_bp'] ) ) ? $new_data['badges']['show_all_bp'] : 0;
1036
- $new_data['badges']['show_all_bb'] = ( isset( $new_data['badges']['show_all_bb'] ) ) ? $new_data['badges']['show_all_bb'] : 0;
1037
 
1038
  $new_data['badges']['buddypress'] = sanitize_text_field( $data['badges']['buddypress'] );
1039
- $new_data['badges']['bbpress'] = sanitize_text_field( $data['badges']['bbpress'] );
1040
 
1041
  return $new_data;
1042
 
943
  * Add to General Settings
944
  * @version 1.0.1
945
  */
946
+ public function after_general_settings( $mycred = NULL ) {
947
  $settings = $this->badges;
948
 
949
  $buddypress = false;
1028
 
1029
  /**
1030
  * Save Settings
1031
+ * @version 1.0.1
1032
  */
1033
  public function sanitize_extra_settings( $new_data, $data, $core ) {
1034
 
1035
+ $new_data['badges']['show_all_bp'] = ( isset( $data['badges']['show_all_bp'] ) ) ? $data['badges']['show_all_bp'] : 0;
1036
+ $new_data['badges']['show_all_bb'] = ( isset( $data['badges']['show_all_bb'] ) ) ? $data['badges']['show_all_bb'] : 0;
1037
 
1038
  $new_data['badges']['buddypress'] = sanitize_text_field( $data['badges']['buddypress'] );
1039
+ $new_data['badges']['bbpress'] = sanitize_text_field( $data['badges']['bbpress'] );
1040
 
1041
  return $new_data;
1042
 
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.2.1
9
  */
10
  if ( ! class_exists( 'myCRED_Payment_Gateway' ) ) {
11
  abstract class myCRED_Payment_Gateway {
@@ -14,8 +14,8 @@ if ( ! class_exists( 'myCRED_Payment_Gateway' ) ) {
14
  public $core;
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;
5
  * myCRED_Payment_Gateway class
6
  * @see http://mycred.me/add-ons/mycred_payment_gateway/
7
  * @since 0.1
8
+ * @version 1.2.2
9
  */
10
  if ( ! class_exists( 'myCRED_Payment_Gateway' ) ) {
11
  abstract class myCRED_Payment_Gateway {
14
  public $core;
15
  public $prefs = false;
16
 
17
+ public $current_user_id = 0;
18
+ public $sandbox_mode = NULL;
19
  public $gateway_logo_url = '';
20
 
21
  protected $response;
addons/buy-creds/gateways/bitpay.php CHANGED
@@ -175,7 +175,7 @@ if ( ! class_exists( 'myCRED_Bitpay' ) ) :
175
  $cost = $this->get_cost( $amount, $type );
176
 
177
  $to = $this->get_to();
178
- $from = $this->current_user_id;
179
 
180
  // Revisiting pending payment
181
  if ( isset( $_REQUEST['revisit'] ) ) {
175
  $cost = $this->get_cost( $amount, $type );
176
 
177
  $to = $this->get_to();
178
+ $from = get_current_user_id();
179
 
180
  // Revisiting pending payment
181
  if ( isset( $_REQUEST['revisit'] ) ) {
addons/buy-creds/gateways/netbilling.php CHANGED
@@ -159,7 +159,7 @@ if ( ! class_exists( 'myCRED_NETbilling' ) ) :
159
  $cost = number_format( $cost, 2, '.', '' );
160
 
161
  $to = $this->get_to();
162
- $from = $this->current_user_id;
163
 
164
  // Revisiting pending payment
165
  if ( isset( $_REQUEST['revisit'] ) ) {
159
  $cost = number_format( $cost, 2, '.', '' );
160
 
161
  $to = $this->get_to();
162
+ $from = get_current_user_id();
163
 
164
  // Revisiting pending payment
165
  if ( isset( $_REQUEST['revisit'] ) ) {
addons/buy-creds/gateways/paypal-standard.php CHANGED
@@ -225,7 +225,7 @@ if ( ! class_exists( 'myCRED_PayPal_Standard' ) ) :
225
  $cost = $this->get_cost( $amount, $type );
226
 
227
  $to = $this->get_to();
228
- $from = $this->current_user_id;
229
 
230
  // Revisiting pending payment
231
  if ( isset( $_REQUEST['revisit'] ) ) {
225
  $cost = $this->get_cost( $amount, $type );
226
 
227
  $to = $this->get_to();
228
+ $from = get_current_user_id();
229
 
230
  // Revisiting pending payment
231
  if ( isset( $_REQUEST['revisit'] ) ) {
addons/buy-creds/gateways/skrill.php CHANGED
@@ -201,7 +201,7 @@ if ( ! class_exists( 'myCRED_Skrill' ) ) :
201
  $cost = $this->get_cost( $amount, $type );
202
 
203
  $to = $this->get_to();
204
- $from = $this->current_user_id;
205
 
206
  // Revisiting pending payment
207
  if ( isset( $_REQUEST['revisit'] ) ) {
201
  $cost = $this->get_cost( $amount, $type );
202
 
203
  $to = $this->get_to();
204
+ $from = get_current_user_id();
205
 
206
  // Revisiting pending payment
207
  if ( isset( $_REQUEST['revisit'] ) ) {
addons/buy-creds/gateways/zombaio.php CHANGED
@@ -220,7 +220,7 @@ if ( ! class_exists( 'myCRED_Zombaio' ) ) :
220
  $type = $this->get_point_type();
221
 
222
  $to = $this->get_to();
223
- $from = $this->current_user_id;
224
 
225
  // Revisiting pending payment
226
  if ( isset( $_REQUEST['revisit'] ) ) {
220
  $type = $this->get_point_type();
221
 
222
  $to = $this->get_to();
223
+ $from = get_current_user_id();
224
 
225
  // Revisiting pending payment
226
  if ( isset( $_REQUEST['revisit'] ) ) {
addons/buy-creds/myCRED-addon-buy-creds.php CHANGED
@@ -120,6 +120,7 @@ if ( ! class_exists( 'myCRED_buyCRED_Module' ) ) :
120
  public function module_init() {
121
 
122
  // Register Pending Purchases
 
123
  $this->register_pending_payments();
124
 
125
  // Add shortcodes first
@@ -284,8 +285,6 @@ if ( ! class_exists( 'myCRED_buyCRED_Module' ) ) :
284
  'not_found_in_trash' => __( 'Not found in Trash', 'mycred' ),
285
  );
286
  $args = array(
287
- 'label' => __( 'Pending Payments', 'mycred' ),
288
- 'description' => '',
289
  'labels' => $labels,
290
  'supports' => array( 'title', 'author', 'comments', 'custom-fields' ),
291
  'hierarchical' => false,
@@ -602,7 +601,7 @@ if ( ! class_exists( 'myCRED_buyCRED_Module' ) ) :
602
  * @since 0.1
603
  * @version 1.1
604
  */
605
- public function after_general_settings() {
606
 
607
  // Since we are both registering our own settings and want to hook into
608
  // the core settings, we need to define our "defaults" here.
120
  public function module_init() {
121
 
122
  // Register Pending Purchases
123
+ $this->current_user_id = get_current_user_id();
124
  $this->register_pending_payments();
125
 
126
  // Add shortcodes first
285
  'not_found_in_trash' => __( 'Not found in Trash', 'mycred' ),
286
  );
287
  $args = array(
 
 
288
  'labels' => $labels,
289
  'supports' => array( 'title', 'author', 'comments', 'custom-fields' ),
290
  'hierarchical' => false,
601
  * @since 0.1
602
  * @version 1.1
603
  */
604
+ public function after_general_settings( $mycred = NULL ) {
605
 
606
  // Since we are both registering our own settings and want to hook into
607
  // the core settings, we need to define our "defaults" here.
addons/coupons/includes/mycred-coupon-functions.php CHANGED
@@ -216,7 +216,7 @@ endif;
216
  if ( ! function_exists( 'mycred_get_global_coupon_count' ) ) :
217
  function mycred_get_global_coupon_count( $post_id = 0 ) {
218
  $count = get_post_meta( $post_id, 'global_count', true );
219
- if ( empty( $count ) )
220
  $count = 0;
221
 
222
  return apply_filters( 'mycred_get_global_coupon_count', $count, $post_id );
216
  if ( ! function_exists( 'mycred_get_global_coupon_count' ) ) :
217
  function mycred_get_global_coupon_count( $post_id = 0 ) {
218
  $count = get_post_meta( $post_id, 'global_count', true );
219
+ if ( $count == '' )
220
  $count = 0;
221
 
222
  return apply_filters( 'mycred_get_global_coupon_count', $count, $post_id );
addons/coupons/includes/mycred-coupon-shortcodes.php CHANGED
@@ -4,77 +4,87 @@ if ( ! defined( 'myCRED_VERSION' ) ) exit;
4
  /**
5
  * Load Coupon Shortcode
6
  * @filter mycred_get_coupon_by_code
7
- * @action mycred_load_coupon
8
  * @since 1.4
9
- * @version 1.0.1
10
  */
11
  if ( ! function_exists( 'mycred_render_shortcode_load_coupon' ) ) :
12
  function mycred_render_shortcode_load_coupon( $atts, $content = NULL ) {
 
13
  if ( ! is_user_logged_in() )
14
  return $content;
15
 
 
 
 
 
 
16
  $mycred = mycred();
17
  if ( ! isset( $mycred->coupons ) )
18
  return '<p><strong>Coupon Add-on settings are missing! Please visit the myCRED > Settings page to save your settings before using this shortcode.</strong></p>';
19
 
20
  // Prep
21
- $output = '
22
- <div class="mycred-coupon-form">';
23
  $user_id = get_current_user_id();
24
 
 
 
25
  // No show for excluded users
26
- if ( $mycred->exclude_user( $user_id ) ) return '';
27
 
28
- // On submits
29
- if ( isset( $_POST['mycred_coupon_load']['token'] ) && wp_verify_nonce( $_POST['mycred_coupon_load']['token'], 'mycred-load-coupon' . $user_id ) ) {
30
 
31
- $coupon = mycred_get_coupon_post( $_POST['mycred_coupon_load']['couponkey'] );
32
- $load = mycred_use_coupon( $_POST['mycred_coupon_load']['couponkey'], $user_id );
33
 
34
- // Coupon does not exist
35
- if ( $load === 'missing' )
36
- $output .= '<p class="mycred-coupon-status">' . $mycred->coupons['invalid'] . '</p>';
37
 
38
- // Coupon has expired
39
- elseif ( $load === 'expired' )
40
- $output .= '<p class="mycred-coupon-status">' . $mycred->coupons['expired'] . '</p>';
41
 
42
- // User limit reached
43
- elseif ( $load === 'max' )
44
- $output .= '<p class="mycred-coupon-status">' . $mycred->coupons['user_limit'] . '</p>';
45
 
46
- // Failed minimum balance requirement
47
- elseif ( $load === 'min_balance' ) {
48
- $min = get_post_meta( $coupon->ID, 'min', true );
49
- $template = str_replace( '%min%', $min, $mycred->coupons['min'] );
50
- $output .= '<p class="mycred-coupon-status">' . $template . '</p>';
51
- }
52
 
53
- // Failed maximum balance requirement
54
- elseif ( $load === 'max_balance' ) {
55
- $max = get_post_meta( $coupon->ID, 'max', true );
56
- $template = str_replace( '%max%', $max, $mycred->coupons['max'] );
57
- $output .= '<p class="mycred-coupon-status">' . $template . '</p>';
58
- }
59
 
60
- // Success
61
- else
62
- $output .= '<p class="mycred-coupon-status">' . $mycred->coupons['success'] . '</p>';
 
 
63
 
64
  }
65
 
66
  $output .= '
67
  <form action="" method="post">
68
  <p>
69
- <label for="mycred-coupon-code">' . __( 'Coupon', 'mycred' ) . '</label><br />
70
  <input type="text" name="mycred_coupon_load[couponkey]" id="mycred-coupon-couponkey" value="" />
71
  <input type="hidden" name="mycred_coupon_load[token]" value="' . wp_create_nonce( 'mycred-load-coupon' . $user_id ) . '" />
72
- <input type="submit" class="btn btn-primary btn-large button button-large button-primary" value="' . __( 'Apply Coupon', 'mycred' ) . '" />
73
  </p>
74
  </form>
75
  </div>';
76
 
77
  return apply_filters( 'mycred_load_coupon', $output, $atts, $content );
 
78
  }
79
  endif;
 
80
  ?>
4
  /**
5
  * Load Coupon Shortcode
6
  * @filter mycred_get_coupon_by_code
7
+ * @filter mycred_load_coupon
8
  * @since 1.4
9
+ * @version 1.1
10
  */
11
  if ( ! function_exists( 'mycred_render_shortcode_load_coupon' ) ) :
12
  function mycred_render_shortcode_load_coupon( $atts, $content = NULL ) {
13
+
14
  if ( ! is_user_logged_in() )
15
  return $content;
16
 
17
+ extract( shortcode_atts( array(
18
+ 'label' => __( 'Coupon', 'mycred' ),
19
+ 'button' => __( 'Apply Coupon', 'mycred' )
20
+ ), $atts ) );
21
+
22
  $mycred = mycred();
23
  if ( ! isset( $mycred->coupons ) )
24
  return '<p><strong>Coupon Add-on settings are missing! Please visit the myCRED > Settings page to save your settings before using this shortcode.</strong></p>';
25
 
26
  // Prep
 
 
27
  $user_id = get_current_user_id();
28
 
29
+ $output = '<div class="mycred-coupon-form">';
30
+
31
  // No show for excluded users
32
+ if ( ! $mycred->exclude_user( $user_id ) ) {
33
 
34
+ // On submits
35
+ if ( isset( $_POST['mycred_coupon_load']['token'] ) && wp_verify_nonce( $_POST['mycred_coupon_load']['token'], 'mycred-load-coupon' . $user_id ) ) {
36
 
37
+ $coupon = mycred_get_coupon_post( $_POST['mycred_coupon_load']['couponkey'] );
38
+ $load = mycred_use_coupon( $_POST['mycred_coupon_load']['couponkey'], $user_id );
39
 
40
+ // Coupon does not exist
41
+ if ( $load === 'missing' )
42
+ $output .= '<p class="mycred-coupon-status">' . $mycred->coupons['invalid'] . '</p>';
43
 
44
+ // Coupon has expired
45
+ elseif ( $load === 'expired' )
46
+ $output .= '<p class="mycred-coupon-status">' . $mycred->coupons['expired'] . '</p>';
47
 
48
+ // User limit reached
49
+ elseif ( $load === 'max' )
50
+ $output .= '<p class="mycred-coupon-status">' . $mycred->coupons['user_limit'] . '</p>';
51
 
52
+ // Failed minimum balance requirement
53
+ elseif ( $load === 'min_balance' ) {
54
+ $min = get_post_meta( $coupon->ID, 'min', true );
55
+ $template = str_replace( '%min%', $min, $mycred->coupons['min'] );
56
+ $output .= '<p class="mycred-coupon-status">' . $template . '</p>';
57
+ }
58
 
59
+ // Failed maximum balance requirement
60
+ elseif ( $load === 'max_balance' ) {
61
+ $max = get_post_meta( $coupon->ID, 'max', true );
62
+ $template = str_replace( '%max%', $max, $mycred->coupons['max'] );
63
+ $output .= '<p class="mycred-coupon-status">' . $template . '</p>';
64
+ }
65
 
66
+ // Success
67
+ else
68
+ $output .= '<p class="mycred-coupon-status">' . $mycred->coupons['success'] . '</p>';
69
+
70
+ }
71
 
72
  }
73
 
74
  $output .= '
75
  <form action="" method="post">
76
  <p>
77
+ <label for="mycred-coupon-code">' . $label . '</label><br />
78
  <input type="text" name="mycred_coupon_load[couponkey]" id="mycred-coupon-couponkey" value="" />
79
  <input type="hidden" name="mycred_coupon_load[token]" value="' . wp_create_nonce( 'mycred-load-coupon' . $user_id ) . '" />
80
+ <input type="submit" class="btn btn-primary btn-large button button-large button-primary" value="' . $button . '" />
81
  </p>
82
  </form>
83
  </div>';
84
 
85
  return apply_filters( 'mycred_load_coupon', $output, $atts, $content );
86
+
87
  }
88
  endif;
89
+
90
  ?>
addons/coupons/myCRED-addon-coupons.php CHANGED
@@ -2,7 +2,7 @@
2
  /**
3
  * Addon: Coupons
4
  * Addon URI: http://mycred.me/add-ons/coupons/
5
- * Version: 1.0
6
  * Description: Create coupons that your users can use to add points to their accounts.
7
  * Author: Gabriel S Merovingi
8
  * Author URI: http://www.merovingi.com
@@ -13,15 +13,15 @@ define( 'myCRED_COUPONS', __FILE__ );
13
  define( 'myCRED_COUPONS_DIR', myCRED_ADDONS_DIR . 'coupons/' );
14
  define( 'myCRED_COUPONS_VERSION', myCRED_VERSION . '.1' );
15
 
16
- include_once( myCRED_COUPONS_DIR . 'includes/mycred-coupon-functions.php' );
17
- include_once( myCRED_COUPONS_DIR . 'includes/mycred-coupon-shortcodes.php' );
18
 
19
  /**
20
  * myCRED_Coupons_Module class
21
  * @since 1.4
22
  * @version 1.0
23
  */
24
- if ( ! class_exists( 'myCRED_Coupons_Module' ) ) {
25
  class myCRED_Coupons_Module extends myCRED_Module {
26
 
27
  public $instances = array();
@@ -30,6 +30,7 @@ if ( ! class_exists( 'myCRED_Coupons_Module' ) ) {
30
  * Construct
31
  */
32
  function __construct() {
 
33
  parent::__construct( 'myCRED_Coupons_Module', array(
34
  'module_name' => 'coupons',
35
  'defaults' => array(
@@ -46,6 +47,7 @@ if ( ! class_exists( 'myCRED_Coupons_Module' ) ) {
46
  ) );
47
 
48
  add_filter( 'mycred_parse_log_entry_coupon', array( $this, 'parse_log_entry' ), 10, 2 );
 
49
  }
50
 
51
  /**
@@ -54,9 +56,11 @@ if ( ! class_exists( 'myCRED_Coupons_Module' ) ) {
54
  * @version 1.0
55
  */
56
  public function module_init() {
 
57
  $this->register_post_type();
58
 
59
  add_shortcode( 'mycred_load_coupon', 'mycred_render_shortcode_load_coupon' );
 
60
  }
61
 
62
  /**
@@ -65,15 +69,17 @@ if ( ! class_exists( 'myCRED_Coupons_Module' ) ) {
65
  * @version 1.1
66
  */
67
  public function module_admin_init() {
68
- add_filter( 'post_updated_messages', array( $this, 'update_messages' ) );
 
69
 
70
  add_filter( 'manage_mycred_coupon_posts_columns', array( $this, 'adjust_column_headers' ) );
71
  add_action( 'manage_mycred_coupon_posts_custom_column', array( $this, 'adjust_column_content' ), 10, 2 );
72
 
73
- add_filter( 'enter_title_here', array( $this, 'enter_title_here' ) );
74
- add_filter( 'post_row_actions', array( $this, 'adjust_row_actions' ), 10, 2 );
75
- add_action( 'add_meta_boxes', array( $this, 'add_meta_boxes' ) );
76
- add_action( 'save_post_mycred_coupon', array( $this, 'update_coupon_details' ) );
 
77
  }
78
 
79
  /**
@@ -82,6 +88,7 @@ if ( ! class_exists( 'myCRED_Coupons_Module' ) ) {
82
  * @version 1.0
83
  */
84
  protected function register_post_type() {
 
85
  $labels = array(
86
  'name' => __( 'Coupons', 'mycred' ),
87
  'singular_name' => __( 'Coupon', 'mycred' ),
@@ -105,7 +112,9 @@ if ( ! class_exists( 'myCRED_Coupons_Module' ) ) {
105
  'capability_type' => 'page',
106
  'supports' => array( 'title' )
107
  );
 
108
  register_post_type( 'mycred_coupon', apply_filters( 'mycred_register_coupons', $args ) );
 
109
  }
110
 
111
  /**
@@ -114,6 +123,7 @@ if ( ! class_exists( 'myCRED_Coupons_Module' ) ) {
114
  * @version 1.0
115
  */
116
  public function update_messages( $messages ) {
 
117
  $messages['mycred_coupon'] = array(
118
  0 => '',
119
  1 => __( 'Coupon updated.', 'mycred' ),
@@ -128,7 +138,8 @@ if ( ! class_exists( 'myCRED_Coupons_Module' ) ) {
128
  10 => __( 'Draft Coupon saved.', 'mycred' ),
129
  );
130
 
131
- return $messages;
 
132
  }
133
 
134
  /**
@@ -137,11 +148,14 @@ if ( ! class_exists( 'myCRED_Coupons_Module' ) ) {
137
  * @version 1.0
138
  */
139
  public function enter_title_here( $title ) {
 
140
  global $post_type;
 
141
  if ( $post_type == 'mycred_coupon' )
142
  return __( 'Unique Coupon Code', 'mycred' );
143
 
144
  return $title;
 
145
  }
146
 
147
  /**
@@ -151,8 +165,8 @@ if ( ! class_exists( 'myCRED_Coupons_Module' ) ) {
151
  */
152
  public function adjust_column_headers( $defaults ) {
153
 
154
- $columns = array();
155
- $columns['cb'] = $defaults['cb'];
156
 
157
  // Add / Adjust
158
  $columns['title'] = __( 'Coupon Code', 'mycred' );
@@ -165,14 +179,16 @@ if ( ! class_exists( 'myCRED_Coupons_Module' ) ) {
165
  $columns['ctype'] = __( 'Point Type', 'mycred' );
166
 
167
  return $columns;
 
168
  }
169
 
170
  /**
171
  * Adjust Column Body
172
  * @since 1.4
173
- * @version 1.1.1
174
  */
175
  public function adjust_column_content( $column_name, $post_id ) {
 
176
  global $mycred;
177
 
178
  switch ( $column_name ) {
@@ -189,17 +205,21 @@ if ( ! class_exists( 'myCRED_Coupons_Module' ) ) {
189
  case 'usage' :
190
 
191
  $count = mycred_get_global_coupon_count( $post_id );
192
- if ( empty( $count ) )
 
193
  _e( 'not yet used', 'mycred' );
194
 
195
  else {
 
196
  $set_type = get_post_meta( $post_id, 'type', true );
197
- $page = 'myCRED';
 
198
  if ( $set_type != 'mycred_default' && array_key_exists( $set_type, $this->point_types ) )
199
  $page .= '_' . $set_type;
200
 
201
  $url = add_query_arg( array( 'page' => $page, 'ref' => 'coupon', 'data' => get_the_title( $post_id ) ), admin_url( 'admin.php' ) );
202
- echo '<a href="' . esc_url( $url ) . '">' . sprintf( __( '1 time', '%d times', $count, 'mycred' ), $count ) . '</a>';
 
203
  }
204
 
205
  break;
@@ -207,7 +227,8 @@ if ( ! class_exists( 'myCRED_Coupons_Module' ) ) {
207
  case 'limits' :
208
 
209
  $total = mycred_get_coupon_global_max( $post_id );
210
- $user = mycred_get_coupon_user_max( $post_id );
 
211
  printf( '%1$s: %2$d<br />%3$s: %4$d', __( 'Total', 'mycred' ), $total, __( 'Per User', 'mycred' ), $user );
212
 
213
  break;
@@ -215,16 +236,21 @@ if ( ! class_exists( 'myCRED_Coupons_Module' ) ) {
215
  case 'expires' :
216
 
217
  $expires = mycred_get_coupon_expire_date( $post_id, true );
 
218
  if ( empty( $expires ) || $expires === 0 )
219
  _e( 'Never', 'mycred' );
 
220
  else {
 
221
  if ( $expires < date_i18n( 'U' ) ) {
222
  wp_trash_post( $post_id );
223
  echo '<span style="color:red;">' . __( 'Expired', 'mycred' ) . '</span>';
224
  }
 
225
  else {
226
  echo sprintf( __( 'In %s time', 'mycred' ), human_time_diff( $expires ) ) . '<br /><small class="description">' . date_i18n( get_option( 'date_format' ), $expires ) . '</small>';
227
  }
 
228
  }
229
 
230
  break;
@@ -232,8 +258,10 @@ if ( ! class_exists( 'myCRED_Coupons_Module' ) ) {
232
  case 'ctype' :
233
 
234
  $type = get_post_meta( $post_id, 'type', true );
 
235
  if ( isset( $this->point_types[ $type ] ) )
236
  echo $this->point_types[ $type ];
 
237
  else
238
  echo '-';
239
 
@@ -248,12 +276,14 @@ if ( ! class_exists( 'myCRED_Coupons_Module' ) ) {
248
  * @version 1.0
249
  */
250
  public function adjust_row_actions( $actions, $post ) {
 
251
  if ( $post->post_type == 'mycred_coupon' ) {
252
  unset( $actions['inline hide-if-no-js'] );
253
  unset( $actions['view'] );
254
  }
255
 
256
  return $actions;
 
257
  }
258
 
259
  /**
@@ -262,7 +292,9 @@ if ( ! class_exists( 'myCRED_Coupons_Module' ) ) {
262
  * @version 1.0
263
  */
264
  public function parse_log_entry( $content, $log_entry ) {
 
265
  return str_replace( '%coupon%', $log_entry->data, $content );
 
266
  }
267
 
268
  /**
@@ -319,15 +351,17 @@ if ( ! class_exists( 'myCRED_Coupons_Module' ) ) {
319
  * @version 1.1
320
  */
321
  public function metabox_coupon_setup( $post ) {
 
322
  global $mycred;
323
 
324
- $value = get_post_meta( $post->ID, 'value', true );
325
  if ( empty( $value ) )
326
  $value = 1;
327
 
328
- $expires = get_post_meta( $post->ID, 'expires', true );
329
- $set_type = get_post_meta( $post->ID, 'type', true ); ?>
330
 
 
331
  <style type="text/css">
332
  table { width: 100%; }
333
  table th { width: 20%; text-align: right; }
@@ -374,9 +408,11 @@ table td textarea { width: 95%; }
374
  </tr>
375
  </tbody>
376
  </table>
377
- <?php do_action( 'mycred_coupon_after_setup', $post ); ?>
 
378
 
379
  <?php
 
380
  }
381
 
382
  /**
@@ -385,6 +421,7 @@ table td textarea { width: 95%; }
385
  * @version 1.0
386
  */
387
  public function metabox_coupon_limits( $post ) {
 
388
  global $mycred;
389
 
390
  $global_max = get_post_meta( $post->ID, 'global', true );
@@ -393,8 +430,9 @@ table td textarea { width: 95%; }
393
 
394
  $user_max = get_post_meta( $post->ID, 'user', true );
395
  if ( empty( $user_max ) )
396
- $user_max = 1; ?>
397
 
 
398
  <table class="table wide-fat">
399
  <tbody>
400
  <tr valign="top">
@@ -413,9 +451,11 @@ table td textarea { width: 95%; }
413
  </tr>
414
  </tbody>
415
  </table>
416
- <?php do_action( 'mycred_coupon_after_limits', $post ); ?>
 
417
 
418
  <?php
 
419
  }
420
 
421
  /**
@@ -424,6 +464,7 @@ table td textarea { width: 95%; }
424
  * @version 1.0
425
  */
426
  public function mycred_coupon_requirements( $post ) {
 
427
  global $mycred;
428
 
429
  $min_balance = get_post_meta( $post->ID, 'min_balance', true );
@@ -432,8 +473,9 @@ table td textarea { width: 95%; }
432
 
433
  $max_balance = get_post_meta( $post->ID, 'max_balance', true );
434
  if ( empty( $max_balance ) )
435
- $max_balance = 0; ?>
436
 
 
437
  <p>
438
  <label for="mycred-coupon-min_balance"><?php _e( 'Minimum Balance', 'mycred' ); ?></label><br />
439
  <input type="text" name="mycred_coupon[min_balance]" id="mycred-coupon-min_balance" value="<?php echo $mycred->number( $min_balance ); ?>" /><br />
@@ -444,9 +486,11 @@ table td textarea { width: 95%; }
444
  <input type="text" name="mycred_coupon[max_balance]" id="mycred-coupon-max_balance" value="<?php echo $mycred->number( $max_balance ); ?>" /><br />
445
  <span class="description"><?php _e( 'Optional maximum balance a user can have in order to use this coupon. Use zero to disable.', 'mycred' ); ?></span>
446
  </p>
 
447
  <?php do_action( 'mycred_coupon_after_requirements', $post ); ?>
448
 
449
  <?php
 
450
  }
451
 
452
  /**
@@ -459,14 +503,18 @@ table td textarea { width: 95%; }
459
  $count = mycred_get_global_coupon_count( $post->ID );
460
  if ( empty( $count ) )
461
  _e( 'not yet used', 'mycred' );
 
462
  else {
 
463
  $set_type = get_post_meta( $post->ID, 'type', true );
464
- $page = 'myCRED';
 
465
  if ( $set_type != 'mycred_default' && array_key_exists( $set_type, $this->point_types ) )
466
  $page .= '_' . $set_type;
467
 
468
  $url = add_query_arg( array( 'page' => $page, 'ref' => 'coupon', 'data' => $post->post_title ), admin_url( 'admin.php' ) );
469
  echo '<a href="' . esc_url( $url ) . '">' . sprintf( __( '1 time', '%d times', $count, 'mycred' ), $count ) . '</a>';
 
470
  }
471
 
472
  }
@@ -477,13 +525,18 @@ table td textarea { width: 95%; }
477
  * @version 1.0
478
  */
479
  public function update_coupon_details( $post_id ) {
 
480
  if ( ! isset( $_POST['mycred-coupon-nonce'] ) || ! wp_verify_nonce( $_POST['mycred-coupon-nonce'], 'update-mycred-coupon' ) ) return $post_id;
 
481
  if ( isset( $_POST['mycred_coupon'] ) ) {
 
482
  foreach ( $_POST['mycred_coupon'] as $key => $value ) {
483
  $value = sanitize_text_field( $value );
484
  update_post_meta( $post_id, $key, $value );
485
  }
 
486
  }
 
487
  }
488
 
489
  /**
@@ -491,12 +544,14 @@ table td textarea { width: 95%; }
491
  * @since 1.4
492
  * @version 1.0
493
  */
494
- public function after_general_settings() {
 
495
  if ( ! isset( $this->coupons ) )
496
  $prefs = $this->default_prefs;
497
  else
498
- $prefs = mycred_apply_defaults( $this->default_prefs, $this->coupons ); ?>
499
 
 
500
  <h4><div class="icon icon-active"></div><?php _e( 'Coupons', 'mycred' ); ?></h4>
501
  <div class="body" style="display:none;">
502
  <label class="subheader" for="<?php echo $this->field_id( 'log' ); ?>"><?php _e( 'Log Template', 'mycred' ); ?></label>
@@ -550,6 +605,7 @@ table td textarea { width: 95%; }
550
  </ol>
551
  </div>
552
  <?php
 
553
  }
554
 
555
  /**
@@ -558,16 +614,18 @@ table td textarea { width: 95%; }
558
  * @version 1.0
559
  */
560
  public function sanitize_extra_settings( $new_data, $data, $core ) {
561
- $new_data['coupons']['log'] = sanitize_text_field( $data['coupons']['log'] );
 
562
 
563
- $new_data['coupons']['invalid'] = sanitize_text_field( $data['coupons']['invalid'] );
564
- $new_data['coupons']['expired'] = sanitize_text_field( $data['coupons']['expired'] );
565
  $new_data['coupons']['user_limit'] = sanitize_text_field( $data['coupons']['user_limit'] );
566
- $new_data['coupons']['min'] = sanitize_text_field( $data['coupons']['min'] );
567
- $new_data['coupons']['max'] = sanitize_text_field( $data['coupons']['max'] );
568
- $new_data['coupons']['success'] = sanitize_text_field( $data['coupons']['success'] );
569
 
570
  return $new_data;
 
571
  }
572
 
573
  }
@@ -575,6 +633,6 @@ table td textarea { width: 95%; }
575
  $coupons = new myCRED_Coupons_Module();
576
  $coupons->load();
577
 
578
- }
579
 
580
  ?>
2
  /**
3
  * Addon: Coupons
4
  * Addon URI: http://mycred.me/add-ons/coupons/
5
+ * Version: 1.1.1
6
  * Description: Create coupons that your users can use to add points to their accounts.
7
  * Author: Gabriel S Merovingi
8
  * Author URI: http://www.merovingi.com
13
  define( 'myCRED_COUPONS_DIR', myCRED_ADDONS_DIR . 'coupons/' );
14
  define( 'myCRED_COUPONS_VERSION', myCRED_VERSION . '.1' );
15
 
16
+ require_once myCRED_COUPONS_DIR . 'includes/mycred-coupon-functions.php';
17
+ require_once myCRED_COUPONS_DIR . 'includes/mycred-coupon-shortcodes.php';
18
 
19
  /**
20
  * myCRED_Coupons_Module class
21
  * @since 1.4
22
  * @version 1.0
23
  */
24
+ if ( ! class_exists( 'myCRED_Coupons_Module' ) ) :
25
  class myCRED_Coupons_Module extends myCRED_Module {
26
 
27
  public $instances = array();
30
  * Construct
31
  */
32
  function __construct() {
33
+
34
  parent::__construct( 'myCRED_Coupons_Module', array(
35
  'module_name' => 'coupons',
36
  'defaults' => array(
47
  ) );
48
 
49
  add_filter( 'mycred_parse_log_entry_coupon', array( $this, 'parse_log_entry' ), 10, 2 );
50
+
51
  }
52
 
53
  /**
56
  * @version 1.0
57
  */
58
  public function module_init() {
59
+
60
  $this->register_post_type();
61
 
62
  add_shortcode( 'mycred_load_coupon', 'mycred_render_shortcode_load_coupon' );
63
+
64
  }
65
 
66
  /**
69
  * @version 1.1
70
  */
71
  public function module_admin_init() {
72
+
73
+ add_filter( 'post_updated_messages', array( $this, 'update_messages' ) );
74
 
75
  add_filter( 'manage_mycred_coupon_posts_columns', array( $this, 'adjust_column_headers' ) );
76
  add_action( 'manage_mycred_coupon_posts_custom_column', array( $this, 'adjust_column_content' ), 10, 2 );
77
 
78
+ add_filter( 'enter_title_here', array( $this, 'enter_title_here' ) );
79
+ add_filter( 'post_row_actions', array( $this, 'adjust_row_actions' ), 10, 2 );
80
+ add_action( 'add_meta_boxes', array( $this, 'add_meta_boxes' ) );
81
+ add_action( 'save_post_mycred_coupon', array( $this, 'update_coupon_details' ) );
82
+
83
  }
84
 
85
  /**
88
  * @version 1.0
89
  */
90
  protected function register_post_type() {
91
+
92
  $labels = array(
93
  'name' => __( 'Coupons', 'mycred' ),
94
  'singular_name' => __( 'Coupon', 'mycred' ),
112
  'capability_type' => 'page',
113
  'supports' => array( 'title' )
114
  );
115
+
116
  register_post_type( 'mycred_coupon', apply_filters( 'mycred_register_coupons', $args ) );
117
+
118
  }
119
 
120
  /**
123
  * @version 1.0
124
  */
125
  public function update_messages( $messages ) {
126
+
127
  $messages['mycred_coupon'] = array(
128
  0 => '',
129
  1 => __( 'Coupon updated.', 'mycred' ),
138
  10 => __( 'Draft Coupon saved.', 'mycred' ),
139
  );
140
 
141
+ return $messages;
142
+
143
  }
144
 
145
  /**
148
  * @version 1.0
149
  */
150
  public function enter_title_here( $title ) {
151
+
152
  global $post_type;
153
+
154
  if ( $post_type == 'mycred_coupon' )
155
  return __( 'Unique Coupon Code', 'mycred' );
156
 
157
  return $title;
158
+
159
  }
160
 
161
  /**
165
  */
166
  public function adjust_column_headers( $defaults ) {
167
 
168
+ $columns = array();
169
+ $columns['cb'] = $defaults['cb'];
170
 
171
  // Add / Adjust
172
  $columns['title'] = __( 'Coupon Code', 'mycred' );
179
  $columns['ctype'] = __( 'Point Type', 'mycred' );
180
 
181
  return $columns;
182
+
183
  }
184
 
185
  /**
186
  * Adjust Column Body
187
  * @since 1.4
188
+ * @version 1.1.2
189
  */
190
  public function adjust_column_content( $column_name, $post_id ) {
191
+
192
  global $mycred;
193
 
194
  switch ( $column_name ) {
205
  case 'usage' :
206
 
207
  $count = mycred_get_global_coupon_count( $post_id );
208
+
209
+ if ( $count == 0 )
210
  _e( 'not yet used', 'mycred' );
211
 
212
  else {
213
+
214
  $set_type = get_post_meta( $post_id, 'type', true );
215
+ $page = 'myCRED';
216
+
217
  if ( $set_type != 'mycred_default' && array_key_exists( $set_type, $this->point_types ) )
218
  $page .= '_' . $set_type;
219
 
220
  $url = add_query_arg( array( 'page' => $page, 'ref' => 'coupon', 'data' => get_the_title( $post_id ) ), admin_url( 'admin.php' ) );
221
+ echo '<a href="' . esc_url( $url ) . '">' . sprintf( _n( '1 time', '%d times', $count, 'mycred' ), $count ) . '</a>';
222
+
223
  }
224
 
225
  break;
227
  case 'limits' :
228
 
229
  $total = mycred_get_coupon_global_max( $post_id );
230
+ $user = mycred_get_coupon_user_max( $post_id );
231
+
232
  printf( '%1$s: %2$d<br />%3$s: %4$d', __( 'Total', 'mycred' ), $total, __( 'Per User', 'mycred' ), $user );
233
 
234
  break;
236
  case 'expires' :
237
 
238
  $expires = mycred_get_coupon_expire_date( $post_id, true );
239
+
240
  if ( empty( $expires ) || $expires === 0 )
241
  _e( 'Never', 'mycred' );
242
+
243
  else {
244
+
245
  if ( $expires < date_i18n( 'U' ) ) {
246
  wp_trash_post( $post_id );
247
  echo '<span style="color:red;">' . __( 'Expired', 'mycred' ) . '</span>';
248
  }
249
+
250
  else {
251
  echo sprintf( __( 'In %s time', 'mycred' ), human_time_diff( $expires ) ) . '<br /><small class="description">' . date_i18n( get_option( 'date_format' ), $expires ) . '</small>';
252
  }
253
+
254
  }
255
 
256
  break;
258
  case 'ctype' :
259
 
260
  $type = get_post_meta( $post_id, 'type', true );
261
+
262
  if ( isset( $this->point_types[ $type ] ) )
263
  echo $this->point_types[ $type ];
264
+
265
  else
266
  echo '-';
267
 
276
  * @version 1.0
277
  */
278
  public function adjust_row_actions( $actions, $post ) {
279
+
280
  if ( $post->post_type == 'mycred_coupon' ) {
281
  unset( $actions['inline hide-if-no-js'] );
282
  unset( $actions['view'] );
283
  }
284
 
285
  return $actions;
286
+
287
  }
288
 
289
  /**
292
  * @version 1.0
293
  */
294
  public function parse_log_entry( $content, $log_entry ) {
295
+
296
  return str_replace( '%coupon%', $log_entry->data, $content );
297
+
298
  }
299
 
300
  /**
351
  * @version 1.1
352
  */
353
  public function metabox_coupon_setup( $post ) {
354
+
355
  global $mycred;
356
 
357
+ $value = get_post_meta( $post->ID, 'value', true );
358
  if ( empty( $value ) )
359
  $value = 1;
360
 
361
+ $expires = get_post_meta( $post->ID, 'expires', true );
362
+ $set_type = get_post_meta( $post->ID, 'type', true );
363
 
364
+ ?>
365
  <style type="text/css">
366
  table { width: 100%; }
367
  table th { width: 20%; text-align: right; }
408
  </tr>
409
  </tbody>
410
  </table>
411
+
412
+ <?php do_action( 'mycred_coupon_after_setup', $post ); ?>
413
 
414
  <?php
415
+
416
  }
417
 
418
  /**
421
  * @version 1.0
422
  */
423
  public function metabox_coupon_limits( $post ) {
424
+
425
  global $mycred;
426
 
427
  $global_max = get_post_meta( $post->ID, 'global', true );
430
 
431
  $user_max = get_post_meta( $post->ID, 'user', true );
432
  if ( empty( $user_max ) )
433
+ $user_max = 1;
434
 
435
+ ?>
436
  <table class="table wide-fat">
437
  <tbody>
438
  <tr valign="top">
451
  </tr>
452
  </tbody>
453
  </table>
454
+
455
+ <?php do_action( 'mycred_coupon_after_limits', $post ); ?>
456
 
457
  <?php
458
+
459
  }
460
 
461
  /**
464
  * @version 1.0
465
  */
466
  public function mycred_coupon_requirements( $post ) {
467
+
468
  global $mycred;
469
 
470
  $min_balance = get_post_meta( $post->ID, 'min_balance', true );
473
 
474
  $max_balance = get_post_meta( $post->ID, 'max_balance', true );
475
  if ( empty( $max_balance ) )
476
+ $max_balance = 0;
477
 
478
+ ?>
479
  <p>
480
  <label for="mycred-coupon-min_balance"><?php _e( 'Minimum Balance', 'mycred' ); ?></label><br />
481
  <input type="text" name="mycred_coupon[min_balance]" id="mycred-coupon-min_balance" value="<?php echo $mycred->number( $min_balance ); ?>" /><br />
486
  <input type="text" name="mycred_coupon[max_balance]" id="mycred-coupon-max_balance" value="<?php echo $mycred->number( $max_balance ); ?>" /><br />
487
  <span class="description"><?php _e( 'Optional maximum balance a user can have in order to use this coupon. Use zero to disable.', 'mycred' ); ?></span>
488
  </p>
489
+
490
  <?php do_action( 'mycred_coupon_after_requirements', $post ); ?>
491
 
492
  <?php
493
+
494
  }
495
 
496
  /**
503
  $count = mycred_get_global_coupon_count( $post->ID );
504
  if ( empty( $count ) )
505
  _e( 'not yet used', 'mycred' );
506
+
507
  else {
508
+
509
  $set_type = get_post_meta( $post->ID, 'type', true );
510
+ $page = 'myCRED';
511
+
512
  if ( $set_type != 'mycred_default' && array_key_exists( $set_type, $this->point_types ) )
513
  $page .= '_' . $set_type;
514
 
515
  $url = add_query_arg( array( 'page' => $page, 'ref' => 'coupon', 'data' => $post->post_title ), admin_url( 'admin.php' ) );
516
  echo '<a href="' . esc_url( $url ) . '">' . sprintf( __( '1 time', '%d times', $count, 'mycred' ), $count ) . '</a>';
517
+
518
  }
519
 
520
  }
525
  * @version 1.0
526
  */
527
  public function update_coupon_details( $post_id ) {
528
+
529
  if ( ! isset( $_POST['mycred-coupon-nonce'] ) || ! wp_verify_nonce( $_POST['mycred-coupon-nonce'], 'update-mycred-coupon' ) ) return $post_id;
530
+
531
  if ( isset( $_POST['mycred_coupon'] ) ) {
532
+
533
  foreach ( $_POST['mycred_coupon'] as $key => $value ) {
534
  $value = sanitize_text_field( $value );
535
  update_post_meta( $post_id, $key, $value );
536
  }
537
+
538
  }
539
+
540
  }
541
 
542
  /**
544
  * @since 1.4
545
  * @version 1.0
546
  */
547
+ public function after_general_settings( $mycred = NULL ) {
548
+
549
  if ( ! isset( $this->coupons ) )
550
  $prefs = $this->default_prefs;
551
  else
552
+ $prefs = mycred_apply_defaults( $this->default_prefs, $this->coupons );
553
 
554
+ ?>
555
  <h4><div class="icon icon-active"></div><?php _e( 'Coupons', 'mycred' ); ?></h4>
556
  <div class="body" style="display:none;">
557
  <label class="subheader" for="<?php echo $this->field_id( 'log' ); ?>"><?php _e( 'Log Template', 'mycred' ); ?></label>
605
  </ol>
606
  </div>
607
  <?php
608
+
609
  }
610
 
611
  /**
614
  * @version 1.0
615
  */
616
  public function sanitize_extra_settings( $new_data, $data, $core ) {
617
+
618
+ $new_data['coupons']['log'] = sanitize_text_field( $data['coupons']['log'] );
619
 
620
+ $new_data['coupons']['invalid'] = sanitize_text_field( $data['coupons']['invalid'] );
621
+ $new_data['coupons']['expired'] = sanitize_text_field( $data['coupons']['expired'] );
622
  $new_data['coupons']['user_limit'] = sanitize_text_field( $data['coupons']['user_limit'] );
623
+ $new_data['coupons']['min'] = sanitize_text_field( $data['coupons']['min'] );
624
+ $new_data['coupons']['max'] = sanitize_text_field( $data['coupons']['max'] );
625
+ $new_data['coupons']['success'] = sanitize_text_field( $data['coupons']['success'] );
626
 
627
  return $new_data;
628
+
629
  }
630
 
631
  }
633
  $coupons = new myCRED_Coupons_Module();
634
  $coupons->load();
635
 
636
+ endif;
637
 
638
  ?>
addons/email-notices/myCRED-addon-email-notices.php CHANGED
@@ -276,7 +276,7 @@ if ( ! class_exists( 'myCRED_Email_Notice_Module' ) ) {
276
  * @since 1.1
277
  * @version 1.1
278
  */
279
- public function after_general_settings() {
280
 
281
  $this->emailnotices = mycred_apply_defaults( $this->default_prefs, $this->emailnotices ); ?>
282
 
276
  * @since 1.1
277
  * @version 1.1
278
  */
279
+ public function after_general_settings( $mycred = NULL ) {
280
 
281
  $this->emailnotices = mycred_apply_defaults( $this->default_prefs, $this->emailnotices ); ?>
282
 
addons/notifications/myCRED-addon-notifications.php CHANGED
@@ -186,7 +186,7 @@ if ( ! class_exists( 'myCRED_Notifications_Module' ) ) {
186
  * @since 1.2.3
187
  * @version 1.1
188
  */
189
- public function after_general_settings() {
190
 
191
  $prefs = $this->notifications; ?>
192
 
186
  * @since 1.2.3
187
  * @version 1.1
188
  */
189
+ public function after_general_settings( $mycred = NULL ) {
190
 
191
  $prefs = $this->notifications; ?>
192
 
addons/ranks/myCRED-addon-ranks.php CHANGED
@@ -1287,7 +1287,7 @@ if ( ! class_exists( 'myCRED_Ranks_Module' ) ) :
1287
  * @since 1.1
1288
  * @version 1.3
1289
  */
1290
- public function after_general_settings( $mycred ) {
1291
 
1292
  $prefs = $this->rank;
1293
  $this->add_to_core = true;
1287
  * @since 1.1
1288
  * @version 1.3
1289
  */
1290
+ public function after_general_settings( $mycred = NULL ) {
1291
 
1292
  $prefs = $this->rank;
1293
  $this->add_to_core = true;
addons/sell-content/myCRED-addon-sell-content.php CHANGED
@@ -382,7 +382,7 @@ if ( ! class_exists( 'myCRED_Sell_Content_Module' ) ) {
382
  * @since 0.1
383
  * @version 1.3
384
  */
385
- public function after_general_settings() {
386
  $sell_content = $this->sell_content;
387
  if ( ! isset( $sell_content['defaults']['expire'] ) )
388
  $sell_content['defaults']['expire'] = 0;
382
  * @since 0.1
383
  * @version 1.3
384
  */
385
+ public function after_general_settings( $mycred = NULL ) {
386
  $sell_content = $this->sell_content;
387
  if ( ! isset( $sell_content['defaults']['expire'] ) )
388
  $sell_content['defaults']['expire'] = 0;
addons/transfer/myCRED-addon-transfer.php CHANGED
@@ -175,7 +175,7 @@ if ( ! class_exists( 'myCRED_Transfer_Module' ) ) :
175
  * @since 0.1
176
  * @version 1.3
177
  */
178
- public function after_general_settings() {
179
 
180
  // Settings
181
  $settings = $this->transfers;
175
  * @since 0.1
176
  * @version 1.3
177
  */
178
+ public function after_general_settings( $mycred = NULL ) {
179
 
180
  // Settings
181
  $settings = $this->transfers;
includes/mycred-functions.php CHANGED
@@ -14,7 +14,7 @@ if ( ! class_exists( 'myCRED_Settings' ) ) :
14
  public $log_table;
15
  public $cred_id;
16
 
17
- public $is_multisite = false;
18
  public $use_master_template = false;
19
  public $use_central_logging = false;
20
 
@@ -22,8 +22,9 @@ if ( ! class_exists( 'myCRED_Settings' ) ) :
22
  * Construct
23
  */
24
  function __construct( $type = 'mycred_default' ) {
 
25
  // Prep
26
- $this->is_multisite = is_multisite();
27
  $this->use_master_template = mycred_override_settings();
28
  $this->use_central_logging = mycred_centralize_log();
29
 
@@ -31,11 +32,11 @@ if ( ! class_exists( 'myCRED_Settings' ) ) :
31
 
32
  // Load Settings
33
  $option_id = 'mycred_pref_core';
34
- if ( $type != 'mycred_default' && $type != '' )
35
  $option_id .= '_' . $type;
36
 
37
  $this->core = mycred_get_option( $option_id, $this->defaults() );
38
-
39
  if ( $this->core !== false ) {
40
  foreach ( (array) $this->core as $key => $value ) {
41
  $this->$key = $value;
@@ -47,16 +48,20 @@ if ( ! class_exists( 'myCRED_Settings' ) ) :
47
 
48
  if ( defined( 'MYCRED_LOG_TABLE' ) )
49
  $this->log_table = MYCRED_LOG_TABLE;
 
50
  else {
 
51
  global $wpdb;
52
-
53
  if ( $this->is_multisite && $this->use_central_logging )
54
  $this->log_table = $wpdb->base_prefix . 'myCRED_log';
55
  else
56
  $this->log_table = $wpdb->prefix . 'myCRED_log';
 
57
  }
58
 
59
  do_action_ref_array( 'mycred_settings', array( &$this ) );
 
60
  }
61
 
62
  /**
@@ -65,6 +70,7 @@ if ( ! class_exists( 'myCRED_Settings' ) ) :
65
  * @version 1.0
66
  */
67
  public function defaults() {
 
68
  return array(
69
  'cred_id' => 'mycred_default',
70
  'format' => array(
@@ -97,6 +103,7 @@ if ( ! class_exists( 'myCRED_Settings' ) ) :
97
  ),
98
  'delete_user' => 0
99
  );
 
100
  }
101
 
102
  /**
@@ -105,10 +112,12 @@ if ( ! class_exists( 'myCRED_Settings' ) ) :
105
  * @version 1.1
106
  */
107
  public function singular() {
 
108
  if ( ! isset( $this->core['name']['singular'] ) )
109
  return $this->name['singular'];
110
 
111
  return $this->core['name']['singular'];
 
112
  }
113
 
114
  /**
@@ -117,10 +126,12 @@ if ( ! class_exists( 'myCRED_Settings' ) ) :
117
  * @version 1.1
118
  */
119
  public function plural() {
 
120
  if ( ! isset( $this->core['name']['plural'] ) )
121
  return $this->name['plural'];
122
 
123
  return $this->core['name']['plural'];
 
124
  }
125
 
126
  /**
@@ -130,12 +141,15 @@ if ( ! class_exists( 'myCRED_Settings' ) ) :
130
  * @version 1.0
131
  */
132
  public function zero() {
 
133
  if ( ! isset( $this->format['decimals'] ) )
134
  $decimals = $this->core['format']['decimals'];
 
135
  else
136
  $decimals = $this->format['decimals'];
137
 
138
  return number_format( 0, $decimals );
 
139
  }
140
 
141
  /**
@@ -150,10 +164,12 @@ if ( ! class_exists( 'myCRED_Settings' ) ) :
150
  * @version 1.2
151
  */
152
  public function number( $number = '' ) {
 
153
  if ( $number === '' ) return $number;
154
 
155
  if ( ! isset( $this->format['decimals'] ) )
156
  $decimals = (int) $this->core['format']['decimals'];
 
157
  else
158
  $decimals = (int) $this->format['decimals'];
159
 
@@ -161,6 +177,7 @@ if ( ! class_exists( 'myCRED_Settings' ) ) :
161
  return number_format( (float) $number, $decimals, '.', '' );
162
 
163
  return (int) $number;
 
164
  }
165
 
166
  /**
@@ -176,17 +193,19 @@ if ( ! class_exists( 'myCRED_Settings' ) ) :
176
  * @version 1.1
177
  */
178
  public function format_number( $number = '' ) {
 
179
  if ( $number === '' ) return $number;
180
 
181
- $number = $this->number( $number );
182
  $decimals = $this->format['decimals'];
183
- $sep_dec = $this->format['separators']['decimal'];
184
- $sep_tho = $this->format['separators']['thousand'];
185
 
186
  // Format
187
  $creds = number_format( $number, (int) $decimals, $sep_dec, $sep_tho );
188
 
189
  return apply_filters( 'mycred_format_number', $creds, $number, $this->core );
 
190
  }
191
 
192
  /**
@@ -203,6 +222,7 @@ if ( ! class_exists( 'myCRED_Settings' ) ) :
203
  * @version 1.0
204
  */
205
  public function format_creds( $creds = 0, $before = '', $after = '', $force_in = false ) {
 
206
  // Prefix
207
  $prefix = '';
208
  if ( ! empty( $this->before ) )
@@ -219,10 +239,12 @@ if ( ! class_exists( 'myCRED_Settings' ) ) :
219
  // Optional extras to insert before and after
220
  if ( $force_in )
221
  $layout = $prefix . $before . $creds . $after . $suffix;
 
222
  else
223
  $layout = $before . $prefix . $creds . $suffix . $after;
224
 
225
  return apply_filters( 'mycred_format_creds', $layout, $creds, $this );
 
226
  }
227
 
228
  /**
@@ -237,24 +259,33 @@ if ( ! class_exists( 'myCRED_Settings' ) ) :
237
  * @version 1.1
238
  */
239
  public function round_value( $amount = 0, $up_down = false, $precision = 0 ) {
 
240
  if ( $amount == 0 || ! $up_down ) return $amount;
241
 
242
  // Use round() for precision
243
  if ( $precision !== false ) {
 
244
  if ( $up_down == 'up' )
245
  $_amount = round( $amount, (int) $precision, PHP_ROUND_HALF_UP );
 
246
  elseif ( $up_down == 'down' )
247
  $_amount = round( $amount, (int) $precision, PHP_ROUND_HALF_DOWN );
 
248
  }
 
249
  // Use ceil() or floor() for everything else
250
  else {
 
251
  if ( $up_down == 'up' )
252
  $_amount = ceil( $amount );
 
253
  elseif ( $up_down == 'down' )
254
  $_amount = floor( $amount );
 
255
  }
256
 
257
  return apply_filters( 'mycred_round_value', $_amount, $amount, $up_down, $precision );
 
258
  }
259
 
260
  /**
@@ -268,12 +299,14 @@ if ( ! class_exists( 'myCRED_Settings' ) ) :
268
  * @version 1.3
269
  */
270
  public function apply_exchange_rate( $amount = 0, $rate = 1, $round = true ) {
 
271
  if ( ! is_numeric( $rate ) || $rate == 1 ) return $amount;
272
 
273
  $exchange = $amount/(float) $rate;
274
  if ( $round ) $exchange = round( $exchange );
275
 
276
  return apply_filters( 'mycred_apply_exchange_rate', $exchange, $amount, $rate, $round );
 
277
  }
278
 
279
  /**
@@ -283,39 +316,46 @@ if ( ! class_exists( 'myCRED_Settings' ) ) :
283
  * @version 1.0
284
  */
285
  public function parse_template_tags( $content = '', $log_entry ) {
 
286
  // Prep
287
  $reference = $log_entry->ref;
288
- $ref_id = $log_entry->ref_id;
289
- $data = $log_entry->data;
290
 
291
  // Unserialize if serialized
292
- $data = maybe_unserialize( $data );
293
 
294
  // Run basic template tags first
295
- $content = $this->template_tags_general( $content );
296
 
297
  // Start by allowing others to play
298
- $content = apply_filters( 'mycred_parse_log_entry', $content, $log_entry );
299
- $content = apply_filters( "mycred_parse_log_entry_{$reference}", $content, $log_entry );
300
 
301
  // Get the reference type
302
  if ( isset( $data['ref_type'] ) || isset( $data['post_type'] ) ) {
 
303
  if ( isset( $data['ref_type'] ) )
304
  $type = $data['ref_type'];
 
305
  elseif ( isset( $data['post_type'] ) )
306
  $type = $data['post_type'];
307
 
308
  if ( $type == 'post' )
309
  $content = $this->template_tags_post( $content, $ref_id, $data );
 
310
  elseif ( $type == 'user' )
311
  $content = $this->template_tags_user( $content, $ref_id, $data );
 
312
  elseif ( $type == 'comment' )
313
  $content = $this->template_tags_comment( $content, $ref_id, $data );
314
 
315
  $content = apply_filters( "mycred_parse_tags_{$type}", $content, $log_entry );
 
316
  }
317
 
318
  return $content;
 
319
  }
320
 
321
  /**
@@ -325,6 +365,7 @@ if ( ! class_exists( 'myCRED_Settings' ) ) :
325
  * @version 1.2
326
  */
327
  public function template_tags_general( $content = '' ) {
 
328
  $content = apply_filters( 'mycred_parse_tags_general', $content );
329
 
330
  // Singular
@@ -352,8 +393,8 @@ if ( ! class_exists( 'myCRED_Settings' ) ) :
352
  $content = str_replace( '%admin_email%', get_bloginfo( 'admin_email' ), $content );
353
  }
354
 
355
- //$content = str_replace( '', , $content );
356
  return $content;
 
357
  }
358
 
359
  /**
@@ -363,12 +404,16 @@ if ( ! class_exists( 'myCRED_Settings' ) ) :
363
  * @version 1.0.3
364
  */
365
  public function template_tags_amount( $content = '', $amount = 0 ) {
 
366
  $content = $this->template_tags_general( $content );
367
  if ( ! $this->has_tags( 'amount', 'cred|cred_f', $content ) ) return $content;
 
368
  $content = apply_filters( 'mycred_parse_tags_amount', $content, $amount, $this );
369
  $content = str_replace( '%cred_f%', $this->format_creds( $amount ), $content );
370
  $content = str_replace( '%cred%', $amount, $content );
 
371
  return $content;
 
372
  }
373
 
374
  /**
@@ -383,7 +428,9 @@ if ( ! class_exists( 'myCRED_Settings' ) ) :
383
  * @version 1.0.4
384
  */
385
  public function template_tags_post( $content = '', $ref_id = NULL, $data = '' ) {
 
386
  if ( $ref_id === NULL ) return $content;
 
387
  $content = $this->template_tags_general( $content );
388
  if ( ! $this->has_tags( 'post', 'post_title|post_url|link_with_title|post_type', $content ) ) return $content;
389
 
@@ -392,17 +439,23 @@ if ( ! class_exists( 'myCRED_Settings' ) ) :
392
 
393
  // Post does not exist
394
  if ( $post === NULL ) {
 
395
  if ( ! is_array( $data ) || ! array_key_exists( 'ID', $data ) ) return $content;
 
396
  $post = new StdClass();
397
  foreach ( $data as $key => $value ) {
398
  if ( $key == 'post_title' ) $value .= ' (' . __( 'Deleted', 'mycred' ) . ')';
399
  $post->$key = $value;
400
  }
 
401
  $url = get_permalink( $post->ID );
402
  if ( empty( $url ) ) $url = '#item-has-been-deleted';
 
403
  }
404
  else {
 
405
  $url = get_permalink( $post->ID );
 
406
  }
407
 
408
  // Let others play first
@@ -419,10 +472,8 @@ if ( ! class_exists( 'myCRED_Settings' ) ) :
419
  unset( $post_type );
420
  }
421
 
422
- //$content = str_replace( '', $post->, $content );
423
- unset( $post );
424
-
425
  return $content;
 
426
  }
427
 
428
  /**
@@ -437,26 +488,36 @@ if ( ! class_exists( 'myCRED_Settings' ) ) :
437
  * @version 1.3
438
  */
439
  public function template_tags_user( $content = '', $ref_id = NULL, $data = '' ) {
 
440
  if ( $ref_id === NULL ) return $content;
 
441
  $content = $this->template_tags_general( $content );
442
  if ( ! $this->has_tags( 'user', 'user_id|user_name|user_name_en|display_name|user_profile_url|user_profile_link|user_nicename|user_email|user_url|balance|balance_f', $content ) ) return $content;
443
 
444
  // Get User Object
445
  if ( $ref_id !== false )
446
  $user = get_userdata( $ref_id );
 
447
  // User object is passed on though $data
448
  elseif ( $ref_id === false && is_object( $data ) && isset( $data->ID ) )
449
  $user = $data;
 
450
  // User array is passed on though $data
451
  elseif ( $ref_id === false && is_array( $data ) || array_key_exists( 'ID', (array) $data ) ) {
 
452
  $user = new StdClass();
453
  foreach ( $data as $key => $value ) {
 
454
  if ( $key == 'login' )
455
  $user->user_login = $value;
 
456
  else
457
  $user->$key = $value;
 
458
  }
 
459
  }
 
460
  else return $content;
461
 
462
  // Let others play first
@@ -476,7 +537,7 @@ if ( ! class_exists( 'myCRED_Settings' ) ) :
476
  global $wp_rewrite;
477
  $url = get_bloginfo( 'url' ) . '/' . $wp_rewrite->author_base . '/' . urlencode( $user->user_login ) . '/';
478
  }
479
- $url = apply_filters( 'mycred_users_profile_url', $url, $user );
480
 
481
  $content = str_replace( '%display_name%', $user->display_name, $content );
482
  $content = str_replace( '%user_profile_url%', $url, $content );
@@ -491,10 +552,8 @@ if ( ! class_exists( 'myCRED_Settings' ) ) :
491
  $content = str_replace( '%balance%', $balance, $content );
492
  $content = str_replace( '%balance_f%', $this->format_creds( $balance ), $content );
493
 
494
- //$content = str_replace( '', $user->, $content );
495
- unset( $user );
496
-
497
  return $content;
 
498
  }
499
 
500
  /**
@@ -509,7 +568,9 @@ if ( ! class_exists( 'myCRED_Settings' ) ) :
509
  * @version 1.0.4
510
  */
511
  public function template_tags_comment( $content = '', $ref_id = NULL, $data = '' ) {
 
512
  if ( $ref_id === NULL ) return $content;
 
513
  $content = $this->template_tags_general( $content );
514
  if ( ! $this->has_tags( 'comment', 'comment_id|c_post_id|c_post_title|c_post_url|c_link_with_title', $content ) ) return $content;
515
 
@@ -518,20 +579,26 @@ if ( ! class_exists( 'myCRED_Settings' ) ) :
518
 
519
  // Comment does not exist
520
  if ( $comment === NULL ) {
521
- if ( !is_array( $data ) || !array_key_exists( 'comment_ID', $data ) ) return $content;
 
 
522
  $comment = new StdClass();
523
  foreach ( $data as $key => $value ) {
524
  $comment->$key = $value;
525
  }
 
526
  $url = get_permalink( $comment->comment_post_ID );
527
  if ( empty( $url ) ) $url = '#item-has-been-deleted';
528
 
529
  $title = get_the_title( $comment->comment_post_ID );
530
  if ( empty( $title ) ) $title = __( 'Deleted Item', 'mycred' );
 
531
  }
532
  else {
 
533
  $url = get_permalink( $comment->comment_post_ID );
534
  $title = get_the_title( $comment->comment_post_ID );
 
535
  }
536
 
537
  // Let others play first
@@ -545,9 +612,8 @@ if ( ! class_exists( 'myCRED_Settings' ) ) :
545
  $content = str_replace( '%c_post_url%', $url, $content );
546
  $content = str_replace( '%c_link_with_title%', '<a href="' . $url . '">' . $title . '</a>', $content );
547
 
548
- //$content = str_replace( '', $comment->, $content );
549
- unset( $comment );
550
  return $content;
 
551
  }
552
 
553
  /**
@@ -564,10 +630,14 @@ if ( ! class_exists( 'myCRED_Settings' ) ) :
564
  * @version 1.0
565
  */
566
  public function has_tags( $type = '', $tags = '', $content = '' ) {
 
567
  $tags = apply_filters( 'mycred_has_tags', $tags, $content );
568
  $tags = apply_filters( 'mycred_has_tags_' . $type, $tags, $content );
 
569
  if ( ! preg_match( '%(' . trim( $tags ) . ')%', $content, $matches ) ) return false;
 
570
  return true;
 
571
  }
572
 
573
  /**
@@ -578,6 +648,7 @@ if ( ! class_exists( 'myCRED_Settings' ) ) :
578
  * @version 1.0
579
  */
580
  public function available_template_tags( $available = array(), $custom = '' ) {
 
581
  // Prep
582
  $links = $template_tags = array();
583
 
@@ -640,6 +711,7 @@ if ( ! class_exists( 'myCRED_Settings' ) ) :
640
  $custom = ' ' . __( 'and', 'mycred' ) . ' ' . $custom;
641
 
642
  return __( 'Available Template Tags:', 'mycred' ) . ' ' . implode( ', ', $links ) . $custom . '.';
 
643
  }
644
 
645
  /**
@@ -654,12 +726,15 @@ if ( ! class_exists( 'myCRED_Settings' ) ) :
654
  * @version 1.1
655
  */
656
  public function allowed_tags( $data = '', $allow = '' ) {
 
657
  if ( $allow === false )
658
  return strip_tags( $data );
 
659
  elseif ( ! empty( $allow ) )
660
  return strip_tags( $data, $allow );
661
 
662
  return strip_tags( $data, apply_filters( 'mycred_allowed_tags', '<a><br><em><strong><span>' ) );
 
663
  }
664
 
665
  /**
@@ -670,16 +745,18 @@ if ( ! class_exists( 'myCRED_Settings' ) ) :
670
  * @version 1.0.1
671
  */
672
  public function allowed_html_tags() {
 
673
  return apply_filters( 'mycred_allowed_html_tags', array(
674
- 'a' => array( 'href' => array(), 'title' => array(), 'target' => array() ),
675
  'abbr' => array( 'title' => array() ), 'acronym' => array( 'title' => array() ),
676
  'code' => array(), 'pre' => array(), 'em' => array(), 'strong' => array(),
677
- 'div' => array( 'class' => array(), 'id' => array() ), 'span' => array( 'class' => array() ),
678
- 'p' => array(), 'ul' => array(), 'ol' => array(), 'li' => array(),
679
- 'h1' => array(), 'h2' => array(), 'h3' => array(), 'h4' => array(), 'h5' => array(), 'h6' => array(),
680
- 'img' => array( 'src' => array(), 'class' => array(), 'alt' => array() ),
681
- 'br' => array( 'class' => array() )
682
  ), $this );
 
683
  }
684
 
685
  /**
@@ -691,10 +768,12 @@ if ( ! class_exists( 'myCRED_Settings' ) ) :
691
  * @version 1.1
692
  */
693
  public function edit_creds_cap() {
 
694
  if ( ! isset( $this->caps['creds'] ) || empty( $this->caps['creds'] ) )
695
  $this->caps['creds'] = 'delete_users';
696
 
697
  return apply_filters( 'mycred_edit_creds_cap', $this->caps['creds'] );
 
698
  }
699
 
700
  /**
@@ -708,6 +787,7 @@ if ( ! class_exists( 'myCRED_Settings' ) ) :
708
  * @version 1.1
709
  */
710
  public function can_edit_creds( $user_id = '' ) {
 
711
  $result = false;
712
 
713
  if ( ! function_exists( 'get_current_user_id' ) )
@@ -725,6 +805,7 @@ if ( ! class_exists( 'myCRED_Settings' ) ) :
725
  $result = true;
726
 
727
  return apply_filters( 'mycred_can_edit_creds', $result, $user_id );
 
728
  }
729
 
730
  /**
@@ -736,10 +817,12 @@ if ( ! class_exists( 'myCRED_Settings' ) ) :
736
  * @version 1.1
737
  */
738
  public function edit_plugin_cap() {
 
739
  if ( ! isset( $this->caps['plugin'] ) || empty( $this->caps['plugin'] ) )
740
  $this->caps['plugin'] = 'manage_options';
741
 
742
  return apply_filters( 'mycred_edit_plugin_cap', $this->caps['plugin'] );
 
743
  }
744
 
745
  /**
@@ -753,6 +836,7 @@ if ( ! class_exists( 'myCRED_Settings' ) ) :
753
  * @version 1.1
754
  */
755
  public function can_edit_plugin( $user_id = '' ) {
 
756
  $result = false;
757
 
758
  if ( ! function_exists( 'get_current_user_id' ) )
@@ -770,6 +854,7 @@ if ( ! class_exists( 'myCRED_Settings' ) ) :
770
  $result = true;
771
 
772
  return apply_filters( 'mycred_can_edit_plugin', $result, $user_id );
 
773
  }
774
 
775
  /**
@@ -779,6 +864,7 @@ if ( ! class_exists( 'myCRED_Settings' ) ) :
779
  * @version 1.1
780
  */
781
  public function in_exclude_list( $user_id = '' ) {
 
782
  $result = false;
783
 
784
  // Grab current user id
@@ -793,6 +879,7 @@ if ( ! class_exists( 'myCRED_Settings' ) ) :
793
  $result = true;
794
 
795
  return apply_filters( 'mycred_is_excluded_list', $result, $user_id );
 
796
  }
797
 
798
  /**
@@ -802,7 +889,9 @@ if ( ! class_exists( 'myCRED_Settings' ) ) :
802
  * @version 1.0
803
  */
804
  public function exclude_plugin_editors() {
 
805
  return (bool) $this->exclude['plugin_editors'];
 
806
  }
807
 
808
  /**
@@ -812,7 +901,9 @@ if ( ! class_exists( 'myCRED_Settings' ) ) :
812
  * @version 1.0
813
  */
814
  public function exclude_creds_editors() {
 
815
  return (bool) $this->exclude['cred_editors'];
 
816
  }
817
 
818
  /**
@@ -846,8 +937,11 @@ if ( ! class_exists( 'myCRED_Settings' ) ) :
846
  * @version 1.0
847
  */
848
  public function count_members() {
 
849
  global $wpdb;
 
850
  return (int) $wpdb->get_var( "SELECT COUNT(*) FROM {$wpdb->users};" );
 
851
  }
852
 
853
  /**
@@ -857,10 +951,12 @@ if ( ! class_exists( 'myCRED_Settings' ) ) :
857
  * @version 1.0
858
  */
859
  public function get_cred_id() {
 
860
  if ( ! isset( $this->cred_id ) || $this->cred_id == '' )
861
  $this->cred_id = 'mycred_default';
862
 
863
  return $this->cred_id;
 
864
  }
865
 
866
  /**
@@ -869,10 +965,12 @@ if ( ! class_exists( 'myCRED_Settings' ) ) :
869
  * @version 1.0
870
  */
871
  public function max() {
 
872
  if ( ! isset( $this->max ) )
873
  $this->max = 0;
874
 
875
  return $this->max;
 
876
  }
877
 
878
  /**
@@ -883,13 +981,15 @@ if ( ! class_exists( 'myCRED_Settings' ) ) :
883
  * @param $type (string), optional cred type to check for
884
  * @returns zero if user id is not set or if no creds were found, else returns amount
885
  * @since 0.1
886
- * @version 1.4
887
  */
888
  public function get_users_balance( $user_id = NULL, $type = NULL ) {
 
889
  if ( $user_id === NULL ) return $this->zero();
890
 
891
- $types = mycred_get_types();
892
- if ( $type === NULL || ! array_key_exists( $type, $types ) ) $type = $this->get_cred_id();
 
893
 
894
  $balance = mycred_get_user_meta( $user_id, $type, '', true );
895
  if ( $balance == '' ) $balance = $this->zero();
@@ -898,10 +998,13 @@ if ( ! class_exists( 'myCRED_Settings' ) ) :
898
  $balance = apply_filters( 'mycred_get_users_cred', $balance, $this, $user_id, $type );
899
 
900
  return $this->number( $balance );
 
901
  }
902
  // Replaces
903
  public function get_users_cred( $user_id = NULL, $type = NULL ) {
 
904
  return $this->get_users_balance( $user_id, $type );
 
905
  }
906
 
907
  /**
@@ -912,24 +1015,30 @@ if ( ! class_exists( 'myCRED_Settings' ) ) :
912
  * @param $amount (int|float), amount to add/deduct from users balance. This value must be pre-formated.
913
  * @returns the new balance.
914
  * @since 0.1
915
- * @version 1.4.1
916
  */
917
- public function update_users_balance( $user_id = NULL, $amount = NULL, $type = 'mycred_default' ) {
918
 
919
  // Minimum Requirements: User id and amount can not be null
920
  if ( $user_id === NULL || $amount === NULL ) return $amount;
921
- if ( empty( $type ) ) $type = $this->get_cred_id();
 
 
 
922
 
923
  // Enforce max
924
  if ( $this->max() > $this->zero() && $amount > $this->max() ) {
925
- $amount = $this->number( $this->max() );
 
 
926
 
927
  do_action( 'mycred_max_enforced', $user_id, $_amount, $this->max() );
 
928
  }
929
 
930
  // Adjust creds
931
  $current_balance = $this->get_users_balance( $user_id, $type );
932
- $new_balance = $current_balance+$amount;
933
 
934
  // Update creds
935
  mycred_update_user_meta( $user_id, $type, '', $new_balance );
@@ -963,7 +1072,7 @@ if ( ! class_exists( 'myCRED_Settings' ) ) :
963
  * @param $type (string), optional point name, defaults to 'mycred_default'
964
  * @returns boolean true on success or false on fail
965
  * @since 0.1
966
- * @version 1.6
967
  */
968
  public function add_creds( $ref = '', $user_id = '', $amount = '', $entry = '', $ref_id = '', $data = '', $type = 'mycred_default' ) {
969
 
@@ -979,18 +1088,25 @@ if ( ! class_exists( 'myCRED_Settings' ) ) :
979
 
980
  // Enforce max
981
  if ( $this->max() > $this->zero() && $amount > $this->max() ) {
982
- $amount = $this->number( $this->max() );
 
 
983
 
984
  do_action( 'mycred_max_enforced', $user_id, $_amount, $this->max() );
 
985
  }
986
 
 
 
 
 
987
  // Execution Override
988
  // Allows us to stop an execution.
989
- // Your functions should return the answer to the question: "Should myCRED adjust the users point balance?"
990
  $execute = apply_filters( 'mycred_add', true, compact( 'ref', 'user_id', 'amount', 'entry', 'ref_id', 'data', 'type' ), $this );
991
 
992
  // Acceptable answers:
993
- // true (boolean) - "Yes" let myCRED add points and log the event
994
  if ( $execute === true ) {
995
 
996
  // Allow the adjustment of the values before we run them
@@ -1011,10 +1127,13 @@ if ( ! class_exists( 'myCRED_Settings' ) ) :
1011
  $this->update_users_balance( (int) $run_this['user_id'], $run_this['amount'], $run_this['type'] );
1012
 
1013
  }
 
 
1014
  else { $run_this = false; }
1015
 
1016
  // For all features that need to run once we have done or not done something
1017
  return apply_filters( 'mycred_add_finished', $execute, $run_this, $this );
 
1018
  }
1019
 
1020
  /**
@@ -1026,8 +1145,9 @@ if ( ! class_exists( 'myCRED_Settings' ) ) :
1026
  * @param $cred (int|float), required number of creds to give or deduct from the given user.
1027
  * @param $ref_id (array), optional array of reference IDs allowing the use of content specific keywords in the log entry
1028
  * @param $data (object|array|string|int), optional extra data to save in the log. Note that arrays gets serialized!
1029
- * @returns boolean true on success or false on fail
1030
- * @version 1.1
 
1031
  */
1032
  public function add_to_log( $ref = '', $user_id = '', $amount = '', $entry = '', $ref_id = '', $data = '', $type = 'mycred_default' ) {
1033
 
@@ -1043,43 +1163,73 @@ if ( ! class_exists( 'myCRED_Settings' ) ) :
1043
  $entry = $this->allowed_tags( $entry );
1044
 
1045
  // Enforce max
1046
- if ( $this->max() > $this->zero() && $amount > $this->max() ) {
1047
  $amount = $this->number( $this->max() );
1048
- }
1049
 
1050
  // Type
1051
- if ( empty( $type ) ) $type = $this->get_cred_id();
 
1052
 
1053
  // Creds format
1054
  if ( $this->format['decimals'] > 0 )
1055
  $format = '%f';
 
1056
  elseif ( $this->format['decimals'] == 0 )
1057
  $format = '%d';
 
1058
  else
1059
  $format = '%s';
1060
 
1061
- $time = apply_filters( 'mycred_log_time', date_i18n( 'U' ), $ref, $user_id, $amount, $entry, $ref_id, $data, $type );
 
 
 
 
 
 
 
 
 
 
1062
 
1063
  // Insert into DB
1064
- $new_entry = $wpdb->insert(
1065
  $this->log_table,
1066
- array(
1067
- 'ref' => $ref,
1068
- 'ref_id' => $ref_id,
1069
- 'user_id' => (int) $user_id,
1070
- 'creds' => $amount,
1071
- 'ctype' => $type,
1072
- 'time' => $time,
1073
- 'entry' => $entry,
1074
- 'data' => ( is_array( $data ) || is_object( $data ) ) ? serialize( $data ) : $data
1075
- ),
1076
  array( '%s', '%d', '%d', $format, '%s', '%d', '%s', ( is_numeric( $data ) ) ? '%d' : '%s' )
1077
  );
1078
 
1079
- // $wpdb->insert returns false on fail
1080
- if ( ! $new_entry ) return false;
1081
-
1082
  delete_transient( 'mycred_log_entries' );
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1083
  return true;
1084
 
1085
  }
@@ -1092,50 +1242,44 @@ if ( ! class_exists( 'myCRED_Settings' ) ) :
1092
  * @param $user_id (int) optional user id
1093
  * @param $data (array|string) option data to search
1094
  * @since 0.1
1095
- * @version 1.3.1
1096
  */
1097
  function has_entry( $reference = '', $ref_id = '', $user_id = '', $data = '', $type = '' ) {
 
1098
  global $wpdb;
1099
 
1100
- $where = $prep = array();
1101
- if ( ! empty( $reference ) ) {
1102
- $where[] = 'ref = %s';
1103
- $prep[] = $reference;
1104
- }
1105
 
1106
- if ( ! empty( $ref_id ) ) {
1107
- $where[] = 'ref_id = %d';
1108
- $prep[] = $ref_id;
1109
- }
1110
 
1111
- if ( ! empty( $user_id ) ) {
1112
- $where[] = 'user_id = %d';
1113
- $prep[] = abs( $user_id );
1114
- }
1115
 
1116
- if ( ! empty( $data ) ) {
1117
- $where[] = 'data = %s';
1118
- $prep[] = maybe_serialize( $data );
1119
- }
1120
 
1121
- if ( empty( $type ) )
1122
- $type = $this->cred_id;
1123
 
1124
- $where[] = 'ctype = %s';
1125
- $prep[] = sanitize_text_field( $type );
 
 
1126
 
1127
- $where = implode( ' AND ', $where );
 
 
 
 
 
1128
 
1129
- $has = false;
1130
- if ( ! empty( $where ) ) {
1131
- $sql = "SELECT * FROM {$this->log_table} WHERE {$where};";
1132
- $wpdb->get_results( $wpdb->prepare( $sql, $prep ) );
1133
- if ( $wpdb->num_rows > 0 )
1134
- $has = true;
1135
  }
1136
 
1137
  return apply_filters( 'mycred_has_entry', $has, $reference, $ref_id, $user_id, $data, $type );
 
1138
  }
 
1139
  }
1140
  endif;
1141
 
@@ -1194,17 +1338,23 @@ if ( ! function_exists( 'mycred_get_types' ) ) :
1194
 
1195
  $available_types = mycred_get_option( 'mycred_types', array( 'mycred_default' => mycred_label() ) );
1196
  if ( count( $available_types ) > 1 ) {
 
1197
  foreach ( $available_types as $type => $label ) {
 
1198
  if ( $type == 'mycred_default' ) {
1199
  $_mycred = mycred( $type );
1200
  $label = $_mycred->plural();
1201
  }
1202
 
1203
  $types[ $type ] = $label;
 
1204
  }
 
1205
  }
1206
  else {
 
1207
  $types = $available_types;
 
1208
  }
1209
 
1210
  return apply_filters( 'mycred_types', $types );
@@ -1219,26 +1369,31 @@ endif;
1219
  if ( ! function_exists( 'mycred_types_select_from_dropdown' ) ) :
1220
  function mycred_types_select_from_dropdown( $name = '', $id = '', $selected = '', $return = false, $extra = '' )
1221
  {
1222
- $types = mycred_get_types();
1223
-
1224
  $output = '';
1225
- if ( count( $types ) == 1 ) {
 
1226
  $output .= '<input type="hidden"' . $extra . ' name="' . $name . '" id="' . $id . '" value="mycred_default" />';
1227
- }
1228
  else {
1229
- $output .= '
1230
- <select' . $extra . ' name="' . $name . '" id="' . $id . '">';
 
1231
  foreach ( $types as $type => $label ) {
 
1232
  if ( $type == 'mycred_default' ) {
1233
  $_mycred = mycred( $type );
1234
- $label = $_mycred->plural();
1235
  }
 
1236
  $output .= '<option value="' . $type . '"';
1237
  if ( $selected == $type ) $output .= ' selected="selected"';
1238
  $output .= '>' . $label . '</option>';
 
1239
  }
1240
- $output .= '
1241
- </select>';
 
1242
  }
1243
 
1244
  if ( $return )
@@ -1345,13 +1500,18 @@ if ( ! function_exists( 'mycred_get_option' ) ) :
1345
  function mycred_get_option( $option_id, $default = array() )
1346
  {
1347
  if ( is_multisite() ) {
 
1348
  if ( mycred_override_settings() )
1349
  $settings = get_blog_option( 1, $option_id, $default );
 
1350
  else
1351
  $settings = get_blog_option( $GLOBALS['blog_id'], $option_id, $default );
 
1352
  }
1353
  else {
 
1354
  $settings = get_option( $option_id, $default );
 
1355
  }
1356
 
1357
  return $settings;
@@ -1367,13 +1527,18 @@ if ( ! function_exists( 'mycred_update_option' ) ) :
1367
  function mycred_update_option( $option_id, $value = '' )
1368
  {
1369
  if ( is_multisite() ) {
 
1370
  if ( mycred_override_settings() )
1371
  return update_blog_option( 1, $option_id, $value );
 
1372
  else
1373
  return update_blog_option( $GLOBALS['blog_id'], $option_id, $value );
 
1374
  }
1375
  else {
 
1376
  return update_option( $option_id, $value );
 
1377
  }
1378
  }
1379
  endif;
@@ -1387,13 +1552,18 @@ if ( ! function_exists( 'mycred_delete_option' ) ) :
1387
  function mycred_delete_option( $option_id )
1388
  {
1389
  if ( is_multisite() ) {
 
1390
  if ( mycred_override_settings() )
1391
  delete_blog_option( 1, $option_id );
 
1392
  else
1393
  delete_blog_option( $GLOBALS['blog_id'], $option_id );
 
1394
  }
1395
  else {
 
1396
  delete_option( $option_id );
 
1397
  }
1398
  }
1399
  endif;
@@ -1489,8 +1659,10 @@ if ( ! function_exists( 'mycred_name' ) ) :
1489
  function mycred_name( $singular = true, $type = 'mycred_default' )
1490
  {
1491
  $mycred = mycred( $type );
 
1492
  if ( $singular )
1493
  return $mycred->singular();
 
1494
  else
1495
  return $mycred->plural();
1496
  }
@@ -1508,6 +1680,7 @@ if ( ! function_exists( 'mycred_strip_tags' ) ) :
1508
  function mycred_strip_tags( $string = '', $overwride = '' )
1509
  {
1510
  $mycred = mycred();
 
1511
  return $mycred->allowed_tags( $string, $overwrite );
1512
  }
1513
  endif;
@@ -1546,6 +1719,7 @@ if ( ! function_exists( 'mycred_exclude_user' ) ) :
1546
  {
1547
  $mycred = mycred( $type );
1548
  if ( $user_id === NULL ) $user_id = get_current_user_id();
 
1549
  return $mycred->exclude_user( $user_id );
1550
  }
1551
  endif;
@@ -1568,6 +1742,7 @@ if ( ! function_exists( 'mycred_get_users_cred' ) ) :
1568
  $type = 'mycred_default';
1569
 
1570
  $mycred = mycred( $type );
 
1571
  return $mycred->get_users_cred( $user_id, $type );
1572
  }
1573
  endif;
@@ -1588,6 +1763,7 @@ if ( ! function_exists( 'mycred_get_users_fcred' ) ) :
1588
 
1589
  $mycred = mycred( $type );
1590
  $cred = $mycred->get_users_cred( $user_id, $type );
 
1591
  return $mycred->format_creds( $cred );
1592
  }
1593
  endif;
@@ -1678,7 +1854,8 @@ if ( ! function_exists( 'mycred_subtract' ) ) :
1678
  function mycred_subtract( $ref = '', $user_id = '', $amount = '', $entry = '', $ref_id = '', $data = '', $type = 'mycred_default' )
1679
  {
1680
  if ( $ref == '' || $user_id == '' || $amount == '' ) return false;
1681
- if ( $amount > 0 ) $amount = 0-$amount;
 
1682
  return mycred_add( $ref, $user_id, $amount, $entry, $ref_id, $data, $type );
1683
  }
1684
  endif;
@@ -1735,17 +1912,16 @@ if ( ! function_exists( 'mycred_count_ref_instances' ) ) :
1735
 
1736
  global $wpdb;
1737
 
1738
- if ( $user_id !== NULL ) {
1739
  $count = $wpdb->get_var( $wpdb->prepare( "
1740
  SELECT COUNT(*)
1741
  FROM {$mycred->log_table}
1742
  WHERE ref = %s
1743
- AND user_id = %d
1744
- AND ctype = %s;", $reference, $user_id, $type ) );
1745
- }
1746
- else {
1747
  $count = $wpdb->get_var( $wpdb->prepare( "SELECT COUNT(*) FROM {$mycred->log_table} WHERE ref = %s;", $reference ) );
1748
- }
1749
 
1750
  if ( $count === NULL )
1751
  $count = 0;
@@ -1827,15 +2003,21 @@ if ( ! function_exists( 'mycred_count_all_ref_instances' ) ) :
1827
  $query = $wpdb->get_results( "SELECT ref, COUNT(*) AS count FROM {$mycred->log_table} {$type} GROUP BY ref ORDER BY count {$order} {$limit};" );
1828
 
1829
  $results = array();
 
1830
  if ( $wpdb->num_rows > 0 ) {
 
1831
  foreach ( $query as $num => $reference ) {
 
1832
  $occurrence = $reference->count;
1833
  if ( $reference->ref == 'transfer' )
1834
  $occurrence = $occurrence/2;
1835
 
1836
  $results[ $reference->ref ] = $occurrence;
 
1837
  }
 
1838
  arsort( $results );
 
1839
  }
1840
 
1841
  return apply_filters( 'mycred_count_all_refs', $results );
@@ -1861,7 +2043,7 @@ endif;
1861
  * @param $type (string) point type to filer by.
1862
  * @returns total points (int|float) or error message (string)
1863
  * @since 1.1.1
1864
- * @version 1.2
1865
  */
1866
  if ( ! function_exists( 'mycred_get_total_by_time' ) ) :
1867
  function mycred_get_total_by_time( $from = 'today', $to = 'now', $ref = NULL, $user_id = NULL, $type = 'mycred_default' )
@@ -1871,50 +2053,50 @@ if ( ! function_exists( 'mycred_get_total_by_time' ) ) :
1871
 
1872
  // Prep
1873
  $wheres = array();
1874
- $prep = array();
1875
 
1876
  // Reference
1877
  if ( $ref !== NULL ) {
1878
- if ( empty( $ref ) ) return __( 'ref empty', 'mycred' );
1879
 
1880
  $wheres[] = 'ref = %s';
1881
- $prep[] = $ref;
1882
  }
1883
 
1884
  // User
1885
  if ( $user_id !== NULL ) {
1886
- if ( ! is_int( $user_id ) ) return __( 'incorrect user id format', 'mycred' );
1887
 
1888
  $wheres[] = 'user_id = %d';
1889
- $prep[] = $user_id;
1890
  }
1891
 
1892
  // Default from start of today
1893
  if ( $from == 'today' ) {
1894
  $today = date_i18n( 'Y/m/d 00:00:00' );
1895
- $from = strtotime( $today );
1896
  }
1897
 
1898
  // From
1899
- if ( ! is_numeric( $from ) ) return __( 'incorrect unix timestamp (from):', 'mycred' ) . ' ' . $from;
1900
  $wheres[] = 'time >= %d';
1901
- $prep[] = $from;
1902
 
1903
  // Default to is now
1904
  if ( $to == 'now' )
1905
  $to = date_i18n( 'U' );
1906
 
1907
  // To
1908
- if ( ! is_numeric( $to ) ) return __( 'incorrect unix timestamp (to):', 'mycred' ) . ' ' . $to;
1909
  $wheres[] = 'time <= %d';
1910
- $prep[] = $to;
1911
 
1912
  // Type
1913
  if ( empty( $type ) )
1914
  $type = $mycred->get_cred_id();
1915
 
1916
  $wheres[] = 'ctype = %s';
1917
- $prep[] = $type;
1918
 
1919
  global $wpdb;
1920
 
@@ -1952,9 +2134,10 @@ if ( ! function_exists( 'mycred_get_users_total' ) ) :
1952
  if ( $user_id == '' ) return 0;
1953
 
1954
  if ( $type == '' ) $type = 'mycred_default';
 
1955
  $mycred = mycred( $type );
 
1956
 
1957
- $total = mycred_get_user_meta( $user_id, $type, '_total' );
1958
  if ( $total == '' ) {
1959
  $total = mycred_query_users_total( $user_id, $type );
1960
  mycred_update_user_meta( $user_id, $type, '_total', $total );
@@ -1997,10 +2180,11 @@ if ( ! function_exists( 'mycred_query_users_total' ) ) :
1997
  SELECT meta_value
1998
  FROM {$wpdb->usermeta}
1999
  WHERE user_id = %d
2000
- AND meta_key = %s;", $user_id, $type ) );
2001
 
2002
  if ( $total === NULL )
2003
  $total = 0;
 
2004
  }
2005
 
2006
  return apply_filters( 'mycred_query_users_total', $total, $user_id, $type, $mycred );
@@ -2026,7 +2210,7 @@ if ( ! function_exists( 'mycred_update_users_total' ) ) :
2026
  if ( $type == '' )
2027
  $type = $mycred->get_cred_id();
2028
 
2029
- $amount = $mycred->number( $request['amount'] );
2030
  $user_id = absint( $request['user_id'] );
2031
 
2032
  $users_total = mycred_get_user_meta( $user_id, $type, '_total', true );
@@ -2050,18 +2234,27 @@ endif;
2050
  if ( ! function_exists( 'mycred_apply_defaults' ) ) :
2051
  function mycred_apply_defaults( &$pref, $set )
2052
  {
2053
- $set = (array) $set;
2054
  $return = array();
 
2055
  foreach ( $pref as $key => $value ) {
 
2056
  if ( array_key_exists( $key, $set ) ) {
 
2057
  if ( is_array( $value ) && ! empty( $value ) )
2058
  $return[ $key ] = mycred_apply_defaults( $value, $set[ $key ] );
 
2059
  else
2060
  $return[ $key ] = $set[ $key ];
 
2061
  }
 
2062
  else $return[ $key ] = $value;
 
2063
  }
 
2064
  return $return;
 
2065
  }
2066
  endif;
2067
 
@@ -2079,6 +2272,7 @@ if ( ! function_exists( 'mycred_get_remote' ) ) :
2079
  'uri' => 'api-dev',
2080
  'debug' => 0
2081
  ) );
 
2082
  return mycred_apply_defaults( $defaults, get_option( 'mycred_pref_remote', array() ) );
2083
  }
2084
  endif;
@@ -2106,7 +2300,7 @@ if ( ! function_exists( 'mycred_is_site_blocked' ) ) :
2106
  if ( ! empty( $network['block'] ) && $blog_id > 1 ) {
2107
 
2108
  // Clean up list to make sure no white spaces are used
2109
- $list = explode( ',', $network['block'] );
2110
  $clean = array();
2111
  foreach ( $list as $blog_id ) {
2112
  $clean[] = absint( $blog_id );
@@ -2166,7 +2360,7 @@ endif;
2166
  * Installs the log for a site.
2167
  * Requires Multisite
2168
  * @since 1.3
2169
- * @version 1.2
2170
  */
2171
  if ( ! function_exists( 'mycred_install_log' ) ) :
2172
  function mycred_install_log( $decimals = 0, $table = NULL )
@@ -2178,48 +2372,54 @@ if ( ! function_exists( 'mycred_install_log' ) ) :
2178
 
2179
  if ( $table === NULL ) {
2180
  $mycred = mycred();
2181
- $table = $mycred->log_table;
2182
  }
2183
 
 
2184
  if ( $decimals > 0 ) {
 
2185
  if ( $decimals > 4 )
2186
  $cred_format = "decimal(32,$decimals)";
 
2187
  else
2188
  $cred_format = "decimal(22,$decimals)";
2189
- }
2190
- else {
2191
- $cred_format = 'bigint(22)';
2192
  }
2193
 
2194
  $wpdb->hide_errors();
2195
 
2196
  $collate = '';
2197
  if ( $wpdb->has_cap( 'collation' ) ) {
 
2198
  if ( ! empty( $wpdb->charset ) )
2199
  $collate .= "DEFAULT CHARACTER SET {$wpdb->charset}";
 
2200
  if ( ! empty( $wpdb->collate ) )
2201
  $collate .= " COLLATE {$wpdb->collate}";
 
2202
  }
2203
 
2204
  // Log structure
2205
  $sql = "
2206
- id int(11) NOT NULL AUTO_INCREMENT,
2207
- ref VARCHAR(256) NOT NULL,
2208
- ref_id int(11) DEFAULT NULL,
2209
- user_id int(11) DEFAULT NULL,
2210
- creds $cred_format DEFAULT NULL,
2211
- ctype VARCHAR(64) DEFAULT 'mycred_default',
2212
- time bigint(20) DEFAULT NULL,
2213
- entry LONGTEXT DEFAULT NULL,
2214
- data LONGTEXT DEFAULT NULL,
2215
- PRIMARY KEY (id),
2216
  UNIQUE KEY id (id)";
2217
 
2218
  // Insert table
2219
  require_once( ABSPATH . 'wp-admin/includes/upgrade.php' );
2220
  dbDelta( "CREATE TABLE IF NOT EXISTS {$table} ( " . $sql . " ) $collate;" );
 
2221
  if ( is_multisite() )
2222
  add_blog_option( $GLOBALS['blog_id'], 'mycred_version_db', '1.0' );
 
2223
  else
2224
  add_option( 'mycred_version_db', '1.0' );
2225
 
14
  public $log_table;
15
  public $cred_id;
16
 
17
+ public $is_multisite = false;
18
  public $use_master_template = false;
19
  public $use_central_logging = false;
20
 
22
  * Construct
23
  */
24
  function __construct( $type = 'mycred_default' ) {
25
+
26
  // Prep
27
+ $this->is_multisite = is_multisite();
28
  $this->use_master_template = mycred_override_settings();
29
  $this->use_central_logging = mycred_centralize_log();
30
 
32
 
33
  // Load Settings
34
  $option_id = 'mycred_pref_core';
35
+ if ( $type != 'mycred_default' )
36
  $option_id .= '_' . $type;
37
 
38
  $this->core = mycred_get_option( $option_id, $this->defaults() );
39
+
40
  if ( $this->core !== false ) {
41
  foreach ( (array) $this->core as $key => $value ) {
42
  $this->$key = $value;
48
 
49
  if ( defined( 'MYCRED_LOG_TABLE' ) )
50
  $this->log_table = MYCRED_LOG_TABLE;
51
+
52
  else {
53
+
54
  global $wpdb;
55
+
56
  if ( $this->is_multisite && $this->use_central_logging )
57
  $this->log_table = $wpdb->base_prefix . 'myCRED_log';
58
  else
59
  $this->log_table = $wpdb->prefix . 'myCRED_log';
60
+
61
  }
62
 
63
  do_action_ref_array( 'mycred_settings', array( &$this ) );
64
+
65
  }
66
 
67
  /**
70
  * @version 1.0
71
  */
72
  public function defaults() {
73
+
74
  return array(
75
  'cred_id' => 'mycred_default',
76
  'format' => array(
103
  ),
104
  'delete_user' => 0
105
  );
106
+
107
  }
108
 
109
  /**
112
  * @version 1.1
113
  */
114
  public function singular() {
115
+
116
  if ( ! isset( $this->core['name']['singular'] ) )
117
  return $this->name['singular'];
118
 
119
  return $this->core['name']['singular'];
120
+
121
  }
122
 
123
  /**
126
  * @version 1.1
127
  */
128
  public function plural() {
129
+
130
  if ( ! isset( $this->core['name']['plural'] ) )
131
  return $this->name['plural'];
132
 
133
  return $this->core['name']['plural'];
134
+
135
  }
136
 
137
  /**
141
  * @version 1.0
142
  */
143
  public function zero() {
144
+
145
  if ( ! isset( $this->format['decimals'] ) )
146
  $decimals = $this->core['format']['decimals'];
147
+
148
  else
149
  $decimals = $this->format['decimals'];
150
 
151
  return number_format( 0, $decimals );
152
+
153
  }
154
 
155
  /**
164
  * @version 1.2
165
  */
166
  public function number( $number = '' ) {
167
+
168
  if ( $number === '' ) return $number;
169
 
170
  if ( ! isset( $this->format['decimals'] ) )
171
  $decimals = (int) $this->core['format']['decimals'];
172
+
173
  else
174
  $decimals = (int) $this->format['decimals'];
175
 
177
  return number_format( (float) $number, $decimals, '.', '' );
178
 
179
  return (int) $number;
180
+
181
  }
182
 
183
  /**
193
  * @version 1.1
194
  */
195
  public function format_number( $number = '' ) {
196
+
197
  if ( $number === '' ) return $number;
198
 
199
+ $number = $this->number( $number );
200
  $decimals = $this->format['decimals'];
201
+ $sep_dec = $this->format['separators']['decimal'];
202
+ $sep_tho = $this->format['separators']['thousand'];
203
 
204
  // Format
205
  $creds = number_format( $number, (int) $decimals, $sep_dec, $sep_tho );
206
 
207
  return apply_filters( 'mycred_format_number', $creds, $number, $this->core );
208
+
209
  }
210
 
211
  /**
222
  * @version 1.0
223
  */
224
  public function format_creds( $creds = 0, $before = '', $after = '', $force_in = false ) {
225
+
226
  // Prefix
227
  $prefix = '';
228
  if ( ! empty( $this->before ) )
239
  // Optional extras to insert before and after
240
  if ( $force_in )
241
  $layout = $prefix . $before . $creds . $after . $suffix;
242
+
243
  else
244
  $layout = $before . $prefix . $creds . $suffix . $after;
245
 
246
  return apply_filters( 'mycred_format_creds', $layout, $creds, $this );
247
+
248
  }
249
 
250
  /**
259
  * @version 1.1
260
  */
261
  public function round_value( $amount = 0, $up_down = false, $precision = 0 ) {
262
+
263
  if ( $amount == 0 || ! $up_down ) return $amount;
264
 
265
  // Use round() for precision
266
  if ( $precision !== false ) {
267
+
268
  if ( $up_down == 'up' )
269
  $_amount = round( $amount, (int) $precision, PHP_ROUND_HALF_UP );
270
+
271
  elseif ( $up_down == 'down' )
272
  $_amount = round( $amount, (int) $precision, PHP_ROUND_HALF_DOWN );
273
+
274
  }
275
+
276
  // Use ceil() or floor() for everything else
277
  else {
278
+
279
  if ( $up_down == 'up' )
280
  $_amount = ceil( $amount );
281
+
282
  elseif ( $up_down == 'down' )
283
  $_amount = floor( $amount );
284
+
285
  }
286
 
287
  return apply_filters( 'mycred_round_value', $_amount, $amount, $up_down, $precision );
288
+
289
  }
290
 
291
  /**
299
  * @version 1.3
300
  */
301
  public function apply_exchange_rate( $amount = 0, $rate = 1, $round = true ) {
302
+
303
  if ( ! is_numeric( $rate ) || $rate == 1 ) return $amount;
304
 
305
  $exchange = $amount/(float) $rate;
306
  if ( $round ) $exchange = round( $exchange );
307
 
308
  return apply_filters( 'mycred_apply_exchange_rate', $exchange, $amount, $rate, $round );
309
+
310
  }
311
 
312
  /**
316
  * @version 1.0
317
  */
318
  public function parse_template_tags( $content = '', $log_entry ) {
319
+
320
  // Prep
321
  $reference = $log_entry->ref;
322
+ $ref_id = $log_entry->ref_id;
323
+ $data = $log_entry->data;
324
 
325
  // Unserialize if serialized
326
+ $data = maybe_unserialize( $data );
327
 
328
  // Run basic template tags first
329
+ $content = $this->template_tags_general( $content );
330
 
331
  // Start by allowing others to play
332
+ $content = apply_filters( 'mycred_parse_log_entry', $content, $log_entry );
333
+ $content = apply_filters( "mycred_parse_log_entry_{$reference}", $content, $log_entry );
334
 
335
  // Get the reference type
336
  if ( isset( $data['ref_type'] ) || isset( $data['post_type'] ) ) {
337
+
338
  if ( isset( $data['ref_type'] ) )
339
  $type = $data['ref_type'];
340
+
341
  elseif ( isset( $data['post_type'] ) )
342
  $type = $data['post_type'];
343
 
344
  if ( $type == 'post' )
345
  $content = $this->template_tags_post( $content, $ref_id, $data );
346
+
347
  elseif ( $type == 'user' )
348
  $content = $this->template_tags_user( $content, $ref_id, $data );
349
+
350
  elseif ( $type == 'comment' )
351
  $content = $this->template_tags_comment( $content, $ref_id, $data );
352
 
353
  $content = apply_filters( "mycred_parse_tags_{$type}", $content, $log_entry );
354
+
355
  }
356
 
357
  return $content;
358
+
359
  }
360
 
361
  /**
365
  * @version 1.2
366
  */
367
  public function template_tags_general( $content = '' ) {
368
+
369
  $content = apply_filters( 'mycred_parse_tags_general', $content );
370
 
371
  // Singular
393
  $content = str_replace( '%admin_email%', get_bloginfo( 'admin_email' ), $content );
394
  }
395
 
 
396
  return $content;
397
+
398
  }
399
 
400
  /**
404
  * @version 1.0.3
405
  */
406
  public function template_tags_amount( $content = '', $amount = 0 ) {
407
+
408
  $content = $this->template_tags_general( $content );
409
  if ( ! $this->has_tags( 'amount', 'cred|cred_f', $content ) ) return $content;
410
+
411
  $content = apply_filters( 'mycred_parse_tags_amount', $content, $amount, $this );
412
  $content = str_replace( '%cred_f%', $this->format_creds( $amount ), $content );
413
  $content = str_replace( '%cred%', $amount, $content );
414
+
415
  return $content;
416
+
417
  }
418
 
419
  /**
428
  * @version 1.0.4
429
  */
430
  public function template_tags_post( $content = '', $ref_id = NULL, $data = '' ) {
431
+
432
  if ( $ref_id === NULL ) return $content;
433
+
434
  $content = $this->template_tags_general( $content );
435
  if ( ! $this->has_tags( 'post', 'post_title|post_url|link_with_title|post_type', $content ) ) return $content;
436
 
439
 
440
  // Post does not exist
441
  if ( $post === NULL ) {
442
+
443
  if ( ! is_array( $data ) || ! array_key_exists( 'ID', $data ) ) return $content;
444
+
445
  $post = new StdClass();
446
  foreach ( $data as $key => $value ) {
447
  if ( $key == 'post_title' ) $value .= ' (' . __( 'Deleted', 'mycred' ) . ')';
448
  $post->$key = $value;
449
  }
450
+
451
  $url = get_permalink( $post->ID );
452
  if ( empty( $url ) ) $url = '#item-has-been-deleted';
453
+
454
  }
455
  else {
456
+
457
  $url = get_permalink( $post->ID );
458
+
459
  }
460
 
461
  // Let others play first
472
  unset( $post_type );
473
  }
474
 
 
 
 
475
  return $content;
476
+
477
  }
478
 
479
  /**
488
  * @version 1.3
489
  */
490
  public function template_tags_user( $content = '', $ref_id = NULL, $data = '' ) {
491
+
492
  if ( $ref_id === NULL ) return $content;
493
+
494
  $content = $this->template_tags_general( $content );
495
  if ( ! $this->has_tags( 'user', 'user_id|user_name|user_name_en|display_name|user_profile_url|user_profile_link|user_nicename|user_email|user_url|balance|balance_f', $content ) ) return $content;
496
 
497
  // Get User Object
498
  if ( $ref_id !== false )
499
  $user = get_userdata( $ref_id );
500
+
501
  // User object is passed on though $data
502
  elseif ( $ref_id === false && is_object( $data ) && isset( $data->ID ) )
503
  $user = $data;
504
+
505
  // User array is passed on though $data
506
  elseif ( $ref_id === false && is_array( $data ) || array_key_exists( 'ID', (array) $data ) ) {
507
+
508
  $user = new StdClass();
509
  foreach ( $data as $key => $value ) {
510
+
511
  if ( $key == 'login' )
512
  $user->user_login = $value;
513
+
514
  else
515
  $user->$key = $value;
516
+
517
  }
518
+
519
  }
520
+
521
  else return $content;
522
 
523
  // Let others play first
537
  global $wp_rewrite;
538
  $url = get_bloginfo( 'url' ) . '/' . $wp_rewrite->author_base . '/' . urlencode( $user->user_login ) . '/';
539
  }
540
+ $url = apply_filters( 'mycred_users_profile_url', $url, $user );
541
 
542
  $content = str_replace( '%display_name%', $user->display_name, $content );
543
  $content = str_replace( '%user_profile_url%', $url, $content );
552
  $content = str_replace( '%balance%', $balance, $content );
553
  $content = str_replace( '%balance_f%', $this->format_creds( $balance ), $content );
554
 
 
 
 
555
  return $content;
556
+
557
  }
558
 
559
  /**
568
  * @version 1.0.4
569
  */
570
  public function template_tags_comment( $content = '', $ref_id = NULL, $data = '' ) {
571
+
572
  if ( $ref_id === NULL ) return $content;
573
+
574
  $content = $this->template_tags_general( $content );
575
  if ( ! $this->has_tags( 'comment', 'comment_id|c_post_id|c_post_title|c_post_url|c_link_with_title', $content ) ) return $content;
576
 
579
 
580
  // Comment does not exist
581
  if ( $comment === NULL ) {
582
+
583
+ if ( ! is_array( $data ) || ! array_key_exists( 'comment_ID', $data ) ) return $content;
584
+
585
  $comment = new StdClass();
586
  foreach ( $data as $key => $value ) {
587
  $comment->$key = $value;
588
  }
589
+
590
  $url = get_permalink( $comment->comment_post_ID );
591
  if ( empty( $url ) ) $url = '#item-has-been-deleted';
592
 
593
  $title = get_the_title( $comment->comment_post_ID );
594
  if ( empty( $title ) ) $title = __( 'Deleted Item', 'mycred' );
595
+
596
  }
597
  else {
598
+
599
  $url = get_permalink( $comment->comment_post_ID );
600
  $title = get_the_title( $comment->comment_post_ID );
601
+
602
  }
603
 
604
  // Let others play first
612
  $content = str_replace( '%c_post_url%', $url, $content );
613
  $content = str_replace( '%c_link_with_title%', '<a href="' . $url . '">' . $title . '</a>', $content );
614
 
 
 
615
  return $content;
616
+
617
  }
618
 
619
  /**
630
  * @version 1.0
631
  */
632
  public function has_tags( $type = '', $tags = '', $content = '' ) {
633
+
634
  $tags = apply_filters( 'mycred_has_tags', $tags, $content );
635
  $tags = apply_filters( 'mycred_has_tags_' . $type, $tags, $content );
636
+
637
  if ( ! preg_match( '%(' . trim( $tags ) . ')%', $content, $matches ) ) return false;
638
+
639
  return true;
640
+
641
  }
642
 
643
  /**
648
  * @version 1.0
649
  */
650
  public function available_template_tags( $available = array(), $custom = '' ) {
651
+
652
  // Prep
653
  $links = $template_tags = array();
654
 
711
  $custom = ' ' . __( 'and', 'mycred' ) . ' ' . $custom;
712
 
713
  return __( 'Available Template Tags:', 'mycred' ) . ' ' . implode( ', ', $links ) . $custom . '.';
714
+
715
  }
716
 
717
  /**
726
  * @version 1.1
727
  */
728
  public function allowed_tags( $data = '', $allow = '' ) {
729
+
730
  if ( $allow === false )
731
  return strip_tags( $data );
732
+
733
  elseif ( ! empty( $allow ) )
734
  return strip_tags( $data, $allow );
735
 
736
  return strip_tags( $data, apply_filters( 'mycred_allowed_tags', '<a><br><em><strong><span>' ) );
737
+
738
  }
739
 
740
  /**
745
  * @version 1.0.1
746
  */
747
  public function allowed_html_tags() {
748
+
749
  return apply_filters( 'mycred_allowed_html_tags', array(
750
+ 'a' => array( 'href' => array(), 'title' => array(), 'target' => array() ),
751
  'abbr' => array( 'title' => array() ), 'acronym' => array( 'title' => array() ),
752
  'code' => array(), 'pre' => array(), 'em' => array(), 'strong' => array(),
753
+ 'div' => array( 'class' => array(), 'id' => array() ), 'span' => array( 'class' => array() ),
754
+ 'p' => array(), 'ul' => array(), 'ol' => array(), 'li' => array(),
755
+ 'h1' => array(), 'h2' => array(), 'h3' => array(), 'h4' => array(), 'h5' => array(), 'h6' => array(),
756
+ 'img' => array( 'src' => array(), 'class' => array(), 'alt' => array() ),
757
+ 'br' => array( 'class' => array() )
758
  ), $this );
759
+
760
  }
761
 
762
  /**
768
  * @version 1.1
769
  */
770
  public function edit_creds_cap() {
771
+
772
  if ( ! isset( $this->caps['creds'] ) || empty( $this->caps['creds'] ) )
773
  $this->caps['creds'] = 'delete_users';
774
 
775
  return apply_filters( 'mycred_edit_creds_cap', $this->caps['creds'] );
776
+
777
  }
778
 
779
  /**
787
  * @version 1.1
788
  */
789
  public function can_edit_creds( $user_id = '' ) {
790
+
791
  $result = false;
792
 
793
  if ( ! function_exists( 'get_current_user_id' ) )
805
  $result = true;
806
 
807
  return apply_filters( 'mycred_can_edit_creds', $result, $user_id );
808
+
809
  }
810
 
811
  /**
817
  * @version 1.1
818
  */
819
  public function edit_plugin_cap() {
820
+
821
  if ( ! isset( $this->caps['plugin'] ) || empty( $this->caps['plugin'] ) )
822
  $this->caps['plugin'] = 'manage_options';
823
 
824
  return apply_filters( 'mycred_edit_plugin_cap', $this->caps['plugin'] );
825
+
826
  }
827
 
828
  /**
836
  * @version 1.1
837
  */
838
  public function can_edit_plugin( $user_id = '' ) {
839
+
840
  $result = false;
841
 
842
  if ( ! function_exists( 'get_current_user_id' ) )
854
  $result = true;
855
 
856
  return apply_filters( 'mycred_can_edit_plugin', $result, $user_id );
857
+
858
  }
859
 
860
  /**
864
  * @version 1.1
865
  */
866
  public function in_exclude_list( $user_id = '' ) {
867
+
868
  $result = false;
869
 
870
  // Grab current user id
879
  $result = true;
880
 
881
  return apply_filters( 'mycred_is_excluded_list', $result, $user_id );
882
+
883
  }
884
 
885
  /**
889
  * @version 1.0
890
  */
891
  public function exclude_plugin_editors() {
892
+
893
  return (bool) $this->exclude['plugin_editors'];
894
+
895
  }
896
 
897
  /**
901
  * @version 1.0
902
  */
903
  public function exclude_creds_editors() {
904
+
905
  return (bool) $this->exclude['cred_editors'];
906
+
907
  }
908
 
909
  /**
937
  * @version 1.0
938
  */
939
  public function count_members() {
940
+
941
  global $wpdb;
942
+
943
  return (int) $wpdb->get_var( "SELECT COUNT(*) FROM {$wpdb->users};" );
944
+
945
  }
946
 
947
  /**
951
  * @version 1.0
952
  */
953
  public function get_cred_id() {
954
+
955
  if ( ! isset( $this->cred_id ) || $this->cred_id == '' )
956
  $this->cred_id = 'mycred_default';
957
 
958
  return $this->cred_id;
959
+
960
  }
961
 
962
  /**
965
  * @version 1.0
966
  */
967
  public function max() {
968
+
969
  if ( ! isset( $this->max ) )
970
  $this->max = 0;
971
 
972
  return $this->max;
973
+
974
  }
975
 
976
  /**
981
  * @param $type (string), optional cred type to check for
982
  * @returns zero if user id is not set or if no creds were found, else returns amount
983
  * @since 0.1
984
+ * @version 1.4.1
985
  */
986
  public function get_users_balance( $user_id = NULL, $type = NULL ) {
987
+
988
  if ( $user_id === NULL ) return $this->zero();
989
 
990
+ // Type
991
+ $point_types = mycred_get_types();
992
+ if ( $type === NULL || ! array_key_exists( $type, $point_types ) ) $type = $this->get_cred_id();
993
 
994
  $balance = mycred_get_user_meta( $user_id, $type, '', true );
995
  if ( $balance == '' ) $balance = $this->zero();
998
  $balance = apply_filters( 'mycred_get_users_cred', $balance, $this, $user_id, $type );
999
 
1000
  return $this->number( $balance );
1001
+
1002
  }
1003
  // Replaces
1004
  public function get_users_cred( $user_id = NULL, $type = NULL ) {
1005
+
1006
  return $this->get_users_balance( $user_id, $type );
1007
+
1008
  }
1009
 
1010
  /**
1015
  * @param $amount (int|float), amount to add/deduct from users balance. This value must be pre-formated.
1016
  * @returns the new balance.
1017
  * @since 0.1
1018
+ * @version 1.4.2
1019
  */
1020
+ public function update_users_balance( $user_id = NULL, $amount = NULL, $type = NULL ) {
1021
 
1022
  // Minimum Requirements: User id and amount can not be null
1023
  if ( $user_id === NULL || $amount === NULL ) return $amount;
1024
+
1025
+ // Type
1026
+ $point_types = mycred_get_types();
1027
+ if ( $type === NULL || ! array_key_exists( $type, $point_types ) ) $type = $this->get_cred_id();
1028
 
1029
  // Enforce max
1030
  if ( $this->max() > $this->zero() && $amount > $this->max() ) {
1031
+
1032
+ $_amount = $amount;
1033
+ $amount = $this->number( $this->max() );
1034
 
1035
  do_action( 'mycred_max_enforced', $user_id, $_amount, $this->max() );
1036
+
1037
  }
1038
 
1039
  // Adjust creds
1040
  $current_balance = $this->get_users_balance( $user_id, $type );
1041
+ $new_balance = $current_balance+$amount;
1042
 
1043
  // Update creds
1044
  mycred_update_user_meta( $user_id, $type, '', $new_balance );
1072
  * @param $type (string), optional point name, defaults to 'mycred_default'
1073
  * @returns boolean true on success or false on fail
1074
  * @since 0.1
1075
+ * @version 1.6.1
1076
  */
1077
  public function add_creds( $ref = '', $user_id = '', $amount = '', $entry = '', $ref_id = '', $data = '', $type = 'mycred_default' ) {
1078
 
1088
 
1089
  // Enforce max
1090
  if ( $this->max() > $this->zero() && $amount > $this->max() ) {
1091
+
1092
+ $_amount = $amount;
1093
+ $amount = $this->number( $this->max() );
1094
 
1095
  do_action( 'mycred_max_enforced', $user_id, $_amount, $this->max() );
1096
+
1097
  }
1098
 
1099
+ // Type
1100
+ $point_types = mycred_get_types();
1101
+ if ( ! array_key_exists( $type, $point_types ) ) $type = $this->get_cred_id();
1102
+
1103
  // Execution Override
1104
  // Allows us to stop an execution.
1105
+ // excepts a boolean reply
1106
  $execute = apply_filters( 'mycred_add', true, compact( 'ref', 'user_id', 'amount', 'entry', 'ref_id', 'data', 'type' ), $this );
1107
 
1108
  // Acceptable answers:
1109
+ // true (boolean)
1110
  if ( $execute === true ) {
1111
 
1112
  // Allow the adjustment of the values before we run them
1127
  $this->update_users_balance( (int) $run_this['user_id'], $run_this['amount'], $run_this['type'] );
1128
 
1129
  }
1130
+
1131
+ // false (boolean)
1132
  else { $run_this = false; }
1133
 
1134
  // For all features that need to run once we have done or not done something
1135
  return apply_filters( 'mycred_add_finished', $execute, $run_this, $this );
1136
+
1137
  }
1138
 
1139
  /**
1145
  * @param $cred (int|float), required number of creds to give or deduct from the given user.
1146
  * @param $ref_id (array), optional array of reference IDs allowing the use of content specific keywords in the log entry
1147
  * @param $data (object|array|string|int), optional extra data to save in the log. Note that arrays gets serialized!
1148
+ * @returns false if requirements are not set or db insert id if successful.
1149
+ * @since 0.1
1150
+ * @version 1.2
1151
  */
1152
  public function add_to_log( $ref = '', $user_id = '', $amount = '', $entry = '', $ref_id = '', $data = '', $type = 'mycred_default' ) {
1153
 
1163
  $entry = $this->allowed_tags( $entry );
1164
 
1165
  // Enforce max
1166
+ if ( $this->max() > $this->zero() && $amount > $this->max() )
1167
  $amount = $this->number( $this->max() );
 
1168
 
1169
  // Type
1170
+ $point_types = mycred_get_types();
1171
+ if ( ! array_key_exists( $type, $point_types ) ) $type = $this->get_cred_id();
1172
 
1173
  // Creds format
1174
  if ( $this->format['decimals'] > 0 )
1175
  $format = '%f';
1176
+
1177
  elseif ( $this->format['decimals'] == 0 )
1178
  $format = '%d';
1179
+
1180
  else
1181
  $format = '%s';
1182
 
1183
+ $time = apply_filters( 'mycred_log_time', date_i18n( 'U' ), $ref, $user_id, $amount, $entry, $ref_id, $data, $type );
1184
+ $insert = array(
1185
+ 'ref' => $ref,
1186
+ 'ref_id' => $ref_id,
1187
+ 'user_id' => (int) $user_id,
1188
+ 'creds' => $amount,
1189
+ 'ctype' => $type,
1190
+ 'time' => $time,
1191
+ 'entry' => $entry,
1192
+ 'data' => ( is_array( $data ) || is_object( $data ) ) ? serialize( $data ) : $data
1193
+ );
1194
 
1195
  // Insert into DB
1196
+ $wpdb->insert(
1197
  $this->log_table,
1198
+ $insert,
 
 
 
 
 
 
 
 
 
1199
  array( '%s', '%d', '%d', $format, '%s', '%d', '%s', ( is_numeric( $data ) ) ? '%d' : '%s' )
1200
  );
1201
 
 
 
 
1202
  delete_transient( 'mycred_log_entries' );
1203
+
1204
+ return apply_filters( 'mycred_new_log_entry_id', $wpdb->insert_id, $insert, $this );
1205
+
1206
+ }
1207
+
1208
+ /**
1209
+ * Update Log Entry
1210
+ * Updates an existing log entry.
1211
+ *
1212
+ * @param $entry_id (id), required log entry id
1213
+ * @param $data (array), required column data to update
1214
+ * @param $prep (array), required column prep
1215
+ * @returns false if requirements are not met or true
1216
+ * @since 1.6.7
1217
+ * @version 1.0
1218
+ */
1219
+ public function update_log_entry( $entry_id = NULL, $data = array(), $prep = array() ) {
1220
+
1221
+ if ( $entry_id === NULL || empty( $data ) || empty( $prep ) ) return false;
1222
+
1223
+ global $wpdb;
1224
+
1225
+ $wpdb->update(
1226
+ $this->log_table,
1227
+ $data,
1228
+ array( 'id' => $entry_id ),
1229
+ $prep,
1230
+ array( '%d' )
1231
+ );
1232
+
1233
  return true;
1234
 
1235
  }
1242
  * @param $user_id (int) optional user id
1243
  * @param $data (array|string) option data to search
1244
  * @since 0.1
1245
+ * @version 1.3.2
1246
  */
1247
  function has_entry( $reference = '', $ref_id = '', $user_id = '', $data = '', $type = '' ) {
1248
+
1249
  global $wpdb;
1250
 
1251
+ $wheres = array();
 
 
 
 
1252
 
1253
+ if ( ! empty( $reference ) )
1254
+ $wheres[] = $wpdb->prepare( "ref = %s", $reference );
 
 
1255
 
1256
+ if ( ! empty( $ref_id ) )
1257
+ $wheres[] = $wpdb->prepare( "ref_id = %d", $ref_id );
 
 
1258
 
1259
+ if ( ! empty( $user_id ) )
1260
+ $wheres[] = $wpdb->prepare( "user_id = %d", $user_id );
 
 
1261
 
1262
+ if ( ! empty( $data ) )
1263
+ $wheres[] = $wpdb->prepare( "data = %s", maybe_serialize( $data ) );
1264
 
1265
+ if ( empty( $type ) ) $type = $this->get_cred_id();
1266
+ $wheres[] = $wpdb->prepare( "ctype = %s", $type );
1267
+
1268
+ $where = implode( ' AND ', $wheres );
1269
 
1270
+ $has = true;
1271
+ if ( ! empty( $wheres ) ) {
1272
+
1273
+ $check = $wpdb->get_var( "SELECT id FROM {$this->log_table} WHERE {$where};" );
1274
+ if ( $check === NULL )
1275
+ $has = false;
1276
 
 
 
 
 
 
 
1277
  }
1278
 
1279
  return apply_filters( 'mycred_has_entry', $has, $reference, $ref_id, $user_id, $data, $type );
1280
+
1281
  }
1282
+
1283
  }
1284
  endif;
1285
 
1338
 
1339
  $available_types = mycred_get_option( 'mycred_types', array( 'mycred_default' => mycred_label() ) );
1340
  if ( count( $available_types ) > 1 ) {
1341
+
1342
  foreach ( $available_types as $type => $label ) {
1343
+
1344
  if ( $type == 'mycred_default' ) {
1345
  $_mycred = mycred( $type );
1346
  $label = $_mycred->plural();
1347
  }
1348
 
1349
  $types[ $type ] = $label;
1350
+
1351
  }
1352
+
1353
  }
1354
  else {
1355
+
1356
  $types = $available_types;
1357
+
1358
  }
1359
 
1360
  return apply_filters( 'mycred_types', $types );
1369
  if ( ! function_exists( 'mycred_types_select_from_dropdown' ) ) :
1370
  function mycred_types_select_from_dropdown( $name = '', $id = '', $selected = '', $return = false, $extra = '' )
1371
  {
1372
+ $types = mycred_get_types();
 
1373
  $output = '';
1374
+
1375
+ if ( count( $types ) == 1 )
1376
  $output .= '<input type="hidden"' . $extra . ' name="' . $name . '" id="' . $id . '" value="mycred_default" />';
1377
+
1378
  else {
1379
+
1380
+ $output .= '<select' . $extra . ' name="' . $name . '" id="' . $id . '">';
1381
+
1382
  foreach ( $types as $type => $label ) {
1383
+
1384
  if ( $type == 'mycred_default' ) {
1385
  $_mycred = mycred( $type );
1386
+ $label = $_mycred->plural();
1387
  }
1388
+
1389
  $output .= '<option value="' . $type . '"';
1390
  if ( $selected == $type ) $output .= ' selected="selected"';
1391
  $output .= '>' . $label . '</option>';
1392
+
1393
  }
1394
+
1395
+ $output .= '</select>';
1396
+
1397
  }
1398
 
1399
  if ( $return )
1500
  function mycred_get_option( $option_id, $default = array() )
1501
  {
1502
  if ( is_multisite() ) {
1503
+
1504
  if ( mycred_override_settings() )
1505
  $settings = get_blog_option( 1, $option_id, $default );
1506
+
1507
  else
1508
  $settings = get_blog_option( $GLOBALS['blog_id'], $option_id, $default );
1509
+
1510
  }
1511
  else {
1512
+
1513
  $settings = get_option( $option_id, $default );
1514
+
1515
  }
1516
 
1517
  return $settings;
1527
  function mycred_update_option( $option_id, $value = '' )
1528
  {
1529
  if ( is_multisite() ) {
1530
+
1531
  if ( mycred_override_settings() )
1532
  return update_blog_option( 1, $option_id, $value );
1533
+
1534
  else
1535
  return update_blog_option( $GLOBALS['blog_id'], $option_id, $value );
1536
+
1537
  }
1538
  else {
1539
+
1540
  return update_option( $option_id, $value );
1541
+
1542
  }
1543
  }
1544
  endif;
1552
  function mycred_delete_option( $option_id )
1553
  {
1554
  if ( is_multisite() ) {
1555
+
1556
  if ( mycred_override_settings() )
1557
  delete_blog_option( 1, $option_id );
1558
+
1559
  else
1560
  delete_blog_option( $GLOBALS['blog_id'], $option_id );
1561
+
1562
  }
1563
  else {
1564
+
1565
  delete_option( $option_id );
1566
+
1567
  }
1568
  }
1569
  endif;
1659
  function mycred_name( $singular = true, $type = 'mycred_default' )
1660
  {
1661
  $mycred = mycred( $type );
1662
+
1663
  if ( $singular )
1664
  return $mycred->singular();
1665
+
1666
  else
1667
  return $mycred->plural();
1668
  }
1680
  function mycred_strip_tags( $string = '', $overwride = '' )
1681
  {
1682
  $mycred = mycred();
1683
+
1684
  return $mycred->allowed_tags( $string, $overwrite );
1685
  }
1686
  endif;
1719
  {
1720
  $mycred = mycred( $type );
1721
  if ( $user_id === NULL ) $user_id = get_current_user_id();
1722
+
1723
  return $mycred->exclude_user( $user_id );
1724
  }
1725
  endif;
1742
  $type = 'mycred_default';
1743
 
1744
  $mycred = mycred( $type );
1745
+
1746
  return $mycred->get_users_cred( $user_id, $type );
1747
  }
1748
  endif;
1763
 
1764
  $mycred = mycred( $type );
1765
  $cred = $mycred->get_users_cred( $user_id, $type );
1766
+
1767
  return $mycred->format_creds( $cred );
1768
  }
1769
  endif;
1854
  function mycred_subtract( $ref = '', $user_id = '', $amount = '', $entry = '', $ref_id = '', $data = '', $type = 'mycred_default' )
1855
  {
1856
  if ( $ref == '' || $user_id == '' || $amount == '' ) return false;
1857
+ if ( $amount > 0 ) $amount = 0 - $amount;
1858
+
1859
  return mycred_add( $ref, $user_id, $amount, $entry, $ref_id, $data, $type );
1860
  }
1861
  endif;
1912
 
1913
  global $wpdb;
1914
 
1915
+ if ( $user_id !== NULL )
1916
  $count = $wpdb->get_var( $wpdb->prepare( "
1917
  SELECT COUNT(*)
1918
  FROM {$mycred->log_table}
1919
  WHERE ref = %s
1920
+ AND user_id = %d
1921
+ AND ctype = %s;", $reference, $user_id, $type ) );
1922
+
1923
+ else
1924
  $count = $wpdb->get_var( $wpdb->prepare( "SELECT COUNT(*) FROM {$mycred->log_table} WHERE ref = %s;", $reference ) );
 
1925
 
1926
  if ( $count === NULL )
1927
  $count = 0;
2003
  $query = $wpdb->get_results( "SELECT ref, COUNT(*) AS count FROM {$mycred->log_table} {$type} GROUP BY ref ORDER BY count {$order} {$limit};" );
2004
 
2005
  $results = array();
2006
+
2007
  if ( $wpdb->num_rows > 0 ) {
2008
+
2009
  foreach ( $query as $num => $reference ) {
2010
+
2011
  $occurrence = $reference->count;
2012
  if ( $reference->ref == 'transfer' )
2013
  $occurrence = $occurrence/2;
2014
 
2015
  $results[ $reference->ref ] = $occurrence;
2016
+
2017
  }
2018
+
2019
  arsort( $results );
2020
+
2021
  }
2022
 
2023
  return apply_filters( 'mycred_count_all_refs', $results );
2043
  * @param $type (string) point type to filer by.
2044
  * @returns total points (int|float) or error message (string)
2045
  * @since 1.1.1
2046
+ * @version 1.2.1
2047
  */
2048
  if ( ! function_exists( 'mycred_get_total_by_time' ) ) :
2049
  function mycred_get_total_by_time( $from = 'today', $to = 'now', $ref = NULL, $user_id = NULL, $type = 'mycred_default' )
2053
 
2054
  // Prep
2055
  $wheres = array();
2056
+ $prep = array();
2057
 
2058
  // Reference
2059
  if ( $ref !== NULL ) {
2060
+ if ( empty( $ref ) ) return 'ref empty';
2061
 
2062
  $wheres[] = 'ref = %s';
2063
+ $prep[] = $ref;
2064
  }
2065
 
2066
  // User
2067
  if ( $user_id !== NULL ) {
2068
+ if ( ! is_int( $user_id ) ) return 'incorrect user id format';
2069
 
2070
  $wheres[] = 'user_id = %d';
2071
+ $prep[] = $user_id;
2072
  }
2073
 
2074
  // Default from start of today
2075
  if ( $from == 'today' ) {
2076
  $today = date_i18n( 'Y/m/d 00:00:00' );
2077
+ $from = strtotime( $today );
2078
  }
2079
 
2080
  // From
2081
+ if ( ! is_numeric( $from ) ) return 'incorrect unix timestamp (from):' . ' ' . $from;
2082
  $wheres[] = 'time >= %d';
2083
+ $prep[] = $from;
2084
 
2085
  // Default to is now
2086
  if ( $to == 'now' )
2087
  $to = date_i18n( 'U' );
2088
 
2089
  // To
2090
+ if ( ! is_numeric( $to ) ) return 'incorrect unix timestamp (until):' . ' ' . $to;
2091
  $wheres[] = 'time <= %d';
2092
+ $prep[] = $to;
2093
 
2094
  // Type
2095
  if ( empty( $type ) )
2096
  $type = $mycred->get_cred_id();
2097
 
2098
  $wheres[] = 'ctype = %s';
2099
+ $prep[] = $type;
2100
 
2101
  global $wpdb;
2102
 
2134
  if ( $user_id == '' ) return 0;
2135
 
2136
  if ( $type == '' ) $type = 'mycred_default';
2137
+
2138
  $mycred = mycred( $type );
2139
+ $total = mycred_get_user_meta( $user_id, $type, '_total' );
2140
 
 
2141
  if ( $total == '' ) {
2142
  $total = mycred_query_users_total( $user_id, $type );
2143
  mycred_update_user_meta( $user_id, $type, '_total', $total );
2180
  SELECT meta_value
2181
  FROM {$wpdb->usermeta}
2182
  WHERE user_id = %d
2183
+ AND meta_key = %s;", $user_id, $type ) );
2184
 
2185
  if ( $total === NULL )
2186
  $total = 0;
2187
+
2188
  }
2189
 
2190
  return apply_filters( 'mycred_query_users_total', $total, $user_id, $type, $mycred );
2210
  if ( $type == '' )
2211
  $type = $mycred->get_cred_id();
2212
 
2213
+ $amount = $mycred->number( $request['amount'] );
2214
  $user_id = absint( $request['user_id'] );
2215
 
2216
  $users_total = mycred_get_user_meta( $user_id, $type, '_total', true );
2234
  if ( ! function_exists( 'mycred_apply_defaults' ) ) :
2235
  function mycred_apply_defaults( &$pref, $set )
2236
  {
2237
+ $set = (array) $set;
2238
  $return = array();
2239
+
2240
  foreach ( $pref as $key => $value ) {
2241
+
2242
  if ( array_key_exists( $key, $set ) ) {
2243
+
2244
  if ( is_array( $value ) && ! empty( $value ) )
2245
  $return[ $key ] = mycred_apply_defaults( $value, $set[ $key ] );
2246
+
2247
  else
2248
  $return[ $key ] = $set[ $key ];
2249
+
2250
  }
2251
+
2252
  else $return[ $key ] = $value;
2253
+
2254
  }
2255
+
2256
  return $return;
2257
+
2258
  }
2259
  endif;
2260
 
2272
  'uri' => 'api-dev',
2273
  'debug' => 0
2274
  ) );
2275
+
2276
  return mycred_apply_defaults( $defaults, get_option( 'mycred_pref_remote', array() ) );
2277
  }
2278
  endif;
2300
  if ( ! empty( $network['block'] ) && $blog_id > 1 ) {
2301
 
2302
  // Clean up list to make sure no white spaces are used
2303
+ $list = explode( ',', $network['block'] );
2304
  $clean = array();
2305
  foreach ( $list as $blog_id ) {
2306
  $clean[] = absint( $blog_id );
2360
  * Installs the log for a site.
2361
  * Requires Multisite
2362
  * @since 1.3
2363
+ * @version 1.2.1
2364
  */
2365
  if ( ! function_exists( 'mycred_install_log' ) ) :
2366
  function mycred_install_log( $decimals = 0, $table = NULL )
2372
 
2373
  if ( $table === NULL ) {
2374
  $mycred = mycred();
2375
+ $table = $mycred->log_table;
2376
  }
2377
 
2378
+ $cred_format = 'bigint(22)';
2379
  if ( $decimals > 0 ) {
2380
+
2381
  if ( $decimals > 4 )
2382
  $cred_format = "decimal(32,$decimals)";
2383
+
2384
  else
2385
  $cred_format = "decimal(22,$decimals)";
2386
+
 
 
2387
  }
2388
 
2389
  $wpdb->hide_errors();
2390
 
2391
  $collate = '';
2392
  if ( $wpdb->has_cap( 'collation' ) ) {
2393
+
2394
  if ( ! empty( $wpdb->charset ) )
2395
  $collate .= "DEFAULT CHARACTER SET {$wpdb->charset}";
2396
+
2397
  if ( ! empty( $wpdb->collate ) )
2398
  $collate .= " COLLATE {$wpdb->collate}";
2399
+
2400
  }
2401
 
2402
  // Log structure
2403
  $sql = "
2404
+ id INT(11) NOT NULL AUTO_INCREMENT,
2405
+ ref VARCHAR(256) NOT NULL,
2406
+ ref_id INT(11) DEFAULT NULL,
2407
+ user_id INT(11) DEFAULT NULL,
2408
+ creds $cred_format DEFAULT NULL,
2409
+ ctype VARCHAR(64) DEFAULT 'mycred_default',
2410
+ time BIGINT(20) DEFAULT NULL,
2411
+ entry LONGTEXT DEFAULT NULL,
2412
+ data LONGTEXT DEFAULT NULL,
2413
+ PRIMARY KEY (id),
2414
  UNIQUE KEY id (id)";
2415
 
2416
  // Insert table
2417
  require_once( ABSPATH . 'wp-admin/includes/upgrade.php' );
2418
  dbDelta( "CREATE TABLE IF NOT EXISTS {$table} ( " . $sql . " ) $collate;" );
2419
+
2420
  if ( is_multisite() )
2421
  add_blog_option( $GLOBALS['blog_id'], 'mycred_version_db', '1.0' );
2422
+
2423
  else
2424
  add_option( 'mycred_version_db', '1.0' );
2425
 
includes/mycred-shortcodes.php CHANGED
@@ -1185,7 +1185,7 @@ endif;
1185
  * Allows to show total points of a specific point type or add up
1186
  * points from the log based on reference, reference id or user id.
1187
  * @since 1.6.6
1188
- * @version 1.0
1189
  */
1190
  if ( ! function_exists( 'mycred_render_shortcode_total_points' ) ) :
1191
  function mycred_render_shortcode_total_points( $atts ) {
@@ -1217,16 +1217,8 @@ if ( ! function_exists( 'mycred_render_shortcode_total_points' ) ) :
1217
  // Simple
1218
  if ( $ref == '' && $ref_id == '' && $user_id == '' ) {
1219
 
1220
- // Check if cached value exists
1221
- $total = mycred_get_option( 'mycred-cache-total-' . $point_type, false );
1222
- if ( $total === false ) {
1223
-
1224
- // Add up all balances
1225
- $total = $wpdb->get_var( $wpdb->prepare( "SELECT SUM( meta_value ) FROM {$wpdb->usermeta} WHERE meta_key = %s", $type ) );
1226
- if ( $total !== NULL )
1227
- mycred_update_option( 'mycred-cache-total-' . $point_type, $total );
1228
-
1229
- }
1230
 
1231
  }
1232
 
@@ -1284,4 +1276,127 @@ if ( ! function_exists( 'mycred_render_shortcode_total_points' ) ) :
1284
  }
1285
  endif;
1286
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1287
  ?>
1185
  * Allows to show total points of a specific point type or add up
1186
  * points from the log based on reference, reference id or user id.
1187
  * @since 1.6.6
1188
+ * @version 1.0.1
1189
  */
1190
  if ( ! function_exists( 'mycred_render_shortcode_total_points' ) ) :
1191
  function mycred_render_shortcode_total_points( $atts ) {
1217
  // Simple
1218
  if ( $ref == '' && $ref_id == '' && $user_id == '' ) {
1219
 
1220
+ // Add up all balances
1221
+ $total = $wpdb->get_var( $wpdb->prepare( "SELECT SUM( meta_value ) FROM {$wpdb->usermeta} WHERE meta_key = %s", $type ) );
 
 
 
 
 
 
 
 
1222
 
1223
  }
1224
 
1276
  }
1277
  endif;
1278
 
1279
+ /**
1280
+ * Best User
1281
+ * Allows database queries in the history table to determen the
1282
+ * "best user" based on references, time and point types.
1283
+ * @since 1.6.7
1284
+ * @version 1.0
1285
+ */
1286
+ if ( ! function_exists( 'mycred_render_shortcode_best_user' ) ) :
1287
+ function mycred_render_shortcode_best_user( $attr, $content = '' ) {
1288
+
1289
+ extract( shortcode_atts( array(
1290
+ 'ref' => '',
1291
+ 'from' => '',
1292
+ 'until' => '',
1293
+ 'types' => 'mycred_default',
1294
+ 'nothing' => 'No user found',
1295
+ 'order' => 'DESC',
1296
+ 'avatar' => 50
1297
+ ), $attr ) );
1298
+
1299
+ if ( $ref != '' )
1300
+ $references = explode( ',', $ref );
1301
+ else
1302
+ $references = '';
1303
+
1304
+ $point_types = explode( ',', $types );
1305
+ if ( empty( $point_types ) ) $point_types = array( 'mycred_default' );
1306
+
1307
+ $now = current_time( 'timestamp' );
1308
+ if ( $from == 'now' )
1309
+ $from = $now;
1310
+
1311
+ elseif ( $from != '' )
1312
+ $from = strtotime( $from );
1313
+
1314
+ if ( $from == 0 )
1315
+ $from = '';
1316
+
1317
+ if ( $until == 'now' )
1318
+ $until = $now;
1319
+
1320
+ elseif ( $until != '' )
1321
+ $until = strtotime( $until );
1322
+
1323
+ if ( $until == 0 )
1324
+ $until = '';
1325
+
1326
+ global $wpdb;
1327
+
1328
+ if ( defined( 'MYCRED_LOG_TABLE' ) )
1329
+ $table = MYCRED_LOG_TABLE;
1330
+
1331
+ else {
1332
+
1333
+ if ( is_multisite() && mycred_centralize_log() )
1334
+ $table = $wpdb->base_prefix . 'myCRED_log';
1335
+ else
1336
+ $table = $wpdb->prefix . 'myCRED_log';
1337
+
1338
+ }
1339
+
1340
+ $wheres = $preps = array();
1341
+
1342
+ if ( ! empty( $references ) ) {
1343
+ $wheres[] = "ref IN (" . str_repeat( '%s', count( $references ) ) . ")";
1344
+ foreach ( $references as $reference )
1345
+ $preps[] = $reference;
1346
+ }
1347
+
1348
+ $wheres[] = "ctype IN (" . str_repeat( '%s', count( $point_types ) ) . ")";
1349
+ foreach ( $point_types as $point_type )
1350
+ $preps[] = $point_type;
1351
+
1352
+ if ( $from != '' || $until != '' ) {
1353
+
1354
+ if ( $from != '' && $until == '' )
1355
+ $wheres[] = $wpdb->prepare( "time >= %d", $from );
1356
+
1357
+ elseif ( $from == '' && $until != '' )
1358
+ $wheres[] = $wpdb->prepare( "time <= %d", $until );
1359
+
1360
+ elseif ( $from != '' && $until != '' )
1361
+ $wheres[] = $wpdb->prepare( "time BETWEEN %d AND %d", $from, $until );
1362
+
1363
+ }
1364
+
1365
+ $where = 'WHERE ' . implode( ' AND ', $wheres );
1366
+ $where = $wpdb->prepare( $where, $preps );
1367
+
1368
+ if ( ! in_array( $order, array( 'DESC', 'ASC' ) ) )
1369
+ $order = 'DESC';
1370
+
1371
+ $result = $wpdb->get_row( "SELECT user_id, SUM( creds ) AS total, COUNT(*) AS count FROM {$table} {$where} ORDER BY SUM( creds ) {$order} LIMIT 0,1;" );
1372
+ if ( ! isset( $result->user_id ) )
1373
+ return '<p class="mycred-best-user-no-results text-center">' . $nothing . '</p>';
1374
+
1375
+ $user = get_userdata( $result->user_id );
1376
+ if ( ! isset( $user->display_name ) )
1377
+ return '<p class="mycred-best-user-no-results text-center">' . $nothing . '</p>';
1378
+
1379
+ if ( empty( $content ) )
1380
+ $content = '<div class="mycred-best-user text-center">%avatar%<h4>%display_name%</h4></div>';
1381
+
1382
+ $content = apply_filters( 'mycred_best_user_content', $content, $attr, $table );
1383
+
1384
+ $content = str_replace( '%display_name%', $user->display_name, $content );
1385
+ $content = str_replace( '%first_name%', $user->first_name, $content );
1386
+ $content = str_replace( '%last_name%', $user->last_name, $content );
1387
+ $content = str_replace( '%user_email%', $user->user_email, $content );
1388
+ $content = str_replace( '%user_login%', $user->user_login, $content );
1389
+
1390
+ $content = str_replace( '%avatar%', get_avatar( $result->user_id, $avatar ), $content );
1391
+ $content = str_replace( '%total%', $user->total, $content );
1392
+ $content = str_replace( '%total_abs%', abs( $user->total ), $content );
1393
+ $content = str_replace( '%count%', $user->count, $content );
1394
+
1395
+ $content = str_replace( '%debug%', print_r( $sql, true ), $content );
1396
+
1397
+ return apply_filters( 'mycred_render_best_user', $content, $result, $atts, $table );
1398
+
1399
+ }
1400
+ endif;
1401
+
1402
  ?>
includes/mycred-update.php CHANGED
@@ -78,7 +78,7 @@ endif;
78
  * myCRED 1.6 Update
79
  * Updated existing myCRED installations to 1.6
80
  * @since 1.6
81
- * @version 1.0
82
  */
83
  add_action( 'mycred_reactivation', 'mycred_update_to_onesix', 10 );
84
  if ( ! function_exists( 'mycred_update_to_onesix' ) ) :
@@ -135,6 +135,27 @@ if ( ! function_exists( 'mycred_update_to_onesix' ) ) :
135
 
136
  }
137
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
138
  // Update complted
139
  update_option( 'mycred_version', myCRED_VERSION );
140
 
78
  * myCRED 1.6 Update
79
  * Updated existing myCRED installations to 1.6
80
  * @since 1.6
81
+ * @version 1.1
82
  */
83
  add_action( 'mycred_reactivation', 'mycred_update_to_onesix', 10 );
84
  if ( ! function_exists( 'mycred_update_to_onesix' ) ) :
135
 
136
  }
137
 
138
+ // 1.6.7
139
+ elseif ( version_compare( $version, '1.6.7', '<' ) ) {
140
+
141
+ $addons = mycred_get_option( 'mycred_pref_addons' );
142
+ $addons = maybe_unserialize( $addons );
143
+
144
+ // Remove built-in add-ons Paths.
145
+ if ( ! empty( $addons['installed'] ) ) {
146
+
147
+ foreach ( $addons['installed'] as $id => $info ) {
148
+
149
+ $addons['installed'][ $id ]['path'] = str_replace( myCRED_ADDONS_DIR, '', $info['path'] );
150
+
151
+ }
152
+
153
+ mycred_update_option( 'mycred_pref_addons', $addons );
154
+
155
+ }
156
+
157
+ }
158
+
159
  // Update complted
160
  update_option( 'mycred_version', myCRED_VERSION );
161
 
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: Mon Jun 08 2015 23:42:18 GMT+0200 (CEST)\n"
7
- "Last-Translator: unimatrix0 <gabriel.s@merovingi.com>\n"
8
  "Language-Team: myCRED & All the awesome users helping out <support@mycred."
9
  "me>\n"
10
  "Language: English\n"
@@ -25,6575 +25,6642 @@ msgstr ""
25
  "X-Poedit-SearchPath-1: .\n"
26
  "X-Loco-Target-Locale: en_US"
27
 
28
- #: ../mycred.php:461
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
29
  msgid "Balance"
30
  msgstr ""
31
 
32
- #: ../mycred.php:486
33
  msgid "%label% History"
34
  msgstr ""
35
 
36
- #: ../mycred.php:580
37
  #, php-format
38
  msgid "About %s"
39
  msgstr ""
40
 
41
- #: ../mycred.php:589
42
  msgid "Awesome People"
43
  msgstr ""
44
 
45
- #: ../mycred.php:677 ../mycred.php:702 ../mycred.php:720 ../addons/badges/myCRED-
46
- #: addon-badges.php:605 ../addons/gateway/event-booking/mycred-eventsmanager.php:
47
- #: 478 ../addons/ranks/myCRED-addon-ranks.php:423 ../addons/ranks/myCRED-addon-
48
- #: ranks.php:1522 ../addons/sell-content/myCRED-addon-sell-content.php:372 ..
49
- #: addons/transfer/myCRED-addon-transfer.php:146 ../includes/mycred-shortcodes.
50
- #: php:636
51
  msgid "Processing..."
52
  msgstr ""
53
 
54
- #: ../mycred.php:678
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:679
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:680
67
  msgid "Warning! All user balances will be set to zero! This can not be undone!"
68
  msgstr ""
69
 
70
- #: ../mycred.php:681
71
  msgid "Done!"
72
  msgstr ""
73
 
74
- #: ../mycred.php:682 ../mycred.php:701 ../mycred.php:719
75
  msgid "Close"
76
  msgstr ""
77
 
78
- #: ../mycred.php:683
 
79
  msgid "Export users %plural%"
80
  msgstr ""
81
 
82
- #: ../mycred.php:684
83
  msgid ""
84
  "In order to adjust the number of decimal places you want to use we must "
85
  "update your log. It is highly recommended that you backup your current log "
86
  "before continuing!"
87
  msgstr ""
88
 
89
- #: ../mycred.php:700
90
  msgid "Edit Users Balance"
91
  msgstr ""
92
 
93
- #: ../mycred.php:718
94
  msgid "Edit Log Entry"
95
  msgstr ""
96
 
97
- #: ../mycred.php:722
98
  msgid "Are you sure you want to delete this log entry? This can not be undone!"
99
  msgstr ""
100
 
101
- #: ../mycred.php:723
102
  msgid "Log entry updated"
103
  msgstr ""
104
 
105
- #: ../mycred.php:780 ../mycred.php:802 ../addons/email-notices/myCRED-addon-email-
106
- #: notices.php:811 ../addons/gateway/event-booking/mycred-eventsmanager-pro.php:
107
- #: 499 ../addons/gateway/event-booking/mycred-eventsmanager.php:537
108
  msgid "Setup"
109
  msgstr ""
110
 
111
- #: ../mycred.php:782 ../addons/gateway/carts/mycred-marketpress.php:371 ..
112
- #: addons/stats/abstracts/mycred-abstract-stat-widget.php:108 ../includes/mycred-
113
- #: network.php:151 ../modules/mycred-module-settings.php:21 ../modules/mycred-
114
- #: module-settings.php:22 ../modules/mycred-module-settings.php:23
115
  msgid "Settings"
116
  msgstr ""
117
 
118
- #: ../mycred.php:825
119
  msgid ""
120
  "Make sure to backup your database and files before updating, in case "
121
  "anything goes wrong!"
122
  msgstr ""
123
 
124
- #: ../abstracts/mycred-abstract-hook.php:83
125
  msgid "This Hook has no settings"
126
  msgstr ""
127
 
128
- #: ../abstracts/mycred-abstract-hook.php:226 ../abstracts/mycred-abstract-hook.
129
- #: php:293 ../includes/mycred-functions.php:2641 ../modules/mycred-module-hooks.
130
- #: php:1809
131
  msgid "No limit"
132
  msgstr ""
133
 
134
- #: ../abstracts/mycred-abstract-hook.php:227
135
  msgid "/ Day"
136
  msgstr ""
137
 
138
- #: ../abstracts/mycred-abstract-hook.php:228
139
  msgid "/ Week"
140
  msgstr ""
141
 
142
- #: ../abstracts/mycred-abstract-hook.php:229
143
  msgid "/ Month"
144
  msgstr ""
145
 
146
- #: ../abstracts/mycred-abstract-hook.php:230
147
  msgid "in Total"
148
  msgstr ""
149
 
150
- #: ../abstracts/mycred-abstract-hook.php:294
151
  msgid "Once every 24 hours"
152
  msgstr ""
153
 
154
- #: ../abstracts/mycred-abstract-hook.php:295
155
  msgid "Once every 7 days"
156
  msgstr ""
157
 
158
- #: ../abstracts/mycred-abstract-hook.php:296
159
  msgid "Once per day (reset at midnight)"
160
  msgstr ""
161
 
162
- #: ../abstracts/mycred-abstract-hook.php:303 ../addons/banking/abstracts/mycred-
163
- #: abstract-service.php:498 ../addons/buy-creds/myCRED-addon-buy-creds.php:695 ..
164
- #: addons/buy-creds/myCRED-addon-buy-creds.php:718 ../addons/buy-
165
- #: creds/abstracts/mycred-abstract-payment-gateway.php:1023 ../addons/buy-
166
- #: creds/abstracts/mycred-abstract-payment-gateway.php:1046 ../addons/buy-
167
- #: creds/gateways/zombaio.php:356 ../addons/email-notices/myCRED-addon-email-
168
- #: notices.php:198 ../addons/email-notices/myCRED-addon-email-notices.php:992
169
  msgid "Select"
170
  msgstr ""
171
 
172
- #: ../abstracts/mycred-abstract-module.php:56
173
- msgid "myCRED_Module() Error. A Module ID is required!"
174
- msgstr ""
175
-
176
- #: ../abstracts/mycred-abstract-module.php:350 ../abstracts/mycred-abstract-
177
- #: module.php:358
178
  msgid "Surprise"
179
  msgstr ""
180
 
181
- #: ../abstracts/mycred-abstract-module.php:445 ../includes/mycred-network.php:83
182
  msgid "click to close"
183
  msgstr ""
184
 
185
- #: ../abstracts/mycred-abstract-module.php:446 ../includes/mycred-network.php:84
186
  msgid "click to open"
187
  msgstr ""
188
 
189
- #: ../abstracts/mycred-abstract-module.php:479 ../addons/buy-creds/myCRED-addon-
190
  #: buy-creds.php:927
191
  msgid "Settings Updated"
192
  msgstr ""
193
 
194
- #: ../addons/badges/myCRED-addon-badges.php:48 ../addons/badges/myCRED-addon-
195
- #: badges.php:49 ../addons/badges/myCRED-addon-badges.php:50 ..
196
- #: addons/badges/myCRED-addon-badges.php:144 ../addons/badges/myCRED-addon-
197
- #: badges.php:145 ../addons/badges/myCRED-addon-badges.php:383 ..
198
- #: addons/badges/myCRED-addon-badges.php:389 ../addons/badges/myCRED-addon-
199
- #: badges.php:395
200
- msgid "Badges"
201
  msgstr ""
202
 
203
- #: ../addons/badges/myCRED-addon-badges.php:169
204
- #, php-format
205
- msgid "Badges (%d)"
206
  msgstr ""
207
 
208
- #: ../addons/badges/myCRED-addon-badges.php:260
209
- #, php-format
210
- msgid "%d Users earned this badge."
211
  msgstr ""
212
 
213
- #: ../addons/badges/myCRED-addon-badges.php:264
214
- msgid "No users has yet earned this badge."
215
  msgstr ""
216
 
217
- #: ../addons/badges/myCRED-addon-badges.php:287
218
- msgid "No connections where removed."
219
  msgstr ""
220
 
221
- #: ../addons/badges/myCRED-addon-badges.php:289
222
- #, php-format
223
- msgid "%s connections where removed."
224
  msgstr ""
225
 
226
- #: ../addons/badges/myCRED-addon-badges.php:384
227
- msgid "Badge"
228
  msgstr ""
229
 
230
- #: ../addons/badges/myCRED-addon-badges.php:385 ../addons/buy-creds/myCRED-addon-
231
- #: buy-creds.php:275 ../addons/buy-creds/myCRED-addon-buy-creds.php:276 ..
232
- #: addons/email-notices/myCRED-addon-email-notices.php:167 ..
233
- #: addons/ranks/myCRED-addon-ranks.php:448
234
- msgid "Add New"
235
  msgstr ""
236
 
237
- #: ../addons/badges/myCRED-addon-badges.php:386
238
- msgid "Add New Badge"
 
239
  msgstr ""
240
 
241
- #: ../addons/badges/myCRED-addon-badges.php:387
242
- msgid "Edit Badge"
 
 
243
  msgstr ""
244
 
245
- #: ../addons/badges/myCRED-addon-badges.php:388
246
- msgid "New Badge"
 
247
  msgstr ""
248
 
249
- #: ../addons/badges/myCRED-addon-badges.php:390
250
- msgid "View Badge"
 
251
  msgstr ""
252
 
253
- #: ../addons/badges/myCRED-addon-badges.php:391
254
- msgid "Search Badge"
 
 
 
 
 
255
  msgstr ""
256
 
257
- #: ../addons/badges/myCRED-addon-badges.php:392
258
- msgid "No badges found"
 
259
  msgstr ""
260
 
261
- #: ../addons/badges/myCRED-addon-badges.php:393
262
- msgid "No badges found in Trash"
263
  msgstr ""
264
 
265
- #: ../addons/badges/myCRED-addon-badges.php:439 ../addons/badges/myCRED-addon-
266
- #: badges.php:541
267
- msgid "Badge Name"
268
  msgstr ""
269
 
270
- #: ../addons/badges/myCRED-addon-badges.php:440
271
- msgid "Badge Images"
272
  msgstr ""
273
 
274
- #: ../addons/badges/myCRED-addon-badges.php:441
275
- msgid "Requirements"
276
  msgstr ""
277
 
278
- #: ../addons/badges/myCRED-addon-badges.php:442 ../addons/ranks/myCRED-addon-
279
- #: ranks.php:1042 ../modules/mycred-module-settings.php:636
280
- msgid "Users"
281
  msgstr ""
282
 
283
- #: ../addons/badges/myCRED-addon-badges.php:481
284
- msgid "A user must have gained or lost:"
285
  msgstr ""
286
 
287
- #: ../addons/badges/myCRED-addon-badges.php:517 ../addons/badges/myCRED-addon-
288
- #: badges.php:520 ../addons/badges/myCRED-addon-badges.php:524 ..
289
- #: addons/badges/myCRED-addon-badges.php:525 ../addons/badges/myCRED-addon-
290
- #: badges.php:526
291
- msgid "Badge Updated."
292
  msgstr ""
293
 
294
- #: ../addons/badges/myCRED-addon-badges.php:522
295
- msgid "Badge Enabled"
 
 
296
  msgstr ""
297
 
298
- #: ../addons/badges/myCRED-addon-badges.php:523
299
- msgid "Badge Saved"
300
  msgstr ""
301
 
302
- #: ../addons/badges/myCRED-addon-badges.php:555
303
- msgid "Badge Setup"
304
  msgstr ""
305
 
306
- #: ../addons/badges/myCRED-addon-badges.php:582
307
- msgid "Assign Badge"
308
  msgstr ""
309
 
310
- #: ../addons/badges/myCRED-addon-badges.php:583
311
- msgid "Remove Connections"
312
  msgstr ""
313
 
314
- #: ../addons/badges/myCRED-addon-badges.php:638
315
- msgid "Time(s)"
 
 
 
 
 
 
316
  msgstr ""
317
 
318
- #: ../addons/badges/myCRED-addon-badges.php:639
319
- msgid "In total"
320
  msgstr ""
321
 
322
- #: ../addons/badges/myCRED-addon-badges.php:671 ../addons/badges/myCRED-addon-
323
- #: badges.php:771 ../addons/badges/myCRED-addon-badges.php:831 ..
324
- #: addons/badges/myCRED-addon-badges.php:846
325
- msgid "Badge Image"
326
  msgstr ""
327
 
328
- #: ../addons/badges/myCRED-addon-badges.php:672 ../addons/badges/myCRED-addon-
329
- #: badges.php:672
330
- msgid "Set badge image"
331
  msgstr ""
332
 
333
- #: ../addons/badges/myCRED-addon-badges.php:682
334
- msgid "Default Image"
 
335
  msgstr ""
336
 
337
- #: ../addons/badges/myCRED-addon-badges.php:683 ../addons/badges/myCRED-addon-
338
- #: badges.php:741 ../addons/badges/myCRED-addon-badges.php:772 ..
339
- #: addons/badges/myCRED-addon-badges.php:831
340
- msgid "image url"
 
 
341
  msgstr ""
342
 
343
- #: ../addons/badges/myCRED-addon-badges.php:684 ../addons/badges/myCRED-addon-
344
- #: badges.php:742 ../addons/badges/myCRED-addon-badges.php:773 ..
345
- #: addons/badges/myCRED-addon-badges.php:831
346
- msgid "Add Image"
347
  msgstr ""
348
 
349
- #: ../addons/badges/myCRED-addon-badges.php:685
350
- msgid "Optional image to show when a user has not yet earned this badge."
351
  msgstr ""
352
 
353
- #: ../addons/badges/myCRED-addon-badges.php:704 ../addons/badges/myCRED-addon-
354
- #: badges.php:756
355
  #, php-format
356
- msgid "Level %d"
357
  msgstr ""
358
 
359
- #: ../addons/badges/myCRED-addon-badges.php:709 ../addons/badges/myCRED-addon-
360
- #: badges.php:761 ../addons/badges/myCRED-addon-badges.php:831
361
- msgid "for"
362
  msgstr ""
363
 
364
- #: ../addons/badges/myCRED-addon-badges.php:740
365
- msgid "Main Image"
366
  msgstr ""
367
 
368
- #: ../addons/badges/myCRED-addon-badges.php:774 ../addons/badges/myCRED-addon-
369
- #: badges.php:831
370
- msgid "Leave empty if you do not want to assign a custom image for this level."
371
  msgstr ""
372
 
373
- #: ../addons/badges/myCRED-addon-badges.php:774 ../addons/badges/myCRED-addon-
374
- #: badges.php:831
375
- msgid "Remove this level"
376
  msgstr ""
377
 
378
- #: ../addons/badges/myCRED-addon-badges.php:788
379
- msgid "Add Level"
380
  msgstr ""
381
 
382
- #: ../addons/badges/myCRED-addon-badges.php:831 ../addons/badges/myCRED-addon-
383
- #: badges.php:1154
384
- msgid "Level"
385
  msgstr ""
386
 
387
- #: ../addons/badges/myCRED-addon-badges.php:848
388
- msgid "Use as Badge"
389
  msgstr ""
390
 
391
- #: ../addons/badges/myCRED-addon-badges.php:970 ../addons/badges/myCRED-addon-
392
- #: badges.php:1001 ../addons/gateway/carts/mycred-woocommerce.php:152 ..
393
- #: modules/mycred-module-buddypress.php:417
394
- msgid "Do not show"
395
  msgstr ""
396
 
397
- #: ../addons/badges/myCRED-addon-badges.php:971 ../modules/mycred-module-
398
- #: buddypress.php:418
399
- msgid "Include in Profile Header"
 
400
  msgstr ""
401
 
402
- #: ../addons/badges/myCRED-addon-badges.php:972 ../addons/ranks/myCRED-addon-
403
- #: ranks.php:1407 ../modules/mycred-module-buddypress.php:419
404
- msgid "Include under the \"Profile\" tab"
405
  msgstr ""
406
 
407
- #: ../addons/badges/myCRED-addon-badges.php:973 ../modules/mycred-module-
408
- #: buddypress.php:420
409
- msgid "Include under the \"Profile\" tab and Profile Header"
410
  msgstr ""
411
 
412
- #: ../addons/badges/myCRED-addon-badges.php:986 ../addons/badges/myCRED-addon-
413
- #: badges.php:1017
414
- msgid "Show all badges, including badges users have not yet earned."
415
  msgstr ""
416
 
417
- #: ../addons/badges/myCRED-addon-badges.php:1002 ../addons/ranks/myCRED-addon-
418
- #: ranks.php:1452
419
- msgid "Include in Profile"
420
  msgstr ""
421
 
422
- #: ../addons/badges/myCRED-addon-badges.php:1003
423
- msgid "Include in Forum Replies"
424
  msgstr ""
425
 
426
- #: ../addons/badges/myCRED-addon-badges.php:1004
427
- msgid "Include in Profile and Forum Replies"
 
 
428
  msgstr ""
429
 
430
- #: ../addons/badges/myCRED-addon-badges.php:1111
431
- msgid "User Badges"
432
  msgstr ""
433
 
434
- #: ../addons/badges/myCRED-addon-badges.php:1116
435
- msgid ""
436
- "Here you can view the badges this user has earned and if needed, manually "
437
- "give or take away a badge from a user."
438
  msgstr ""
439
 
440
- #: ../addons/badges/myCRED-addon-badges.php:1125
441
- msgid "Not earned"
 
 
 
442
  msgstr ""
443
 
444
- #: ../addons/badges/myCRED-addon-badges.php:1131 ../addons/badges/myCRED-addon-
445
- #: badges.php:1168
446
- msgid "Earned"
 
447
  msgstr ""
448
 
449
- #: ../addons/badges/myCRED-addon-badges.php:1143
450
- msgid "No image"
451
  msgstr ""
452
 
453
- #: ../addons/badges/myCRED-addon-badges.php:1150
454
- msgid "Select a level"
455
  msgstr ""
456
 
457
- #: ../addons/badges/myCRED-addon-badges.php:1165 ../addons/email-notices/myCRED-
458
- #: addon-email-notices.php:810
459
- msgid "Status"
460
  msgstr ""
461
 
462
- #: ../addons/badges/myCRED-addon-badges.php:1182 ../addons/email-notices/myCRED-
463
- #: addon-email-notices.php:1296
464
- msgid "Save Changes"
 
465
  msgstr ""
466
 
467
- #: ../addons/badges/includes/mycred-badge-functions.php:68
468
- #, php-format
469
- msgid "Level %s"
 
470
  msgstr ""
471
 
472
- #: ../addons/badges/includes/mycred-badge-functions.php:71
473
- #, php-format
474
- msgctxt "\"Points\" for \"reference\" \"x time(s)\" - Level"
475
- msgid "%s for %s %s - %s"
476
  msgstr ""
477
 
478
- #: ../addons/badges/includes/mycred-badge-functions.php:71 ..
479
- #: addons/coupons/myCRED-addon-coupons.php:202 ../addons/coupons/myCRED-addon-
480
- #: coupons.php:469
481
- #, php-format
482
- msgid "1 time"
483
- msgid_plural "%d times"
484
- msgstr[0] ""
485
- msgstr[1] ""
486
-
487
- #: ../addons/badges/includes/mycred-badge-functions.php:73
488
- #, php-format
489
- msgctxt "\"x points\" for \"reference\" in total"
490
- msgid "%s for %s in total"
491
  msgstr ""
492
 
493
- #: ../addons/banking/myCRED-addon-banking.php:44 ../addons/banking/myCRED-addon-
494
- #: banking.php:45 ../addons/banking/myCRED-addon-banking.php:46
495
- msgid "Banking"
496
  msgstr ""
497
 
498
- #: ../addons/banking/myCRED-addon-banking.php:158
499
- msgid "Central Banking"
500
  msgstr ""
501
 
502
- #: ../addons/banking/myCRED-addon-banking.php:159
503
- #, php-format
504
  msgid ""
505
- "Instead of creating %_plural% out of thin-air, all payouts are made from a "
506
- "nominated \"Central Bank\" account. Any %_plural% a user spends or loses are "
507
- "deposited back into this account."
508
  msgstr ""
509
 
510
- #: ../addons/banking/myCRED-addon-banking.php:165 ..
511
- #: addons/banking/services/mycred-bank-service-interest.php:512
512
- msgid "Compound Interest"
513
  msgstr ""
514
 
515
- #: ../addons/banking/myCRED-addon-banking.php:166
516
  #, php-format
517
- msgid "Apply a positive or negative interest rate on your users %_plural% balances."
 
 
518
  msgstr ""
519
 
520
- #: ../addons/banking/myCRED-addon-banking.php:172
521
- msgid "Recurring Payouts"
 
522
  msgstr ""
523
 
524
- #: ../addons/banking/myCRED-addon-banking.php:173
525
- msgid "Setup mass %_singular% payouts for your users."
526
  msgstr ""
527
 
528
- #: ../addons/banking/myCRED-addon-banking.php:219 ../addons/buy-creds/myCRED-
529
- #: addon-buy-creds.php:916 ../addons/buy-creds/myCRED-addon-buy-creds.php:1022 ..
530
- #: addons/stats/myCRED-addon-stats.php:182 ../includes/mycred-admin.php:587 ..
531
- #: includes/mycred-network.php:125 ../modules/mycred-module-addons.php:303 ..
532
- #: modules/mycred-module-hooks.php:193 ../modules/mycred-module-log.php:358 ..
533
- #: modules/mycred-module-log.php:647 ../modules/mycred-module-settings.php:484
534
- msgid "Access Denied"
535
  msgstr ""
536
 
537
- #: ../addons/banking/myCRED-addon-banking.php:225
538
- #, php-format
539
- msgid "%s Banking"
540
  msgstr ""
541
 
542
- #: ../addons/banking/myCRED-addon-banking.php:228
543
- msgid "Your banking setup for %plural%."
 
 
 
544
  msgstr ""
545
 
546
- #: ../addons/banking/myCRED-addon-banking.php:231
547
- msgid "WP-Cron deactivation detected!"
 
 
548
  msgstr ""
549
 
550
- #: ../addons/banking/myCRED-addon-banking.php:232
551
- msgid "Warning! This add-on requires WP - Cron to work."
552
  msgstr ""
553
 
554
- #: ../addons/banking/myCRED-addon-banking.php:248 ../addons/buy-creds/myCRED-
555
- #: addon-buy-creds.php:954 ../modules/mycred-module-hooks.php:222
556
- msgid "Enable"
 
 
557
  msgstr ""
558
 
559
- #: ../addons/banking/myCRED-addon-banking.php:261 ../modules/mycred-module-hooks.
560
- #: php:240
561
- msgid "Update Changes"
562
  msgstr ""
563
 
564
- #: ../addons/banking/abstracts/mycred-abstract-service.php:79
565
- msgid "This Service has no settings"
 
 
566
  msgstr ""
567
 
568
- #: ../addons/banking/abstracts/mycred-abstract-service.php:233
569
- msgid "Hourly"
 
 
 
570
  msgstr ""
571
 
572
- #: ../addons/banking/abstracts/mycred-abstract-service.php:237
573
- msgid "Daily"
 
 
574
  msgstr ""
575
 
576
- #: ../addons/banking/abstracts/mycred-abstract-service.php:241
577
- msgid "Weekly"
 
 
578
  msgstr ""
579
 
580
- #: ../addons/banking/abstracts/mycred-abstract-service.php:245
581
- msgid "Monthly"
 
582
  msgstr ""
583
 
584
- #: ../addons/banking/abstracts/mycred-abstract-service.php:249
585
- msgid "Quarterly"
586
  msgstr ""
587
 
588
- #: ../addons/banking/abstracts/mycred-abstract-service.php:253
589
- msgid "Semiannually"
590
  msgstr ""
591
 
592
- #: ../addons/banking/abstracts/mycred-abstract-service.php:257
593
- msgid "Annually"
594
  msgstr ""
595
 
596
- #: ../addons/banking/services/mycred-bank-service-central.php:105
597
- msgid "Bank User"
598
  msgstr ""
599
 
600
- #: ../addons/banking/services/mycred-bank-service-central.php:109
601
- msgid "The user ID of the central bank account. This user can not be excluded!"
602
  msgstr ""
603
 
604
- #: ../addons/banking/services/mycred-bank-service-central.php:112
605
- msgid "Ignore Manual Adjustments"
 
606
  msgstr ""
607
 
608
- #: ../addons/banking/services/mycred-bank-service-interest.php:24
609
- msgid "%plural% interest rate payment"
610
  msgstr ""
611
 
612
- #: ../addons/banking/services/mycred-bank-service-interest.php:379
613
- msgid "Compounding Interest"
614
  msgstr ""
615
 
616
- #: ../addons/banking/services/mycred-bank-service-interest.php:379
617
- #, php-format
618
- msgid "%d Users are left to process."
619
  msgstr ""
620
 
621
- #: ../addons/banking/services/mycred-bank-service-interest.php:388
622
- msgid "Payout History"
623
  msgstr ""
624
 
625
- #: ../addons/banking/services/mycred-bank-service-interest.php:392 ..
626
- #: addons/banking/services/mycred-bank-service-interest.php:409 ..
627
- #: addons/banking/services/mycred-bank-service-payouts.php:250
628
- msgid "Run Count"
629
  msgstr ""
630
 
631
- #: ../addons/banking/services/mycred-bank-service-interest.php:397
632
- msgid "Last Payout"
633
  msgstr ""
634
 
635
- #: ../addons/banking/services/mycred-bank-service-interest.php:397 ..
636
- #: addons/banking/services/mycred-bank-service-interest.php:414
637
- msgid "Activated"
638
  msgstr ""
639
 
640
- #: ../addons/banking/services/mycred-bank-service-interest.php:401
641
- msgid "Total Payed Interest"
642
  msgstr ""
643
 
644
- #: ../addons/banking/services/mycred-bank-service-interest.php:405
645
- msgid "Compound History"
646
  msgstr ""
647
 
648
- #: ../addons/banking/services/mycred-bank-service-interest.php:414
649
- msgid "Last Interest Compound"
 
650
  msgstr ""
651
 
652
- #: ../addons/banking/services/mycred-bank-service-interest.php:418
653
- msgid "Total Compounded Interest"
654
  msgstr ""
655
 
656
- #: ../addons/banking/services/mycred-bank-service-interest.php:422 ..
657
- #: addons/banking/services/mycred-bank-service-interest.php:549
658
- msgid "Interest Rate"
659
  msgstr ""
660
 
661
- #: ../addons/banking/services/mycred-bank-service-interest.php:425
662
- msgid "Default Rate"
663
  msgstr ""
664
 
665
- #: ../addons/banking/services/mycred-bank-service-interest.php:427 ..
666
- #: addons/banking/services/mycred-bank-service-payouts.php:268
667
- msgid "Can not be zero."
 
668
  msgstr ""
669
 
670
- #: ../addons/banking/services/mycred-bank-service-interest.php:430 ..
671
- #: addons/gateway/carts/mycred-wpecommerce.php:367
672
- msgid "Payout"
673
  msgstr ""
674
 
675
- #: ../addons/banking/services/mycred-bank-service-interest.php:435 ..
676
- #: addons/banking/services/mycred-bank-service-payouts.php:283 ../addons/buy-
677
- #: creds/myCRED-addon-buy-creds.php:672 ../addons/buy-creds/myCRED-addon-buy-
678
- #: creds.php:735 ../addons/coupons/myCRED-addon-coupons.php:502 ..
679
- #: addons/gateway/carts/mycred-marketpress.php:395 ..
680
- #: addons/gateway/carts/mycred-marketpress.php:428 ..
681
- #: addons/gateway/carts/mycred-woocommerce.php:104 ..
682
- #: addons/gateway/carts/mycred-woocommerce.php:176 ..
683
- #: addons/gateway/carts/mycred-wpecommerce.php:371 ../modules/mycred-module-
684
- #: hooks.php:1004 ../modules/mycred-module-hooks.php:2025 ../modules/mycred-
685
- #: module-hooks.php:2395 ../plugins/mycred-hook-badgeOS.php:124 ../plugins/mycred-
686
- #: hook-badgeOS.php:126 ../plugins/mycred-hook-badgeOS.php:135 ../plugins/mycred-
687
- #: hook-events-manager-light.php:196 ../plugins/mycred-hook-events-manager-light.
688
- #: php:209 ../plugins/mycred-hook-gd-star-rating.php:109 ../plugins/mycred-hook-
689
- #: gd-star-rating.php:122 ../plugins/mycred-hook-woocommerce.php:321 ..
690
- #: plugins/mycred-hook-wp-favorite-posts.php:217 ../plugins/mycred-hook-wp-
691
- #: favorite-posts.php:235 ../plugins/mycred-hook-wp-favorite-posts.php:249 ..
692
- #: plugins/mycred-hook-wp-favorite-posts.php:262 ../plugins/mycred-hook-wp-polls.
693
- #: php:136
694
- msgid "Log Template"
695
  msgstr ""
696
 
697
- #: ../addons/banking/services/mycred-bank-service-interest.php:442 ..
698
- #: addons/banking/services/mycred-bank-service-payouts.php:290 ..
699
- #: addons/coupons/myCRED-addon-coupons.php:438
700
- msgid "Minimum Balance"
701
  msgstr ""
702
 
703
- #: ../addons/banking/services/mycred-bank-service-interest.php:446 ..
704
- #: addons/banking/services/mycred-bank-service-payouts.php:294
705
- msgid "Optional minimum balance requirement."
706
  msgstr ""
707
 
708
- #: ../addons/banking/services/mycred-bank-service-interest.php:449 ..
709
- #: addons/banking/services/mycred-bank-service-payouts.php:297
710
- msgid "Exclude"
711
  msgstr ""
712
 
713
- #: ../addons/banking/services/mycred-bank-service-interest.php:452 ..
714
- #: addons/banking/services/mycred-bank-service-payouts.php:300
715
- msgid "Comma separated list of user IDs"
 
716
  msgstr ""
717
 
718
- #: ../addons/banking/services/mycred-bank-service-interest.php:456 ..
719
- #: addons/banking/services/mycred-bank-service-payouts.php:304
720
- msgid "Roles"
721
  msgstr ""
722
 
723
- #: ../addons/banking/services/mycred-bank-service-interest.php:522
724
- msgid "This user is excluded from receiving interest on this balance."
725
  msgstr ""
726
 
727
- #: ../addons/banking/services/mycred-bank-service-interest.php:525
728
- msgid "Remove from Excluded List"
729
- msgstr ""
730
-
731
- #: ../addons/banking/services/mycred-bank-service-interest.php:537
732
- msgid "This user role is excluded from receiving interest on this balance."
733
- msgstr ""
734
-
735
- #: ../addons/banking/services/mycred-bank-service-interest.php:552 ../addons/buy-
736
- #: creds/myCRED-addon-buy-creds.php:836 ../addons/sell-content/myCRED-addon-sell-
737
- #: content.php:114
738
- msgid "Leave empty to use the default value."
739
  msgstr ""
740
 
741
- #: ../addons/banking/services/mycred-bank-service-interest.php:558
742
- msgid "Save Interest Rate"
743
  msgstr ""
744
 
745
- #: ../addons/banking/services/mycred-bank-service-interest.php:559
746
- msgid "Exclude from receiving interest"
747
  msgstr ""
748
 
749
- #: ../addons/banking/services/mycred-bank-service-interest.php:676
750
- msgid "Compound interest rate saved."
751
  msgstr ""
752
 
753
- #: ../addons/banking/services/mycred-bank-service-interest.php:678
754
- msgid "User excluded from receiving interest."
 
755
  msgstr ""
756
 
757
- #: ../addons/banking/services/mycred-bank-service-interest.php:680
758
- msgid "User included in receiving interest."
 
 
759
  msgstr ""
760
 
761
- #: ../addons/banking/services/mycred-bank-service-payouts.php:21
762
- msgid "Daily %_plural%"
 
763
  msgstr ""
764
 
765
- #: ../addons/banking/services/mycred-bank-service-payouts.php:246 ..
766
- #: includes/mycred-admin.php:426 ../modules/mycred-module-log.php:276 ..
767
- #: modules/mycred-module-log.php:277
768
- msgid "History"
769
  msgstr ""
770
 
771
- #: ../addons/banking/services/mycred-bank-service-payouts.php:255
772
- msgid "Last Run"
 
773
  msgstr ""
774
 
775
- #: ../addons/banking/services/mycred-bank-service-payouts.php:259
776
- msgid "Total Payouts"
 
777
  msgstr ""
778
 
779
- #: ../addons/banking/services/mycred-bank-service-payouts.php:263
780
- msgid "Pay Users"
 
781
  msgstr ""
782
 
783
- #: ../addons/banking/services/mycred-bank-service-payouts.php:266 ../addons/buy-
784
- #: creds/myCRED-addon-buy-creds.php:343 ../addons/buy-creds/myCRED-addon-buy-
785
- #: creds.php:1633 ../addons/buy-creds/myCRED-addon-buy-creds.php:1713 ..
786
- #: addons/buy-creds/abstracts/mycred-abstract-payment-gateway.php:593 ..
787
- #: includes/mycred-admin.php:752 ../includes/mycred-admin.php:804 ..
788
- #: includes/mycred-shortcodes.php:972 ../includes/mycred-shortcodes.php:1115 ..
789
- #: plugins/mycred-hook-affiliatewp.php:256
790
- msgid "Amount"
791
  msgstr ""
792
 
793
- #: ../addons/banking/services/mycred-bank-service-payouts.php:271 ..
794
- #: modules/mycred-module-hooks.php:2410
795
- msgid "Interval"
796
  msgstr ""
797
 
798
- #: ../addons/banking/services/mycred-bank-service-payouts.php:276
799
- msgid "Cycles"
 
 
 
800
  msgstr ""
801
 
802
- #: ../addons/banking/services/mycred-bank-service-payouts.php:278
803
- msgid "Set to -1 for unlimited"
 
804
  msgstr ""
805
 
806
- #: ../addons/banking/services/mycred-bank-service-payouts.php:281
807
- msgid "Important"
 
 
 
808
  msgstr ""
809
 
810
- #: ../addons/banking/services/mycred-bank-service-payouts.php:281
811
- msgid ""
812
- "You can always stop payouts by deactivating this service. Just remember that "
813
- "if you deactivate while there are cycles left, this service will continue on "
814
- "when it gets re-activated. Set cycles to zero to reset."
815
  msgstr ""
816
 
817
- #: ../addons/buy-creds/myCRED-addon-buy-creds.php:56 ../addons/buy-creds/myCRED-
818
- #: addon-buy-creds.php:57 ../addons/buy-creds/myCRED-addon-buy-creds.php:58
819
- msgid "Payment Gateways"
820
  msgstr ""
821
 
822
- #: ../addons/buy-creds/myCRED-addon-buy-creds.php:269
823
- msgctxt "Post Type General Name"
824
- msgid "Pending Payments"
825
  msgstr ""
826
 
827
- #: ../addons/buy-creds/myCRED-addon-buy-creds.php:270
828
- msgctxt "Post Type Singular Name"
829
- msgid "Pending Payment"
830
  msgstr ""
831
 
832
- #: ../addons/buy-creds/myCRED-addon-buy-creds.php:271 ../addons/buy-creds/myCRED-
833
- #: addon-buy-creds.php:273 ../addons/buy-creds/myCRED-addon-buy-creds.php:284
834
- msgid "Pending Payments"
 
835
  msgstr ""
836
 
837
- #: ../addons/buy-creds/myCRED-addon-buy-creds.php:277
838
- msgid "Edit Pending Payment"
 
839
  msgstr ""
840
 
841
- #: ../addons/buy-creds/myCRED-addon-buy-creds.php:280 ../addons/buy-creds/myCRED-
842
- #: addon-buy-creds.php:1752
843
- msgid "No pending payments found"
 
844
  msgstr ""
845
 
846
- #: ../addons/buy-creds/myCRED-addon-buy-creds.php:281
847
- msgid "Not found in Trash"
 
848
  msgstr ""
849
 
850
- #: ../addons/buy-creds/myCRED-addon-buy-creds.php:340 ../addons/buy-creds/myCRED-
851
- #: addon-buy-creds.php:1078 ../addons/buy-creds/myCRED-addon-buy-creds.php:1711
852
- msgid "Transaction ID"
853
  msgstr ""
854
 
855
- #: ../addons/buy-creds/myCRED-addon-buy-creds.php:342 ../addons/buy-creds/myCRED-
856
- #: addon-buy-creds.php:1074
857
- msgid "Buyer"
858
  msgstr ""
859
 
860
- #: ../addons/buy-creds/myCRED-addon-buy-creds.php:344 ../addons/buy-creds/myCRED-
861
- #: addon-buy-creds.php:1714 ../addons/buy-creds/abstracts/mycred-abstract-payment-
862
- #: gateway.php:594
863
- msgid "Cost"
 
864
  msgstr ""
865
 
866
- #: ../addons/buy-creds/myCRED-addon-buy-creds.php:345 ../addons/buy-creds/myCRED-
867
- #: addon-buy-creds.php:1073 ../addons/buy-creds/myCRED-addon-buy-creds.php:1712 ..
868
- #: includes/mycred-overview.php:166 ../includes/mycred-overview.php:173
869
- msgid "Gateway"
870
  msgstr ""
871
 
872
- #: ../addons/buy-creds/myCRED-addon-buy-creds.php:346
873
- msgid "Type"
 
874
  msgstr ""
875
 
876
- #: ../addons/buy-creds/myCRED-addon-buy-creds.php:439
877
- msgid "Pay Out"
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
878
  msgstr ""
879
 
880
- #: ../addons/buy-creds/myCRED-addon-buy-creds.php:473
881
- msgid "buyCRED Purchase Log"
 
882
  msgstr ""
883
 
884
- #: ../addons/buy-creds/myCRED-addon-buy-creds.php:474 ../addons/buy-creds/myCRED-
885
- #: addon-buy-creds.php:725 ../addons/buy-creds/myCRED-addon-buy-creds.php:922
886
- msgid "Purchase Log"
 
887
  msgstr ""
888
 
889
- #: ../addons/buy-creds/myCRED-addon-buy-creds.php:578 ../addons/gateway/event-
890
- #: booking/mycred-eventespresso3.php:26 ../addons/gateway/event-booking/mycred-
891
- #: eventsmanager-pro.php:516 ../addons/gateway/event-booking/mycred-eventsmanager.
892
- #: php:540 ../addons/sell-content/myCRED-addon-sell-content.php:424
893
- msgid "Payments"
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
894
  msgstr ""
895
 
896
- #: ../addons/buy-creds/myCRED-addon-buy-creds.php:612
897
- msgid "Please login to purchase %_plural%"
 
 
 
 
898
  msgstr ""
899
 
900
- #: ../addons/buy-creds/myCRED-addon-buy-creds.php:627
901
  #, php-format
902
- msgid "Gift purchase from %display_name%."
903
  msgstr ""
904
 
905
- #: ../addons/buy-creds/myCRED-addon-buy-creds.php:642 ../addons/ranks/myCRED-
906
- #: addon-ranks.php:1084
907
- msgid "Minimum %plural%"
908
  msgstr ""
909
 
910
- #: ../addons/buy-creds/myCRED-addon-buy-creds.php:646
911
- msgid "Minimum amount of %plural% a user must purchase. Will default to 1."
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
912
  msgstr ""
913
 
914
- #: ../addons/buy-creds/myCRED-addon-buy-creds.php:651 ../addons/transfer/myCRED-
915
- #: addon-transfer.php:211 ../includes/mycred-widgets.php:598 ../modules/mycred-
916
- #: module-settings.php:656
917
- msgid "Point Types"
918
  msgstr ""
919
 
920
- #: ../addons/buy-creds/myCRED-addon-buy-creds.php:654
921
- msgid "Select the point types that users can buy. You must select at least one!"
 
922
  msgstr ""
923
 
924
- #: ../addons/buy-creds/myCRED-addon-buy-creds.php:665
925
- msgid "Login Template"
 
926
  msgstr ""
927
 
928
- #: ../addons/buy-creds/myCRED-addon-buy-creds.php:669
929
- msgid "Content to show when a user is not logged in."
 
 
 
930
  msgstr ""
931
 
932
- #: ../addons/buy-creds/myCRED-addon-buy-creds.php:679
933
- msgid "Thank You Page"
934
  msgstr ""
935
 
936
- #: ../addons/buy-creds/myCRED-addon-buy-creds.php:682 ../addons/buy-creds/myCRED-
937
- #: addon-buy-creds.php:705
938
- msgid "Custom URL"
939
  msgstr ""
940
 
941
- #: ../addons/buy-creds/myCRED-addon-buy-creds.php:687 ../addons/buy-creds/myCRED-
942
- #: addon-buy-creds.php:710
943
- msgid "Page"
944
  msgstr ""
945
 
946
- #: ../addons/buy-creds/myCRED-addon-buy-creds.php:702
947
- msgid "Cancellation Page"
948
  msgstr ""
949
 
950
- #: ../addons/buy-creds/myCRED-addon-buy-creds.php:727
951
- msgid "Show seperate log for %_plural% purchases."
 
 
952
  msgstr ""
953
 
954
- #: ../addons/buy-creds/myCRED-addon-buy-creds.php:729
955
- msgid "Gifting"
956
  msgstr ""
957
 
958
- #: ../addons/buy-creds/myCRED-addon-buy-creds.php:731
959
- #, php-format
960
- msgid "Allow users to buy %_plural% for other users."
 
961
  msgstr ""
962
 
963
- #: ../addons/buy-creds/myCRED-addon-buy-creds.php:732
964
- #, php-format
965
- msgid "Allow users to buy %_plural% for content authors."
966
  msgstr ""
967
 
968
- #: ../addons/buy-creds/myCRED-addon-buy-creds.php:740 ../modules/mycred-module-
969
- #: hooks.php:3110
970
- msgid "Available Shortcodes"
971
  msgstr ""
972
 
973
- #: ../addons/buy-creds/myCRED-addon-buy-creds.php:830
974
  #, php-format
975
- msgid "%s Exchange Rate"
 
 
976
  msgstr ""
977
 
978
- #: ../addons/buy-creds/myCRED-addon-buy-creds.php:844
979
- msgid "Save Exchange Rates"
980
  msgstr ""
981
 
982
- #: ../addons/buy-creds/myCRED-addon-buy-creds.php:900
983
- msgid "Exchange rate override saved"
984
  msgstr ""
985
 
986
- #: ../addons/buy-creds/myCRED-addon-buy-creds.php:903
987
- msgid "Payment completed"
 
 
988
  msgstr ""
989
 
990
- #: ../addons/buy-creds/myCRED-addon-buy-creds.php:922
991
  #, php-format
992
- msgid "%s Payment Gateways"
993
  msgstr ""
994
 
995
- #: ../addons/buy-creds/myCRED-addon-buy-creds.php:922 ../addons/buy-creds/myCRED-
996
- #: addon-buy-creds.php:1085
997
- msgid "buyCRED Settings"
998
  msgstr ""
999
 
1000
- #: ../addons/buy-creds/myCRED-addon-buy-creds.php:947
1001
- msgid "Test Mode"
 
 
 
 
1002
  msgstr ""
1003
 
1004
- #: ../addons/buy-creds/myCRED-addon-buy-creds.php:949
1005
- msgid "Enabled"
1006
  msgstr ""
1007
 
1008
- #: ../addons/buy-creds/myCRED-addon-buy-creds.php:952
1009
- msgid "Disabled"
1010
  msgstr ""
1011
 
1012
- #: ../addons/buy-creds/myCRED-addon-buy-creds.php:962
1013
- msgid "Sandbox Mode"
1014
  msgstr ""
1015
 
1016
- #: ../addons/buy-creds/myCRED-addon-buy-creds.php:965
1017
- msgid "Enable for test purchases."
 
1018
  msgstr ""
1019
 
1020
- #: ../addons/buy-creds/myCRED-addon-buy-creds.php:986 ../addons/gateway/event-
1021
- #: booking/mycred-eventespresso3.php:502 ../modules/mycred-module-settings.php:739
1022
- msgid "Update Settings"
1023
  msgstr ""
1024
 
1025
- #: ../addons/buy-creds/myCRED-addon-buy-creds.php:987
1026
- msgid "More Gateways"
1027
  msgstr ""
1028
 
1029
- #: ../addons/buy-creds/myCRED-addon-buy-creds.php:1075 ../includes/mycred-log.php:
1030
- #: 756
1031
- msgid "Date"
1032
  msgstr ""
1033
 
1034
- #: ../addons/buy-creds/myCRED-addon-buy-creds.php:1077
1035
- msgid "Payed"
 
1036
  msgstr ""
1037
 
1038
- #: ../addons/buy-creds/myCRED-addon-buy-creds.php:1085
1039
- msgid "<strong>buy</strong>CRED Purchase Log"
1040
  msgstr ""
1041
 
1042
- #: ../addons/buy-creds/myCRED-addon-buy-creds.php:1085 ../addons/gateway/event-
1043
- #: booking/mycred-eventespresso3.php:367
1044
- msgid "Gateway Settings"
1045
  msgstr ""
1046
 
1047
- #: ../addons/buy-creds/myCRED-addon-buy-creds.php:1270 ../addons/sell-
1048
- #: content/myCRED-addon-sell-content.php:1210
1049
- msgid "No purchases found"
 
1050
  msgstr ""
1051
 
1052
- #: ../addons/buy-creds/myCRED-addon-buy-creds.php:1347 ../addons/buy-creds/myCRED-
1053
- #: addon-buy-creds.php:1464
1054
- msgid "This Add-on needs to setup before you can use this shortcode."
 
 
1055
  msgstr ""
1056
 
1057
- #: ../addons/buy-creds/myCRED-addon-buy-creds.php:1366 ../addons/buy-creds/myCRED-
1058
- #: addon-buy-creds.php:1483
1059
- msgid "No gateways installed."
1060
  msgstr ""
1061
 
1062
- #: ../addons/buy-creds/myCRED-addon-buy-creds.php:1367 ../addons/buy-creds/myCRED-
1063
- #: addon-buy-creds.php:1484
1064
- msgid "Gateway does not exist."
1065
  msgstr ""
1066
 
1067
- #: ../addons/buy-creds/myCRED-addon-buy-creds.php:1415
1068
- msgid "Yourself"
1069
  msgstr ""
1070
 
1071
- #: ../addons/buy-creds/myCRED-addon-buy-creds.php:1485
1072
- msgid "No active gateways found."
1073
  msgstr ""
1074
 
1075
- #: ../addons/buy-creds/myCRED-addon-buy-creds.php:1486
1076
- msgid "The selected gateway is not active."
1077
  msgstr ""
1078
 
1079
- #: ../addons/buy-creds/myCRED-addon-buy-creds.php:1533
1080
- #, php-format
1081
- msgid "Buy with %gateway%"
1082
  msgstr ""
1083
 
1084
- #: ../addons/buy-creds/myCRED-addon-buy-creds.php:1539 ../addons/sell-
1085
- #: content/myCRED-addon-sell-content.php:44
1086
- msgid "Buy Now"
1087
  msgstr ""
1088
 
1089
- #: ../addons/buy-creds/myCRED-addon-buy-creds.php:1584
1090
- msgid "No users found"
1091
  msgstr ""
1092
 
1093
- #: ../addons/buy-creds/myCRED-addon-buy-creds.php:1594
1094
- msgid "To"
1095
  msgstr ""
1096
 
1097
- #: ../addons/buy-creds/myCRED-addon-buy-creds.php:1611
1098
- msgid "Select Amount"
1099
  msgstr ""
1100
 
1101
- #: ../addons/buy-creds/myCRED-addon-buy-creds.php:1635
1102
- msgid "min."
1103
  msgstr ""
1104
 
1105
- #: ../addons/buy-creds/myCRED-addon-buy-creds.php:1643
1106
- msgid "Select Gateway"
1107
  msgstr ""
1108
 
1109
- #: ../addons/buy-creds/myCRED-addon-buy-creds.php:1686 ../addons/gateway/event-
1110
- #: booking/mycred-eventespresso3.php:27 ../addons/gateway/event-booking/mycred-
1111
- #: eventsmanager-pro.php:39 ../addons/gateway/event-booking/mycred-eventsmanager.
1112
- #: php:35
1113
- msgid "Pay Now"
1114
  msgstr ""
1115
 
1116
- #: ../addons/buy-creds/myCRED-addon-buy-creds.php:1687 ../includes/mycred-install.
1117
- #: php:536
1118
- msgid "Cancel"
1119
  msgstr ""
1120
 
1121
- #: ../addons/buy-creds/myCRED-addon-buy-creds.php:1715 ../addons/ranks/myCRED-
1122
- #: addon-ranks.php:1612 ../modules/mycred-module-log.php:407 ../modules/mycred-
1123
- #: module-settings.php:625 ../modules/mycred-module-settings.php:640
1124
- msgid "Actions"
1125
  msgstr ""
1126
 
1127
- #: ../addons/buy-creds/abstracts/mycred-abstract-payment-gateway.php:114
1128
- msgid "This Payment Gateway has no settings"
1129
  msgstr ""
1130
 
1131
- #: ../addons/buy-creds/abstracts/mycred-abstract-payment-gateway.php:151
1132
- msgid "Select currency"
1133
  msgstr ""
1134
 
1135
- #: ../addons/buy-creds/abstracts/mycred-abstract-payment-gateway.php:352
1136
- msgid "Incoming confirmation call detected"
1137
  msgstr ""
1138
 
1139
- #: ../addons/buy-creds/abstracts/mycred-abstract-payment-gateway.php:353
1140
- #, php-format
1141
- msgid "Gateway identified itself as \"%s\""
 
1142
  msgstr ""
1143
 
1144
- #: ../addons/buy-creds/abstracts/mycred-abstract-payment-gateway.php:354
1145
- msgid "Verifying caller"
 
 
 
 
 
1146
  msgstr ""
1147
 
1148
- #: ../addons/buy-creds/abstracts/mycred-abstract-payment-gateway.php:400
1149
- msgid "Test Payment"
1150
  msgstr ""
1151
 
1152
- #: ../addons/buy-creds/abstracts/mycred-abstract-payment-gateway.php:404 ..
1153
- #: addons/gateway/carts/mycred-marketpress.php:179
1154
- msgid "Payment"
1155
  msgstr ""
1156
 
1157
- #: ../addons/buy-creds/abstracts/mycred-abstract-payment-gateway.php:424
1158
- msgid "Cancel purchase"
1159
  msgstr ""
1160
 
1161
- #: ../addons/buy-creds/abstracts/mycred-abstract-payment-gateway.php:503 ..
1162
- #: includes/mycred-admin.php:745 ../includes/mycred-admin.php:789
1163
- msgid "required"
1164
  msgstr ""
1165
 
1166
- #: ../addons/buy-creds/abstracts/mycred-abstract-payment-gateway.php:504 ..
1167
- #: includes/mycred-admin.php:747 ../includes/mycred-admin.php:791
1168
- msgid "optional"
 
1169
  msgstr ""
1170
 
1171
- #: ../addons/buy-creds/abstracts/mycred-abstract-payment-gateway.php:509
1172
- msgid "First Name"
1173
  msgstr ""
1174
 
1175
- #: ../addons/buy-creds/abstracts/mycred-abstract-payment-gateway.php:513
1176
- msgid "Last Name"
1177
  msgstr ""
1178
 
1179
- #: ../addons/buy-creds/abstracts/mycred-abstract-payment-gateway.php:517
1180
- msgid "Address Line 1"
 
1181
  msgstr ""
1182
 
1183
- #: ../addons/buy-creds/abstracts/mycred-abstract-payment-gateway.php:521
1184
- msgid "Address Line 2"
1185
  msgstr ""
1186
 
1187
- #: ../addons/buy-creds/abstracts/mycred-abstract-payment-gateway.php:525
1188
- msgid "City"
 
1189
  msgstr ""
1190
 
1191
- #: ../addons/buy-creds/abstracts/mycred-abstract-payment-gateway.php:529
1192
- msgid "Zip"
1193
  msgstr ""
1194
 
1195
- #: ../addons/buy-creds/abstracts/mycred-abstract-payment-gateway.php:533
1196
- msgid "State"
 
1197
  msgstr ""
1198
 
1199
- #: ../addons/buy-creds/abstracts/mycred-abstract-payment-gateway.php:537
1200
- msgid "Country"
 
1201
  msgstr ""
1202
 
1203
- #: ../addons/buy-creds/abstracts/mycred-abstract-payment-gateway.php:540
1204
- msgid "Choose Country"
1205
  msgstr ""
1206
 
1207
- #: ../addons/buy-creds/abstracts/mycred-abstract-payment-gateway.php:587
1208
- #, php-format
1209
- msgid "%s Purchase"
1210
  msgstr ""
1211
 
1212
- #: ../addons/buy-creds/abstracts/mycred-abstract-payment-gateway.php:592 ..
1213
- #: addons/gateway/carts/mycred-wpecommerce.php:112
1214
- msgid "Item"
1215
  msgstr ""
1216
 
1217
- #: ../addons/buy-creds/abstracts/mycred-abstract-payment-gateway.php:615
1218
- msgid "Debug"
1219
  msgstr ""
1220
 
1221
- #: ../addons/buy-creds/abstracts/mycred-abstract-payment-gateway.php:616
1222
- msgid ""
1223
- "Here you can see information that are collected and sent to this gateway. "
1224
- "Debug information is only visible for administrators and are intended for "
1225
- "troubleshooting / testing of this gateway. Please disable \"Sandbox Mode\" "
1226
- "when you want to take this gateway online."
1227
  msgstr ""
1228
 
1229
- #: ../addons/buy-creds/abstracts/mycred-abstract-payment-gateway.php:620
1230
- msgid "Section"
 
1231
  msgstr ""
1232
 
1233
- #: ../addons/buy-creds/abstracts/mycred-abstract-payment-gateway.php:621
1234
- msgid "Result"
 
1235
  msgstr ""
1236
 
1237
- #: ../addons/buy-creds/abstracts/mycred-abstract-payment-gateway.php:626
1238
- msgid "Payment Status"
 
1239
  msgstr ""
1240
 
1241
- #: ../addons/buy-creds/abstracts/mycred-abstract-payment-gateway.php:630
1242
- msgid "Request"
 
1243
  msgstr ""
1244
 
1245
- #: ../addons/buy-creds/abstracts/mycred-abstract-payment-gateway.php:634
1246
- msgid "Gateway Response"
1247
  msgstr ""
1248
 
1249
- #: ../addons/buy-creds/abstracts/mycred-abstract-payment-gateway.php:681
1250
  #, php-format
1251
- msgid "Continue to %s"
1252
  msgstr ""
1253
 
1254
- #: ../addons/buy-creds/abstracts/mycred-abstract-payment-gateway.php:682 ..
1255
- #: addons/buy-creds/gateways/bitpay.php:233
1256
- msgid "Click here if you are not automatically redirected"
1257
  msgstr ""
1258
 
1259
- #: ../addons/buy-creds/abstracts/mycred-abstract-payment-gateway.php:687
1260
- msgid "The following information will be sent to the gateway"
 
 
1261
  msgstr ""
1262
 
1263
- #: ../addons/buy-creds/abstracts/mycred-abstract-payment-gateway.php:1373
1264
- msgid "Outside US"
 
1265
  msgstr ""
1266
 
1267
- #: ../addons/buy-creds/abstracts/mycred-abstract-payment-gateway.php:1390
1268
- msgid "January"
1269
  msgstr ""
1270
 
1271
- #: ../addons/buy-creds/abstracts/mycred-abstract-payment-gateway.php:1391
1272
- msgid "February"
1273
  msgstr ""
1274
 
1275
- #: ../addons/buy-creds/abstracts/mycred-abstract-payment-gateway.php:1392
1276
- msgid "March"
1277
  msgstr ""
1278
 
1279
- #: ../addons/buy-creds/abstracts/mycred-abstract-payment-gateway.php:1393
1280
- msgid "April"
 
1281
  msgstr ""
1282
 
1283
- #: ../addons/buy-creds/abstracts/mycred-abstract-payment-gateway.php:1394
1284
- msgid "May"
1285
  msgstr ""
1286
 
1287
- #: ../addons/buy-creds/abstracts/mycred-abstract-payment-gateway.php:1395
1288
- msgid "June"
1289
  msgstr ""
1290
 
1291
- #: ../addons/buy-creds/abstracts/mycred-abstract-payment-gateway.php:1396
1292
- msgid "July"
1293
  msgstr ""
1294
 
1295
- #: ../addons/buy-creds/abstracts/mycred-abstract-payment-gateway.php:1397
1296
- msgid "August"
1297
  msgstr ""
1298
 
1299
- #: ../addons/buy-creds/abstracts/mycred-abstract-payment-gateway.php:1398
1300
- msgid "September"
1301
  msgstr ""
1302
 
1303
- #: ../addons/buy-creds/abstracts/mycred-abstract-payment-gateway.php:1399
1304
- msgid "October"
1305
  msgstr ""
1306
 
1307
- #: ../addons/buy-creds/abstracts/mycred-abstract-payment-gateway.php:1400
1308
- msgid "November"
 
 
 
1309
  msgstr ""
1310
 
1311
- #: ../addons/buy-creds/abstracts/mycred-abstract-payment-gateway.php:1401
1312
- msgid "December"
 
1313
  msgstr ""
1314
 
1315
- #: ../addons/buy-creds/gateways/bitpay.php:62 ../addons/buy-
1316
- #: creds/gateways/netbilling.php:92 ../addons/buy-creds/gateways/paypal-standard.
1317
- #: php:145 ../addons/buy-creds/gateways/skrill.php:124
1318
  #, php-format
1319
- msgid "Price mismatch. Expected: %s Received: %s"
1320
  msgstr ""
1321
 
1322
- #: ../addons/buy-creds/gateways/bitpay.php:68 ../addons/buy-creds/gateways/paypal-
1323
- #: standard.php:151 ../addons/buy-creds/gateways/skrill.php:130
1324
  #, php-format
1325
- msgid "Currency mismatch. Expected: %s Received: %s"
1326
- msgstr ""
1327
-
1328
- #: ../addons/buy-creds/gateways/bitpay.php:74 ../addons/buy-
1329
- #: creds/gateways/netbilling.php:98 ../addons/buy-creds/gateways/paypal-standard.
1330
- #: php:157 ../addons/buy-creds/gateways/skrill.php:136
1331
- #, php-format
1332
- msgid "Payment not completed. Received: %s"
1333
  msgstr ""
1334
 
1335
- #: ../addons/buy-creds/gateways/bitpay.php:85 ../addons/buy-
1336
- #: creds/gateways/netbilling.php:109 ../addons/buy-creds/gateways/paypal-standard.
1337
- #: php:168 ../addons/buy-creds/gateways/skrill.php:147 ../addons/buy-
1338
- #: creds/gateways/zombaio.php:185
1339
- msgid "Failed to credit users account."
1340
  msgstr ""
1341
 
1342
- #: ../addons/buy-creds/gateways/bitpay.php:164 ../addons/buy-
1343
- #: creds/gateways/netbilling.php:145 ../addons/buy-creds/gateways/paypal-standard.
1344
- #: php:208 ../addons/buy-creds/gateways/skrill.php:187 ../addons/buy-
1345
- #: creds/gateways/zombaio.php:214
1346
- msgid "Please setup this gateway before attempting to make a purchase!"
1347
  msgstr ""
1348
 
1349
- #: ../addons/buy-creds/gateways/bitpay.php:216 ../addons/buy-
1350
- #: creds/gateways/bitpay.php:227 ../addons/buy-creds/gateways/netbilling.php:198 .
1351
- #: ./addons/buy-creds/gateways/paypal-standard.php:268 ../addons/buy-
1352
- #: creds/gateways/skrill.php:281 ../addons/buy-creds/gateways/zombaio.php:247
1353
- msgid "Processing payment &hellip;"
1354
  msgstr ""
1355
 
1356
- #: ../addons/buy-creds/gateways/bitpay.php:219
1357
- msgid "Could not create a BitPay Invoice. Please contact the site administrator!"
 
 
 
1358
  msgstr ""
1359
 
1360
- #: ../addons/buy-creds/gateways/bitpay.php:220
1361
- msgid "Bitpay returned the following error message:"
1362
  msgstr ""
1363
 
1364
- #: ../addons/buy-creds/gateways/bitpay.php:253 ../includes/mycred-remote.php:551
1365
- msgid "API Key"
 
1366
  msgstr ""
1367
 
1368
- #: ../addons/buy-creds/gateways/bitpay.php:259 ../addons/buy-
1369
- #: creds/gateways/paypal-standard.php:286 ../addons/buy-creds/gateways/skrill.php:
1370
- #: 300
1371
- msgid "Currency"
1372
  msgstr ""
1373
 
1374
- #: ../addons/buy-creds/gateways/bitpay.php:262
1375
- msgid "Currency Code"
 
1376
  msgstr ""
1377
 
1378
- #: ../addons/buy-creds/gateways/bitpay.php:266 ../addons/buy-
1379
- #: creds/gateways/netbilling.php:235 ../addons/buy-creds/gateways/paypal-standard.
1380
- #: php:298 ../addons/buy-creds/gateways/skrill.php:319
1381
- msgid "Item Name"
1382
  msgstr ""
1383
 
1384
- #: ../addons/buy-creds/gateways/bitpay.php:270 ../addons/buy-
1385
- #: creds/gateways/netbilling.php:239 ../addons/buy-creds/gateways/paypal-standard.
1386
- #: php:302 ../addons/buy-creds/gateways/skrill.php:323
1387
- msgid "Description of the item being purchased by the user."
1388
  msgstr ""
1389
 
1390
- #: ../addons/buy-creds/gateways/bitpay.php:273 ../addons/buy-
1391
- #: creds/gateways/netbilling.php:242 ../addons/buy-creds/gateways/paypal-standard.
1392
- #: php:305 ../addons/buy-creds/gateways/skrill.php:326
1393
- msgid "Exchange Rates"
1394
  msgstr ""
1395
 
1396
- #: ../addons/buy-creds/gateways/bitpay.php:277
1397
- msgid "Transaction Speed"
1398
  msgstr ""
1399
 
1400
- #: ../addons/buy-creds/gateways/bitpay.php:284
1401
- msgid "High"
 
1402
  msgstr ""
1403
 
1404
- #: ../addons/buy-creds/gateways/bitpay.php:285
1405
- msgid "Medium"
1406
  msgstr ""
1407
 
1408
- #: ../addons/buy-creds/gateways/bitpay.php:286
1409
- msgid "Low"
1410
  msgstr ""
1411
 
1412
- #: ../addons/buy-creds/gateways/bitpay.php:299
1413
- msgid "Full Notifications"
 
1414
  msgstr ""
1415
 
1416
- #: ../addons/buy-creds/gateways/bitpay.php:306 ../includes/mycred-network.php:161
1417
- #: ../includes/mycred-network.php:175
1418
- msgid "No"
 
1419
  msgstr ""
1420
 
1421
- #: ../addons/buy-creds/gateways/bitpay.php:307 ../includes/mycred-network.php:157
1422
- #: ../includes/mycred-network.php:171
1423
- msgid "Yes"
 
1424
  msgstr ""
1425
 
1426
- #: ../addons/buy-creds/gateways/netbilling.php:216
1427
- msgid "Account ID"
 
1428
  msgstr ""
1429
 
1430
- #: ../addons/buy-creds/gateways/netbilling.php:222
1431
- msgid "Site Tag"
 
1432
  msgstr ""
1433
 
1434
- #: ../addons/buy-creds/gateways/netbilling.php:228
1435
- msgid "Order Integrity Key"
 
1436
  msgstr ""
1437
 
1438
- #: ../addons/buy-creds/gateways/netbilling.php:232
1439
- msgid "Found under Step 12 on the Fraud Defense page."
 
 
1440
  msgstr ""
1441
 
1442
- #: ../addons/buy-creds/gateways/netbilling.php:246
1443
- msgid "Postback CGI URL"
1444
  msgstr ""
1445
 
1446
- #: ../addons/buy-creds/gateways/netbilling.php:250
 
1447
  msgid ""
1448
- "For this gateway to work, you must login to your NETbilling account and edit "
1449
- "your site. Under \"Default payment form settings\" make sure the Postback CGI "
1450
- "URL is set to the above address and \"Return method\" is set to POST."
1451
  msgstr ""
1452
 
1453
- #: ../addons/buy-creds/gateways/netbilling.php:298
1454
- msgid "Incorrect Credit Card number"
 
1455
  msgstr ""
1456
 
1457
- #: ../addons/buy-creds/gateways/netbilling.php:304
1458
- msgid "The credit card entered is past its expiration date."
1459
  msgstr ""
1460
 
1461
- #: ../addons/buy-creds/gateways/netbilling.php:307
1462
- msgid "The CVV2 number entered is not valid."
 
1463
  msgstr ""
1464
 
1465
- #: ../addons/buy-creds/gateways/netbilling.php:314
1466
- msgid "The bank routing number entered is not valid."
1467
  msgstr ""
1468
 
1469
- #: ../addons/buy-creds/gateways/netbilling.php:318
1470
- msgid "The bank account number entered is not valid."
 
 
 
1471
  msgstr ""
1472
 
1473
- #: ../addons/buy-creds/gateways/paypal-standard.php:192 ../addons/buy-
1474
- #: creds/gateways/skrill.php:171
1475
- msgid "Success"
 
 
1476
  msgstr ""
1477
 
1478
- #: ../addons/buy-creds/gateways/paypal-standard.php:193 ../addons/buy-
1479
- #: creds/gateways/skrill.php:172
1480
- msgid "Thank you for your purchase"
1481
  msgstr ""
1482
 
1483
- #: ../addons/buy-creds/gateways/paypal-standard.php:263
1484
  #, php-format
1485
- msgctxt "Return label. %s = Website name"
1486
- msgid "Return to %s"
1487
  msgstr ""
1488
 
1489
- #: ../addons/buy-creds/gateways/paypal-standard.php:292
1490
- msgid "Account Email"
 
1491
  msgstr ""
1492
 
1493
- #: ../addons/buy-creds/gateways/skrill.php:228
1494
- msgid "Return to "
 
1495
  msgstr ""
1496
 
1497
- #: ../addons/buy-creds/gateways/skrill.php:264
1498
- msgid "Product:"
 
 
 
1499
  msgstr ""
1500
 
1501
- #: ../addons/buy-creds/gateways/skrill.php:273
1502
- msgid "Gift to:"
 
1503
  msgstr ""
1504
 
1505
- #: ../addons/buy-creds/gateways/skrill.php:274
1506
- msgid "(author)"
 
1507
  msgstr ""
1508
 
1509
- #: ../addons/buy-creds/gateways/skrill.php:307
1510
- msgid "Merchant Account Email"
 
1511
  msgstr ""
1512
 
1513
- #: ../addons/buy-creds/gateways/skrill.php:313
1514
- msgid "Secret Word"
 
1515
  msgstr ""
1516
 
1517
- #: ../addons/buy-creds/gateways/skrill.php:330
1518
- msgid "Confirmation Email"
 
1519
  msgstr ""
1520
 
1521
- #: ../addons/buy-creds/gateways/skrill.php:333
1522
- msgid "Ask Skrill to send me a confirmation email for each successful purchase."
 
1523
  msgstr ""
1524
 
1525
- #: ../addons/buy-creds/gateways/skrill.php:336
1526
- msgid "Checkout Page"
 
 
1527
  msgstr ""
1528
 
1529
- #: ../addons/buy-creds/gateways/skrill.php:339 ../addons/gateway/carts/mycred-
1530
- #: woocommerce.php:92 ../addons/ranks/myCRED-addon-ranks.php:1318 ..
1531
- #: addons/transfer/includes/mycred-transfer-widgets.php:118 ../includes/mycred-
1532
- #: widgets.php:196 ../includes/mycred-widgets.php:384 ../includes/mycred-widgets.
1533
- #: php:592 ../modules/mycred-module-hooks.php:3073
1534
- msgid "Title"
1535
  msgstr ""
1536
 
1537
- #: ../addons/buy-creds/gateways/skrill.php:341
1538
- msgid "If left empty, your account email is used as title on the Skill Payment Page."
1539
  msgstr ""
1540
 
1541
- #: ../addons/buy-creds/gateways/skrill.php:344 ../addons/buy-
1542
- #: creds/gateways/zombaio.php:283
1543
- msgid "Logo URL"
1544
  msgstr ""
1545
 
1546
- #: ../addons/buy-creds/gateways/skrill.php:346
1547
- msgid ""
1548
- "The URL to the image you want to use on the top of the gateway. For best "
1549
- "integration results we recommend you use logos with dimensions up to 200px "
1550
- "in width and 50px in height."
1551
  msgstr ""
1552
 
1553
- #: ../addons/buy-creds/gateways/skrill.php:349
1554
- msgid "Confirmation Note"
 
1555
  msgstr ""
1556
 
1557
- #: ../addons/buy-creds/gateways/skrill.php:351
1558
- msgid ""
1559
- "Optional text to show user once a transaction has been successfully "
1560
- "completed. This text is shown by Skrill."
1561
  msgstr ""
1562
 
1563
- #: ../addons/buy-creds/gateways/zombaio.php:154
1564
  #, php-format
1565
- msgid "Duplicate transaction. Received: %s"
1566
  msgstr ""
1567
 
1568
- #: ../addons/buy-creds/gateways/zombaio.php:160
1569
  #, php-format
1570
- msgid "Live transaction while debug mode is enabled! Received: %s"
1571
  msgstr ""
1572
 
1573
- #: ../addons/buy-creds/gateways/zombaio.php:265
1574
- msgid "Site ID"
 
 
1575
  msgstr ""
1576
 
1577
- #: ../addons/buy-creds/gateways/zombaio.php:271
1578
- msgid "GW Password"
 
1579
  msgstr ""
1580
 
1581
- #: ../addons/buy-creds/gateways/zombaio.php:277
1582
- msgid "Pricing ID"
 
1583
  msgstr ""
1584
 
1585
- #: ../addons/buy-creds/gateways/zombaio.php:289
1586
- msgid "IP Verification"
 
1587
  msgstr ""
1588
 
1589
- #: ../addons/buy-creds/gateways/zombaio.php:292
1590
- msgid "Do not verify that callbacks are coming from Zombaio."
1591
  msgstr ""
1592
 
1593
- #: ../addons/buy-creds/gateways/zombaio.php:295
1594
- msgid "Language"
 
1595
  msgstr ""
1596
 
1597
- #: ../addons/buy-creds/gateways/zombaio.php:302
1598
- msgid "Postback URL (ZScript)"
 
1599
  msgstr ""
1600
 
1601
- #: ../addons/buy-creds/gateways/zombaio.php:306
1602
- msgid ""
1603
- "For this gateway to work, login to ZOA and set the Postback URL to the above "
1604
- "address and click validate."
1605
  msgstr ""
1606
 
1607
- #: ../addons/coupons/myCRED-addon-coupons.php:86 ../addons/coupons/myCRED-addon-
1608
- #: coupons.php:92 ../addons/coupons/myCRED-addon-coupons.php:500 ..
1609
- #: includes/mycred-overview.php:188 ../includes/mycred-overview.php:195
1610
- msgid "Coupons"
1611
  msgstr ""
1612
 
1613
- #: ../addons/coupons/myCRED-addon-coupons.php:87 ..
1614
- #: addons/coupons/includes/mycred-coupon-shortcodes.php:69
1615
- msgid "Coupon"
1616
  msgstr ""
1617
 
1618
- #: ../addons/coupons/myCRED-addon-coupons.php:88
1619
- msgid "Create New"
1620
  msgstr ""
1621
 
1622
- #: ../addons/coupons/myCRED-addon-coupons.php:89
1623
- msgid "Create New Coupon"
 
1624
  msgstr ""
1625
 
1626
- #: ../addons/coupons/myCRED-addon-coupons.php:90
1627
- msgid "Edit Coupon"
 
1628
  msgstr ""
1629
 
1630
- #: ../addons/coupons/myCRED-addon-coupons.php:91
1631
- msgid "New Coupon"
1632
  msgstr ""
1633
 
1634
- #: ../addons/coupons/myCRED-addon-coupons.php:94
1635
- msgid "Search coupons"
 
 
 
1636
  msgstr ""
1637
 
1638
- #: ../addons/coupons/myCRED-addon-coupons.php:95
1639
- msgid "No coupons found"
1640
  msgstr ""
1641
 
1642
- #: ../addons/coupons/myCRED-addon-coupons.php:96
1643
- msgid "No coupons found in Trash"
1644
  msgstr ""
1645
 
1646
- #: ../addons/coupons/myCRED-addon-coupons.php:98 ../addons/email-notices/myCRED-
1647
- #: addon-email-notices.php:165 ../addons/email-notices/myCRED-addon-email-notices.
1648
- #: php:171 ../addons/email-notices/myCRED-addon-email-notices.php:177 ..
1649
- #: addons/email-notices/myCRED-addon-email-notices.php:283
1650
- msgid "Email Notices"
1651
  msgstr ""
1652
 
1653
- #: ../addons/coupons/myCRED-addon-coupons.php:119 ../addons/coupons/myCRED-addon-
1654
- #: coupons.php:120 ../addons/coupons/myCRED-addon-coupons.php:121 ..
1655
- #: addons/coupons/myCRED-addon-coupons.php:122
1656
- msgid "Coupon updated."
1657
  msgstr ""
1658
 
1659
- #: ../addons/coupons/myCRED-addon-coupons.php:124
1660
- msgid "Coupon published."
1661
  msgstr ""
1662
 
1663
- #: ../addons/coupons/myCRED-addon-coupons.php:125
1664
- msgid "Coupon saved."
 
 
 
 
 
 
1665
  msgstr ""
1666
 
1667
- #: ../addons/coupons/myCRED-addon-coupons.php:128
1668
- msgid "Draft Coupon saved."
1669
  msgstr ""
1670
 
1671
- #: ../addons/coupons/myCRED-addon-coupons.php:142
1672
- msgid "Unique Coupon Code"
1673
  msgstr ""
1674
 
1675
- #: ../addons/coupons/myCRED-addon-coupons.php:158
1676
- msgid "Coupon Code"
1677
  msgstr ""
1678
 
1679
- #: ../addons/coupons/myCRED-addon-coupons.php:159 ../addons/coupons/myCRED-addon-
1680
- #: coupons.php:347
1681
- msgid "Value"
1682
  msgstr ""
1683
 
1684
- #: ../addons/coupons/myCRED-addon-coupons.php:160
1685
- msgid "Used"
1686
  msgstr ""
1687
 
1688
- #: ../addons/coupons/myCRED-addon-coupons.php:161 ../addons/transfer/myCRED-addon-
1689
- #: transfer.php:259 ../modules/mycred-module-hooks.php:1714 ../modules/mycred-
1690
- #: module-hooks.php:2032
1691
- msgid "Limits"
1692
  msgstr ""
1693
 
1694
- #: ../addons/coupons/myCRED-addon-coupons.php:162
1695
- msgid "Expires"
 
1696
  msgstr ""
1697
 
1698
- #: ../addons/coupons/myCRED-addon-coupons.php:165 ../addons/coupons/myCRED-addon-
1699
- #: coupons.php:354 ../addons/email-notices/myCRED-addon-email-notices.php:814 ..
1700
- #: addons/email-notices/myCRED-addon-email-notices.php:1031 ..
1701
- #: addons/gateway/carts/mycred-marketpress.php:389 ..
1702
- #: addons/gateway/carts/mycred-woocommerce.php:120 ..
1703
- #: addons/gateway/carts/mycred-wpecommerce.php:354 ../addons/gateway/event-
1704
- #: booking/mycred-eventespresso3.php:437 ../addons/gateway/event-booking/mycred-
1705
- #: eventsmanager-pro.php:504 ../addons/gateway/event-booking/mycred-eventsmanager.
1706
- #: php:550 ../addons/ranks/myCRED-addon-ranks.php:1045 ../addons/ranks/myCRED-
1707
- #: addon-ranks.php:1200 ../addons/sell-content/myCRED-addon-sell-content.php:412 .
1708
- #: ./includes/mycred-widgets.php:203 ../includes/mycred-widgets.php:390 ..
1709
- #: includes/importers/mycred-cubepoints.php:365
1710
- msgid "Point Type"
1711
  msgstr ""
1712
 
1713
- #: ../addons/coupons/myCRED-addon-coupons.php:193 ../addons/coupons/myCRED-addon-
1714
- #: coupons.php:461
1715
- msgid "not yet used"
1716
  msgstr ""
1717
 
1718
- #: ../addons/coupons/myCRED-addon-coupons.php:211 ../includes/mycred-admin.php:
1719
- #: 416 ../modules/mycred-module-hooks.php:2507
1720
- msgid "Total"
1721
  msgstr ""
1722
 
1723
- #: ../addons/coupons/myCRED-addon-coupons.php:211
1724
- msgid "Per User"
1725
  msgstr ""
1726
 
1727
- #: ../addons/coupons/myCRED-addon-coupons.php:219
1728
- msgid "Never"
 
1729
  msgstr ""
1730
 
1731
- #: ../addons/coupons/myCRED-addon-coupons.php:223
1732
- msgid "Expired"
1733
  msgstr ""
1734
 
1735
- #: ../addons/coupons/myCRED-addon-coupons.php:226
1736
- #, php-format
1737
- msgid "In %s time"
1738
  msgstr ""
1739
 
1740
- #: ../addons/coupons/myCRED-addon-coupons.php:279
1741
- msgid "Coupon Setup"
 
1742
  msgstr ""
1743
 
1744
- #: ../addons/coupons/myCRED-addon-coupons.php:288
1745
- msgid "Coupon Limits"
 
1746
  msgstr ""
1747
 
1748
- #: ../addons/coupons/myCRED-addon-coupons.php:297
1749
- msgid "Coupon Requirements"
1750
  msgstr ""
1751
 
1752
- #: ../addons/coupons/myCRED-addon-coupons.php:307
1753
- msgid "Usage"
1754
  msgstr ""
1755
 
1756
- #: ../addons/coupons/myCRED-addon-coupons.php:350
1757
- msgid "The amount of %plural% this coupon is worth."
1758
  msgstr ""
1759
 
1760
- #: ../addons/coupons/myCRED-addon-coupons.php:359
1761
- msgid "Select the point type that this coupon is applied."
1762
  msgstr ""
1763
 
1764
- #: ../addons/coupons/myCRED-addon-coupons.php:369
1765
- msgid "Expire"
1766
  msgstr ""
1767
 
1768
- #: ../addons/coupons/myCRED-addon-coupons.php:372
1769
- msgid "Optional date when this coupon expires. Expired coupons will be trashed."
 
1770
  msgstr ""
1771
 
1772
- #: ../addons/coupons/myCRED-addon-coupons.php:401
1773
- msgid "Global Maximum"
1774
  msgstr ""
1775
 
1776
- #: ../addons/coupons/myCRED-addon-coupons.php:404
1777
- msgid ""
1778
- "The maximum number of times this coupon can be used. Note that the coupon "
1779
- "will be automatically trashed once this maximum is reached!"
1780
  msgstr ""
1781
 
1782
- #: ../addons/coupons/myCRED-addon-coupons.php:408
1783
- msgid "User Maximum"
1784
  msgstr ""
1785
 
1786
- #: ../addons/coupons/myCRED-addon-coupons.php:411
1787
- msgid "The maximum number of times this coupon can be used by a user."
1788
  msgstr ""
1789
 
1790
- #: ../addons/coupons/myCRED-addon-coupons.php:440
1791
- msgid ""
1792
- "Optional minimum balance a user must have in order to use this coupon. Use "
1793
- "zero to disable."
1794
  msgstr ""
1795
 
1796
- #: ../addons/coupons/myCRED-addon-coupons.php:443
1797
- msgid "Maximum Balance"
 
1798
  msgstr ""
1799
 
1800
- #: ../addons/coupons/myCRED-addon-coupons.php:445
1801
- msgid ""
1802
- "Optional maximum balance a user can have in order to use this coupon. Use "
1803
- "zero to disable."
1804
  msgstr ""
1805
 
1806
- #: ../addons/coupons/myCRED-addon-coupons.php:506
1807
  #, php-format
1808
  msgid ""
1809
- "Log entry for successful coupon redemption. Use %coupon% to show the coupon "
1810
- "code."
1811
  msgstr ""
1812
 
1813
- #: ../addons/coupons/myCRED-addon-coupons.php:509
1814
- msgid "Invalid Coupon Message"
1815
  msgstr ""
1816
 
1817
- #: ../addons/coupons/myCRED-addon-coupons.php:513
1818
- msgid "Message to show when users try to use a coupon that does not exists."
1819
  msgstr ""
1820
 
1821
- #: ../addons/coupons/myCRED-addon-coupons.php:516
1822
- msgid "Expired Coupon Message"
1823
  msgstr ""
1824
 
1825
- #: ../addons/coupons/myCRED-addon-coupons.php:520
1826
- msgid "Message to show when users try to use that has expired."
 
1827
  msgstr ""
1828
 
1829
- #: ../addons/coupons/myCRED-addon-coupons.php:523
1830
- msgid "User Limit Message"
 
1831
  msgstr ""
1832
 
1833
- #: ../addons/coupons/myCRED-addon-coupons.php:527
1834
- msgid "Message to show when the user limit has been reached for the coupon."
 
1835
  msgstr ""
1836
 
1837
- #: ../addons/coupons/myCRED-addon-coupons.php:530
1838
- msgid "Minimum Balance Message"
 
1839
  msgstr ""
1840
 
1841
- #: ../addons/coupons/myCRED-addon-coupons.php:534
1842
- msgid ""
1843
- "Message to show when a user does not meet the minimum balance requirement. "
1844
- "(if used)"
1845
  msgstr ""
1846
 
1847
- #: ../addons/coupons/myCRED-addon-coupons.php:537
1848
- msgid "Maximum Balance Message"
 
1849
  msgstr ""
1850
 
1851
- #: ../addons/coupons/myCRED-addon-coupons.php:541
1852
- msgid ""
1853
- "Message to show when a user does not meet the maximum balance requirement. "
1854
- "(if used)"
1855
  msgstr ""
1856
 
1857
- #: ../addons/coupons/myCRED-addon-coupons.php:544
1858
- msgid "Success Message"
 
1859
  msgstr ""
1860
 
1861
- #: ../addons/coupons/myCRED-addon-coupons.php:548
1862
- msgid "Message to show when a coupon was successfully deposited to a users account."
 
1863
  msgstr ""
1864
 
1865
- #: ../addons/coupons/includes/mycred-coupon-shortcodes.php:72
1866
- msgid "Apply Coupon"
1867
  msgstr ""
1868
 
1869
- #: ../addons/email-notices/myCRED-addon-email-notices.php:166 ../addons/email-
1870
- #: notices/myCRED-addon-email-notices.php:1270
1871
- msgid "Email Notice"
1872
  msgstr ""
1873
 
1874
- #: ../addons/email-notices/myCRED-addon-email-notices.php:168
1875
- msgid "Add New Notice"
1876
  msgstr ""
1877
 
1878
- #: ../addons/email-notices/myCRED-addon-email-notices.php:169
1879
- msgid "Edit Notice"
 
 
1880
  msgstr ""
1881
 
1882
- #: ../addons/email-notices/myCRED-addon-email-notices.php:170
1883
- msgid "New Notice"
 
 
 
1884
  msgstr ""
1885
 
1886
- #: ../addons/email-notices/myCRED-addon-email-notices.php:172
1887
- msgid "View Notice"
 
1888
  msgstr ""
1889
 
1890
- #: ../addons/email-notices/myCRED-addon-email-notices.php:173
1891
- msgid "Search Email Notices"
1892
  msgstr ""
1893
 
1894
- #: ../addons/email-notices/myCRED-addon-email-notices.php:174
1895
- msgid "No email notices found"
1896
- msgstr ""
1897
-
1898
- #: ../addons/email-notices/myCRED-addon-email-notices.php:175
1899
- msgid "No email notices found in Trash"
1900
  msgstr ""
1901
 
1902
- #: ../addons/email-notices/myCRED-addon-email-notices.php:200 ..
1903
- #: addons/gateway/carts/mycred-wpecommerce.php:341 ../includes/mycred-functions.
1904
- #: php:587
1905
- msgid "General"
1906
  msgstr ""
1907
 
1908
- #: ../addons/email-notices/myCRED-addon-email-notices.php:201
1909
- msgid "users balance changes"
1910
  msgstr ""
1911
 
1912
- #: ../addons/email-notices/myCRED-addon-email-notices.php:202
1913
- msgid "user gains %_plural%"
1914
  msgstr ""
1915
 
1916
- #: ../addons/email-notices/myCRED-addon-email-notices.php:203
1917
- msgid "user lose %_plural%"
 
1918
  msgstr ""
1919
 
1920
- #: ../addons/email-notices/myCRED-addon-email-notices.php:204
1921
- msgid "users balance reaches zero"
1922
  msgstr ""
1923
 
1924
- #: ../addons/email-notices/myCRED-addon-email-notices.php:205
1925
- msgid "users balance goes minus"
 
1926
  msgstr ""
1927
 
1928
- #: ../addons/email-notices/myCRED-addon-email-notices.php:211
1929
- msgid "Badge Add-on"
1930
  msgstr ""
1931
 
1932
- #: ../addons/email-notices/myCRED-addon-email-notices.php:212
1933
- msgid "user gains a badge"
 
1934
  msgstr ""
1935
 
1936
- #: ../addons/email-notices/myCRED-addon-email-notices.php:219
1937
- msgid "Sell Content Add-on"
 
1938
  msgstr ""
1939
 
1940
- #: ../addons/email-notices/myCRED-addon-email-notices.php:220
1941
- msgid "user buys content"
1942
  msgstr ""
1943
 
1944
- #: ../addons/email-notices/myCRED-addon-email-notices.php:221
1945
- msgid "authors content gets sold"
 
1946
  msgstr ""
1947
 
1948
- #: ../addons/email-notices/myCRED-addon-email-notices.php:228
1949
- msgid "buyCREDs Add-on"
1950
- msgstr ""
 
 
1951
 
1952
- #: ../addons/email-notices/myCRED-addon-email-notices.php:229
1953
- msgid "user buys %_plural%"
1954
  msgstr ""
1955
 
1956
- #: ../addons/email-notices/myCRED-addon-email-notices.php:236
1957
- msgid "Transfer Add-on"
1958
  msgstr ""
1959
 
1960
- #: ../addons/email-notices/myCRED-addon-email-notices.php:237
1961
- msgid "user sends %_plural%"
1962
  msgstr ""
1963
 
1964
- #: ../addons/email-notices/myCRED-addon-email-notices.php:238
1965
- msgid "user receives %_plural%"
 
 
1966
  msgstr ""
1967
 
1968
- #: ../addons/email-notices/myCRED-addon-email-notices.php:245
1969
- msgid "Ranks Add-on"
1970
  msgstr ""
1971
 
1972
- #: ../addons/email-notices/myCRED-addon-email-notices.php:246
1973
- msgid "user is demoted"
1974
  msgstr ""
1975
 
1976
- #: ../addons/email-notices/myCRED-addon-email-notices.php:247
1977
- msgid "user is promoted"
1978
  msgstr ""
1979
 
1980
- #: ../addons/email-notices/myCRED-addon-email-notices.php:285
1981
- msgid ""
1982
- "Settings that apply to all email notices and can not be overridden for "
1983
- "individual emails."
1984
  msgstr ""
1985
 
1986
- #: ../addons/email-notices/myCRED-addon-email-notices.php:286
1987
- msgid "Email Format"
1988
  msgstr ""
1989
 
1990
- #: ../addons/email-notices/myCRED-addon-email-notices.php:290
1991
- msgid "Plain text emails only."
1992
  msgstr ""
1993
 
1994
- #: ../addons/email-notices/myCRED-addon-email-notices.php:294
1995
- msgid "HTML or Plain text emails."
1996
  msgstr ""
1997
 
1998
- #: ../addons/email-notices/myCRED-addon-email-notices.php:297
1999
- msgid "Filters"
2000
  msgstr ""
2001
 
2002
- #: ../addons/email-notices/myCRED-addon-email-notices.php:301
2003
  msgid ""
2004
- "Allow WordPress and Third Party Plugins to filter the email subject before "
2005
- "an email is sent."
2006
  msgstr ""
2007
 
2008
- #: ../addons/email-notices/myCRED-addon-email-notices.php:305
2009
- msgid ""
2010
- "Allow WordPress and Third Party Plugins to filter the email content before "
2011
- "an email is sent."
2012
  msgstr ""
2013
 
2014
- #: ../addons/email-notices/myCRED-addon-email-notices.php:310 ../addons/email-
2015
- #: notices/myCRED-addon-email-notices.php:316
2016
- msgid "Email Schedule"
2017
  msgstr ""
2018
 
2019
- #: ../addons/email-notices/myCRED-addon-email-notices.php:312
2020
- msgid "WordPress Cron is disabled. Emails will be sent immediately."
2021
  msgstr ""
2022
 
2023
- #: ../addons/email-notices/myCRED-addon-email-notices.php:320
2024
- msgid "Send emails immediately"
2025
  msgstr ""
2026
 
2027
- #: ../addons/email-notices/myCRED-addon-email-notices.php:324
2028
- msgid "Send emails once an hour"
2029
  msgstr ""
2030
 
2031
- #: ../addons/email-notices/myCRED-addon-email-notices.php:328
2032
- msgid "Send emails once a day"
2033
  msgstr ""
2034
 
2035
- #: ../addons/email-notices/myCRED-addon-email-notices.php:331
2036
- msgid "Subscriptions"
2037
  msgstr ""
2038
 
2039
- #: ../addons/email-notices/myCRED-addon-email-notices.php:333
2040
- #, php-format
2041
- msgid ""
2042
- "Use the %s shortcode to allow users to subscribe / unsubscribe to email "
2043
- "updates."
2044
  msgstr ""
2045
 
2046
- #: ../addons/email-notices/myCRED-addon-email-notices.php:338
2047
- msgid "SMTP Override"
2048
  msgstr ""
2049
 
2050
- #: ../addons/email-notices/myCRED-addon-email-notices.php:342
2051
- msgid ""
2052
- "SMTP Debug. Enable if you are experiencing issues with wp_mail() or if you "
2053
- "use a SMTP plugin for emails."
2054
  msgstr ""
2055
 
2056
- #: ../addons/email-notices/myCRED-addon-email-notices.php:345
2057
- msgid ""
2058
- "Default email settings. These settings can be individually overridden when "
2059
- "editing emails."
2060
  msgstr ""
2061
 
2062
- #: ../addons/email-notices/myCRED-addon-email-notices.php:346 ../addons/email-
2063
- #: notices/myCRED-addon-email-notices.php:900
2064
- msgid "Email Settings"
2065
  msgstr ""
2066
 
2067
- #: ../addons/email-notices/myCRED-addon-email-notices.php:349 ../addons/email-
2068
- #: notices/myCRED-addon-email-notices.php:1053
2069
- msgid "Senders Name:"
2070
  msgstr ""
2071
 
2072
- #: ../addons/email-notices/myCRED-addon-email-notices.php:353 ../addons/email-
2073
- #: notices/myCRED-addon-email-notices.php:1055
2074
- msgid "Senders Email:"
2075
  msgstr ""
2076
 
2077
- #: ../addons/email-notices/myCRED-addon-email-notices.php:357
2078
- msgid "Reply-To:"
2079
  msgstr ""
2080
 
2081
- #: ../addons/email-notices/myCRED-addon-email-notices.php:361
2082
- msgid "Default Email Content"
2083
  msgstr ""
2084
 
2085
- #: ../addons/email-notices/myCRED-addon-email-notices.php:365
2086
- msgid "Default email content."
2087
  msgstr ""
2088
 
2089
- #: ../addons/email-notices/myCRED-addon-email-notices.php:368
2090
- msgid "Default Email Styling"
 
 
 
2091
  msgstr ""
2092
 
2093
- #: ../addons/email-notices/myCRED-addon-email-notices.php:372
2094
- msgid "Ignored if HTML is not allowed in emails."
2095
  msgstr ""
2096
 
2097
- #: ../addons/email-notices/myCRED-addon-email-notices.php:719
2098
- #, php-format
2099
- msgctxt "Badge Title - Level 1,2,3.."
2100
- msgid "%s - Level %d"
2101
  msgstr ""
2102
 
2103
- #: ../addons/email-notices/myCRED-addon-email-notices.php:809 ../addons/email-
2104
- #: notices/myCRED-addon-email-notices.php:949
2105
- msgid "Email Subject"
2106
  msgstr ""
2107
 
2108
- #: ../addons/email-notices/myCRED-addon-email-notices.php:835
2109
- msgid "Not Active"
 
 
2110
  msgstr ""
2111
 
2112
- #: ../addons/email-notices/myCRED-addon-email-notices.php:838
2113
- #, php-format
2114
- msgid "Scheduled:<br /><strong>%1$s</strong>"
2115
  msgstr ""
2116
 
2117
- #: ../addons/email-notices/myCRED-addon-email-notices.php:843
2118
- msgid "Active"
 
2119
  msgstr ""
2120
 
2121
- #: ../addons/email-notices/myCRED-addon-email-notices.php:845
2122
  #, php-format
2123
- msgid "Active - Last run:<br /><strong>%1$s</strong>"
2124
  msgstr ""
2125
 
2126
- #: ../addons/email-notices/myCRED-addon-email-notices.php:855
2127
- msgid "Email is sent when"
2128
  msgstr ""
2129
 
2130
- #: ../addons/email-notices/myCRED-addon-email-notices.php:857
2131
- msgid "Missing instance for this notice!"
 
2132
  msgstr ""
2133
 
2134
- #: ../addons/email-notices/myCRED-addon-email-notices.php:866 ../addons/email-
2135
- #: notices/myCRED-addon-email-notices.php:868 ../addons/email-notices/myCRED-
2136
- #: addon-email-notices.php:870
2137
- msgid "Sent To"
2138
  msgstr ""
2139
 
2140
- #: ../addons/email-notices/myCRED-addon-email-notices.php:866 ../addons/email-
2141
- #: notices/myCRED-addon-email-notices.php:1019 ../includes/mycred-admin.php:799 ..
2142
- #: includes/mycred-log.php:755 ../modules/mycred-module-log.php:609
2143
- msgid "User"
2144
  msgstr ""
2145
 
2146
- #: ../addons/email-notices/myCRED-addon-email-notices.php:868 ../addons/email-
2147
- #: notices/myCRED-addon-email-notices.php:1020
2148
- msgid "Administrator"
2149
  msgstr ""
2150
 
2151
- #: ../addons/email-notices/myCRED-addon-email-notices.php:870
2152
- msgid "Both Administrator and User"
 
 
 
2153
  msgstr ""
2154
 
2155
- #: ../addons/email-notices/myCRED-addon-email-notices.php:880 ../addons/email-
2156
- #: notices/myCRED-addon-email-notices.php:1037
2157
- msgid "All types"
2158
  msgstr ""
2159
 
2160
- #: ../addons/email-notices/myCRED-addon-email-notices.php:909
2161
- msgid "Available Template Tags"
 
2162
  msgstr ""
2163
 
2164
- #: ../addons/email-notices/myCRED-addon-email-notices.php:920
2165
- msgid "Email Header"
2166
  msgstr ""
2167
 
2168
- #: ../addons/email-notices/myCRED-addon-email-notices.php:986
2169
- msgid "Send this email notice when..."
 
2170
  msgstr ""
2171
 
2172
- #: ../addons/email-notices/myCRED-addon-email-notices.php:1017
2173
- msgid "Recipient:"
2174
  msgstr ""
2175
 
2176
- #: ../addons/email-notices/myCRED-addon-email-notices.php:1021
2177
- msgid "Both"
 
2178
  msgstr ""
2179
 
2180
- #: ../addons/email-notices/myCRED-addon-email-notices.php:1025 ..
2181
- #: addons/gateway/carts/mycred-woocommerce.php:160 ../modules/mycred-module-
2182
- #: settings.php:674 ../modules/mycred-module-settings.php:695 ../modules/mycred-
2183
- #: module-settings.php:720
2184
- msgid "Label"
2185
  msgstr ""
2186
 
2187
- #: ../addons/email-notices/myCRED-addon-email-notices.php:1057
2188
- msgid "Reply-To Email:"
2189
  msgstr ""
2190
 
2191
- #: ../addons/email-notices/myCRED-addon-email-notices.php:1063
2192
- msgid "Save"
2193
  msgstr ""
2194
 
2195
- #: ../addons/email-notices/myCRED-addon-email-notices.php:1075
2196
- msgid "CSS Styling"
2197
  msgstr ""
2198
 
2199
- #: ../addons/email-notices/myCRED-addon-email-notices.php:1091
2200
- msgid "Site Related"
2201
  msgstr ""
2202
 
2203
- #: ../addons/email-notices/myCRED-addon-email-notices.php:1092
2204
- msgid "Your websites title"
2205
  msgstr ""
2206
 
2207
- #: ../addons/email-notices/myCRED-addon-email-notices.php:1093
2208
- msgid "Your websites address"
2209
  msgstr ""
2210
 
2211
- #: ../addons/email-notices/myCRED-addon-email-notices.php:1094
2212
- msgid "Your websites tagline (description)"
 
 
2213
  msgstr ""
2214
 
2215
- #: ../addons/email-notices/myCRED-addon-email-notices.php:1095
2216
- msgid "Your websites admin email"
2217
  msgstr ""
2218
 
2219
- #: ../addons/email-notices/myCRED-addon-email-notices.php:1096
2220
- msgid "Total number of blog members"
 
2221
  msgstr ""
2222
 
2223
- #: ../addons/email-notices/myCRED-addon-email-notices.php:1100
2224
- msgid "The users new balance"
 
2225
  msgstr ""
2226
 
2227
- #: ../addons/email-notices/myCRED-addon-email-notices.php:1101
2228
- msgid "The users old balance"
 
2229
  msgstr ""
2230
 
2231
- #: ../addons/email-notices/myCRED-addon-email-notices.php:1102
2232
- msgid "The amount of points gained or lost in this instance"
 
 
 
 
 
2233
  msgstr ""
2234
 
2235
- #: ../addons/email-notices/myCRED-addon-email-notices.php:1103
2236
- msgid "The log entry"
 
2237
  msgstr ""
2238
 
2239
- #: ../addons/email-notices/myCRED-addon-email-notices.php:1178 ../addons/email-
2240
- #: notices/myCRED-addon-email-notices.php:1181 ../addons/email-notices/myCRED-
2241
- #: addon-email-notices.php:1187
2242
- msgid "Email Notice Updated."
2243
  msgstr ""
2244
 
2245
- #: ../addons/email-notices/myCRED-addon-email-notices.php:1183
2246
- msgid "Email Notice Activated"
2247
  msgstr ""
2248
 
2249
- #: ../addons/email-notices/myCRED-addon-email-notices.php:1184
2250
- msgid "Email Notice Saved"
2251
  msgstr ""
2252
 
2253
- #: ../addons/email-notices/myCRED-addon-email-notices.php:1203
2254
- msgid ""
2255
- "Once a notice is \"published\" it becomes active! Select \"Save Draft\" if you "
2256
- "are not yet ready to use this email notice!"
2257
  msgstr ""
2258
 
2259
- #: ../addons/email-notices/myCRED-addon-email-notices.php:1205
2260
  #, php-format
2261
- msgid "This notice will become active on:<br /><strong>%1$s</strong>"
2262
  msgstr ""
2263
 
2264
- #: ../addons/email-notices/myCRED-addon-email-notices.php:1207
2265
- msgid "This email notice is active."
 
2266
  msgstr ""
2267
 
2268
- #: ../addons/email-notices/myCRED-addon-email-notices.php:1218
2269
- msgid "Settings saved."
2270
  msgstr ""
2271
 
2272
- #: ../addons/email-notices/myCRED-addon-email-notices.php:1269
2273
- msgid "Unsubscribe"
2274
  msgstr ""
2275
 
2276
- #: ../addons/email-notices/myCRED-addon-email-notices.php:1290
2277
- msgid "There are no email notifications yet."
 
2278
  msgstr ""
2279
 
2280
- #: ../addons/gateway/carts/mycred-marketpress.php:147 ../addons/gateway/event-
2281
- #: booking/mycred-eventespresso3.php:277 ../addons/gateway/event-booking/mycred-
2282
- #: eventespresso3.php:301 ../addons/gateway/event-booking/mycred-eventsmanager.
2283
- #: php:412 ../includes/mycred-admin.php:629 ../includes/mycred-admin.php:800
2284
- msgid "Current Balance"
2285
  msgstr ""
2286
 
2287
- #: ../addons/gateway/carts/mycred-marketpress.php:151 ..
2288
- #: addons/gateway/carts/mycred-wpecommerce.php:123 ../addons/gateway/event-
2289
- #: booking/mycred-eventespresso3.php:281 ../addons/gateway/event-booking/mycred-
2290
- #: eventespresso3.php:305 ../addons/gateway/event-booking/mycred-eventsmanager.
2291
- #: php:416
2292
- msgid "Total Cost"
2293
  msgstr ""
2294
 
2295
- #: ../addons/gateway/carts/mycred-marketpress.php:155 ../addons/gateway/event-
2296
- #: booking/mycred-eventespresso3.php:285 ../addons/gateway/event-booking/mycred-
2297
- #: eventespresso3.php:309
2298
- msgid "Balance After Purchase"
2299
  msgstr ""
2300
 
2301
- #: ../addons/gateway/carts/mycred-marketpress.php:182 ..
2302
- #: addons/gateway/carts/mycred-marketpress.php:231
2303
- msgid "Go Back"
2304
  msgstr ""
2305
 
2306
- #: ../addons/gateway/carts/mycred-marketpress.php:185
2307
- msgid "will be deducted from your account."
2308
  msgstr ""
2309
 
2310
- #: ../addons/gateway/carts/mycred-marketpress.php:221
2311
- #, php-format
2312
- msgid ""
2313
- "Sorry, but you can not use this gateway as your account is excluded. Please "
2314
- "<a href=\"%s\">select a different payment method</a>."
2315
  msgstr ""
2316
 
2317
- #: ../addons/gateway/carts/mycred-marketpress.php:247
2318
- msgid "Paid"
2319
  msgstr ""
2320
 
2321
- #: ../addons/gateway/carts/mycred-marketpress.php:250 ..
2322
- #: addons/gateway/carts/mycred-woocommerce.php:30 ../includes/mycred-network.php:
2323
- #: 50 ../includes/mycred-network.php:51
2324
- msgid "myCRED"
 
2325
  msgstr ""
2326
 
2327
- #: ../addons/gateway/carts/mycred-marketpress.php:356
2328
- msgid "%_singular% Balance"
 
 
2329
  msgstr ""
2330
 
2331
- #: ../addons/gateway/carts/mycred-marketpress.php:359 ..
2332
- #: addons/gateway/carts/mycred-wpecommerce.php:27
2333
- #, php-format
2334
- msgid "Payment for Order: #%order_id%"
2335
  msgstr ""
2336
 
2337
- #: ../addons/gateway/carts/mycred-marketpress.php:362
2338
- msgid "Product Sale: %post_title%"
2339
  msgstr ""
2340
 
2341
- #: ../addons/gateway/carts/mycred-marketpress.php:363
2342
- msgid "Pay using your account balance."
2343
  msgstr ""
2344
 
2345
- #: ../addons/gateway/carts/mycred-marketpress.php:364
2346
  #, php-format
2347
- msgid ""
2348
- "TOTAL amount has been deducted from your account. Your current balance is: "
2349
- "%balance_f%"
2350
  msgstr ""
2351
 
2352
- #: ../addons/gateway/carts/mycred-marketpress.php:365 ..
2353
- #: addons/gateway/carts/mycred-woocommerce.php:263
2354
- msgid "Insufficient funds."
2355
  msgstr ""
2356
 
2357
- #: ../addons/gateway/carts/mycred-marketpress.php:366
2358
  msgid ""
2359
- "You must be logged in to pay with %_plural%. Please <a "
2360
- "href=\"%login_url_here%\">login</a>."
2361
  msgstr ""
2362
 
2363
- #: ../addons/gateway/carts/mycred-marketpress.php:373
2364
- #, php-format
2365
- msgid ""
2366
- "Let your users pay for items in their shopping cart using their %s Account. "
2367
- "Note! This gateway requires your users to be logged in when making a "
2368
- "purchase!"
2369
  msgstr ""
2370
 
2371
- #: ../addons/gateway/carts/mycred-marketpress.php:376
2372
- msgid "Method Name"
2373
  msgstr ""
2374
 
2375
- #: ../addons/gateway/carts/mycred-marketpress.php:378
2376
- msgid ""
2377
- "Enter a public name for this payment method that is displayed to users - No "
2378
- "HTML"
2379
  msgstr ""
2380
 
2381
- #: ../addons/gateway/carts/mycred-marketpress.php:383
2382
- msgid "Gateway Logo URL"
2383
  msgstr ""
2384
 
2385
- #: ../addons/gateway/carts/mycred-marketpress.php:404 ..
2386
- #: addons/gateway/carts/mycred-woocommerce.php:136
2387
- #, php-format
2388
- msgid "How much is 1 %_singular% worth in %currency%?"
2389
  msgstr ""
2390
 
2391
- #: ../addons/gateway/carts/mycred-marketpress.php:409 ..
2392
- #: addons/gateway/carts/mycred-woocommerce.php:141 ..
2393
- #: addons/gateway/carts/mycred-wpecommerce.php:360 ../addons/gateway/event-
2394
- #: booking/mycred-eventespresso3.php:450 ../addons/gateway/event-booking/mycred-
2395
- #: eventsmanager-pro.php:540 ../addons/gateway/event-booking/mycred-eventsmanager.
2396
- #: php:578 ../includes/mycred-shortcodes.php:977
2397
- msgid "Exchange Rate"
2398
  msgstr ""
2399
 
2400
- #: ../addons/gateway/carts/mycred-marketpress.php:418 ..
2401
- #: addons/gateway/carts/mycred-woocommerce.php:169 ..
2402
- #: addons/gateway/carts/mycred-wpecommerce.php:364 ../addons/gateway/event-
2403
- #: booking/mycred-eventespresso3.php:462 ../addons/gateway/event-booking/mycred-
2404
- #: eventsmanager-pro.php:531 ../addons/gateway/event-booking/mycred-eventsmanager.
2405
- #: php:569
2406
- msgid "Profit Sharing"
2407
  msgstr ""
2408
 
2409
- #: ../addons/gateway/carts/mycred-marketpress.php:421
2410
- msgid "Percentage"
2411
  msgstr ""
2412
 
2413
- #: ../addons/gateway/carts/mycred-marketpress.php:423 ..
2414
- #: addons/gateway/carts/mycred-woocommerce.php:171 ..
2415
- #: addons/gateway/carts/mycred-wpecommerce.php:368 ../addons/gateway/event-
2416
- #: booking/mycred-eventespresso3.php:464 ../addons/gateway/event-booking/mycred-
2417
- #: eventsmanager-pro.php:534 ../addons/gateway/event-booking/mycred-eventsmanager.
2418
- #: php:572
2419
- msgid "Option to share sales with the product owner. Use zero to disable."
2420
  msgstr ""
2421
 
2422
- #: ../addons/gateway/carts/mycred-marketpress.php:435 ..
2423
- #: addons/gateway/carts/mycred-wpecommerce.php:375 ../addons/gateway/event-
2424
- #: booking/mycred-eventsmanager-pro.php:607 ../addons/gateway/event-
2425
- #: booking/mycred-eventsmanager.php:626
2426
- msgid "Messages"
2427
  msgstr ""
2428
 
2429
- #: ../addons/gateway/carts/mycred-marketpress.php:438 ..
2430
- #: addons/gateway/carts/mycred-wpecommerce.php:386 ../addons/gateway/event-
2431
- #: booking/mycred-eventsmanager-pro.php:617 ../addons/gateway/event-
2432
- #: booking/mycred-eventsmanager.php:636 ../plugins/mycred-hook-buddypress.php:247
2433
- msgid "Insufficient Funds"
2434
  msgstr ""
2435
 
2436
- #: ../addons/gateway/carts/mycred-marketpress.php:440
2437
- msgid "Message to show when the user can not use this gateway."
2438
  msgstr ""
2439
 
2440
- #: ../addons/gateway/carts/mycred-marketpress.php:446 ..
2441
- #: addons/gateway/carts/mycred-wpecommerce.php:382 ../addons/gateway/event-
2442
- #: booking/mycred-eventespresso3.php:490
2443
- msgid "Visitors"
2444
  msgstr ""
2445
 
2446
- #: ../addons/gateway/carts/mycred-marketpress.php:448
2447
- msgid "Message to show to buyers that are not logged in."
2448
  msgstr ""
2449
 
2450
- #: ../addons/gateway/carts/mycred-marketpress.php:454
2451
- msgid "User Instructions"
2452
  msgstr ""
2453
 
2454
- #: ../addons/gateway/carts/mycred-marketpress.php:456
2455
- msgid "Information to show users before payment."
2456
  msgstr ""
2457
 
2458
- #: ../addons/gateway/carts/mycred-marketpress.php:462
2459
- msgid "Confirmation Information"
 
 
2460
  msgstr ""
2461
 
2462
- #: ../addons/gateway/carts/mycred-marketpress.php:464
2463
- msgid "Information to display on the order confirmation page. - HTML allowed"
2464
  msgstr ""
2465
 
2466
- #: ../addons/gateway/carts/mycred-marketpress.php:470
2467
- msgid "Order Confirmation Email"
2468
  msgstr ""
2469
 
2470
- #: ../addons/gateway/carts/mycred-marketpress.php:472
2471
- #, php-format
2472
- msgid ""
2473
- "This is the email text to send to those who have made %s checkouts. It "
2474
- "overrides the default order checkout email. These codes will be replaced "
2475
- "with order details: CUSTOMERNAME, ORDERID, ORDERINFO, SHIPPINGINFO, "
2476
- "PAYMENTINFO, TOTAL, TRACKINGURL. No HTML allowed."
2477
- msgstr ""
2478
-
2479
- #: ../addons/gateway/carts/mycred-woocommerce.php:31
2480
- msgid "Let users pay using their myCRED balance."
2481
  msgstr ""
2482
 
2483
- #: ../addons/gateway/carts/mycred-woocommerce.php:85
2484
- msgid "Enable/Disable"
2485
  msgstr ""
2486
 
2487
- #: ../addons/gateway/carts/mycred-woocommerce.php:87
2488
- msgid "Enable myCRED Payment"
2489
  msgstr ""
2490
 
2491
- #: ../addons/gateway/carts/mycred-woocommerce.php:89
2492
- msgid ""
2493
- "Users who are not logged in or excluded from using myCRED will not have "
2494
- "access to this gateway!"
2495
  msgstr ""
2496
 
2497
- #: ../addons/gateway/carts/mycred-woocommerce.php:94
2498
- msgid "Title to show for this payment option."
2499
  msgstr ""
2500
 
2501
- #: ../addons/gateway/carts/mycred-woocommerce.php:95
2502
- msgid "Pay with myCRED"
2503
  msgstr ""
2504
 
2505
- #: ../addons/gateway/carts/mycred-woocommerce.php:99
2506
- msgid "Customer Message"
2507
  msgstr ""
2508
 
2509
- #: ../addons/gateway/carts/mycred-woocommerce.php:110 ..
2510
- #: addons/gateway/carts/mycred-woocommerce.php:182
2511
- msgid "Refund Log Template"
2512
  msgstr ""
2513
 
2514
- #: ../addons/gateway/carts/mycred-woocommerce.php:122
2515
- msgid "Select the point type users can use to pay."
2516
  msgstr ""
2517
 
2518
- #: ../addons/gateway/carts/mycred-woocommerce.php:148
2519
- msgid "Show Total"
 
2520
  msgstr ""
2521
 
2522
- #: ../addons/gateway/carts/mycred-woocommerce.php:150
2523
- msgid "Show the final price in %_plural% ."
 
2524
  msgstr ""
2525
 
2526
- #: ../addons/gateway/carts/mycred-woocommerce.php:153
2527
- msgid "Show in Cart"
 
 
 
 
2528
  msgstr ""
2529
 
2530
- #: ../addons/gateway/carts/mycred-woocommerce.php:154
2531
- msgid "Show on Checkout Page"
 
2532
  msgstr ""
2533
 
2534
- #: ../addons/gateway/carts/mycred-woocommerce.php:155
2535
- msgid "Show in Cart and on Checkout Page"
 
2536
  msgstr ""
2537
 
2538
- #: ../addons/gateway/carts/mycred-woocommerce.php:162
2539
- msgid "Order Total in %_plural%"
2540
  msgstr ""
2541
 
2542
- #: ../addons/gateway/carts/mycred-woocommerce.php:178
2543
- msgid "Log entry template for profit sharing."
2544
  msgstr ""
2545
 
2546
- #: ../addons/gateway/carts/mycred-woocommerce.php:184
2547
- msgid "Log entry template for refunds of profit shares."
2548
  msgstr ""
2549
 
2550
- #: ../addons/gateway/carts/mycred-woocommerce.php:214
2551
- msgid "myCRED Payment"
 
 
2552
  msgstr ""
2553
 
2554
- #: ../addons/gateway/carts/mycred-woocommerce.php:215
2555
  #, php-format
2556
- msgid ""
2557
- "Allows users to pay using their myCRED %_singular% balance. Please note that "
2558
- "users with insufficient funds and users who are not logged in will not see "
2559
- "this payment gateway on the checkout page."
2560
  msgstr ""
2561
 
2562
- #: ../addons/gateway/carts/mycred-woocommerce.php:240
2563
- msgid "You must be logged in to pay with %_plural%"
 
2564
  msgstr ""
2565
 
2566
- #: ../addons/gateway/carts/mycred-woocommerce.php:246
2567
- msgid "You can not use this gateway. Please try a different payment option."
 
2568
  msgstr ""
2569
 
2570
- #: ../addons/gateway/carts/mycred-woocommerce.php:360
2571
- #, php-format
2572
- msgctxt "%s = Point amount formatted"
2573
- msgid "Refunded %s"
2574
  msgstr ""
2575
 
2576
- #: ../addons/gateway/carts/mycred-woocommerce.php:408
2577
- msgid "Your account has successfully been charged."
2578
  msgstr ""
2579
 
2580
- #: ../addons/gateway/carts/mycred-woocommerce.php:741 ..
2581
- #: addons/gateway/carts/mycred-wpecommerce.php:131
2582
- msgid "Your current balance"
2583
  msgstr ""
2584
 
2585
- #: ../addons/gateway/carts/mycred-wpecommerce.php:30
2586
- msgid "Store sale"
2587
  msgstr ""
2588
 
2589
- #: ../addons/gateway/carts/mycred-wpecommerce.php:32
2590
- msgid "You must be logged in to use this gateway"
 
2591
  msgstr ""
2592
 
2593
- #: ../addons/gateway/carts/mycred-wpecommerce.php:33
2594
- msgid "Insufficient Funds."
 
2595
  msgstr ""
2596
 
2597
- #: ../addons/gateway/carts/mycred-wpecommerce.php:34
2598
- msgid "Deduct the amount from your balance."
 
 
 
 
 
 
 
 
 
 
 
2599
  msgstr ""
2600
 
2601
- #: ../addons/gateway/carts/mycred-wpecommerce.php:199
2602
- msgid "You can not use this gateway."
2603
  msgstr ""
2604
 
2605
- #: ../addons/gateway/carts/mycred-wpecommerce.php:344
2606
- msgid "Log Template for Payments"
2607
  msgstr ""
2608
 
2609
- #: ../addons/gateway/carts/mycred-wpecommerce.php:361
2610
- #, php-format
2611
- msgid "How much is 1 %s worth in %s"
2612
  msgstr ""
2613
 
2614
- #: ../addons/gateway/carts/mycred-wpecommerce.php:378
2615
- msgid "Instructions"
2616
  msgstr ""
2617
 
2618
- #: ../addons/gateway/carts/mycred-wpecommerce.php:379
2619
- msgid ""
2620
- "Optional instructions to show users when selecting this gateway. Leave empty "
2621
- "to hide."
2622
  msgstr ""
2623
 
2624
- #: ../addons/gateway/carts/mycred-wpecommerce.php:383
2625
- msgid "Message to show visitors who are not logged in."
2626
  msgstr ""
2627
 
2628
- #: ../addons/gateway/carts/mycred-wpecommerce.php:387
2629
- msgid ""
2630
- "Message to show when users does not have enough %plural% to pay using this "
2631
- "gateway."
2632
  msgstr ""
2633
 
2634
- #: ../addons/gateway/event-booking/mycred-eventespresso3.php:32
2635
- msgid "Payment for Event Registration"
 
2636
  msgstr ""
2637
 
2638
- #: ../addons/gateway/event-booking/mycred-eventespresso3.php:343
2639
  #, php-format
2640
- msgid "Activate %s"
2641
  msgstr ""
2642
 
2643
- #: ../addons/gateway/event-booking/mycred-eventespresso3.php:351
2644
- #, php-format
2645
- msgid "Deactivate %s"
2646
  msgstr ""
2647
 
2648
- #: ../addons/gateway/event-booking/mycred-eventespresso3.php:399 ..
2649
- #: addons/gateway/event-booking/mycred-eventsmanager-pro.php:490 ..
2650
- #: addons/gateway/event-booking/mycred-eventsmanager.php:524
2651
- #, php-format
2652
- msgid "How many %s is 1 %s worth?"
2653
  msgstr ""
2654
 
2655
- #: ../addons/gateway/event-booking/mycred-eventespresso3.php:407
2656
- msgid "Gateways Settings Successfully Updated"
2657
  msgstr ""
2658
 
2659
- #: ../addons/gateway/event-booking/mycred-eventespresso3.php:415 ..
2660
- #: addons/gateway/event-booking/mycred-eventsmanager-pro.php:576 ..
2661
- #: addons/gateway/event-booking/mycred-eventsmanager.php:602
2662
- msgid "Labels"
2663
  msgstr ""
2664
 
2665
- #: ../addons/gateway/event-booking/mycred-eventespresso3.php:418
2666
- msgid "Gateway Title"
2667
  msgstr ""
2668
 
2669
- #: ../addons/gateway/event-booking/mycred-eventespresso3.php:420
2670
- msgid "Title to show on Payment page"
2671
  msgstr ""
2672
 
2673
- #: ../addons/gateway/event-booking/mycred-eventespresso3.php:423
2674
- msgid "Payment Type"
2675
  msgstr ""
2676
 
2677
- #: ../addons/gateway/event-booking/mycred-eventespresso3.php:425
2678
- msgid "Title to show on receipts and logs"
2679
  msgstr ""
2680
 
2681
- #: ../addons/gateway/event-booking/mycred-eventespresso3.php:428 ..
2682
- #: addons/gateway/event-booking/mycred-eventsmanager-pro.php:593 ..
2683
- #: addons/gateway/event-booking/mycred-eventsmanager.php:619 ../addons/sell-
2684
- #: content/myCRED-addon-sell-content.php:460 ../addons/sell-content/myCRED-addon-
2685
- #: sell-content.php:687 ../addons/transfer/includes/mycred-transfer-widgets.php:130
2686
- msgid "Button Label"
2687
  msgstr ""
2688
 
2689
- #: ../addons/gateway/event-booking/mycred-eventespresso3.php:430
2690
- msgid "Pay Button"
 
 
2691
  msgstr ""
2692
 
2693
- #: ../addons/gateway/event-booking/mycred-eventespresso3.php:447 ..
2694
- #: addons/gateway/event-booking/mycred-eventsmanager-pro.php:139 ..
2695
- #: addons/gateway/event-booking/mycred-eventsmanager-pro.php:142 ..
2696
- #: addons/gateway/event-booking/mycred-eventsmanager.php:336 ..
2697
- #: addons/gateway/event-booking/mycred-eventsmanager.php:339 ../addons/sell-
2698
- #: content/myCRED-addon-sell-content.php:451 ../addons/sell-content/myCRED-addon-
2699
- #: sell-content.php:683
2700
- msgid "Price"
2701
  msgstr ""
2702
 
2703
- #: ../addons/gateway/event-booking/mycred-eventespresso3.php:455
2704
- msgid "Important!"
2705
  msgstr ""
2706
 
2707
- #: ../addons/gateway/event-booking/mycred-eventespresso3.php:457
2708
- msgid ""
2709
- "You can disable purchases using this gateway by adding a custom Event Meta: "
2710
- "<code>mycred_no_sale</code>"
2711
  msgstr ""
2712
 
2713
- #: ../addons/gateway/event-booking/mycred-eventespresso3.php:458
2714
- msgid "Users must be logged in to use this gateway!"
2715
  msgstr ""
2716
 
2717
- #: ../addons/gateway/event-booking/mycred-eventespresso3.php:467 ..
2718
- #: modules/mycred-module-log.php:23 ../modules/mycred-module-log.php:24
2719
- msgid "Log"
2720
  msgstr ""
2721
 
2722
- #: ../addons/gateway/event-booking/mycred-eventespresso3.php:470 ..
2723
- #: includes/mycred-admin.php:761 ../includes/mycred-admin.php:805
2724
- msgid "Log Entry"
2725
  msgstr ""
2726
 
2727
- #: ../addons/gateway/event-booking/mycred-eventespresso3.php:477 ../addons/sell-
2728
- #: content/myCRED-addon-sell-content.php:474
2729
- msgid "Templates"
2730
  msgstr ""
2731
 
2732
- #: ../addons/gateway/event-booking/mycred-eventespresso3.php:480
2733
- msgid "Solvent users"
 
2734
  msgstr ""
2735
 
2736
- #: ../addons/gateway/event-booking/mycred-eventespresso3.php:482
2737
- msgid ""
2738
- "Message to show users on the payment page before they are charged. Leave "
2739
- "empty to hide."
2740
  msgstr ""
2741
 
2742
- #: ../addons/gateway/event-booking/mycred-eventespresso3.php:485
2743
- msgid "Insolvent users"
2744
  msgstr ""
2745
 
2746
- #: ../addons/gateway/event-booking/mycred-eventespresso3.php:487
2747
- msgid "Message to show users who do not have enough points to pay."
2748
  msgstr ""
2749
 
2750
- #: ../addons/gateway/event-booking/mycred-eventespresso3.php:492
2751
- msgid "Message to show visitors (users not logged in) on the payment page."
2752
  msgstr ""
2753
 
2754
- #: ../addons/gateway/event-booking/mycred-eventsmanager-pro.php:33 ..
2755
- #: addons/gateway/event-booking/mycred-eventsmanager.php:29
2756
- msgid "Payment for tickets to %link_with_title%"
2757
  msgstr ""
2758
 
2759
- #: ../addons/gateway/event-booking/mycred-eventsmanager-pro.php:34 ..
2760
- #: addons/gateway/event-booking/mycred-eventsmanager.php:30
2761
- msgid "Ticket refund for %link_with_title%"
2762
  msgstr ""
2763
 
2764
- #: ../addons/gateway/event-booking/mycred-eventsmanager-pro.php:38 ..
2765
- #: addons/gateway/event-booking/mycred-eventsmanager.php:34
2766
- #, php-format
2767
- msgid "Pay using your %_plural% balance"
2768
  msgstr ""
2769
 
2770
- #: ../addons/gateway/event-booking/mycred-eventsmanager-pro.php:40 ..
2771
- #: addons/gateway/event-booking/mycred-eventsmanager.php:36
2772
- msgid "Pay"
2773
  msgstr ""
2774
 
2775
- #: ../addons/gateway/event-booking/mycred-eventsmanager-pro.php:41
2776
- msgid "%plural% Cost"
2777
  msgstr ""
2778
 
2779
- #: ../addons/gateway/event-booking/mycred-eventsmanager-pro.php:44 ..
2780
- #: addons/gateway/event-booking/mycred-eventsmanager.php:39
2781
- msgid "Thank you for your payment!"
2782
  msgstr ""
2783
 
2784
- #: ../addons/gateway/event-booking/mycred-eventsmanager-pro.php:45 ..
2785
- #: addons/gateway/event-booking/mycred-eventsmanager.php:40
2786
- msgid "I'm sorry but you can not pay for these tickets using %_plural%"
2787
  msgstr ""
2788
 
2789
- #: ../addons/gateway/event-booking/mycred-eventsmanager-pro.php:136 ..
2790
- #: addons/gateway/event-booking/mycred-eventsmanager.php:333
2791
- msgid "Ticket Type"
2792
  msgstr ""
2793
 
2794
- #: ../addons/gateway/event-booking/mycred-eventsmanager-pro.php:145 ..
2795
- #: addons/gateway/event-booking/mycred-eventsmanager.php:342
2796
- msgid "Spaces"
2797
  msgstr ""
2798
 
2799
- #: ../addons/gateway/event-booking/mycred-eventsmanager-pro.php:193
2800
- msgid "Your Balance"
2801
  msgstr ""
2802
 
2803
- #: ../addons/gateway/event-booking/mycred-eventsmanager-pro.php:258
2804
- msgid "You can not pay using this gateway."
2805
  msgstr ""
2806
 
2807
- #: ../addons/gateway/event-booking/mycred-eventsmanager-pro.php:393
2808
- msgid "Reject"
2809
  msgstr ""
2810
 
2811
- #: ../addons/gateway/event-booking/mycred-eventsmanager-pro.php:397 ..
2812
- #: modules/mycred-module-log.php:563 ../modules/mycred-module-settings.php:678 ..
2813
- #: modules/mycred-module-settings.php:699
2814
- msgid "Delete"
2815
  msgstr ""
2816
 
2817
- #: ../addons/gateway/event-booking/mycred-eventsmanager-pro.php:402
2818
- msgid "Edit/View"
2819
  msgstr ""
2820
 
2821
- #: ../addons/gateway/event-booking/mycred-eventsmanager-pro.php:518 ..
2822
- #: addons/gateway/event-booking/mycred-eventsmanager.php:542
2823
- msgid "Disabled - Users CAN NOT pay for tickets using %plural%."
2824
  msgstr ""
2825
 
2826
- #: ../addons/gateway/event-booking/mycred-eventsmanager-pro.php:519 ..
2827
- #: addons/gateway/event-booking/mycred-eventsmanager.php:543
2828
- msgid "Single - Users can ONLY pay for tickets using %plural%."
2829
  msgstr ""
2830
 
2831
- #: ../addons/gateway/event-booking/mycred-eventsmanager-pro.php:520 ..
2832
- #: addons/gateway/event-booking/mycred-eventsmanager.php:544
2833
- msgid "Multi - Users can pay for tickets using other gateways or %plural%."
2834
  msgstr ""
2835
 
2836
- #: ../addons/gateway/event-booking/mycred-eventsmanager-pro.php:524 ..
2837
- #: addons/gateway/event-booking/mycred-eventsmanager-pro.php:557 ..
2838
- #: addons/gateway/event-booking/mycred-eventsmanager.php:562 ..
2839
- #: addons/gateway/event-booking/mycred-eventsmanager.php:595
2840
- msgid "Refunds"
2841
  msgstr ""
2842
 
2843
- #: ../addons/gateway/event-booking/mycred-eventsmanager-pro.php:527
2844
- msgid ""
2845
- "The percentage of the paid amount to refund if a user cancels their booking. "
2846
- "Use zero for no refunds. No refunds are given to \"Rejected\" bookings!"
2847
  msgstr ""
2848
 
2849
- #: ../addons/gateway/event-booking/mycred-eventsmanager-pro.php:547 ..
2850
- #: addons/gateway/event-booking/mycred-eventsmanager.php:585
2851
- msgid "Log Templates"
2852
  msgstr ""
2853
 
2854
- #: ../addons/gateway/event-booking/mycred-eventsmanager-pro.php:550 ..
2855
- #: addons/gateway/event-booking/mycred-eventsmanager.php:588
2856
- msgid "Purchases"
2857
  msgstr ""
2858
 
2859
- #: ../addons/gateway/event-booking/mycred-eventsmanager-pro.php:579 ..
2860
- #: addons/gateway/event-booking/mycred-eventsmanager.php:605
2861
- msgid "Payment Link Label"
2862
  msgstr ""
2863
 
2864
- #: ../addons/gateway/event-booking/mycred-eventsmanager-pro.php:582 ..
2865
- #: addons/gateway/event-booking/mycred-eventsmanager.php:608
2866
- msgid ""
2867
- "The payment link shows / hides the payment form under \"My Bookings\". No HTML "
2868
- "allowed."
2869
  msgstr ""
2870
 
2871
- #: ../addons/gateway/event-booking/mycred-eventsmanager-pro.php:586 ..
2872
- #: addons/gateway/event-booking/mycred-eventsmanager.php:612
2873
- msgid "Payment Header"
2874
  msgstr ""
2875
 
2876
- #: ../addons/gateway/event-booking/mycred-eventsmanager-pro.php:589 ..
2877
- #: addons/gateway/event-booking/mycred-eventsmanager.php:615
2878
- msgid "Shown on top of the payment form. No HTML allowed."
2879
  msgstr ""
2880
 
2881
- #: ../addons/gateway/event-booking/mycred-eventsmanager-pro.php:596 ..
2882
- #: addons/gateway/event-booking/mycred-eventsmanager.php:622
2883
- msgid "The button label for payments. No HTML allowed!"
2884
  msgstr ""
2885
 
2886
- #: ../addons/gateway/event-booking/mycred-eventsmanager-pro.php:600
2887
- msgid "Cart & Checkout Cost"
2888
  msgstr ""
2889
 
2890
- #: ../addons/gateway/event-booking/mycred-eventsmanager-pro.php:603
2891
- msgid "Label for cost in %plural%"
2892
  msgstr ""
2893
 
2894
- #: ../addons/gateway/event-booking/mycred-eventsmanager-pro.php:610 ..
2895
- #: addons/gateway/event-booking/mycred-eventsmanager.php:629
2896
- msgid "Successful Payments"
2897
  msgstr ""
2898
 
2899
- #: ../addons/gateway/event-booking/mycred-eventsmanager-pro.php:613 ..
2900
- #: addons/gateway/event-booking/mycred-eventsmanager-pro.php:620 ..
2901
- #: addons/gateway/event-booking/mycred-eventsmanager.php:632 ..
2902
- #: addons/gateway/event-booking/mycred-eventsmanager.php:639
2903
- msgid "No HTML allowed!"
2904
  msgstr ""
2905
 
2906
- #: ../addons/gateway/event-booking/mycred-eventsmanager.php:420
2907
- msgid "Balance After Payment"
2908
  msgstr ""
2909
 
2910
- #: ../addons/gateway/event-booking/mycred-eventsmanager.php:532
2911
- msgid "Click to toggle"
2912
  msgstr ""
2913
 
2914
- #: ../addons/gateway/event-booking/mycred-eventsmanager.php:533
2915
- #, php-format
2916
- msgid "%s Payments"
2917
  msgstr ""
2918
 
2919
- #: ../addons/gateway/event-booking/mycred-eventsmanager.php:565
2920
- msgid ""
2921
- "The percentage of the paid amount to refund if a booking gets cancelled. Use "
2922
- "zero for no refunds. No refunds are given to \"Rejected\" bookings."
2923
  msgstr ""
2924
 
2925
- #: ../addons/notifications/myCRED-addon-notifications.php:193
2926
- msgid "Notifications"
2927
  msgstr ""
2928
 
2929
- #: ../addons/notifications/myCRED-addon-notifications.php:195
2930
- msgid "Styling"
2931
  msgstr ""
2932
 
2933
- #: ../addons/notifications/myCRED-addon-notifications.php:198
2934
- msgid "Use the included CSS Styling for notifications."
2935
  msgstr ""
2936
 
2937
- #: ../addons/notifications/myCRED-addon-notifications.php:201 ..
2938
- #: addons/ranks/myCRED-addon-ranks.php:1427 ../addons/ranks/myCRED-addon-ranks.
2939
- #: php:1472 ../modules/mycred-module-buddypress.php:464
2940
- msgid "Template"
2941
  msgstr ""
2942
 
2943
- #: ../addons/notifications/myCRED-addon-notifications.php:205
2944
- #, php-format
2945
- msgid "Use %entry% to show the log entry in the notice and %amount% for the amount."
2946
  msgstr ""
2947
 
2948
- #: ../addons/notifications/myCRED-addon-notifications.php:205
2949
- msgid "Restore to default"
2950
  msgstr ""
2951
 
2952
- #: ../addons/notifications/myCRED-addon-notifications.php:208
2953
- msgid "Transient Lifespan"
2954
  msgstr ""
2955
 
2956
- #: ../addons/notifications/myCRED-addon-notifications.php:212
2957
- msgid ""
2958
- "The number of days a users notification is saved before being automatically "
2959
- "deleted."
2960
  msgstr ""
2961
 
2962
- #: ../addons/notifications/myCRED-addon-notifications.php:215
2963
- msgid "Duration"
2964
  msgstr ""
2965
 
2966
- #: ../addons/notifications/myCRED-addon-notifications.php:219
2967
- msgid ""
2968
- "Number of seconds before a notice is automatically removed after being shown "
2969
- "to user. Use zero to disable."
2970
  msgstr ""
2971
 
2972
- #: ../addons/ranks/myCRED-addon-ranks.php:212 ../addons/ranks/myCRED-addon-ranks.
2973
- #: php:213 ../addons/ranks/myCRED-addon-ranks.php:443 ../addons/ranks/myCRED-
2974
- #: addon-ranks.php:452 ../addons/ranks/myCRED-addon-ranks.php:458 ..
2975
- #: addons/ranks/myCRED-addon-ranks.php:833 ../addons/ranks/myCRED-addon-ranks.
2976
- #: php:1310 ../addons/ranks/myCRED-addon-ranks.php:1601
2977
- msgid "Ranks"
2978
  msgstr ""
2979
 
2980
- #: ../addons/ranks/myCRED-addon-ranks.php:424
2981
- msgid "Warning! All ranks will be deleted! This can not be undone!"
2982
  msgstr ""
2983
 
2984
- #: ../addons/ranks/myCRED-addon-ranks.php:425
2985
- msgid "Are you sure you want to re-assign user ranks?"
2986
  msgstr ""
2987
 
2988
- #: ../addons/ranks/myCRED-addon-ranks.php:441
2989
- #, php-format
2990
- msgid "Ranks for %s"
2991
  msgstr ""
2992
 
2993
- #: ../addons/ranks/myCRED-addon-ranks.php:447 ../addons/ranks/myCRED-addon-ranks.
2994
- #: php:833
2995
- msgid "Rank"
2996
  msgstr ""
2997
 
2998
- #: ../addons/ranks/myCRED-addon-ranks.php:449
2999
- msgid "Add New Rank"
3000
  msgstr ""
3001
 
3002
- #: ../addons/ranks/myCRED-addon-ranks.php:450
3003
- msgid "Edit Rank"
3004
  msgstr ""
3005
 
3006
- #: ../addons/ranks/myCRED-addon-ranks.php:451
3007
- msgid "New Rank"
3008
  msgstr ""
3009
 
3010
- #: ../addons/ranks/myCRED-addon-ranks.php:453
3011
- msgid "View Rank"
3012
  msgstr ""
3013
 
3014
- #: ../addons/ranks/myCRED-addon-ranks.php:454
3015
- msgid "Search Ranks"
3016
  msgstr ""
3017
 
3018
- #: ../addons/ranks/myCRED-addon-ranks.php:455
3019
- msgid "No ranks found"
3020
  msgstr ""
3021
 
3022
- #: ../addons/ranks/myCRED-addon-ranks.php:456
3023
- msgid "No ranks found in Trash"
3024
  msgstr ""
3025
 
3026
- #: ../addons/ranks/myCRED-addon-ranks.php:540
3027
- #, php-format
3028
- msgid "Completed - Total of %d users effected"
3029
  msgstr ""
3030
 
3031
- #: ../addons/ranks/myCRED-addon-ranks.php:977 ../addons/ranks/myCRED-addon-ranks.
3032
- #: php:978 ../addons/ranks/myCRED-addon-ranks.php:979 ../addons/ranks/myCRED-
3033
- #: addon-ranks.php:980 ../addons/ranks/myCRED-addon-ranks.php:981 ..
3034
- #: addons/ranks/myCRED-addon-ranks.php:982 ../addons/ranks/myCRED-addon-ranks.
3035
- #: php:985 ../addons/ranks/myCRED-addon-ranks.php:986
3036
- msgid "Rank Updated."
3037
  msgstr ""
3038
 
3039
- #: ../addons/ranks/myCRED-addon-ranks.php:983
3040
- msgid "Rank Enabled"
3041
  msgstr ""
3042
 
3043
- #: ../addons/ranks/myCRED-addon-ranks.php:984
3044
- msgid "Rank Saved"
3045
  msgstr ""
3046
 
3047
- #: ../addons/ranks/myCRED-addon-ranks.php:1023
3048
- #, php-format
3049
- msgid "<strong>Rank:</strong> %s"
3050
  msgstr ""
3051
 
3052
- #: ../addons/ranks/myCRED-addon-ranks.php:1039 ../addons/ranks/myCRED-addon-ranks.
3053
- #: php:1122
3054
- msgid "Rank Title"
3055
  msgstr ""
3056
 
3057
- #: ../addons/ranks/myCRED-addon-ranks.php:1040
3058
- msgid "Logo"
3059
  msgstr ""
3060
 
3061
- #: ../addons/ranks/myCRED-addon-ranks.php:1041
3062
- msgid "Requirement"
3063
  msgstr ""
3064
 
3065
- #: ../addons/ranks/myCRED-addon-ranks.php:1067
3066
- msgid "No Logo Set"
3067
  msgstr ""
3068
 
3069
- #: ../addons/ranks/myCRED-addon-ranks.php:1082 ../addons/ranks/myCRED-addon-ranks.
3070
- #: php:1087
3071
- msgid "Any Value"
3072
  msgstr ""
3073
 
3074
- #: ../addons/ranks/myCRED-addon-ranks.php:1089
3075
- msgid "Maximum %plural%"
3076
  msgstr ""
3077
 
3078
- #: ../addons/ranks/myCRED-addon-ranks.php:1137
3079
- msgid "Rank Settings"
3080
  msgstr ""
3081
 
3082
- #: ../addons/ranks/myCRED-addon-ranks.php:1191
3083
- msgid "Minimum %plural% to reach this rank"
3084
  msgstr ""
3085
 
3086
- #: ../addons/ranks/myCRED-addon-ranks.php:1195
3087
- msgid "Maximum %plural% to be included in this rank"
3088
  msgstr ""
3089
 
3090
- #: ../addons/ranks/myCRED-addon-ranks.php:1213
3091
- msgid "All Published Ranks"
3092
  msgstr ""
3093
 
3094
- #: ../addons/ranks/myCRED-addon-ranks.php:1223 ../addons/ranks/myCRED-addon-ranks.
3095
- #: php:1225
3096
- msgid "Not Set"
3097
  msgstr ""
3098
 
3099
- #: ../addons/ranks/myCRED-addon-ranks.php:1231
3100
- msgid "No Ranks found"
3101
  msgstr ""
3102
 
3103
- #: ../addons/ranks/myCRED-addon-ranks.php:1315
3104
- msgid "Rank Features"
3105
  msgstr ""
3106
 
3107
- #: ../addons/ranks/myCRED-addon-ranks.php:1319
3108
- msgid "%plural% requirement"
3109
  msgstr ""
3110
 
3111
- #: ../addons/ranks/myCRED-addon-ranks.php:1320
3112
- msgid "Featured Image (Logo)"
3113
  msgstr ""
3114
 
3115
- #: ../addons/ranks/myCRED-addon-ranks.php:1322
3116
- msgid "Content"
 
3117
  msgstr ""
3118
 
3119
- #: ../addons/ranks/myCRED-addon-ranks.php:1324
3120
- msgid "Excerpt"
3121
  msgstr ""
3122
 
3123
- #: ../addons/ranks/myCRED-addon-ranks.php:1326
3124
- msgid "Comments"
 
3125
  msgstr ""
3126
 
3127
- #: ../addons/ranks/myCRED-addon-ranks.php:1328
3128
- msgid "Page Attributes"
 
3129
  msgstr ""
3130
 
3131
- #: ../addons/ranks/myCRED-addon-ranks.php:1330
3132
- msgid "Custom Fields"
 
3133
  msgstr ""
3134
 
3135
- #: ../addons/ranks/myCRED-addon-ranks.php:1334
3136
- msgid "Public"
 
3137
  msgstr ""
3138
 
3139
- #: ../addons/ranks/myCRED-addon-ranks.php:1338
3140
- msgid ""
3141
- "If you want to create a template archive for each rank, you must select to "
3142
- "have ranks public. Defaults to disabled."
3143
  msgstr ""
3144
 
3145
- #: ../addons/ranks/myCRED-addon-ranks.php:1341
3146
- msgid "Archive URL"
3147
  msgstr ""
3148
 
3149
- #: ../addons/ranks/myCRED-addon-ranks.php:1345
3150
- msgid "Ignored if Ranks are not public"
3151
  msgstr ""
3152
 
3153
- #: ../addons/ranks/myCRED-addon-ranks.php:1348
3154
- msgid "Display Order"
3155
  msgstr ""
3156
 
3157
- #: ../addons/ranks/myCRED-addon-ranks.php:1356
3158
- msgid "Ascending - Lowest rank to highest"
3159
  msgstr ""
3160
 
3161
- #: ../addons/ranks/myCRED-addon-ranks.php:1357
3162
- msgid "Descending - Highest rank to lowest"
 
 
 
 
 
 
 
 
 
 
 
3163
  msgstr ""
3164
 
3165
- #: ../addons/ranks/myCRED-addon-ranks.php:1368
 
 
3166
  msgid ""
3167
- "Select in what order ranks should be displayed in your admin area and/or "
3168
- "front if ranks are \"Public\""
3169
  msgstr ""
3170
 
3171
- #: ../addons/ranks/myCRED-addon-ranks.php:1374
3172
- msgid "Rank Basis"
 
 
3173
  msgstr ""
3174
 
3175
- #: ../addons/ranks/myCRED-addon-ranks.php:1377
3176
- msgid "Users are ranked according to their current balance."
 
3177
  msgstr ""
3178
 
3179
- #: ../addons/ranks/myCRED-addon-ranks.php:1380
3180
- msgid ""
3181
- "Users are ranked according to the total amount of %_plural% they have "
3182
- "accumulated."
3183
  msgstr ""
3184
 
3185
- #: ../addons/ranks/myCRED-addon-ranks.php:1384 ../addons/ranks/myCRED-addon-ranks.
3186
- #: php:1389
3187
- msgid "Calculate Totals"
3188
  msgstr ""
3189
 
3190
- #: ../addons/ranks/myCRED-addon-ranks.php:1387
3191
- msgid ""
3192
- "Use this button to calculate or recalculate your users totals. If not used, "
3193
- "the users current balance will be used as a starting point."
3194
  msgstr ""
3195
 
3196
- #: ../addons/ranks/myCRED-addon-ranks.php:1387
3197
- msgid ""
3198
- "Once a users total has been calculated, they will be assigned to their "
3199
- "appropriate roles. For this reason, it is highly recommended that you first "
3200
- "setup your ranks!"
3201
  msgstr ""
3202
 
3203
- #: ../addons/ranks/myCRED-addon-ranks.php:1388
3204
- msgid ""
3205
- "Depending on your log size and number of users this process may take a while."
3206
- " Please do not leave, click \"Update Settings\" or re-fresh this page until "
3207
- "this is completed!"
3208
  msgstr ""
3209
 
3210
- #: ../addons/ranks/myCRED-addon-ranks.php:1405 ../addons/ranks/myCRED-addon-ranks.
3211
- #: php:1450 ../modules/mycred-module-buddypress.php:424
3212
- msgid "Do not show."
3213
  msgstr ""
3214
 
3215
- #: ../addons/ranks/myCRED-addon-ranks.php:1406
3216
- msgid "Include in Profile Header."
3217
  msgstr ""
3218
 
3219
- #: ../addons/ranks/myCRED-addon-ranks.php:1408
3220
- msgid "Include under the \"Profile\" tab and Profile Header."
 
 
3221
  msgstr ""
3222
 
3223
- #: ../addons/ranks/myCRED-addon-ranks.php:1412
3224
- msgid "Rank in BuddyPress"
3225
  msgstr ""
3226
 
3227
- #: ../addons/ranks/myCRED-addon-ranks.php:1429 ../addons/ranks/myCRED-addon-ranks.
3228
- #: php:1474
3229
- #, php-format
3230
- msgid ""
3231
- "Template to use when showing a users Rank in BuddyPress. Use %rank_title% "
3232
- "for the title and %rank_logo% to show the rank logo. HTML is allowed."
 
3233
  msgstr ""
3234
 
3235
- #: ../addons/ranks/myCRED-addon-ranks.php:1451
3236
- msgid "Include in Topic Replies"
 
3237
  msgstr ""
3238
 
3239
- #: ../addons/ranks/myCRED-addon-ranks.php:1453
3240
- msgid "Include in Topic Replies and Profile"
 
3241
  msgstr ""
3242
 
3243
- #: ../addons/ranks/myCRED-addon-ranks.php:1457
3244
- msgid "Rank in bbPress"
 
 
 
3245
  msgstr ""
3246
 
3247
- #: ../addons/ranks/myCRED-addon-ranks.php:1536
3248
- msgid "Script Communication Error"
3249
  msgstr ""
3250
 
3251
- #: ../addons/ranks/myCRED-addon-ranks.php:1604 ../modules/mycred-module-settings.
3252
- #: php:632
3253
- msgid "User Meta Key"
3254
  msgstr ""
3255
 
3256
- #: ../addons/ranks/myCRED-addon-ranks.php:1608
3257
- msgid "No. of ranks"
 
 
 
3258
  msgstr ""
3259
 
3260
- #: ../addons/ranks/myCRED-addon-ranks.php:1613
3261
- msgid "Remove All Ranks"
 
3262
  msgstr ""
3263
 
3264
- #: ../addons/ranks/myCRED-addon-ranks.php:1613
3265
- msgid "Assign Ranks to Users"
 
 
3266
  msgstr ""
3267
 
3268
- #: ../addons/ranks/includes/mycred-rank-functions.php:257
3269
- msgid "mycred_get_users_rank() : Missing required user id"
 
3270
  msgstr ""
3271
 
3272
- #: ../addons/ranks/includes/mycred-rank-functions.php:270
3273
- msgid "no rank"
 
3274
  msgstr ""
3275
 
3276
- #: ../addons/ranks/includes/mycred-rank-shortcodes.php:115 ..
3277
- #: addons/ranks/includes/mycred-rank-shortcodes.php:202
3278
- msgid "No users found with this rank"
3279
  msgstr ""
3280
 
3281
- #: ../addons/ranks/includes/mycred-rank-shortcodes.php:122 ../includes/mycred-
3282
- #: shortcodes.php:525
3283
- msgid "error"
3284
  msgstr ""
3285
 
3286
- #: ../addons/ranks/includes/mycred-rank-shortcodes.php:122
3287
- msgid "Rank ID is required!"
3288
  msgstr ""
3289
 
3290
- #: ../addons/sell-content/myCRED-addon-sell-content.php:74
3291
- msgid "Hours"
 
3292
  msgstr ""
3293
 
3294
- #: ../addons/sell-content/myCRED-addon-sell-content.php:111
3295
- msgid "Profit Share"
3296
  msgstr ""
3297
 
3298
- #: ../addons/sell-content/myCRED-addon-sell-content.php:119
3299
- msgid "Save Profit Share"
3300
  msgstr ""
3301
 
3302
- #: ../addons/sell-content/myCRED-addon-sell-content.php:166
3303
- msgid "Profit Share override saved"
 
3304
  msgstr ""
3305
 
3306
- #: ../addons/sell-content/myCRED-addon-sell-content.php:328
3307
- msgid "You can not buy this content."
3308
  msgstr ""
3309
 
3310
- #: ../addons/sell-content/myCRED-addon-sell-content.php:373
3311
- msgid "Error. Try Again"
 
 
 
 
3312
  msgstr ""
3313
 
3314
- #: ../addons/sell-content/myCRED-addon-sell-content.php:395
3315
- msgid "No Payout. Just charge."
 
3316
  msgstr ""
3317
 
3318
- #: ../addons/sell-content/myCRED-addon-sell-content.php:396
3319
- msgid "Pay Content Author."
 
3320
  msgstr ""
3321
 
3322
- #: ../addons/sell-content/myCRED-addon-sell-content.php:402 ../includes/mycred-
3323
- #: overview.php:141 ../includes/mycred-overview.php:148
3324
- msgid "Sell Content"
3325
  msgstr ""
3326
 
3327
- #: ../addons/sell-content/myCRED-addon-sell-content.php:404
3328
- msgid "Post Types"
 
3329
  msgstr ""
3330
 
3331
- #: ../addons/sell-content/myCRED-addon-sell-content.php:408
3332
- msgid "Comma separated list of post types that can be sold."
 
3333
  msgstr ""
3334
 
3335
- #: ../addons/sell-content/myCRED-addon-sell-content.php:438
3336
- msgid "Percentage to pay Author"
 
3337
  msgstr ""
3338
 
3339
- #: ../addons/sell-content/myCRED-addon-sell-content.php:440
3340
- msgid ""
3341
- "Percentage of the price to pay the author. Can not be zero and is ignored if "
3342
- "authors are not paid."
3343
  msgstr ""
3344
 
3345
- #: ../addons/sell-content/myCRED-addon-sell-content.php:448
3346
- msgid "Defaults"
3347
  msgstr ""
3348
 
3349
- #: ../addons/sell-content/myCRED-addon-sell-content.php:456
3350
- msgid "Allow authors to change price."
3351
  msgstr ""
3352
 
3353
- #: ../addons/sell-content/myCRED-addon-sell-content.php:465
3354
- msgid "Allow authors to change button label."
3355
  msgstr ""
3356
 
3357
- #: ../addons/sell-content/myCRED-addon-sell-content.php:469
3358
- msgid "Purchases expire after"
3359
  msgstr ""
3360
 
3361
- #: ../addons/sell-content/myCRED-addon-sell-content.php:471
3362
- msgid "Use zero for permanent sales."
3363
  msgstr ""
3364
 
3365
- #: ../addons/sell-content/myCRED-addon-sell-content.php:477
3366
- msgid "For Visitors"
3367
  msgstr ""
3368
 
3369
- #: ../addons/sell-content/myCRED-addon-sell-content.php:487
3370
- #, php-format
3371
- msgid ""
3372
- "Do <strong>not</strong> use the %buy_button% in this template as a user must "
3373
- "be logged in to buy content!"
3374
  msgstr ""
3375
 
3376
- #: ../addons/sell-content/myCRED-addon-sell-content.php:492
3377
- msgid "For Members"
3378
  msgstr ""
3379
 
3380
- #: ../addons/sell-content/myCRED-addon-sell-content.php:502 ../addons/sell-
3381
- #: content/myCRED-addon-sell-content.php:517
3382
- #, php-format
3383
- msgid "Your template must contain the %buy_button% tag for purchases to work!"
3384
  msgstr ""
3385
 
3386
- #: ../addons/sell-content/myCRED-addon-sell-content.php:507
3387
- msgid "For members that can not afford to buy"
3388
  msgstr ""
3389
 
3390
- #: ../addons/sell-content/myCRED-addon-sell-content.php:521
3391
- msgid "Log template for Purchases"
 
 
3392
  msgstr ""
3393
 
3394
- #: ../addons/sell-content/myCRED-addon-sell-content.php:528
3395
- msgid "Log template for Sales"
3396
  msgstr ""
3397
 
3398
- #: ../addons/sell-content/myCRED-addon-sell-content.php:581
3399
- #, php-format
3400
- msgid "%s Sell This"
3401
  msgstr ""
3402
 
3403
- #: ../addons/sell-content/myCRED-addon-sell-content.php:636
3404
- #, php-format
3405
- msgid "%s Sell Content needs to be setup before you can use this feature."
3406
  msgstr ""
3407
 
3408
- #: ../addons/sell-content/myCRED-addon-sell-content.php:639
3409
- msgid "Setup add-on"
 
3410
  msgstr ""
3411
 
3412
- #: ../addons/sell-content/myCRED-addon-sell-content.php:639
3413
- msgid "Lets do it"
3414
  msgstr ""
3415
 
3416
- #: ../addons/sell-content/myCRED-addon-sell-content.php:677
3417
- #, php-format
3418
- msgid "Enable sale of this %s"
3419
  msgstr ""
3420
 
3421
- #: ../addons/sell-content/myCRED-addon-sell-content.php:691
3422
- msgid "Purchase expires after"
3423
  msgstr ""
3424
 
3425
- #: ../addons/sell-content/myCRED-addon-sell-content.php:1017
3426
- msgid "Thank you for your purchase!"
 
 
 
3427
  msgstr ""
3428
 
3429
- #: ../addons/sell-content/myCRED-addon-sell-content.php:1105 ../addons/sell-
3430
- #: content/myCRED-addon-sell-content.php:1191
3431
- msgid "The following content is set for sale:"
 
3432
  msgstr ""
3433
 
3434
- #: ../addons/sell-content/myCRED-addon-sell-content.php:1254
3435
- msgid "Purchased"
 
3436
  msgstr ""
3437
 
3438
- #: ../addons/stats/myCRED-addon-stats.php:54
3439
- msgid "Statistics"
 
3440
  msgstr ""
3441
 
3442
- #: ../addons/stats/myCRED-addon-stats.php:126
3443
- msgid "Overview"
 
3444
  msgstr ""
3445
 
3446
- #: ../addons/stats/myCRED-addon-stats.php:192
3447
- msgid "Refresh"
 
3448
  msgstr ""
3449
 
3450
- #: ../addons/stats/myCRED-addon-stats.php:248
3451
- msgid "Your log is empty. No statistics can be shown."
3452
  msgstr ""
3453
 
3454
- #: ../addons/stats/abstracts/mycred-abstract-stat-widget.php:102 ..
3455
- #: includes/importers/mycred-balances.php:181 ../includes/importers/mycred-
3456
- #: cubepoints.php:293 ../includes/importers/mycred-log-entries.php:148
3457
- msgid "View Log"
3458
  msgstr ""
3459
 
3460
- #: ../addons/stats/abstracts/mycred-abstract-stat-widget.php:105 ..
3461
- #: modules/mycred-module-hooks.php:26 ../modules/mycred-module-hooks.php:27 ..
3462
- #: modules/mycred-module-hooks.php:28
3463
- msgid "Hooks"
3464
  msgstr ""
3465
 
3466
- #: ../addons/stats/widgets/mycred-stats-widget-circulation.php:44
3467
  #, php-format
3468
- msgid "Total %s:"
3469
  msgstr ""
3470
 
3471
- #: ../addons/stats/widgets/mycred-stats-widget-circulation.php:136 ..
3472
- #: includes/mycred-overview.php:78
3473
- msgid "Total amount in circulation"
3474
  msgstr ""
3475
 
3476
- #: ../addons/stats/widgets/mycred-stats-widget-circulation.php:138
3477
  #, php-format
3478
- msgid "Total amount of %s in circulation"
3479
  msgstr ""
3480
 
3481
- #: ../addons/stats/widgets/mycred-stats-widget-circulation.php:170
3482
- msgid "Total gains (%)"
3483
  msgstr ""
3484
 
3485
- #: ../addons/stats/widgets/mycred-stats-widget-circulation.php:174
3486
- msgid "Total loses (%)"
3487
  msgstr ""
3488
 
3489
- #: ../addons/stats/widgets/mycred-stats-widget-circulation.php:178
3490
- #, php-format
3491
- msgid "Total Gained: %s"
3492
  msgstr ""
3493
 
3494
- #: ../addons/stats/widgets/mycred-stats-widget-circulation.php:178
3495
- #, php-format
3496
- msgid "Total Spent: %s"
3497
- msgstr ""
3498
-
3499
- #: ../addons/stats/widgets/mycred-stats-widget-circulation.php:189 ..
3500
- #: includes/mycred-log.php:993 ../modules/mycred-module-buddypress.php:237
3501
- msgid "Today"
3502
  msgstr ""
3503
 
3504
- #: ../addons/stats/widgets/mycred-stats-widget-circulation.php:190 ..
3505
- #: includes/mycred-log.php:995 ../modules/mycred-module-buddypress.php:239
3506
- msgid "This Week"
3507
  msgstr ""
3508
 
3509
- #: ../addons/stats/widgets/mycred-stats-widget-circulation.php:191 ..
3510
- #: includes/mycred-log.php:996 ../modules/mycred-module-buddypress.php:240
3511
- msgid "This Month"
3512
  msgstr ""
3513
 
3514
- #: ../addons/stats/widgets/mycred-stats-widget-circulation.php:192
3515
- msgid "This Year"
3516
  msgstr ""
3517
 
3518
- #: ../addons/stats/widgets/mycred-stats-widget-circulation.php:196 ..
3519
- #: addons/stats/widgets/mycred-stats-widget-circulation.php:198 ..
3520
- #: addons/stats/widgets/mycred-stats-widget-circulation.php:200 ..
3521
- #: addons/stats/widgets/mycred-stats-widget-circulation.php:202
3522
- msgid "Gained"
3523
  msgstr ""
3524
 
3525
- #: ../addons/stats/widgets/mycred-stats-widget-circulation.php:197 ..
3526
- #: addons/stats/widgets/mycred-stats-widget-circulation.php:199 ..
3527
- #: addons/stats/widgets/mycred-stats-widget-circulation.php:201 ..
3528
- #: addons/stats/widgets/mycred-stats-widget-circulation.php:203
3529
- msgid "Lost"
3530
  msgstr ""
3531
 
3532
- #: ../addons/stats/widgets/mycred-stats-widget-daily-gains.php:118
3533
- msgid "Most common ways your users have gained points during this period."
 
3534
  msgstr ""
3535
 
3536
- #: ../addons/stats/widgets/mycred-stats-widget-daily-gains.php:120
3537
- #, php-format
3538
- msgid "Most common ways your users have gained %_plural% during this period."
3539
  msgstr ""
3540
 
3541
- #: ../addons/stats/widgets/mycred-stats-widget-daily-gains.php:127
3542
- msgid "Gains in the last 10 days"
3543
  msgstr ""
3544
 
3545
- #: ../addons/stats/widgets/mycred-stats-widget-daily-gains.php:151 ..
3546
- #: addons/stats/widgets/mycred-stats-widget-daily-loses.php:151
3547
- msgid "View"
3548
  msgstr ""
3549
 
3550
- #: ../addons/stats/widgets/mycred-stats-widget-daily-gains.php:166 ..
3551
- #: addons/stats/widgets/mycred-stats-widget-daily-loses.php:166
3552
- msgid "No data found"
 
3553
  msgstr ""
3554
 
3555
- #: ../addons/stats/widgets/mycred-stats-widget-daily-loses.php:118
3556
- msgid "Most common ways your users have lost or spent points during this period."
3557
  msgstr ""
3558
 
3559
- #: ../addons/stats/widgets/mycred-stats-widget-daily-loses.php:120
3560
- #, php-format
3561
- msgid "Most common ways your users have lost or spent %_plural% during this period."
3562
  msgstr ""
3563
 
3564
- #: ../addons/stats/widgets/mycred-stats-widget-daily-loses.php:127
3565
- msgid "Loses in the last 10 days"
3566
  msgstr ""
3567
 
3568
- #: ../addons/transfer/myCRED-addon-transfer.php:44
3569
- msgid "You do not have enough %plural% to send."
3570
  msgstr ""
3571
 
3572
- #: ../addons/transfer/myCRED-addon-transfer.php:45
3573
- msgid "You have exceeded your %limit% transfer limit."
3574
  msgstr ""
3575
 
3576
- #: ../addons/transfer/myCRED-addon-transfer.php:51 ../includes/mycred-functions.
3577
- #: php:2454
3578
- msgid "Transfer"
 
 
3579
  msgstr ""
3580
 
3581
- #: ../addons/transfer/myCRED-addon-transfer.php:154
3582
- msgid "Transaction completed."
 
 
 
 
3583
  msgstr ""
3584
 
3585
- #: ../addons/transfer/myCRED-addon-transfer.php:155
3586
- msgid "Security token could not be verified. Please contact your site administrator!"
 
 
 
3587
  msgstr ""
3588
 
3589
- #: ../addons/transfer/myCRED-addon-transfer.php:156
3590
- msgid "Communications error. Please try again later."
3591
  msgstr ""
3592
 
3593
- #: ../addons/transfer/myCRED-addon-transfer.php:157
3594
- msgid "Recipient not found. Please try again."
 
 
 
 
3595
  msgstr ""
3596
 
3597
- #: ../addons/transfer/myCRED-addon-transfer.php:158
3598
- msgid "Transaction declined by recipient."
 
 
3599
  msgstr ""
3600
 
3601
- #: ../addons/transfer/myCRED-addon-transfer.php:159
3602
- msgid "Incorrect amount. Please try again."
 
3603
  msgstr ""
3604
 
3605
- #: ../addons/transfer/myCRED-addon-transfer.php:160
3606
- msgid ""
3607
- "This myCRED Add-on has not yet been setup! No transfers are allowed until "
3608
- "this has been done!"
3609
  msgstr ""
3610
 
3611
- #: ../addons/transfer/myCRED-addon-transfer.php:161 ../includes/mycred-functions.
3612
- #: php:2582
3613
- msgid "Insufficient Funds. Please try a lower amount."
3614
  msgstr ""
3615
 
3616
- #: ../addons/transfer/myCRED-addon-transfer.php:162
3617
- msgid "Transfer Limit exceeded."
 
 
 
3618
  msgstr ""
3619
 
3620
- #: ../addons/transfer/myCRED-addon-transfer.php:189
3621
- msgid "No limits."
3622
  msgstr ""
3623
 
3624
- #: ../addons/transfer/myCRED-addon-transfer.php:190
3625
- msgid "Impose daily limit."
 
 
3626
  msgstr ""
3627
 
3628
- #: ../addons/transfer/myCRED-addon-transfer.php:191
3629
- msgid "Impose weekly limit."
3630
  msgstr ""
3631
 
3632
- #: ../addons/transfer/myCRED-addon-transfer.php:198
3633
- msgid "User Login (user_login)"
3634
  msgstr ""
3635
 
3636
- #: ../addons/transfer/myCRED-addon-transfer.php:199
3637
- msgid "User Email (user_email)"
3638
  msgstr ""
3639
 
3640
- #: ../addons/transfer/myCRED-addon-transfer.php:207 ../includes/mycred-overview.
3641
- #: php:120 ../includes/mycred-overview.php:127
3642
- msgid "Transfers"
3643
  msgstr ""
3644
 
3645
- #: ../addons/transfer/myCRED-addon-transfer.php:216
3646
- msgid "Select the point types that users can transfer."
 
 
 
 
 
3647
  msgstr ""
3648
 
3649
- #: ../addons/transfer/myCRED-addon-transfer.php:224
3650
- msgid "Log template for sending"
3651
  msgstr ""
3652
 
3653
- #: ../addons/transfer/myCRED-addon-transfer.php:231
3654
- msgid "Log template for receiving"
 
 
 
 
 
 
3655
  msgstr ""
3656
 
3657
- #: ../addons/transfer/myCRED-addon-transfer.php:238
3658
- msgid "Autofill Recipient"
3659
  msgstr ""
3660
 
3661
- #: ../addons/transfer/myCRED-addon-transfer.php:250
3662
- msgid "Select what user details recipients should be autofilled by."
 
 
3663
  msgstr ""
3664
 
3665
- #: ../addons/transfer/myCRED-addon-transfer.php:253
3666
- msgid "Reload"
3667
  msgstr ""
3668
 
3669
- #: ../addons/transfer/myCRED-addon-transfer.php:256
3670
- msgid "Reload page on successful transfers."
 
 
 
 
 
3671
  msgstr ""
3672
 
3673
- #: ../addons/transfer/myCRED-addon-transfer.php:276
3674
- msgid "Limit Amount"
 
 
 
 
 
3675
  msgstr ""
3676
 
3677
- #: ../addons/transfer/myCRED-addon-transfer.php:280
3678
- msgid "Form Templates"
 
3679
  msgstr ""
3680
 
3681
- #: ../addons/transfer/myCRED-addon-transfer.php:283
3682
- msgid "Not logged in Template"
3683
  msgstr ""
3684
 
3685
- #: ../addons/transfer/myCRED-addon-transfer.php:285
3686
  msgid ""
3687
- "Text to show when users are not logged in. Leave empty to hide. No HTML "
3688
- "elements allowed!"
3689
  msgstr ""
3690
 
3691
- #: ../addons/transfer/myCRED-addon-transfer.php:289
3692
- msgid "Balance Template"
3693
  msgstr ""
3694
 
3695
- #: ../addons/transfer/myCRED-addon-transfer.php:291
3696
- msgid ""
3697
- "Template to use when displaying the users balance (if included). No HTML "
3698
- "elements allowed!"
3699
  msgstr ""
3700
 
3701
- #: ../addons/transfer/myCRED-addon-transfer.php:295
3702
- msgid "Limit Template"
 
 
3703
  msgstr ""
3704
 
3705
- #: ../addons/transfer/myCRED-addon-transfer.php:297
3706
- msgid "Template to use when displaying limits (if used). No HTML elements allowed!"
3707
  msgstr ""
3708
 
3709
- #: ../addons/transfer/myCRED-addon-transfer.php:301
3710
- msgid "Button Template"
 
3711
  msgstr ""
3712
 
3713
- #: ../addons/transfer/myCRED-addon-transfer.php:303
3714
- msgid "Send Transfer button template. No HTML elements allowed!"
 
3715
  msgstr ""
3716
 
3717
- #: ../addons/transfer/myCRED-addon-transfer.php:306
3718
- msgid "Error Messages"
 
 
3719
  msgstr ""
3720
 
3721
- #: ../addons/transfer/myCRED-addon-transfer.php:309
3722
- msgid "Balance to low to send."
 
3723
  msgstr ""
3724
 
3725
- #: ../addons/transfer/myCRED-addon-transfer.php:311
3726
- msgid ""
3727
- "Text to show when a users balance is to low for transfers. Leave empty to "
3728
- "hide. No HTML elements allowed!"
3729
  msgstr ""
3730
 
3731
- #: ../addons/transfer/myCRED-addon-transfer.php:315
3732
- msgid "Transfer Limit Reached."
 
3733
  msgstr ""
3734
 
3735
- #: ../addons/transfer/myCRED-addon-transfer.php:317
3736
- msgid ""
3737
- "Text to show when a user has reached their transfer limit (if used). Leave "
3738
- "empty to hide. No HTML elements allowed!"
3739
  msgstr ""
3740
 
3741
- #: ../addons/transfer/includes/mycred-transfer-shortcodes.php:130
3742
- msgid "username"
 
3743
  msgstr ""
3744
 
3745
- #: ../addons/transfer/includes/mycred-transfer-shortcodes.php:133
3746
- msgid "email"
3747
  msgstr ""
3748
 
3749
- #: ../addons/transfer/includes/mycred-transfer-shortcodes.php:135
3750
- #, php-format
3751
- msgid "recipients %s"
3752
  msgstr ""
3753
 
3754
- #: ../addons/transfer/includes/mycred-transfer-shortcodes.php:225
3755
- msgid "To:"
 
3756
  msgstr ""
3757
 
3758
- #: ../addons/transfer/includes/mycred-transfer-shortcodes.php:231
3759
- msgid "Amount:"
 
 
3760
  msgstr ""
3761
 
3762
- #: ../addons/transfer/includes/mycred-transfer-widgets.php:20
3763
- msgid "Allow transfers between users."
 
 
3764
  msgstr ""
3765
 
3766
- #: ../addons/transfer/includes/mycred-transfer-widgets.php:23
 
3767
  #, php-format
3768
- msgid "(%s) Transfer"
3769
  msgstr ""
3770
 
3771
- #: ../addons/transfer/includes/mycred-transfer-widgets.php:40
3772
- msgid "The myCRED Transfer add-on has not yet been setup!"
 
 
 
3773
  msgstr ""
3774
 
3775
- #: ../addons/transfer/includes/mycred-transfer-widgets.php:123
3776
- msgid "Show users balance"
3777
- msgstr ""
3778
-
3779
- #: ../addons/transfer/includes/mycred-transfer-widgets.php:127
3780
- msgid "Show users limit"
3781
- msgstr ""
3782
-
3783
- #: ../includes/mycred-about.php:77
3784
- #, php-format
3785
- msgid "Welcome to %s %s"
3786
  msgstr ""
3787
 
3788
- #: ../includes/mycred-admin.php:198
3789
- msgid "A log entry is required in order to adjust this users balance"
 
3790
  msgstr ""
3791
 
3792
- #: ../includes/mycred-admin.php:200
3793
- msgid "Users balance saved"
 
3794
  msgstr ""
3795
 
3796
- #: ../includes/mycred-admin.php:208
3797
- msgid "Users excluded"
 
3798
  msgstr ""
3799
 
3800
- #: ../includes/mycred-admin.php:213
 
3801
  msgid ""
3802
- "All buyCRED Payment Gateways have been disabled! Please check your exchange "
3803
- "rate settings and update all premium payment gateways!"
3804
  msgstr ""
3805
 
3806
- #: ../includes/mycred-admin.php:242
3807
- msgid "User is excluded"
 
3808
  msgstr ""
3809
 
3810
- #: ../includes/mycred-admin.php:247
3811
- msgid "Log Entry can not be empty"
 
3812
  msgstr ""
3813
 
3814
- #: ../includes/mycred-admin.php:251
3815
- msgid "Amount can not be zero"
 
3816
  msgstr ""
3817
 
3818
- #: ../includes/mycred-admin.php:272
3819
- msgid "Failed to update this uses balance."
 
 
 
3820
  msgstr ""
3821
 
3822
- #: ../includes/mycred-admin.php:406
3823
- msgid "Excluded"
 
3824
  msgstr ""
3825
 
3826
- #: ../includes/mycred-admin.php:427
3827
- msgid "Adjust"
 
 
 
3828
  msgstr ""
3829
 
3830
- #: ../includes/mycred-admin.php:469 ../includes/mycred-admin.php:470
3831
- msgid "Edit Balance"
 
3832
  msgstr ""
3833
 
3834
- #: ../includes/mycred-admin.php:490
3835
- msgid "Profile"
3836
  msgstr ""
3837
 
3838
- #: ../includes/mycred-admin.php:497
3839
- msgid "Extended Profile"
3840
  msgstr ""
3841
 
3842
- #: ../includes/mycred-admin.php:591
3843
- #, php-format
3844
- msgid "This user is excluded from using %s"
3845
  msgstr ""
3846
 
3847
- #: ../includes/mycred-admin.php:615
3848
- msgid "Edit User"
3849
  msgstr ""
3850
 
3851
- #: ../includes/mycred-admin.php:617
3852
- msgctxt "user"
3853
- msgid "Add New"
 
3854
  msgstr ""
3855
 
3856
- #: ../includes/mycred-admin.php:619
3857
- msgctxt "user"
3858
- msgid "Add Existing"
3859
  msgstr ""
3860
 
3861
- #: ../includes/mycred-admin.php:630
3862
  #, php-format
3863
- msgid "Total %s Accumulated"
3864
  msgstr ""
3865
 
3866
- #: ../includes/mycred-admin.php:631
 
3867
  #, php-format
3868
- msgid "Total %s Spent"
3869
  msgstr ""
3870
 
3871
- #: ../includes/mycred-admin.php:642
3872
- msgid "View History"
3873
  msgstr ""
3874
 
3875
- #: ../includes/mycred-admin.php:643
3876
- msgid "Exclude User"
3877
  msgstr ""
3878
 
3879
- #: ../includes/mycred-admin.php:647
3880
- msgid "Adjust Balance"
3881
  msgstr ""
3882
 
3883
- #: ../includes/mycred-admin.php:656
3884
- msgid ""
3885
- "Warning! Excluding this user will result in their balance being deleted "
3886
- "along with any entries currently in your log! This can not be undone!"
3887
  msgstr ""
3888
 
3889
- #: ../includes/mycred-admin.php:721
3890
- #, php-format
3891
- msgid "%singular% balance"
3892
  msgstr ""
3893
 
3894
- #: ../includes/mycred-admin.php:765 ../includes/mycred-admin.php:806
3895
- msgid "Update Balance"
 
3896
  msgstr ""
3897
 
3898
- #: ../includes/mycred-admin.php:798
3899
- msgid "ID"
3900
  msgstr ""
3901
 
3902
- #: ../includes/mycred-admin.php:804
3903
- msgid "A positive or negative value"
3904
  msgstr ""
3905
 
3906
- #: ../includes/mycred-functions.php:79
3907
- msgid "Point"
 
3908
  msgstr ""
3909
 
3910
- #: ../includes/mycred-functions.php:80
3911
- msgid "Points"
3912
  msgstr ""
3913
 
3914
- #: ../includes/mycred-functions.php:398
3915
- msgid "Deleted"
 
 
3916
  msgstr ""
3917
 
3918
- #: ../includes/mycred-functions.php:530
3919
- msgid "Deleted Item"
3920
  msgstr ""
3921
 
3922
- #: ../includes/mycred-functions.php:594
3923
- msgid "User Related"
 
 
 
3924
  msgstr ""
3925
 
3926
- #: ../includes/mycred-functions.php:601
3927
- msgid "Post Related"
3928
  msgstr ""
3929
 
3930
- #: ../includes/mycred-functions.php:608
3931
- msgid "Comment Related"
3932
  msgstr ""
3933
 
3934
- #: ../includes/mycred-functions.php:615
3935
- msgid "Widget Related"
3936
  msgstr ""
3937
 
3938
- #: ../includes/mycred-functions.php:622
3939
- msgid "Amount Related"
 
 
3940
  msgstr ""
3941
 
3942
- #: ../includes/mycred-functions.php:629
3943
- msgid "Video Related"
3944
  msgstr ""
3945
 
3946
- #: ../includes/mycred-functions.php:640
3947
- msgid "and"
3948
  msgstr ""
3949
 
3950
- #: ../includes/mycred-functions.php:642
3951
- msgid "Available Template Tags:"
3952
  msgstr ""
3953
 
3954
- #: ../includes/mycred-functions.php:1694
3955
- msgid "Entire Log"
 
3956
  msgstr ""
3957
 
3958
- #: ../includes/mycred-functions.php:1699 ../includes/mycred-functions.php:1700
3959
- msgid "Displayed Rows"
3960
  msgstr ""
3961
 
3962
- #: ../includes/mycred-functions.php:1707
3963
- msgid "Search Results"
 
 
3964
  msgstr ""
3965
 
3966
- #: ../includes/mycred-functions.php:1708
3967
- msgid "My Entire Log"
3968
  msgstr ""
3969
 
3970
- #: ../includes/mycred-functions.php:1875
3971
- msgid "ref empty"
3972
  msgstr ""
3973
 
3974
- #: ../includes/mycred-functions.php:1883
3975
- msgid "incorrect user id format"
3976
  msgstr ""
3977
 
3978
- #: ../includes/mycred-functions.php:1896
3979
- msgid "incorrect unix timestamp (from):"
3980
  msgstr ""
3981
 
3982
- #: ../includes/mycred-functions.php:1905
3983
- msgid "incorrect unix timestamp (to):"
3984
  msgstr ""
3985
 
3986
- #: ../includes/mycred-functions.php:2314
3987
- msgid "Website Registration"
3988
  msgstr ""
3989
 
3990
- #: ../includes/mycred-functions.php:2315
3991
- msgid "Website Visit"
3992
  msgstr ""
3993
 
3994
- #: ../includes/mycred-functions.php:2316
3995
- msgid "Viewing Content (Member)"
3996
  msgstr ""
3997
 
3998
- #: ../includes/mycred-functions.php:2317
3999
- msgid "Viewing Content (Author)"
4000
  msgstr ""
4001
 
4002
- #: ../includes/mycred-functions.php:2318
4003
- msgid "Logging in"
 
 
 
 
4004
  msgstr ""
4005
 
4006
- #: ../includes/mycred-functions.php:2319
4007
- msgid "Publishing Content"
4008
  msgstr ""
4009
 
4010
- #: ../includes/mycred-functions.php:2320 ../modules/mycred-module-hooks.php:1663
4011
- msgid "Approved Comment"
4012
  msgstr ""
4013
 
4014
- #: ../includes/mycred-functions.php:2321
4015
- msgid "Unapproved Comment"
 
4016
  msgstr ""
4017
 
4018
- #: ../includes/mycred-functions.php:2322
4019
- msgid "SPAM Comment"
 
 
4020
  msgstr ""
4021
 
4022
- #: ../includes/mycred-functions.php:2323
4023
- msgid "Deleted Comment"
4024
  msgstr ""
4025
 
4026
- #: ../includes/mycred-functions.php:2324
4027
- msgid "Link Click"
 
4028
  msgstr ""
4029
 
4030
- #: ../includes/mycred-functions.php:2325
4031
- msgid "Watching Video"
 
4032
  msgstr ""
4033
 
4034
- #: ../includes/mycred-functions.php:2326
4035
- msgid "Visitor Referral"
4036
  msgstr ""
4037
 
4038
- #: ../includes/mycred-functions.php:2327
4039
- msgid "Signup Referral"
 
 
 
4040
  msgstr ""
4041
 
4042
- #: ../includes/mycred-functions.php:2331
4043
- msgid "New Profile Update"
4044
  msgstr ""
4045
 
4046
- #: ../includes/mycred-functions.php:2332
4047
- msgid "Profile Update Removal"
 
4048
  msgstr ""
4049
 
4050
- #: ../includes/mycred-functions.php:2333
4051
- msgid "Avatar Upload"
 
4052
  msgstr ""
4053
 
4054
- #: ../includes/mycred-functions.php:2334
4055
- msgid "New Friendship"
4056
  msgstr ""
4057
 
4058
- #: ../includes/mycred-functions.php:2335
4059
- msgid "Ended Friendship"
 
 
 
4060
  msgstr ""
4061
 
4062
- #: ../includes/mycred-functions.php:2336
4063
- msgid "New Profile Comment"
 
 
4064
  msgstr ""
4065
 
4066
- #: ../includes/mycred-functions.php:2337
4067
- msgid "Profile Comment Deletion"
 
 
 
 
4068
  msgstr ""
4069
 
4070
- #: ../includes/mycred-functions.php:2338
4071
- msgid "New Message"
4072
  msgstr ""
4073
 
4074
- #: ../includes/mycred-functions.php:2339
4075
- msgid "Sending Gift"
 
 
4076
  msgstr ""
4077
 
4078
- #: ../includes/mycred-functions.php:2340
4079
- msgid "New Group"
4080
  msgstr ""
4081
 
4082
- #: ../includes/mycred-functions.php:2341
4083
- msgid "Deleted Group"
4084
  msgstr ""
4085
 
4086
- #: ../includes/mycred-functions.php:2342
4087
- msgid "New Group Forum Topic"
4088
  msgstr ""
4089
 
4090
- #: ../includes/mycred-functions.php:2343
4091
- msgid "Edit Group Forum Topic"
4092
  msgstr ""
4093
 
4094
- #: ../includes/mycred-functions.php:2344
4095
- msgid "New Group Forum Post"
4096
  msgstr ""
4097
 
4098
- #: ../includes/mycred-functions.php:2345
4099
- msgid "Edit Group Forum Post"
4100
  msgstr ""
4101
 
4102
- #: ../includes/mycred-functions.php:2346
4103
- msgid "Joining Group"
4104
  msgstr ""
4105
 
4106
- #: ../includes/mycred-functions.php:2347
4107
- msgid "Leaving Group"
4108
  msgstr ""
4109
 
4110
- #: ../includes/mycred-functions.php:2348
4111
- msgid "New Group Avatar"
4112
  msgstr ""
4113
 
4114
- #: ../includes/mycred-functions.php:2349
4115
- msgid "New Group Comment"
 
 
 
 
 
4116
  msgstr ""
4117
 
4118
- #: ../includes/mycred-functions.php:2353 ../plugins/mycred-hook-buddypress-media.
4119
- #: php:205
4120
- msgid "Photo Upload"
4121
  msgstr ""
4122
 
4123
- #: ../includes/mycred-functions.php:2354 ../plugins/mycred-hook-buddypress-media.
4124
- #: php:219
4125
- msgid "Video Upload"
4126
  msgstr ""
4127
 
4128
- #: ../includes/mycred-functions.php:2355 ../plugins/mycred-hook-buddypress-media.
4129
- #: php:233
4130
- msgid "Music Upload"
4131
  msgstr ""
4132
 
4133
- #: ../includes/mycred-functions.php:2359
4134
- msgid "New Link"
4135
  msgstr ""
4136
 
4137
- #: ../includes/mycred-functions.php:2360
4138
- msgid "Link Voting"
4139
  msgstr ""
4140
 
4141
- #: ../includes/mycred-functions.php:2361
4142
- msgid "Link Update"
4143
  msgstr ""
4144
 
4145
- #: ../includes/mycred-functions.php:2365
4146
- msgid "New Forum (bbPress)"
4147
  msgstr ""
4148
 
4149
- #: ../includes/mycred-functions.php:2366
4150
- msgid "New Forum Topic (bbPress)"
4151
  msgstr ""
4152
 
4153
- #: ../includes/mycred-functions.php:2367
4154
- msgid "Favorited Topic (bbPress)"
 
 
4155
  msgstr ""
4156
 
4157
- #: ../includes/mycred-functions.php:2368
4158
- msgid "New Topic Reply (bbPress)"
4159
  msgstr ""
4160
 
4161
- #: ../includes/mycred-functions.php:2372
4162
- msgid "Form Submission (Contact Form 7)"
4163
  msgstr ""
4164
 
4165
- #: ../includes/mycred-functions.php:2375
4166
- msgid "Form Submission (Gravity Form)"
4167
  msgstr ""
4168
 
4169
- #: ../includes/mycred-functions.php:2378
4170
- msgid "New Forum Topic (SimplePress)"
4171
  msgstr ""
4172
 
4173
- #: ../includes/mycred-functions.php:2379
4174
- msgid "New Forum Post (SimplePress)"
4175
  msgstr ""
4176
 
4177
- #: ../includes/mycred-functions.php:2388
4178
- msgid "Affiliate Signup (AffiliateWP)"
4179
  msgstr ""
4180
 
4181
- #: ../includes/mycred-functions.php:2389
4182
- msgid "Referred Visit (AffiliateWP)"
4183
  msgstr ""
4184
 
4185
- #: ../includes/mycred-functions.php:2390
4186
- msgid "Affiliate Referral (AffiliateWP)"
4187
  msgstr ""
4188
 
4189
- #: ../includes/mycred-functions.php:2391
4190
- msgid "Referral Refund (AffiliateWP)"
4191
  msgstr ""
4192
 
4193
- #: ../includes/mycred-functions.php:2395 ../plugins/mycred-hook-wp-postratings.
4194
- #: php:150
4195
- msgid "Adding a Rating"
4196
  msgstr ""
4197
 
4198
- #: ../includes/mycred-functions.php:2396 ../plugins/mycred-hook-wp-postratings.
4199
- #: php:169
4200
- msgid "Receiving a Rating"
4201
  msgstr ""
4202
 
4203
- #: ../includes/mycred-functions.php:2400
4204
- msgid "Poll Voting"
4205
  msgstr ""
4206
 
4207
- #: ../includes/mycred-functions.php:2403
4208
- msgid "Sending an Invite"
4209
  msgstr ""
4210
 
4211
- #: ../includes/mycred-functions.php:2404
4212
- msgid "Accepting an Invite"
4213
  msgstr ""
4214
 
4215
- #: ../includes/mycred-functions.php:2410
4216
- msgid "Banking Payout"
4217
  msgstr ""
4218
 
4219
- #: ../includes/mycred-functions.php:2413
4220
- msgid "buyCRED Purchase (PayPal Standard)"
4221
  msgstr ""
4222
 
4223
- #: ../includes/mycred-functions.php:2414
4224
- msgid "buyCRED Purchase (Skrill)"
 
 
4225
  msgstr ""
4226
 
4227
- #: ../includes/mycred-functions.php:2415
4228
- msgid "buyCRED Purchase (Zombaio)"
4229
  msgstr ""
4230
 
4231
- #: ../includes/mycred-functions.php:2416
4232
- msgid "buyCRED Purchase (NETBilling)"
 
 
4233
  msgstr ""
4234
 
4235
- #: ../includes/mycred-functions.php:2417
4236
- msgid "buyCRED Purchase (BitPay)"
4237
  msgstr ""
4238
 
4239
- #: ../includes/mycred-functions.php:2422
4240
- msgid "Coupon Purchase"
4241
  msgstr ""
4242
 
4243
- #: ../includes/mycred-functions.php:2426
4244
- msgid "Store Purchase (WooCommerce)"
4245
  msgstr ""
4246
 
4247
- #: ../includes/mycred-functions.php:2427
4248
- msgid "Store Reward (WooCommerce)"
4249
  msgstr ""
4250
 
4251
- #: ../includes/mycred-functions.php:2428
4252
- msgid "Product Review (WooCommerce)"
4253
  msgstr ""
4254
 
4255
- #: ../includes/mycred-functions.php:2431
4256
- msgid "Store Purchase (MarketPress)"
4257
  msgstr ""
4258
 
4259
- #: ../includes/mycred-functions.php:2432
4260
- msgid "Store Reward (MarketPress)"
 
 
4261
  msgstr ""
4262
 
4263
- #: ../includes/mycred-functions.php:2435
4264
- msgid "Store Purchase (WP E-Commerce)"
4265
  msgstr ""
4266
 
4267
- #: ../includes/mycred-functions.php:2441
4268
- msgid "Event Payment (Event Espresso)"
 
 
4269
  msgstr ""
4270
 
4271
- #: ../includes/mycred-functions.php:2442
4272
- msgid "Event Sale (Event Espresso)"
 
4273
  msgstr ""
4274
 
4275
- #: ../includes/mycred-functions.php:2446
4276
- msgid "Event Payment (Events Manager)"
4277
  msgstr ""
4278
 
4279
- #: ../includes/mycred-functions.php:2447
4280
- msgid "Event Sale (Events Manager)"
4281
  msgstr ""
4282
 
4283
- #: ../includes/mycred-functions.php:2451
4284
- msgid "Content Purchase / Sale"
4285
  msgstr ""
4286
 
4287
- #: ../includes/mycred-functions.php:2458
4288
- msgid "Manual Adjustment by Admin"
4289
  msgstr ""
4290
 
4291
- #: ../includes/mycred-functions.php:2528 ../includes/mycred-shortcodes.php:925
4292
- msgid "Point types not found."
 
 
 
 
4293
  msgstr ""
4294
 
4295
- #: ../includes/mycred-functions.php:2540 ../includes/mycred-functions.php:2560 ..
4296
- #: includes/mycred-shortcodes.php:931 ../includes/mycred-shortcodes.php:939
4297
  #, php-format
4298
- msgid "You are excluded from using %s."
4299
  msgstr ""
4300
 
4301
- #: ../includes/mycred-functions.php:2550 ../includes/mycred-shortcodes.php:935
4302
- msgid "Your balance is too low to use this feature."
4303
  msgstr ""
4304
 
4305
- #: ../includes/mycred-functions.php:2573
4306
- #, php-format
4307
- msgid "You must exchange at least %s!"
4308
  msgstr ""
4309
 
4310
- #: ../includes/mycred-functions.php:2595
4311
- #, php-format
4312
- msgid "Exchange from %s"
 
4313
  msgstr ""
4314
 
4315
- #: ../includes/mycred-functions.php:2607
4316
- #, php-format
4317
- msgid "Exchange to %s"
 
 
 
 
 
 
 
 
 
 
 
4318
  msgstr ""
4319
 
4320
- #: ../includes/mycred-functions.php:2615
4321
  #, php-format
4322
- msgid "You have successfully exchanged %s into %s."
4323
  msgstr ""
4324
 
4325
- #: ../includes/mycred-functions.php:2647
4326
- msgid "per day"
 
4327
  msgstr ""
4328
 
4329
- #: ../includes/mycred-functions.php:2649
4330
- msgid "per week"
 
 
 
4331
  msgstr ""
4332
 
4333
- #: ../includes/mycred-functions.php:2651
4334
- msgid "per month"
4335
  msgstr ""
4336
 
4337
- #: ../includes/mycred-functions.php:2653
4338
- msgid "in total"
4339
  msgstr ""
4340
 
4341
- #: ../includes/mycred-functions.php:2655 ../includes/mycred-functions.php:2659
4342
- #, php-format
4343
- msgid "Maximum once"
4344
- msgid_plural "Maximum %d times"
4345
- msgstr[0] ""
4346
- msgstr[1] ""
4347
 
4348
- #: ../includes/mycred-importer.php:11
4349
- #, php-format
4350
- msgid "%s Log Import"
4351
  msgstr ""
4352
 
4353
- #: ../includes/mycred-importer.php:12
4354
- msgid "Import log entries via a CSV file."
4355
  msgstr ""
4356
 
4357
- #: ../includes/mycred-importer.php:43
4358
- #, php-format
4359
- msgid "%s Balance Import"
4360
  msgstr ""
4361
 
4362
- #: ../includes/mycred-importer.php:44
4363
- msgid "Import balances."
4364
  msgstr ""
4365
 
4366
- #: ../includes/mycred-importer.php:75
4367
  #, php-format
4368
- msgid "%s CubePoints Import"
4369
  msgstr ""
4370
 
4371
- #: ../includes/mycred-importer.php:76 ../includes/importers/mycred-cubepoints.php:
4372
- #: 344
4373
- msgid "Import CubePoints log entries and / or balances."
 
 
 
4374
  msgstr ""
4375
 
4376
- #: ../includes/mycred-importer.php:92
4377
- msgid "No CubePoints log exists."
4378
  msgstr ""
4379
 
4380
- #: ../includes/mycred-install.php:39
4381
- msgid "myCRED requires WordPress 3.8 or higher. Version detected:"
4382
  msgstr ""
4383
 
4384
- #: ../includes/mycred-install.php:44
4385
- msgid "myCRED requires PHP 5.2.4 or higher. Version detected: "
 
4386
  msgstr ""
4387
 
4388
- #: ../includes/mycred-install.php:49
4389
- msgid "myCRED requires SQL 5.0 or higher. Version detected: "
 
4390
  msgstr ""
4391
 
4392
- #: ../includes/mycred-install.php:54
4393
- msgid ""
4394
- "The mcrypt PHP library must be enabled in order to use this plugin! Please "
4395
- "check your PHP configuration or contact your host and ask them to enable it "
4396
- "for you!"
4397
- msgstr ""
4398
-
4399
- #: ../includes/mycred-install.php:59
4400
- msgid ""
4401
- "Sorry but your WordPress installation does not reach the minimum "
4402
- "requirements for running myCRED. The following errors were given:"
4403
  msgstr ""
4404
 
4405
- #: ../includes/mycred-install.php:268
4406
- msgid "myCRED needs your attention."
4407
  msgstr ""
4408
 
4409
- #: ../includes/mycred-install.php:268
4410
- msgid "Run Setup"
4411
  msgstr ""
4412
 
4413
- #: ../includes/mycred-install.php:280 ../includes/mycred-install.php:281
4414
- msgid "myCRED Setup"
 
4415
  msgstr ""
4416
 
4417
- #: ../includes/mycred-install.php:410
 
4418
  #, php-format
4419
- msgid "%s Setup"
4420
  msgstr ""
4421
 
4422
- #: ../includes/mycred-install.php:412
4423
- msgid "Step"
 
4424
  msgstr ""
4425
 
4426
- #: ../includes/mycred-install.php:436
4427
- msgid ""
4428
- "Click \"Begin Setup\" to install myCRED. You will be able to select your "
4429
- "points format, layout and security settings."
4430
  msgstr ""
4431
 
4432
- #: ../includes/mycred-install.php:437
4433
- msgid "Begin Setup"
 
4434
  msgstr ""
4435
 
4436
- #: ../includes/mycred-install.php:492
4437
- msgid "Select the format you want to use for your points."
 
4438
  msgstr ""
4439
 
4440
- #: ../includes/mycred-install.php:493
4441
- msgid "Format"
4442
  msgstr ""
4443
 
4444
- #: ../includes/mycred-install.php:496
4445
- msgid "Separators"
 
4446
  msgstr ""
4447
 
4448
- #: ../includes/mycred-install.php:506 ../modules/mycred-module-settings.php:531
4449
- msgid "Decimals"
4450
  msgstr ""
4451
 
4452
- #: ../includes/mycred-install.php:508
4453
- msgid "Use zero for no decimals or maximum 20."
4454
  msgstr ""
4455
 
4456
- #: ../includes/mycred-install.php:511 ../modules/mycred-module-settings.php:537
4457
- msgid "Presentation"
 
4458
  msgstr ""
4459
 
4460
- #: ../includes/mycred-install.php:514 ../modules/mycred-module-settings.php:518
4461
- msgid "Name (Singular)"
4462
  msgstr ""
4463
 
4464
- #: ../includes/mycred-install.php:518 ../modules/mycred-module-settings.php:523
4465
- msgid "Name (Plural)"
4466
  msgstr ""
4467
 
4468
- #: ../includes/mycred-install.php:524 ../modules/mycred-module-settings.php:540
4469
- msgid "Prefix"
4470
  msgstr ""
4471
 
4472
- #: ../includes/mycred-install.php:532 ../modules/mycred-module-settings.php:548
4473
- msgid "Suffix"
4474
  msgstr ""
4475
 
4476
- #: ../includes/mycred-install.php:536
4477
- msgid "Cancel Setup"
4478
  msgstr ""
4479
 
4480
- #: ../includes/mycred-install.php:536 ../includes/mycred-install.php:606
4481
- msgid "Next"
4482
  msgstr ""
4483
 
4484
- #: ../includes/mycred-install.php:568 ../modules/mycred-module-settings.php:556
4485
- msgid "Security"
4486
  msgstr ""
4487
 
4488
- #: ../includes/mycred-install.php:571
4489
- msgid "Edit Settings Capability"
 
 
4490
  msgstr ""
4491
 
4492
- #: ../includes/mycred-install.php:575
4493
- msgid "Edit Users %plural% Capability"
4494
  msgstr ""
4495
 
4496
- #: ../includes/mycred-install.php:579 ../modules/mycred-module-settings.php:569
4497
- msgid "Maximum %plural% payouts"
4498
  msgstr ""
4499
 
4500
- #: ../includes/mycred-install.php:581 ../modules/mycred-module-settings.php:571
4501
- msgid ""
4502
- "As an added security, you can set the maximum amount a user can gain or "
4503
- "loose in a single instance. If used, make sure this is the maximum amount a "
4504
- "user would be able to transfer, buy, or spend in your store. Use zero to "
4505
- "disable."
4506
  msgstr ""
4507
 
4508
- #: ../includes/mycred-install.php:584 ../modules/mycred-module-settings.php:574
4509
- msgid "Excludes"
4510
  msgstr ""
4511
 
4512
- #: ../includes/mycred-install.php:588 ../modules/mycred-module-settings.php:578
4513
- msgid "Exclude those who can \"Edit Settings\"."
4514
  msgstr ""
4515
 
4516
- #: ../includes/mycred-install.php:592 ../modules/mycred-module-settings.php:582
4517
- msgid "Exclude those who can \"Edit Users %plural%\"."
 
 
4518
  msgstr ""
4519
 
4520
- #: ../includes/mycred-install.php:595 ../modules/mycred-module-settings.php:586
4521
- msgid "Exclude the following user IDs:"
4522
  msgstr ""
4523
 
4524
- #: ../includes/mycred-install.php:599 ../modules/mycred-module-settings.php:591
4525
- msgid "User Deletions"
4526
  msgstr ""
4527
 
4528
- #: ../includes/mycred-install.php:603 ../modules/mycred-module-settings.php:594
4529
- msgid "Delete log entries when user is deleted."
 
 
4530
  msgstr ""
4531
 
4532
- #: ../includes/mycred-install.php:624
4533
- msgid "Ready"
 
4534
  msgstr ""
4535
 
4536
- #: ../includes/mycred-install.php:625
4537
- msgid "Almost done! Click the button below to finish this setup."
 
 
4538
  msgstr ""
4539
 
4540
- #: ../includes/mycred-install.php:626
4541
- msgid "Install & Run"
 
 
 
4542
  msgstr ""
4543
 
4544
- #: ../includes/mycred-log.php:485
4545
- #, php-format
4546
- msgid "Showing %d %s"
 
 
4547
  msgstr ""
4548
 
4549
- #: ../includes/mycred-log.php:485
4550
- msgid "entry"
4551
- msgid_plural "entries"
4552
- msgstr[0] ""
4553
- msgstr[1] ""
4554
-
4555
- #: ../includes/mycred-log.php:500
4556
- msgid "Go to the first page"
4557
  msgstr ""
4558
 
4559
- #: ../includes/mycred-log.php:507
4560
- msgid "Go to the previous page"
4561
  msgstr ""
4562
 
4563
- #: ../includes/mycred-log.php:517
4564
- msgid "Current page"
4565
  msgstr ""
4566
 
4567
- #: ../includes/mycred-log.php:523
 
4568
  #, php-format
4569
- msgctxt "mycred"
4570
- msgid "%1$s of %2$s"
4571
- msgstr ""
4572
-
4573
- #: ../includes/mycred-log.php:527
4574
- msgid "Go to the next page"
4575
  msgstr ""
4576
 
4577
- #: ../includes/mycred-log.php:534
4578
- msgid "Go to the last page"
4579
  msgstr ""
4580
 
4581
- #: ../includes/mycred-log.php:611
4582
- msgid "Show all references"
 
4583
  msgstr ""
4584
 
4585
- #: ../includes/mycred-log.php:628
4586
- msgid "User ID, Username, Email or Nicename"
4587
  msgstr ""
4588
 
4589
- #: ../includes/mycred-log.php:636
4590
- msgid "Show in order"
4591
  msgstr ""
4592
 
4593
- #: ../includes/mycred-log.php:637 ../includes/mycred-widgets.php:426
4594
- msgid "Ascending"
4595
  msgstr ""
4596
 
4597
- #: ../includes/mycred-log.php:637 ../includes/mycred-widgets.php:427
4598
- msgid "Descending"
4599
  msgstr ""
4600
 
4601
- #: ../includes/mycred-log.php:658
4602
- msgid "Filter"
4603
  msgstr ""
4604
 
4605
- #: ../includes/mycred-log.php:718
4606
- msgid ""
4607
- "Log entries are exported to a CSV file and depending on the number of "
4608
- "entries selected, the process may take a few seconds."
4609
  msgstr ""
4610
 
4611
- #: ../includes/mycred-log.php:725
4612
- msgid "No export options available."
4613
  msgstr ""
4614
 
4615
- #: ../includes/mycred-log.php:758
4616
- msgid "Entry"
4617
  msgstr ""
4618
 
4619
- #: ../includes/mycred-log.php:874 ../modules/mycred-module-log.php:525
4620
- msgid "User Missing"
 
4621
  msgstr ""
4622
 
4623
- #: ../includes/mycred-log.php:958
4624
- msgid "No log entries found"
4625
  msgstr ""
4626
 
4627
- #: ../includes/mycred-log.php:976 ../includes/mycred-log.php:978
4628
- msgid "Search Log"
4629
  msgstr ""
4630
 
4631
- #: ../includes/mycred-log.php:977
4632
- msgid "search log entries"
4633
  msgstr ""
4634
 
4635
- #: ../includes/mycred-log.php:992 ../modules/mycred-module-buddypress.php:236 ..
4636
- #: modules/mycred-module-buddypress.php:249
4637
- msgid "All"
4638
  msgstr ""
4639
 
4640
- #: ../includes/mycred-log.php:994 ../modules/mycred-module-buddypress.php:238
4641
- msgid "Yesterday"
4642
  msgstr ""
4643
 
4644
- #: ../includes/mycred-network.php:59 ../includes/mycred-network.php:60
4645
- msgid "Network Settings"
4646
  msgstr ""
4647
 
4648
- #: ../includes/mycred-network.php:134
4649
  #, php-format
4650
- msgid "%s Network"
4651
  msgstr ""
4652
 
4653
- #: ../includes/mycred-network.php:140
4654
- #, php-format
4655
- msgid "Note! %s has not yet been setup."
4656
  msgstr ""
4657
 
4658
- #: ../includes/mycred-network.php:144
4659
- msgid "Network Settings Updated"
4660
  msgstr ""
4661
 
4662
- #: ../includes/mycred-network.php:146
4663
- #, php-format
4664
- msgid "Configure network settings for %s."
 
4665
  msgstr ""
4666
 
4667
- #: ../includes/mycred-network.php:153
4668
- msgid "Master Template"
4669
  msgstr ""
4670
 
4671
- #: ../includes/mycred-network.php:164
4672
- #, php-format
4673
  msgid ""
4674
- "If enabled, %s will use your main site's settings for all other sites in "
4675
- "your network."
4676
  msgstr ""
4677
 
4678
- #: ../includes/mycred-network.php:167
4679
- msgid "Central Logging"
 
 
 
4680
  msgstr ""
4681
 
4682
- #: ../includes/mycred-network.php:178
4683
- #, php-format
4684
- msgid "If enabled, %s will log all site actions in your main site's log."
4685
  msgstr ""
4686
 
4687
- #: ../includes/mycred-network.php:181
4688
- msgid "Site Block"
4689
  msgstr ""
4690
 
4691
- #: ../includes/mycred-network.php:185
4692
- #, php-format
4693
- msgid "Comma separated list of blog ids where %s is to be disabled."
4694
  msgstr ""
4695
 
4696
- #: ../includes/mycred-network.php:194
4697
- msgid "Save Network Settings"
4698
  msgstr ""
4699
 
4700
- #: ../includes/mycred-overview.php:25
4701
- #, php-format
4702
- msgid "%s Overview"
4703
  msgstr ""
4704
 
4705
- #: ../includes/mycred-overview.php:81
4706
- msgid "Awarded"
4707
  msgstr ""
4708
 
4709
- #: ../includes/mycred-overview.php:84
4710
- msgid "Deducted"
4711
  msgstr ""
4712
 
4713
- #: ../includes/mycred-overview.php:208
4714
- msgid "Manual"
4715
  msgstr ""
4716
 
4717
- #: ../includes/mycred-remote.php:523
4718
- msgid "This feature requires WordPress Permalinks to be setup and enabled!"
4719
  msgstr ""
4720
 
4721
- #: ../includes/mycred-remote.php:526
4722
- msgid "Click Update Settings to load the Remote API settings."
4723
  msgstr ""
4724
 
4725
- #: ../includes/mycred-remote.php:528
4726
- msgid "Allow Remote Access"
4727
  msgstr ""
4728
 
4729
- #: ../includes/mycred-remote.php:549
4730
- msgid "Remote Access"
4731
  msgstr ""
4732
 
4733
- #: ../includes/mycred-remote.php:554
4734
- msgid "Key"
4735
  msgstr ""
4736
 
4737
- #: ../includes/mycred-remote.php:555
4738
- msgid "16, 24 or 32 characters"
4739
  msgstr ""
4740
 
4741
- #: ../includes/mycred-remote.php:556
4742
- msgid "Required for this feature to work!<br />Minimum 12 characters."
4743
  msgstr ""
4744
 
4745
- #: ../includes/mycred-remote.php:559
4746
- msgid "Key Length"
4747
  msgstr ""
4748
 
4749
- #: ../includes/mycred-remote.php:564
4750
- msgid "Generate New Key"
4751
  msgstr ""
4752
 
4753
- #: ../includes/mycred-remote.php:566
4754
- msgid "Warning!"
4755
  msgstr ""
4756
 
4757
- #: ../includes/mycred-remote.php:566
4758
- msgid ""
4759
- "Keep this key safe! Those you share this key with will be able to remotely "
4760
- "deduct / add / transfer %plural%!"
4761
  msgstr ""
4762
 
4763
- #: ../includes/mycred-remote.php:568
4764
- msgid "Incoming URI"
4765
  msgstr ""
4766
 
4767
- #: ../includes/mycred-remote.php:572
4768
- msgid ""
4769
- "The incoming call address. Remote calls made to any other URL will be "
4770
- "ignored."
4771
  msgstr ""
4772
 
4773
- #: ../includes/mycred-remote.php:575
4774
- msgid "Debug Mode"
4775
  msgstr ""
4776
 
4777
- #: ../includes/mycred-remote.php:578
4778
- msgid ""
4779
- "Remember to disable when not used to prevent mischievous calls from learning "
4780
- "about your setup!"
4781
  msgstr ""
4782
 
4783
- #: ../includes/mycred-shortcodes.php:175
4784
- msgid "Leaderboard is empty."
4785
  msgstr ""
4786
 
4787
- #: ../includes/mycred-shortcodes.php:525
4788
- msgid "Anchor missing URL!"
4789
  msgstr ""
4790
 
4791
- #: ../includes/mycred-shortcodes.php:637
4792
- msgid "Sent"
4793
  msgstr ""
4794
 
4795
- #: ../includes/mycred-shortcodes.php:638
4796
- msgid "Error - Try Again"
 
 
4797
  msgstr ""
4798
 
4799
- #: ../includes/mycred-shortcodes.php:764
4800
- msgid "A video ID is required for this shortcode"
4801
  msgstr ""
4802
 
4803
- #: ../includes/mycred-shortcodes.php:957
4804
- #, php-format
4805
- msgid "Convert <span>%s</span> to <span>%s</span>"
4806
  msgstr ""
4807
 
4808
- #: ../includes/mycred-shortcodes.php:966
4809
- #, php-format
4810
- msgid "Your current %s balance"
4811
  msgstr ""
4812
 
4813
- #: ../includes/mycred-shortcodes.php:974
4814
- #, php-format
4815
- msgid "Minimum %s"
4816
  msgstr ""
4817
 
4818
- #: ../includes/mycred-shortcodes.php:978
4819
- #, php-format
4820
- msgid "1 %s = <span class=\"rate\">%s</span> %s"
 
4821
  msgstr ""
4822
 
4823
- #: ../includes/mycred-shortcodes.php:984
4824
- msgid "Exchange"
 
 
4825
  msgstr ""
4826
 
4827
- #: ../includes/mycred-shortcodes.php:1049
4828
- msgid "No instances found for this point type"
 
4829
  msgstr ""
4830
 
4831
- #: ../includes/mycred-shortcodes.php:1053
4832
- msgid "Invalid point type"
4833
  msgstr ""
4834
 
4835
- #: ../includes/mycred-shortcodes.php:1114
4836
- msgid "Instance"
4837
  msgstr ""
4838
 
4839
- #: ../includes/mycred-shortcodes.php:1116 ../modules/mycred-module-hooks.php:672 .
4840
- #: ./modules/mycred-module-hooks.php:679 ../modules/mycred-module-hooks.php:703 ..
4841
- #: modules/mycred-module-hooks.php:710 ../modules/mycred-module-hooks.php:780 ..
4842
- #: modules/mycred-module-hooks.php:787 ../modules/mycred-module-hooks.php:1011 ..
4843
- #: modules/mycred-module-hooks.php:1153 ../modules/mycred-module-hooks.php:1170 .
4844
- #: ./modules/mycred-module-hooks.php:1219 ../modules/mycred-module-hooks.php:3008
4845
- #: ../modules/mycred-module-hooks.php:3028 ../plugins/mycred-hook-affiliatewp.php:
4846
- #: 237 ../plugins/mycred-hook-bbPress.php:410 ../plugins/mycred-hook-bbPress.php:
4847
- #: 440 ../plugins/mycred-hook-bbPress.php:475 ../plugins/mycred-hook-bbPress.php:
4848
- #: 492 ../plugins/mycred-hook-buddypress-gallery.php:102 ../plugins/mycred-hook-
4849
- #: buddypress-links.php:250 ../plugins/mycred-hook-buddypress-links.php:267 ..
4850
- #: plugins/mycred-hook-buddypress-links.php:284 ../plugins/mycred-hook-
4851
- #: buddypress-links.php:294 ../plugins/mycred-hook-buddypress-links.php:303 ..
4852
- #: plugins/mycred-hook-buddypress-links.php:320 ../plugins/mycred-hook-
4853
- #: buddypress-media.php:209 ../plugins/mycred-hook-buddypress-media.php:223 ..
4854
- #: plugins/mycred-hook-buddypress-media.php:237 ../plugins/mycred-hook-
4855
- #: buddypress.php:490 ../plugins/mycred-hook-buddypress.php:507 ../plugins/mycred-
4856
- #: hook-buddypress.php:524 ../plugins/mycred-hook-buddypress.php:541 ..
4857
- #: plugins/mycred-hook-buddypress.php:574 ../plugins/mycred-hook-buddypress.php:
4858
- #: 604 ../plugins/mycred-hook-buddypress.php:621 ../plugins/mycred-hook-
4859
- #: buddypress.php:1193 ../plugins/mycred-hook-buddypress.php:1210 ..
4860
- #: plugins/mycred-hook-buddypress.php:1227 ../plugins/mycred-hook-buddypress.php:
4861
- #: 1244 ../plugins/mycred-hook-buddypress.php:1262 ../plugins/mycred-hook-
4862
- #: buddypress.php:1292 ../plugins/mycred-hook-buddypress.php:1309 ..
4863
- #: plugins/mycred-hook-contact-form7.php:147 ../plugins/mycred-hook-events-
4864
- #: manager-light.php:192 ../plugins/mycred-hook-gravityforms.php:148 ..
4865
- #: plugins/mycred-hook-invite-anyone.php:202 ../plugins/mycred-hook-invite-
4866
- #: anyone.php:205 ../plugins/mycred-hook-invite-anyone.php:223 ../plugins/mycred-
4867
- #: hook-invite-anyone.php:226 ../plugins/mycred-hook-sharethis.php:302 ..
4868
- #: plugins/mycred-hook-simplepress.php:284 ../plugins/mycred-hook-simplepress.
4869
- #: php:314 ../plugins/mycred-hook-woocommerce.php:317 ../plugins/mycred-hook-wp-
4870
- #: favorite-posts.php:213 ../plugins/mycred-hook-wp-favorite-posts.php:231 ..
4871
- #: plugins/mycred-hook-wp-postratings.php:156 ../plugins/mycred-hook-wp-
4872
- #: postratings.php:175
4873
- msgid "Limit"
4874
  msgstr ""
4875
 
4876
- #: ../includes/mycred-widgets.php:22
4877
- #, php-format
4878
- msgid "Show the current users %s balance"
4879
  msgstr ""
4880
 
4881
- #: ../includes/mycred-widgets.php:25
4882
- #, php-format
4883
- msgid "(%s) My Balance"
4884
  msgstr ""
4885
 
4886
- #: ../includes/mycred-widgets.php:212
4887
- msgid "Layout"
 
 
 
4888
  msgstr ""
4889
 
4890
- #: ../includes/mycred-widgets.php:220
4891
- msgid "Include history"
4892
  msgstr ""
4893
 
4894
- #: ../includes/mycred-widgets.php:222
4895
- msgid "History Title"
 
 
4896
  msgstr ""
4897
 
4898
- #: ../includes/mycred-widgets.php:224
4899
- msgid "Number of entires"
 
 
4900
  msgstr ""
4901
 
4902
- #: ../includes/mycred-widgets.php:226 ../includes/mycred-widgets.php:411
4903
- msgid "Row layout"
 
4904
  msgstr ""
4905
 
4906
- #: ../includes/mycred-widgets.php:234 ../includes/mycred-widgets.php:612
4907
- msgid "Show message when not logged in"
 
4908
  msgstr ""
4909
 
4910
- #: ../includes/mycred-widgets.php:236 ../includes/mycred-widgets.php:613
4911
- msgid "Message"
 
4912
  msgstr ""
4913
 
4914
- #: ../includes/mycred-widgets.php:306
4915
- #, php-format
4916
- msgid "Show a list of users sorted by their %s balance"
4917
  msgstr ""
4918
 
4919
- #: ../includes/mycred-widgets.php:309
4920
- #, php-format
4921
- msgid "(%s) Leaderboard"
4922
  msgstr ""
4923
 
4924
- #: ../includes/mycred-widgets.php:398
4925
- msgid "Based On"
4926
  msgstr ""
4927
 
4928
- #: ../includes/mycred-widgets.php:400
4929
- msgid ""
4930
- "Use \"balance\" to base the leaderboard on your users current balances or use "
4931
- "a specific reference."
4932
  msgstr ""
4933
 
4934
- #: ../includes/mycred-widgets.php:400
4935
- msgid "Reference Guide"
4936
  msgstr ""
4937
 
4938
- #: ../includes/mycred-widgets.php:405
4939
- msgid "Visible to non-members"
 
 
4940
  msgstr ""
4941
 
4942
- #: ../includes/mycred-widgets.php:407
4943
- msgid "Number of users"
 
4944
  msgstr ""
4945
 
4946
- #: ../includes/mycred-widgets.php:416
4947
- msgid "Offset"
 
4948
  msgstr ""
4949
 
4950
- #: ../includes/mycred-widgets.php:418
4951
- msgid "Optional offset of order. Use zero to return the first in the list."
4952
  msgstr ""
4953
 
4954
- #: ../includes/mycred-widgets.php:421
4955
- msgid "Order"
 
4956
  msgstr ""
4957
 
4958
- #: ../includes/mycred-widgets.php:441
4959
- msgid "Append current users position"
4960
  msgstr ""
4961
 
4962
- #: ../includes/mycred-widgets.php:442
4963
- msgid ""
4964
- "If the current user is not in this leaderboard, you can select to append "
4965
- "them at the end with their current position."
4966
  msgstr ""
4967
 
4968
- #: ../includes/mycred-widgets.php:493
4969
- msgid "Shows the current users balances for each point type."
4970
  msgstr ""
4971
 
4972
- #: ../includes/mycred-widgets.php:496
4973
- #, php-format
4974
- msgid "(%s) Wallet"
4975
  msgstr ""
4976
 
4977
- #: ../includes/mycred-widgets.php:604
4978
- msgid "Row Layout"
 
 
4979
  msgstr ""
4980
 
4981
- #: ../includes/importers/mycred-balances.php:81 ../includes/importers/mycred-
4982
- #: balances.php:159 ../includes/importers/mycred-balances.php:198 ..
4983
- #: includes/importers/mycred-balances.php:213 ../includes/importers/mycred-log-
4984
- #: entries.php:81 ../includes/importers/mycred-log-entries.php:126 ..
4985
- #: includes/importers/mycred-log-entries.php:165 ../includes/importers/mycred-
4986
- #: log-entries.php:180
4987
- msgid "Sorry, there has been an error."
4988
  msgstr ""
4989
 
4990
- #: ../includes/importers/mycred-balances.php:82 ../includes/importers/mycred-log-
4991
- #: entries.php:82
4992
- msgid "The file does not exist, please try again."
4993
  msgstr ""
4994
 
4995
- #: ../includes/importers/mycred-balances.php:160 ../includes/importers/mycred-log-
4996
- #: entries.php:127
4997
- msgid "The CSV is invalid."
4998
  msgstr ""
4999
 
5000
- #: ../includes/importers/mycred-balances.php:171
5001
- #, php-format
5002
- msgid ""
5003
- "Import complete - A total of <strong>%d</strong> balances were successfully "
5004
- "imported. <strong>%d</strong> was skipped."
5005
  msgstr ""
5006
 
5007
- #: ../includes/importers/mycred-balances.php:181 ../includes/importers/mycred-
5008
- #: cubepoints.php:293 ../includes/importers/mycred-log-entries.php:148
5009
- msgid "Import More"
5010
  msgstr ""
5011
 
5012
- #: ../includes/importers/mycred-balances.php:227
5013
- msgid "Import Balances"
5014
  msgstr ""
5015
 
5016
- #: ../includes/importers/mycred-balances.php:244
5017
- msgid "Import balances from a CSV file."
5018
  msgstr ""
5019
 
5020
- #: ../includes/importers/mycred-balances.php:252 ../includes/importers/mycred-log-
5021
- #: entries.php:219
5022
- msgid ""
5023
- "Before you can upload your import file, you will need to fix the following "
5024
- "error:"
5025
  msgstr ""
5026
 
5027
- #: ../includes/importers/mycred-balances.php:261 ../includes/importers/mycred-log-
5028
- #: entries.php:228
5029
- msgid "Choose a file from your computer:"
5030
  msgstr ""
5031
 
5032
- #: ../includes/importers/mycred-balances.php:267 ../includes/importers/mycred-log-
5033
- #: entries.php:234
5034
- #, php-format
5035
- msgid "Maximum size: %s"
5036
  msgstr ""
5037
 
5038
- #: ../includes/importers/mycred-balances.php:272 ../includes/importers/mycred-log-
5039
- #: entries.php:239
5040
- msgid "OR enter path to file:"
5041
  msgstr ""
5042
 
5043
- #: ../includes/importers/mycred-balances.php:279 ../includes/importers/mycred-log-
5044
- #: entries.php:246
5045
- msgid "Delimiter"
5046
  msgstr ""
5047
 
5048
- #: ../includes/importers/mycred-balances.php:283
5049
- msgid "Method"
5050
  msgstr ""
5051
 
5052
- #: ../includes/importers/mycred-balances.php:285
5053
- msgid "Replace current balances with the amount in this CSV file"
5054
  msgstr ""
5055
 
5056
- #: ../includes/importers/mycred-balances.php:286
5057
- msgid "Adjust current balances according to the amount in this CSV file"
5058
  msgstr ""
5059
 
5060
- #: ../includes/importers/mycred-balances.php:292 ../includes/importers/mycred-log-
5061
- #: entries.php:252
5062
- msgid "Upload file and import"
5063
  msgstr ""
5064
 
5065
- #: ../includes/importers/mycred-cubepoints.php:276
5066
- msgid "No balances were imported."
5067
  msgstr ""
5068
 
5069
- #: ../includes/importers/mycred-cubepoints.php:276
5070
- msgid "No log entries were imported!"
5071
  msgstr ""
5072
 
5073
- #: ../includes/importers/mycred-cubepoints.php:282 ../includes/importers/mycred-
5074
- #: log-entries.php:138
5075
- #, php-format
5076
- msgid ""
5077
- "Import complete - A total of <strong>%d</strong> entries were successfully "
5078
- "imported. <strong>%d</strong> was skipped."
5079
  msgstr ""
5080
 
5081
- #: ../includes/importers/mycred-cubepoints.php:306
5082
- msgid "No CubePoints log."
5083
  msgstr ""
5084
 
5085
- #: ../includes/importers/mycred-cubepoints.php:317
5086
- msgid "Import CubePoints Log"
5087
  msgstr ""
5088
 
5089
- #: ../includes/importers/mycred-cubepoints.php:334
5090
- msgid "Select what to import"
 
 
5091
  msgstr ""
5092
 
5093
- #: ../includes/importers/mycred-cubepoints.php:335
5094
- msgid "Log Entries Only"
5095
  msgstr ""
5096
 
5097
- #: ../includes/importers/mycred-cubepoints.php:336
5098
- msgid "CubePoints Balances Only"
5099
  msgstr ""
5100
 
5101
- #: ../includes/importers/mycred-cubepoints.php:337
5102
- msgid "Log Entries and Balances"
 
 
5103
  msgstr ""
5104
 
5105
- #: ../includes/importers/mycred-cubepoints.php:351
5106
- msgid "Import"
 
5107
  msgstr ""
5108
 
5109
- #: ../includes/importers/mycred-cubepoints.php:360
5110
- msgid ""
5111
- "Warning! Importing CubePoints balances will replace your users myCRED "
5112
- "balance!"
5113
  msgstr ""
5114
 
5115
- #: ../includes/importers/mycred-cubepoints.php:378
5116
- msgid "Import Log"
5117
  msgstr ""
5118
 
5119
- #: ../includes/importers/mycred-log-entries.php:194
5120
- msgid "Import Log Entries"
5121
  msgstr ""
5122
 
5123
- #: ../includes/importers/mycred-log-entries.php:211
5124
- msgid "Import log entries from a CSV file."
5125
  msgstr ""
5126
 
5127
- #: ../modules/mycred-module-addons.php:25 ../modules/mycred-module-addons.php:26
5128
- msgid "Add-ons"
 
5129
  msgstr ""
5130
 
5131
- #: ../modules/mycred-module-addons.php:160
5132
- msgid "Give your users badges based on their interaction with your website."
5133
  msgstr ""
5134
 
5135
- #: ../modules/mycred-module-addons.php:171
5136
- msgid "Setup recurring payouts or offer / charge interest on user account balances."
5137
  msgstr ""
5138
 
5139
- #: ../modules/mycred-module-addons.php:182
5140
- msgid ""
5141
- "The <strong>buy</strong>CRED Add-on allows your users to buy points using "
5142
- "PayPal, Skrill (Moneybookers) or NETbilling. <strong>buy</strong>CRED can "
5143
- "also let your users buy points for other members."
5144
  msgstr ""
5145
 
5146
- #: ../modules/mycred-module-addons.php:193
5147
- msgid ""
5148
- "The coupons add-on allows you to create coupons that users can use to add "
5149
- "points to their accounts."
5150
  msgstr ""
5151
 
5152
- #: ../modules/mycred-module-addons.php:204
5153
- msgid "Create email notices for any type of myCRED instance."
 
5154
  msgstr ""
5155
 
5156
- #: ../modules/mycred-module-addons.php:215
5157
- msgid ""
5158
- "Let your users pay using their <strong>my</strong>CRED points balance. "
5159
- "Supported Carts: WooCommerce, MarketPress and WP E-Commerce. Supported Event "
5160
- "Bookings: Event Espresso and Events Manager (free & pro)."
5161
  msgstr ""
5162
 
5163
- #: ../modules/mycred-module-addons.php:226
5164
- msgid "Create pop-up notifications for when users gain or loose points."
5165
  msgstr ""
5166
 
5167
- #: ../modules/mycred-module-addons.php:238
5168
- msgid ""
5169
- "Create ranks for users reaching a certain number of %_plural% with the "
5170
- "option to add logos for each rank."
5171
  msgstr ""
5172
 
5173
- #: ../modules/mycred-module-addons.php:249
5174
- msgid ""
5175
- "This add-on allows you to sell posts, pages or any public post types on your "
5176
- "website. You can either sell the entire content or using our shortcode, sell "
5177
- "parts of your content allowing you to offer \"teasers\"."
5178
  msgstr ""
5179
 
5180
- #: ../modules/mycred-module-addons.php:260
5181
- msgid ""
5182
- "Gives you access to your myCRED Staticstics based on your users gains and "
5183
- "loses."
5184
  msgstr ""
5185
 
5186
- #: ../modules/mycred-module-addons.php:271
5187
- msgid ""
5188
- "Allow your users to send or \"donate\" points to other members by either using "
5189
- "the mycred_transfer shortcode or the myCRED Transfer widget."
5190
  msgstr ""
5191
 
5192
- #: ../modules/mycred-module-addons.php:313
5193
- #, php-format
5194
- msgid "%s Add-ons"
 
 
5195
  msgstr ""
5196
 
5197
- #: ../modules/mycred-module-addons.php:320
5198
- msgid "Add-on Activated"
 
 
 
5199
  msgstr ""
5200
 
5201
- #: ../modules/mycred-module-addons.php:323
5202
- msgid "Add-on Deactivated"
5203
  msgstr ""
5204
 
5205
- #: ../modules/mycred-module-addons.php:328
5206
- msgid "Add-ons Reloaded"
 
5207
  msgstr ""
5208
 
5209
- #: ../modules/mycred-module-addons.php:331
5210
- msgid "Add-ons can expand your current installation with further features."
5211
  msgstr ""
5212
 
5213
- #: ../modules/mycred-module-addons.php:358
5214
- msgid "Reload Add-ons"
 
5215
  msgstr ""
5216
 
5217
- #: ../modules/mycred-module-addons.php:359
5218
- #, php-format
5219
- msgid "You can find more add-ons in our %s."
5220
  msgstr ""
5221
 
5222
- #: ../modules/mycred-module-addons.php:359
5223
- msgid "online store"
5224
  msgstr ""
5225
 
5226
- #: ../modules/mycred-module-addons.php:382
5227
- msgid "Deactivate Add-on"
 
5228
  msgstr ""
5229
 
5230
- #: ../modules/mycred-module-addons.php:383
5231
- msgid "Deactivate"
5232
  msgstr ""
5233
 
5234
- #: ../modules/mycred-module-addons.php:390
5235
- msgid "Activate Add-on"
 
 
 
 
 
5236
  msgstr ""
5237
 
5238
- #: ../modules/mycred-module-addons.php:391
5239
- msgid "Activate"
 
5240
  msgstr ""
5241
 
5242
- #: ../modules/mycred-module-addons.php:409
5243
- msgid "Version"
 
5244
  msgstr ""
5245
 
5246
- #: ../modules/mycred-module-addons.php:413
5247
- msgid "By"
5248
  msgstr ""
5249
 
5250
- #: ../modules/mycred-module-addons.php:417
5251
- msgid "About"
5252
  msgstr ""
5253
 
5254
- #: ../modules/mycred-module-addons.php:421
5255
- msgid "Get Pro"
 
5256
  msgstr ""
5257
 
5258
- #: ../modules/mycred-module-buddypress.php:31
5259
- msgid "My History"
5260
  msgstr ""
5261
 
5262
- #: ../modules/mycred-module-buddypress.php:32
5263
- #, php-format
5264
- msgid "%s's History"
5265
  msgstr ""
5266
 
5267
- #: ../modules/mycred-module-buddypress.php:131
5268
- msgid "Current balance"
5269
  msgstr ""
5270
 
5271
- #: ../modules/mycred-module-buddypress.php:362
5272
- msgid "Go"
5273
  msgstr ""
5274
 
5275
- #: ../modules/mycred-module-buddypress.php:425
5276
- msgid "Show in Profile"
5277
  msgstr ""
5278
 
5279
- #: ../modules/mycred-module-buddypress.php:442
5280
- #, php-format
5281
- msgid "%singular% Balance"
5282
  msgstr ""
5283
 
5284
- #: ../modules/mycred-module-buddypress.php:459
5285
- #, php-format
5286
- msgid "Members and visitors can other members %_singular% balance."
5287
  msgstr ""
5288
 
5289
- #: ../modules/mycred-module-buddypress.php:469
5290
- msgid "%plural% History"
5291
  msgstr ""
5292
 
5293
- #: ../modules/mycred-module-buddypress.php:486
5294
- msgid "Members can view each others %_plural% history."
 
5295
  msgstr ""
5296
 
5297
- #: ../modules/mycred-module-buddypress.php:491
5298
- msgid "Menu Title"
5299
  msgstr ""
5300
 
5301
- #: ../modules/mycred-module-buddypress.php:493
5302
- msgid "Title shown to me"
5303
  msgstr ""
5304
 
5305
- #: ../modules/mycred-module-buddypress.php:498
5306
- #, php-format
5307
- msgid "Title shown to others. Use %s to show the first name."
5308
  msgstr ""
5309
 
5310
- #: ../modules/mycred-module-buddypress.php:503
5311
- msgid "Menu Position"
 
 
 
5312
  msgstr ""
5313
 
5314
- #: ../modules/mycred-module-buddypress.php:505
5315
- msgid "Current menu positions:"
5316
  msgstr ""
5317
 
5318
- #: ../modules/mycred-module-buddypress.php:510
5319
- msgid "History URL slug"
5320
  msgstr ""
5321
 
5322
- #: ../modules/mycred-module-buddypress.php:512
5323
- msgid "Do not use empty spaces!"
5324
  msgstr ""
5325
 
5326
- #: ../modules/mycred-module-buddypress.php:517
5327
- msgid "Number of history entries to show"
5328
  msgstr ""
5329
 
5330
- #: ../modules/mycred-module-hooks.php:107
5331
- #, php-format
5332
- msgid "%plural% for registrations"
5333
  msgstr ""
5334
 
5335
- #: ../modules/mycred-module-hooks.php:108
5336
- #, php-format
5337
- msgid "Award %_plural% for users joining your website."
5338
  msgstr ""
5339
 
5340
- #: ../modules/mycred-module-hooks.php:114
5341
- #, php-format
5342
- msgid "%plural% for daily visits"
5343
  msgstr ""
5344
 
5345
- #: ../modules/mycred-module-hooks.php:115
5346
- #, php-format
5347
- msgid "Award %_plural% for users visiting your website on a daily basis."
 
5348
  msgstr ""
5349
 
5350
- #: ../modules/mycred-module-hooks.php:121
5351
- #, php-format
5352
- msgid "%plural% for viewing content"
5353
  msgstr ""
5354
 
5355
- #: ../modules/mycred-module-hooks.php:122
5356
- msgid ""
5357
- "Award %_plural% to your users for viewing posts and / or %plural% to your "
5358
- "authors for members viewing their content."
5359
  msgstr ""
5360
 
5361
- #: ../modules/mycred-module-hooks.php:128
5362
- #, php-format
5363
- msgid "%plural% for logins"
 
5364
  msgstr ""
5365
 
5366
- #: ../modules/mycred-module-hooks.php:129
5367
- #, php-format
5368
- msgid ""
5369
- "Award %_plural% for logging in to your website. You can also set an optional "
5370
- "limit."
5371
  msgstr ""
5372
 
5373
- #: ../modules/mycred-module-hooks.php:135
5374
- #, php-format
5375
- msgid "%plural% for publishing content"
5376
  msgstr ""
5377
 
5378
- #: ../modules/mycred-module-hooks.php:136
 
5379
  #, php-format
5380
- msgid ""
5381
- "Award %_plural% for publishing content on your website. If your custom post "
5382
- "type is not shown bellow, make sure it is set to \"Public\"."
5383
  msgstr ""
5384
 
5385
- #: ../modules/mycred-module-hooks.php:142
5386
- #, php-format
5387
- msgid "%plural% for comments"
5388
  msgstr ""
5389
 
5390
- #: ../modules/mycred-module-hooks.php:142
5391
- #, php-format
5392
- msgid "%plural% for Disqus comments"
5393
  msgstr ""
5394
 
5395
- #: ../modules/mycred-module-hooks.php:143
5396
- #, php-format
5397
- msgid "Award %_plural% for making comments."
5398
  msgstr ""
5399
 
5400
- #: ../modules/mycred-module-hooks.php:149
5401
- #, php-format
5402
- msgid "%plural% for clicking on links"
5403
  msgstr ""
5404
 
5405
- #: ../modules/mycred-module-hooks.php:150
5406
- msgid ""
5407
- "Award %_plural% to users who clicks on links generated by the [mycred_link] "
5408
- "shortcode."
5409
  msgstr ""
5410
 
5411
- #: ../modules/mycred-module-hooks.php:156
5412
- #, php-format
5413
- msgid "%plural% for viewing Videos"
5414
  msgstr ""
5415
 
5416
- #: ../modules/mycred-module-hooks.php:157
5417
- msgid ""
5418
- "Award %_plural% to users who watches videos embedded using the "
5419
- "[mycred_video] shortcode."
5420
  msgstr ""
5421
 
5422
- #: ../modules/mycred-module-hooks.php:163
5423
- #, php-format
5424
- msgid "%plural% for referrals"
5425
  msgstr ""
5426
 
5427
- #: ../modules/mycred-module-hooks.php:164
5428
- msgid "Award %_plural% to users who refer either visitors and/or new member signups."
 
 
 
 
5429
  msgstr ""
5430
 
5431
- #: ../modules/mycred-module-hooks.php:199
5432
- #, php-format
5433
- msgid "%s Hooks"
5434
  msgstr ""
5435
 
5436
- #: ../modules/mycred-module-hooks.php:203
5437
  msgid ""
5438
- "Hooks are instances where %_plural% are awarded or deducted from a user, "
5439
- "depending on their actions around your website."
5440
  msgstr ""
5441
 
5442
- #: ../modules/mycred-module-hooks.php:417 ../modules/mycred-module-hooks.php:523 .
5443
- #: ./modules/mycred-module-hooks.php:683 ../modules/mycred-module-hooks.php:714 ..
5444
- #: modules/mycred-module-hooks.php:791 ../modules/mycred-module-hooks.php:1157 ..
5445
- #: modules/mycred-module-hooks.php:1174 ../modules/mycred-module-hooks.php:1223 .
5446
- #: ./modules/mycred-module-hooks.php:1675 ../modules/mycred-module-hooks.php:1692
5447
- #: ../modules/mycred-module-hooks.php:1709 ../modules/mycred-module-hooks.php:
5448
- #: 3000 ../modules/mycred-module-hooks.php:3020 ../plugins/mycred-hook-
5449
- #: affiliatewp.php:225 ../plugins/mycred-hook-affiliatewp.php:242 ..
5450
- #: plugins/mycred-hook-badgeOS.php:298 ../plugins/mycred-hook-bbPress.php:415 ..
5451
- #: plugins/mycred-hook-bbPress.php:428 ../plugins/mycred-hook-bbPress.php:445 ..
5452
- #: plugins/mycred-hook-bbPress.php:463 ../plugins/mycred-hook-bbPress.php:480 ..
5453
- #: plugins/mycred-hook-bbPress.php:497 ../plugins/mycred-hook-bbPress.php:519 ..
5454
- #: plugins/mycred-hook-buddypress-gallery.php:107 ../plugins/mycred-hook-
5455
- #: buddypress-links.php:255 ../plugins/mycred-hook-buddypress-links.php:272 ..
5456
- #: plugins/mycred-hook-buddypress-links.php:289 ../plugins/mycred-hook-
5457
- #: buddypress-links.php:308 ../plugins/mycred-hook-buddypress-links.php:325 ..
5458
- #: plugins/mycred-hook-buddypress-links.php:338 ../plugins/mycred-hook-
5459
- #: buddypress-media.php:213 ../plugins/mycred-hook-buddypress-media.php:227 ..
5460
- #: plugins/mycred-hook-buddypress-media.php:241 ../plugins/mycred-hook-
5461
- #: buddypress-media.php:254 ../plugins/mycred-hook-buddypress-media.php:264 ..
5462
- #: plugins/mycred-hook-buddypress-media.php:274 ../plugins/mycred-hook-
5463
- #: buddypress.php:495 ../plugins/mycred-hook-buddypress.php:512 ../plugins/mycred-
5464
- #: hook-buddypress.php:529 ../plugins/mycred-hook-buddypress.php:549 ..
5465
- #: plugins/mycred-hook-buddypress.php:562 ../plugins/mycred-hook-buddypress.php:
5466
- #: 579 ../plugins/mycred-hook-buddypress.php:592 ../plugins/mycred-hook-
5467
- #: buddypress.php:609 ../plugins/mycred-hook-buddypress.php:626 ../plugins/mycred-
5468
- #: hook-buddypress.php:1168 ../plugins/mycred-hook-buddypress.php:1181 ..
5469
- #: plugins/mycred-hook-buddypress.php:1198 ../plugins/mycred-hook-buddypress.php:
5470
- #: 1215 ../plugins/mycred-hook-buddypress.php:1232 ../plugins/mycred-hook-
5471
- #: buddypress.php:1249 ../plugins/mycred-hook-buddypress.php:1267 ..
5472
- #: plugins/mycred-hook-buddypress.php:1280 ../plugins/mycred-hook-buddypress.php:
5473
- #: 1297 ../plugins/mycred-hook-buddypress.php:1314 ../plugins/mycred-hook-contact-
5474
- #: form7.php:152 ../plugins/mycred-hook-gravityforms.php:153 ../plugins/mycred-
5475
- #: hook-invite-anyone.php:197 ../plugins/mycred-hook-invite-anyone.php:218 ..
5476
- #: plugins/mycred-hook-jetpack.php:506 ../plugins/mycred-hook-jetpack.php:519 ..
5477
- #: plugins/mycred-hook-sharethis.php:307 ../plugins/mycred-hook-simplepress.php:
5478
- #: 289 ../plugins/mycred-hook-simplepress.php:302 ../plugins/mycred-hook-
5479
- #: simplepress.php:319 ../plugins/mycred-hook-simplepress.php:337 ..
5480
- #: plugins/mycred-hook-wp-postratings.php:164 ../plugins/mycred-hook-wp-
5481
- #: postratings.php:183
5482
- msgid "Log template"
5483
  msgstr ""
5484
 
5485
- #: ../modules/mycred-module-hooks.php:666
5486
- #, php-format
5487
- msgid "%plural% for viewing Posts"
5488
  msgstr ""
5489
 
5490
- #: ../modules/mycred-module-hooks.php:669 ../modules/mycred-module-hooks.php:686 .
5491
- #: ./modules/mycred-module-hooks.php:700 ../modules/mycred-module-hooks.php:717 ..
5492
- #: modules/mycred-module-hooks.php:777 ../modules/mycred-module-hooks.php:794
5493
- msgid "Member"
5494
  msgstr ""
5495
 
5496
- #: ../modules/mycred-module-hooks.php:676 ../modules/mycred-module-hooks.php:692 .
5497
- #: ./modules/mycred-module-hooks.php:707 ../modules/mycred-module-hooks.php:723 ..
5498
- #: modules/mycred-module-hooks.php:784 ../modules/mycred-module-hooks.php:800 ..
5499
- #: modules/mycred-module-hooks.php:1670 ../modules/mycred-module-hooks.php:1687 .
5500
- #: ./modules/mycred-module-hooks.php:1704
5501
- msgid "Content Author"
5502
  msgstr ""
5503
 
5504
- #: ../modules/mycred-module-hooks.php:697
5505
  #, php-format
5506
- msgid "%plural% for viewing Pages"
5507
  msgstr ""
5508
 
5509
- #: ../modules/mycred-module-hooks.php:774
5510
  #, php-format
5511
- msgid "%plural% for viewing %s"
 
5512
  msgstr ""
5513
 
5514
- #: ../modules/mycred-module-hooks.php:1147
 
 
5515
  #, php-format
5516
- msgid "%plural% for Posts"
5517
- msgstr ""
 
 
5518
 
5519
- #: ../modules/mycred-module-hooks.php:1164
5520
  #, php-format
5521
- msgid "%plural% for Pages"
 
5522
  msgstr ""
5523
 
5524
- #: ../modules/mycred-module-hooks.php:1213
5525
- #, php-format
5526
- msgid "%plural% for %s"
5527
  msgstr ""
5528
 
5529
- #: ../modules/mycred-module-hooks.php:1660
5530
- msgid ""
5531
- "%plural% are only awarded when your website has been synced with the Disqus "
5532
- "server!"
5533
  msgstr ""
5534
 
5535
- #: ../modules/mycred-module-hooks.php:1666 ../modules/mycred-module-hooks.php:
5536
- #: 1683 ../modules/mycred-module-hooks.php:1700
5537
- msgid "Comment Author"
5538
  msgstr ""
5539
 
5540
- #: ../modules/mycred-module-hooks.php:1680
5541
- msgid "Comment Marked SPAM"
5542
  msgstr ""
5543
 
5544
- #: ../modules/mycred-module-hooks.php:1697
5545
- msgid "Trashed / Unapproved Comments"
5546
  msgstr ""
5547
 
5548
- #: ../modules/mycred-module-hooks.php:1717
5549
- msgid "Limit per post"
5550
  msgstr ""
5551
 
5552
- #: ../modules/mycred-module-hooks.php:1719
5553
- msgid ""
5554
- "The number of comments per post that grants %_plural% to the comment author. "
5555
- "Use zero for unlimited."
5556
  msgstr ""
5557
 
5558
- #: ../modules/mycred-module-hooks.php:1723
5559
- msgid "Limit per day"
5560
  msgstr ""
5561
 
5562
- #: ../modules/mycred-module-hooks.php:1725
5563
- msgid "Number of comments per day that grants %_plural%. Use zero for unlimited."
5564
  msgstr ""
5565
 
5566
- #: ../modules/mycred-module-hooks.php:1730
5567
- msgid ""
5568
- "%plural% is to be awarded even when comment authors reply to their own "
5569
- "comment."
5570
  msgstr ""
5571
 
5572
- #: ../modules/mycred-module-hooks.php:1810
5573
- msgid "Once for each unique URL"
5574
  msgstr ""
5575
 
5576
- #: ../modules/mycred-module-hooks.php:1811
5577
- msgid "Once for each unique link id"
5578
  msgstr ""
5579
 
5580
- #: ../modules/mycred-module-hooks.php:2022
5581
- msgid ""
5582
- "The default amount to award for clicking on links. You can override this in "
5583
- "the shortcode."
5584
  msgstr ""
5585
 
5586
- #: ../modules/mycred-module-hooks.php:2029
5587
- #, php-format
5588
- msgid "Custom tags: %url%, %title% or %id%."
5589
  msgstr ""
5590
 
5591
- #: ../modules/mycred-module-hooks.php:2042 ../modules/mycred-module-hooks.php:3096
5592
- msgid "Note!"
5593
  msgstr ""
5594
 
5595
- #: ../modules/mycred-module-hooks.php:2042
5596
- msgid ""
5597
- "If no ID is set when using the mycred_link shortcode, the shortcode will "
5598
- "generate one automatically based on the value set under href. If you are "
5599
- "using this feature for \"sharing\" content, it is recommended that you limit "
5600
- "by ID."
5601
  msgstr ""
5602
 
5603
- #: ../modules/mycred-module-hooks.php:2044 ../modules/mycred-module-hooks.php:2428
5604
- msgid "Available Shortcode"
5605
  msgstr ""
5606
 
5607
- #: ../modules/mycred-module-hooks.php:2392
5608
- msgid "Amount to award for viewing videos."
5609
  msgstr ""
5610
 
5611
- #: ../modules/mycred-module-hooks.php:2402
5612
- msgid "Award Logic"
 
 
 
 
 
 
 
 
 
 
 
 
 
5613
  msgstr ""
5614
 
5615
- #: ../modules/mycred-module-hooks.php:2404
5616
  #, php-format
5617
- msgid "Select when %_plural% should be awarded or deducted."
5618
  msgstr ""
5619
 
5620
- #: ../modules/mycred-module-hooks.php:2405
5621
- msgid "Play - As soon as video starts playing."
5622
  msgstr ""
5623
 
5624
- #: ../modules/mycred-module-hooks.php:2406
5625
- msgid "Full - First when the entire video has played."
5626
  msgstr ""
5627
 
5628
- #: ../modules/mycred-module-hooks.php:2407
5629
- msgid "Interval - For each x number of seconds watched."
5630
  msgstr ""
5631
 
5632
- #: ../modules/mycred-module-hooks.php:2412
5633
- msgid "Number of seconds"
5634
  msgstr ""
5635
 
5636
- #: ../modules/mycred-module-hooks.php:2419
5637
- msgid "Leniency"
 
5638
  msgstr ""
5639
 
5640
- #: ../modules/mycred-module-hooks.php:2421
5641
- msgid ""
5642
- "The maximum percentage a users view of a movie can differ from the actual "
5643
- "length."
5644
  msgstr ""
5645
 
5646
- #: ../modules/mycred-module-hooks.php:2424
5647
- msgid ""
5648
- "Do not set this value to zero! A lot of thing can happen while a user "
5649
- "watches a movie and sometimes a few seconds can drop of the counter due to "
5650
- "buffering or play back errors."
5651
  msgstr ""
5652
 
5653
- #: ../modules/mycred-module-hooks.php:2499
5654
- msgid "Affiliate Program"
5655
  msgstr ""
5656
 
5657
- #: ../modules/mycred-module-hooks.php:2508
5658
- msgid "Per Day"
5659
  msgstr ""
5660
 
5661
- #: ../modules/mycred-module-hooks.php:2667
5662
- msgid "Link"
 
 
5663
  msgstr ""
5664
 
5665
- #: ../modules/mycred-module-hooks.php:2671
5666
- msgid "Visitors Referred"
5667
  msgstr ""
5668
 
5669
- #: ../modules/mycred-module-hooks.php:2675
5670
- msgid "Signups Referred"
5671
  msgstr ""
5672
 
5673
- #: ../modules/mycred-module-hooks.php:2994 ../plugins/mycred-hook-affiliatewp.php:
5674
- #: 231
5675
- msgid "Referring Visitors"
 
5676
  msgstr ""
5677
 
5678
- #: ../modules/mycred-module-hooks.php:3013 ../modules/mycred-module-hooks.php:3033
5679
- msgid "Referring Signups"
5680
  msgstr ""
5681
 
5682
- #: ../modules/mycred-module-hooks.php:3017
5683
- msgid "Visitors who have Cookies disabled will not award %_plural%."
 
 
5684
  msgstr ""
5685
 
5686
- #: ../modules/mycred-module-hooks.php:3035
5687
- msgid "Registrations are disabled."
 
 
 
5688
  msgstr ""
5689
 
5690
- #: ../modules/mycred-module-hooks.php:3043
5691
- msgid "Referral Links"
5692
  msgstr ""
5693
 
5694
- #: ../modules/mycred-module-hooks.php:3047
5695
- msgid "Assign numeric referral IDs to each user."
5696
  msgstr ""
5697
 
5698
- #: ../modules/mycred-module-hooks.php:3048 ../modules/mycred-module-hooks.php:3054
5699
- msgid "Example"
5700
  msgstr ""
5701
 
5702
- #: ../modules/mycred-module-hooks.php:3053
5703
- msgid "Assign usernames as IDs for each user."
5704
  msgstr ""
5705
 
5706
- #: ../modules/mycred-module-hooks.php:3057
5707
- msgid "IP Limit"
5708
  msgstr ""
5709
 
5710
- #: ../modules/mycred-module-hooks.php:3061
5711
- msgid "The number of times each IP address grants %_plural%. Use zero for unlimited."
5712
  msgstr ""
5713
 
5714
- #: ../modules/mycred-module-hooks.php:3065 ../modules/mycred-module-hooks.php:3100
5715
- msgid "BuddyPress Profile"
5716
  msgstr ""
5717
 
5718
- #: ../modules/mycred-module-hooks.php:3068
5719
- msgid "Insert Link in users Profile"
 
 
5720
  msgstr ""
5721
 
5722
- #: ../modules/mycred-module-hooks.php:3069
 
 
 
 
5723
  msgid ""
5724
- "Option to inser the referral link in users profiles. Links will only be "
5725
- "visible to users viewing their own profiles or administrators."
5726
  msgstr ""
5727
 
5728
- #: ../modules/mycred-module-hooks.php:3075
5729
- msgid "Leave empty to hide."
5730
  msgstr ""
5731
 
5732
- #: ../modules/mycred-module-hooks.php:3078
5733
- msgid "Description"
5734
  msgstr ""
5735
 
5736
- #: ../modules/mycred-module-hooks.php:3079
5737
- msgid "Optional description to insert under the link."
5738
  msgstr ""
5739
 
5740
- #: ../modules/mycred-module-hooks.php:3093
5741
- msgid "Profile Positioning"
 
5742
  msgstr ""
5743
 
5744
- #: ../modules/mycred-module-hooks.php:3095
5745
- msgid ""
5746
- "You can move around the referral link on your users profile by changing the "
5747
- "position. Increase to move up, decrease to move down."
5748
  msgstr ""
5749
 
5750
- #: ../modules/mycred-module-hooks.php:3096
5751
- msgid "You can not move the referral link above the users \"Base\" profile details!"
5752
  msgstr ""
5753
 
5754
- #: ../modules/mycred-module-hooks.php:3102
5755
- msgid "Requires BuddyPress Extended Profiles to be enabled."
5756
  msgstr ""
5757
 
5758
- #: ../modules/mycred-module-log.php:207 ../modules/mycred-module-log.php:230 ..
5759
- #: modules/mycred-module-settings.php:66 ../modules/mycred-module-settings.php:109
5760
- msgid "Access denied for this action"
5761
  msgstr ""
5762
 
5763
- #: ../modules/mycred-module-log.php:214
5764
- msgid "Row Deleted"
5765
  msgstr ""
5766
 
5767
- #: ../modules/mycred-module-log.php:243
5768
- msgid "Log entry not found"
5769
  msgstr ""
5770
 
5771
- #: ../modules/mycred-module-log.php:256
5772
- msgid "Entry Updated"
5773
  msgstr ""
5774
 
5775
- #: ../modules/mycred-module-log.php:316 ../modules/mycred-module-settings.php:621
5776
- msgid "Entries"
5777
  msgstr ""
5778
 
5779
- #: ../modules/mycred-module-log.php:333 ../modules/mycred-module-log.php:431 ..
5780
- #: modules/mycred-module-log.php:701 ../modules/mycred-module-settings.php:772
5781
- msgid "Export"
5782
  msgstr ""
5783
 
5784
- #: ../modules/mycred-module-log.php:340
5785
- msgid "Search results for"
5786
  msgstr ""
5787
 
5788
- #: ../modules/mycred-module-log.php:411
5789
- #, php-format
5790
- msgid "%s Log"
5791
  msgstr ""
5792
 
5793
- #: ../modules/mycred-module-log.php:422
5794
  msgid ""
5795
- "Warning. The required Mcrypt PHP Library is not installed on this server! "
5796
- "Certain hooks and shortcodes will not work correctly!"
5797
  msgstr ""
5798
 
5799
- #: ../modules/mycred-module-log.php:563
5800
- msgid "Edit"
5801
  msgstr ""
5802
 
5803
- #: ../modules/mycred-module-log.php:610
5804
- msgid "Time"
5805
  msgstr ""
5806
 
5807
- #: ../modules/mycred-module-log.php:614
5808
- msgid "Current Log Entry"
 
 
 
 
5809
  msgstr ""
5810
 
5811
- #: ../modules/mycred-module-log.php:616
5812
- msgid "The current saved log entry"
5813
  msgstr ""
5814
 
5815
- #: ../modules/mycred-module-log.php:619
5816
- msgid "Adjust Log Entry"
5817
  msgstr ""
5818
 
5819
- #: ../modules/mycred-module-log.php:621
5820
- msgid "The new log entry"
 
 
 
5821
  msgstr ""
5822
 
5823
- #: ../modules/mycred-module-log.php:624
5824
- msgid "Update Log Entry"
5825
  msgstr ""
5826
 
5827
- #: ../modules/mycred-module-log.php:695
 
5828
  #, php-format
5829
- msgid "My %s History"
5830
  msgstr ""
5831
 
5832
- #: ../modules/mycred-module-settings.php:70 ../modules/mycred-module-settings.php:
5833
- #: 113 ../modules/mycred-module-settings.php:166
5834
- msgid "Missing point type"
5835
  msgstr ""
5836
 
5837
- #: ../modules/mycred-module-settings.php:144
5838
- msgid "Accounts successfully reset"
5839
  msgstr ""
5840
 
5841
- #: ../modules/mycred-module-settings.php:196
5842
- msgid "No users found to export"
5843
  msgstr ""
5844
 
5845
- #: ../modules/mycred-module-settings.php:246
5846
- msgid "Invalid decimal value."
 
5847
  msgstr ""
5848
 
5849
- #: ../modules/mycred-module-settings.php:293
5850
- msgid "Log Updated"
 
5851
  msgstr ""
5852
 
5853
- #: ../modules/mycred-module-settings.php:423
5854
- msgid "Update Database"
5855
  msgstr ""
5856
 
5857
- #: ../modules/mycred-module-settings.php:424
5858
- msgid "Zero for no decimals or maximum 20."
5859
  msgstr ""
5860
 
5861
- #: ../modules/mycred-module-settings.php:427 ../modules/mycred-module-settings.
5862
- #: php:528
5863
- msgid "Tip"
5864
  msgstr ""
5865
 
5866
- #: ../modules/mycred-module-settings.php:427
5867
- msgid ""
5868
- "As this is your main point type, the value you select here will be the "
5869
- "largest number of decimals your installation will support."
5870
  msgstr ""
5871
 
5872
- #: ../modules/mycred-module-settings.php:440 ../modules/mycred-module-settings.
5873
- #: php:453
5874
- msgid "No decimals"
5875
  msgstr ""
5876
 
5877
- #: ../modules/mycred-module-settings.php:465
5878
- #, php-format
5879
- msgid "<a href=\"%s\">Click here</a> to change your default point types setup."
5880
  msgstr ""
5881
 
5882
- #: ../modules/mycred-module-settings.php:503
5883
- #, php-format
5884
- msgid "%s Settings"
5885
  msgstr ""
5886
 
5887
- #: ../modules/mycred-module-settings.php:507
5888
- msgid "Adjust your core or add-on settings."
5889
  msgstr ""
5890
 
5891
- #: ../modules/mycred-module-settings.php:513
5892
- msgid "Core Settings"
 
 
 
 
5893
  msgstr ""
5894
 
5895
- #: ../modules/mycred-module-settings.php:515
5896
- msgid "Name"
 
5897
  msgstr ""
5898
 
5899
- #: ../modules/mycred-module-settings.php:520
5900
- #, php-format
5901
- msgid "Accessible though the %singular% template tag."
5902
  msgstr ""
5903
 
5904
- #: ../modules/mycred-module-settings.php:525
5905
- msgid "Accessible though the %plural% template tag."
 
5906
  msgstr ""
5907
 
5908
- #: ../modules/mycred-module-settings.php:528
5909
- msgid ""
5910
- "Adding an underscore at the beginning of template tag for names will return "
5911
- "them in lowercase. i.e. %_singular%"
5912
  msgstr ""
5913
 
5914
- #: ../modules/mycred-module-settings.php:552
5915
- msgid "Separator"
5916
- msgid_plural "Separators"
5917
- msgstr[0] ""
5918
- msgstr[1] ""
5919
-
5920
- #: ../modules/mycred-module-settings.php:559
5921
- msgid "Edit Settings"
5922
  msgstr ""
5923
 
5924
- #: ../modules/mycred-module-settings.php:561 ../modules/mycred-module-settings.
5925
- #: php:566
5926
- msgid "Capability to check for."
5927
  msgstr ""
5928
 
5929
- #: ../modules/mycred-module-settings.php:564
5930
- msgid "Edit Users %plural%"
5931
  msgstr ""
5932
 
5933
- #: ../modules/mycred-module-settings.php:588
5934
- msgid "Comma separated list of user ids to exclude. No spaces allowed!"
 
5935
  msgstr ""
5936
 
5937
- #: ../modules/mycred-module-settings.php:612
5938
- msgid "Management"
 
5939
  msgstr ""
5940
 
5941
- #: ../modules/mycred-module-settings.php:614
5942
- msgid "The Log"
 
 
5943
  msgstr ""
5944
 
5945
- #: ../modules/mycred-module-settings.php:617
5946
- msgid "Table Name"
5947
  msgstr ""
5948
 
5949
- #: ../modules/mycred-module-settings.php:626
5950
- msgid "Empty Log"
5951
  msgstr ""
5952
 
5953
- #: ../modules/mycred-module-settings.php:641
5954
- msgid "Set all to zero"
5955
  msgstr ""
5956
 
5957
- #: ../modules/mycred-module-settings.php:641
5958
- msgid "CSV Export"
 
5959
  msgstr ""
5960
 
5961
- #: ../modules/mycred-module-settings.php:667
5962
- msgid "Default"
5963
  msgstr ""
5964
 
5965
- #: ../modules/mycred-module-settings.php:670 ../modules/mycred-module-settings.
5966
- #: php:691 ../modules/mycred-module-settings.php:715
5967
- msgid "Meta Key"
5968
  msgstr ""
5969
 
5970
- #: ../modules/mycred-module-settings.php:712
5971
- msgid "Add New Type"
 
5972
  msgstr ""
5973
 
5974
- #: ../modules/mycred-module-settings.php:717
5975
- msgid "A unique ID for this type."
5976
  msgstr ""
5977
 
5978
- #: ../modules/mycred-module-settings.php:722
5979
- msgid "Menu and page title."
5980
  msgstr ""
5981
 
5982
- #: ../modules/mycred-module-settings.php:725
5983
- msgid ""
5984
- "The meta key must be lowercase and only contain letters or underscores. All "
5985
- "other characters will be deleted!"
5986
  msgstr ""
5987
 
5988
- #: ../modules/mycred-module-settings.php:748
5989
- msgid "Identify users by"
5990
  msgstr ""
5991
 
5992
- #: ../modules/mycred-module-settings.php:754
5993
- msgid "User ID"
 
5994
  msgstr ""
5995
 
5996
- #: ../modules/mycred-module-settings.php:755
5997
- msgid "User Email"
 
5998
  msgstr ""
5999
 
6000
- #: ../modules/mycred-module-settings.php:756
6001
- msgid "User Login"
6002
  msgstr ""
6003
 
6004
- #: ../modules/mycred-module-settings.php:764
6005
- msgid ""
6006
- "Use ID if you intend to use this export as a backup of your current site "
6007
- "while Email is recommended if you want to export to a different site."
6008
  msgstr ""
6009
 
6010
- #: ../modules/mycred-module-settings.php:767
6011
- msgid "Import Log Entry"
6012
  msgstr ""
6013
 
6014
- #: ../modules/mycred-module-settings.php:769
6015
  #, php-format
6016
- msgid ""
6017
- "Optional log entry to use if you intend to import this file in a different "
6018
- "%s installation."
6019
  msgstr ""
6020
 
6021
- #: ../plugins/mycred-hook-affiliatewp.php:18
6022
- msgid "AffiliateWP"
 
6023
  msgstr ""
6024
 
6025
- #: ../plugins/mycred-hook-affiliatewp.php:19
6026
  #, php-format
6027
- msgid ""
6028
- "Awards %_plural% for affiliate signups, referring visitors and store sale "
6029
- "referrals."
6030
  msgstr ""
6031
 
6032
- #: ../plugins/mycred-hook-affiliatewp.php:218
6033
- msgid "Affiliate Signup"
6034
  msgstr ""
6035
 
6036
- #: ../plugins/mycred-hook-affiliatewp.php:248
6037
- msgid "Referring Sales"
6038
  msgstr ""
6039
 
6040
- #: ../plugins/mycred-hook-affiliatewp.php:251
6041
- msgid "Pay a set amount for all referrals."
6042
  msgstr ""
6043
 
6044
- #: ../plugins/mycred-hook-affiliatewp.php:252
6045
- msgid "AffiliateWP will use %plural% as currency so pay the referral amount."
 
6046
  msgstr ""
6047
 
6048
- #: ../plugins/mycred-hook-affiliatewp.php:253
6049
- msgid "Apply an exchange rate against the referral amount."
 
6050
  msgstr ""
6051
 
6052
- #: ../plugins/mycred-hook-affiliatewp.php:261
6053
- msgid "Log template - Payout"
6054
  msgstr ""
6055
 
6056
- #: ../plugins/mycred-hook-affiliatewp.php:266
6057
- msgid "Log template - Refund"
6058
  msgstr ""
6059
 
6060
- #: ../plugins/mycred-hook-badgeOS.php:18
6061
- msgid "BadgeOS"
6062
  msgstr ""
6063
 
6064
- #: ../plugins/mycred-hook-badgeOS.php:19
6065
- msgid ""
6066
- "Default settings for each BadgeOS Achievement type. These settings may be "
6067
- "overridden for individual achievement type."
6068
  msgstr ""
6069
 
6070
- #: ../plugins/mycred-hook-badgeOS.php:105
6071
- #, php-format
6072
- msgid ""
6073
- "Please setup your <a href=\"%s\">default settings</a> before using this "
6074
- "feature."
6075
  msgstr ""
6076
 
6077
- #: ../plugins/mycred-hook-badgeOS.php:118 ../plugins/mycred-hook-badgeOS.php:120
6078
- msgid "%plural% to Award"
6079
  msgstr ""
6080
 
6081
- #: ../plugins/mycred-hook-badgeOS.php:122
6082
- msgid "Use zero to disable"
 
 
 
 
 
 
 
 
 
6083
  msgstr ""
6084
 
6085
- #: ../plugins/mycred-hook-badgeOS.php:133
6086
- msgid "Deduction Log Template"
 
6087
  msgstr ""
6088
 
6089
- #: ../plugins/mycred-hook-badgeOS.php:278
6090
- #, php-format
6091
- msgid "Default %s for %s"
6092
  msgstr ""
6093
 
6094
- #: ../plugins/mycred-hook-badgeOS.php:284
6095
- msgid "Use zero to disable users gaining %_plural%"
6096
  msgstr ""
6097
 
6098
- #: ../plugins/mycred-hook-badgeOS.php:288
6099
- msgid "Default Log template"
6100
  msgstr ""
6101
 
6102
- #: ../plugins/mycred-hook-bbPress.php:18
6103
- msgid "bbPress"
6104
  msgstr ""
6105
 
6106
- #: ../plugins/mycred-hook-bbPress.php:19
6107
  #, php-format
6108
- msgid "Awards %_plural% for bbPress actions."
6109
  msgstr ""
6110
 
6111
- #: ../plugins/mycred-hook-bbPress.php:404
6112
- #, php-format
6113
- msgid "%plural% for New Forum"
6114
  msgstr ""
6115
 
6116
- #: ../plugins/mycred-hook-bbPress.php:421
6117
- #, php-format
6118
- msgid "%plural% for Forum Deletion"
6119
  msgstr ""
6120
 
6121
- #: ../plugins/mycred-hook-bbPress.php:434 ../plugins/mycred-hook-simplepress.php:
6122
- #: 278
6123
- #, php-format
6124
- msgid "%plural% for New Topic"
6125
  msgstr ""
6126
 
6127
- #: ../plugins/mycred-hook-bbPress.php:452
6128
- #, php-format
6129
- msgid "Forum authors can receive %_plural% for creating new topics."
6130
  msgstr ""
6131
 
6132
- #: ../plugins/mycred-hook-bbPress.php:456 ../plugins/mycred-hook-simplepress.php:
6133
- #: 295
6134
- #, php-format
6135
- msgid "%plural% for Topic Deletion"
6136
  msgstr ""
6137
 
6138
- #: ../plugins/mycred-hook-bbPress.php:469
6139
- #, php-format
6140
- msgid "%plural% for Favorited Topic"
6141
  msgstr ""
6142
 
6143
- #: ../plugins/mycred-hook-bbPress.php:486
6144
- #, php-format
6145
- msgid "%plural% for New Reply"
6146
  msgstr ""
6147
 
6148
- #: ../plugins/mycred-hook-bbPress.php:504
6149
- #, php-format
6150
- msgid "Topic authors can receive %_plural% for replying to their own Topic"
6151
  msgstr ""
6152
 
6153
- #: ../plugins/mycred-hook-bbPress.php:508
6154
  #, php-format
6155
- msgid "Show users %_plural% balance in replies"
6156
  msgstr ""
6157
 
6158
- #: ../plugins/mycred-hook-bbPress.php:512
6159
- #, php-format
6160
- msgid "%plural% for Reply Deletion"
6161
  msgstr ""
6162
 
6163
- #: ../plugins/mycred-hook-buddypress-gallery.php:19
6164
- msgid "BuddyPress: Gallery Actions"
6165
  msgstr ""
6166
 
6167
- #: ../plugins/mycred-hook-buddypress-gallery.php:20
6168
- #, php-format
6169
- msgid ""
6170
- "Awards %_plural% for creating a new gallery either using BP Album+ or BP "
6171
- "Gallery."
6172
  msgstr ""
6173
 
6174
- #: ../plugins/mycred-hook-buddypress-gallery.php:96
6175
- #, php-format
6176
- msgid "%plural% for New Gallery"
6177
  msgstr ""
6178
 
6179
- #: ../plugins/mycred-hook-buddypress-links.php:19
6180
- msgid "BuddyPress: Links"
6181
  msgstr ""
6182
 
6183
- #: ../plugins/mycred-hook-buddypress-links.php:20
6184
- #, php-format
6185
- msgid "Awards %_plural% for link related actions."
6186
  msgstr ""
6187
 
6188
- #: ../plugins/mycred-hook-buddypress-links.php:244
6189
- #, php-format
6190
- msgid "%plural% for New Links"
6191
  msgstr ""
6192
 
6193
- #: ../plugins/mycred-hook-buddypress-links.php:261
6194
- #, php-format
6195
- msgid "%plural% for Vote on Link"
6196
  msgstr ""
6197
 
6198
- #: ../plugins/mycred-hook-buddypress-links.php:277
6199
- msgid "%plural% per received Vote"
6200
  msgstr ""
6201
 
6202
- #: ../plugins/mycred-hook-buddypress-links.php:280
6203
- msgid "Vote Up"
6204
  msgstr ""
6205
 
6206
- #: ../plugins/mycred-hook-buddypress-links.php:299
6207
- msgid "Vote Down"
6208
  msgstr ""
6209
 
6210
- #: ../plugins/mycred-hook-buddypress-links.php:314
6211
- #, php-format
6212
- msgid "%plural% for Updating Links"
6213
  msgstr ""
6214
 
6215
- #: ../plugins/mycred-hook-buddypress-links.php:331
6216
  #, php-format
6217
- msgid "%plural% for Deleting Links"
6218
- msgstr ""
6219
-
6220
- #: ../plugins/mycred-hook-buddypress-media.php:18
6221
- msgid "rtMedia Galleries"
6222
  msgstr ""
6223
 
6224
- #: ../plugins/mycred-hook-buddypress-media.php:19
6225
- #, php-format
6226
- msgid "Award / Deduct %_plural% for users creating albums or uploading new photos."
6227
  msgstr ""
6228
 
6229
- #: ../plugins/mycred-hook-buddypress-media.php:202
6230
- msgid "New Media Upload"
 
 
 
 
6231
  msgstr ""
6232
 
6233
- #: ../plugins/mycred-hook-buddypress-media.php:247
6234
- msgid "Delete Media"
6235
  msgstr ""
6236
 
6237
- #: ../plugins/mycred-hook-buddypress-media.php:250
6238
- msgid "Delete Photo"
6239
  msgstr ""
6240
 
6241
- #: ../plugins/mycred-hook-buddypress-media.php:260
6242
- msgid "Delete Video"
6243
  msgstr ""
6244
 
6245
- #: ../plugins/mycred-hook-buddypress-media.php:270
6246
- msgid "Delete Music"
6247
  msgstr ""
6248
 
6249
- #: ../plugins/mycred-hook-buddypress.php:20
6250
- msgid "BuddyPress: Members"
6251
  msgstr ""
6252
 
6253
- #: ../plugins/mycred-hook-buddypress.php:21
6254
  #, php-format
6255
- msgid "Awards %_plural% for profile related actions."
6256
  msgstr ""
6257
 
6258
- #: ../plugins/mycred-hook-buddypress.php:28
6259
- msgid "BuddyPress: Groups"
 
6260
  msgstr ""
6261
 
6262
- #: ../plugins/mycred-hook-buddypress.php:29
6263
- #, php-format
6264
- msgid ""
6265
- "Awards %_plural% for group related actions. Use minus to deduct %_plural% or "
6266
- "zero to disable a specific hook."
6267
  msgstr ""
6268
 
6269
- #: ../plugins/mycred-hook-buddypress.php:484
6270
- #, php-format
6271
- msgid "%plural% for Profile Updates"
6272
  msgstr ""
6273
 
6274
- #: ../plugins/mycred-hook-buddypress.php:501
6275
- #, php-format
6276
- msgid "%plural% for Removing Profile Update"
6277
  msgstr ""
6278
 
6279
- #: ../plugins/mycred-hook-buddypress.php:518
6280
- #, php-format
6281
- msgid "%plural% for New Avatar"
6282
  msgstr ""
6283
 
6284
- #: ../plugins/mycred-hook-buddypress.php:535
6285
- #, php-format
6286
- msgid "%plural% for New Friendships"
6287
  msgstr ""
6288
 
6289
- #: ../plugins/mycred-hook-buddypress.php:545
6290
- #, php-format
6291
- msgid ""
6292
- "Users with zero balance can not add friends. Requires that you deduct "
6293
- "%_plural% for adding a new friend."
6294
  msgstr ""
6295
 
6296
- #: ../plugins/mycred-hook-buddypress.php:555
6297
- #, php-format
6298
- msgid "%plural% for Leaving Friendship"
6299
  msgstr ""
6300
 
6301
- #: ../plugins/mycred-hook-buddypress.php:568
6302
- #, php-format
6303
- msgid "%plural% for New Comment"
6304
  msgstr ""
6305
 
6306
- #: ../plugins/mycred-hook-buddypress.php:585
6307
- #, php-format
6308
- msgid "%plural% for Deleting Comment"
6309
  msgstr ""
6310
 
6311
- #: ../plugins/mycred-hook-buddypress.php:598
6312
- #, php-format
6313
- msgid "%plural% for New Messages"
6314
  msgstr ""
6315
 
6316
- #: ../plugins/mycred-hook-buddypress.php:615
6317
- #, php-format
6318
- msgid "%plural% for Sending Gift"
6319
  msgstr ""
6320
 
6321
- #: ../plugins/mycred-hook-buddypress.php:1154
6322
- #, php-format
6323
- msgid "%plural% for Creating Groups"
6324
  msgstr ""
6325
 
6326
- #: ../plugins/mycred-hook-buddypress.php:1158
6327
- msgid ""
6328
- "If you use a negative value and the user does not have enough %_plural% the "
6329
- "\"Create Group\" button will be disabled."
6330
  msgstr ""
6331
 
6332
- #: ../plugins/mycred-hook-buddypress.php:1162
6333
- msgid "Number of members before awarding %_plural%"
6334
  msgstr ""
6335
 
6336
- #: ../plugins/mycred-hook-buddypress.php:1164
6337
- msgid "Use zero to award %_plural% when group is created."
 
 
 
6338
  msgstr ""
6339
 
6340
- #: ../plugins/mycred-hook-buddypress.php:1174
 
6341
  #, php-format
6342
- msgid "%plural% for Deleting Groups"
6343
  msgstr ""
6344
 
6345
- #: ../plugins/mycred-hook-buddypress.php:1187
 
 
6346
  #, php-format
6347
- msgid "%plural% for New Forum Topic"
6348
  msgstr ""
6349
 
6350
- #: ../plugins/mycred-hook-buddypress.php:1204
6351
- #, php-format
6352
- msgid "%plural% for Editing Forum Topic"
 
 
 
 
 
 
 
 
 
6353
  msgstr ""
6354
 
6355
- #: ../plugins/mycred-hook-buddypress.php:1221
6356
- #, php-format
6357
- msgid "%plural% for New Forum Post"
 
 
 
6358
  msgstr ""
6359
 
6360
- #: ../plugins/mycred-hook-buddypress.php:1238
6361
- #, php-format
6362
- msgid "%plural% for Editing Forum Post"
6363
  msgstr ""
6364
 
6365
- #: ../plugins/mycred-hook-buddypress.php:1255
6366
- #, php-format
6367
- msgid "%plural% for Joining Groups"
6368
  msgstr ""
6369
 
6370
- #: ../plugins/mycred-hook-buddypress.php:1259
6371
- msgid ""
6372
- "If you use a negative value and the user does not have enough %_plural% the "
6373
- "\"Join Group\" button will be disabled."
6374
  msgstr ""
6375
 
6376
- #: ../plugins/mycred-hook-buddypress.php:1273
6377
- #, php-format
6378
- msgid "%plural% for Leaving Groups"
6379
  msgstr ""
6380
 
6381
- #: ../plugins/mycred-hook-buddypress.php:1286
6382
- #, php-format
6383
- msgid "%plural% for New Group Avatar"
 
6384
  msgstr ""
6385
 
6386
- #: ../plugins/mycred-hook-buddypress.php:1303
6387
- #, php-format
6388
- msgid "%plural% for New Group Comment"
 
6389
  msgstr ""
6390
 
6391
- #: ../plugins/mycred-hook-contact-form7.php:18
6392
- msgid "Contact Form 7 Form Submissions"
 
 
6393
  msgstr ""
6394
 
6395
- #: ../plugins/mycred-hook-contact-form7.php:19
6396
- #, php-format
6397
- msgid "Awards %_plural% for successful form submissions (by logged in users)."
6398
  msgstr ""
6399
 
6400
- #: ../plugins/mycred-hook-contact-form7.php:117 ../plugins/mycred-hook-
6401
- #: gravityforms.php:118
6402
- msgid "No forms found."
6403
  msgstr ""
6404
 
6405
- #: ../plugins/mycred-hook-events-manager-light.php:18
6406
- msgid "Events Manager"
6407
  msgstr ""
6408
 
6409
- #: ../plugins/mycred-hook-events-manager-light.php:19
6410
- #, php-format
6411
- msgid "Awards %_plural% for users attending events."
6412
  msgstr ""
6413
 
6414
- #: ../plugins/mycred-hook-events-manager-light.php:186
6415
- msgid "Attending Event"
6416
  msgstr ""
6417
 
6418
- #: ../plugins/mycred-hook-events-manager-light.php:203
6419
- msgid "Cancelling Attendance"
6420
  msgstr ""
6421
 
6422
- #: ../plugins/mycred-hook-gd-star-rating.php:18
6423
- msgid "GD Star Rating"
6424
  msgstr ""
6425
 
6426
- #: ../plugins/mycred-hook-gd-star-rating.php:19
6427
- #, php-format
6428
- msgid "Awards %_plural% for users rate items using the GD Star Rating plugin."
6429
  msgstr ""
6430
 
6431
- #: ../plugins/mycred-hook-gd-star-rating.php:103
6432
- msgid "Rating"
6433
  msgstr ""
6434
 
6435
- #: ../plugins/mycred-hook-gd-star-rating.php:116
6436
- msgid "Up / Down Vote"
6437
  msgstr ""
6438
 
6439
- #: ../plugins/mycred-hook-gravityforms.php:18
6440
- msgid "Gravityform Submissions"
 
 
 
6441
  msgstr ""
6442
 
6443
- #: ../plugins/mycred-hook-gravityforms.php:19
6444
- #, php-format
6445
- msgid "Awards %_plural% for successful form submissions."
6446
  msgstr ""
6447
 
6448
- #: ../plugins/mycred-hook-invite-anyone.php:18
6449
- msgid "Invite Anyone Plugin"
6450
  msgstr ""
6451
 
6452
- #: ../plugins/mycred-hook-invite-anyone.php:19
6453
- #, php-format
6454
- msgid ""
6455
- "Awards %_plural% for sending invitations and/or %_plural% if the invite is "
6456
- "accepted."
6457
  msgstr ""
6458
 
6459
- #: ../plugins/mycred-hook-invite-anyone.php:190
6460
- #, php-format
6461
- msgid "%plural% for Sending An Invite"
6462
  msgstr ""
6463
 
6464
- #: ../plugins/mycred-hook-invite-anyone.php:210
6465
- #, php-format
6466
- msgid "%plural% for Accepting An Invite"
6467
  msgstr ""
6468
 
6469
- #: ../plugins/mycred-hook-invite-anyone.php:214
6470
  #, php-format
6471
- msgid "%plural% for each invited user that accepts an invitation."
6472
  msgstr ""
6473
 
6474
- #: ../plugins/mycred-hook-jetpack.php:18
6475
- msgid "Jetpack Subscriptions"
 
6476
  msgstr ""
6477
 
6478
- #: ../plugins/mycred-hook-jetpack.php:19
6479
- #, php-format
6480
- msgid ""
6481
- "Awards %_plural% for users signing up for site or comment updates using "
6482
- "Jetpack."
6483
  msgstr ""
6484
 
6485
- #: ../plugins/mycred-hook-jetpack.php:499
6486
- msgid "Site Subscriptions"
6487
  msgstr ""
6488
 
6489
- #: ../plugins/mycred-hook-jetpack.php:512
6490
- msgid "Comment Subscriptions"
6491
  msgstr ""
6492
 
6493
- #: ../plugins/mycred-hook-marketpress.php:63 ../plugins/mycred-hook-woocommerce.
6494
- #: php:80
6495
- msgid "Reward with %plural%"
6496
  msgstr ""
6497
 
6498
- #: ../plugins/mycred-hook-sharethis.php:19
6499
- #, php-format
6500
- msgid "%plural% for Sharing"
6501
  msgstr ""
6502
 
6503
- #: ../plugins/mycred-hook-sharethis.php:20
6504
- #, php-format
6505
- msgid ""
6506
- "Awards %_plural% for users sharing / liking your website content to popular "
6507
- "social media sites."
6508
  msgstr ""
6509
 
6510
- #: ../plugins/mycred-hook-sharethis.php:257
6511
- msgid "Your ShareThis public key is not set."
6512
  msgstr ""
6513
 
6514
- #: ../plugins/mycred-hook-sharethis.php:262
6515
- msgid "No ShareThis services detected. Please check your installation."
6516
  msgstr ""
6517
 
6518
- #: ../plugins/mycred-hook-simplepress.php:19
6519
- #, php-format
6520
- msgid "Awards %_plural% for Simple:Press actions."
 
6521
  msgstr ""
6522
 
6523
- #: ../plugins/mycred-hook-simplepress.php:308
6524
- #, php-format
6525
- msgid "%plural% for New Topic Post"
6526
  msgstr ""
6527
 
6528
- #: ../plugins/mycred-hook-simplepress.php:326
6529
- #, php-format
6530
- msgid "Topic authors can receive %_plural% for posting on their own Topic"
6531
  msgstr ""
6532
 
6533
- #: ../plugins/mycred-hook-simplepress.php:330
6534
  #, php-format
6535
- msgid "%plural% for Topic Post Deletion"
 
6536
  msgstr ""
6537
 
6538
- #: ../plugins/mycred-hook-woocommerce.php:210
6539
- msgid "WooCommerce Product Reviews"
6540
  msgstr ""
6541
 
6542
- #: ../plugins/mycred-hook-woocommerce.php:211
6543
- #, php-format
6544
- msgid "Awards %_plural% for users leaving reviews on your WooCommerce products."
6545
  msgstr ""
6546
 
6547
- #: ../plugins/mycred-hook-wp-favorite-posts.php:18
6548
- msgid "WP Favorite Posts"
6549
  msgstr ""
6550
 
6551
- #: ../plugins/mycred-hook-wp-favorite-posts.php:19
6552
- #, php-format
6553
- msgid "Awards %_plural% for users adding posts to their favorites."
6554
  msgstr ""
6555
 
6556
- #: ../plugins/mycred-hook-wp-favorite-posts.php:207
6557
- msgid "Adding Content to Favorites"
6558
  msgstr ""
6559
 
6560
- #: ../plugins/mycred-hook-wp-favorite-posts.php:225
6561
- msgid "Authors Content added to favorites"
6562
  msgstr ""
6563
 
6564
- #: ../plugins/mycred-hook-wp-favorite-posts.php:243
6565
- msgid "Removing Content from Favorites"
6566
  msgstr ""
6567
 
6568
- #: ../plugins/mycred-hook-wp-favorite-posts.php:256
6569
- msgid "Removing Content from Favorites (Author)"
6570
  msgstr ""
6571
 
6572
- #: ../plugins/mycred-hook-wp-polls.php:18
6573
- msgid "WP-Polls"
6574
  msgstr ""
6575
 
6576
- #: ../plugins/mycred-hook-wp-polls.php:19
6577
- #, php-format
6578
- msgid "Awards %_plural% for users voting in polls."
6579
  msgstr ""
6580
 
6581
- #: ../plugins/mycred-hook-wp-postratings.php:18
6582
- msgid "Post Ratings"
6583
  msgstr ""
6584
 
6585
- #: ../plugins/mycred-hook-wp-postratings.php:19
6586
- #, php-format
6587
  msgid ""
6588
- "Awards %_plural% for post ratings. Supports awarding %_plural% both to post "
6589
- "author and the user rating."
 
6590
  msgstr ""
6591
 
6592
- #: ../plugins/mycred-hook-wp-postratings.php:76
6593
- msgid "Based on rating"
6594
  msgstr ""
6595
 
6596
- #: ../plugins/mycred-hook-wp-postratings.php:160 ../plugins/mycred-hook-wp-
6597
- #: postratings.php:179
6598
- msgid "Use the Rating Value instead of the amount set here."
 
6599
  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: Mon Nov 23 2015 17:47:41 GMT+0100 (CET)\n"
7
+ "Last-Translator: Gabriel Merovingi <gabriel.s@merovingi.com>\n"
8
  "Language-Team: myCRED & All the awesome users helping out <support@mycred."
9
  "me>\n"
10
  "Language: English\n"
25
  "X-Poedit-SearchPath-1: .\n"
26
  "X-Loco-Target-Locale: en_US"
27
 
28
+ msgid "myCRED"
29
+ msgstr ""
30
+
31
+ #. URI of the plugin
32
+ msgid "http://mycred.me"
33
+ msgstr ""
34
+
35
+ #. Description of the plugin
36
+ msgid ""
37
+ "<strong>my</strong>CRED is an adaptive points management system for "
38
+ "WordPress powered websites, giving you full control on how points are gained,"
39
+ " used, traded, managed, logged or presented."
40
+ msgstr ""
41
+
42
+ #. Author of the plugin
43
+ msgid "Gabriel S Merovingi"
44
+ msgstr ""
45
+
46
+ #. Author URI of the plugin
47
+ msgid "http://www.merovingi.com"
48
+ msgstr ""
49
+
50
+ #: ../mycred.php:462
51
  msgid "Balance"
52
  msgstr ""
53
 
54
+ #: ../mycred.php:487
55
  msgid "%label% History"
56
  msgstr ""
57
 
58
+ #: ../mycred.php:581
59
  #, php-format
60
  msgid "About %s"
61
  msgstr ""
62
 
63
+ #: ../mycred.php:590
64
  msgid "Awesome People"
65
  msgstr ""
66
 
67
+ #: ../mycred.php:678 ../mycred.php:703 ../mycred.php:721 ../includes/mycred-
68
+ #: shortcodes.php:640 ../addons/gateway/event-booking/mycred-eventsmanager.php:
69
+ #: 478 ../addons/transfer/myCRED-addon-transfer.php:146 ../addons/ranks/myCRED-
70
+ #: addon-ranks.php:423 ../addons/ranks/myCRED-addon-ranks.php:1523 ..
71
+ #: addons/badges/myCRED-addon-badges.php:605 ../addons/sell-content/myCRED-addon-
72
+ #: sell-content.php:371
73
  msgid "Processing..."
74
  msgstr ""
75
 
76
+ #: ../mycred.php:679
77
  msgid ""
78
  "Warning! All entries in your log will be permanently removed! This can not "
79
  "be undone!"
80
  msgstr ""
81
 
82
+ #: ../mycred.php:680
83
  msgid ""
84
  "All log entries belonging to deleted users will be permanently deleted! This "
85
  "can not be undone!"
86
  msgstr ""
87
 
88
+ #: ../mycred.php:681
89
  msgid "Warning! All user balances will be set to zero! This can not be undone!"
90
  msgstr ""
91
 
92
+ #: ../mycred.php:682
93
  msgid "Done!"
94
  msgstr ""
95
 
96
+ #: ../mycred.php:683 ../mycred.php:702 ../mycred.php:720
97
  msgid "Close"
98
  msgstr ""
99
 
100
+ #: ../mycred.php:684
101
+ #, php-format
102
  msgid "Export users %plural%"
103
  msgstr ""
104
 
105
+ #: ../mycred.php:685
106
  msgid ""
107
  "In order to adjust the number of decimal places you want to use we must "
108
  "update your log. It is highly recommended that you backup your current log "
109
  "before continuing!"
110
  msgstr ""
111
 
112
+ #: ../mycred.php:701
113
  msgid "Edit Users Balance"
114
  msgstr ""
115
 
116
+ #: ../mycred.php:719
117
  msgid "Edit Log Entry"
118
  msgstr ""
119
 
120
+ #: ../mycred.php:723
121
  msgid "Are you sure you want to delete this log entry? This can not be undone!"
122
  msgstr ""
123
 
124
+ #: ../mycred.php:724
125
  msgid "Log entry updated"
126
  msgstr ""
127
 
128
+ #: ../mycred.php:781 ../mycred.php:803 ../addons/gateway/event-booking/mycred-
129
+ #: eventsmanager.php:537 ../addons/gateway/event-booking/mycred-eventsmanager-pro.
130
+ #: php:499 ../addons/email-notices/myCRED-addon-email-notices.php:811
131
  msgid "Setup"
132
  msgstr ""
133
 
134
+ #: ../mycred.php:783 ../modules/mycred-module-settings.php:21 ../modules/mycred-
135
+ #: module-settings.php:22 ../modules/mycred-module-settings.php:23 ..
136
+ #: includes/mycred-network.php:170 ../addons/gateway/carts/mycred-marketpress.
137
+ #: php:371 ../addons/stats/abstracts/mycred-abstract-stat-widget.php:108
138
  msgid "Settings"
139
  msgstr ""
140
 
141
+ #: ../mycred.php:826
142
  msgid ""
143
  "Make sure to backup your database and files before updating, in case "
144
  "anything goes wrong!"
145
  msgstr ""
146
 
147
+ #: ../abstracts/mycred-abstract-hook.php:90
148
  msgid "This Hook has no settings"
149
  msgstr ""
150
 
151
+ #: ../abstracts/mycred-abstract-hook.php:283 ../abstracts/mycred-abstract-hook.
152
+ #: php:354 ../modules/mycred-module-hooks.php:1816 ../includes/mycred-functions.
153
+ #: php:2845
154
  msgid "No limit"
155
  msgstr ""
156
 
157
+ #: ../abstracts/mycred-abstract-hook.php:284
158
  msgid "/ Day"
159
  msgstr ""
160
 
161
+ #: ../abstracts/mycred-abstract-hook.php:285
162
  msgid "/ Week"
163
  msgstr ""
164
 
165
+ #: ../abstracts/mycred-abstract-hook.php:286
166
  msgid "/ Month"
167
  msgstr ""
168
 
169
+ #: ../abstracts/mycred-abstract-hook.php:287
170
  msgid "in Total"
171
  msgstr ""
172
 
173
+ #: ../abstracts/mycred-abstract-hook.php:355
174
  msgid "Once every 24 hours"
175
  msgstr ""
176
 
177
+ #: ../abstracts/mycred-abstract-hook.php:356
178
  msgid "Once every 7 days"
179
  msgstr ""
180
 
181
+ #: ../abstracts/mycred-abstract-hook.php:357
182
  msgid "Once per day (reset at midnight)"
183
  msgstr ""
184
 
185
+ #: ../abstracts/mycred-abstract-hook.php:364 ../addons/banking/abstracts/mycred-
186
+ #: abstract-service.php:498 ../addons/email-notices/myCRED-addon-email-notices.
187
+ #: php:198 ../addons/email-notices/myCRED-addon-email-notices.php:992 ..
188
+ #: addons/buy-creds/myCRED-addon-buy-creds.php:696 ../addons/buy-creds/myCRED-
189
+ #: addon-buy-creds.php:719 ../addons/buy-creds/abstracts/mycred-abstract-payment-
190
+ #: gateway.php:1023 ../addons/buy-creds/abstracts/mycred-abstract-payment-gateway.
191
+ #: php:1046 ../addons/buy-creds/gateways/zombaio.php:356
192
  msgid "Select"
193
  msgstr ""
194
 
195
+ #: ../abstracts/mycred-abstract-module.php:400 ../abstracts/mycred-abstract-
196
+ #: module.php:410
 
 
 
 
197
  msgid "Surprise"
198
  msgstr ""
199
 
200
+ #: ../abstracts/mycred-abstract-module.php:511 ../includes/mycred-network.php:93
201
  msgid "click to close"
202
  msgstr ""
203
 
204
+ #: ../abstracts/mycred-abstract-module.php:512 ../includes/mycred-network.php:94
205
  msgid "click to open"
206
  msgstr ""
207
 
208
+ #: ../abstracts/mycred-abstract-module.php:545 ../addons/buy-creds/myCRED-addon-
209
  #: buy-creds.php:927
210
  msgid "Settings Updated"
211
  msgstr ""
212
 
213
+ #: ../modules/mycred-module-settings.php:66 ../modules/mycred-module-settings.php:
214
+ #: 109 ../modules/mycred-module-log.php:207 ../modules/mycred-module-log.php:230
215
+ msgid "Access denied for this action"
 
 
 
 
216
  msgstr ""
217
 
218
+ #: ../modules/mycred-module-settings.php:70 ../modules/mycred-module-settings.php:
219
+ #: 113 ../modules/mycred-module-settings.php:166
220
+ msgid "Missing point type"
221
  msgstr ""
222
 
223
+ #: ../modules/mycred-module-settings.php:144
224
+ msgid "Accounts successfully reset"
 
225
  msgstr ""
226
 
227
+ #: ../modules/mycred-module-settings.php:196
228
+ msgid "No users found to export"
229
  msgstr ""
230
 
231
+ #: ../modules/mycred-module-settings.php:246
232
+ msgid "Invalid decimal value."
233
  msgstr ""
234
 
235
+ #: ../modules/mycred-module-settings.php:293
236
+ msgid "Log Updated"
 
237
  msgstr ""
238
 
239
+ #: ../modules/mycred-module-settings.php:423
240
+ msgid "Update Database"
241
  msgstr ""
242
 
243
+ #: ../modules/mycred-module-settings.php:424
244
+ msgid "Zero for no decimals or maximum 20."
 
 
 
245
  msgstr ""
246
 
247
+ #: ../modules/mycred-module-settings.php:427 ../modules/mycred-module-settings.
248
+ #: php:528
249
+ msgid "Tip"
250
  msgstr ""
251
 
252
+ #: ../modules/mycred-module-settings.php:427
253
+ msgid ""
254
+ "As this is your main point type, the value you select here will be the "
255
+ "largest number of decimals your installation will support."
256
  msgstr ""
257
 
258
+ #: ../modules/mycred-module-settings.php:440 ../modules/mycred-module-settings.
259
+ #: php:453
260
+ msgid "No decimals"
261
  msgstr ""
262
 
263
+ #: ../modules/mycred-module-settings.php:465
264
+ #, php-format
265
+ msgid "<a href=\"%s\">Click here</a> to change your default point types setup."
266
  msgstr ""
267
 
268
+ #: ../modules/mycred-module-settings.php:484 ../modules/mycred-module-addons.php:
269
+ #: 303 ../modules/mycred-module-log.php:358 ../modules/mycred-module-log.php:647 .
270
+ #: ./modules/mycred-module-hooks.php:193 ../includes/mycred-network.php:141 ..
271
+ #: includes/mycred-admin.php:584 ../addons/banking/myCRED-addon-banking.php:219 .
272
+ #: ./addons/stats/myCRED-addon-stats.php:182 ../addons/buy-creds/myCRED-addon-buy-
273
+ #: creds.php:916 ../addons/buy-creds/myCRED-addon-buy-creds.php:1022
274
+ msgid "Access Denied"
275
  msgstr ""
276
 
277
+ #: ../modules/mycred-module-settings.php:503
278
+ #, php-format
279
+ msgid "%s Settings"
280
  msgstr ""
281
 
282
+ #: ../modules/mycred-module-settings.php:507
283
+ msgid "Adjust your core or add-on settings."
284
  msgstr ""
285
 
286
+ #: ../modules/mycred-module-settings.php:513
287
+ msgid "Core Settings"
 
288
  msgstr ""
289
 
290
+ #: ../modules/mycred-module-settings.php:515
291
+ msgid "Name"
292
  msgstr ""
293
 
294
+ #: ../modules/mycred-module-settings.php:518 ../includes/mycred-install.php:514
295
+ msgid "Name (Singular)"
296
  msgstr ""
297
 
298
+ #: ../modules/mycred-module-settings.php:520
299
+ #, php-format
300
+ msgid "Accessible though the %singular% template tag."
301
  msgstr ""
302
 
303
+ #: ../modules/mycred-module-settings.php:523 ../includes/mycred-install.php:518
304
+ msgid "Name (Plural)"
305
  msgstr ""
306
 
307
+ #: ../modules/mycred-module-settings.php:525
308
+ #, php-format
309
+ msgid "Accessible though the %plural% template tag."
 
 
310
  msgstr ""
311
 
312
+ #: ../modules/mycred-module-settings.php:528
313
+ msgid ""
314
+ "Adding an underscore at the beginning of template tag for names will return "
315
+ "them in lowercase. i.e. %_singular%"
316
  msgstr ""
317
 
318
+ #: ../modules/mycred-module-settings.php:531 ../includes/mycred-install.php:506
319
+ msgid "Decimals"
320
  msgstr ""
321
 
322
+ #: ../modules/mycred-module-settings.php:537 ../includes/mycred-install.php:511
323
+ msgid "Presentation"
324
  msgstr ""
325
 
326
+ #: ../modules/mycred-module-settings.php:540 ../includes/mycred-install.php:524
327
+ msgid "Prefix"
328
  msgstr ""
329
 
330
+ #: ../modules/mycred-module-settings.php:548 ../includes/mycred-install.php:532
331
+ msgid "Suffix"
332
  msgstr ""
333
 
334
+ #: ../modules/mycred-module-settings.php:552
335
+ msgid "Separator"
336
+ msgid_plural "Separators"
337
+ msgstr[0] ""
338
+ msgstr[1] ""
339
+
340
+ #: ../modules/mycred-module-settings.php:556 ../includes/mycred-install.php:568
341
+ msgid "Security"
342
  msgstr ""
343
 
344
+ #: ../modules/mycred-module-settings.php:559
345
+ msgid "Edit Settings"
346
  msgstr ""
347
 
348
+ #: ../modules/mycred-module-settings.php:561 ../modules/mycred-module-settings.
349
+ #: php:566
350
+ msgid "Capability to check for."
 
351
  msgstr ""
352
 
353
+ #: ../modules/mycred-module-settings.php:564
354
+ #, php-format
355
+ msgid "Edit Users %plural%"
356
  msgstr ""
357
 
358
+ #: ../modules/mycred-module-settings.php:569 ../includes/mycred-install.php:579
359
+ #, php-format
360
+ msgid "Maximum %plural% payouts"
361
  msgstr ""
362
 
363
+ #: ../modules/mycred-module-settings.php:571 ../includes/mycred-install.php:581
364
+ msgid ""
365
+ "As an added security, you can set the maximum amount a user can gain or "
366
+ "loose in a single instance. If used, make sure this is the maximum amount a "
367
+ "user would be able to transfer, buy, or spend in your store. Use zero to "
368
+ "disable."
369
  msgstr ""
370
 
371
+ #: ../modules/mycred-module-settings.php:574 ../includes/mycred-install.php:584
372
+ msgid "Excludes"
 
 
373
  msgstr ""
374
 
375
+ #: ../modules/mycred-module-settings.php:578 ../includes/mycred-install.php:588
376
+ msgid "Exclude those who can \"Edit Settings\"."
377
  msgstr ""
378
 
379
+ #: ../modules/mycred-module-settings.php:582 ../includes/mycred-install.php:592
 
380
  #, php-format
381
+ msgid "Exclude those who can \"Edit Users %plural%\"."
382
  msgstr ""
383
 
384
+ #: ../modules/mycred-module-settings.php:586 ../includes/mycred-install.php:595
385
+ msgid "Exclude the following user IDs:"
 
386
  msgstr ""
387
 
388
+ #: ../modules/mycred-module-settings.php:588
389
+ msgid "Comma separated list of user ids to exclude. No spaces allowed!"
390
  msgstr ""
391
 
392
+ #: ../modules/mycred-module-settings.php:591 ../includes/mycred-install.php:599
393
+ msgid "User Deletions"
 
394
  msgstr ""
395
 
396
+ #: ../modules/mycred-module-settings.php:594 ../includes/mycred-install.php:603
397
+ msgid "Delete log entries when user is deleted."
 
398
  msgstr ""
399
 
400
+ #: ../modules/mycred-module-settings.php:612
401
+ msgid "Management"
402
  msgstr ""
403
 
404
+ #: ../modules/mycred-module-settings.php:614
405
+ msgid "The Log"
 
406
  msgstr ""
407
 
408
+ #: ../modules/mycred-module-settings.php:617
409
+ msgid "Table Name"
410
  msgstr ""
411
 
412
+ #: ../modules/mycred-module-settings.php:621 ../modules/mycred-module-log.php:316
413
+ msgid "Entries"
 
 
414
  msgstr ""
415
 
416
+ #: ../modules/mycred-module-settings.php:625 ../modules/mycred-module-settings.
417
+ #: php:640 ../modules/mycred-module-log.php:407 ../addons/ranks/myCRED-addon-
418
+ #: ranks.php:1613 ../addons/buy-creds/myCRED-addon-buy-creds.php:1715
419
+ msgid "Actions"
420
  msgstr ""
421
 
422
+ #: ../modules/mycred-module-settings.php:626
423
+ msgid "Empty Log"
 
424
  msgstr ""
425
 
426
+ #: ../modules/mycred-module-settings.php:632 ../addons/ranks/myCRED-addon-ranks.
427
+ #: php:1605
428
+ msgid "User Meta Key"
429
  msgstr ""
430
 
431
+ #: ../modules/mycred-module-settings.php:636 ../addons/ranks/myCRED-addon-ranks.
432
+ #: php:1043 ../addons/badges/myCRED-addon-badges.php:442
433
+ msgid "Users"
434
  msgstr ""
435
 
436
+ #: ../modules/mycred-module-settings.php:641
437
+ msgid "Set all to zero"
 
438
  msgstr ""
439
 
440
+ #: ../modules/mycred-module-settings.php:641
441
+ msgid "CSV Export"
442
  msgstr ""
443
 
444
+ #: ../modules/mycred-module-settings.php:656 ../includes/mycred-widgets.php:600 ..
445
+ #: addons/transfer/myCRED-addon-transfer.php:211 ../addons/buy-creds/myCRED-
446
+ #: addon-buy-creds.php:652
447
+ msgid "Point Types"
448
  msgstr ""
449
 
450
+ #: ../modules/mycred-module-settings.php:667
451
+ msgid "Default"
452
  msgstr ""
453
 
454
+ #: ../modules/mycred-module-settings.php:670 ../modules/mycred-module-settings.
455
+ #: php:691 ../modules/mycred-module-settings.php:715
456
+ msgid "Meta Key"
 
457
  msgstr ""
458
 
459
+ #: ../modules/mycred-module-settings.php:674 ../modules/mycred-module-settings.
460
+ #: php:695 ../modules/mycred-module-settings.php:720 ..
461
+ #: addons/gateway/carts/mycred-woocommerce.php:160 ../addons/email-
462
+ #: notices/myCRED-addon-email-notices.php:1025
463
+ msgid "Label"
464
  msgstr ""
465
 
466
+ #: ../modules/mycred-module-settings.php:678 ../modules/mycred-module-settings.
467
+ #: php:699 ../modules/mycred-module-log.php:563 ../addons/gateway/event-
468
+ #: booking/mycred-eventsmanager-pro.php:397
469
+ msgid "Delete"
470
  msgstr ""
471
 
472
+ #: ../modules/mycred-module-settings.php:712
473
+ msgid "Add New Type"
474
  msgstr ""
475
 
476
+ #: ../modules/mycred-module-settings.php:717
477
+ msgid "A unique ID for this type."
478
  msgstr ""
479
 
480
+ #: ../modules/mycred-module-settings.php:722
481
+ msgid "Menu and page title."
 
482
  msgstr ""
483
 
484
+ #: ../modules/mycred-module-settings.php:725
485
+ msgid ""
486
+ "The meta key must be lowercase and only contain letters or underscores. All "
487
+ "other characters will be deleted!"
488
  msgstr ""
489
 
490
+ #: ../modules/mycred-module-settings.php:739 ../addons/gateway/event-
491
+ #: booking/mycred-eventespresso3.php:502 ../addons/buy-creds/myCRED-addon-buy-
492
+ #: creds.php:986
493
+ msgid "Update Settings"
494
  msgstr ""
495
 
496
+ #: ../modules/mycred-module-settings.php:748
497
+ msgid "Identify users by"
 
 
498
  msgstr ""
499
 
500
+ #: ../modules/mycred-module-settings.php:754
501
+ msgid "User ID"
 
 
 
 
 
 
 
 
 
 
 
502
  msgstr ""
503
 
504
+ #: ../modules/mycred-module-settings.php:755
505
+ msgid "User Email"
 
506
  msgstr ""
507
 
508
+ #: ../modules/mycred-module-settings.php:756
509
+ msgid "User Login"
510
  msgstr ""
511
 
512
+ #: ../modules/mycred-module-settings.php:764
 
513
  msgid ""
514
+ "Use ID if you intend to use this export as a backup of your current site "
515
+ "while Email is recommended if you want to export to a different site."
 
516
  msgstr ""
517
 
518
+ #: ../modules/mycred-module-settings.php:767
519
+ msgid "Import Log Entry"
 
520
  msgstr ""
521
 
522
+ #: ../modules/mycred-module-settings.php:769
523
  #, php-format
524
+ msgid ""
525
+ "Optional log entry to use if you intend to import this file in a different "
526
+ "%s installation."
527
  msgstr ""
528
 
529
+ #: ../modules/mycred-module-settings.php:772 ../modules/mycred-module-log.php:333
530
+ #: ../modules/mycred-module-log.php:431 ../modules/mycred-module-log.php:701
531
+ msgid "Export"
532
  msgstr ""
533
 
534
+ #: ../modules/mycred-module-addons.php:25 ../modules/mycred-module-addons.php:26
535
+ msgid "Add-ons"
536
  msgstr ""
537
 
538
+ #: ../modules/mycred-module-addons.php:160
539
+ msgid "Give your users badges based on their interaction with your website."
 
 
 
 
 
540
  msgstr ""
541
 
542
+ #: ../modules/mycred-module-addons.php:171
543
+ msgid "Setup recurring payouts or offer / charge interest on user account balances."
 
544
  msgstr ""
545
 
546
+ #: ../modules/mycred-module-addons.php:182
547
+ msgid ""
548
+ "The <strong>buy</strong>CRED Add-on allows your users to buy points using "
549
+ "PayPal, Skrill (Moneybookers) or NETbilling. <strong>buy</strong>CRED can "
550
+ "also let your users buy points for other members."
551
  msgstr ""
552
 
553
+ #: ../modules/mycred-module-addons.php:193
554
+ msgid ""
555
+ "The coupons add-on allows you to create coupons that users can use to add "
556
+ "points to their accounts."
557
  msgstr ""
558
 
559
+ #: ../modules/mycred-module-addons.php:204
560
+ msgid "Create email notices for any type of myCRED instance."
561
  msgstr ""
562
 
563
+ #: ../modules/mycred-module-addons.php:215
564
+ msgid ""
565
+ "Let your users pay using their <strong>my</strong>CRED points balance. "
566
+ "Supported Carts: WooCommerce, MarketPress and WP E-Commerce. Supported Event "
567
+ "Bookings: Event Espresso and Events Manager (free & pro)."
568
  msgstr ""
569
 
570
+ #: ../modules/mycred-module-addons.php:226
571
+ msgid "Create pop-up notifications for when users gain or loose points."
 
572
  msgstr ""
573
 
574
+ #: ../modules/mycred-module-addons.php:238
575
+ msgid ""
576
+ "Create ranks for users reaching a certain number of %_plural% with the "
577
+ "option to add logos for each rank."
578
  msgstr ""
579
 
580
+ #: ../modules/mycred-module-addons.php:249
581
+ msgid ""
582
+ "This add-on allows you to sell posts, pages or any public post types on your "
583
+ "website. You can either sell the entire content or using our shortcode, sell "
584
+ "parts of your content allowing you to offer \"teasers\"."
585
  msgstr ""
586
 
587
+ #: ../modules/mycred-module-addons.php:260
588
+ msgid ""
589
+ "Gives you access to your myCRED Staticstics based on your users gains and "
590
+ "loses."
591
  msgstr ""
592
 
593
+ #: ../modules/mycred-module-addons.php:271
594
+ msgid ""
595
+ "Allow your users to send or \"donate\" points to other members by either using "
596
+ "the mycred_transfer shortcode or the myCRED Transfer widget."
597
  msgstr ""
598
 
599
+ #: ../modules/mycred-module-addons.php:313
600
+ #, php-format
601
+ msgid "%s Add-ons"
602
  msgstr ""
603
 
604
+ #: ../modules/mycred-module-addons.php:320
605
+ msgid "Add-on Activated"
606
  msgstr ""
607
 
608
+ #: ../modules/mycred-module-addons.php:323
609
+ msgid "Add-on Deactivated"
610
  msgstr ""
611
 
612
+ #: ../modules/mycred-module-addons.php:328
613
+ msgid "Add-ons Reloaded"
614
  msgstr ""
615
 
616
+ #: ../modules/mycred-module-addons.php:331
617
+ msgid "Add-ons can expand your current installation with further features."
618
  msgstr ""
619
 
620
+ #: ../modules/mycred-module-addons.php:358
621
+ msgid "Reload Add-ons"
622
  msgstr ""
623
 
624
+ #: ../modules/mycred-module-addons.php:359
625
+ #, php-format
626
+ msgid "You can find more add-ons in our %s."
627
  msgstr ""
628
 
629
+ #: ../modules/mycred-module-addons.php:359
630
+ msgid "online store"
631
  msgstr ""
632
 
633
+ #: ../modules/mycred-module-addons.php:382
634
+ msgid "Deactivate Add-on"
635
  msgstr ""
636
 
637
+ #: ../modules/mycred-module-addons.php:383
638
+ msgid "Deactivate"
 
639
  msgstr ""
640
 
641
+ #: ../modules/mycred-module-addons.php:390
642
+ msgid "Activate Add-on"
643
  msgstr ""
644
 
645
+ #: ../modules/mycred-module-addons.php:391
646
+ msgid "Activate"
 
 
647
  msgstr ""
648
 
649
+ #: ../modules/mycred-module-addons.php:409
650
+ msgid "Version"
651
  msgstr ""
652
 
653
+ #: ../modules/mycred-module-addons.php:413
654
+ msgid "By"
 
655
  msgstr ""
656
 
657
+ #: ../modules/mycred-module-addons.php:417
658
+ msgid "About"
659
  msgstr ""
660
 
661
+ #: ../modules/mycred-module-addons.php:421
662
+ msgid "Get Pro"
663
  msgstr ""
664
 
665
+ #: ../modules/mycred-module-log.php:23 ../modules/mycred-module-log.php:24 ..
666
+ #: addons/gateway/event-booking/mycred-eventespresso3.php:467
667
+ msgid "Log"
668
  msgstr ""
669
 
670
+ #: ../modules/mycred-module-log.php:214
671
+ msgid "Row Deleted"
672
  msgstr ""
673
 
674
+ #: ../modules/mycred-module-log.php:243
675
+ msgid "Log entry not found"
 
676
  msgstr ""
677
 
678
+ #: ../modules/mycred-module-log.php:256
679
+ msgid "Entry Updated"
680
  msgstr ""
681
 
682
+ #: ../modules/mycred-module-log.php:276 ../modules/mycred-module-log.php:277 ..
683
+ #: includes/mycred-admin.php:423 ../addons/banking/services/mycred-bank-service-
684
+ #: payouts.php:246
685
+ msgid "History"
686
  msgstr ""
687
 
688
+ #: ../modules/mycred-module-log.php:340
689
+ msgid "Search results for"
 
690
  msgstr ""
691
 
692
+ #: ../modules/mycred-module-log.php:411
693
+ #, php-format
694
+ msgid "%s Log"
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
695
  msgstr ""
696
 
697
+ #: ../modules/mycred-module-log.php:422
698
+ msgid ""
699
+ "Warning. The required Mcrypt PHP Library is not installed on this server! "
700
+ "Certain hooks and shortcodes will not work correctly!"
701
  msgstr ""
702
 
703
+ #: ../modules/mycred-module-log.php:525 ../includes/mycred-log.php:874
704
+ msgid "User Missing"
 
705
  msgstr ""
706
 
707
+ #: ../modules/mycred-module-log.php:563
708
+ msgid "Edit"
 
709
  msgstr ""
710
 
711
+ #: ../modules/mycred-module-log.php:609 ../includes/mycred-log.php:755 ..
712
+ #: includes/mycred-admin.php:796 ../addons/email-notices/myCRED-addon-email-
713
+ #: notices.php:866 ../addons/email-notices/myCRED-addon-email-notices.php:1019
714
+ msgid "User"
715
  msgstr ""
716
 
717
+ #: ../modules/mycred-module-log.php:610
718
+ msgid "Time"
 
719
  msgstr ""
720
 
721
+ #: ../modules/mycred-module-log.php:614
722
+ msgid "Current Log Entry"
723
  msgstr ""
724
 
725
+ #: ../modules/mycred-module-log.php:616
726
+ msgid "The current saved log entry"
 
 
 
 
 
 
 
 
 
 
727
  msgstr ""
728
 
729
+ #: ../modules/mycred-module-log.php:619
730
+ msgid "Adjust Log Entry"
731
  msgstr ""
732
 
733
+ #: ../modules/mycred-module-log.php:621
734
+ msgid "The new log entry"
735
  msgstr ""
736
 
737
+ #: ../modules/mycred-module-log.php:624
738
+ msgid "Update Log Entry"
739
  msgstr ""
740
 
741
+ #: ../modules/mycred-module-log.php:695
742
+ #, php-format
743
+ msgid "My %s History"
744
  msgstr ""
745
 
746
+ #: ../modules/mycred-module-hooks.php:26 ../modules/mycred-module-hooks.php:27 ..
747
+ #: modules/mycred-module-hooks.php:28 ../addons/stats/abstracts/mycred-abstract-
748
+ #: stat-widget.php:105
749
+ msgid "Hooks"
750
  msgstr ""
751
 
752
+ #: ../modules/mycred-module-hooks.php:107
753
+ #, php-format
754
+ msgid "%plural% for registrations"
755
  msgstr ""
756
 
757
+ #: ../modules/mycred-module-hooks.php:108
758
+ #, php-format
759
+ msgid "Award %_plural% for users joining your website."
 
760
  msgstr ""
761
 
762
+ #: ../modules/mycred-module-hooks.php:114
763
+ #, php-format
764
+ msgid "%plural% for daily visits"
765
  msgstr ""
766
 
767
+ #: ../modules/mycred-module-hooks.php:115
768
+ #, php-format
769
+ msgid "Award %_plural% for users visiting your website on a daily basis."
770
  msgstr ""
771
 
772
+ #: ../modules/mycred-module-hooks.php:121
773
+ #, php-format
774
+ msgid "%plural% for viewing content"
775
  msgstr ""
776
 
777
+ #: ../modules/mycred-module-hooks.php:122
778
+ #, php-format
779
+ msgid ""
780
+ "Award %_plural% to your users for viewing posts and / or %plural% to your "
781
+ "authors for members viewing their content."
 
 
 
782
  msgstr ""
783
 
784
+ #: ../modules/mycred-module-hooks.php:128
785
+ #, php-format
786
+ msgid "%plural% for logins"
787
  msgstr ""
788
 
789
+ #: ../modules/mycred-module-hooks.php:129
790
+ #, php-format
791
+ msgid ""
792
+ "Award %_plural% for logging in to your website. You can also set an optional "
793
+ "limit."
794
  msgstr ""
795
 
796
+ #: ../modules/mycred-module-hooks.php:135
797
+ #, php-format
798
+ msgid "%plural% for publishing content"
799
  msgstr ""
800
 
801
+ #: ../modules/mycred-module-hooks.php:136
802
+ #, php-format
803
+ msgid ""
804
+ "Award %_plural% for publishing content on your website. If your custom post "
805
+ "type is not shown bellow, make sure it is set to \"Public\"."
806
  msgstr ""
807
 
808
+ #: ../modules/mycred-module-hooks.php:142
809
+ #, php-format
810
+ msgid "%plural% for comments"
 
 
811
  msgstr ""
812
 
813
+ #: ../modules/mycred-module-hooks.php:142
814
+ #, php-format
815
+ msgid "%plural% for Disqus comments"
816
  msgstr ""
817
 
818
+ #: ../modules/mycred-module-hooks.php:143
819
+ #, php-format
820
+ msgid "Award %_plural% for making comments."
821
  msgstr ""
822
 
823
+ #: ../modules/mycred-module-hooks.php:149
824
+ #, php-format
825
+ msgid "%plural% for clicking on links"
826
  msgstr ""
827
 
828
+ #: ../modules/mycred-module-hooks.php:150
829
+ msgid ""
830
+ "Award %_plural% to users who clicks on links generated by the [mycred_link] "
831
+ "shortcode."
832
  msgstr ""
833
 
834
+ #: ../modules/mycred-module-hooks.php:156
835
+ #, php-format
836
+ msgid "%plural% for viewing Videos"
837
  msgstr ""
838
 
839
+ #: ../modules/mycred-module-hooks.php:157
840
+ msgid ""
841
+ "Award %_plural% to users who watches videos embedded using the "
842
+ "[mycred_video] shortcode."
843
  msgstr ""
844
 
845
+ #: ../modules/mycred-module-hooks.php:163
846
+ #, php-format
847
+ msgid "%plural% for referrals"
848
  msgstr ""
849
 
850
+ #: ../modules/mycred-module-hooks.php:164
851
+ msgid "Award %_plural% to users who refer either visitors and/or new member signups."
 
852
  msgstr ""
853
 
854
+ #: ../modules/mycred-module-hooks.php:199
855
+ #, php-format
856
+ msgid "%s Hooks"
857
  msgstr ""
858
 
859
+ #: ../modules/mycred-module-hooks.php:203
860
+ #, php-format
861
+ msgid ""
862
+ "Hooks are instances where %_plural% are awarded or deducted from a user, "
863
+ "depending on their actions around your website."
864
  msgstr ""
865
 
866
+ #: ../modules/mycred-module-hooks.php:222 ../addons/banking/myCRED-addon-banking.
867
+ #: php:248 ../addons/buy-creds/myCRED-addon-buy-creds.php:954
868
+ msgid "Enable"
 
869
  msgstr ""
870
 
871
+ #: ../modules/mycred-module-hooks.php:240 ../addons/banking/myCRED-addon-banking.
872
+ #: php:261
873
+ msgid "Update Changes"
874
  msgstr ""
875
 
876
+ #: ../modules/mycred-module-hooks.php:417 ../modules/mycred-module-hooks.php:523 .
877
+ #: ./modules/mycred-module-hooks.php:690 ../modules/mycred-module-hooks.php:721 ..
878
+ #: modules/mycred-module-hooks.php:798 ../modules/mycred-module-hooks.php:1164 ..
879
+ #: modules/mycred-module-hooks.php:1181 ../modules/mycred-module-hooks.php:1230 .
880
+ #: ./modules/mycred-module-hooks.php:1682 ../modules/mycred-module-hooks.php:1699
881
+ #: ../modules/mycred-module-hooks.php:1716 ../modules/mycred-module-hooks.php:
882
+ #: 3007 ../modules/mycred-module-hooks.php:3027 ../plugins/mycred-hook-invite-
883
+ #: anyone.php:197 ../plugins/mycred-hook-invite-anyone.php:218 ../plugins/mycred-
884
+ #: hook-wp-postratings.php:164 ../plugins/mycred-hook-wp-postratings.php:183 ..
885
+ #: plugins/mycred-hook-gravityforms.php:153 ../plugins/mycred-hook-simplepress.
886
+ #: php:289 ../plugins/mycred-hook-simplepress.php:302 ../plugins/mycred-hook-
887
+ #: simplepress.php:319 ../plugins/mycred-hook-simplepress.php:337 ..
888
+ #: plugins/mycred-hook-buddypress-gallery.php:107 ../plugins/mycred-hook-
889
+ #: buddypress.php:513 ../plugins/mycred-hook-buddypress.php:530 ../plugins/mycred-
890
+ #: hook-buddypress.php:547 ../plugins/mycred-hook-buddypress.php:567 ..
891
+ #: plugins/mycred-hook-buddypress.php:580 ../plugins/mycred-hook-buddypress.php:
892
+ #: 597 ../plugins/mycred-hook-buddypress.php:610 ../plugins/mycred-hook-
893
+ #: buddypress.php:627 ../plugins/mycred-hook-buddypress.php:644 ../plugins/mycred-
894
+ #: hook-buddypress.php:1218 ../plugins/mycred-hook-buddypress.php:1231 ..
895
+ #: plugins/mycred-hook-buddypress.php:1248 ../plugins/mycred-hook-buddypress.php:
896
+ #: 1265 ../plugins/mycred-hook-buddypress.php:1282 ../plugins/mycred-hook-
897
+ #: buddypress.php:1299 ../plugins/mycred-hook-buddypress.php:1317 ..
898
+ #: plugins/mycred-hook-buddypress.php:1330 ../plugins/mycred-hook-buddypress.php:
899
+ #: 1347 ../plugins/mycred-hook-buddypress.php:1364 ../plugins/mycred-hook-
900
+ #: buddypress-links.php:255 ../plugins/mycred-hook-buddypress-links.php:272 ..
901
+ #: plugins/mycred-hook-buddypress-links.php:289 ../plugins/mycred-hook-
902
+ #: buddypress-links.php:308 ../plugins/mycred-hook-buddypress-links.php:325 ..
903
+ #: plugins/mycred-hook-buddypress-links.php:338 ../plugins/mycred-hook-
904
+ #: affiliatewp.php:225 ../plugins/mycred-hook-affiliatewp.php:242 ..
905
+ #: plugins/mycred-hook-sharethis.php:307 ../plugins/mycred-hook-buddypress-media.
906
+ #: php:213 ../plugins/mycred-hook-buddypress-media.php:227 ../plugins/mycred-hook-
907
+ #: buddypress-media.php:241 ../plugins/mycred-hook-buddypress-media.php:254 ..
908
+ #: plugins/mycred-hook-buddypress-media.php:264 ../plugins/mycred-hook-
909
+ #: buddypress-media.php:274 ../plugins/mycred-hook-contact-form7.php:152 ..
910
+ #: plugins/mycred-hook-jetpack.php:506 ../plugins/mycred-hook-jetpack.php:519 ..
911
+ #: plugins/mycred-hook-bbPress.php:415 ../plugins/mycred-hook-bbPress.php:428 ..
912
+ #: plugins/mycred-hook-bbPress.php:445 ../plugins/mycred-hook-bbPress.php:463 ..
913
+ #: plugins/mycred-hook-bbPress.php:480 ../plugins/mycred-hook-bbPress.php:497 ..
914
+ #: plugins/mycred-hook-bbPress.php:519 ../plugins/mycred-hook-badgeOS.php:298
915
+ msgid "Log template"
916
  msgstr ""
917
 
918
+ #: ../modules/mycred-module-hooks.php:673
919
+ #, php-format
920
+ msgid "%plural% for viewing Posts"
921
  msgstr ""
922
 
923
+ #: ../modules/mycred-module-hooks.php:676 ../modules/mycred-module-hooks.php:693 .
924
+ #: ./modules/mycred-module-hooks.php:707 ../modules/mycred-module-hooks.php:724 ..
925
+ #: modules/mycred-module-hooks.php:784 ../modules/mycred-module-hooks.php:801
926
+ msgid "Member"
927
  msgstr ""
928
 
929
+ #: ../modules/mycred-module-hooks.php:679 ../modules/mycred-module-hooks.php:686 .
930
+ #: ./modules/mycred-module-hooks.php:710 ../modules/mycred-module-hooks.php:717 ..
931
+ #: modules/mycred-module-hooks.php:787 ../modules/mycred-module-hooks.php:794 ..
932
+ #: modules/mycred-module-hooks.php:1018 ../modules/mycred-module-hooks.php:1160 .
933
+ #: ./modules/mycred-module-hooks.php:1177 ../modules/mycred-module-hooks.php:1226
934
+ #: ../modules/mycred-module-hooks.php:3015 ../modules/mycred-module-hooks.php:
935
+ #: 3035 ../plugins/mycred-hook-invite-anyone.php:202 ../plugins/mycred-hook-
936
+ #: invite-anyone.php:205 ../plugins/mycred-hook-invite-anyone.php:223 ..
937
+ #: plugins/mycred-hook-invite-anyone.php:226 ../plugins/mycred-hook-wp-
938
+ #: postratings.php:156 ../plugins/mycred-hook-wp-postratings.php:175 ..
939
+ #: plugins/mycred-hook-gravityforms.php:148 ../plugins/mycred-hook-simplepress.
940
+ #: php:284 ../plugins/mycred-hook-simplepress.php:314 ../plugins/mycred-hook-
941
+ #: buddypress-gallery.php:102 ../plugins/mycred-hook-buddypress.php:508 ..
942
+ #: plugins/mycred-hook-buddypress.php:525 ../plugins/mycred-hook-buddypress.php:
943
+ #: 542 ../plugins/mycred-hook-buddypress.php:559 ../plugins/mycred-hook-
944
+ #: buddypress.php:592 ../plugins/mycred-hook-buddypress.php:622 ../plugins/mycred-
945
+ #: hook-buddypress.php:639 ../plugins/mycred-hook-buddypress.php:1243 ..
946
+ #: plugins/mycred-hook-buddypress.php:1260 ../plugins/mycred-hook-buddypress.php:
947
+ #: 1277 ../plugins/mycred-hook-buddypress.php:1294 ../plugins/mycred-hook-
948
+ #: buddypress.php:1312 ../plugins/mycred-hook-buddypress.php:1342 ..
949
+ #: plugins/mycred-hook-buddypress.php:1359 ../plugins/mycred-hook-buddypress-
950
+ #: links.php:250 ../plugins/mycred-hook-buddypress-links.php:267 ..
951
+ #: plugins/mycred-hook-buddypress-links.php:284 ../plugins/mycred-hook-
952
+ #: buddypress-links.php:294 ../plugins/mycred-hook-buddypress-links.php:303 ..
953
+ #: plugins/mycred-hook-buddypress-links.php:320 ../plugins/mycred-hook-
954
+ #: affiliatewp.php:237 ../plugins/mycred-hook-events-manager-light.php:192 ..
955
+ #: plugins/mycred-hook-sharethis.php:302 ../plugins/mycred-hook-buddypress-media.
956
+ #: php:209 ../plugins/mycred-hook-buddypress-media.php:223 ../plugins/mycred-hook-
957
+ #: buddypress-media.php:237 ../plugins/mycred-hook-wp-favorite-posts.php:213 ..
958
+ #: plugins/mycred-hook-wp-favorite-posts.php:231 ../plugins/mycred-hook-contact-
959
+ #: form7.php:147 ../plugins/mycred-hook-bbPress.php:410 ../plugins/mycred-hook-
960
+ #: bbPress.php:440 ../plugins/mycred-hook-bbPress.php:475 ../plugins/mycred-hook-
961
+ #: bbPress.php:492 ../plugins/mycred-hook-woocommerce.php:317 ../includes/mycred-
962
+ #: shortcodes.php:1132
963
+ msgid "Limit"
964
  msgstr ""
965
 
966
+ #: ../modules/mycred-module-hooks.php:683 ../modules/mycred-module-hooks.php:699 .
967
+ #: ./modules/mycred-module-hooks.php:714 ../modules/mycred-module-hooks.php:730 ..
968
+ #: modules/mycred-module-hooks.php:791 ../modules/mycred-module-hooks.php:807 ..
969
+ #: modules/mycred-module-hooks.php:1677 ../modules/mycred-module-hooks.php:1694 .
970
+ #: ./modules/mycred-module-hooks.php:1711
971
+ msgid "Content Author"
972
  msgstr ""
973
 
974
+ #: ../modules/mycred-module-hooks.php:704
975
  #, php-format
976
+ msgid "%plural% for viewing Pages"
977
  msgstr ""
978
 
979
+ #: ../modules/mycred-module-hooks.php:781
980
+ #, php-format
981
+ msgid "%plural% for viewing %s"
982
  msgstr ""
983
 
984
+ #: ../modules/mycred-module-hooks.php:1011 ../modules/mycred-module-hooks.php:
985
+ #: 2032 ../modules/mycred-module-hooks.php:2402 ../plugins/mycred-hook-wp-polls.
986
+ #: php:136 ../plugins/mycred-hook-gd-star-rating.php:109 ../plugins/mycred-hook-
987
+ #: gd-star-rating.php:122 ../plugins/mycred-hook-events-manager-light.php:196 ..
988
+ #: plugins/mycred-hook-events-manager-light.php:209 ../plugins/mycred-hook-wp-
989
+ #: favorite-posts.php:217 ../plugins/mycred-hook-wp-favorite-posts.php:235 ..
990
+ #: plugins/mycred-hook-wp-favorite-posts.php:249 ../plugins/mycred-hook-wp-
991
+ #: favorite-posts.php:262 ../plugins/mycred-hook-woocommerce.php:321 ..
992
+ #: plugins/mycred-hook-badgeOS.php:124 ../plugins/mycred-hook-badgeOS.php:126 ..
993
+ #: plugins/mycred-hook-badgeOS.php:135 ../addons/banking/services/mycred-bank-
994
+ #: service-payouts.php:283 ../addons/banking/services/mycred-bank-service-
995
+ #: interest.php:435 ../addons/gateway/carts/mycred-wpecommerce.php:371 ..
996
+ #: addons/gateway/carts/mycred-woocommerce.php:104 ..
997
+ #: addons/gateway/carts/mycred-woocommerce.php:176 ..
998
+ #: addons/gateway/carts/mycred-marketpress.php:395 ..
999
+ #: addons/gateway/carts/mycred-marketpress.php:428 ../addons/coupons/myCRED-
1000
+ #: addon-coupons.php:557 ../addons/buy-creds/myCRED-addon-buy-creds.php:673 ..
1001
+ #: addons/buy-creds/myCRED-addon-buy-creds.php:736
1002
+ msgid "Log Template"
1003
  msgstr ""
1004
 
1005
+ #: ../modules/mycred-module-hooks.php:1154
1006
+ #, php-format
1007
+ msgid "%plural% for Posts"
 
1008
  msgstr ""
1009
 
1010
+ #: ../modules/mycred-module-hooks.php:1171
1011
+ #, php-format
1012
+ msgid "%plural% for Pages"
1013
  msgstr ""
1014
 
1015
+ #: ../modules/mycred-module-hooks.php:1220
1016
+ #, php-format
1017
+ msgid "%plural% for %s"
1018
  msgstr ""
1019
 
1020
+ #: ../modules/mycred-module-hooks.php:1667
1021
+ #, php-format
1022
+ msgid ""
1023
+ "%plural% are only awarded when your website has been synced with the Disqus "
1024
+ "server!"
1025
  msgstr ""
1026
 
1027
+ #: ../modules/mycred-module-hooks.php:1670 ../includes/mycred-functions.php:2524
1028
+ msgid "Approved Comment"
1029
  msgstr ""
1030
 
1031
+ #: ../modules/mycred-module-hooks.php:1673 ../modules/mycred-module-hooks.php:
1032
+ #: 1690 ../modules/mycred-module-hooks.php:1707
1033
+ msgid "Comment Author"
1034
  msgstr ""
1035
 
1036
+ #: ../modules/mycred-module-hooks.php:1687
1037
+ msgid "Comment Marked SPAM"
 
1038
  msgstr ""
1039
 
1040
+ #: ../modules/mycred-module-hooks.php:1704
1041
+ msgid "Trashed / Unapproved Comments"
1042
  msgstr ""
1043
 
1044
+ #: ../modules/mycred-module-hooks.php:1721 ../modules/mycred-module-hooks.php:
1045
+ #: 2039 ../addons/transfer/myCRED-addon-transfer.php:259 ../addons/coupons/myCRED-
1046
+ #: addon-coupons.php:175
1047
+ msgid "Limits"
1048
  msgstr ""
1049
 
1050
+ #: ../modules/mycred-module-hooks.php:1724
1051
+ msgid "Limit per post"
1052
  msgstr ""
1053
 
1054
+ #: ../modules/mycred-module-hooks.php:1726
1055
+ msgid ""
1056
+ "The number of comments per post that grants %_plural% to the comment author. "
1057
+ "Use zero for unlimited."
1058
  msgstr ""
1059
 
1060
+ #: ../modules/mycred-module-hooks.php:1730
1061
+ msgid "Limit per day"
 
1062
  msgstr ""
1063
 
1064
+ #: ../modules/mycred-module-hooks.php:1732
1065
+ msgid "Number of comments per day that grants %_plural%. Use zero for unlimited."
 
1066
  msgstr ""
1067
 
1068
+ #: ../modules/mycred-module-hooks.php:1737
1069
  #, php-format
1070
+ msgid ""
1071
+ "%plural% is to be awarded even when comment authors reply to their own "
1072
+ "comment."
1073
  msgstr ""
1074
 
1075
+ #: ../modules/mycred-module-hooks.php:1817
1076
+ msgid "Once for each unique URL"
1077
  msgstr ""
1078
 
1079
+ #: ../modules/mycred-module-hooks.php:1818
1080
+ msgid "Once for each unique link id"
1081
  msgstr ""
1082
 
1083
+ #: ../modules/mycred-module-hooks.php:2029
1084
+ msgid ""
1085
+ "The default amount to award for clicking on links. You can override this in "
1086
+ "the shortcode."
1087
  msgstr ""
1088
 
1089
+ #: ../modules/mycred-module-hooks.php:2036
1090
  #, php-format
1091
+ msgid "Custom tags: %url%, %title% or %id%."
1092
  msgstr ""
1093
 
1094
+ #: ../modules/mycred-module-hooks.php:2049 ../modules/mycred-module-hooks.php:3103
1095
+ msgid "Note!"
 
1096
  msgstr ""
1097
 
1098
+ #: ../modules/mycred-module-hooks.php:2049
1099
+ msgid ""
1100
+ "If no ID is set when using the mycred_link shortcode, the shortcode will "
1101
+ "generate one automatically based on the value set under href. If you are "
1102
+ "using this feature for \"sharing\" content, it is recommended that you limit "
1103
+ "by ID."
1104
  msgstr ""
1105
 
1106
+ #: ../modules/mycred-module-hooks.php:2051 ../modules/mycred-module-hooks.php:2435
1107
+ msgid "Available Shortcode"
1108
  msgstr ""
1109
 
1110
+ #: ../modules/mycred-module-hooks.php:2399
1111
+ msgid "Amount to award for viewing videos."
1112
  msgstr ""
1113
 
1114
+ #: ../modules/mycred-module-hooks.php:2409
1115
+ msgid "Award Logic"
1116
  msgstr ""
1117
 
1118
+ #: ../modules/mycred-module-hooks.php:2411
1119
+ #, php-format
1120
+ msgid "Select when %_plural% should be awarded or deducted."
1121
  msgstr ""
1122
 
1123
+ #: ../modules/mycred-module-hooks.php:2412
1124
+ msgid "Play - As soon as video starts playing."
 
1125
  msgstr ""
1126
 
1127
+ #: ../modules/mycred-module-hooks.php:2413
1128
+ msgid "Full - First when the entire video has played."
1129
  msgstr ""
1130
 
1131
+ #: ../modules/mycred-module-hooks.php:2414
1132
+ msgid "Interval - For each x number of seconds watched."
 
1133
  msgstr ""
1134
 
1135
+ #: ../modules/mycred-module-hooks.php:2417 ../addons/banking/services/mycred-bank-
1136
+ #: service-payouts.php:271
1137
+ msgid "Interval"
1138
  msgstr ""
1139
 
1140
+ #: ../modules/mycred-module-hooks.php:2419
1141
+ msgid "Number of seconds"
1142
  msgstr ""
1143
 
1144
+ #: ../modules/mycred-module-hooks.php:2426
1145
+ msgid "Leniency"
 
1146
  msgstr ""
1147
 
1148
+ #: ../modules/mycred-module-hooks.php:2428
1149
+ msgid ""
1150
+ "The maximum percentage a users view of a movie can differ from the actual "
1151
+ "length."
1152
  msgstr ""
1153
 
1154
+ #: ../modules/mycred-module-hooks.php:2431
1155
+ msgid ""
1156
+ "Do not set this value to zero! A lot of thing can happen while a user "
1157
+ "watches a movie and sometimes a few seconds can drop of the counter due to "
1158
+ "buffering or play back errors."
1159
  msgstr ""
1160
 
1161
+ #: ../modules/mycred-module-hooks.php:2506
1162
+ msgid "Affiliate Program"
 
1163
  msgstr ""
1164
 
1165
+ #: ../modules/mycred-module-hooks.php:2514 ../includes/mycred-admin.php:413 ..
1166
+ #: addons/coupons/myCRED-addon-coupons.php:232
1167
+ msgid "Total"
1168
  msgstr ""
1169
 
1170
+ #: ../modules/mycred-module-hooks.php:2515
1171
+ msgid "Per Day"
1172
  msgstr ""
1173
 
1174
+ #: ../modules/mycred-module-hooks.php:2674
1175
+ msgid "Link"
1176
  msgstr ""
1177
 
1178
+ #: ../modules/mycred-module-hooks.php:2678
1179
+ msgid "Visitors Referred"
1180
  msgstr ""
1181
 
1182
+ #: ../modules/mycred-module-hooks.php:2682
1183
+ msgid "Signups Referred"
 
1184
  msgstr ""
1185
 
1186
+ #: ../modules/mycred-module-hooks.php:3001 ../plugins/mycred-hook-affiliatewp.php:
1187
+ #: 231
1188
+ msgid "Referring Visitors"
1189
  msgstr ""
1190
 
1191
+ #: ../modules/mycred-module-hooks.php:3020 ../modules/mycred-module-hooks.php:3040
1192
+ msgid "Referring Signups"
1193
  msgstr ""
1194
 
1195
+ #: ../modules/mycred-module-hooks.php:3024
1196
+ msgid "Visitors who have Cookies disabled will not award %_plural%."
1197
  msgstr ""
1198
 
1199
+ #: ../modules/mycred-module-hooks.php:3042
1200
+ msgid "Registrations are disabled."
1201
  msgstr ""
1202
 
1203
+ #: ../modules/mycred-module-hooks.php:3050
1204
+ msgid "Referral Links"
1205
  msgstr ""
1206
 
1207
+ #: ../modules/mycred-module-hooks.php:3054
1208
+ msgid "Assign numeric referral IDs to each user."
1209
  msgstr ""
1210
 
1211
+ #: ../modules/mycred-module-hooks.php:3055 ../modules/mycred-module-hooks.php:3061
1212
+ msgid "Example"
 
 
 
1213
  msgstr ""
1214
 
1215
+ #: ../modules/mycred-module-hooks.php:3060
1216
+ msgid "Assign usernames as IDs for each user."
 
1217
  msgstr ""
1218
 
1219
+ #: ../modules/mycred-module-hooks.php:3064
1220
+ msgid "IP Limit"
 
 
1221
  msgstr ""
1222
 
1223
+ #: ../modules/mycred-module-hooks.php:3068
1224
+ msgid "The number of times each IP address grants %_plural%. Use zero for unlimited."
1225
  msgstr ""
1226
 
1227
+ #: ../modules/mycred-module-hooks.php:3072 ../modules/mycred-module-hooks.php:3107
1228
+ msgid "BuddyPress Profile"
1229
  msgstr ""
1230
 
1231
+ #: ../modules/mycred-module-hooks.php:3075
1232
+ msgid "Insert Link in users Profile"
1233
  msgstr ""
1234
 
1235
+ #: ../modules/mycred-module-hooks.php:3076
1236
+ msgid ""
1237
+ "Option to inser the referral link in users profiles. Links will only be "
1238
+ "visible to users viewing their own profiles or administrators."
1239
  msgstr ""
1240
 
1241
+ #: ../modules/mycred-module-hooks.php:3080 ../includes/mycred-widgets.php:196 ..
1242
+ #: includes/mycred-widgets.php:385 ../includes/mycred-widgets.php:594 ..
1243
+ #: addons/gateway/carts/mycred-woocommerce.php:92 ..
1244
+ #: addons/transfer/includes/mycred-transfer-widgets.php:120 ..
1245
+ #: addons/ranks/myCRED-addon-ranks.php:1319 ../addons/buy-creds/gateways/skrill.
1246
+ #: php:339
1247
+ msgid "Title"
1248
  msgstr ""
1249
 
1250
+ #: ../modules/mycred-module-hooks.php:3082
1251
+ msgid "Leave empty to hide."
1252
  msgstr ""
1253
 
1254
+ #: ../modules/mycred-module-hooks.php:3085
1255
+ msgid "Description"
 
1256
  msgstr ""
1257
 
1258
+ #: ../modules/mycred-module-hooks.php:3086
1259
+ msgid "Optional description to insert under the link."
1260
  msgstr ""
1261
 
1262
+ #: ../modules/mycred-module-hooks.php:3100
1263
+ msgid "Profile Positioning"
 
1264
  msgstr ""
1265
 
1266
+ #: ../modules/mycred-module-hooks.php:3102
1267
+ msgid ""
1268
+ "You can move around the referral link on your users profile by changing the "
1269
+ "position. Increase to move up, decrease to move down."
1270
  msgstr ""
1271
 
1272
+ #: ../modules/mycred-module-hooks.php:3103
1273
+ msgid "You can not move the referral link above the users \"Base\" profile details!"
1274
  msgstr ""
1275
 
1276
+ #: ../modules/mycred-module-hooks.php:3109
1277
+ msgid "Requires BuddyPress Extended Profiles to be enabled."
1278
  msgstr ""
1279
 
1280
+ #: ../modules/mycred-module-hooks.php:3117 ../addons/buy-creds/myCRED-addon-buy-
1281
+ #: creds.php:741
1282
+ msgid "Available Shortcodes"
1283
  msgstr ""
1284
 
1285
+ #: ../modules/mycred-module-buddypress.php:31
1286
+ msgid "My History"
1287
  msgstr ""
1288
 
1289
+ #: ../modules/mycred-module-buddypress.php:32
1290
+ #, php-format
1291
+ msgid "%s's History"
1292
  msgstr ""
1293
 
1294
+ #: ../modules/mycred-module-buddypress.php:131
1295
+ msgid "Current balance"
1296
  msgstr ""
1297
 
1298
+ #: ../modules/mycred-module-buddypress.php:236 ../modules/mycred-module-
1299
+ #: buddypress.php:249 ../includes/mycred-log.php:992
1300
+ msgid "All"
1301
  msgstr ""
1302
 
1303
+ #: ../modules/mycred-module-buddypress.php:237 ../includes/mycred-log.php:993 ..
1304
+ #: addons/stats/widgets/mycred-stats-widget-circulation.php:189
1305
+ msgid "Today"
1306
  msgstr ""
1307
 
1308
+ #: ../modules/mycred-module-buddypress.php:238 ../includes/mycred-log.php:994
1309
+ msgid "Yesterday"
1310
  msgstr ""
1311
 
1312
+ #: ../modules/mycred-module-buddypress.php:239 ../includes/mycred-log.php:995 ..
1313
+ #: addons/stats/widgets/mycred-stats-widget-circulation.php:190
1314
+ msgid "This Week"
1315
  msgstr ""
1316
 
1317
+ #: ../modules/mycred-module-buddypress.php:240 ../includes/mycred-log.php:996 ..
1318
+ #: addons/stats/widgets/mycred-stats-widget-circulation.php:191
1319
+ msgid "This Month"
1320
  msgstr ""
1321
 
1322
+ #: ../modules/mycred-module-buddypress.php:362
1323
+ msgid "Go"
1324
  msgstr ""
1325
 
1326
+ #: ../modules/mycred-module-buddypress.php:417 ../addons/gateway/carts/mycred-
1327
+ #: woocommerce.php:152 ../addons/badges/myCRED-addon-badges.php:970 ..
1328
+ #: addons/badges/myCRED-addon-badges.php:1001
1329
+ msgid "Do not show"
 
 
1330
  msgstr ""
1331
 
1332
+ #: ../modules/mycred-module-buddypress.php:418 ../addons/badges/myCRED-addon-
1333
+ #: badges.php:971
1334
+ msgid "Include in Profile Header"
1335
  msgstr ""
1336
 
1337
+ #: ../modules/mycred-module-buddypress.php:419 ../addons/ranks/myCRED-addon-ranks.
1338
+ #: php:1408 ../addons/badges/myCRED-addon-badges.php:972
1339
+ msgid "Include under the \"Profile\" tab"
1340
  msgstr ""
1341
 
1342
+ #: ../modules/mycred-module-buddypress.php:420 ../addons/badges/myCRED-addon-
1343
+ #: badges.php:973
1344
+ msgid "Include under the \"Profile\" tab and Profile Header"
1345
  msgstr ""
1346
 
1347
+ #: ../modules/mycred-module-buddypress.php:424 ../addons/ranks/myCRED-addon-ranks.
1348
+ #: php:1406 ../addons/ranks/myCRED-addon-ranks.php:1451
1349
+ msgid "Do not show."
1350
  msgstr ""
1351
 
1352
+ #: ../modules/mycred-module-buddypress.php:425
1353
+ msgid "Show in Profile"
1354
  msgstr ""
1355
 
1356
+ #: ../modules/mycred-module-buddypress.php:442
1357
  #, php-format
1358
+ msgid "%singular% Balance"
1359
  msgstr ""
1360
 
1361
+ #: ../modules/mycred-module-buddypress.php:459
1362
+ #, php-format
1363
+ msgid "Members and visitors can other members %_singular% balance."
1364
  msgstr ""
1365
 
1366
+ #: ../modules/mycred-module-buddypress.php:464 ../addons/ranks/myCRED-addon-ranks.
1367
+ #: php:1428 ../addons/ranks/myCRED-addon-ranks.php:1473 ..
1368
+ #: addons/notifications/myCRED-addon-notifications.php:201
1369
+ msgid "Template"
1370
  msgstr ""
1371
 
1372
+ #: ../modules/mycred-module-buddypress.php:469
1373
+ #, php-format
1374
+ msgid "%plural% History"
1375
  msgstr ""
1376
 
1377
+ #: ../modules/mycred-module-buddypress.php:486
1378
+ msgid "Members can view each others %_plural% history."
1379
  msgstr ""
1380
 
1381
+ #: ../modules/mycred-module-buddypress.php:491
1382
+ msgid "Menu Title"
1383
  msgstr ""
1384
 
1385
+ #: ../modules/mycred-module-buddypress.php:493
1386
+ msgid "Title shown to me"
1387
  msgstr ""
1388
 
1389
+ #: ../modules/mycred-module-buddypress.php:498
1390
+ #, php-format
1391
+ msgid "Title shown to others. Use %s to show the first name."
1392
  msgstr ""
1393
 
1394
+ #: ../modules/mycred-module-buddypress.php:503
1395
+ msgid "Menu Position"
1396
  msgstr ""
1397
 
1398
+ #: ../modules/mycred-module-buddypress.php:505
1399
+ msgid "Current menu positions:"
1400
  msgstr ""
1401
 
1402
+ #: ../modules/mycred-module-buddypress.php:510
1403
+ msgid "History URL slug"
1404
  msgstr ""
1405
 
1406
+ #: ../modules/mycred-module-buddypress.php:512
1407
+ msgid "Do not use empty spaces!"
1408
  msgstr ""
1409
 
1410
+ #: ../modules/mycred-module-buddypress.php:517
1411
+ msgid "Number of history entries to show"
1412
  msgstr ""
1413
 
1414
+ #: ../plugins/mycred-hook-invite-anyone.php:18
1415
+ msgid "Invite Anyone Plugin"
1416
  msgstr ""
1417
 
1418
+ #: ../plugins/mycred-hook-invite-anyone.php:19
1419
+ #, php-format
1420
+ msgid ""
1421
+ "Awards %_plural% for sending invitations and/or %_plural% if the invite is "
1422
+ "accepted."
1423
  msgstr ""
1424
 
1425
+ #: ../plugins/mycred-hook-invite-anyone.php:190
1426
+ #, php-format
1427
+ msgid "%plural% for Sending An Invite"
1428
  msgstr ""
1429
 
1430
+ #: ../plugins/mycred-hook-invite-anyone.php:210
 
 
1431
  #, php-format
1432
+ msgid "%plural% for Accepting An Invite"
1433
  msgstr ""
1434
 
1435
+ #: ../plugins/mycred-hook-invite-anyone.php:214
 
1436
  #, php-format
1437
+ msgid "%plural% for each invited user that accepts an invitation."
 
 
 
 
 
 
 
1438
  msgstr ""
1439
 
1440
+ #: ../plugins/mycred-hook-wp-polls.php:18
1441
+ msgid "WP-Polls"
 
 
 
1442
  msgstr ""
1443
 
1444
+ #: ../plugins/mycred-hook-wp-polls.php:19
1445
+ #, php-format
1446
+ msgid "Awards %_plural% for users voting in polls."
 
 
1447
  msgstr ""
1448
 
1449
+ #: ../plugins/mycred-hook-wp-postratings.php:18
1450
+ msgid "Post Ratings"
 
 
 
1451
  msgstr ""
1452
 
1453
+ #: ../plugins/mycred-hook-wp-postratings.php:19
1454
+ #, php-format
1455
+ msgid ""
1456
+ "Awards %_plural% for post ratings. Supports awarding %_plural% both to post "
1457
+ "author and the user rating."
1458
  msgstr ""
1459
 
1460
+ #: ../plugins/mycred-hook-wp-postratings.php:76
1461
+ msgid "Based on rating"
1462
  msgstr ""
1463
 
1464
+ #: ../plugins/mycred-hook-wp-postratings.php:150 ../includes/mycred-functions.php:
1465
+ #: 2599
1466
+ msgid "Adding a Rating"
1467
  msgstr ""
1468
 
1469
+ #: ../plugins/mycred-hook-wp-postratings.php:160 ../plugins/mycred-hook-wp-
1470
+ #: postratings.php:179
1471
+ msgid "Use the Rating Value instead of the amount set here."
 
1472
  msgstr ""
1473
 
1474
+ #: ../plugins/mycred-hook-wp-postratings.php:169 ../includes/mycred-functions.php:
1475
+ #: 2600
1476
+ msgid "Receiving a Rating"
1477
  msgstr ""
1478
 
1479
+ #: ../plugins/mycred-hook-gravityforms.php:18
1480
+ msgid "Gravityform Submissions"
 
 
1481
  msgstr ""
1482
 
1483
+ #: ../plugins/mycred-hook-gravityforms.php:19
1484
+ #, php-format
1485
+ msgid "Awards %_plural% for successful form submissions."
 
1486
  msgstr ""
1487
 
1488
+ #: ../plugins/mycred-hook-gravityforms.php:118 ../plugins/mycred-hook-contact-
1489
+ #: form7.php:117
1490
+ msgid "No forms found."
 
1491
  msgstr ""
1492
 
1493
+ #: ../plugins/mycred-hook-gd-star-rating.php:18
1494
+ msgid "GD Star Rating"
1495
  msgstr ""
1496
 
1497
+ #: ../plugins/mycred-hook-gd-star-rating.php:19
1498
+ #, php-format
1499
+ msgid "Awards %_plural% for users rate items using the GD Star Rating plugin."
1500
  msgstr ""
1501
 
1502
+ #: ../plugins/mycred-hook-gd-star-rating.php:103
1503
+ msgid "Rating"
1504
  msgstr ""
1505
 
1506
+ #: ../plugins/mycred-hook-gd-star-rating.php:116
1507
+ msgid "Up / Down Vote"
1508
  msgstr ""
1509
 
1510
+ #: ../plugins/mycred-hook-simplepress.php:19
1511
+ #, php-format
1512
+ msgid "Awards %_plural% for Simple:Press actions."
1513
  msgstr ""
1514
 
1515
+ #: ../plugins/mycred-hook-simplepress.php:278 ../plugins/mycred-hook-bbPress.php:
1516
+ #: 434
1517
+ #, php-format
1518
+ msgid "%plural% for New Topic"
1519
  msgstr ""
1520
 
1521
+ #: ../plugins/mycred-hook-simplepress.php:295 ../plugins/mycred-hook-bbPress.php:
1522
+ #: 456
1523
+ #, php-format
1524
+ msgid "%plural% for Topic Deletion"
1525
  msgstr ""
1526
 
1527
+ #: ../plugins/mycred-hook-simplepress.php:308
1528
+ #, php-format
1529
+ msgid "%plural% for New Topic Post"
1530
  msgstr ""
1531
 
1532
+ #: ../plugins/mycred-hook-simplepress.php:326
1533
+ #, php-format
1534
+ msgid "Topic authors can receive %_plural% for posting on their own Topic"
1535
  msgstr ""
1536
 
1537
+ #: ../plugins/mycred-hook-simplepress.php:330
1538
+ #, php-format
1539
+ msgid "%plural% for Topic Post Deletion"
1540
  msgstr ""
1541
 
1542
+ #: ../plugins/mycred-hook-marketpress.php:63 ../plugins/mycred-hook-woocommerce.
1543
+ #: php:80
1544
+ #, php-format
1545
+ msgid "Reward with %plural%"
1546
  msgstr ""
1547
 
1548
+ #: ../plugins/mycred-hook-buddypress-gallery.php:19
1549
+ msgid "BuddyPress: Gallery Actions"
1550
  msgstr ""
1551
 
1552
+ #: ../plugins/mycred-hook-buddypress-gallery.php:20
1553
+ #, php-format
1554
  msgid ""
1555
+ "Awards %_plural% for creating a new gallery either using BP Album+ or BP "
1556
+ "Gallery."
 
1557
  msgstr ""
1558
 
1559
+ #: ../plugins/mycred-hook-buddypress-gallery.php:96
1560
+ #, php-format
1561
+ msgid "%plural% for New Gallery"
1562
  msgstr ""
1563
 
1564
+ #: ../plugins/mycred-hook-buddypress.php:14
1565
+ msgid "BuddyPress: Members"
1566
  msgstr ""
1567
 
1568
+ #: ../plugins/mycred-hook-buddypress.php:15
1569
+ #, php-format
1570
+ msgid "Awards %_plural% for profile related actions."
1571
  msgstr ""
1572
 
1573
+ #: ../plugins/mycred-hook-buddypress.php:22
1574
+ msgid "BuddyPress: Groups"
1575
  msgstr ""
1576
 
1577
+ #: ../plugins/mycred-hook-buddypress.php:23
1578
+ #, php-format
1579
+ msgid ""
1580
+ "Awards %_plural% for group related actions. Use minus to deduct %_plural% or "
1581
+ "zero to disable a specific hook."
1582
  msgstr ""
1583
 
1584
+ #: ../plugins/mycred-hook-buddypress.php:252 ../addons/gateway/event-
1585
+ #: booking/mycred-eventsmanager.php:636 ../addons/gateway/event-booking/mycred-
1586
+ #: eventsmanager-pro.php:617 ../addons/gateway/carts/mycred-wpecommerce.php:386 ..
1587
+ #: addons/gateway/carts/mycred-marketpress.php:438
1588
+ msgid "Insufficient Funds"
1589
  msgstr ""
1590
 
1591
+ #: ../plugins/mycred-hook-buddypress.php:502
1592
+ #, php-format
1593
+ msgid "%plural% for Profile Updates"
1594
  msgstr ""
1595
 
1596
+ #: ../plugins/mycred-hook-buddypress.php:519
1597
  #, php-format
1598
+ msgid "%plural% for Removing Profile Update"
 
1599
  msgstr ""
1600
 
1601
+ #: ../plugins/mycred-hook-buddypress.php:536
1602
+ #, php-format
1603
+ msgid "%plural% for New Avatar"
1604
  msgstr ""
1605
 
1606
+ #: ../plugins/mycred-hook-buddypress.php:553
1607
+ #, php-format
1608
+ msgid "%plural% for New Friendships"
1609
  msgstr ""
1610
 
1611
+ #: ../plugins/mycred-hook-buddypress.php:563
1612
+ #, php-format
1613
+ msgid ""
1614
+ "Users with zero balance can not add friends. Requires that you deduct "
1615
+ "%_plural% for adding a new friend."
1616
  msgstr ""
1617
 
1618
+ #: ../plugins/mycred-hook-buddypress.php:573
1619
+ #, php-format
1620
+ msgid "%plural% for Leaving Friendship"
1621
  msgstr ""
1622
 
1623
+ #: ../plugins/mycred-hook-buddypress.php:586
1624
+ #, php-format
1625
+ msgid "%plural% for New Comment"
1626
  msgstr ""
1627
 
1628
+ #: ../plugins/mycred-hook-buddypress.php:603
1629
+ #, php-format
1630
+ msgid "%plural% for Deleting Comment"
1631
  msgstr ""
1632
 
1633
+ #: ../plugins/mycred-hook-buddypress.php:616
1634
+ #, php-format
1635
+ msgid "%plural% for New Messages"
1636
  msgstr ""
1637
 
1638
+ #: ../plugins/mycred-hook-buddypress.php:633
1639
+ #, php-format
1640
+ msgid "%plural% for Sending Gift"
1641
  msgstr ""
1642
 
1643
+ #: ../plugins/mycred-hook-buddypress.php:1204
1644
+ #, php-format
1645
+ msgid "%plural% for Creating Groups"
1646
  msgstr ""
1647
 
1648
+ #: ../plugins/mycred-hook-buddypress.php:1208
1649
+ msgid ""
1650
+ "If you use a negative value and the user does not have enough %_plural% the "
1651
+ "\"Create Group\" button will be disabled."
1652
  msgstr ""
1653
 
1654
+ #: ../plugins/mycred-hook-buddypress.php:1212
1655
+ msgid "Number of members before awarding %_plural%"
 
 
 
 
1656
  msgstr ""
1657
 
1658
+ #: ../plugins/mycred-hook-buddypress.php:1214
1659
+ msgid "Use zero to award %_plural% when group is created."
1660
  msgstr ""
1661
 
1662
+ #: ../plugins/mycred-hook-buddypress.php:1224
1663
+ #, php-format
1664
+ msgid "%plural% for Deleting Groups"
1665
  msgstr ""
1666
 
1667
+ #: ../plugins/mycred-hook-buddypress.php:1237
1668
+ #, php-format
1669
+ msgid "%plural% for New Forum Topic"
 
 
1670
  msgstr ""
1671
 
1672
+ #: ../plugins/mycred-hook-buddypress.php:1254
1673
+ #, php-format
1674
+ msgid "%plural% for Editing Forum Topic"
1675
  msgstr ""
1676
 
1677
+ #: ../plugins/mycred-hook-buddypress.php:1271
1678
+ #, php-format
1679
+ msgid "%plural% for New Forum Post"
 
1680
  msgstr ""
1681
 
1682
+ #: ../plugins/mycred-hook-buddypress.php:1288
1683
  #, php-format
1684
+ msgid "%plural% for Editing Forum Post"
1685
  msgstr ""
1686
 
1687
+ #: ../plugins/mycred-hook-buddypress.php:1305
1688
  #, php-format
1689
+ msgid "%plural% for Joining Groups"
1690
  msgstr ""
1691
 
1692
+ #: ../plugins/mycred-hook-buddypress.php:1309
1693
+ msgid ""
1694
+ "If you use a negative value and the user does not have enough %_plural% the "
1695
+ "\"Join Group\" button will be disabled."
1696
  msgstr ""
1697
 
1698
+ #: ../plugins/mycred-hook-buddypress.php:1323
1699
+ #, php-format
1700
+ msgid "%plural% for Leaving Groups"
1701
  msgstr ""
1702
 
1703
+ #: ../plugins/mycred-hook-buddypress.php:1336
1704
+ #, php-format
1705
+ msgid "%plural% for New Group Avatar"
1706
  msgstr ""
1707
 
1708
+ #: ../plugins/mycred-hook-buddypress.php:1353
1709
+ #, php-format
1710
+ msgid "%plural% for New Group Comment"
1711
  msgstr ""
1712
 
1713
+ #: ../plugins/mycred-hook-buddypress-links.php:19
1714
+ msgid "BuddyPress: Links"
1715
  msgstr ""
1716
 
1717
+ #: ../plugins/mycred-hook-buddypress-links.php:20
1718
+ #, php-format
1719
+ msgid "Awards %_plural% for link related actions."
1720
  msgstr ""
1721
 
1722
+ #: ../plugins/mycred-hook-buddypress-links.php:244
1723
+ #, php-format
1724
+ msgid "%plural% for New Links"
1725
  msgstr ""
1726
 
1727
+ #: ../plugins/mycred-hook-buddypress-links.php:261
1728
+ #, php-format
1729
+ msgid "%plural% for Vote on Link"
 
1730
  msgstr ""
1731
 
1732
+ #: ../plugins/mycred-hook-buddypress-links.php:277
1733
+ #, php-format
1734
+ msgid "%plural% per received Vote"
 
1735
  msgstr ""
1736
 
1737
+ #: ../plugins/mycred-hook-buddypress-links.php:280
1738
+ msgid "Vote Up"
 
1739
  msgstr ""
1740
 
1741
+ #: ../plugins/mycred-hook-buddypress-links.php:299
1742
+ msgid "Vote Down"
1743
  msgstr ""
1744
 
1745
+ #: ../plugins/mycred-hook-buddypress-links.php:314
1746
+ #, php-format
1747
+ msgid "%plural% for Updating Links"
1748
  msgstr ""
1749
 
1750
+ #: ../plugins/mycred-hook-buddypress-links.php:331
1751
+ #, php-format
1752
+ msgid "%plural% for Deleting Links"
1753
  msgstr ""
1754
 
1755
+ #: ../plugins/mycred-hook-affiliatewp.php:18
1756
+ msgid "AffiliateWP"
1757
  msgstr ""
1758
 
1759
+ #: ../plugins/mycred-hook-affiliatewp.php:19
1760
+ #, php-format
1761
+ msgid ""
1762
+ "Awards %_plural% for affiliate signups, referring visitors and store sale "
1763
+ "referrals."
1764
  msgstr ""
1765
 
1766
+ #: ../plugins/mycred-hook-affiliatewp.php:218
1767
+ msgid "Affiliate Signup"
1768
  msgstr ""
1769
 
1770
+ #: ../plugins/mycred-hook-affiliatewp.php:248
1771
+ msgid "Referring Sales"
1772
  msgstr ""
1773
 
1774
+ #: ../plugins/mycred-hook-affiliatewp.php:251
1775
+ msgid "Pay a set amount for all referrals."
 
 
 
1776
  msgstr ""
1777
 
1778
+ #: ../plugins/mycred-hook-affiliatewp.php:252
1779
+ #, php-format
1780
+ msgid "AffiliateWP will use %plural% as currency so pay the referral amount."
 
1781
  msgstr ""
1782
 
1783
+ #: ../plugins/mycred-hook-affiliatewp.php:253
1784
+ msgid "Apply an exchange rate against the referral amount."
1785
  msgstr ""
1786
 
1787
+ #: ../plugins/mycred-hook-affiliatewp.php:256 ../includes/mycred-shortcodes.php:
1788
+ #: 988 ../includes/mycred-shortcodes.php:1131 ../includes/mycred-admin.php:749 ..
1789
+ #: includes/mycred-admin.php:801 ../addons/banking/services/mycred-bank-service-
1790
+ #: payouts.php:266 ../addons/buy-creds/myCRED-addon-buy-creds.php:344 ..
1791
+ #: addons/buy-creds/myCRED-addon-buy-creds.php:1633 ../addons/buy-creds/myCRED-
1792
+ #: addon-buy-creds.php:1713 ../addons/buy-creds/abstracts/mycred-abstract-payment-
1793
+ #: gateway.php:593
1794
+ msgid "Amount"
1795
  msgstr ""
1796
 
1797
+ #: ../plugins/mycred-hook-affiliatewp.php:261
1798
+ msgid "Log template - Payout"
1799
  msgstr ""
1800
 
1801
+ #: ../plugins/mycred-hook-affiliatewp.php:266
1802
+ msgid "Log template - Refund"
1803
  msgstr ""
1804
 
1805
+ #: ../plugins/mycred-hook-events-manager-light.php:18
1806
+ msgid "Events Manager"
1807
  msgstr ""
1808
 
1809
+ #: ../plugins/mycred-hook-events-manager-light.php:19
1810
+ #, php-format
1811
+ msgid "Awards %_plural% for users attending events."
1812
  msgstr ""
1813
 
1814
+ #: ../plugins/mycred-hook-events-manager-light.php:186
1815
+ msgid "Attending Event"
1816
  msgstr ""
1817
 
1818
+ #: ../plugins/mycred-hook-events-manager-light.php:203
1819
+ msgid "Cancelling Attendance"
 
 
1820
  msgstr ""
1821
 
1822
+ #: ../plugins/mycred-hook-sharethis.php:19
1823
+ #, php-format
1824
+ msgid "%plural% for Sharing"
1825
  msgstr ""
1826
 
1827
+ #: ../plugins/mycred-hook-sharethis.php:20
1828
+ #, php-format
1829
+ msgid ""
1830
+ "Awards %_plural% for users sharing / liking your website content to popular "
1831
+ "social media sites."
 
 
 
 
 
 
 
 
1832
  msgstr ""
1833
 
1834
+ #: ../plugins/mycred-hook-sharethis.php:257
1835
+ msgid "Your ShareThis public key is not set."
 
1836
  msgstr ""
1837
 
1838
+ #: ../plugins/mycred-hook-sharethis.php:262
1839
+ msgid "No ShareThis services detected. Please check your installation."
 
1840
  msgstr ""
1841
 
1842
+ #: ../plugins/mycred-hook-buddypress-media.php:18
1843
+ msgid "rtMedia Galleries"
1844
  msgstr ""
1845
 
1846
+ #: ../plugins/mycred-hook-buddypress-media.php:19
1847
+ #, php-format
1848
+ msgid "Award / Deduct %_plural% for users creating albums or uploading new photos."
1849
  msgstr ""
1850
 
1851
+ #: ../plugins/mycred-hook-buddypress-media.php:202
1852
+ msgid "New Media Upload"
1853
  msgstr ""
1854
 
1855
+ #: ../plugins/mycred-hook-buddypress-media.php:205 ../includes/mycred-functions.
1856
+ #: php:2557
1857
+ msgid "Photo Upload"
1858
  msgstr ""
1859
 
1860
+ #: ../plugins/mycred-hook-buddypress-media.php:219 ../includes/mycred-functions.
1861
+ #: php:2558
1862
+ msgid "Video Upload"
1863
  msgstr ""
1864
 
1865
+ #: ../plugins/mycred-hook-buddypress-media.php:233 ../includes/mycred-functions.
1866
+ #: php:2559
1867
+ msgid "Music Upload"
1868
  msgstr ""
1869
 
1870
+ #: ../plugins/mycred-hook-buddypress-media.php:247
1871
+ msgid "Delete Media"
1872
  msgstr ""
1873
 
1874
+ #: ../plugins/mycred-hook-buddypress-media.php:250
1875
+ msgid "Delete Photo"
1876
  msgstr ""
1877
 
1878
+ #: ../plugins/mycred-hook-buddypress-media.php:260
1879
+ msgid "Delete Video"
1880
  msgstr ""
1881
 
1882
+ #: ../plugins/mycred-hook-buddypress-media.php:270
1883
+ msgid "Delete Music"
1884
  msgstr ""
1885
 
1886
+ #: ../plugins/mycred-hook-wp-favorite-posts.php:18
1887
+ msgid "WP Favorite Posts"
1888
  msgstr ""
1889
 
1890
+ #: ../plugins/mycred-hook-wp-favorite-posts.php:19
1891
+ #, php-format
1892
+ msgid "Awards %_plural% for users adding posts to their favorites."
1893
  msgstr ""
1894
 
1895
+ #: ../plugins/mycred-hook-wp-favorite-posts.php:207
1896
+ msgid "Adding Content to Favorites"
1897
  msgstr ""
1898
 
1899
+ #: ../plugins/mycred-hook-wp-favorite-posts.php:225
1900
+ msgid "Authors Content added to favorites"
 
 
1901
  msgstr ""
1902
 
1903
+ #: ../plugins/mycred-hook-wp-favorite-posts.php:243
1904
+ msgid "Removing Content from Favorites"
1905
  msgstr ""
1906
 
1907
+ #: ../plugins/mycred-hook-wp-favorite-posts.php:256
1908
+ msgid "Removing Content from Favorites (Author)"
1909
  msgstr ""
1910
 
1911
+ #: ../plugins/mycred-hook-contact-form7.php:18
1912
+ msgid "Contact Form 7 Form Submissions"
 
 
1913
  msgstr ""
1914
 
1915
+ #: ../plugins/mycred-hook-contact-form7.php:19
1916
+ #, php-format
1917
+ msgid "Awards %_plural% for successful form submissions (by logged in users)."
1918
  msgstr ""
1919
 
1920
+ #: ../plugins/mycred-hook-jetpack.php:18
1921
+ msgid "Jetpack Subscriptions"
 
 
1922
  msgstr ""
1923
 
1924
+ #: ../plugins/mycred-hook-jetpack.php:19
1925
  #, php-format
1926
  msgid ""
1927
+ "Awards %_plural% for users signing up for site or comment updates using "
1928
+ "Jetpack."
1929
  msgstr ""
1930
 
1931
+ #: ../plugins/mycred-hook-jetpack.php:499
1932
+ msgid "Site Subscriptions"
1933
  msgstr ""
1934
 
1935
+ #: ../plugins/mycred-hook-jetpack.php:512
1936
+ msgid "Comment Subscriptions"
1937
  msgstr ""
1938
 
1939
+ #: ../plugins/mycred-hook-bbPress.php:18
1940
+ msgid "bbPress"
1941
  msgstr ""
1942
 
1943
+ #: ../plugins/mycred-hook-bbPress.php:19
1944
+ #, php-format
1945
+ msgid "Awards %_plural% for bbPress actions."
1946
  msgstr ""
1947
 
1948
+ #: ../plugins/mycred-hook-bbPress.php:404
1949
+ #, php-format
1950
+ msgid "%plural% for New Forum"
1951
  msgstr ""
1952
 
1953
+ #: ../plugins/mycred-hook-bbPress.php:421
1954
+ #, php-format
1955
+ msgid "%plural% for Forum Deletion"
1956
  msgstr ""
1957
 
1958
+ #: ../plugins/mycred-hook-bbPress.php:452
1959
+ #, php-format
1960
+ msgid "Forum authors can receive %_plural% for creating new topics."
1961
  msgstr ""
1962
 
1963
+ #: ../plugins/mycred-hook-bbPress.php:469
1964
+ #, php-format
1965
+ msgid "%plural% for Favorited Topic"
 
1966
  msgstr ""
1967
 
1968
+ #: ../plugins/mycred-hook-bbPress.php:486
1969
+ #, php-format
1970
+ msgid "%plural% for New Reply"
1971
  msgstr ""
1972
 
1973
+ #: ../plugins/mycred-hook-bbPress.php:504
1974
+ #, php-format
1975
+ msgid "Topic authors can receive %_plural% for replying to their own Topic"
 
1976
  msgstr ""
1977
 
1978
+ #: ../plugins/mycred-hook-bbPress.php:508
1979
+ #, php-format
1980
+ msgid "Show users %_plural% balance in replies"
1981
  msgstr ""
1982
 
1983
+ #: ../plugins/mycred-hook-bbPress.php:512
1984
+ #, php-format
1985
+ msgid "%plural% for Reply Deletion"
1986
  msgstr ""
1987
 
1988
+ #: ../plugins/mycred-hook-woocommerce.php:210
1989
+ msgid "WooCommerce Product Reviews"
1990
  msgstr ""
1991
 
1992
+ #: ../plugins/mycred-hook-woocommerce.php:211
1993
+ #, php-format
1994
+ msgid "Awards %_plural% for users leaving reviews on your WooCommerce products."
1995
  msgstr ""
1996
 
1997
+ #: ../plugins/mycred-hook-badgeOS.php:18
1998
+ msgid "BadgeOS"
1999
  msgstr ""
2000
 
2001
+ #: ../plugins/mycred-hook-badgeOS.php:19
2002
+ msgid ""
2003
+ "Default settings for each BadgeOS Achievement type. These settings may be "
2004
+ "overridden for individual achievement type."
2005
  msgstr ""
2006
 
2007
+ #: ../plugins/mycred-hook-badgeOS.php:105
2008
+ #, php-format
2009
+ msgid ""
2010
+ "Please setup your <a href=\"%s\">default settings</a> before using this "
2011
+ "feature."
2012
  msgstr ""
2013
 
2014
+ #: ../plugins/mycred-hook-badgeOS.php:118 ../plugins/mycred-hook-badgeOS.php:120
2015
+ #, php-format
2016
+ msgid "%plural% to Award"
2017
  msgstr ""
2018
 
2019
+ #: ../plugins/mycred-hook-badgeOS.php:122
2020
+ msgid "Use zero to disable"
2021
  msgstr ""
2022
 
2023
+ #: ../plugins/mycred-hook-badgeOS.php:133
2024
+ msgid "Deduction Log Template"
 
 
 
 
2025
  msgstr ""
2026
 
2027
+ #: ../plugins/mycred-hook-badgeOS.php:278
2028
+ #, php-format
2029
+ msgid "Default %s for %s"
 
2030
  msgstr ""
2031
 
2032
+ #: ../plugins/mycred-hook-badgeOS.php:284
2033
+ msgid "Use zero to disable users gaining %_plural%"
2034
  msgstr ""
2035
 
2036
+ #: ../plugins/mycred-hook-badgeOS.php:288
2037
+ msgid "Default Log template"
2038
  msgstr ""
2039
 
2040
+ #: ../includes/mycred-importer.php:11
2041
+ #, php-format
2042
+ msgid "%s Log Import"
2043
  msgstr ""
2044
 
2045
+ #: ../includes/mycred-importer.php:12
2046
+ msgid "Import log entries via a CSV file."
2047
  msgstr ""
2048
 
2049
+ #: ../includes/mycred-importer.php:43
2050
+ #, php-format
2051
+ msgid "%s Balance Import"
2052
  msgstr ""
2053
 
2054
+ #: ../includes/mycred-importer.php:44
2055
+ msgid "Import balances."
2056
  msgstr ""
2057
 
2058
+ #: ../includes/mycred-importer.php:75
2059
+ #, php-format
2060
+ msgid "%s CubePoints Import"
2061
  msgstr ""
2062
 
2063
+ #: ../includes/mycred-importer.php:76 ../includes/importers/mycred-cubepoints.php:
2064
+ #: 344
2065
+ msgid "Import CubePoints log entries and / or balances."
2066
  msgstr ""
2067
 
2068
+ #: ../includes/mycred-importer.php:92
2069
+ msgid "No CubePoints log exists."
2070
  msgstr ""
2071
 
2072
+ #: ../includes/mycred-log.php:485
2073
+ #, php-format
2074
+ msgid "Showing %d %s"
2075
  msgstr ""
2076
 
2077
+ #: ../includes/mycred-log.php:485
2078
+ msgid "entry"
2079
+ msgid_plural "entries"
2080
+ msgstr[0] ""
2081
+ msgstr[1] ""
2082
 
2083
+ #: ../includes/mycred-log.php:500
2084
+ msgid "Go to the first page"
2085
  msgstr ""
2086
 
2087
+ #: ../includes/mycred-log.php:507
2088
+ msgid "Go to the previous page"
2089
  msgstr ""
2090
 
2091
+ #: ../includes/mycred-log.php:517
2092
+ msgid "Current page"
2093
  msgstr ""
2094
 
2095
+ #: ../includes/mycred-log.php:523
2096
+ #, php-format
2097
+ msgctxt "mycred"
2098
+ msgid "%1$s of %2$s"
2099
  msgstr ""
2100
 
2101
+ #: ../includes/mycred-log.php:527
2102
+ msgid "Go to the next page"
2103
  msgstr ""
2104
 
2105
+ #: ../includes/mycred-log.php:534
2106
+ msgid "Go to the last page"
2107
  msgstr ""
2108
 
2109
+ #: ../includes/mycred-log.php:611
2110
+ msgid "Show all references"
2111
  msgstr ""
2112
 
2113
+ #: ../includes/mycred-log.php:628
2114
+ msgid "User ID, Username, Email or Nicename"
 
 
2115
  msgstr ""
2116
 
2117
+ #: ../includes/mycred-log.php:636
2118
+ msgid "Show in order"
2119
  msgstr ""
2120
 
2121
+ #: ../includes/mycred-log.php:637 ../includes/mycred-widgets.php:427
2122
+ msgid "Ascending"
2123
  msgstr ""
2124
 
2125
+ #: ../includes/mycred-log.php:637 ../includes/mycred-widgets.php:428
2126
+ msgid "Descending"
2127
  msgstr ""
2128
 
2129
+ #: ../includes/mycred-log.php:658
2130
+ msgid "Filter"
2131
  msgstr ""
2132
 
2133
+ #: ../includes/mycred-log.php:718
2134
  msgid ""
2135
+ "Log entries are exported to a CSV file and depending on the number of "
2136
+ "entries selected, the process may take a few seconds."
2137
  msgstr ""
2138
 
2139
+ #: ../includes/mycred-log.php:725
2140
+ msgid "No export options available."
 
 
2141
  msgstr ""
2142
 
2143
+ #: ../includes/mycred-log.php:756 ../addons/buy-creds/myCRED-addon-buy-creds.php:
2144
+ #: 1075
2145
+ msgid "Date"
2146
  msgstr ""
2147
 
2148
+ #: ../includes/mycred-log.php:758
2149
+ msgid "Entry"
2150
  msgstr ""
2151
 
2152
+ #: ../includes/mycred-log.php:958
2153
+ msgid "No log entries found"
2154
  msgstr ""
2155
 
2156
+ #: ../includes/mycred-log.php:976 ../includes/mycred-log.php:978
2157
+ msgid "Search Log"
2158
  msgstr ""
2159
 
2160
+ #: ../includes/mycred-log.php:977
2161
+ msgid "search log entries"
2162
  msgstr ""
2163
 
2164
+ #: ../includes/mycred-remote.php:523
2165
+ msgid "This feature requires WordPress Permalinks to be setup and enabled!"
2166
  msgstr ""
2167
 
2168
+ #: ../includes/mycred-remote.php:526
2169
+ msgid "Click Update Settings to load the Remote API settings."
 
 
 
2170
  msgstr ""
2171
 
2172
+ #: ../includes/mycred-remote.php:528
2173
+ msgid "Allow Remote Access"
2174
  msgstr ""
2175
 
2176
+ #: ../includes/mycred-remote.php:549
2177
+ msgid "Remote Access"
 
 
2178
  msgstr ""
2179
 
2180
+ #: ../includes/mycred-remote.php:551 ../addons/buy-creds/gateways/bitpay.php:253
2181
+ msgid "API Key"
 
 
2182
  msgstr ""
2183
 
2184
+ #: ../includes/mycred-remote.php:554
2185
+ msgid "Key"
 
2186
  msgstr ""
2187
 
2188
+ #: ../includes/mycred-remote.php:555
2189
+ msgid "16, 24 or 32 characters"
 
2190
  msgstr ""
2191
 
2192
+ #: ../includes/mycred-remote.php:556
2193
+ msgid "Required for this feature to work!<br />Minimum 12 characters."
 
2194
  msgstr ""
2195
 
2196
+ #: ../includes/mycred-remote.php:559
2197
+ msgid "Key Length"
2198
  msgstr ""
2199
 
2200
+ #: ../includes/mycred-remote.php:564
2201
+ msgid "Generate New Key"
2202
  msgstr ""
2203
 
2204
+ #: ../includes/mycred-remote.php:566
2205
+ msgid "Warning!"
2206
  msgstr ""
2207
 
2208
+ #: ../includes/mycred-remote.php:566
2209
+ #, php-format
2210
+ msgid ""
2211
+ "Keep this key safe! Those you share this key with will be able to remotely "
2212
+ "deduct / add / transfer %plural%!"
2213
  msgstr ""
2214
 
2215
+ #: ../includes/mycred-remote.php:568
2216
+ msgid "Incoming URI"
2217
  msgstr ""
2218
 
2219
+ #: ../includes/mycred-remote.php:572
2220
+ msgid ""
2221
+ "The incoming call address. Remote calls made to any other URL will be "
2222
+ "ignored."
2223
  msgstr ""
2224
 
2225
+ #: ../includes/mycred-remote.php:575
2226
+ msgid "Debug Mode"
 
2227
  msgstr ""
2228
 
2229
+ #: ../includes/mycred-remote.php:578
2230
+ msgid ""
2231
+ "Remember to disable when not used to prevent mischievous calls from learning "
2232
+ "about your setup!"
2233
  msgstr ""
2234
 
2235
+ #: ../includes/mycred-network.php:66 ../includes/mycred-network.php:67
2236
+ msgid "Network Settings"
 
2237
  msgstr ""
2238
 
2239
+ #: ../includes/mycred-network.php:151
2240
+ #, php-format
2241
+ msgid "%s Network"
2242
  msgstr ""
2243
 
2244
+ #: ../includes/mycred-network.php:157
2245
  #, php-format
2246
+ msgid "Note! %s has not yet been setup."
2247
  msgstr ""
2248
 
2249
+ #: ../includes/mycred-network.php:161
2250
+ msgid "Network Settings Updated"
2251
  msgstr ""
2252
 
2253
+ #: ../includes/mycred-network.php:164
2254
+ #, php-format
2255
+ msgid "Configure network settings for %s."
2256
  msgstr ""
2257
 
2258
+ #: ../includes/mycred-network.php:172
2259
+ msgid "Master Template"
 
 
2260
  msgstr ""
2261
 
2262
+ #: ../includes/mycred-network.php:176 ../includes/mycred-network.php:190 ..
2263
+ #: addons/buy-creds/gateways/bitpay.php:307
2264
+ msgid "Yes"
 
2265
  msgstr ""
2266
 
2267
+ #: ../includes/mycred-network.php:180 ../includes/mycred-network.php:194 ..
2268
+ #: addons/buy-creds/gateways/bitpay.php:306
2269
+ msgid "No"
2270
  msgstr ""
2271
 
2272
+ #: ../includes/mycred-network.php:183
2273
+ #, php-format
2274
+ msgid ""
2275
+ "If enabled, %s will use your main site's settings for all other sites in "
2276
+ "your network."
2277
  msgstr ""
2278
 
2279
+ #: ../includes/mycred-network.php:186
2280
+ msgid "Central Logging"
 
2281
  msgstr ""
2282
 
2283
+ #: ../includes/mycred-network.php:197
2284
+ #, php-format
2285
+ msgid "If enabled, %s will log all site actions in your main site's log."
2286
  msgstr ""
2287
 
2288
+ #: ../includes/mycred-network.php:200
2289
+ msgid "Site Block"
2290
  msgstr ""
2291
 
2292
+ #: ../includes/mycred-network.php:204
2293
+ #, php-format
2294
+ msgid "Comma separated list of blog ids where %s is to be disabled."
2295
  msgstr ""
2296
 
2297
+ #: ../includes/mycred-network.php:216
2298
+ msgid "Save Network Settings"
2299
  msgstr ""
2300
 
2301
+ #: ../includes/mycred-about.php:77
2302
+ #, php-format
2303
+ msgid "Welcome to %s %s"
2304
  msgstr ""
2305
 
2306
+ #: ../includes/mycred-shortcodes.php:175
2307
+ msgid "Leaderboard is empty."
 
 
 
2308
  msgstr ""
2309
 
2310
+ #: ../includes/mycred-shortcodes.php:525
2311
+ msgid "error"
2312
  msgstr ""
2313
 
2314
+ #: ../includes/mycred-shortcodes.php:525
2315
+ msgid "Anchor missing URL!"
2316
  msgstr ""
2317
 
2318
+ #: ../includes/mycred-shortcodes.php:641
2319
+ msgid "Sent"
2320
  msgstr ""
2321
 
2322
+ #: ../includes/mycred-shortcodes.php:642
2323
+ msgid "Error - Try Again"
2324
  msgstr ""
2325
 
2326
+ #: ../includes/mycred-shortcodes.php:780
2327
+ msgid "A video ID is required for this shortcode"
2328
  msgstr ""
2329
 
2330
+ #: ../includes/mycred-shortcodes.php:941 ../includes/mycred-functions.php:2732
2331
+ msgid "Point types not found."
2332
  msgstr ""
2333
 
2334
+ #: ../includes/mycred-shortcodes.php:947 ../includes/mycred-shortcodes.php:955 ..
2335
+ #: includes/mycred-functions.php:2744 ../includes/mycred-functions.php:2764
2336
+ #, php-format
2337
+ msgid "You are excluded from using %s."
2338
  msgstr ""
2339
 
2340
+ #: ../includes/mycred-shortcodes.php:951 ../includes/mycred-functions.php:2754
2341
+ msgid "Your balance is too low to use this feature."
2342
  msgstr ""
2343
 
2344
+ #: ../includes/mycred-shortcodes.php:973
2345
+ #, php-format
2346
+ msgid "Convert <span>%s</span> to <span>%s</span>"
2347
  msgstr ""
2348
 
2349
+ #: ../includes/mycred-shortcodes.php:982
2350
+ #, php-format
2351
+ msgid "Your current %s balance"
2352
  msgstr ""
2353
 
2354
+ #: ../includes/mycred-shortcodes.php:990
2355
+ #, php-format
2356
+ msgid "Minimum %s"
2357
  msgstr ""
2358
 
2359
+ #: ../includes/mycred-shortcodes.php:993 ../addons/gateway/event-booking/mycred-
2360
+ #: eventespresso3.php:450 ../addons/gateway/event-booking/mycred-eventsmanager.
2361
+ #: php:578 ../addons/gateway/event-booking/mycred-eventsmanager-pro.php:540 ..
2362
+ #: addons/gateway/carts/mycred-wpecommerce.php:360 ..
2363
+ #: addons/gateway/carts/mycred-woocommerce.php:141 ..
2364
+ #: addons/gateway/carts/mycred-marketpress.php:409
2365
+ msgid "Exchange Rate"
2366
  msgstr ""
2367
 
2368
+ #: ../includes/mycred-shortcodes.php:994
2369
+ #, php-format
2370
+ msgid "1 %s = <span class=\"rate\">%s</span> %s"
2371
  msgstr ""
2372
 
2373
+ #: ../includes/mycred-shortcodes.php:1000
2374
+ msgid "Exchange"
 
 
2375
  msgstr ""
2376
 
2377
+ #: ../includes/mycred-shortcodes.php:1065
2378
+ msgid "No instances found for this point type"
2379
  msgstr ""
2380
 
2381
+ #: ../includes/mycred-shortcodes.php:1069
2382
+ msgid "Invalid point type"
2383
  msgstr ""
2384
 
2385
+ #: ../includes/mycred-shortcodes.php:1130
2386
+ msgid "Instance"
 
 
2387
  msgstr ""
2388
 
2389
+ #: ../includes/mycred-overview.php:25
2390
  #, php-format
2391
+ msgid "%s Overview"
2392
  msgstr ""
2393
 
2394
+ #: ../includes/mycred-overview.php:78 ../addons/stats/widgets/mycred-stats-widget-
2395
+ #: circulation.php:136
2396
+ msgid "Total amount in circulation"
2397
  msgstr ""
2398
 
2399
+ #: ../includes/mycred-overview.php:81
2400
+ msgid "Awarded"
2401
  msgstr ""
2402
 
2403
+ #: ../includes/mycred-overview.php:84
2404
+ msgid "Deducted"
2405
  msgstr ""
2406
 
2407
+ #: ../includes/mycred-overview.php:120 ../includes/mycred-overview.php:127 ..
2408
+ #: addons/transfer/myCRED-addon-transfer.php:207
2409
+ msgid "Transfers"
2410
  msgstr ""
2411
 
2412
+ #: ../includes/mycred-overview.php:141 ../includes/mycred-overview.php:148 ..
2413
+ #: addons/sell-content/myCRED-addon-sell-content.php:401
2414
+ msgid "Sell Content"
 
 
2415
  msgstr ""
2416
 
2417
+ #: ../includes/mycred-overview.php:166 ../includes/mycred-overview.php:173 ..
2418
+ #: addons/buy-creds/myCRED-addon-buy-creds.php:346 ../addons/buy-creds/myCRED-
2419
+ #: addon-buy-creds.php:1073 ../addons/buy-creds/myCRED-addon-buy-creds.php:1712
2420
+ msgid "Gateway"
 
 
2421
  msgstr ""
2422
 
2423
+ #: ../includes/mycred-overview.php:188 ../includes/mycred-overview.php:195 ..
2424
+ #: addons/coupons/myCRED-addon-coupons.php:93 ../addons/coupons/myCRED-addon-
2425
+ #: coupons.php:99 ../addons/coupons/myCRED-addon-coupons.php:555
2426
+ msgid "Coupons"
2427
  msgstr ""
2428
 
2429
+ #: ../includes/mycred-overview.php:208
2430
+ msgid "Manual"
 
2431
  msgstr ""
2432
 
2433
+ #: ../includes/mycred-install.php:39
2434
+ msgid "myCRED requires WordPress 3.8 or higher. Version detected:"
2435
  msgstr ""
2436
 
2437
+ #: ../includes/mycred-install.php:44
2438
+ msgid "myCRED requires PHP 5.2.4 or higher. Version detected: "
 
 
 
2439
  msgstr ""
2440
 
2441
+ #: ../includes/mycred-install.php:49
2442
+ msgid "myCRED requires SQL 5.0 or higher. Version detected: "
2443
  msgstr ""
2444
 
2445
+ #: ../includes/mycred-install.php:54
2446
+ msgid ""
2447
+ "The mcrypt PHP library must be enabled in order to use this plugin! Please "
2448
+ "check your PHP configuration or contact your host and ask them to enable it "
2449
+ "for you!"
2450
  msgstr ""
2451
 
2452
+ #: ../includes/mycred-install.php:59
2453
+ msgid ""
2454
+ "Sorry but your WordPress installation does not reach the minimum "
2455
+ "requirements for running myCRED. The following errors were given:"
2456
  msgstr ""
2457
 
2458
+ #: ../includes/mycred-install.php:268
2459
+ msgid "myCRED needs your attention."
 
 
2460
  msgstr ""
2461
 
2462
+ #: ../includes/mycred-install.php:268
2463
+ msgid "Run Setup"
2464
  msgstr ""
2465
 
2466
+ #: ../includes/mycred-install.php:280 ../includes/mycred-install.php:281
2467
+ msgid "myCRED Setup"
2468
  msgstr ""
2469
 
2470
+ #: ../includes/mycred-install.php:410
2471
  #, php-format
2472
+ msgid "%s Setup"
 
 
2473
  msgstr ""
2474
 
2475
+ #: ../includes/mycred-install.php:412
2476
+ msgid "Step"
 
2477
  msgstr ""
2478
 
2479
+ #: ../includes/mycred-install.php:436
2480
  msgid ""
2481
+ "Click \"Begin Setup\" to install myCRED. You will be able to select your "
2482
+ "points format, layout and security settings."
2483
  msgstr ""
2484
 
2485
+ #: ../includes/mycred-install.php:437
2486
+ msgid "Begin Setup"
 
 
 
 
2487
  msgstr ""
2488
 
2489
+ #: ../includes/mycred-install.php:492
2490
+ msgid "Select the format you want to use for your points."
2491
  msgstr ""
2492
 
2493
+ #: ../includes/mycred-install.php:493
2494
+ msgid "Format"
 
 
2495
  msgstr ""
2496
 
2497
+ #: ../includes/mycred-install.php:496
2498
+ msgid "Separators"
2499
  msgstr ""
2500
 
2501
+ #: ../includes/mycred-install.php:508
2502
+ msgid "Use zero for no decimals or maximum 20."
 
 
2503
  msgstr ""
2504
 
2505
+ #: ../includes/mycred-install.php:536
2506
+ msgid "Cancel Setup"
 
 
 
 
 
2507
  msgstr ""
2508
 
2509
+ #: ../includes/mycred-install.php:536 ../addons/buy-creds/myCRED-addon-buy-creds.
2510
+ #: php:1687
2511
+ msgid "Cancel"
 
 
 
 
2512
  msgstr ""
2513
 
2514
+ #: ../includes/mycred-install.php:536 ../includes/mycred-install.php:606
2515
+ msgid "Next"
2516
  msgstr ""
2517
 
2518
+ #: ../includes/mycred-install.php:571
2519
+ msgid "Edit Settings Capability"
 
 
 
 
 
2520
  msgstr ""
2521
 
2522
+ #: ../includes/mycred-install.php:575
2523
+ #, php-format
2524
+ msgid "Edit Users %plural% Capability"
 
 
2525
  msgstr ""
2526
 
2527
+ #: ../includes/mycred-install.php:624
2528
+ msgid "Ready"
 
 
 
2529
  msgstr ""
2530
 
2531
+ #: ../includes/mycred-install.php:625
2532
+ msgid "Almost done! Click the button below to finish this setup."
2533
  msgstr ""
2534
 
2535
+ #: ../includes/mycred-install.php:626
2536
+ msgid "Install & Run"
 
 
2537
  msgstr ""
2538
 
2539
+ #: ../includes/mycred-admin.php:195
2540
+ msgid "A log entry is required in order to adjust this users balance"
2541
  msgstr ""
2542
 
2543
+ #: ../includes/mycred-admin.php:197
2544
+ msgid "Users balance saved"
2545
  msgstr ""
2546
 
2547
+ #: ../includes/mycred-admin.php:205
2548
+ msgid "Users excluded"
2549
  msgstr ""
2550
 
2551
+ #: ../includes/mycred-admin.php:210
2552
+ msgid ""
2553
+ "All buyCRED Payment Gateways have been disabled! Please check your exchange "
2554
+ "rate settings and update all premium payment gateways!"
2555
  msgstr ""
2556
 
2557
+ #: ../includes/mycred-admin.php:239
2558
+ msgid "User is excluded"
2559
  msgstr ""
2560
 
2561
+ #: ../includes/mycred-admin.php:244
2562
+ msgid "Log Entry can not be empty"
2563
  msgstr ""
2564
 
2565
+ #: ../includes/mycred-admin.php:248
2566
+ msgid "Amount can not be zero"
 
 
 
 
 
 
 
 
 
2567
  msgstr ""
2568
 
2569
+ #: ../includes/mycred-admin.php:269
2570
+ msgid "Failed to update this uses balance."
2571
  msgstr ""
2572
 
2573
+ #: ../includes/mycred-admin.php:403
2574
+ msgid "Excluded"
2575
  msgstr ""
2576
 
2577
+ #: ../includes/mycred-admin.php:424
2578
+ msgid "Adjust"
 
 
2579
  msgstr ""
2580
 
2581
+ #: ../includes/mycred-admin.php:466 ../includes/mycred-admin.php:467
2582
+ msgid "Edit Balance"
2583
  msgstr ""
2584
 
2585
+ #: ../includes/mycred-admin.php:487
2586
+ msgid "Profile"
2587
  msgstr ""
2588
 
2589
+ #: ../includes/mycred-admin.php:494
2590
+ msgid "Extended Profile"
2591
  msgstr ""
2592
 
2593
+ #: ../includes/mycred-admin.php:588
2594
+ #, php-format
2595
+ msgid "This user is excluded from using %s"
2596
  msgstr ""
2597
 
2598
+ #: ../includes/mycred-admin.php:612
2599
+ msgid "Edit User"
2600
  msgstr ""
2601
 
2602
+ #: ../includes/mycred-admin.php:614
2603
+ msgctxt "user"
2604
+ msgid "Add New"
2605
  msgstr ""
2606
 
2607
+ #: ../includes/mycred-admin.php:616
2608
+ msgctxt "user"
2609
+ msgid "Add Existing"
2610
  msgstr ""
2611
 
2612
+ #: ../includes/mycred-admin.php:626 ../includes/mycred-admin.php:797 ..
2613
+ #: addons/gateway/event-booking/mycred-eventespresso3.php:277 ..
2614
+ #: addons/gateway/event-booking/mycred-eventespresso3.php:301 ..
2615
+ #: addons/gateway/event-booking/mycred-eventsmanager.php:412 ..
2616
+ #: addons/gateway/carts/mycred-marketpress.php:147
2617
+ msgid "Current Balance"
2618
  msgstr ""
2619
 
2620
+ #: ../includes/mycred-admin.php:627
2621
+ #, php-format
2622
+ msgid "Total %s Accumulated"
2623
  msgstr ""
2624
 
2625
+ #: ../includes/mycred-admin.php:628
2626
+ #, php-format
2627
+ msgid "Total %s Spent"
2628
  msgstr ""
2629
 
2630
+ #: ../includes/mycred-admin.php:639
2631
+ msgid "View History"
2632
  msgstr ""
2633
 
2634
+ #: ../includes/mycred-admin.php:640
2635
+ msgid "Exclude User"
2636
  msgstr ""
2637
 
2638
+ #: ../includes/mycred-admin.php:644
2639
+ msgid "Adjust Balance"
2640
  msgstr ""
2641
 
2642
+ #: ../includes/mycred-admin.php:653
2643
+ msgid ""
2644
+ "Warning! Excluding this user will result in their balance being deleted "
2645
+ "along with any entries currently in your log! This can not be undone!"
2646
  msgstr ""
2647
 
2648
+ #: ../includes/mycred-admin.php:718
2649
  #, php-format
2650
+ msgid "%singular% balance"
 
 
 
2651
  msgstr ""
2652
 
2653
+ #: ../includes/mycred-admin.php:742 ../includes/mycred-admin.php:786 ..
2654
+ #: addons/buy-creds/abstracts/mycred-abstract-payment-gateway.php:503
2655
+ msgid "required"
2656
  msgstr ""
2657
 
2658
+ #: ../includes/mycred-admin.php:744 ../includes/mycred-admin.php:788 ..
2659
+ #: addons/buy-creds/abstracts/mycred-abstract-payment-gateway.php:504
2660
+ msgid "optional"
2661
  msgstr ""
2662
 
2663
+ #: ../includes/mycred-admin.php:758 ../includes/mycred-admin.php:802 ..
2664
+ #: addons/gateway/event-booking/mycred-eventespresso3.php:470
2665
+ msgid "Log Entry"
 
2666
  msgstr ""
2667
 
2668
+ #: ../includes/mycred-admin.php:762 ../includes/mycred-admin.php:803
2669
+ msgid "Update Balance"
2670
  msgstr ""
2671
 
2672
+ #: ../includes/mycred-admin.php:795
2673
+ msgid "ID"
 
2674
  msgstr ""
2675
 
2676
+ #: ../includes/mycred-admin.php:801
2677
+ msgid "A positive or negative value"
2678
  msgstr ""
2679
 
2680
+ #: ../includes/mycred-widgets.php:21
2681
+ #, php-format
2682
+ msgid "(%s) My Balance"
2683
  msgstr ""
2684
 
2685
+ #: ../includes/mycred-widgets.php:24
2686
+ #, php-format
2687
+ msgid "Show the current users %s balance"
2688
  msgstr ""
2689
 
2690
+ #: ../includes/mycred-widgets.php:203 ../includes/mycred-widgets.php:391 ..
2691
+ #: includes/importers/mycred-cubepoints.php:365 ../addons/gateway/event-
2692
+ #: booking/mycred-eventespresso3.php:437 ../addons/gateway/event-booking/mycred-
2693
+ #: eventsmanager.php:550 ../addons/gateway/event-booking/mycred-eventsmanager-pro.
2694
+ #: php:504 ../addons/gateway/carts/mycred-wpecommerce.php:354 ..
2695
+ #: addons/gateway/carts/mycred-woocommerce.php:120 ..
2696
+ #: addons/gateway/carts/mycred-marketpress.php:389 ../addons/ranks/myCRED-addon-
2697
+ #: ranks.php:1046 ../addons/ranks/myCRED-addon-ranks.php:1201 ../addons/email-
2698
+ #: notices/myCRED-addon-email-notices.php:814 ../addons/email-notices/myCRED-
2699
+ #: addon-email-notices.php:1031 ../addons/coupons/myCRED-addon-coupons.php:179 ..
2700
+ #: addons/coupons/myCRED-addon-coupons.php:388 ../addons/sell-content/myCRED-
2701
+ #: addon-sell-content.php:411
2702
+ msgid "Point Type"
2703
  msgstr ""
2704
 
2705
+ #: ../includes/mycred-widgets.php:212
2706
+ msgid "Layout"
2707
  msgstr ""
2708
 
2709
+ #: ../includes/mycred-widgets.php:220
2710
+ msgid "Include history"
2711
  msgstr ""
2712
 
2713
+ #: ../includes/mycred-widgets.php:222
2714
+ msgid "History Title"
 
2715
  msgstr ""
2716
 
2717
+ #: ../includes/mycred-widgets.php:224
2718
+ msgid "Number of entires"
2719
  msgstr ""
2720
 
2721
+ #: ../includes/mycred-widgets.php:226 ../includes/mycred-widgets.php:412
2722
+ msgid "Row layout"
 
 
2723
  msgstr ""
2724
 
2725
+ #: ../includes/mycred-widgets.php:234 ../includes/mycred-widgets.php:614
2726
+ msgid "Show message when not logged in"
2727
  msgstr ""
2728
 
2729
+ #: ../includes/mycred-widgets.php:236 ../includes/mycred-widgets.php:615
2730
+ msgid "Message"
 
 
2731
  msgstr ""
2732
 
2733
+ #: ../includes/mycred-widgets.php:306
2734
+ #, php-format
2735
+ msgid "(%s) Leaderboard"
2736
  msgstr ""
2737
 
2738
+ #: ../includes/mycred-widgets.php:309
2739
  #, php-format
2740
+ msgid "Show a list of users sorted by their %s balance"
2741
  msgstr ""
2742
 
2743
+ #: ../includes/mycred-widgets.php:399
2744
+ msgid "Based On"
 
2745
  msgstr ""
2746
 
2747
+ #: ../includes/mycred-widgets.php:401
2748
+ msgid ""
2749
+ "Use \"balance\" to base the leaderboard on your users current balances or use "
2750
+ "a specific reference."
 
2751
  msgstr ""
2752
 
2753
+ #: ../includes/mycred-widgets.php:401
2754
+ msgid "Reference Guide"
2755
  msgstr ""
2756
 
2757
+ #: ../includes/mycred-widgets.php:406
2758
+ msgid "Visible to non-members"
 
 
2759
  msgstr ""
2760
 
2761
+ #: ../includes/mycred-widgets.php:408
2762
+ msgid "Number of users"
2763
  msgstr ""
2764
 
2765
+ #: ../includes/mycred-widgets.php:417
2766
+ msgid "Offset"
2767
  msgstr ""
2768
 
2769
+ #: ../includes/mycred-widgets.php:419
2770
+ msgid "Optional offset of order. Use zero to return the first in the list."
2771
  msgstr ""
2772
 
2773
+ #: ../includes/mycred-widgets.php:422
2774
+ msgid "Order"
2775
  msgstr ""
2776
 
2777
+ #: ../includes/mycred-widgets.php:442
2778
+ msgid "Append current users position"
 
 
 
 
2779
  msgstr ""
2780
 
2781
+ #: ../includes/mycred-widgets.php:443
2782
+ msgid ""
2783
+ "If the current user is not in this leaderboard, you can select to append "
2784
+ "them at the end with their current position."
2785
  msgstr ""
2786
 
2787
+ #: ../includes/mycred-widgets.php:495
2788
+ #, php-format
2789
+ msgid "(%s) Wallet"
 
 
 
 
 
2790
  msgstr ""
2791
 
2792
+ #: ../includes/mycred-widgets.php:498
2793
+ msgid "Shows the current users balances for each point type."
2794
  msgstr ""
2795
 
2796
+ #: ../includes/mycred-widgets.php:606
2797
+ msgid "Row Layout"
 
 
2798
  msgstr ""
2799
 
2800
+ #: ../includes/mycred-functions.php:85
2801
+ msgid "Point"
2802
  msgstr ""
2803
 
2804
+ #: ../includes/mycred-functions.php:86
2805
+ msgid "Points"
 
2806
  msgstr ""
2807
 
2808
+ #: ../includes/mycred-functions.php:447
2809
+ msgid "Deleted"
 
2810
  msgstr ""
2811
 
2812
+ #: ../includes/mycred-functions.php:594
2813
+ msgid "Deleted Item"
 
2814
  msgstr ""
2815
 
2816
+ #: ../includes/mycred-functions.php:658 ../addons/gateway/carts/mycred-
2817
+ #: wpecommerce.php:341 ../addons/email-notices/myCRED-addon-email-notices.php:200
2818
+ msgid "General"
2819
  msgstr ""
2820
 
2821
+ #: ../includes/mycred-functions.php:665
2822
+ msgid "User Related"
 
 
2823
  msgstr ""
2824
 
2825
+ #: ../includes/mycred-functions.php:672
2826
+ msgid "Post Related"
2827
  msgstr ""
2828
 
2829
+ #: ../includes/mycred-functions.php:679
2830
+ msgid "Comment Related"
2831
  msgstr ""
2832
 
2833
+ #: ../includes/mycred-functions.php:686
2834
+ msgid "Widget Related"
2835
  msgstr ""
2836
 
2837
+ #: ../includes/mycred-functions.php:693
2838
+ msgid "Amount Related"
 
2839
  msgstr ""
2840
 
2841
+ #: ../includes/mycred-functions.php:700
2842
+ msgid "Video Related"
 
2843
  msgstr ""
2844
 
2845
+ #: ../includes/mycred-functions.php:711
2846
+ msgid "and"
 
 
2847
  msgstr ""
2848
 
2849
+ #: ../includes/mycred-functions.php:713
2850
+ msgid "Available Template Tags:"
 
2851
  msgstr ""
2852
 
2853
+ #: ../includes/mycred-functions.php:1874
2854
+ msgid "Entire Log"
2855
  msgstr ""
2856
 
2857
+ #: ../includes/mycred-functions.php:1879 ../includes/mycred-functions.php:1880
2858
+ msgid "Displayed Rows"
 
2859
  msgstr ""
2860
 
2861
+ #: ../includes/mycred-functions.php:1887
2862
+ msgid "Search Results"
 
2863
  msgstr ""
2864
 
2865
+ #: ../includes/mycred-functions.php:1888
2866
+ msgid "My Entire Log"
 
2867
  msgstr ""
2868
 
2869
+ #: ../includes/mycred-functions.php:2518
2870
+ msgid "Website Registration"
 
2871
  msgstr ""
2872
 
2873
+ #: ../includes/mycred-functions.php:2519
2874
+ msgid "Website Visit"
2875
  msgstr ""
2876
 
2877
+ #: ../includes/mycred-functions.php:2520
2878
+ msgid "Viewing Content (Member)"
2879
  msgstr ""
2880
 
2881
+ #: ../includes/mycred-functions.php:2521
2882
+ msgid "Viewing Content (Author)"
2883
  msgstr ""
2884
 
2885
+ #: ../includes/mycred-functions.php:2522
2886
+ msgid "Logging in"
 
 
2887
  msgstr ""
2888
 
2889
+ #: ../includes/mycred-functions.php:2523
2890
+ msgid "Publishing Content"
2891
  msgstr ""
2892
 
2893
+ #: ../includes/mycred-functions.php:2525
2894
+ msgid "Unapproved Comment"
 
2895
  msgstr ""
2896
 
2897
+ #: ../includes/mycred-functions.php:2526
2898
+ msgid "SPAM Comment"
 
2899
  msgstr ""
2900
 
2901
+ #: ../includes/mycred-functions.php:2527
2902
+ msgid "Deleted Comment"
 
2903
  msgstr ""
2904
 
2905
+ #: ../includes/mycred-functions.php:2528
2906
+ msgid "Link Click"
 
 
 
2907
  msgstr ""
2908
 
2909
+ #: ../includes/mycred-functions.php:2529
2910
+ msgid "Watching Video"
 
 
2911
  msgstr ""
2912
 
2913
+ #: ../includes/mycred-functions.php:2530
2914
+ msgid "Visitor Referral"
 
2915
  msgstr ""
2916
 
2917
+ #: ../includes/mycred-functions.php:2531
2918
+ msgid "Signup Referral"
 
2919
  msgstr ""
2920
 
2921
+ #: ../includes/mycred-functions.php:2535
2922
+ msgid "New Profile Update"
 
2923
  msgstr ""
2924
 
2925
+ #: ../includes/mycred-functions.php:2536
2926
+ msgid "Profile Update Removal"
 
 
 
2927
  msgstr ""
2928
 
2929
+ #: ../includes/mycred-functions.php:2537
2930
+ msgid "Avatar Upload"
 
2931
  msgstr ""
2932
 
2933
+ #: ../includes/mycred-functions.php:2538
2934
+ msgid "New Friendship"
 
2935
  msgstr ""
2936
 
2937
+ #: ../includes/mycred-functions.php:2539
2938
+ msgid "Ended Friendship"
 
2939
  msgstr ""
2940
 
2941
+ #: ../includes/mycred-functions.php:2540
2942
+ msgid "New Profile Comment"
2943
  msgstr ""
2944
 
2945
+ #: ../includes/mycred-functions.php:2541
2946
+ msgid "Profile Comment Deletion"
2947
  msgstr ""
2948
 
2949
+ #: ../includes/mycred-functions.php:2542
2950
+ msgid "New Message"
 
2951
  msgstr ""
2952
 
2953
+ #: ../includes/mycred-functions.php:2543
2954
+ msgid "Sending Gift"
 
 
 
2955
  msgstr ""
2956
 
2957
+ #: ../includes/mycred-functions.php:2544
2958
+ msgid "New Group"
2959
  msgstr ""
2960
 
2961
+ #: ../includes/mycred-functions.php:2545
2962
+ msgid "Deleted Group"
2963
  msgstr ""
2964
 
2965
+ #: ../includes/mycred-functions.php:2546
2966
+ msgid "New Group Forum Topic"
 
2967
  msgstr ""
2968
 
2969
+ #: ../includes/mycred-functions.php:2547
2970
+ msgid "Edit Group Forum Topic"
 
 
2971
  msgstr ""
2972
 
2973
+ #: ../includes/mycred-functions.php:2548
2974
+ msgid "New Group Forum Post"
2975
  msgstr ""
2976
 
2977
+ #: ../includes/mycred-functions.php:2549
2978
+ msgid "Edit Group Forum Post"
2979
  msgstr ""
2980
 
2981
+ #: ../includes/mycred-functions.php:2550
2982
+ msgid "Joining Group"
2983
  msgstr ""
2984
 
2985
+ #: ../includes/mycred-functions.php:2551
2986
+ msgid "Leaving Group"
 
 
2987
  msgstr ""
2988
 
2989
+ #: ../includes/mycred-functions.php:2552
2990
+ msgid "New Group Avatar"
 
2991
  msgstr ""
2992
 
2993
+ #: ../includes/mycred-functions.php:2553
2994
+ msgid "New Group Comment"
2995
  msgstr ""
2996
 
2997
+ #: ../includes/mycred-functions.php:2563
2998
+ msgid "New Link"
2999
  msgstr ""
3000
 
3001
+ #: ../includes/mycred-functions.php:2564
3002
+ msgid "Link Voting"
 
 
3003
  msgstr ""
3004
 
3005
+ #: ../includes/mycred-functions.php:2565
3006
+ msgid "Link Update"
3007
  msgstr ""
3008
 
3009
+ #: ../includes/mycred-functions.php:2569
3010
+ msgid "New Forum (bbPress)"
 
 
3011
  msgstr ""
3012
 
3013
+ #: ../includes/mycred-functions.php:2570
3014
+ msgid "New Forum Topic (bbPress)"
 
 
 
 
3015
  msgstr ""
3016
 
3017
+ #: ../includes/mycred-functions.php:2571
3018
+ msgid "Favorited Topic (bbPress)"
3019
  msgstr ""
3020
 
3021
+ #: ../includes/mycred-functions.php:2572
3022
+ msgid "New Topic Reply (bbPress)"
3023
  msgstr ""
3024
 
3025
+ #: ../includes/mycred-functions.php:2576
3026
+ msgid "Form Submission (Contact Form 7)"
 
3027
  msgstr ""
3028
 
3029
+ #: ../includes/mycred-functions.php:2579
3030
+ msgid "Form Submission (Gravity Form)"
 
3031
  msgstr ""
3032
 
3033
+ #: ../includes/mycred-functions.php:2582
3034
+ msgid "New Forum Topic (SimplePress)"
3035
  msgstr ""
3036
 
3037
+ #: ../includes/mycred-functions.php:2583
3038
+ msgid "New Forum Post (SimplePress)"
3039
  msgstr ""
3040
 
3041
+ #: ../includes/mycred-functions.php:2592
3042
+ msgid "Affiliate Signup (AffiliateWP)"
3043
  msgstr ""
3044
 
3045
+ #: ../includes/mycred-functions.php:2593
3046
+ msgid "Referred Visit (AffiliateWP)"
3047
  msgstr ""
3048
 
3049
+ #: ../includes/mycred-functions.php:2594
3050
+ msgid "Affiliate Referral (AffiliateWP)"
3051
  msgstr ""
3052
 
3053
+ #: ../includes/mycred-functions.php:2595
3054
+ msgid "Referral Refund (AffiliateWP)"
3055
  msgstr ""
3056
 
3057
+ #: ../includes/mycred-functions.php:2604
3058
+ msgid "Poll Voting"
3059
  msgstr ""
3060
 
3061
+ #: ../includes/mycred-functions.php:2607
3062
+ msgid "Sending an Invite"
 
3063
  msgstr ""
3064
 
3065
+ #: ../includes/mycred-functions.php:2608
3066
+ msgid "Accepting an Invite"
 
 
 
 
3067
  msgstr ""
3068
 
3069
+ #: ../includes/mycred-functions.php:2614
3070
+ msgid "Banking Payout"
3071
  msgstr ""
3072
 
3073
+ #: ../includes/mycred-functions.php:2617
3074
+ msgid "buyCRED Purchase (PayPal Standard)"
3075
  msgstr ""
3076
 
3077
+ #: ../includes/mycred-functions.php:2618
3078
+ msgid "buyCRED Purchase (Skrill)"
 
3079
  msgstr ""
3080
 
3081
+ #: ../includes/mycred-functions.php:2619
3082
+ msgid "buyCRED Purchase (Zombaio)"
 
3083
  msgstr ""
3084
 
3085
+ #: ../includes/mycred-functions.php:2620
3086
+ msgid "buyCRED Purchase (NETBilling)"
3087
  msgstr ""
3088
 
3089
+ #: ../includes/mycred-functions.php:2621
3090
+ msgid "buyCRED Purchase (BitPay)"
3091
  msgstr ""
3092
 
3093
+ #: ../includes/mycred-functions.php:2626
3094
+ msgid "Coupon Purchase"
3095
  msgstr ""
3096
 
3097
+ #: ../includes/mycred-functions.php:2630
3098
+ msgid "Store Purchase (WooCommerce)"
 
3099
  msgstr ""
3100
 
3101
+ #: ../includes/mycred-functions.php:2631
3102
+ msgid "Store Reward (WooCommerce)"
3103
  msgstr ""
3104
 
3105
+ #: ../includes/mycred-functions.php:2632
3106
+ msgid "Product Review (WooCommerce)"
3107
  msgstr ""
3108
 
3109
+ #: ../includes/mycred-functions.php:2635
3110
+ msgid "Store Purchase (MarketPress)"
3111
  msgstr ""
3112
 
3113
+ #: ../includes/mycred-functions.php:2636
3114
+ msgid "Store Reward (MarketPress)"
3115
  msgstr ""
3116
 
3117
+ #: ../includes/mycred-functions.php:2639
3118
+ msgid "Store Purchase (WP E-Commerce)"
3119
  msgstr ""
3120
 
3121
+ #: ../includes/mycred-functions.php:2645
3122
+ msgid "Event Payment (Event Espresso)"
 
3123
  msgstr ""
3124
 
3125
+ #: ../includes/mycred-functions.php:2646
3126
+ msgid "Event Sale (Event Espresso)"
3127
  msgstr ""
3128
 
3129
+ #: ../includes/mycred-functions.php:2650
3130
+ msgid "Event Payment (Events Manager)"
3131
  msgstr ""
3132
 
3133
+ #: ../includes/mycred-functions.php:2651
3134
+ msgid "Event Sale (Events Manager)"
3135
  msgstr ""
3136
 
3137
+ #: ../includes/mycred-functions.php:2655
3138
+ msgid "Content Purchase / Sale"
3139
  msgstr ""
3140
 
3141
+ #: ../includes/mycred-functions.php:2658 ../addons/transfer/myCRED-addon-transfer.
3142
+ #: php:51
3143
+ msgid "Transfer"
3144
  msgstr ""
3145
 
3146
+ #: ../includes/mycred-functions.php:2662
3147
+ msgid "Manual Adjustment by Admin"
3148
  msgstr ""
3149
 
3150
+ #: ../includes/mycred-functions.php:2777
3151
+ #, php-format
3152
+ msgid "You must exchange at least %s!"
3153
  msgstr ""
3154
 
3155
+ #: ../includes/mycred-functions.php:2786 ../addons/transfer/myCRED-addon-transfer.
3156
+ #: php:161
3157
+ msgid "Insufficient Funds. Please try a lower amount."
3158
  msgstr ""
3159
 
3160
+ #: ../includes/mycred-functions.php:2799
3161
+ #, php-format
3162
+ msgid "Exchange from %s"
3163
  msgstr ""
3164
 
3165
+ #: ../includes/mycred-functions.php:2811
3166
+ #, php-format
3167
+ msgid "Exchange to %s"
3168
  msgstr ""
3169
 
3170
+ #: ../includes/mycred-functions.php:2819
3171
+ #, php-format
3172
+ msgid "You have successfully exchanged %s into %s."
 
3173
  msgstr ""
3174
 
3175
+ #: ../includes/mycred-functions.php:2851
3176
+ msgid "per day"
3177
  msgstr ""
3178
 
3179
+ #: ../includes/mycred-functions.php:2853
3180
+ msgid "per week"
3181
  msgstr ""
3182
 
3183
+ #: ../includes/mycred-functions.php:2855
3184
+ msgid "per month"
3185
  msgstr ""
3186
 
3187
+ #: ../includes/mycred-functions.php:2857
3188
+ msgid "in total"
3189
  msgstr ""
3190
 
3191
+ #: ../includes/mycred-functions.php:2859 ../includes/mycred-functions.php:2863
3192
+ #, php-format
3193
+ msgid "Maximum once"
3194
+ msgid_plural "Maximum %d times"
3195
+ msgstr[0] ""
3196
+ msgstr[1] ""
3197
+
3198
+ #: ../includes/importers/mycred-cubepoints.php:276
3199
+ msgid "No balances were imported."
3200
+ msgstr ""
3201
+
3202
+ #: ../includes/importers/mycred-cubepoints.php:276
3203
+ msgid "No log entries were imported!"
3204
  msgstr ""
3205
 
3206
+ #: ../includes/importers/mycred-cubepoints.php:282 ../includes/importers/mycred-
3207
+ #: log-entries.php:138
3208
+ #, php-format
3209
  msgid ""
3210
+ "Import complete - A total of <strong>%d</strong> entries were successfully "
3211
+ "imported. <strong>%d</strong> was skipped."
3212
  msgstr ""
3213
 
3214
+ #: ../includes/importers/mycred-cubepoints.php:293 ../includes/importers/mycred-
3215
+ #: balances.php:181 ../includes/importers/mycred-log-entries.php:148 ..
3216
+ #: addons/stats/abstracts/mycred-abstract-stat-widget.php:102
3217
+ msgid "View Log"
3218
  msgstr ""
3219
 
3220
+ #: ../includes/importers/mycred-cubepoints.php:293 ../includes/importers/mycred-
3221
+ #: balances.php:181 ../includes/importers/mycred-log-entries.php:148
3222
+ msgid "Import More"
3223
  msgstr ""
3224
 
3225
+ #: ../includes/importers/mycred-cubepoints.php:306
3226
+ msgid "No CubePoints log."
 
 
3227
  msgstr ""
3228
 
3229
+ #: ../includes/importers/mycred-cubepoints.php:317
3230
+ msgid "Import CubePoints Log"
 
3231
  msgstr ""
3232
 
3233
+ #: ../includes/importers/mycred-cubepoints.php:334
3234
+ msgid "Select what to import"
 
 
3235
  msgstr ""
3236
 
3237
+ #: ../includes/importers/mycred-cubepoints.php:335
3238
+ msgid "Log Entries Only"
 
 
 
3239
  msgstr ""
3240
 
3241
+ #: ../includes/importers/mycred-cubepoints.php:336
3242
+ msgid "CubePoints Balances Only"
 
 
 
3243
  msgstr ""
3244
 
3245
+ #: ../includes/importers/mycred-cubepoints.php:337
3246
+ msgid "Log Entries and Balances"
 
3247
  msgstr ""
3248
 
3249
+ #: ../includes/importers/mycred-cubepoints.php:351
3250
+ msgid "Import"
3251
  msgstr ""
3252
 
3253
+ #: ../includes/importers/mycred-cubepoints.php:360
3254
+ msgid ""
3255
+ "Warning! Importing CubePoints balances will replace your users myCRED "
3256
+ "balance!"
3257
  msgstr ""
3258
 
3259
+ #: ../includes/importers/mycred-cubepoints.php:378
3260
+ msgid "Import Log"
3261
  msgstr ""
3262
 
3263
+ #: ../includes/importers/mycred-balances.php:81 ../includes/importers/mycred-
3264
+ #: balances.php:159 ../includes/importers/mycred-balances.php:198 ..
3265
+ #: includes/importers/mycred-balances.php:213 ../includes/importers/mycred-log-
3266
+ #: entries.php:81 ../includes/importers/mycred-log-entries.php:126 ..
3267
+ #: includes/importers/mycred-log-entries.php:165 ../includes/importers/mycred-
3268
+ #: log-entries.php:180
3269
+ msgid "Sorry, there has been an error."
3270
  msgstr ""
3271
 
3272
+ #: ../includes/importers/mycred-balances.php:82 ../includes/importers/mycred-log-
3273
+ #: entries.php:82
3274
+ msgid "The file does not exist, please try again."
3275
  msgstr ""
3276
 
3277
+ #: ../includes/importers/mycred-balances.php:160 ../includes/importers/mycred-log-
3278
+ #: entries.php:127
3279
+ msgid "The CSV is invalid."
3280
  msgstr ""
3281
 
3282
+ #: ../includes/importers/mycred-balances.php:171
3283
+ #, php-format
3284
+ msgid ""
3285
+ "Import complete - A total of <strong>%d</strong> balances were successfully "
3286
+ "imported. <strong>%d</strong> was skipped."
3287
  msgstr ""
3288
 
3289
+ #: ../includes/importers/mycred-balances.php:227
3290
+ msgid "Import Balances"
3291
  msgstr ""
3292
 
3293
+ #: ../includes/importers/mycred-balances.php:244
3294
+ msgid "Import balances from a CSV file."
 
3295
  msgstr ""
3296
 
3297
+ #: ../includes/importers/mycred-balances.php:252 ../includes/importers/mycred-log-
3298
+ #: entries.php:219
3299
+ msgid ""
3300
+ "Before you can upload your import file, you will need to fix the following "
3301
+ "error:"
3302
  msgstr ""
3303
 
3304
+ #: ../includes/importers/mycred-balances.php:261 ../includes/importers/mycred-log-
3305
+ #: entries.php:228
3306
+ msgid "Choose a file from your computer:"
3307
  msgstr ""
3308
 
3309
+ #: ../includes/importers/mycred-balances.php:267 ../includes/importers/mycred-log-
3310
+ #: entries.php:234
3311
+ #, php-format
3312
+ msgid "Maximum size: %s"
3313
  msgstr ""
3314
 
3315
+ #: ../includes/importers/mycred-balances.php:272 ../includes/importers/mycred-log-
3316
+ #: entries.php:239
3317
+ msgid "OR enter path to file:"
3318
  msgstr ""
3319
 
3320
+ #: ../includes/importers/mycred-balances.php:279 ../includes/importers/mycred-log-
3321
+ #: entries.php:246
3322
+ msgid "Delimiter"
3323
  msgstr ""
3324
 
3325
+ #: ../includes/importers/mycred-balances.php:283
3326
+ msgid "Method"
 
3327
  msgstr ""
3328
 
3329
+ #: ../includes/importers/mycred-balances.php:285
3330
+ msgid "Replace current balances with the amount in this CSV file"
 
3331
  msgstr ""
3332
 
3333
+ #: ../includes/importers/mycred-balances.php:286
3334
+ msgid "Adjust current balances according to the amount in this CSV file"
3335
  msgstr ""
3336
 
3337
+ #: ../includes/importers/mycred-balances.php:292 ../includes/importers/mycred-log-
3338
+ #: entries.php:252
3339
+ msgid "Upload file and import"
3340
  msgstr ""
3341
 
3342
+ #: ../includes/importers/mycred-log-entries.php:194
3343
+ msgid "Import Log Entries"
3344
  msgstr ""
3345
 
3346
+ #: ../includes/importers/mycred-log-entries.php:211
3347
+ msgid "Import log entries from a CSV file."
3348
  msgstr ""
3349
 
3350
+ #: ../addons/banking/myCRED-addon-banking.php:44 ../addons/banking/myCRED-addon-
3351
+ #: banking.php:45 ../addons/banking/myCRED-addon-banking.php:46
3352
+ msgid "Banking"
3353
  msgstr ""
3354
 
3355
+ #: ../addons/banking/myCRED-addon-banking.php:158
3356
+ msgid "Central Banking"
3357
  msgstr ""
3358
 
3359
+ #: ../addons/banking/myCRED-addon-banking.php:159
3360
+ #, php-format
3361
+ msgid ""
3362
+ "Instead of creating %_plural% out of thin-air, all payouts are made from a "
3363
+ "nominated \"Central Bank\" account. Any %_plural% a user spends or loses are "
3364
+ "deposited back into this account."
3365
  msgstr ""
3366
 
3367
+ #: ../addons/banking/myCRED-addon-banking.php:165 ..
3368
+ #: addons/banking/services/mycred-bank-service-interest.php:512
3369
+ msgid "Compound Interest"
3370
  msgstr ""
3371
 
3372
+ #: ../addons/banking/myCRED-addon-banking.php:166
3373
+ #, php-format
3374
+ msgid "Apply a positive or negative interest rate on your users %_plural% balances."
3375
  msgstr ""
3376
 
3377
+ #: ../addons/banking/myCRED-addon-banking.php:172
3378
+ msgid "Recurring Payouts"
 
3379
  msgstr ""
3380
 
3381
+ #: ../addons/banking/myCRED-addon-banking.php:173
3382
+ #, php-format
3383
+ msgid "Setup mass %_singular% payouts for your users."
3384
  msgstr ""
3385
 
3386
+ #: ../addons/banking/myCRED-addon-banking.php:225
3387
+ #, php-format
3388
+ msgid "%s Banking"
3389
  msgstr ""
3390
 
3391
+ #: ../addons/banking/myCRED-addon-banking.php:228
3392
+ #, php-format
3393
+ msgid "Your banking setup for %plural%."
3394
  msgstr ""
3395
 
3396
+ #: ../addons/banking/myCRED-addon-banking.php:231
3397
+ msgid "WP-Cron deactivation detected!"
 
 
3398
  msgstr ""
3399
 
3400
+ #: ../addons/banking/myCRED-addon-banking.php:232
3401
+ msgid "Warning! This add-on requires WP - Cron to work."
3402
  msgstr ""
3403
 
3404
+ #: ../addons/banking/abstracts/mycred-abstract-service.php:79
3405
+ msgid "This Service has no settings"
3406
  msgstr ""
3407
 
3408
+ #: ../addons/banking/abstracts/mycred-abstract-service.php:233
3409
+ msgid "Hourly"
3410
  msgstr ""
3411
 
3412
+ #: ../addons/banking/abstracts/mycred-abstract-service.php:237
3413
+ msgid "Daily"
3414
  msgstr ""
3415
 
3416
+ #: ../addons/banking/abstracts/mycred-abstract-service.php:241
3417
+ msgid "Weekly"
3418
  msgstr ""
3419
 
3420
+ #: ../addons/banking/abstracts/mycred-abstract-service.php:245
3421
+ msgid "Monthly"
3422
  msgstr ""
3423
 
3424
+ #: ../addons/banking/abstracts/mycred-abstract-service.php:249
3425
+ msgid "Quarterly"
 
 
 
3426
  msgstr ""
3427
 
3428
+ #: ../addons/banking/abstracts/mycred-abstract-service.php:253
3429
+ msgid "Semiannually"
3430
  msgstr ""
3431
 
3432
+ #: ../addons/banking/abstracts/mycred-abstract-service.php:257
3433
+ msgid "Annually"
 
 
3434
  msgstr ""
3435
 
3436
+ #: ../addons/banking/services/mycred-bank-service-payouts.php:21
3437
+ msgid "Daily %_plural%"
3438
  msgstr ""
3439
 
3440
+ #: ../addons/banking/services/mycred-bank-service-payouts.php:250 ..
3441
+ #: addons/banking/services/mycred-bank-service-interest.php:392 ..
3442
+ #: addons/banking/services/mycred-bank-service-interest.php:409
3443
+ msgid "Run Count"
3444
  msgstr ""
3445
 
3446
+ #: ../addons/banking/services/mycred-bank-service-payouts.php:255
3447
+ msgid "Last Run"
3448
  msgstr ""
3449
 
3450
+ #: ../addons/banking/services/mycred-bank-service-payouts.php:259
3451
+ msgid "Total Payouts"
 
3452
  msgstr ""
3453
 
3454
+ #: ../addons/banking/services/mycred-bank-service-payouts.php:263
3455
+ msgid "Pay Users"
 
3456
  msgstr ""
3457
 
3458
+ #: ../addons/banking/services/mycred-bank-service-payouts.php:268 ..
3459
+ #: addons/banking/services/mycred-bank-service-interest.php:427
3460
+ msgid "Can not be zero."
3461
  msgstr ""
3462
 
3463
+ #: ../addons/banking/services/mycred-bank-service-payouts.php:276
3464
+ msgid "Cycles"
3465
  msgstr ""
3466
 
3467
+ #: ../addons/banking/services/mycred-bank-service-payouts.php:278
3468
+ msgid "Set to -1 for unlimited"
 
3469
  msgstr ""
3470
 
3471
+ #: ../addons/banking/services/mycred-bank-service-payouts.php:281
3472
+ msgid "Important"
3473
  msgstr ""
3474
 
3475
+ #: ../addons/banking/services/mycred-bank-service-payouts.php:281
3476
+ msgid ""
3477
+ "You can always stop payouts by deactivating this service. Just remember that "
3478
+ "if you deactivate while there are cycles left, this service will continue on "
3479
+ "when it gets re-activated. Set cycles to zero to reset."
3480
  msgstr ""
3481
 
3482
+ #: ../addons/banking/services/mycred-bank-service-payouts.php:290 ..
3483
+ #: addons/banking/services/mycred-bank-service-interest.php:442 ..
3484
+ #: addons/coupons/myCRED-addon-coupons.php:480
3485
+ msgid "Minimum Balance"
3486
  msgstr ""
3487
 
3488
+ #: ../addons/banking/services/mycred-bank-service-payouts.php:294 ..
3489
+ #: addons/banking/services/mycred-bank-service-interest.php:446
3490
+ msgid "Optional minimum balance requirement."
3491
  msgstr ""
3492
 
3493
+ #: ../addons/banking/services/mycred-bank-service-payouts.php:297 ..
3494
+ #: addons/banking/services/mycred-bank-service-interest.php:449
3495
+ msgid "Exclude"
3496
  msgstr ""
3497
 
3498
+ #: ../addons/banking/services/mycred-bank-service-payouts.php:300 ..
3499
+ #: addons/banking/services/mycred-bank-service-interest.php:452
3500
+ msgid "Comma separated list of user IDs"
3501
  msgstr ""
3502
 
3503
+ #: ../addons/banking/services/mycred-bank-service-payouts.php:304 ..
3504
+ #: addons/banking/services/mycred-bank-service-interest.php:456
3505
+ msgid "Roles"
3506
  msgstr ""
3507
 
3508
+ #: ../addons/banking/services/mycred-bank-service-central.php:105
3509
+ msgid "Bank User"
3510
  msgstr ""
3511
 
3512
+ #: ../addons/banking/services/mycred-bank-service-central.php:109
3513
+ msgid "The user ID of the central bank account. This user can not be excluded!"
 
 
3514
  msgstr ""
3515
 
3516
+ #: ../addons/banking/services/mycred-bank-service-central.php:112
3517
+ msgid "Ignore Manual Adjustments"
 
 
3518
  msgstr ""
3519
 
3520
+ #: ../addons/banking/services/mycred-bank-service-interest.php:24
3521
  #, php-format
3522
+ msgid "%plural% interest rate payment"
3523
  msgstr ""
3524
 
3525
+ #: ../addons/banking/services/mycred-bank-service-interest.php:379
3526
+ msgid "Compounding Interest"
 
3527
  msgstr ""
3528
 
3529
+ #: ../addons/banking/services/mycred-bank-service-interest.php:379
3530
  #, php-format
3531
+ msgid "%d Users are left to process."
3532
  msgstr ""
3533
 
3534
+ #: ../addons/banking/services/mycred-bank-service-interest.php:388
3535
+ msgid "Payout History"
3536
  msgstr ""
3537
 
3538
+ #: ../addons/banking/services/mycred-bank-service-interest.php:397
3539
+ msgid "Last Payout"
3540
  msgstr ""
3541
 
3542
+ #: ../addons/banking/services/mycred-bank-service-interest.php:397 ..
3543
+ #: addons/banking/services/mycred-bank-service-interest.php:414
3544
+ msgid "Activated"
3545
  msgstr ""
3546
 
3547
+ #: ../addons/banking/services/mycred-bank-service-interest.php:401
3548
+ msgid "Total Payed Interest"
 
 
 
 
 
 
3549
  msgstr ""
3550
 
3551
+ #: ../addons/banking/services/mycred-bank-service-interest.php:405
3552
+ msgid "Compound History"
 
3553
  msgstr ""
3554
 
3555
+ #: ../addons/banking/services/mycred-bank-service-interest.php:414
3556
+ msgid "Last Interest Compound"
 
3557
  msgstr ""
3558
 
3559
+ #: ../addons/banking/services/mycred-bank-service-interest.php:418
3560
+ msgid "Total Compounded Interest"
3561
  msgstr ""
3562
 
3563
+ #: ../addons/banking/services/mycred-bank-service-interest.php:422 ..
3564
+ #: addons/banking/services/mycred-bank-service-interest.php:549
3565
+ msgid "Interest Rate"
 
 
3566
  msgstr ""
3567
 
3568
+ #: ../addons/banking/services/mycred-bank-service-interest.php:425
3569
+ msgid "Default Rate"
 
 
 
3570
  msgstr ""
3571
 
3572
+ #: ../addons/banking/services/mycred-bank-service-interest.php:430 ..
3573
+ #: addons/gateway/carts/mycred-wpecommerce.php:367
3574
+ msgid "Payout"
3575
  msgstr ""
3576
 
3577
+ #: ../addons/banking/services/mycred-bank-service-interest.php:522
3578
+ msgid "This user is excluded from receiving interest on this balance."
 
3579
  msgstr ""
3580
 
3581
+ #: ../addons/banking/services/mycred-bank-service-interest.php:525
3582
+ msgid "Remove from Excluded List"
3583
  msgstr ""
3584
 
3585
+ #: ../addons/banking/services/mycred-bank-service-interest.php:537
3586
+ msgid "This user role is excluded from receiving interest on this balance."
 
3587
  msgstr ""
3588
 
3589
+ #: ../addons/banking/services/mycred-bank-service-interest.php:552 ../addons/sell-
3590
+ #: content/myCRED-addon-sell-content.php:114 ../addons/buy-creds/myCRED-addon-buy-
3591
+ #: creds.php:837
3592
+ msgid "Leave empty to use the default value."
3593
  msgstr ""
3594
 
3595
+ #: ../addons/banking/services/mycred-bank-service-interest.php:558
3596
+ msgid "Save Interest Rate"
3597
  msgstr ""
3598
 
3599
+ #: ../addons/banking/services/mycred-bank-service-interest.php:559
3600
+ msgid "Exclude from receiving interest"
 
3601
  msgstr ""
3602
 
3603
+ #: ../addons/banking/services/mycred-bank-service-interest.php:673
3604
+ msgid "Compound interest rate saved."
3605
  msgstr ""
3606
 
3607
+ #: ../addons/banking/services/mycred-bank-service-interest.php:675
3608
+ msgid "User excluded from receiving interest."
3609
  msgstr ""
3610
 
3611
+ #: ../addons/banking/services/mycred-bank-service-interest.php:677
3612
+ msgid "User included in receiving interest."
3613
  msgstr ""
3614
 
3615
+ #. Description of the plugin
3616
+ msgid ""
3617
+ "Let your users pay using their <strong>my</strong>CRED points balance. "
3618
+ "Supported Carts: WooCommerce, MarketPress and WP E-Commerce. Supported Event "
3619
+ "Bookings: Event Espresso, Events Manager."
3620
  msgstr ""
3621
 
3622
+ #: ../addons/gateway/event-booking/mycred-eventespresso3.php:26 ..
3623
+ #: addons/gateway/event-booking/mycred-eventsmanager.php:540 ..
3624
+ #: addons/gateway/event-booking/mycred-eventsmanager-pro.php:516 ../addons/sell-
3625
+ #: content/myCRED-addon-sell-content.php:423 ../addons/buy-creds/myCRED-addon-buy-
3626
+ #: creds.php:579
3627
+ msgid "Payments"
3628
  msgstr ""
3629
 
3630
+ #: ../addons/gateway/event-booking/mycred-eventespresso3.php:27 ..
3631
+ #: addons/gateway/event-booking/mycred-eventsmanager.php:35 ..
3632
+ #: addons/gateway/event-booking/mycred-eventsmanager-pro.php:39 ../addons/buy-
3633
+ #: creds/myCRED-addon-buy-creds.php:1686
3634
+ msgid "Pay Now"
3635
  msgstr ""
3636
 
3637
+ #: ../addons/gateway/event-booking/mycred-eventespresso3.php:32
3638
+ msgid "Payment for Event Registration"
3639
  msgstr ""
3640
 
3641
+ #: ../addons/gateway/event-booking/mycred-eventespresso3.php:281 ..
3642
+ #: addons/gateway/event-booking/mycred-eventespresso3.php:305 ..
3643
+ #: addons/gateway/event-booking/mycred-eventsmanager.php:416 ..
3644
+ #: addons/gateway/carts/mycred-wpecommerce.php:123 ..
3645
+ #: addons/gateway/carts/mycred-marketpress.php:151
3646
+ msgid "Total Cost"
3647
  msgstr ""
3648
 
3649
+ #: ../addons/gateway/event-booking/mycred-eventespresso3.php:285 ..
3650
+ #: addons/gateway/event-booking/mycred-eventespresso3.php:309 ..
3651
+ #: addons/gateway/carts/mycred-marketpress.php:155
3652
+ msgid "Balance After Purchase"
3653
  msgstr ""
3654
 
3655
+ #: ../addons/gateway/event-booking/mycred-eventespresso3.php:343
3656
+ #, php-format
3657
+ msgid "Activate %s"
3658
  msgstr ""
3659
 
3660
+ #: ../addons/gateway/event-booking/mycred-eventespresso3.php:351
3661
+ #, php-format
3662
+ msgid "Deactivate %s"
 
3663
  msgstr ""
3664
 
3665
+ #: ../addons/gateway/event-booking/mycred-eventespresso3.php:367 ../addons/buy-
3666
+ #: creds/myCRED-addon-buy-creds.php:1085
3667
+ msgid "Gateway Settings"
3668
  msgstr ""
3669
 
3670
+ #: ../addons/gateway/event-booking/mycred-eventespresso3.php:399 ..
3671
+ #: addons/gateway/event-booking/mycred-eventsmanager.php:524 ..
3672
+ #: addons/gateway/event-booking/mycred-eventsmanager-pro.php:490
3673
+ #, php-format
3674
+ msgid "How many %s is 1 %s worth?"
3675
  msgstr ""
3676
 
3677
+ #: ../addons/gateway/event-booking/mycred-eventespresso3.php:407
3678
+ msgid "Gateways Settings Successfully Updated"
3679
  msgstr ""
3680
 
3681
+ #: ../addons/gateway/event-booking/mycred-eventespresso3.php:415 ..
3682
+ #: addons/gateway/event-booking/mycred-eventsmanager.php:602 ..
3683
+ #: addons/gateway/event-booking/mycred-eventsmanager-pro.php:576
3684
+ msgid "Labels"
3685
  msgstr ""
3686
 
3687
+ #: ../addons/gateway/event-booking/mycred-eventespresso3.php:418
3688
+ msgid "Gateway Title"
3689
  msgstr ""
3690
 
3691
+ #: ../addons/gateway/event-booking/mycred-eventespresso3.php:420
3692
+ msgid "Title to show on Payment page"
3693
  msgstr ""
3694
 
3695
+ #: ../addons/gateway/event-booking/mycred-eventespresso3.php:423
3696
+ msgid "Payment Type"
3697
  msgstr ""
3698
 
3699
+ #: ../addons/gateway/event-booking/mycred-eventespresso3.php:425
3700
+ msgid "Title to show on receipts and logs"
 
3701
  msgstr ""
3702
 
3703
+ #: ../addons/gateway/event-booking/mycred-eventespresso3.php:428 ..
3704
+ #: addons/gateway/event-booking/mycred-eventsmanager.php:619 ..
3705
+ #: addons/gateway/event-booking/mycred-eventsmanager-pro.php:593 ..
3706
+ #: addons/transfer/includes/mycred-transfer-widgets.php:132 ../addons/sell-
3707
+ #: content/myCRED-addon-sell-content.php:459 ../addons/sell-content/myCRED-addon-
3708
+ #: sell-content.php:686
3709
+ msgid "Button Label"
3710
  msgstr ""
3711
 
3712
+ #: ../addons/gateway/event-booking/mycred-eventespresso3.php:430
3713
+ msgid "Pay Button"
3714
  msgstr ""
3715
 
3716
+ #: ../addons/gateway/event-booking/mycred-eventespresso3.php:447 ..
3717
+ #: addons/gateway/event-booking/mycred-eventsmanager.php:336 ..
3718
+ #: addons/gateway/event-booking/mycred-eventsmanager.php:339 ..
3719
+ #: addons/gateway/event-booking/mycred-eventsmanager-pro.php:139 ..
3720
+ #: addons/gateway/event-booking/mycred-eventsmanager-pro.php:142 ../addons/sell-
3721
+ #: content/myCRED-addon-sell-content.php:450 ../addons/sell-content/myCRED-addon-
3722
+ #: sell-content.php:682
3723
+ msgid "Price"
3724
  msgstr ""
3725
 
3726
+ #: ../addons/gateway/event-booking/mycred-eventespresso3.php:455
3727
+ msgid "Important!"
3728
  msgstr ""
3729
 
3730
+ #: ../addons/gateway/event-booking/mycred-eventespresso3.php:457
3731
+ msgid ""
3732
+ "You can disable purchases using this gateway by adding a custom Event Meta: "
3733
+ "<code>mycred_no_sale</code>"
3734
  msgstr ""
3735
 
3736
+ #: ../addons/gateway/event-booking/mycred-eventespresso3.php:458
3737
+ msgid "Users must be logged in to use this gateway!"
3738
  msgstr ""
3739
 
3740
+ #: ../addons/gateway/event-booking/mycred-eventespresso3.php:462 ..
3741
+ #: addons/gateway/event-booking/mycred-eventsmanager.php:569 ..
3742
+ #: addons/gateway/event-booking/mycred-eventsmanager-pro.php:531 ..
3743
+ #: addons/gateway/carts/mycred-wpecommerce.php:364 ..
3744
+ #: addons/gateway/carts/mycred-woocommerce.php:169 ..
3745
+ #: addons/gateway/carts/mycred-marketpress.php:418
3746
+ msgid "Profit Sharing"
3747
  msgstr ""
3748
 
3749
+ #: ../addons/gateway/event-booking/mycred-eventespresso3.php:464 ..
3750
+ #: addons/gateway/event-booking/mycred-eventsmanager.php:572 ..
3751
+ #: addons/gateway/event-booking/mycred-eventsmanager-pro.php:534 ..
3752
+ #: addons/gateway/carts/mycred-wpecommerce.php:368 ..
3753
+ #: addons/gateway/carts/mycred-woocommerce.php:171 ..
3754
+ #: addons/gateway/carts/mycred-marketpress.php:423
3755
+ msgid "Option to share sales with the product owner. Use zero to disable."
3756
  msgstr ""
3757
 
3758
+ #: ../addons/gateway/event-booking/mycred-eventespresso3.php:477 ../addons/sell-
3759
+ #: content/myCRED-addon-sell-content.php:473
3760
+ msgid "Templates"
3761
  msgstr ""
3762
 
3763
+ #: ../addons/gateway/event-booking/mycred-eventespresso3.php:480
3764
+ msgid "Solvent users"
3765
  msgstr ""
3766
 
3767
+ #: ../addons/gateway/event-booking/mycred-eventespresso3.php:482
3768
  msgid ""
3769
+ "Message to show users on the payment page before they are charged. Leave "
3770
+ "empty to hide."
3771
  msgstr ""
3772
 
3773
+ #: ../addons/gateway/event-booking/mycred-eventespresso3.php:485
3774
+ msgid "Insolvent users"
3775
  msgstr ""
3776
 
3777
+ #: ../addons/gateway/event-booking/mycred-eventespresso3.php:487
3778
+ msgid "Message to show users who do not have enough points to pay."
 
 
3779
  msgstr ""
3780
 
3781
+ #: ../addons/gateway/event-booking/mycred-eventespresso3.php:490 ..
3782
+ #: addons/gateway/carts/mycred-wpecommerce.php:382 ..
3783
+ #: addons/gateway/carts/mycred-marketpress.php:446
3784
+ msgid "Visitors"
3785
  msgstr ""
3786
 
3787
+ #: ../addons/gateway/event-booking/mycred-eventespresso3.php:492
3788
+ msgid "Message to show visitors (users not logged in) on the payment page."
3789
  msgstr ""
3790
 
3791
+ #: ../addons/gateway/event-booking/mycred-eventsmanager.php:29 ..
3792
+ #: addons/gateway/event-booking/mycred-eventsmanager-pro.php:33
3793
+ msgid "Payment for tickets to %link_with_title%"
3794
  msgstr ""
3795
 
3796
+ #: ../addons/gateway/event-booking/mycred-eventsmanager.php:30 ..
3797
+ #: addons/gateway/event-booking/mycred-eventsmanager-pro.php:34
3798
+ msgid "Ticket refund for %link_with_title%"
3799
  msgstr ""
3800
 
3801
+ #: ../addons/gateway/event-booking/mycred-eventsmanager.php:34 ..
3802
+ #: addons/gateway/event-booking/mycred-eventsmanager-pro.php:38
3803
+ #, php-format
3804
+ msgid "Pay using your %_plural% balance"
3805
  msgstr ""
3806
 
3807
+ #: ../addons/gateway/event-booking/mycred-eventsmanager.php:36 ..
3808
+ #: addons/gateway/event-booking/mycred-eventsmanager-pro.php:40
3809
+ msgid "Pay"
3810
  msgstr ""
3811
 
3812
+ #: ../addons/gateway/event-booking/mycred-eventsmanager.php:39 ..
3813
+ #: addons/gateway/event-booking/mycred-eventsmanager-pro.php:44
3814
+ msgid "Thank you for your payment!"
 
3815
  msgstr ""
3816
 
3817
+ #: ../addons/gateway/event-booking/mycred-eventsmanager.php:40 ..
3818
+ #: addons/gateway/event-booking/mycred-eventsmanager-pro.php:45
3819
+ msgid "I'm sorry but you can not pay for these tickets using %_plural%"
3820
  msgstr ""
3821
 
3822
+ #: ../addons/gateway/event-booking/mycred-eventsmanager.php:333 ..
3823
+ #: addons/gateway/event-booking/mycred-eventsmanager-pro.php:136
3824
+ msgid "Ticket Type"
 
3825
  msgstr ""
3826
 
3827
+ #: ../addons/gateway/event-booking/mycred-eventsmanager.php:342 ..
3828
+ #: addons/gateway/event-booking/mycred-eventsmanager-pro.php:145
3829
+ msgid "Spaces"
3830
  msgstr ""
3831
 
3832
+ #: ../addons/gateway/event-booking/mycred-eventsmanager.php:420
3833
+ msgid "Balance After Payment"
3834
  msgstr ""
3835
 
3836
+ #: ../addons/gateway/event-booking/mycred-eventsmanager.php:532
3837
+ msgid "Click to toggle"
 
3838
  msgstr ""
3839
 
3840
+ #: ../addons/gateway/event-booking/mycred-eventsmanager.php:533
3841
+ #, php-format
3842
+ msgid "%s Payments"
3843
  msgstr ""
3844
 
3845
+ #: ../addons/gateway/event-booking/mycred-eventsmanager.php:542 ..
3846
+ #: addons/gateway/event-booking/mycred-eventsmanager-pro.php:518
3847
+ #, php-format
3848
+ msgid "Disabled - Users CAN NOT pay for tickets using %plural%."
3849
  msgstr ""
3850
 
3851
+ #: ../addons/gateway/event-booking/mycred-eventsmanager.php:543 ..
3852
+ #: addons/gateway/event-booking/mycred-eventsmanager-pro.php:519
3853
+ #, php-format
3854
+ msgid "Single - Users can ONLY pay for tickets using %plural%."
3855
  msgstr ""
3856
 
3857
+ #: ../addons/gateway/event-booking/mycred-eventsmanager.php:544 ..
3858
+ #: addons/gateway/event-booking/mycred-eventsmanager-pro.php:520
3859
  #, php-format
3860
+ msgid "Multi - Users can pay for tickets using other gateways or %plural%."
3861
  msgstr ""
3862
 
3863
+ #: ../addons/gateway/event-booking/mycred-eventsmanager.php:562 ..
3864
+ #: addons/gateway/event-booking/mycred-eventsmanager.php:595 ..
3865
+ #: addons/gateway/event-booking/mycred-eventsmanager-pro.php:524 ..
3866
+ #: addons/gateway/event-booking/mycred-eventsmanager-pro.php:557
3867
+ msgid "Refunds"
3868
  msgstr ""
3869
 
3870
+ #: ../addons/gateway/event-booking/mycred-eventsmanager.php:565
3871
+ msgid ""
3872
+ "The percentage of the paid amount to refund if a booking gets cancelled. Use "
3873
+ "zero for no refunds. No refunds are given to \"Rejected\" bookings."
 
 
 
 
 
 
 
3874
  msgstr ""
3875
 
3876
+ #: ../addons/gateway/event-booking/mycred-eventsmanager.php:585 ..
3877
+ #: addons/gateway/event-booking/mycred-eventsmanager-pro.php:547
3878
+ msgid "Log Templates"
3879
  msgstr ""
3880
 
3881
+ #: ../addons/gateway/event-booking/mycred-eventsmanager.php:588 ..
3882
+ #: addons/gateway/event-booking/mycred-eventsmanager-pro.php:550
3883
+ msgid "Purchases"
3884
  msgstr ""
3885
 
3886
+ #: ../addons/gateway/event-booking/mycred-eventsmanager.php:605 ..
3887
+ #: addons/gateway/event-booking/mycred-eventsmanager-pro.php:579
3888
+ msgid "Payment Link Label"
3889
  msgstr ""
3890
 
3891
+ #: ../addons/gateway/event-booking/mycred-eventsmanager.php:608 ..
3892
+ #: addons/gateway/event-booking/mycred-eventsmanager-pro.php:582
3893
  msgid ""
3894
+ "The payment link shows / hides the payment form under \"My Bookings\". No HTML "
3895
+ "allowed."
3896
  msgstr ""
3897
 
3898
+ #: ../addons/gateway/event-booking/mycred-eventsmanager.php:612 ..
3899
+ #: addons/gateway/event-booking/mycred-eventsmanager-pro.php:586
3900
+ msgid "Payment Header"
3901
  msgstr ""
3902
 
3903
+ #: ../addons/gateway/event-booking/mycred-eventsmanager.php:615 ..
3904
+ #: addons/gateway/event-booking/mycred-eventsmanager-pro.php:589
3905
+ msgid "Shown on top of the payment form. No HTML allowed."
3906
  msgstr ""
3907
 
3908
+ #: ../addons/gateway/event-booking/mycred-eventsmanager.php:622 ..
3909
+ #: addons/gateway/event-booking/mycred-eventsmanager-pro.php:596
3910
+ msgid "The button label for payments. No HTML allowed!"
3911
  msgstr ""
3912
 
3913
+ #: ../addons/gateway/event-booking/mycred-eventsmanager.php:626 ..
3914
+ #: addons/gateway/event-booking/mycred-eventsmanager-pro.php:607 ..
3915
+ #: addons/gateway/carts/mycred-wpecommerce.php:375 ..
3916
+ #: addons/gateway/carts/mycred-marketpress.php:435
3917
+ msgid "Messages"
3918
  msgstr ""
3919
 
3920
+ #: ../addons/gateway/event-booking/mycred-eventsmanager.php:629 ..
3921
+ #: addons/gateway/event-booking/mycred-eventsmanager-pro.php:610
3922
+ msgid "Successful Payments"
3923
  msgstr ""
3924
 
3925
+ #: ../addons/gateway/event-booking/mycred-eventsmanager.php:632 ..
3926
+ #: addons/gateway/event-booking/mycred-eventsmanager.php:639 ..
3927
+ #: addons/gateway/event-booking/mycred-eventsmanager-pro.php:613 ..
3928
+ #: addons/gateway/event-booking/mycred-eventsmanager-pro.php:620
3929
+ msgid "No HTML allowed!"
3930
  msgstr ""
3931
 
3932
+ #: ../addons/gateway/event-booking/mycred-eventsmanager-pro.php:41
3933
+ #, php-format
3934
+ msgid "%plural% Cost"
3935
  msgstr ""
3936
 
3937
+ #: ../addons/gateway/event-booking/mycred-eventsmanager-pro.php:193
3938
+ msgid "Your Balance"
3939
  msgstr ""
3940
 
3941
+ #: ../addons/gateway/event-booking/mycred-eventsmanager-pro.php:258
3942
+ msgid "You can not pay using this gateway."
3943
  msgstr ""
3944
 
3945
+ #: ../addons/gateway/event-booking/mycred-eventsmanager-pro.php:393
3946
+ msgid "Reject"
 
3947
  msgstr ""
3948
 
3949
+ #: ../addons/gateway/event-booking/mycred-eventsmanager-pro.php:402
3950
+ msgid "Edit/View"
3951
  msgstr ""
3952
 
3953
+ #: ../addons/gateway/event-booking/mycred-eventsmanager-pro.php:527
3954
+ msgid ""
3955
+ "The percentage of the paid amount to refund if a user cancels their booking. "
3956
+ "Use zero for no refunds. No refunds are given to \"Rejected\" bookings!"
3957
  msgstr ""
3958
 
3959
+ #: ../addons/gateway/event-booking/mycred-eventsmanager-pro.php:600
3960
+ msgid "Cart & Checkout Cost"
 
3961
  msgstr ""
3962
 
3963
+ #: ../addons/gateway/event-booking/mycred-eventsmanager-pro.php:603
3964
  #, php-format
3965
+ msgid "Label for cost in %plural%"
3966
  msgstr ""
3967
 
3968
+ #: ../addons/gateway/carts/mycred-wpecommerce.php:27 ..
3969
+ #: addons/gateway/carts/mycred-marketpress.php:359
3970
  #, php-format
3971
+ msgid "Payment for Order: #%order_id%"
3972
  msgstr ""
3973
 
3974
+ #: ../addons/gateway/carts/mycred-wpecommerce.php:30
3975
+ msgid "Store sale"
3976
  msgstr ""
3977
 
3978
+ #: ../addons/gateway/carts/mycred-wpecommerce.php:32
3979
+ msgid "You must be logged in to use this gateway"
3980
  msgstr ""
3981
 
3982
+ #: ../addons/gateway/carts/mycred-wpecommerce.php:33
3983
+ msgid "Insufficient Funds."
3984
  msgstr ""
3985
 
3986
+ #: ../addons/gateway/carts/mycred-wpecommerce.php:34
3987
+ msgid "Deduct the amount from your balance."
 
 
3988
  msgstr ""
3989
 
3990
+ #: ../addons/gateway/carts/mycred-wpecommerce.php:112 ../addons/buy-
3991
+ #: creds/abstracts/mycred-abstract-payment-gateway.php:592
3992
+ msgid "Item"
3993
  msgstr ""
3994
 
3995
+ #: ../addons/gateway/carts/mycred-wpecommerce.php:131 ..
3996
+ #: addons/gateway/carts/mycred-woocommerce.php:741
3997
+ msgid "Your current balance"
3998
  msgstr ""
3999
 
4000
+ #: ../addons/gateway/carts/mycred-wpecommerce.php:199
4001
+ msgid "You can not use this gateway."
4002
  msgstr ""
4003
 
4004
+ #: ../addons/gateway/carts/mycred-wpecommerce.php:344
4005
+ msgid "Log Template for Payments"
4006
  msgstr ""
4007
 
4008
+ #: ../addons/gateway/carts/mycred-wpecommerce.php:361
4009
+ #, php-format
4010
+ msgid "How much is 1 %s worth in %s"
4011
  msgstr ""
4012
 
4013
+ #: ../addons/gateway/carts/mycred-wpecommerce.php:378
4014
+ msgid "Instructions"
4015
  msgstr ""
4016
 
4017
+ #: ../addons/gateway/carts/mycred-wpecommerce.php:379
4018
+ msgid ""
4019
+ "Optional instructions to show users when selecting this gateway. Leave empty "
4020
+ "to hide."
4021
  msgstr ""
4022
 
4023
+ #: ../addons/gateway/carts/mycred-wpecommerce.php:383
4024
+ msgid "Message to show visitors who are not logged in."
4025
  msgstr ""
4026
 
4027
+ #: ../addons/gateway/carts/mycred-wpecommerce.php:387
4028
+ #, php-format
4029
+ msgid ""
4030
+ "Message to show when users does not have enough %plural% to pay using this "
4031
+ "gateway."
4032
  msgstr ""
4033
 
4034
+ #: ../addons/gateway/carts/mycred-woocommerce.php:31
4035
+ msgid "Let users pay using their myCRED balance."
4036
  msgstr ""
4037
 
4038
+ #: ../addons/gateway/carts/mycred-woocommerce.php:85
4039
+ msgid "Enable/Disable"
4040
  msgstr ""
4041
 
4042
+ #: ../addons/gateway/carts/mycred-woocommerce.php:87
4043
+ msgid "Enable myCRED Payment"
4044
  msgstr ""
4045
 
4046
+ #: ../addons/gateway/carts/mycred-woocommerce.php:89
4047
+ msgid ""
4048
+ "Users who are not logged in or excluded from using myCRED will not have "
4049
+ "access to this gateway!"
4050
  msgstr ""
4051
 
4052
+ #: ../addons/gateway/carts/mycred-woocommerce.php:94
4053
+ msgid "Title to show for this payment option."
4054
  msgstr ""
4055
 
4056
+ #: ../addons/gateway/carts/mycred-woocommerce.php:95
4057
+ msgid "Pay with myCRED"
4058
  msgstr ""
4059
 
4060
+ #: ../addons/gateway/carts/mycred-woocommerce.php:99
4061
+ msgid "Customer Message"
4062
  msgstr ""
4063
 
4064
+ #: ../addons/gateway/carts/mycred-woocommerce.php:110 ..
4065
+ #: addons/gateway/carts/mycred-woocommerce.php:182
4066
+ msgid "Refund Log Template"
4067
  msgstr ""
4068
 
4069
+ #: ../addons/gateway/carts/mycred-woocommerce.php:122
4070
+ msgid "Select the point type users can use to pay."
4071
  msgstr ""
4072
 
4073
+ #: ../addons/gateway/carts/mycred-woocommerce.php:136 ..
4074
+ #: addons/gateway/carts/mycred-marketpress.php:404
4075
+ #, php-format
4076
+ msgid "How much is 1 %_singular% worth in %currency%?"
4077
  msgstr ""
4078
 
4079
+ #: ../addons/gateway/carts/mycred-woocommerce.php:148
4080
+ msgid "Show Total"
4081
  msgstr ""
4082
 
4083
+ #: ../addons/gateway/carts/mycred-woocommerce.php:150
4084
+ msgid "Show the final price in %_plural% ."
4085
  msgstr ""
4086
 
4087
+ #: ../addons/gateway/carts/mycred-woocommerce.php:153
4088
+ msgid "Show in Cart"
4089
  msgstr ""
4090
 
4091
+ #: ../addons/gateway/carts/mycred-woocommerce.php:154
4092
+ msgid "Show on Checkout Page"
4093
  msgstr ""
4094
 
4095
+ #: ../addons/gateway/carts/mycred-woocommerce.php:155
4096
+ msgid "Show in Cart and on Checkout Page"
4097
  msgstr ""
4098
 
4099
+ #: ../addons/gateway/carts/mycred-woocommerce.php:162
4100
+ msgid "Order Total in %_plural%"
4101
  msgstr ""
4102
 
4103
+ #: ../addons/gateway/carts/mycred-woocommerce.php:178
4104
+ msgid "Log entry template for profit sharing."
4105
  msgstr ""
4106
 
4107
+ #: ../addons/gateway/carts/mycred-woocommerce.php:184
4108
+ msgid "Log entry template for refunds of profit shares."
4109
  msgstr ""
4110
 
4111
+ #: ../addons/gateway/carts/mycred-woocommerce.php:214
4112
+ msgid "myCRED Payment"
4113
  msgstr ""
4114
 
4115
+ #: ../addons/gateway/carts/mycred-woocommerce.php:215
4116
+ #, php-format
4117
+ msgid ""
4118
+ "Allows users to pay using their myCRED %_singular% balance. Please note that "
4119
+ "users with insufficient funds and users who are not logged in will not see "
4120
+ "this payment gateway on the checkout page."
4121
  msgstr ""
4122
 
4123
+ #: ../addons/gateway/carts/mycred-woocommerce.php:240
4124
+ msgid "You must be logged in to pay with %_plural%"
4125
  msgstr ""
4126
 
4127
+ #: ../addons/gateway/carts/mycred-woocommerce.php:246
4128
+ msgid "You can not use this gateway. Please try a different payment option."
4129
  msgstr ""
4130
 
4131
+ #: ../addons/gateway/carts/mycred-woocommerce.php:263 ..
4132
+ #: addons/gateway/carts/mycred-marketpress.php:365
4133
+ msgid "Insufficient funds."
4134
  msgstr ""
4135
 
4136
+ #: ../addons/gateway/carts/mycred-woocommerce.php:360
4137
+ #, php-format
4138
+ msgctxt "%s = Point amount formatted"
4139
+ msgid "Refunded %s"
4140
  msgstr ""
4141
 
4142
+ #: ../addons/gateway/carts/mycred-woocommerce.php:408
4143
+ msgid "Your account has successfully been charged."
4144
  msgstr ""
4145
 
4146
+ #: ../addons/gateway/carts/mycred-marketpress.php:179 ../addons/buy-
4147
+ #: creds/abstracts/mycred-abstract-payment-gateway.php:404
4148
+ msgid "Payment"
4149
  msgstr ""
4150
 
4151
+ #: ../addons/gateway/carts/mycred-marketpress.php:182 ..
4152
+ #: addons/gateway/carts/mycred-marketpress.php:231
4153
+ msgid "Go Back"
4154
  msgstr ""
4155
 
4156
+ #: ../addons/gateway/carts/mycred-marketpress.php:185
4157
+ msgid "will be deducted from your account."
4158
  msgstr ""
4159
 
4160
+ #: ../addons/gateway/carts/mycred-marketpress.php:221
4161
+ #, php-format
4162
+ msgid ""
4163
+ "Sorry, but you can not use this gateway as your account is excluded. Please "
4164
+ "<a href=\"%s\">select a different payment method</a>."
4165
  msgstr ""
4166
 
4167
+ #: ../addons/gateway/carts/mycred-marketpress.php:247
4168
+ msgid "Paid"
4169
  msgstr ""
4170
 
4171
+ #: ../addons/gateway/carts/mycred-marketpress.php:356
4172
+ #, php-format
4173
+ msgid "%_singular% Balance"
4174
  msgstr ""
4175
 
4176
+ #: ../addons/gateway/carts/mycred-marketpress.php:362
4177
+ #, php-format
4178
+ msgid "Product Sale: %post_title%"
4179
  msgstr ""
4180
 
4181
+ #: ../addons/gateway/carts/mycred-marketpress.php:363
4182
+ msgid "Pay using your account balance."
4183
  msgstr ""
4184
 
4185
+ #: ../addons/gateway/carts/mycred-marketpress.php:364
4186
+ #, php-format
4187
+ msgid ""
4188
+ "TOTAL amount has been deducted from your account. Your current balance is: "
4189
+ "%balance_f%"
4190
  msgstr ""
4191
 
4192
+ #: ../addons/gateway/carts/mycred-marketpress.php:366
4193
+ msgid ""
4194
+ "You must be logged in to pay with %_plural%. Please <a "
4195
+ "href=\"%login_url_here%\">login</a>."
4196
  msgstr ""
4197
 
4198
+ #: ../addons/gateway/carts/mycred-marketpress.php:373
4199
+ #, php-format
4200
+ msgid ""
4201
+ "Let your users pay for items in their shopping cart using their %s Account. "
4202
+ "Note! This gateway requires your users to be logged in when making a "
4203
+ "purchase!"
4204
  msgstr ""
4205
 
4206
+ #: ../addons/gateway/carts/mycred-marketpress.php:376
4207
+ msgid "Method Name"
4208
  msgstr ""
4209
 
4210
+ #: ../addons/gateway/carts/mycred-marketpress.php:378
4211
+ msgid ""
4212
+ "Enter a public name for this payment method that is displayed to users - No "
4213
+ "HTML"
4214
  msgstr ""
4215
 
4216
+ #: ../addons/gateway/carts/mycred-marketpress.php:383
4217
+ msgid "Gateway Logo URL"
4218
  msgstr ""
4219
 
4220
+ #: ../addons/gateway/carts/mycred-marketpress.php:421
4221
+ msgid "Percentage"
4222
  msgstr ""
4223
 
4224
+ #: ../addons/gateway/carts/mycred-marketpress.php:440
4225
+ msgid "Message to show when the user can not use this gateway."
4226
  msgstr ""
4227
 
4228
+ #: ../addons/gateway/carts/mycred-marketpress.php:448
4229
+ msgid "Message to show to buyers that are not logged in."
4230
  msgstr ""
4231
 
4232
+ #: ../addons/gateway/carts/mycred-marketpress.php:454
4233
+ msgid "User Instructions"
4234
  msgstr ""
4235
 
4236
+ #: ../addons/gateway/carts/mycred-marketpress.php:456
4237
+ msgid "Information to show users before payment."
4238
  msgstr ""
4239
 
4240
+ #: ../addons/gateway/carts/mycred-marketpress.php:462
4241
+ msgid "Confirmation Information"
4242
  msgstr ""
4243
 
4244
+ #: ../addons/gateway/carts/mycred-marketpress.php:464
4245
+ msgid "Information to display on the order confirmation page. - HTML allowed"
4246
  msgstr ""
4247
 
4248
+ #: ../addons/gateway/carts/mycred-marketpress.php:470
4249
+ msgid "Order Confirmation Email"
4250
  msgstr ""
4251
 
4252
+ #: ../addons/gateway/carts/mycred-marketpress.php:472
4253
+ #, php-format
4254
+ msgid ""
4255
+ "This is the email text to send to those who have made %s checkouts. It "
4256
+ "overrides the default order checkout email. These codes will be replaced "
4257
+ "with order details: CUSTOMERNAME, ORDERID, ORDERINFO, SHIPPINGINFO, "
4258
+ "PAYMENTINFO, TOTAL, TRACKINGURL. No HTML allowed."
4259
  msgstr ""
4260
 
4261
+ #: ../addons/transfer/myCRED-addon-transfer.php:44
4262
+ #, php-format
4263
+ msgid "You do not have enough %plural% to send."
4264
  msgstr ""
4265
 
4266
+ #: ../addons/transfer/myCRED-addon-transfer.php:45
4267
+ msgid "You have exceeded your %limit% transfer limit."
 
4268
  msgstr ""
4269
 
4270
+ #: ../addons/transfer/myCRED-addon-transfer.php:154
4271
+ msgid "Transaction completed."
 
4272
  msgstr ""
4273
 
4274
+ #: ../addons/transfer/myCRED-addon-transfer.php:155
4275
+ msgid "Security token could not be verified. Please contact your site administrator!"
4276
  msgstr ""
4277
 
4278
+ #: ../addons/transfer/myCRED-addon-transfer.php:156
4279
+ msgid "Communications error. Please try again later."
4280
  msgstr ""
4281
 
4282
+ #: ../addons/transfer/myCRED-addon-transfer.php:157
4283
+ msgid "Recipient not found. Please try again."
4284
  msgstr ""
4285
 
4286
+ #: ../addons/transfer/myCRED-addon-transfer.php:158
4287
+ msgid "Transaction declined by recipient."
4288
  msgstr ""
4289
 
4290
+ #: ../addons/transfer/myCRED-addon-transfer.php:159
4291
+ msgid "Incorrect amount. Please try again."
4292
  msgstr ""
4293
 
4294
+ #: ../addons/transfer/myCRED-addon-transfer.php:160
4295
+ msgid ""
4296
+ "This myCRED Add-on has not yet been setup! No transfers are allowed until "
4297
+ "this has been done!"
4298
  msgstr ""
4299
 
4300
+ #: ../addons/transfer/myCRED-addon-transfer.php:162
4301
+ msgid "Transfer Limit exceeded."
4302
  msgstr ""
4303
 
4304
+ #: ../addons/transfer/myCRED-addon-transfer.php:189
4305
+ msgid "No limits."
4306
  msgstr ""
4307
 
4308
+ #: ../addons/transfer/myCRED-addon-transfer.php:190
4309
+ msgid "Impose daily limit."
4310
  msgstr ""
4311
 
4312
+ #: ../addons/transfer/myCRED-addon-transfer.php:191
4313
+ msgid "Impose weekly limit."
4314
  msgstr ""
4315
 
4316
+ #: ../addons/transfer/myCRED-addon-transfer.php:198
4317
+ msgid "User Login (user_login)"
4318
  msgstr ""
4319
 
4320
+ #: ../addons/transfer/myCRED-addon-transfer.php:199
4321
+ msgid "User Email (user_email)"
4322
  msgstr ""
4323
 
4324
+ #: ../addons/transfer/myCRED-addon-transfer.php:216
4325
+ msgid "Select the point types that users can transfer."
4326
  msgstr ""
4327
 
4328
+ #: ../addons/transfer/myCRED-addon-transfer.php:224
4329
+ msgid "Log template for sending"
4330
  msgstr ""
4331
 
4332
+ #: ../addons/transfer/myCRED-addon-transfer.php:231
4333
+ msgid "Log template for receiving"
4334
  msgstr ""
4335
 
4336
+ #: ../addons/transfer/myCRED-addon-transfer.php:238
4337
+ msgid "Autofill Recipient"
 
4338
  msgstr ""
4339
 
4340
+ #: ../addons/transfer/myCRED-addon-transfer.php:250
4341
+ msgid "Select what user details recipients should be autofilled by."
 
4342
  msgstr ""
4343
 
4344
+ #: ../addons/transfer/myCRED-addon-transfer.php:253
4345
+ msgid "Reload"
4346
  msgstr ""
4347
 
4348
+ #: ../addons/transfer/myCRED-addon-transfer.php:256
4349
+ msgid "Reload page on successful transfers."
4350
  msgstr ""
4351
 
4352
+ #: ../addons/transfer/myCRED-addon-transfer.php:276
4353
+ msgid "Limit Amount"
4354
  msgstr ""
4355
 
4356
+ #: ../addons/transfer/myCRED-addon-transfer.php:280
4357
+ msgid "Form Templates"
4358
  msgstr ""
4359
 
4360
+ #: ../addons/transfer/myCRED-addon-transfer.php:283
4361
+ msgid "Not logged in Template"
4362
  msgstr ""
4363
 
4364
+ #: ../addons/transfer/myCRED-addon-transfer.php:285
4365
+ msgid ""
4366
+ "Text to show when users are not logged in. Leave empty to hide. No HTML "
4367
+ "elements allowed!"
4368
  msgstr ""
4369
 
4370
+ #: ../addons/transfer/myCRED-addon-transfer.php:289
4371
+ msgid "Balance Template"
4372
  msgstr ""
4373
 
4374
+ #: ../addons/transfer/myCRED-addon-transfer.php:291
4375
+ msgid ""
4376
+ "Template to use when displaying the users balance (if included). No HTML "
4377
+ "elements allowed!"
4378
  msgstr ""
4379
 
4380
+ #: ../addons/transfer/myCRED-addon-transfer.php:295
4381
+ msgid "Limit Template"
4382
  msgstr ""
4383
 
4384
+ #: ../addons/transfer/myCRED-addon-transfer.php:297
4385
+ msgid "Template to use when displaying limits (if used). No HTML elements allowed!"
4386
  msgstr ""
4387
 
4388
+ #: ../addons/transfer/myCRED-addon-transfer.php:301
4389
+ msgid "Button Template"
4390
  msgstr ""
4391
 
4392
+ #: ../addons/transfer/myCRED-addon-transfer.php:303
4393
+ msgid "Send Transfer button template. No HTML elements allowed!"
4394
  msgstr ""
4395
 
4396
+ #: ../addons/transfer/myCRED-addon-transfer.php:306
4397
+ msgid "Error Messages"
4398
  msgstr ""
4399
 
4400
+ #: ../addons/transfer/myCRED-addon-transfer.php:309
4401
+ msgid "Balance to low to send."
4402
  msgstr ""
4403
 
4404
+ #: ../addons/transfer/myCRED-addon-transfer.php:311
4405
+ msgid ""
4406
+ "Text to show when a users balance is to low for transfers. Leave empty to "
4407
+ "hide. No HTML elements allowed!"
4408
  msgstr ""
4409
 
4410
+ #: ../addons/transfer/myCRED-addon-transfer.php:315
4411
+ msgid "Transfer Limit Reached."
4412
  msgstr ""
4413
 
4414
+ #: ../addons/transfer/myCRED-addon-transfer.php:317
4415
+ msgid ""
4416
+ "Text to show when a user has reached their transfer limit (if used). Leave "
4417
+ "empty to hide. No HTML elements allowed!"
4418
  msgstr ""
4419
 
4420
+ #: ../addons/transfer/includes/mycred-transfer-widgets.php:21
4421
+ #, php-format
4422
+ msgid "(%s) Transfer"
4423
  msgstr ""
4424
 
4425
+ #: ../addons/transfer/includes/mycred-transfer-widgets.php:24
4426
+ msgid "Allow transfers between users."
4427
  msgstr ""
4428
 
4429
+ #: ../addons/transfer/includes/mycred-transfer-widgets.php:42
4430
+ msgid "The myCRED Transfer add-on has not yet been setup!"
4431
  msgstr ""
4432
 
4433
+ #: ../addons/transfer/includes/mycred-transfer-widgets.php:125
4434
+ msgid "Show users balance"
4435
  msgstr ""
4436
 
4437
+ #: ../addons/transfer/includes/mycred-transfer-widgets.php:129
4438
+ msgid "Show users limit"
4439
  msgstr ""
4440
 
4441
+ #: ../addons/transfer/includes/mycred-transfer-shortcodes.php:130
4442
+ msgid "username"
4443
+ msgstr ""
4444
+
4445
+ #: ../addons/transfer/includes/mycred-transfer-shortcodes.php:133
4446
+ msgid "email"
4447
  msgstr ""
4448
 
4449
+ #: ../addons/transfer/includes/mycred-transfer-shortcodes.php:135
 
4450
  #, php-format
4451
+ msgid "recipients %s"
4452
  msgstr ""
4453
 
4454
+ #: ../addons/transfer/includes/mycred-transfer-shortcodes.php:225
4455
+ msgid "To:"
4456
  msgstr ""
4457
 
4458
+ #: ../addons/transfer/includes/mycred-transfer-shortcodes.php:231
4459
+ msgid "Amount:"
 
4460
  msgstr ""
4461
 
4462
+ #. Description of the plugin
4463
+ msgid ""
4464
+ "Award your users rank based on their current or total balance. Supports "
4465
+ "multiple point types."
4466
  msgstr ""
4467
 
4468
+ #: ../addons/ranks/myCRED-addon-ranks.php:212 ../addons/ranks/myCRED-addon-ranks.
4469
+ #: php:213 ../addons/ranks/myCRED-addon-ranks.php:443 ../addons/ranks/myCRED-
4470
+ #: addon-ranks.php:452 ../addons/ranks/myCRED-addon-ranks.php:458 ..
4471
+ #: addons/ranks/myCRED-addon-ranks.php:834 ../addons/ranks/myCRED-addon-ranks.
4472
+ #: php:1311 ../addons/ranks/myCRED-addon-ranks.php:1602
4473
+ msgid "Ranks"
4474
+ msgstr ""
4475
+
4476
+ #: ../addons/ranks/myCRED-addon-ranks.php:424
4477
+ msgid "Warning! All ranks will be deleted! This can not be undone!"
4478
+ msgstr ""
4479
+
4480
+ #: ../addons/ranks/myCRED-addon-ranks.php:425
4481
+ msgid "Are you sure you want to re-assign user ranks?"
4482
  msgstr ""
4483
 
4484
+ #: ../addons/ranks/myCRED-addon-ranks.php:441
4485
  #, php-format
4486
+ msgid "Ranks for %s"
4487
  msgstr ""
4488
 
4489
+ #: ../addons/ranks/myCRED-addon-ranks.php:447 ../addons/ranks/myCRED-addon-ranks.
4490
+ #: php:834
4491
+ msgid "Rank"
4492
  msgstr ""
4493
 
4494
+ #: ../addons/ranks/myCRED-addon-ranks.php:448 ../addons/email-notices/myCRED-
4495
+ #: addon-email-notices.php:167 ../addons/badges/myCRED-addon-badges.php:385 ..
4496
+ #: addons/buy-creds/myCRED-addon-buy-creds.php:279 ../addons/buy-creds/myCRED-
4497
+ #: addon-buy-creds.php:280
4498
+ msgid "Add New"
4499
  msgstr ""
4500
 
4501
+ #: ../addons/ranks/myCRED-addon-ranks.php:449
4502
+ msgid "Add New Rank"
4503
  msgstr ""
4504
 
4505
+ #: ../addons/ranks/myCRED-addon-ranks.php:450
4506
+ msgid "Edit Rank"
4507
  msgstr ""
4508
 
4509
+ #: ../addons/ranks/myCRED-addon-ranks.php:451
4510
+ msgid "New Rank"
4511
+ msgstr ""
 
 
 
4512
 
4513
+ #: ../addons/ranks/myCRED-addon-ranks.php:453
4514
+ msgid "View Rank"
 
4515
  msgstr ""
4516
 
4517
+ #: ../addons/ranks/myCRED-addon-ranks.php:454
4518
+ msgid "Search Ranks"
4519
  msgstr ""
4520
 
4521
+ #: ../addons/ranks/myCRED-addon-ranks.php:455
4522
+ msgid "No ranks found"
 
4523
  msgstr ""
4524
 
4525
+ #: ../addons/ranks/myCRED-addon-ranks.php:456
4526
+ msgid "No ranks found in Trash"
4527
  msgstr ""
4528
 
4529
+ #: ../addons/ranks/myCRED-addon-ranks.php:541
4530
  #, php-format
4531
+ msgid "Completed - Total of %d users effected"
4532
  msgstr ""
4533
 
4534
+ #: ../addons/ranks/myCRED-addon-ranks.php:978 ../addons/ranks/myCRED-addon-ranks.
4535
+ #: php:979 ../addons/ranks/myCRED-addon-ranks.php:980 ../addons/ranks/myCRED-
4536
+ #: addon-ranks.php:981 ../addons/ranks/myCRED-addon-ranks.php:982 ..
4537
+ #: addons/ranks/myCRED-addon-ranks.php:983 ../addons/ranks/myCRED-addon-ranks.
4538
+ #: php:986 ../addons/ranks/myCRED-addon-ranks.php:987
4539
+ msgid "Rank Updated."
4540
  msgstr ""
4541
 
4542
+ #: ../addons/ranks/myCRED-addon-ranks.php:984
4543
+ msgid "Rank Enabled"
4544
  msgstr ""
4545
 
4546
+ #: ../addons/ranks/myCRED-addon-ranks.php:985
4547
+ msgid "Rank Saved"
4548
  msgstr ""
4549
 
4550
+ #: ../addons/ranks/myCRED-addon-ranks.php:1024
4551
+ #, php-format
4552
+ msgid "<strong>Rank:</strong> %s"
4553
  msgstr ""
4554
 
4555
+ #: ../addons/ranks/myCRED-addon-ranks.php:1040 ../addons/ranks/myCRED-addon-ranks.
4556
+ #: php:1123
4557
+ msgid "Rank Title"
4558
  msgstr ""
4559
 
4560
+ #: ../addons/ranks/myCRED-addon-ranks.php:1041
4561
+ msgid "Logo"
 
 
 
 
 
 
 
 
 
4562
  msgstr ""
4563
 
4564
+ #: ../addons/ranks/myCRED-addon-ranks.php:1042
4565
+ msgid "Requirement"
4566
  msgstr ""
4567
 
4568
+ #: ../addons/ranks/myCRED-addon-ranks.php:1068
4569
+ msgid "No Logo Set"
4570
  msgstr ""
4571
 
4572
+ #: ../addons/ranks/myCRED-addon-ranks.php:1083 ../addons/ranks/myCRED-addon-ranks.
4573
+ #: php:1088
4574
+ msgid "Any Value"
4575
  msgstr ""
4576
 
4577
+ #: ../addons/ranks/myCRED-addon-ranks.php:1085 ../addons/buy-creds/myCRED-addon-
4578
+ #: buy-creds.php:643
4579
  #, php-format
4580
+ msgid "Minimum %plural%"
4581
  msgstr ""
4582
 
4583
+ #: ../addons/ranks/myCRED-addon-ranks.php:1090
4584
+ #, php-format
4585
+ msgid "Maximum %plural%"
4586
  msgstr ""
4587
 
4588
+ #: ../addons/ranks/myCRED-addon-ranks.php:1138
4589
+ msgid "Rank Settings"
 
 
4590
  msgstr ""
4591
 
4592
+ #: ../addons/ranks/myCRED-addon-ranks.php:1192
4593
+ #, php-format
4594
+ msgid "Minimum %plural% to reach this rank"
4595
  msgstr ""
4596
 
4597
+ #: ../addons/ranks/myCRED-addon-ranks.php:1196
4598
+ #, php-format
4599
+ msgid "Maximum %plural% to be included in this rank"
4600
  msgstr ""
4601
 
4602
+ #: ../addons/ranks/myCRED-addon-ranks.php:1214
4603
+ msgid "All Published Ranks"
4604
  msgstr ""
4605
 
4606
+ #: ../addons/ranks/myCRED-addon-ranks.php:1224 ../addons/ranks/myCRED-addon-ranks.
4607
+ #: php:1226
4608
+ msgid "Not Set"
4609
  msgstr ""
4610
 
4611
+ #: ../addons/ranks/myCRED-addon-ranks.php:1232
4612
+ msgid "No Ranks found"
4613
  msgstr ""
4614
 
4615
+ #: ../addons/ranks/myCRED-addon-ranks.php:1316
4616
+ msgid "Rank Features"
4617
  msgstr ""
4618
 
4619
+ #: ../addons/ranks/myCRED-addon-ranks.php:1320
4620
+ #, php-format
4621
+ msgid "%plural% requirement"
4622
  msgstr ""
4623
 
4624
+ #: ../addons/ranks/myCRED-addon-ranks.php:1321
4625
+ msgid "Featured Image (Logo)"
4626
  msgstr ""
4627
 
4628
+ #: ../addons/ranks/myCRED-addon-ranks.php:1323
4629
+ msgid "Content"
4630
  msgstr ""
4631
 
4632
+ #: ../addons/ranks/myCRED-addon-ranks.php:1325
4633
+ msgid "Excerpt"
4634
  msgstr ""
4635
 
4636
+ #: ../addons/ranks/myCRED-addon-ranks.php:1327
4637
+ msgid "Comments"
4638
  msgstr ""
4639
 
4640
+ #: ../addons/ranks/myCRED-addon-ranks.php:1329
4641
+ msgid "Page Attributes"
4642
  msgstr ""
4643
 
4644
+ #: ../addons/ranks/myCRED-addon-ranks.php:1331
4645
+ msgid "Custom Fields"
4646
  msgstr ""
4647
 
4648
+ #: ../addons/ranks/myCRED-addon-ranks.php:1335
4649
+ msgid "Public"
4650
  msgstr ""
4651
 
4652
+ #: ../addons/ranks/myCRED-addon-ranks.php:1339
4653
+ msgid ""
4654
+ "If you want to create a template archive for each rank, you must select to "
4655
+ "have ranks public. Defaults to disabled."
4656
  msgstr ""
4657
 
4658
+ #: ../addons/ranks/myCRED-addon-ranks.php:1342
4659
+ msgid "Archive URL"
4660
  msgstr ""
4661
 
4662
+ #: ../addons/ranks/myCRED-addon-ranks.php:1346
4663
+ msgid "Ignored if Ranks are not public"
4664
  msgstr ""
4665
 
4666
+ #: ../addons/ranks/myCRED-addon-ranks.php:1349
4667
+ msgid "Display Order"
 
 
 
 
4668
  msgstr ""
4669
 
4670
+ #: ../addons/ranks/myCRED-addon-ranks.php:1357
4671
+ msgid "Ascending - Lowest rank to highest"
4672
  msgstr ""
4673
 
4674
+ #: ../addons/ranks/myCRED-addon-ranks.php:1358
4675
+ msgid "Descending - Highest rank to lowest"
4676
  msgstr ""
4677
 
4678
+ #: ../addons/ranks/myCRED-addon-ranks.php:1369
4679
+ msgid ""
4680
+ "Select in what order ranks should be displayed in your admin area and/or "
4681
+ "front if ranks are \"Public\""
4682
  msgstr ""
4683
 
4684
+ #: ../addons/ranks/myCRED-addon-ranks.php:1375
4685
+ msgid "Rank Basis"
4686
  msgstr ""
4687
 
4688
+ #: ../addons/ranks/myCRED-addon-ranks.php:1378
4689
+ msgid "Users are ranked according to their current balance."
4690
  msgstr ""
4691
 
4692
+ #: ../addons/ranks/myCRED-addon-ranks.php:1381
4693
+ msgid ""
4694
+ "Users are ranked according to the total amount of %_plural% they have "
4695
+ "accumulated."
4696
  msgstr ""
4697
 
4698
+ #: ../addons/ranks/myCRED-addon-ranks.php:1385 ../addons/ranks/myCRED-addon-ranks.
4699
+ #: php:1390
4700
+ msgid "Calculate Totals"
4701
  msgstr ""
4702
 
4703
+ #: ../addons/ranks/myCRED-addon-ranks.php:1388
4704
+ msgid ""
4705
+ "Use this button to calculate or recalculate your users totals. If not used, "
4706
+ "the users current balance will be used as a starting point."
4707
  msgstr ""
4708
 
4709
+ #: ../addons/ranks/myCRED-addon-ranks.php:1388
4710
+ msgid ""
4711
+ "Once a users total has been calculated, they will be assigned to their "
4712
+ "appropriate roles. For this reason, it is highly recommended that you first "
4713
+ "setup your ranks!"
4714
  msgstr ""
4715
 
4716
+ #: ../addons/ranks/myCRED-addon-ranks.php:1389
4717
+ msgid ""
4718
+ "Depending on your log size and number of users this process may take a while."
4719
+ " Please do not leave, click \"Update Settings\" or re-fresh this page until "
4720
+ "this is completed!"
4721
  msgstr ""
4722
 
4723
+ #: ../addons/ranks/myCRED-addon-ranks.php:1407
4724
+ msgid "Include in Profile Header."
 
 
 
 
 
 
4725
  msgstr ""
4726
 
4727
+ #: ../addons/ranks/myCRED-addon-ranks.php:1409
4728
+ msgid "Include under the \"Profile\" tab and Profile Header."
4729
  msgstr ""
4730
 
4731
+ #: ../addons/ranks/myCRED-addon-ranks.php:1413
4732
+ msgid "Rank in BuddyPress"
4733
  msgstr ""
4734
 
4735
+ #: ../addons/ranks/myCRED-addon-ranks.php:1430 ../addons/ranks/myCRED-addon-ranks.
4736
+ #: php:1475
4737
  #, php-format
4738
+ msgid ""
4739
+ "Template to use when showing a users Rank in BuddyPress. Use %rank_title% "
4740
+ "for the title and %rank_logo% to show the rank logo. HTML is allowed."
 
 
 
4741
  msgstr ""
4742
 
4743
+ #: ../addons/ranks/myCRED-addon-ranks.php:1452
4744
+ msgid "Include in Topic Replies"
4745
  msgstr ""
4746
 
4747
+ #: ../addons/ranks/myCRED-addon-ranks.php:1453 ../addons/badges/myCRED-addon-
4748
+ #: badges.php:1002
4749
+ msgid "Include in Profile"
4750
  msgstr ""
4751
 
4752
+ #: ../addons/ranks/myCRED-addon-ranks.php:1454
4753
+ msgid "Include in Topic Replies and Profile"
4754
  msgstr ""
4755
 
4756
+ #: ../addons/ranks/myCRED-addon-ranks.php:1458
4757
+ msgid "Rank in bbPress"
4758
  msgstr ""
4759
 
4760
+ #: ../addons/ranks/myCRED-addon-ranks.php:1537
4761
+ msgid "Script Communication Error"
4762
  msgstr ""
4763
 
4764
+ #: ../addons/ranks/myCRED-addon-ranks.php:1609
4765
+ msgid "No. of ranks"
4766
  msgstr ""
4767
 
4768
+ #: ../addons/ranks/myCRED-addon-ranks.php:1614
4769
+ msgid "Remove All Ranks"
4770
  msgstr ""
4771
 
4772
+ #: ../addons/ranks/myCRED-addon-ranks.php:1614
4773
+ msgid "Assign Ranks to Users"
 
 
4774
  msgstr ""
4775
 
4776
+ #: ../addons/ranks/includes/mycred-rank-functions.php:257
4777
+ msgid "mycred_get_users_rank() : Missing required user id"
4778
  msgstr ""
4779
 
4780
+ #: ../addons/ranks/includes/mycred-rank-functions.php:270
4781
+ msgid "no rank"
4782
  msgstr ""
4783
 
4784
+ #: ../addons/ranks/includes/mycred-rank-shortcodes.php:115 ..
4785
+ #: addons/ranks/includes/mycred-rank-shortcodes.php:210
4786
+ msgid "No users found with this rank"
4787
  msgstr ""
4788
 
4789
+ #: ../addons/ranks/includes/mycred-rank-shortcodes.php:122
4790
+ msgid "Rank ID is required!"
4791
  msgstr ""
4792
 
4793
+ #: ../addons/ranks/includes/mycred-rank-shortcodes.php:145
4794
+ msgid "Rank not found. Please check the id and try again."
4795
  msgstr ""
4796
 
4797
+ #. Description of the plugin
4798
+ msgid "Notify your users when their balances changes."
4799
  msgstr ""
4800
 
4801
+ #: ../addons/notifications/myCRED-addon-notifications.php:193
4802
+ msgid "Notifications"
 
4803
  msgstr ""
4804
 
4805
+ #: ../addons/notifications/myCRED-addon-notifications.php:195
4806
+ msgid "Styling"
4807
  msgstr ""
4808
 
4809
+ #: ../addons/notifications/myCRED-addon-notifications.php:198
4810
+ msgid "Use the included CSS Styling for notifications."
4811
  msgstr ""
4812
 
4813
+ #: ../addons/notifications/myCRED-addon-notifications.php:205
4814
  #, php-format
4815
+ msgid "Use %entry% to show the log entry in the notice and %amount% for the amount."
4816
  msgstr ""
4817
 
4818
+ #: ../addons/notifications/myCRED-addon-notifications.php:205
4819
+ msgid "Restore to default"
 
4820
  msgstr ""
4821
 
4822
+ #: ../addons/notifications/myCRED-addon-notifications.php:208
4823
+ msgid "Transient Lifespan"
4824
  msgstr ""
4825
 
4826
+ #: ../addons/notifications/myCRED-addon-notifications.php:212
4827
+ msgid ""
4828
+ "The number of days a users notification is saved before being automatically "
4829
+ "deleted."
4830
  msgstr ""
4831
 
4832
+ #: ../addons/notifications/myCRED-addon-notifications.php:215
4833
+ msgid "Duration"
4834
  msgstr ""
4835
 
4836
+ #: ../addons/notifications/myCRED-addon-notifications.php:219
 
4837
  msgid ""
4838
+ "Number of seconds before a notice is automatically removed after being shown "
4839
+ "to user. Use zero to disable."
4840
  msgstr ""
4841
 
4842
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:165 ../addons/email-
4843
+ #: notices/myCRED-addon-email-notices.php:171 ../addons/email-notices/myCRED-
4844
+ #: addon-email-notices.php:177 ../addons/email-notices/myCRED-addon-email-notices.
4845
+ #: php:283 ../addons/coupons/myCRED-addon-coupons.php:105
4846
+ msgid "Email Notices"
4847
  msgstr ""
4848
 
4849
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:166 ../addons/email-
4850
+ #: notices/myCRED-addon-email-notices.php:1270
4851
+ msgid "Email Notice"
4852
  msgstr ""
4853
 
4854
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:168
4855
+ msgid "Add New Notice"
4856
  msgstr ""
4857
 
4858
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:169
4859
+ msgid "Edit Notice"
 
4860
  msgstr ""
4861
 
4862
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:170
4863
+ msgid "New Notice"
4864
  msgstr ""
4865
 
4866
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:172
4867
+ msgid "View Notice"
 
4868
  msgstr ""
4869
 
4870
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:173
4871
+ msgid "Search Email Notices"
4872
  msgstr ""
4873
 
4874
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:174
4875
+ msgid "No email notices found"
4876
  msgstr ""
4877
 
4878
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:175
4879
+ msgid "No email notices found in Trash"
4880
  msgstr ""
4881
 
4882
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:201
4883
+ msgid "users balance changes"
4884
  msgstr ""
4885
 
4886
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:202
4887
+ msgid "user gains %_plural%"
4888
  msgstr ""
4889
 
4890
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:203
4891
+ msgid "user lose %_plural%"
4892
  msgstr ""
4893
 
4894
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:204
4895
+ msgid "users balance reaches zero"
4896
  msgstr ""
4897
 
4898
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:205
4899
+ msgid "users balance goes minus"
4900
  msgstr ""
4901
 
4902
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:211
4903
+ msgid "Badge Add-on"
4904
  msgstr ""
4905
 
4906
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:212
4907
+ msgid "user gains a badge"
4908
  msgstr ""
4909
 
4910
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:219
4911
+ msgid "Sell Content Add-on"
4912
  msgstr ""
4913
 
4914
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:220
4915
+ msgid "user buys content"
4916
  msgstr ""
4917
 
4918
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:221
4919
+ msgid "authors content gets sold"
4920
  msgstr ""
4921
 
4922
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:228
4923
+ msgid "buyCREDs Add-on"
 
 
4924
  msgstr ""
4925
 
4926
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:229
4927
+ msgid "user buys %_plural%"
4928
  msgstr ""
4929
 
4930
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:236
4931
+ msgid "Transfer Add-on"
 
 
4932
  msgstr ""
4933
 
4934
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:237
4935
+ msgid "user sends %_plural%"
4936
  msgstr ""
4937
 
4938
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:238
4939
+ msgid "user receives %_plural%"
 
 
4940
  msgstr ""
4941
 
4942
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:245
4943
+ msgid "Ranks Add-on"
4944
  msgstr ""
4945
 
4946
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:246
4947
+ msgid "user is demoted"
4948
  msgstr ""
4949
 
4950
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:247
4951
+ msgid "user is promoted"
4952
  msgstr ""
4953
 
4954
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:285
4955
+ msgid ""
4956
+ "Settings that apply to all email notices and can not be overridden for "
4957
+ "individual emails."
4958
  msgstr ""
4959
 
4960
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:286
4961
+ msgid "Email Format"
4962
  msgstr ""
4963
 
4964
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:290
4965
+ msgid "Plain text emails only."
 
4966
  msgstr ""
4967
 
4968
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:294
4969
+ msgid "HTML or Plain text emails."
 
4970
  msgstr ""
4971
 
4972
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:297
4973
+ msgid "Filters"
 
4974
  msgstr ""
4975
 
4976
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:301
4977
+ msgid ""
4978
+ "Allow WordPress and Third Party Plugins to filter the email subject before "
4979
+ "an email is sent."
4980
  msgstr ""
4981
 
4982
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:305
4983
+ msgid ""
4984
+ "Allow WordPress and Third Party Plugins to filter the email content before "
4985
+ "an email is sent."
4986
  msgstr ""
4987
 
4988
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:310 ../addons/email-
4989
+ #: notices/myCRED-addon-email-notices.php:316
4990
+ msgid "Email Schedule"
4991
  msgstr ""
4992
 
4993
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:312
4994
+ msgid "WordPress Cron is disabled. Emails will be sent immediately."
4995
  msgstr ""
4996
 
4997
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:320
4998
+ msgid "Send emails immediately"
4999
  msgstr ""
5000
 
5001
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:324
5002
+ msgid "Send emails once an hour"
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
5003
  msgstr ""
5004
 
5005
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:328
5006
+ msgid "Send emails once a day"
 
5007
  msgstr ""
5008
 
5009
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:331
5010
+ msgid "Subscriptions"
 
5011
  msgstr ""
5012
 
5013
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:333
5014
+ #, php-format
5015
+ msgid ""
5016
+ "Use the %s shortcode to allow users to subscribe / unsubscribe to email "
5017
+ "updates."
5018
  msgstr ""
5019
 
5020
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:338
5021
+ msgid "SMTP Override"
5022
  msgstr ""
5023
 
5024
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:342
5025
+ msgid ""
5026
+ "SMTP Debug. Enable if you are experiencing issues with wp_mail() or if you "
5027
+ "use a SMTP plugin for emails."
5028
  msgstr ""
5029
 
5030
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:345
5031
+ msgid ""
5032
+ "Default email settings. These settings can be individually overridden when "
5033
+ "editing emails."
5034
  msgstr ""
5035
 
5036
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:346 ../addons/email-
5037
+ #: notices/myCRED-addon-email-notices.php:900
5038
+ msgid "Email Settings"
5039
  msgstr ""
5040
 
5041
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:349 ../addons/email-
5042
+ #: notices/myCRED-addon-email-notices.php:1053
5043
+ msgid "Senders Name:"
5044
  msgstr ""
5045
 
5046
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:353 ../addons/email-
5047
+ #: notices/myCRED-addon-email-notices.php:1055
5048
+ msgid "Senders Email:"
5049
  msgstr ""
5050
 
5051
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:357
5052
+ msgid "Reply-To:"
 
5053
  msgstr ""
5054
 
5055
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:361
5056
+ msgid "Default Email Content"
 
5057
  msgstr ""
5058
 
5059
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:365
5060
+ msgid "Default email content."
5061
  msgstr ""
5062
 
5063
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:368
5064
+ msgid "Default Email Styling"
 
 
5065
  msgstr ""
5066
 
5067
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:372
5068
+ msgid "Ignored if HTML is not allowed in emails."
5069
  msgstr ""
5070
 
5071
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:719
5072
+ #, php-format
5073
+ msgctxt "Badge Title - Level 1,2,3.."
5074
+ msgid "%s - Level %d"
5075
  msgstr ""
5076
 
5077
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:809 ../addons/email-
5078
+ #: notices/myCRED-addon-email-notices.php:949
5079
+ msgid "Email Subject"
5080
  msgstr ""
5081
 
5082
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:810 ..
5083
+ #: addons/badges/myCRED-addon-badges.php:1165
5084
+ msgid "Status"
5085
  msgstr ""
5086
 
5087
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:835
5088
+ msgid "Not Active"
5089
  msgstr ""
5090
 
5091
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:838
5092
+ #, php-format
5093
+ msgid "Scheduled:<br /><strong>%1$s</strong>"
5094
  msgstr ""
5095
 
5096
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:843
5097
+ msgid "Active"
5098
  msgstr ""
5099
 
5100
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:845
5101
+ #, php-format
5102
+ msgid "Active - Last run:<br /><strong>%1$s</strong>"
 
5103
  msgstr ""
5104
 
5105
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:855
5106
+ msgid "Email is sent when"
5107
  msgstr ""
5108
 
5109
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:857
5110
+ msgid "Missing instance for this notice!"
 
5111
  msgstr ""
5112
 
5113
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:866 ../addons/email-
5114
+ #: notices/myCRED-addon-email-notices.php:868 ../addons/email-notices/myCRED-
5115
+ #: addon-email-notices.php:870
5116
+ msgid "Sent To"
5117
  msgstr ""
5118
 
5119
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:868 ../addons/email-
5120
+ #: notices/myCRED-addon-email-notices.php:1020
5121
+ msgid "Administrator"
 
 
 
 
5122
  msgstr ""
5123
 
5124
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:870
5125
+ msgid "Both Administrator and User"
 
5126
  msgstr ""
5127
 
5128
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:880 ../addons/email-
5129
+ #: notices/myCRED-addon-email-notices.php:1037
5130
+ msgid "All types"
5131
  msgstr ""
5132
 
5133
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:909
5134
+ msgid "Available Template Tags"
 
 
 
5135
  msgstr ""
5136
 
5137
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:920
5138
+ msgid "Email Header"
 
5139
  msgstr ""
5140
 
5141
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:986
5142
+ msgid "Send this email notice when..."
5143
  msgstr ""
5144
 
5145
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:1017
5146
+ msgid "Recipient:"
5147
  msgstr ""
5148
 
5149
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:1021
5150
+ msgid "Both"
 
 
 
5151
  msgstr ""
5152
 
5153
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:1057
5154
+ msgid "Reply-To Email:"
 
5155
  msgstr ""
5156
 
5157
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:1063
5158
+ msgid "Save"
 
 
5159
  msgstr ""
5160
 
5161
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:1075
5162
+ msgid "CSS Styling"
 
5163
  msgstr ""
5164
 
5165
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:1091
5166
+ msgid "Site Related"
 
5167
  msgstr ""
5168
 
5169
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:1092
5170
+ msgid "Your websites title"
5171
  msgstr ""
5172
 
5173
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:1093
5174
+ msgid "Your websites address"
5175
  msgstr ""
5176
 
5177
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:1094
5178
+ msgid "Your websites tagline (description)"
5179
  msgstr ""
5180
 
5181
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:1095
5182
+ msgid "Your websites admin email"
 
5183
  msgstr ""
5184
 
5185
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:1096
5186
+ msgid "Total number of blog members"
5187
  msgstr ""
5188
 
5189
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:1100
5190
+ msgid "The users new balance"
5191
  msgstr ""
5192
 
5193
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:1101
5194
+ msgid "The users old balance"
 
 
 
 
5195
  msgstr ""
5196
 
5197
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:1102
5198
+ msgid "The amount of points gained or lost in this instance"
5199
  msgstr ""
5200
 
5201
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:1103
5202
+ msgid "The log entry"
5203
  msgstr ""
5204
 
5205
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:1178 ../addons/email-
5206
+ #: notices/myCRED-addon-email-notices.php:1181 ../addons/email-notices/myCRED-
5207
+ #: addon-email-notices.php:1187
5208
+ msgid "Email Notice Updated."
5209
  msgstr ""
5210
 
5211
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:1183
5212
+ msgid "Email Notice Activated"
5213
  msgstr ""
5214
 
5215
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:1184
5216
+ msgid "Email Notice Saved"
5217
  msgstr ""
5218
 
5219
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:1203
5220
+ msgid ""
5221
+ "Once a notice is \"published\" it becomes active! Select \"Save Draft\" if you "
5222
+ "are not yet ready to use this email notice!"
5223
  msgstr ""
5224
 
5225
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:1205
5226
+ #, php-format
5227
+ msgid "This notice will become active on:<br /><strong>%1$s</strong>"
5228
  msgstr ""
5229
 
5230
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:1207
5231
+ msgid "This email notice is active."
 
 
5232
  msgstr ""
5233
 
5234
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:1218
5235
+ msgid "Settings saved."
5236
  msgstr ""
5237
 
5238
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:1269
5239
+ msgid "Unsubscribe"
5240
  msgstr ""
5241
 
5242
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:1290
5243
+ msgid "There are no email notifications yet."
5244
  msgstr ""
5245
 
5246
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:1296 ..
5247
+ #: addons/badges/myCRED-addon-badges.php:1182
5248
+ msgid "Save Changes"
5249
  msgstr ""
5250
 
5251
+ #: ../addons/stats/myCRED-addon-stats.php:54
5252
+ msgid "Statistics"
5253
  msgstr ""
5254
 
5255
+ #: ../addons/stats/myCRED-addon-stats.php:126
5256
+ msgid "Overview"
5257
  msgstr ""
5258
 
5259
+ #: ../addons/stats/myCRED-addon-stats.php:192
5260
+ msgid "Refresh"
 
 
 
5261
  msgstr ""
5262
 
5263
+ #: ../addons/stats/myCRED-addon-stats.php:248
5264
+ msgid "Your log is empty. No statistics can be shown."
 
 
5265
  msgstr ""
5266
 
5267
+ #: ../addons/stats/widgets/mycred-stats-widget-circulation.php:44
5268
+ #, php-format
5269
+ msgid "Total %s:"
5270
  msgstr ""
5271
 
5272
+ #: ../addons/stats/widgets/mycred-stats-widget-circulation.php:138
5273
+ #, php-format
5274
+ msgid "Total amount of %s in circulation"
 
 
5275
  msgstr ""
5276
 
5277
+ #: ../addons/stats/widgets/mycred-stats-widget-circulation.php:170
5278
+ msgid "Total gains (%)"
5279
  msgstr ""
5280
 
5281
+ #: ../addons/stats/widgets/mycred-stats-widget-circulation.php:174
5282
+ msgid "Total loses (%)"
 
 
5283
  msgstr ""
5284
 
5285
+ #: ../addons/stats/widgets/mycred-stats-widget-circulation.php:178
5286
+ #, php-format
5287
+ msgid "Total Gained: %s"
 
 
5288
  msgstr ""
5289
 
5290
+ #: ../addons/stats/widgets/mycred-stats-widget-circulation.php:178
5291
+ #, php-format
5292
+ msgid "Total Spent: %s"
 
5293
  msgstr ""
5294
 
5295
+ #: ../addons/stats/widgets/mycred-stats-widget-circulation.php:192
5296
+ msgid "This Year"
 
 
5297
  msgstr ""
5298
 
5299
+ #: ../addons/stats/widgets/mycred-stats-widget-circulation.php:196 ..
5300
+ #: addons/stats/widgets/mycred-stats-widget-circulation.php:198 ..
5301
+ #: addons/stats/widgets/mycred-stats-widget-circulation.php:200 ..
5302
+ #: addons/stats/widgets/mycred-stats-widget-circulation.php:202
5303
+ msgid "Gained"
5304
  msgstr ""
5305
 
5306
+ #: ../addons/stats/widgets/mycred-stats-widget-circulation.php:197 ..
5307
+ #: addons/stats/widgets/mycred-stats-widget-circulation.php:199 ..
5308
+ #: addons/stats/widgets/mycred-stats-widget-circulation.php:201 ..
5309
+ #: addons/stats/widgets/mycred-stats-widget-circulation.php:203
5310
+ msgid "Lost"
5311
  msgstr ""
5312
 
5313
+ #: ../addons/stats/widgets/mycred-stats-widget-daily-loses.php:118
5314
+ msgid "Most common ways your users have lost or spent points during this period."
5315
  msgstr ""
5316
 
5317
+ #: ../addons/stats/widgets/mycred-stats-widget-daily-loses.php:120
5318
+ #, php-format
5319
+ msgid "Most common ways your users have lost or spent %_plural% during this period."
5320
  msgstr ""
5321
 
5322
+ #: ../addons/stats/widgets/mycred-stats-widget-daily-loses.php:127
5323
+ msgid "Loses in the last 10 days"
5324
  msgstr ""
5325
 
5326
+ #: ../addons/stats/widgets/mycred-stats-widget-daily-loses.php:151 ..
5327
+ #: addons/stats/widgets/mycred-stats-widget-daily-gains.php:151
5328
+ msgid "View"
5329
  msgstr ""
5330
 
5331
+ #: ../addons/stats/widgets/mycred-stats-widget-daily-loses.php:166 ..
5332
+ #: addons/stats/widgets/mycred-stats-widget-daily-gains.php:166
5333
+ msgid "No data found"
5334
  msgstr ""
5335
 
5336
+ #: ../addons/stats/widgets/mycred-stats-widget-daily-gains.php:118
5337
+ msgid "Most common ways your users have gained points during this period."
5338
  msgstr ""
5339
 
5340
+ #: ../addons/stats/widgets/mycred-stats-widget-daily-gains.php:120
5341
+ #, php-format
5342
+ msgid "Most common ways your users have gained %_plural% during this period."
5343
  msgstr ""
5344
 
5345
+ #: ../addons/stats/widgets/mycred-stats-widget-daily-gains.php:127
5346
+ msgid "Gains in the last 10 days"
5347
  msgstr ""
5348
 
5349
+ #: ../addons/badges/myCRED-addon-badges.php:48 ../addons/badges/myCRED-addon-
5350
+ #: badges.php:49 ../addons/badges/myCRED-addon-badges.php:50 ..
5351
+ #: addons/badges/myCRED-addon-badges.php:144 ../addons/badges/myCRED-addon-
5352
+ #: badges.php:145 ../addons/badges/myCRED-addon-badges.php:383 ..
5353
+ #: addons/badges/myCRED-addon-badges.php:389 ../addons/badges/myCRED-addon-
5354
+ #: badges.php:395
5355
+ msgid "Badges"
5356
  msgstr ""
5357
 
5358
+ #: ../addons/badges/myCRED-addon-badges.php:169
5359
+ #, php-format
5360
+ msgid "Badges (%d)"
5361
  msgstr ""
5362
 
5363
+ #: ../addons/badges/myCRED-addon-badges.php:260
5364
+ #, php-format
5365
+ msgid "%d Users earned this badge."
5366
  msgstr ""
5367
 
5368
+ #: ../addons/badges/myCRED-addon-badges.php:264
5369
+ msgid "No users has yet earned this badge."
5370
  msgstr ""
5371
 
5372
+ #: ../addons/badges/myCRED-addon-badges.php:287
5373
+ msgid "No connections where removed."
5374
  msgstr ""
5375
 
5376
+ #: ../addons/badges/myCRED-addon-badges.php:289
5377
+ #, php-format
5378
+ msgid "%s connections where removed."
5379
  msgstr ""
5380
 
5381
+ #: ../addons/badges/myCRED-addon-badges.php:384
5382
+ msgid "Badge"
5383
  msgstr ""
5384
 
5385
+ #: ../addons/badges/myCRED-addon-badges.php:386
5386
+ msgid "Add New Badge"
 
5387
  msgstr ""
5388
 
5389
+ #: ../addons/badges/myCRED-addon-badges.php:387
5390
+ msgid "Edit Badge"
5391
  msgstr ""
5392
 
5393
+ #: ../addons/badges/myCRED-addon-badges.php:388
5394
+ msgid "New Badge"
5395
  msgstr ""
5396
 
5397
+ #: ../addons/badges/myCRED-addon-badges.php:390
5398
+ msgid "View Badge"
5399
  msgstr ""
5400
 
5401
+ #: ../addons/badges/myCRED-addon-badges.php:391
5402
+ msgid "Search Badge"
 
5403
  msgstr ""
5404
 
5405
+ #: ../addons/badges/myCRED-addon-badges.php:392
5406
+ msgid "No badges found"
 
5407
  msgstr ""
5408
 
5409
+ #: ../addons/badges/myCRED-addon-badges.php:393
5410
+ msgid "No badges found in Trash"
5411
  msgstr ""
5412
 
5413
+ #: ../addons/badges/myCRED-addon-badges.php:439 ../addons/badges/myCRED-addon-
5414
+ #: badges.php:541
5415
+ msgid "Badge Name"
5416
  msgstr ""
5417
 
5418
+ #: ../addons/badges/myCRED-addon-badges.php:440
5419
+ msgid "Badge Images"
5420
  msgstr ""
5421
 
5422
+ #: ../addons/badges/myCRED-addon-badges.php:441
5423
+ msgid "Requirements"
5424
  msgstr ""
5425
 
5426
+ #: ../addons/badges/myCRED-addon-badges.php:481
5427
+ msgid "A user must have gained or lost:"
 
5428
  msgstr ""
5429
 
5430
+ #: ../addons/badges/myCRED-addon-badges.php:517 ../addons/badges/myCRED-addon-
5431
+ #: badges.php:520 ../addons/badges/myCRED-addon-badges.php:524 ..
5432
+ #: addons/badges/myCRED-addon-badges.php:525 ../addons/badges/myCRED-addon-
5433
+ #: badges.php:526
5434
+ msgid "Badge Updated."
5435
  msgstr ""
5436
 
5437
+ #: ../addons/badges/myCRED-addon-badges.php:522
5438
+ msgid "Badge Enabled"
5439
  msgstr ""
5440
 
5441
+ #: ../addons/badges/myCRED-addon-badges.php:523
5442
+ msgid "Badge Saved"
5443
  msgstr ""
5444
 
5445
+ #: ../addons/badges/myCRED-addon-badges.php:555
5446
+ msgid "Badge Setup"
5447
  msgstr ""
5448
 
5449
+ #: ../addons/badges/myCRED-addon-badges.php:582
5450
+ msgid "Assign Badge"
5451
  msgstr ""
5452
 
5453
+ #: ../addons/badges/myCRED-addon-badges.php:583
5454
+ msgid "Remove Connections"
 
5455
  msgstr ""
5456
 
5457
+ #: ../addons/badges/myCRED-addon-badges.php:638
5458
+ msgid "Time(s)"
 
5459
  msgstr ""
5460
 
5461
+ #: ../addons/badges/myCRED-addon-badges.php:639
5462
+ msgid "In total"
 
5463
  msgstr ""
5464
 
5465
+ #: ../addons/badges/myCRED-addon-badges.php:671 ../addons/badges/myCRED-addon-
5466
+ #: badges.php:771 ../addons/badges/myCRED-addon-badges.php:831 ..
5467
+ #: addons/badges/myCRED-addon-badges.php:846
5468
+ msgid "Badge Image"
5469
  msgstr ""
5470
 
5471
+ #: ../addons/badges/myCRED-addon-badges.php:672 ../addons/badges/myCRED-addon-
5472
+ #: badges.php:672
5473
+ msgid "Set badge image"
5474
  msgstr ""
5475
 
5476
+ #: ../addons/badges/myCRED-addon-badges.php:682
5477
+ msgid "Default Image"
 
 
5478
  msgstr ""
5479
 
5480
+ #: ../addons/badges/myCRED-addon-badges.php:683 ../addons/badges/myCRED-addon-
5481
+ #: badges.php:741 ../addons/badges/myCRED-addon-badges.php:772 ..
5482
+ #: addons/badges/myCRED-addon-badges.php:831
5483
+ msgid "image url"
5484
  msgstr ""
5485
 
5486
+ #: ../addons/badges/myCRED-addon-badges.php:684 ../addons/badges/myCRED-addon-
5487
+ #: badges.php:742 ../addons/badges/myCRED-addon-badges.php:773 ..
5488
+ #: addons/badges/myCRED-addon-badges.php:831
5489
+ msgid "Add Image"
 
5490
  msgstr ""
5491
 
5492
+ #: ../addons/badges/myCRED-addon-badges.php:685
5493
+ msgid "Optional image to show when a user has not yet earned this badge."
 
5494
  msgstr ""
5495
 
5496
+ #: ../addons/badges/myCRED-addon-badges.php:704 ../addons/badges/myCRED-addon-
5497
+ #: badges.php:756
5498
  #, php-format
5499
+ msgid "Level %d"
 
 
5500
  msgstr ""
5501
 
5502
+ #: ../addons/badges/myCRED-addon-badges.php:709 ../addons/badges/myCRED-addon-
5503
+ #: badges.php:761 ../addons/badges/myCRED-addon-badges.php:831
5504
+ msgid "for"
5505
  msgstr ""
5506
 
5507
+ #: ../addons/badges/myCRED-addon-badges.php:740
5508
+ msgid "Main Image"
 
5509
  msgstr ""
5510
 
5511
+ #: ../addons/badges/myCRED-addon-badges.php:774 ../addons/badges/myCRED-addon-
5512
+ #: badges.php:831
5513
+ msgid "Leave empty if you do not want to assign a custom image for this level."
5514
  msgstr ""
5515
 
5516
+ #: ../addons/badges/myCRED-addon-badges.php:774 ../addons/badges/myCRED-addon-
5517
+ #: badges.php:831
5518
+ msgid "Remove this level"
5519
  msgstr ""
5520
 
5521
+ #: ../addons/badges/myCRED-addon-badges.php:788
5522
+ msgid "Add Level"
 
 
5523
  msgstr ""
5524
 
5525
+ #: ../addons/badges/myCRED-addon-badges.php:831 ../addons/badges/myCRED-addon-
5526
+ #: badges.php:1154
5527
+ msgid "Level"
5528
  msgstr ""
5529
 
5530
+ #: ../addons/badges/myCRED-addon-badges.php:848
5531
+ msgid "Use as Badge"
 
 
5532
  msgstr ""
5533
 
5534
+ #: ../addons/badges/myCRED-addon-badges.php:986 ../addons/badges/myCRED-addon-
5535
+ #: badges.php:1017
5536
+ msgid "Show all badges, including badges users have not yet earned."
5537
  msgstr ""
5538
 
5539
+ #: ../addons/badges/myCRED-addon-badges.php:1003
5540
+ msgid "Include in Forum Replies"
5541
+ msgstr ""
5542
+
5543
+ #: ../addons/badges/myCRED-addon-badges.php:1004
5544
+ msgid "Include in Profile and Forum Replies"
5545
  msgstr ""
5546
 
5547
+ #: ../addons/badges/myCRED-addon-badges.php:1111
5548
+ msgid "User Badges"
 
5549
  msgstr ""
5550
 
5551
+ #: ../addons/badges/myCRED-addon-badges.php:1116
5552
  msgid ""
5553
+ "Here you can view the badges this user has earned and if needed, manually "
5554
+ "give or take away a badge from a user."
5555
  msgstr ""
5556
 
5557
+ #: ../addons/badges/myCRED-addon-badges.php:1125
5558
+ msgid "Not earned"
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
5559
  msgstr ""
5560
 
5561
+ #: ../addons/badges/myCRED-addon-badges.php:1131 ../addons/badges/myCRED-addon-
5562
+ #: badges.php:1168
5563
+ msgid "Earned"
5564
  msgstr ""
5565
 
5566
+ #: ../addons/badges/myCRED-addon-badges.php:1143
5567
+ msgid "No image"
 
 
5568
  msgstr ""
5569
 
5570
+ #: ../addons/badges/myCRED-addon-badges.php:1150
5571
+ msgid "Select a level"
 
 
 
 
5572
  msgstr ""
5573
 
5574
+ #: ../addons/badges/includes/mycred-badge-functions.php:68
5575
  #, php-format
5576
+ msgid "Level %s"
5577
  msgstr ""
5578
 
5579
+ #: ../addons/badges/includes/mycred-badge-functions.php:71
5580
  #, php-format
5581
+ msgctxt "\"Points\" for \"reference\" \"x time(s)\" - Level"
5582
+ msgid "%s for %s %s - %s"
5583
  msgstr ""
5584
 
5585
+ #: ../addons/badges/includes/mycred-badge-functions.php:71 ..
5586
+ #: addons/coupons/myCRED-addon-coupons.php:221 ../addons/coupons/myCRED-addon-
5587
+ #: coupons.php:516
5588
  #, php-format
5589
+ msgid "1 time"
5590
+ msgid_plural "%d times"
5591
+ msgstr[0] ""
5592
+ msgstr[1] ""
5593
 
5594
+ #: ../addons/badges/includes/mycred-badge-functions.php:73
5595
  #, php-format
5596
+ msgctxt "\"x points\" for \"reference\" in total"
5597
+ msgid "%s for %s in total"
5598
  msgstr ""
5599
 
5600
+ #. Description of the plugin
5601
+ msgid "Create coupons that your users can use to add points to their accounts."
 
5602
  msgstr ""
5603
 
5604
+ #: ../addons/coupons/myCRED-addon-coupons.php:94 ..
5605
+ #: addons/coupons/includes/mycred-coupon-shortcodes.php:18
5606
+ msgid "Coupon"
 
5607
  msgstr ""
5608
 
5609
+ #: ../addons/coupons/myCRED-addon-coupons.php:95
5610
+ msgid "Create New"
 
5611
  msgstr ""
5612
 
5613
+ #: ../addons/coupons/myCRED-addon-coupons.php:96
5614
+ msgid "Create New Coupon"
5615
  msgstr ""
5616
 
5617
+ #: ../addons/coupons/myCRED-addon-coupons.php:97
5618
+ msgid "Edit Coupon"
5619
  msgstr ""
5620
 
5621
+ #: ../addons/coupons/myCRED-addon-coupons.php:98
5622
+ msgid "New Coupon"
5623
  msgstr ""
5624
 
5625
+ #: ../addons/coupons/myCRED-addon-coupons.php:101
5626
+ msgid "Search coupons"
 
 
5627
  msgstr ""
5628
 
5629
+ #: ../addons/coupons/myCRED-addon-coupons.php:102
5630
+ msgid "No coupons found"
5631
  msgstr ""
5632
 
5633
+ #: ../addons/coupons/myCRED-addon-coupons.php:103
5634
+ msgid "No coupons found in Trash"
5635
  msgstr ""
5636
 
5637
+ #: ../addons/coupons/myCRED-addon-coupons.php:129 ../addons/coupons/myCRED-addon-
5638
+ #: coupons.php:130 ../addons/coupons/myCRED-addon-coupons.php:131 ..
5639
+ #: addons/coupons/myCRED-addon-coupons.php:132
5640
+ msgid "Coupon updated."
5641
  msgstr ""
5642
 
5643
+ #: ../addons/coupons/myCRED-addon-coupons.php:134
5644
+ msgid "Coupon published."
5645
  msgstr ""
5646
 
5647
+ #: ../addons/coupons/myCRED-addon-coupons.php:135
5648
+ msgid "Coupon saved."
5649
  msgstr ""
5650
 
5651
+ #: ../addons/coupons/myCRED-addon-coupons.php:138
5652
+ msgid "Draft Coupon saved."
 
 
5653
  msgstr ""
5654
 
5655
+ #: ../addons/coupons/myCRED-addon-coupons.php:155
5656
+ msgid "Unique Coupon Code"
 
5657
  msgstr ""
5658
 
5659
+ #: ../addons/coupons/myCRED-addon-coupons.php:172
5660
+ msgid "Coupon Code"
5661
  msgstr ""
5662
 
5663
+ #: ../addons/coupons/myCRED-addon-coupons.php:173 ../addons/coupons/myCRED-addon-
5664
+ #: coupons.php:381
5665
+ msgid "Value"
 
 
 
5666
  msgstr ""
5667
 
5668
+ #: ../addons/coupons/myCRED-addon-coupons.php:174
5669
+ msgid "Used"
5670
  msgstr ""
5671
 
5672
+ #: ../addons/coupons/myCRED-addon-coupons.php:176
5673
+ msgid "Expires"
5674
  msgstr ""
5675
 
5676
+ #: ../addons/coupons/myCRED-addon-coupons.php:210 ../addons/coupons/myCRED-addon-
5677
+ #: coupons.php:505
5678
+ msgid "not yet used"
5679
+ msgstr ""
5680
+
5681
+ #: ../addons/coupons/myCRED-addon-coupons.php:232
5682
+ msgid "Per User"
5683
+ msgstr ""
5684
+
5685
+ #: ../addons/coupons/myCRED-addon-coupons.php:241
5686
+ msgid "Never"
5687
+ msgstr ""
5688
+
5689
+ #: ../addons/coupons/myCRED-addon-coupons.php:247
5690
+ msgid "Expired"
5691
  msgstr ""
5692
 
5693
+ #: ../addons/coupons/myCRED-addon-coupons.php:251
5694
  #, php-format
5695
+ msgid "In %s time"
5696
  msgstr ""
5697
 
5698
+ #: ../addons/coupons/myCRED-addon-coupons.php:311
5699
+ msgid "Coupon Setup"
5700
  msgstr ""
5701
 
5702
+ #: ../addons/coupons/myCRED-addon-coupons.php:320
5703
+ msgid "Coupon Limits"
5704
  msgstr ""
5705
 
5706
+ #: ../addons/coupons/myCRED-addon-coupons.php:329
5707
+ msgid "Coupon Requirements"
5708
  msgstr ""
5709
 
5710
+ #: ../addons/coupons/myCRED-addon-coupons.php:339
5711
+ msgid "Usage"
5712
  msgstr ""
5713
 
5714
+ #: ../addons/coupons/myCRED-addon-coupons.php:384
5715
+ #, php-format
5716
+ msgid "The amount of %plural% this coupon is worth."
5717
  msgstr ""
5718
 
5719
+ #: ../addons/coupons/myCRED-addon-coupons.php:393
5720
+ msgid "Select the point type that this coupon is applied."
 
 
5721
  msgstr ""
5722
 
5723
+ #: ../addons/coupons/myCRED-addon-coupons.php:403
5724
+ msgid "Expire"
 
 
 
5725
  msgstr ""
5726
 
5727
+ #: ../addons/coupons/myCRED-addon-coupons.php:406
5728
+ msgid "Optional date when this coupon expires. Expired coupons will be trashed."
5729
  msgstr ""
5730
 
5731
+ #: ../addons/coupons/myCRED-addon-coupons.php:439
5732
+ msgid "Global Maximum"
5733
  msgstr ""
5734
 
5735
+ #: ../addons/coupons/myCRED-addon-coupons.php:442
5736
+ msgid ""
5737
+ "The maximum number of times this coupon can be used. Note that the coupon "
5738
+ "will be automatically trashed once this maximum is reached!"
5739
  msgstr ""
5740
 
5741
+ #: ../addons/coupons/myCRED-addon-coupons.php:446
5742
+ msgid "User Maximum"
5743
  msgstr ""
5744
 
5745
+ #: ../addons/coupons/myCRED-addon-coupons.php:449
5746
+ msgid "The maximum number of times this coupon can be used by a user."
5747
  msgstr ""
5748
 
5749
+ #: ../addons/coupons/myCRED-addon-coupons.php:482
5750
+ msgid ""
5751
+ "Optional minimum balance a user must have in order to use this coupon. Use "
5752
+ "zero to disable."
5753
  msgstr ""
5754
 
5755
+ #: ../addons/coupons/myCRED-addon-coupons.php:485
5756
+ msgid "Maximum Balance"
5757
  msgstr ""
5758
 
5759
+ #: ../addons/coupons/myCRED-addon-coupons.php:487
5760
+ msgid ""
5761
+ "Optional maximum balance a user can have in order to use this coupon. Use "
5762
+ "zero to disable."
5763
  msgstr ""
5764
 
5765
+ #: ../addons/coupons/myCRED-addon-coupons.php:561
5766
+ #, php-format
5767
+ msgid ""
5768
+ "Log entry for successful coupon redemption. Use %coupon% to show the coupon "
5769
+ "code."
5770
  msgstr ""
5771
 
5772
+ #: ../addons/coupons/myCRED-addon-coupons.php:564
5773
+ msgid "Invalid Coupon Message"
5774
  msgstr ""
5775
 
5776
+ #: ../addons/coupons/myCRED-addon-coupons.php:568
5777
+ msgid "Message to show when users try to use a coupon that does not exists."
5778
  msgstr ""
5779
 
5780
+ #: ../addons/coupons/myCRED-addon-coupons.php:571
5781
+ msgid "Expired Coupon Message"
5782
  msgstr ""
5783
 
5784
+ #: ../addons/coupons/myCRED-addon-coupons.php:575
5785
+ msgid "Message to show when users try to use that has expired."
5786
  msgstr ""
5787
 
5788
+ #: ../addons/coupons/myCRED-addon-coupons.php:578
5789
+ msgid "User Limit Message"
5790
  msgstr ""
5791
 
5792
+ #: ../addons/coupons/myCRED-addon-coupons.php:582
5793
+ msgid "Message to show when the user limit has been reached for the coupon."
5794
  msgstr ""
5795
 
5796
+ #: ../addons/coupons/myCRED-addon-coupons.php:585
5797
+ msgid "Minimum Balance Message"
5798
  msgstr ""
5799
 
5800
+ #: ../addons/coupons/myCRED-addon-coupons.php:589
5801
+ msgid ""
5802
+ "Message to show when a user does not meet the minimum balance requirement. "
5803
+ "(if used)"
5804
  msgstr ""
5805
 
5806
+ #: ../addons/coupons/myCRED-addon-coupons.php:592
5807
+ msgid "Maximum Balance Message"
5808
+ msgstr ""
5809
+
5810
+ #: ../addons/coupons/myCRED-addon-coupons.php:596
5811
  msgid ""
5812
+ "Message to show when a user does not meet the maximum balance requirement. "
5813
+ "(if used)"
5814
  msgstr ""
5815
 
5816
+ #: ../addons/coupons/myCRED-addon-coupons.php:599
5817
+ msgid "Success Message"
5818
  msgstr ""
5819
 
5820
+ #: ../addons/coupons/myCRED-addon-coupons.php:603
5821
+ msgid "Message to show when a coupon was successfully deposited to a users account."
5822
  msgstr ""
5823
 
5824
+ #: ../addons/coupons/includes/mycred-coupon-shortcodes.php:19
5825
+ msgid "Apply Coupon"
5826
  msgstr ""
5827
 
5828
+ #: ../addons/sell-content/myCRED-addon-sell-content.php:44 ../addons/buy-
5829
+ #: creds/myCRED-addon-buy-creds.php:1539
5830
+ msgid "Buy Now"
5831
  msgstr ""
5832
 
5833
+ #: ../addons/sell-content/myCRED-addon-sell-content.php:74
5834
+ msgid "Hours"
 
 
5835
  msgstr ""
5836
 
5837
+ #: ../addons/sell-content/myCRED-addon-sell-content.php:111
5838
+ msgid "Profit Share"
5839
  msgstr ""
5840
 
5841
+ #: ../addons/sell-content/myCRED-addon-sell-content.php:119
5842
+ msgid "Save Profit Share"
5843
  msgstr ""
5844
 
5845
+ #: ../addons/sell-content/myCRED-addon-sell-content.php:165
5846
+ msgid "Profit Share override saved"
 
5847
  msgstr ""
5848
 
5849
+ #: ../addons/sell-content/myCRED-addon-sell-content.php:327
5850
+ msgid "You can not buy this content."
5851
  msgstr ""
5852
 
5853
+ #: ../addons/sell-content/myCRED-addon-sell-content.php:372
5854
+ msgid "Error. Try Again"
5855
  msgstr ""
5856
 
5857
+ #: ../addons/sell-content/myCRED-addon-sell-content.php:394
5858
+ msgid "No Payout. Just charge."
5859
  msgstr ""
5860
 
5861
+ #: ../addons/sell-content/myCRED-addon-sell-content.php:395
5862
+ msgid "Pay Content Author."
5863
  msgstr ""
5864
 
5865
+ #: ../addons/sell-content/myCRED-addon-sell-content.php:403
5866
+ msgid "Post Types"
 
5867
  msgstr ""
5868
 
5869
+ #: ../addons/sell-content/myCRED-addon-sell-content.php:407
5870
+ msgid "Comma separated list of post types that can be sold."
5871
  msgstr ""
5872
 
5873
+ #: ../addons/sell-content/myCRED-addon-sell-content.php:437
5874
+ msgid "Percentage to pay Author"
 
5875
  msgstr ""
5876
 
5877
+ #: ../addons/sell-content/myCRED-addon-sell-content.php:439
5878
  msgid ""
5879
+ "Percentage of the price to pay the author. Can not be zero and is ignored if "
5880
+ "authors are not paid."
5881
  msgstr ""
5882
 
5883
+ #: ../addons/sell-content/myCRED-addon-sell-content.php:447
5884
+ msgid "Defaults"
5885
  msgstr ""
5886
 
5887
+ #: ../addons/sell-content/myCRED-addon-sell-content.php:455
5888
+ msgid "Allow authors to change price."
5889
  msgstr ""
5890
 
5891
+ #: ../addons/sell-content/myCRED-addon-sell-content.php:464
5892
+ msgid "Allow authors to change button label."
5893
+ msgstr ""
5894
+
5895
+ #: ../addons/sell-content/myCRED-addon-sell-content.php:468
5896
+ msgid "Purchases expire after"
5897
  msgstr ""
5898
 
5899
+ #: ../addons/sell-content/myCRED-addon-sell-content.php:470
5900
+ msgid "Use zero for permanent sales."
5901
  msgstr ""
5902
 
5903
+ #: ../addons/sell-content/myCRED-addon-sell-content.php:476
5904
+ msgid "For Visitors"
5905
  msgstr ""
5906
 
5907
+ #: ../addons/sell-content/myCRED-addon-sell-content.php:486
5908
+ #, php-format
5909
+ msgid ""
5910
+ "Do <strong>not</strong> use the %buy_button% in this template as a user must "
5911
+ "be logged in to buy content!"
5912
  msgstr ""
5913
 
5914
+ #: ../addons/sell-content/myCRED-addon-sell-content.php:491
5915
+ msgid "For Members"
5916
  msgstr ""
5917
 
5918
+ #: ../addons/sell-content/myCRED-addon-sell-content.php:501 ../addons/sell-
5919
+ #: content/myCRED-addon-sell-content.php:516
5920
  #, php-format
5921
+ msgid "Your template must contain the %buy_button% tag for purchases to work!"
5922
  msgstr ""
5923
 
5924
+ #: ../addons/sell-content/myCRED-addon-sell-content.php:506
5925
+ msgid "For members that can not afford to buy"
 
5926
  msgstr ""
5927
 
5928
+ #: ../addons/sell-content/myCRED-addon-sell-content.php:520
5929
+ msgid "Log template for Purchases"
5930
  msgstr ""
5931
 
5932
+ #: ../addons/sell-content/myCRED-addon-sell-content.php:527
5933
+ msgid "Log template for Sales"
5934
  msgstr ""
5935
 
5936
+ #: ../addons/sell-content/myCRED-addon-sell-content.php:580
5937
+ #, php-format
5938
+ msgid "%s Sell This"
5939
  msgstr ""
5940
 
5941
+ #: ../addons/sell-content/myCRED-addon-sell-content.php:635
5942
+ #, php-format
5943
+ msgid "%s Sell Content needs to be setup before you can use this feature."
5944
  msgstr ""
5945
 
5946
+ #: ../addons/sell-content/myCRED-addon-sell-content.php:638
5947
+ msgid "Setup add-on"
5948
  msgstr ""
5949
 
5950
+ #: ../addons/sell-content/myCRED-addon-sell-content.php:638
5951
+ msgid "Lets do it"
5952
  msgstr ""
5953
 
5954
+ #: ../addons/sell-content/myCRED-addon-sell-content.php:676
5955
+ #, php-format
5956
+ msgid "Enable sale of this %s"
5957
  msgstr ""
5958
 
5959
+ #: ../addons/sell-content/myCRED-addon-sell-content.php:690
5960
+ msgid "Purchase expires after"
 
 
5961
  msgstr ""
5962
 
5963
+ #: ../addons/sell-content/myCRED-addon-sell-content.php:1016
5964
+ msgid "Thank you for your purchase!"
 
5965
  msgstr ""
5966
 
5967
+ #: ../addons/sell-content/myCRED-addon-sell-content.php:1104 ../addons/sell-
5968
+ #: content/myCRED-addon-sell-content.php:1190
5969
+ msgid "The following content is set for sale:"
5970
  msgstr ""
5971
 
5972
+ #: ../addons/sell-content/myCRED-addon-sell-content.php:1209 ../addons/buy-
5973
+ #: creds/myCRED-addon-buy-creds.php:1270
5974
+ msgid "No purchases found"
5975
  msgstr ""
5976
 
5977
+ #: ../addons/sell-content/myCRED-addon-sell-content.php:1253
5978
+ msgid "Purchased"
5979
  msgstr ""
5980
 
5981
+ #. Description of the plugin
5982
+ msgid ""
5983
+ "The <strong>buy</strong>CRED Add-on allows your users to buy points using "
5984
+ "PayPal, Skrill (Moneybookers), Zombaio or NETbilling. "
5985
+ "<strong>buy</strong>CRED can also let your users buy points for other "
5986
+ "members."
5987
  msgstr ""
5988
 
5989
+ #: ../addons/buy-creds/myCRED-addon-buy-creds.php:56 ../addons/buy-creds/myCRED-
5990
+ #: addon-buy-creds.php:57 ../addons/buy-creds/myCRED-addon-buy-creds.php:58
5991
+ msgid "Payment Gateways"
5992
  msgstr ""
5993
 
5994
+ #: ../addons/buy-creds/myCRED-addon-buy-creds.php:273
5995
+ msgctxt "Post Type General Name"
5996
+ msgid "Pending Payments"
5997
  msgstr ""
5998
 
5999
+ #: ../addons/buy-creds/myCRED-addon-buy-creds.php:274
6000
+ msgctxt "Post Type Singular Name"
6001
+ msgid "Pending Payment"
6002
  msgstr ""
6003
 
6004
+ #: ../addons/buy-creds/myCRED-addon-buy-creds.php:275 ../addons/buy-creds/myCRED-
6005
+ #: addon-buy-creds.php:277
6006
+ msgid "Pending Payments"
 
6007
  msgstr ""
6008
 
6009
+ #: ../addons/buy-creds/myCRED-addon-buy-creds.php:281
6010
+ msgid "Edit Pending Payment"
 
 
 
 
 
 
6011
  msgstr ""
6012
 
6013
+ #: ../addons/buy-creds/myCRED-addon-buy-creds.php:284 ../addons/buy-creds/myCRED-
6014
+ #: addon-buy-creds.php:1752
6015
+ msgid "No pending payments found"
6016
  msgstr ""
6017
 
6018
+ #: ../addons/buy-creds/myCRED-addon-buy-creds.php:285
6019
+ msgid "Not found in Trash"
6020
  msgstr ""
6021
 
6022
+ #: ../addons/buy-creds/myCRED-addon-buy-creds.php:341 ../addons/buy-creds/myCRED-
6023
+ #: addon-buy-creds.php:1078 ../addons/buy-creds/myCRED-addon-buy-creds.php:1711
6024
+ msgid "Transaction ID"
6025
  msgstr ""
6026
 
6027
+ #: ../addons/buy-creds/myCRED-addon-buy-creds.php:343 ../addons/buy-creds/myCRED-
6028
+ #: addon-buy-creds.php:1074
6029
+ msgid "Buyer"
6030
  msgstr ""
6031
 
6032
+ #: ../addons/buy-creds/myCRED-addon-buy-creds.php:345 ../addons/buy-creds/myCRED-
6033
+ #: addon-buy-creds.php:1714 ../addons/buy-creds/abstracts/mycred-abstract-payment-
6034
+ #: gateway.php:594
6035
+ msgid "Cost"
6036
  msgstr ""
6037
 
6038
+ #: ../addons/buy-creds/myCRED-addon-buy-creds.php:347
6039
+ msgid "Type"
6040
  msgstr ""
6041
 
6042
+ #: ../addons/buy-creds/myCRED-addon-buy-creds.php:440
6043
+ msgid "Pay Out"
6044
  msgstr ""
6045
 
6046
+ #: ../addons/buy-creds/myCRED-addon-buy-creds.php:474
6047
+ msgid "buyCRED Purchase Log"
6048
  msgstr ""
6049
 
6050
+ #: ../addons/buy-creds/myCRED-addon-buy-creds.php:475 ../addons/buy-creds/myCRED-
6051
+ #: addon-buy-creds.php:726 ../addons/buy-creds/myCRED-addon-buy-creds.php:922
6052
+ msgid "Purchase Log"
6053
  msgstr ""
6054
 
6055
+ #: ../addons/buy-creds/myCRED-addon-buy-creds.php:613
6056
+ msgid "Please login to purchase %_plural%"
6057
  msgstr ""
6058
 
6059
+ #: ../addons/buy-creds/myCRED-addon-buy-creds.php:628
6060
+ #, php-format
6061
+ msgid "Gift purchase from %display_name%."
6062
  msgstr ""
6063
 
6064
+ #: ../addons/buy-creds/myCRED-addon-buy-creds.php:647
6065
+ #, php-format
6066
+ msgid "Minimum amount of %plural% a user must purchase. Will default to 1."
6067
  msgstr ""
6068
 
6069
+ #: ../addons/buy-creds/myCRED-addon-buy-creds.php:655
6070
+ msgid "Select the point types that users can buy. You must select at least one!"
6071
  msgstr ""
6072
 
6073
+ #: ../addons/buy-creds/myCRED-addon-buy-creds.php:666
6074
+ msgid "Login Template"
6075
  msgstr ""
6076
 
6077
+ #: ../addons/buy-creds/myCRED-addon-buy-creds.php:670
6078
+ msgid "Content to show when a user is not logged in."
 
 
6079
  msgstr ""
6080
 
6081
+ #: ../addons/buy-creds/myCRED-addon-buy-creds.php:680
6082
+ msgid "Thank You Page"
6083
  msgstr ""
6084
 
6085
+ #: ../addons/buy-creds/myCRED-addon-buy-creds.php:683 ../addons/buy-creds/myCRED-
6086
+ #: addon-buy-creds.php:706
6087
+ msgid "Custom URL"
6088
  msgstr ""
6089
 
6090
+ #: ../addons/buy-creds/myCRED-addon-buy-creds.php:688 ../addons/buy-creds/myCRED-
6091
+ #: addon-buy-creds.php:711
6092
+ msgid "Page"
6093
  msgstr ""
6094
 
6095
+ #: ../addons/buy-creds/myCRED-addon-buy-creds.php:703
6096
+ msgid "Cancellation Page"
6097
  msgstr ""
6098
 
6099
+ #: ../addons/buy-creds/myCRED-addon-buy-creds.php:728
6100
+ #, php-format
6101
+ msgid "Show seperate log for %_plural% purchases."
 
6102
  msgstr ""
6103
 
6104
+ #: ../addons/buy-creds/myCRED-addon-buy-creds.php:730
6105
+ msgid "Gifting"
6106
  msgstr ""
6107
 
6108
+ #: ../addons/buy-creds/myCRED-addon-buy-creds.php:732
6109
  #, php-format
6110
+ msgid "Allow users to buy %_plural% for other users."
 
 
6111
  msgstr ""
6112
 
6113
+ #: ../addons/buy-creds/myCRED-addon-buy-creds.php:733
6114
+ #, php-format
6115
+ msgid "Allow users to buy %_plural% for content authors."
6116
  msgstr ""
6117
 
6118
+ #: ../addons/buy-creds/myCRED-addon-buy-creds.php:831
6119
  #, php-format
6120
+ msgid "%s Exchange Rate"
 
 
6121
  msgstr ""
6122
 
6123
+ #: ../addons/buy-creds/myCRED-addon-buy-creds.php:845
6124
+ msgid "Save Exchange Rates"
6125
  msgstr ""
6126
 
6127
+ #: ../addons/buy-creds/myCRED-addon-buy-creds.php:900
6128
+ msgid "Exchange rate override saved"
6129
  msgstr ""
6130
 
6131
+ #: ../addons/buy-creds/myCRED-addon-buy-creds.php:903
6132
+ msgid "Payment completed"
6133
  msgstr ""
6134
 
6135
+ #: ../addons/buy-creds/myCRED-addon-buy-creds.php:922
6136
+ #, php-format
6137
+ msgid "%s Payment Gateways"
6138
  msgstr ""
6139
 
6140
+ #: ../addons/buy-creds/myCRED-addon-buy-creds.php:922 ../addons/buy-creds/myCRED-
6141
+ #: addon-buy-creds.php:1085
6142
+ msgid "buyCRED Settings"
6143
  msgstr ""
6144
 
6145
+ #: ../addons/buy-creds/myCRED-addon-buy-creds.php:947
6146
+ msgid "Test Mode"
6147
  msgstr ""
6148
 
6149
+ #: ../addons/buy-creds/myCRED-addon-buy-creds.php:949
6150
+ msgid "Enabled"
6151
  msgstr ""
6152
 
6153
+ #: ../addons/buy-creds/myCRED-addon-buy-creds.php:952
6154
+ msgid "Disabled"
6155
  msgstr ""
6156
 
6157
+ #: ../addons/buy-creds/myCRED-addon-buy-creds.php:962
6158
+ msgid "Sandbox Mode"
 
 
6159
  msgstr ""
6160
 
6161
+ #: ../addons/buy-creds/myCRED-addon-buy-creds.php:965
6162
+ msgid "Enable for test purchases."
 
 
 
6163
  msgstr ""
6164
 
6165
+ #: ../addons/buy-creds/myCRED-addon-buy-creds.php:987
6166
+ msgid "More Gateways"
6167
  msgstr ""
6168
 
6169
+ #: ../addons/buy-creds/myCRED-addon-buy-creds.php:1077
6170
+ msgid "Payed"
6171
+ msgstr ""
6172
+
6173
+ #: ../addons/buy-creds/myCRED-addon-buy-creds.php:1085
6174
+ msgid "<strong>buy</strong>CRED Purchase Log"
6175
+ msgstr ""
6176
+
6177
+ #: ../addons/buy-creds/myCRED-addon-buy-creds.php:1347 ../addons/buy-creds/myCRED-
6178
+ #: addon-buy-creds.php:1464
6179
+ msgid "This Add-on needs to setup before you can use this shortcode."
6180
  msgstr ""
6181
 
6182
+ #: ../addons/buy-creds/myCRED-addon-buy-creds.php:1366 ../addons/buy-creds/myCRED-
6183
+ #: addon-buy-creds.php:1483
6184
+ msgid "No gateways installed."
6185
  msgstr ""
6186
 
6187
+ #: ../addons/buy-creds/myCRED-addon-buy-creds.php:1367 ../addons/buy-creds/myCRED-
6188
+ #: addon-buy-creds.php:1484
6189
+ msgid "Gateway does not exist."
6190
  msgstr ""
6191
 
6192
+ #: ../addons/buy-creds/myCRED-addon-buy-creds.php:1415
6193
+ msgid "Yourself"
6194
  msgstr ""
6195
 
6196
+ #: ../addons/buy-creds/myCRED-addon-buy-creds.php:1485
6197
+ msgid "No active gateways found."
6198
  msgstr ""
6199
 
6200
+ #: ../addons/buy-creds/myCRED-addon-buy-creds.php:1486
6201
+ msgid "The selected gateway is not active."
6202
  msgstr ""
6203
 
6204
+ #: ../addons/buy-creds/myCRED-addon-buy-creds.php:1533
6205
  #, php-format
6206
+ msgid "Buy with %gateway%"
6207
  msgstr ""
6208
 
6209
+ #: ../addons/buy-creds/myCRED-addon-buy-creds.php:1584
6210
+ msgid "No users found"
 
6211
  msgstr ""
6212
 
6213
+ #: ../addons/buy-creds/myCRED-addon-buy-creds.php:1594
6214
+ msgid "To"
 
6215
  msgstr ""
6216
 
6217
+ #: ../addons/buy-creds/myCRED-addon-buy-creds.php:1611
6218
+ msgid "Select Amount"
 
 
6219
  msgstr ""
6220
 
6221
+ #: ../addons/buy-creds/myCRED-addon-buy-creds.php:1635
6222
+ msgid "min."
 
6223
  msgstr ""
6224
 
6225
+ #: ../addons/buy-creds/myCRED-addon-buy-creds.php:1643
6226
+ msgid "Select Gateway"
 
 
6227
  msgstr ""
6228
 
6229
+ #: ../addons/buy-creds/abstracts/mycred-abstract-payment-gateway.php:114
6230
+ msgid "This Payment Gateway has no settings"
 
6231
  msgstr ""
6232
 
6233
+ #: ../addons/buy-creds/abstracts/mycred-abstract-payment-gateway.php:151
6234
+ msgid "Select currency"
 
6235
  msgstr ""
6236
 
6237
+ #: ../addons/buy-creds/abstracts/mycred-abstract-payment-gateway.php:352
6238
+ msgid "Incoming confirmation call detected"
 
6239
  msgstr ""
6240
 
6241
+ #: ../addons/buy-creds/abstracts/mycred-abstract-payment-gateway.php:353
6242
  #, php-format
6243
+ msgid "Gateway identified itself as \"%s\""
6244
  msgstr ""
6245
 
6246
+ #: ../addons/buy-creds/abstracts/mycred-abstract-payment-gateway.php:354
6247
+ msgid "Verifying caller"
 
6248
  msgstr ""
6249
 
6250
+ #: ../addons/buy-creds/abstracts/mycred-abstract-payment-gateway.php:400
6251
+ msgid "Test Payment"
6252
  msgstr ""
6253
 
6254
+ #: ../addons/buy-creds/abstracts/mycred-abstract-payment-gateway.php:424
6255
+ msgid "Cancel purchase"
 
 
 
6256
  msgstr ""
6257
 
6258
+ #: ../addons/buy-creds/abstracts/mycred-abstract-payment-gateway.php:509
6259
+ msgid "First Name"
 
6260
  msgstr ""
6261
 
6262
+ #: ../addons/buy-creds/abstracts/mycred-abstract-payment-gateway.php:513
6263
+ msgid "Last Name"
6264
  msgstr ""
6265
 
6266
+ #: ../addons/buy-creds/abstracts/mycred-abstract-payment-gateway.php:517
6267
+ msgid "Address Line 1"
 
6268
  msgstr ""
6269
 
6270
+ #: ../addons/buy-creds/abstracts/mycred-abstract-payment-gateway.php:521
6271
+ msgid "Address Line 2"
 
6272
  msgstr ""
6273
 
6274
+ #: ../addons/buy-creds/abstracts/mycred-abstract-payment-gateway.php:525
6275
+ msgid "City"
 
6276
  msgstr ""
6277
 
6278
+ #: ../addons/buy-creds/abstracts/mycred-abstract-payment-gateway.php:529
6279
+ msgid "Zip"
6280
  msgstr ""
6281
 
6282
+ #: ../addons/buy-creds/abstracts/mycred-abstract-payment-gateway.php:533
6283
+ msgid "State"
6284
  msgstr ""
6285
 
6286
+ #: ../addons/buy-creds/abstracts/mycred-abstract-payment-gateway.php:537
6287
+ msgid "Country"
6288
  msgstr ""
6289
 
6290
+ #: ../addons/buy-creds/abstracts/mycred-abstract-payment-gateway.php:540
6291
+ msgid "Choose Country"
 
6292
  msgstr ""
6293
 
6294
+ #: ../addons/buy-creds/abstracts/mycred-abstract-payment-gateway.php:587
6295
  #, php-format
6296
+ msgid "%s Purchase"
 
 
 
 
6297
  msgstr ""
6298
 
6299
+ #: ../addons/buy-creds/abstracts/mycred-abstract-payment-gateway.php:615
6300
+ msgid "Debug"
 
6301
  msgstr ""
6302
 
6303
+ #: ../addons/buy-creds/abstracts/mycred-abstract-payment-gateway.php:616
6304
+ msgid ""
6305
+ "Here you can see information that are collected and sent to this gateway. "
6306
+ "Debug information is only visible for administrators and are intended for "
6307
+ "troubleshooting / testing of this gateway. Please disable \"Sandbox Mode\" "
6308
+ "when you want to take this gateway online."
6309
  msgstr ""
6310
 
6311
+ #: ../addons/buy-creds/abstracts/mycred-abstract-payment-gateway.php:620
6312
+ msgid "Section"
6313
  msgstr ""
6314
 
6315
+ #: ../addons/buy-creds/abstracts/mycred-abstract-payment-gateway.php:621
6316
+ msgid "Result"
6317
  msgstr ""
6318
 
6319
+ #: ../addons/buy-creds/abstracts/mycred-abstract-payment-gateway.php:626
6320
+ msgid "Payment Status"
6321
  msgstr ""
6322
 
6323
+ #: ../addons/buy-creds/abstracts/mycred-abstract-payment-gateway.php:630
6324
+ msgid "Request"
6325
  msgstr ""
6326
 
6327
+ #: ../addons/buy-creds/abstracts/mycred-abstract-payment-gateway.php:634
6328
+ msgid "Gateway Response"
6329
  msgstr ""
6330
 
6331
+ #: ../addons/buy-creds/abstracts/mycred-abstract-payment-gateway.php:681
6332
  #, php-format
6333
+ msgid "Continue to %s"
6334
  msgstr ""
6335
 
6336
+ #: ../addons/buy-creds/abstracts/mycred-abstract-payment-gateway.php:682 ..
6337
+ #: addons/buy-creds/gateways/bitpay.php:233
6338
+ msgid "Click here if you are not automatically redirected"
6339
  msgstr ""
6340
 
6341
+ #: ../addons/buy-creds/abstracts/mycred-abstract-payment-gateway.php:687
6342
+ msgid "The following information will be sent to the gateway"
 
 
 
6343
  msgstr ""
6344
 
6345
+ #: ../addons/buy-creds/abstracts/mycred-abstract-payment-gateway.php:1373
6346
+ msgid "Outside US"
 
6347
  msgstr ""
6348
 
6349
+ #: ../addons/buy-creds/abstracts/mycred-abstract-payment-gateway.php:1390
6350
+ msgid "January"
 
6351
  msgstr ""
6352
 
6353
+ #: ../addons/buy-creds/abstracts/mycred-abstract-payment-gateway.php:1391
6354
+ msgid "February"
 
6355
  msgstr ""
6356
 
6357
+ #: ../addons/buy-creds/abstracts/mycred-abstract-payment-gateway.php:1392
6358
+ msgid "March"
 
6359
  msgstr ""
6360
 
6361
+ #: ../addons/buy-creds/abstracts/mycred-abstract-payment-gateway.php:1393
6362
+ msgid "April"
 
 
 
6363
  msgstr ""
6364
 
6365
+ #: ../addons/buy-creds/abstracts/mycred-abstract-payment-gateway.php:1394
6366
+ msgid "May"
 
6367
  msgstr ""
6368
 
6369
+ #: ../addons/buy-creds/abstracts/mycred-abstract-payment-gateway.php:1395
6370
+ msgid "June"
 
6371
  msgstr ""
6372
 
6373
+ #: ../addons/buy-creds/abstracts/mycred-abstract-payment-gateway.php:1396
6374
+ msgid "July"
 
6375
  msgstr ""
6376
 
6377
+ #: ../addons/buy-creds/abstracts/mycred-abstract-payment-gateway.php:1397
6378
+ msgid "August"
 
6379
  msgstr ""
6380
 
6381
+ #: ../addons/buy-creds/abstracts/mycred-abstract-payment-gateway.php:1398
6382
+ msgid "September"
 
6383
  msgstr ""
6384
 
6385
+ #: ../addons/buy-creds/abstracts/mycred-abstract-payment-gateway.php:1399
6386
+ msgid "October"
 
6387
  msgstr ""
6388
 
6389
+ #: ../addons/buy-creds/abstracts/mycred-abstract-payment-gateway.php:1400
6390
+ msgid "November"
 
 
6391
  msgstr ""
6392
 
6393
+ #: ../addons/buy-creds/abstracts/mycred-abstract-payment-gateway.php:1401
6394
+ msgid "December"
6395
  msgstr ""
6396
 
6397
+ #: ../addons/buy-creds/gateways/bitpay.php:62 ../addons/buy-
6398
+ #: creds/gateways/netbilling.php:92 ../addons/buy-creds/gateways/paypal-standard.
6399
+ #: php:145 ../addons/buy-creds/gateways/skrill.php:124
6400
+ #, php-format
6401
+ msgid "Price mismatch. Expected: %s Received: %s"
6402
  msgstr ""
6403
 
6404
+ #: ../addons/buy-creds/gateways/bitpay.php:68 ../addons/buy-creds/gateways/paypal-
6405
+ #: standard.php:151 ../addons/buy-creds/gateways/skrill.php:130
6406
  #, php-format
6407
+ msgid "Currency mismatch. Expected: %s Received: %s"
6408
  msgstr ""
6409
 
6410
+ #: ../addons/buy-creds/gateways/bitpay.php:74 ../addons/buy-
6411
+ #: creds/gateways/netbilling.php:98 ../addons/buy-creds/gateways/paypal-standard.
6412
+ #: php:157 ../addons/buy-creds/gateways/skrill.php:136
6413
  #, php-format
6414
+ msgid "Payment not completed. Received: %s"
6415
  msgstr ""
6416
 
6417
+ #: ../addons/buy-creds/gateways/bitpay.php:85 ../addons/buy-
6418
+ #: creds/gateways/netbilling.php:109 ../addons/buy-creds/gateways/zombaio.php:185
6419
+ #: ../addons/buy-creds/gateways/paypal-standard.php:168 ../addons/buy-
6420
+ #: creds/gateways/skrill.php:147
6421
+ msgid "Failed to credit users account."
6422
+ msgstr ""
6423
+
6424
+ #: ../addons/buy-creds/gateways/bitpay.php:164 ../addons/buy-
6425
+ #: creds/gateways/netbilling.php:145 ../addons/buy-creds/gateways/zombaio.php:214
6426
+ #: ../addons/buy-creds/gateways/paypal-standard.php:208 ../addons/buy-
6427
+ #: creds/gateways/skrill.php:187
6428
+ msgid "Please setup this gateway before attempting to make a purchase!"
6429
  msgstr ""
6430
 
6431
+ #: ../addons/buy-creds/gateways/bitpay.php:216 ../addons/buy-
6432
+ #: creds/gateways/bitpay.php:227 ../addons/buy-creds/gateways/netbilling.php:198 .
6433
+ #: ./addons/buy-creds/gateways/zombaio.php:247 ../addons/buy-
6434
+ #: creds/gateways/paypal-standard.php:268 ../addons/buy-creds/gateways/skrill.php:
6435
+ #: 281
6436
+ msgid "Processing payment &hellip;"
6437
  msgstr ""
6438
 
6439
+ #: ../addons/buy-creds/gateways/bitpay.php:219
6440
+ msgid "Could not create a BitPay Invoice. Please contact the site administrator!"
 
6441
  msgstr ""
6442
 
6443
+ #: ../addons/buy-creds/gateways/bitpay.php:220
6444
+ msgid "Bitpay returned the following error message:"
 
6445
  msgstr ""
6446
 
6447
+ #: ../addons/buy-creds/gateways/bitpay.php:259 ../addons/buy-
6448
+ #: creds/gateways/paypal-standard.php:286 ../addons/buy-creds/gateways/skrill.php:
6449
+ #: 300
6450
+ msgid "Currency"
6451
  msgstr ""
6452
 
6453
+ #: ../addons/buy-creds/gateways/bitpay.php:262
6454
+ msgid "Currency Code"
 
6455
  msgstr ""
6456
 
6457
+ #: ../addons/buy-creds/gateways/bitpay.php:266 ../addons/buy-
6458
+ #: creds/gateways/netbilling.php:235 ../addons/buy-creds/gateways/paypal-standard.
6459
+ #: php:298 ../addons/buy-creds/gateways/skrill.php:319
6460
+ msgid "Item Name"
6461
  msgstr ""
6462
 
6463
+ #: ../addons/buy-creds/gateways/bitpay.php:270 ../addons/buy-
6464
+ #: creds/gateways/netbilling.php:239 ../addons/buy-creds/gateways/paypal-standard.
6465
+ #: php:302 ../addons/buy-creds/gateways/skrill.php:323
6466
+ msgid "Description of the item being purchased by the user."
6467
  msgstr ""
6468
 
6469
+ #: ../addons/buy-creds/gateways/bitpay.php:273 ../addons/buy-
6470
+ #: creds/gateways/netbilling.php:242 ../addons/buy-creds/gateways/paypal-standard.
6471
+ #: php:305 ../addons/buy-creds/gateways/skrill.php:326
6472
+ msgid "Exchange Rates"
6473
  msgstr ""
6474
 
6475
+ #: ../addons/buy-creds/gateways/bitpay.php:277
6476
+ msgid "Transaction Speed"
 
6477
  msgstr ""
6478
 
6479
+ #: ../addons/buy-creds/gateways/bitpay.php:284
6480
+ msgid "High"
 
6481
  msgstr ""
6482
 
6483
+ #: ../addons/buy-creds/gateways/bitpay.php:285
6484
+ msgid "Medium"
6485
  msgstr ""
6486
 
6487
+ #: ../addons/buy-creds/gateways/bitpay.php:286
6488
+ msgid "Low"
 
6489
  msgstr ""
6490
 
6491
+ #: ../addons/buy-creds/gateways/bitpay.php:299
6492
+ msgid "Full Notifications"
6493
  msgstr ""
6494
 
6495
+ #: ../addons/buy-creds/gateways/netbilling.php:216
6496
+ msgid "Account ID"
6497
  msgstr ""
6498
 
6499
+ #: ../addons/buy-creds/gateways/netbilling.php:222
6500
+ msgid "Site Tag"
6501
  msgstr ""
6502
 
6503
+ #: ../addons/buy-creds/gateways/netbilling.php:228
6504
+ msgid "Order Integrity Key"
 
6505
  msgstr ""
6506
 
6507
+ #: ../addons/buy-creds/gateways/netbilling.php:232
6508
+ msgid "Found under Step 12 on the Fraud Defense page."
6509
  msgstr ""
6510
 
6511
+ #: ../addons/buy-creds/gateways/netbilling.php:246
6512
+ msgid "Postback CGI URL"
6513
  msgstr ""
6514
 
6515
+ #: ../addons/buy-creds/gateways/netbilling.php:250
6516
+ msgid ""
6517
+ "For this gateway to work, you must login to your NETbilling account and edit "
6518
+ "your site. Under \"Default payment form settings\" make sure the Postback CGI "
6519
+ "URL is set to the above address and \"Return method\" is set to POST."
6520
  msgstr ""
6521
 
6522
+ #: ../addons/buy-creds/gateways/netbilling.php:298
6523
+ msgid "Incorrect Credit Card number"
 
6524
  msgstr ""
6525
 
6526
+ #: ../addons/buy-creds/gateways/netbilling.php:304
6527
+ msgid "The credit card entered is past its expiration date."
6528
  msgstr ""
6529
 
6530
+ #: ../addons/buy-creds/gateways/netbilling.php:307
6531
+ msgid "The CVV2 number entered is not valid."
 
 
 
6532
  msgstr ""
6533
 
6534
+ #: ../addons/buy-creds/gateways/netbilling.php:314
6535
+ msgid "The bank routing number entered is not valid."
 
6536
  msgstr ""
6537
 
6538
+ #: ../addons/buy-creds/gateways/netbilling.php:318
6539
+ msgid "The bank account number entered is not valid."
 
6540
  msgstr ""
6541
 
6542
+ #: ../addons/buy-creds/gateways/zombaio.php:154
6543
  #, php-format
6544
+ msgid "Duplicate transaction. Received: %s"
6545
  msgstr ""
6546
 
6547
+ #: ../addons/buy-creds/gateways/zombaio.php:160
6548
+ #, php-format
6549
+ msgid "Live transaction while debug mode is enabled! Received: %s"
6550
  msgstr ""
6551
 
6552
+ #: ../addons/buy-creds/gateways/zombaio.php:265
6553
+ msgid "Site ID"
 
 
 
6554
  msgstr ""
6555
 
6556
+ #: ../addons/buy-creds/gateways/zombaio.php:271
6557
+ msgid "GW Password"
6558
  msgstr ""
6559
 
6560
+ #: ../addons/buy-creds/gateways/zombaio.php:277
6561
+ msgid "Pricing ID"
6562
  msgstr ""
6563
 
6564
+ #: ../addons/buy-creds/gateways/zombaio.php:283 ../addons/buy-
6565
+ #: creds/gateways/skrill.php:344
6566
+ msgid "Logo URL"
6567
  msgstr ""
6568
 
6569
+ #: ../addons/buy-creds/gateways/zombaio.php:289
6570
+ msgid "IP Verification"
 
6571
  msgstr ""
6572
 
6573
+ #: ../addons/buy-creds/gateways/zombaio.php:292
6574
+ msgid "Do not verify that callbacks are coming from Zombaio."
 
 
 
6575
  msgstr ""
6576
 
6577
+ #: ../addons/buy-creds/gateways/zombaio.php:295
6578
+ msgid "Language"
6579
  msgstr ""
6580
 
6581
+ #: ../addons/buy-creds/gateways/zombaio.php:302
6582
+ msgid "Postback URL (ZScript)"
6583
  msgstr ""
6584
 
6585
+ #: ../addons/buy-creds/gateways/zombaio.php:306
6586
+ msgid ""
6587
+ "For this gateway to work, login to ZOA and set the Postback URL to the above "
6588
+ "address and click validate."
6589
  msgstr ""
6590
 
6591
+ #: ../addons/buy-creds/gateways/paypal-standard.php:192 ../addons/buy-
6592
+ #: creds/gateways/skrill.php:171
6593
+ msgid "Success"
6594
  msgstr ""
6595
 
6596
+ #: ../addons/buy-creds/gateways/paypal-standard.php:193 ../addons/buy-
6597
+ #: creds/gateways/skrill.php:172
6598
+ msgid "Thank you for your purchase"
6599
  msgstr ""
6600
 
6601
+ #: ../addons/buy-creds/gateways/paypal-standard.php:263
6602
  #, php-format
6603
+ msgctxt "Return label. %s = Website name"
6604
+ msgid "Return to %s"
6605
  msgstr ""
6606
 
6607
+ #: ../addons/buy-creds/gateways/paypal-standard.php:292
6608
+ msgid "Account Email"
6609
  msgstr ""
6610
 
6611
+ #: ../addons/buy-creds/gateways/skrill.php:228
6612
+ msgid "Return to "
 
6613
  msgstr ""
6614
 
6615
+ #: ../addons/buy-creds/gateways/skrill.php:264
6616
+ msgid "Product:"
6617
  msgstr ""
6618
 
6619
+ #: ../addons/buy-creds/gateways/skrill.php:273
6620
+ msgid "Gift to:"
 
6621
  msgstr ""
6622
 
6623
+ #: ../addons/buy-creds/gateways/skrill.php:274
6624
+ msgid "(author)"
6625
  msgstr ""
6626
 
6627
+ #: ../addons/buy-creds/gateways/skrill.php:307
6628
+ msgid "Merchant Account Email"
6629
  msgstr ""
6630
 
6631
+ #: ../addons/buy-creds/gateways/skrill.php:313
6632
+ msgid "Secret Word"
6633
  msgstr ""
6634
 
6635
+ #: ../addons/buy-creds/gateways/skrill.php:330
6636
+ msgid "Confirmation Email"
6637
  msgstr ""
6638
 
6639
+ #: ../addons/buy-creds/gateways/skrill.php:333
6640
+ msgid "Ask Skrill to send me a confirmation email for each successful purchase."
6641
  msgstr ""
6642
 
6643
+ #: ../addons/buy-creds/gateways/skrill.php:336
6644
+ msgid "Checkout Page"
 
6645
  msgstr ""
6646
 
6647
+ #: ../addons/buy-creds/gateways/skrill.php:341
6648
+ msgid "If left empty, your account email is used as title on the Skill Payment Page."
6649
  msgstr ""
6650
 
6651
+ #: ../addons/buy-creds/gateways/skrill.php:346
 
6652
  msgid ""
6653
+ "The URL to the image you want to use on the top of the gateway. For best "
6654
+ "integration results we recommend you use logos with dimensions up to 200px "
6655
+ "in width and 50px in height."
6656
  msgstr ""
6657
 
6658
+ #: ../addons/buy-creds/gateways/skrill.php:349
6659
+ msgid "Confirmation Note"
6660
  msgstr ""
6661
 
6662
+ #: ../addons/buy-creds/gateways/skrill.php:351
6663
+ msgid ""
6664
+ "Optional text to show user once a transaction has been successfully "
6665
+ "completed. This text is shown by Skrill."
6666
  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: Mon Jun 08 2015 23:42:27 GMT+0200 (CEST)\n"
7
- "Last-Translator: unimatrix0 <gabriel.s@merovingi.com>\n"
8
  "Language-Team: myCRED & All the awesome users helping out <support@mycred."
9
  "me>\n"
10
  "Language: Spanish (Spain)\n"
@@ -25,6918 +25,6985 @@ msgstr ""
25
  "X-Poedit-SearchPath-1: .\n"
26
  "X-Loco-Target-Locale: es_ES"
27
 
28
- #: ../mycred.php:461
29
- msgid "Balance"
30
- msgstr "Saldo"
31
-
32
- #: ../mycred.php:486
33
- msgid "%label% History"
34
- msgstr "%label% Historial"
35
-
36
- #: ../mycred.php:580
37
- #, php-format
38
- msgid "About %s"
39
- msgstr "Sobre"
40
-
41
- #: ../mycred.php:589
42
- msgid "Awesome People"
43
- msgstr "Gente genial"
44
-
45
- #: ../mycred.php:677 ../mycred.php:702 ../mycred.php:720 ../addons/badges/myCRED-
46
- #: addon-badges.php:605 ../addons/gateway/event-booking/mycred-eventsmanager.php:
47
- #: 478 ../addons/ranks/myCRED-addon-ranks.php:423 ../addons/ranks/myCRED-addon-
48
- #: ranks.php:1522 ../addons/sell-content/myCRED-addon-sell-content.php:372 ..
49
- #: addons/transfer/myCRED-addon-transfer.php:146 ../includes/mycred-shortcodes.
50
- #: php:636
51
- msgid "Processing..."
52
- msgstr "Procesando..."
53
-
54
- #: ../mycred.php:678
55
- msgid ""
56
- "Warning! All entries in your log will be permanently removed! This can not "
57
- "be undone!"
58
  msgstr ""
59
- "¡Aviso! Todas las entradas en su registro seran permanentemente borrado! "
60
- "¡Esto no se puede deshacer!"
61
 
62
- #: ../mycred.php:679
63
  msgid ""
64
- "All log entries belonging to deleted users will be permanently deleted! This "
65
- "can not be undone!"
 
66
  msgstr ""
67
- "¡Todas las entradas de registro perteneciendo al usuario seran "
68
- "permanentemente borradas! ¡Esto no se puede deshacer!"
69
 
70
- #: ../mycred.php:680
71
- msgid "Warning! All user balances will be set to zero! This can not be undone!"
72
  msgstr ""
73
- "¡Aviso! ¡Todo los saldos del usuario seran puesto a cero! ¡Esto no se puede "
74
- "deshacer!"
75
-
76
- #: ../mycred.php:681
77
- msgid "Done!"
78
- msgstr "¡Realizado!"
79
-
80
- #: ../mycred.php:682 ../mycred.php:701 ../mycred.php:719
81
- msgid "Close"
82
- msgstr "Cerrar"
83
 
84
- #: ../mycred.php:683
85
- msgid "Export users %plural%"
86
- msgstr "Exportar usuarios %plural%"
87
 
88
- #: ../mycred.php:684
89
  msgid ""
90
  "In order to adjust the number of decimal places you want to use we must "
91
  "update your log. It is highly recommended that you backup your current log "
92
  "before continuing!"
93
  msgstr ""
94
 
95
- #: ../mycred.php:700
96
- msgid "Edit Users Balance"
97
- msgstr "Editar saldo del usuario"
98
-
99
- #: ../mycred.php:718
100
- msgid "Edit Log Entry"
101
- msgstr "Edidar entrada de registro"
102
 
103
- #: ../mycred.php:722
104
- msgid "Are you sure you want to delete this log entry? This can not be undone!"
105
  msgstr ""
106
- "¿Esta seguro que quiere borrar esta entrada de registro? ¡Esto no se puede "
107
- "deshacer!"
108
 
109
- #: ../mycred.php:723
110
- msgid "Log entry updated"
111
- msgstr "Entrada de registro actualizado"
112
 
113
- #: ../mycred.php:780 ../mycred.php:802 ../addons/email-notices/myCRED-addon-email-
114
- #: notices.php:811 ../addons/gateway/event-booking/mycred-eventsmanager-pro.php:
115
- #: 499 ../addons/gateway/event-booking/mycred-eventsmanager.php:537
116
- msgid "Setup"
117
- msgstr "Configurar"
118
 
119
- #: ../mycred.php:782 ../addons/gateway/carts/mycred-marketpress.php:371 ..
120
- #: addons/stats/abstracts/mycred-abstract-stat-widget.php:108 ../includes/mycred-
121
- #: network.php:151 ../modules/mycred-module-settings.php:21 ../modules/mycred-
122
- #: module-settings.php:22 ../modules/mycred-module-settings.php:23
123
- msgid "Settings"
124
- msgstr "Configuraciones"
125
 
126
- #: ../mycred.php:825
127
- msgid ""
128
- "Make sure to backup your database and files before updating, in case "
129
- "anything goes wrong!"
130
  msgstr ""
131
- "Antes de actualizar, asegura crear copias de seguridad de su base de datos y "
132
- "archivo, por si acaso!"
133
 
134
- #: ../abstracts/mycred-abstract-hook.php:83
135
- msgid "This Hook has no settings"
136
- msgstr "Este gancho no ha sido configurado"
137
 
138
- #: ../abstracts/mycred-abstract-hook.php:226 ../abstracts/mycred-abstract-hook.
139
- #: php:293 ../includes/mycred-functions.php:2641 ../modules/mycred-module-hooks.
140
- #: php:1809
141
- msgid "No limit"
142
- msgstr "Sin Limite"
143
 
144
- #: ../abstracts/mycred-abstract-hook.php:227
145
- msgid "/ Day"
 
 
146
  msgstr ""
147
 
148
- #: ../abstracts/mycred-abstract-hook.php:228
149
- msgid "/ Week"
 
150
  msgstr ""
151
 
152
- #: ../abstracts/mycred-abstract-hook.php:229
153
- msgid "/ Month"
 
154
  msgstr ""
155
 
156
- #: ../abstracts/mycred-abstract-hook.php:230
157
- msgid "in Total"
 
 
158
  msgstr ""
159
 
160
- #: ../abstracts/mycred-abstract-hook.php:294
161
- msgid "Once every 24 hours"
162
- msgstr "Una vez cada 24 horas"
 
 
163
 
164
- #: ../abstracts/mycred-abstract-hook.php:295
165
- msgid "Once every 7 days"
166
- msgstr "Una vez cada 7 dias"
167
 
168
- #: ../abstracts/mycred-abstract-hook.php:296
169
- msgid "Once per day (reset at midnight)"
170
- msgstr "Una vez al dia (reinicializado al medianoche)"
171
 
172
- #: ../abstracts/mycred-abstract-hook.php:303 ../addons/banking/abstracts/mycred-
173
- #: abstract-service.php:498 ../addons/buy-creds/myCRED-addon-buy-creds.php:695 ..
174
- #: addons/buy-creds/myCRED-addon-buy-creds.php:718 ../addons/buy-
175
- #: creds/abstracts/mycred-abstract-payment-gateway.php:1023 ../addons/buy-
176
- #: creds/abstracts/mycred-abstract-payment-gateway.php:1046 ../addons/buy-
177
- #: creds/gateways/zombaio.php:356 ../addons/email-notices/myCRED-addon-email-
178
- #: notices.php:198 ../addons/email-notices/myCRED-addon-email-notices.php:992
179
- msgid "Select"
180
- msgstr "Seleccionar"
181
 
182
- #: ../abstracts/mycred-abstract-module.php:56
183
- msgid "myCRED_Module() Error. A Module ID is required!"
184
- msgstr "Error de myCRED_Module(). ¡Se requiere una ID de Modulo!"
185
 
186
- #: ../abstracts/mycred-abstract-module.php:350 ../abstracts/mycred-abstract-
187
- #: module.php:358
188
- msgid "Surprise"
189
- msgstr "Sorpresa"
 
 
190
 
191
- #: ../abstracts/mycred-abstract-module.php:445 ../includes/mycred-network.php:83
192
- msgid "click to close"
193
- msgstr "haga clic para cerrar"
194
 
195
- #: ../abstracts/mycred-abstract-module.php:446 ../includes/mycred-network.php:84
196
- msgid "click to open"
197
- msgstr "haga clic para abrir"
 
198
 
199
- #: ../abstracts/mycred-abstract-module.php:479 ../addons/buy-creds/myCRED-addon-
200
- #: buy-creds.php:927
201
- msgid "Settings Updated"
202
- msgstr "Configuraciones Actualizadas"
203
 
204
- #: ../addons/badges/myCRED-addon-badges.php:48 ../addons/badges/myCRED-addon-
205
- #: badges.php:49 ../addons/badges/myCRED-addon-badges.php:50 ..
206
- #: addons/badges/myCRED-addon-badges.php:144 ../addons/badges/myCRED-addon-
207
- #: badges.php:145 ../addons/badges/myCRED-addon-badges.php:383 ..
208
- #: addons/badges/myCRED-addon-badges.php:389 ../addons/badges/myCRED-addon-
209
- #: badges.php:395
210
- msgid "Badges"
211
- msgstr "Insignias"
212
 
213
- #: ../addons/badges/myCRED-addon-badges.php:169
214
  #, php-format
215
- msgid "Badges (%d)"
216
  msgstr ""
217
 
218
- #: ../addons/badges/myCRED-addon-badges.php:260
219
  #, php-format
220
- msgid "%d Users earned this badge."
221
- msgstr "%d Usuarios que han ganado esta insignia."
222
-
223
- #: ../addons/badges/myCRED-addon-badges.php:264
224
- msgid "No users has yet earned this badge."
225
- msgstr "Ningun usuario ha ganado esta insignia."
226
 
227
- #: ../addons/badges/myCRED-addon-badges.php:287
228
- msgid "No connections where removed."
229
  msgstr ""
230
 
231
- #: ../addons/badges/myCRED-addon-badges.php:289
232
  #, php-format
233
- msgid "%s connections where removed."
234
- msgstr "%s conexiones han sido quitados."
 
 
235
 
236
- #: ../addons/badges/myCRED-addon-badges.php:384
237
- msgid "Badge"
238
- msgstr "Insignia"
239
 
240
- #: ../addons/badges/myCRED-addon-badges.php:385 ../addons/buy-creds/myCRED-addon-
241
- #: buy-creds.php:275 ../addons/buy-creds/myCRED-addon-buy-creds.php:276 ..
242
- #: addons/email-notices/myCRED-addon-email-notices.php:167 ..
243
- #: addons/ranks/myCRED-addon-ranks.php:448
244
- msgid "Add New"
245
- msgstr "Añade Nuevo"
246
 
247
- #: ../addons/badges/myCRED-addon-badges.php:386
248
- msgid "Add New Badge"
249
- msgstr "Añadir Nueva Insignia"
250
 
251
- #: ../addons/badges/myCRED-addon-badges.php:387
252
- msgid "Edit Badge"
253
- msgstr "Editar Insignia"
 
254
 
255
- #: ../addons/badges/myCRED-addon-badges.php:388
256
- msgid "New Badge"
257
- msgstr "Nueva Insignia"
258
 
259
- #: ../addons/badges/myCRED-addon-badges.php:390
260
- msgid "View Badge"
261
- msgstr "Ver Insignia"
262
 
263
- #: ../addons/badges/myCRED-addon-badges.php:391
264
- msgid "Search Badge"
265
- msgstr "Buscar Insignia"
266
 
267
- #: ../addons/badges/myCRED-addon-badges.php:392
268
- msgid "No badges found"
269
- msgstr "Ninguna Insignia Encontrada"
270
 
271
- #: ../addons/badges/myCRED-addon-badges.php:393
272
- msgid "No badges found in Trash"
273
- msgstr "Ninguna Insignia Encontrada en la Papelera"
274
 
275
- #: ../addons/badges/myCRED-addon-badges.php:439 ../addons/badges/myCRED-addon-
276
- #: badges.php:541
277
- msgid "Badge Name"
278
- msgstr "Nombre de Insignia"
279
 
280
- #: ../addons/badges/myCRED-addon-badges.php:440
281
- msgid "Badge Images"
282
- msgstr "Imagen de la Insignia"
283
 
284
- #: ../addons/badges/myCRED-addon-badges.php:441
285
- msgid "Requirements"
286
- msgstr "Requisitos"
287
 
288
- #: ../addons/badges/myCRED-addon-badges.php:442 ../addons/ranks/myCRED-addon-
289
- #: ranks.php:1042 ../modules/mycred-module-settings.php:636
290
- msgid "Users"
291
- msgstr "Usuarios"
292
 
293
- #: ../addons/badges/myCRED-addon-badges.php:481
294
- msgid "A user must have gained or lost:"
295
- msgstr "Un usuario deberia ganado o perdido:"
296
 
297
- #: ../addons/badges/myCRED-addon-badges.php:517 ../addons/badges/myCRED-addon-
298
- #: badges.php:520 ../addons/badges/myCRED-addon-badges.php:524 ..
299
- #: addons/badges/myCRED-addon-badges.php:525 ../addons/badges/myCRED-addon-
300
- #: badges.php:526
301
- msgid "Badge Updated."
302
- msgstr "Insignia Actualizada"
303
 
304
- #: ../addons/badges/myCRED-addon-badges.php:522
305
- msgid "Badge Enabled"
306
- msgstr "Insignia Habilitado"
307
 
308
- #: ../addons/badges/myCRED-addon-badges.php:523
309
- msgid "Badge Saved"
310
- msgstr "Insignia Guardada"
311
 
312
- #: ../addons/badges/myCRED-addon-badges.php:555
313
- msgid "Badge Setup"
314
  msgstr ""
315
 
316
- #: ../addons/badges/myCRED-addon-badges.php:582
317
- msgid "Assign Badge"
318
- msgstr "Asignar Insignia"
319
 
320
- #: ../addons/badges/myCRED-addon-badges.php:583
321
- msgid "Remove Connections"
322
- msgstr "Quitar Conexiones"
323
 
324
- #: ../addons/badges/myCRED-addon-badges.php:638
325
- msgid "Time(s)"
326
- msgstr "Tiempo(s)"
327
 
328
- #: ../addons/badges/myCRED-addon-badges.php:639
329
- msgid "In total"
330
- msgstr "En Total"
331
 
332
- #: ../addons/badges/myCRED-addon-badges.php:671 ../addons/badges/myCRED-addon-
333
- #: badges.php:771 ../addons/badges/myCRED-addon-badges.php:831 ..
334
- #: addons/badges/myCRED-addon-badges.php:846
335
- msgid "Badge Image"
336
- msgstr "Imagen de la Insignia"
337
 
338
- #: ../addons/badges/myCRED-addon-badges.php:672 ../addons/badges/myCRED-addon-
339
- #: badges.php:672
340
- msgid "Set badge image"
341
- msgstr "Configurar la imagen para la insignia"
342
 
343
- #: ../addons/badges/myCRED-addon-badges.php:682
344
- msgid "Default Image"
345
- msgstr "Imagen Predefinida"
346
 
347
- #: ../addons/badges/myCRED-addon-badges.php:683 ../addons/badges/myCRED-addon-
348
- #: badges.php:741 ../addons/badges/myCRED-addon-badges.php:772 ..
349
- #: addons/badges/myCRED-addon-badges.php:831
350
- msgid "image url"
351
- msgstr "enlace de la imagen"
352
 
353
- #: ../addons/badges/myCRED-addon-badges.php:684 ../addons/badges/myCRED-addon-
354
- #: badges.php:742 ../addons/badges/myCRED-addon-badges.php:773 ..
355
- #: addons/badges/myCRED-addon-badges.php:831
356
- msgid "Add Image"
357
  msgstr ""
358
 
359
- #: ../addons/badges/myCRED-addon-badges.php:685
360
- msgid "Optional image to show when a user has not yet earned this badge."
 
 
 
 
 
 
 
 
 
 
361
  msgstr ""
362
 
363
- #: ../addons/badges/myCRED-addon-badges.php:704 ../addons/badges/myCRED-addon-
364
- #: badges.php:756
365
  #, php-format
366
- msgid "Level %d"
 
367
  msgstr ""
368
 
369
- #: ../addons/badges/myCRED-addon-badges.php:709 ../addons/badges/myCRED-addon-
370
- #: badges.php:761 ../addons/badges/myCRED-addon-badges.php:831
371
- msgid "for"
 
372
  msgstr ""
373
 
374
- #: ../addons/badges/myCRED-addon-badges.php:740
375
- msgid "Main Image"
376
- msgstr "Imagen Principal"
 
377
 
378
- #: ../addons/badges/myCRED-addon-badges.php:774 ../addons/badges/myCRED-addon-
379
- #: badges.php:831
380
- msgid "Leave empty if you do not want to assign a custom image for this level."
381
  msgstr ""
382
 
383
- #: ../addons/badges/myCRED-addon-badges.php:774 ../addons/badges/myCRED-addon-
384
- #: badges.php:831
385
- msgid "Remove this level"
 
386
  msgstr ""
387
 
388
- #: ../addons/badges/myCRED-addon-badges.php:788
389
- msgid "Add Level"
 
 
 
 
390
  msgstr ""
391
 
392
- #: ../addons/badges/myCRED-addon-badges.php:831 ../addons/badges/myCRED-addon-
393
- #: badges.php:1154
394
- msgid "Level"
395
  msgstr ""
396
 
397
- #: ../addons/badges/myCRED-addon-badges.php:848
398
- msgid "Use as Badge"
399
- msgstr "Utiliza como Insignia"
400
 
401
- #: ../addons/badges/myCRED-addon-badges.php:970 ../addons/badges/myCRED-addon-
402
- #: badges.php:1001 ../addons/gateway/carts/mycred-woocommerce.php:152 ..
403
- #: modules/mycred-module-buddypress.php:417
404
- msgid "Do not show"
405
- msgstr "No Mostrar"
406
 
407
- #: ../addons/badges/myCRED-addon-badges.php:971 ../modules/mycred-module-
408
- #: buddypress.php:418
409
- msgid "Include in Profile Header"
410
- msgstr "Incluir en el Encabezado del Perfil"
411
 
412
- #: ../addons/badges/myCRED-addon-badges.php:972 ../addons/ranks/myCRED-addon-
413
- #: ranks.php:1407 ../modules/mycred-module-buddypress.php:419
414
- msgid "Include under the \"Profile\" tab"
415
- msgstr "Incluir debajo de la pestaña del \"Perfil\""
416
 
417
- #: ../addons/badges/myCRED-addon-badges.php:973 ../modules/mycred-module-
418
- #: buddypress.php:420
419
- msgid "Include under the \"Profile\" tab and Profile Header"
420
- msgstr "Incluir bajo la pestanã \"Perfil\" y Encabezado de Perfil"
421
 
422
- #: ../addons/badges/myCRED-addon-badges.php:986 ../addons/badges/myCRED-addon-
423
- #: badges.php:1017
424
- msgid "Show all badges, including badges users have not yet earned."
 
425
  msgstr ""
426
 
427
- #: ../addons/badges/myCRED-addon-badges.php:1002 ../addons/ranks/myCRED-addon-
428
- #: ranks.php:1452
429
- msgid "Include in Profile"
430
- msgstr "Incluir en el Perfil"
431
 
432
- #: ../addons/badges/myCRED-addon-badges.php:1003
433
- msgid "Include in Forum Replies"
434
- msgstr "Incluir en Respuesta de Fórum"
435
 
436
- #: ../addons/badges/myCRED-addon-badges.php:1004
437
- msgid "Include in Profile and Forum Replies"
438
- msgstr "Incluir en Perfil y Respuestas de Fórum"
 
 
439
 
440
- #: ../addons/badges/myCRED-addon-badges.php:1111
441
- msgid "User Badges"
 
442
  msgstr ""
443
 
444
- #: ../addons/badges/myCRED-addon-badges.php:1116
445
- msgid ""
446
- "Here you can view the badges this user has earned and if needed, manually "
447
- "give or take away a badge from a user."
448
  msgstr ""
449
 
450
- #: ../addons/badges/myCRED-addon-badges.php:1125
451
- msgid "Not earned"
452
  msgstr ""
453
 
454
- #: ../addons/badges/myCRED-addon-badges.php:1131 ../addons/badges/myCRED-addon-
455
- #: badges.php:1168
456
- msgid "Earned"
457
  msgstr ""
458
 
459
- #: ../addons/badges/myCRED-addon-badges.php:1143
460
- msgid "No image"
461
  msgstr ""
462
 
463
- #: ../addons/badges/myCRED-addon-badges.php:1150
464
- msgid "Select a level"
465
  msgstr ""
466
 
467
- #: ../addons/badges/myCRED-addon-badges.php:1165 ../addons/email-notices/myCRED-
468
- #: addon-email-notices.php:810
469
- msgid "Status"
470
- msgstr "Estatus"
471
 
472
- #: ../addons/badges/myCRED-addon-badges.php:1182 ../addons/email-notices/myCRED-
473
- #: addon-email-notices.php:1296
474
- msgid "Save Changes"
475
- msgstr "Guardar Cambios"
476
 
477
- #: ../addons/badges/includes/mycred-badge-functions.php:68
 
 
 
 
478
  #, php-format
479
- msgid "Level %s"
480
  msgstr ""
481
 
482
- #: ../addons/badges/includes/mycred-badge-functions.php:71
483
  #, php-format
484
- msgctxt "\"Points\" for \"reference\" \"x time(s)\" - Level"
485
- msgid "%s for %s %s - %s"
486
  msgstr ""
487
 
488
- #: ../addons/badges/includes/mycred-badge-functions.php:71 ..
489
- #: addons/coupons/myCRED-addon-coupons.php:202 ../addons/coupons/myCRED-addon-
490
- #: coupons.php:469
 
 
 
 
 
 
491
  #, php-format
492
- msgid "1 time"
493
- msgid_plural "%d times"
494
- msgstr[0] ""
495
- msgstr[1] ""
496
 
497
- #: ../addons/badges/includes/mycred-badge-functions.php:73
498
  #, php-format
499
- msgctxt "\"x points\" for \"reference\" in total"
500
- msgid "%s for %s in total"
501
- msgstr "%s para %s en total"
502
 
503
- #: ../addons/banking/myCRED-addon-banking.php:44 ../addons/banking/myCRED-addon-
504
- #: banking.php:45 ../addons/banking/myCRED-addon-banking.php:46
505
- msgid "Banking"
506
- msgstr "Banco"
507
 
508
- #: ../addons/banking/myCRED-addon-banking.php:158
509
- msgid "Central Banking"
510
- msgstr "Banco Central"
 
 
 
511
 
512
- #: ../addons/banking/myCRED-addon-banking.php:159
513
- #, php-format
514
- msgid ""
515
- "Instead of creating %_plural% out of thin-air, all payouts are made from a "
516
- "nominated \"Central Bank\" account. Any %_plural% a user spends or loses are "
517
- "deposited back into this account."
518
  msgstr ""
519
- "En vez de crear %_plural% de la nada, todos los desembolsos seran hechos "
520
- "desde una cuenta nominada del \"Banco Central\". Qualquier %_plural% que un "
521
- "usuario gaste o pierda seran depositados a esta misma cuenta."
522
 
523
- #: ../addons/banking/myCRED-addon-banking.php:165 ..
524
- #: addons/banking/services/mycred-bank-service-interest.php:512
525
- msgid "Compound Interest"
526
- msgstr "Interés Compuesto"
527
 
528
- #: ../addons/banking/myCRED-addon-banking.php:166
529
  #, php-format
530
- msgid "Apply a positive or negative interest rate on your users %_plural% balances."
531
  msgstr ""
532
- "Aplicar un tipo de interés compuesto positivo o negativo al saldo de "
533
- "%_plural% de tus usuarios."
534
 
535
- #: ../addons/banking/myCRED-addon-banking.php:172
536
- msgid "Recurring Payouts"
537
- msgstr "Pagos Recurrentes"
538
 
539
- #: ../addons/banking/myCRED-addon-banking.php:173
540
- msgid "Setup mass %_singular% payouts for your users."
541
- msgstr "Configurar pago en masa &_singular% para tus usuarios."
 
542
 
543
- #: ../addons/banking/myCRED-addon-banking.php:219 ../addons/buy-creds/myCRED-
544
- #: addon-buy-creds.php:916 ../addons/buy-creds/myCRED-addon-buy-creds.php:1022 ..
545
- #: addons/stats/myCRED-addon-stats.php:182 ../includes/mycred-admin.php:587 ..
546
- #: includes/mycred-network.php:125 ../modules/mycred-module-addons.php:303 ..
547
- #: modules/mycred-module-hooks.php:193 ../modules/mycred-module-log.php:358 ..
548
- #: modules/mycred-module-log.php:647 ../modules/mycred-module-settings.php:484
549
- msgid "Access Denied"
550
- msgstr "Acceso Denegado"
551
 
552
- #: ../addons/banking/myCRED-addon-banking.php:225
 
 
 
 
553
  #, php-format
554
- msgid "%s Banking"
555
- msgstr "%s Bancario"
556
 
557
- #: ../addons/banking/myCRED-addon-banking.php:228
558
- msgid "Your banking setup for %plural%."
559
- msgstr "Tu configuración bancario para %plural%."
560
 
561
- #: ../addons/banking/myCRED-addon-banking.php:231
562
- msgid "WP-Cron deactivation detected!"
563
- msgstr "¡Se detecto la desactivación de WP-Cron!"
 
564
 
565
- #: ../addons/banking/myCRED-addon-banking.php:232
566
- msgid "Warning! This add-on requires WP - Cron to work."
567
- msgstr "¡Aviso! Esta extensión requiere WP - Cron para funcionar."
568
 
569
- #: ../addons/banking/myCRED-addon-banking.php:248 ../addons/buy-creds/myCRED-
570
- #: addon-buy-creds.php:954 ../modules/mycred-module-hooks.php:222
571
- msgid "Enable"
572
- msgstr "Habilitar"
573
 
574
- #: ../addons/banking/myCRED-addon-banking.php:261 ../modules/mycred-module-hooks.
575
- #: php:240
576
- msgid "Update Changes"
577
- msgstr "Actualizar Cambios"
 
578
 
579
- #: ../addons/banking/abstracts/mycred-abstract-service.php:79
580
- msgid "This Service has no settings"
581
- msgstr "Este servicio no ha sido configurado"
582
 
583
- #. also, "Cada Hora"
584
- #: ../addons/banking/abstracts/mycred-abstract-service.php:233
585
- msgid "Hourly"
586
- msgstr "Por Hora"
 
587
 
588
- #: ../addons/banking/abstracts/mycred-abstract-service.php:237
589
- msgid "Daily"
590
- msgstr "Diario"
 
591
 
592
- #: ../addons/banking/abstracts/mycred-abstract-service.php:241
593
- msgid "Weekly"
594
- msgstr "Semanal"
 
595
 
596
- #: ../addons/banking/abstracts/mycred-abstract-service.php:245
597
- msgid "Monthly"
598
- msgstr "Mensual"
 
599
 
600
- #: ../addons/banking/abstracts/mycred-abstract-service.php:249
601
- msgid "Quarterly"
602
- msgstr "Trimestral"
603
 
604
- #: ../addons/banking/abstracts/mycred-abstract-service.php:253
605
- msgid "Semiannually"
606
- msgstr "Semestral"
 
607
 
608
- #: ../addons/banking/abstracts/mycred-abstract-service.php:257
609
- msgid "Annually"
610
- msgstr "Anual"
 
611
 
612
- #: ../addons/banking/services/mycred-bank-service-central.php:105
613
- msgid "Bank User"
614
- msgstr "Usuario del Banco"
615
 
616
- #: ../addons/banking/services/mycred-bank-service-central.php:109
617
- msgid "The user ID of the central bank account. This user can not be excluded!"
 
 
618
  msgstr ""
619
- "El ID de la cuenta de usuario del banco central. Este usuario no puede ser "
620
- "excluido!"
621
 
622
- #: ../addons/banking/services/mycred-bank-service-central.php:112
623
- msgid "Ignore Manual Adjustments"
624
- msgstr "Ignorar Ajustes Manuales"
625
 
626
- #: ../addons/banking/services/mycred-bank-service-interest.php:24
627
- msgid "%plural% interest rate payment"
628
- msgstr "%plural% pago de tasa de interés"
 
629
 
630
- #: ../addons/banking/services/mycred-bank-service-interest.php:379
631
- msgid "Compounding Interest"
632
- msgstr "Interés Compuesto"
633
 
634
- #: ../addons/banking/services/mycred-bank-service-interest.php:379
 
 
 
 
635
  #, php-format
636
- msgid "%d Users are left to process."
637
- msgstr "Quedan %d usuarios para procesar."
638
 
639
- #: ../addons/banking/services/mycred-bank-service-interest.php:388
640
- msgid "Payout History"
641
- msgstr "Historial de Desembolso"
 
 
642
 
643
- #: ../addons/banking/services/mycred-bank-service-interest.php:392 ..
644
- #: addons/banking/services/mycred-bank-service-interest.php:409 ..
645
- #: addons/banking/services/mycred-bank-service-payouts.php:250
646
- msgid "Run Count"
647
- msgstr "Cuenta de Ejecución"
 
 
 
648
 
649
- #: ../addons/banking/services/mycred-bank-service-interest.php:397
650
- msgid "Last Payout"
651
- msgstr "Ultimo Desembolso"
652
 
653
- #: ../addons/banking/services/mycred-bank-service-interest.php:397 ..
654
- #: addons/banking/services/mycred-bank-service-interest.php:414
655
- msgid "Activated"
656
- msgstr "Activado"
657
 
658
- #: ../addons/banking/services/mycred-bank-service-interest.php:401
659
- msgid "Total Payed Interest"
660
- msgstr "Total Interés Pagado"
 
 
 
 
661
 
662
- #: ../addons/banking/services/mycred-bank-service-interest.php:405
663
- msgid "Compound History"
664
- msgstr "Historial del Compuesto"
 
 
665
 
666
- #: ../addons/banking/services/mycred-bank-service-interest.php:414
667
- msgid "Last Interest Compound"
668
- msgstr "Ultimo Interés Compuesto"
669
 
670
- #: ../addons/banking/services/mycred-bank-service-interest.php:418
671
- msgid "Total Compounded Interest"
672
- msgstr "Total Interés Compuesto"
673
 
674
- #: ../addons/banking/services/mycred-bank-service-interest.php:422 ..
675
- #: addons/banking/services/mycred-bank-service-interest.php:549
676
- msgid "Interest Rate"
677
- msgstr "Tasa de Interés"
678
 
679
- #: ../addons/banking/services/mycred-bank-service-interest.php:425
680
- msgid "Default Rate"
681
- msgstr "Tasa de Incumplimiento"
 
682
 
683
- #: ../addons/banking/services/mycred-bank-service-interest.php:427 ..
684
- #: addons/banking/services/mycred-bank-service-payouts.php:268
685
- msgid "Can not be zero."
686
- msgstr "No puede ser cero."
687
 
688
- #: ../addons/banking/services/mycred-bank-service-interest.php:430 ..
689
- #: addons/gateway/carts/mycred-wpecommerce.php:367
690
- msgid "Payout"
691
- msgstr "Desembolso"
 
 
 
 
692
 
693
- #. can also be "Plantilla de Bitácora"
694
- #: ../addons/banking/services/mycred-bank-service-interest.php:435 ..
695
- #: addons/banking/services/mycred-bank-service-payouts.php:283 ../addons/buy-
696
- #: creds/myCRED-addon-buy-creds.php:672 ../addons/buy-creds/myCRED-addon-buy-
697
- #: creds.php:735 ../addons/coupons/myCRED-addon-coupons.php:502 ..
698
- #: addons/gateway/carts/mycred-marketpress.php:395 ..
699
- #: addons/gateway/carts/mycred-marketpress.php:428 ..
700
- #: addons/gateway/carts/mycred-woocommerce.php:104 ..
701
- #: addons/gateway/carts/mycred-woocommerce.php:176 ..
702
- #: addons/gateway/carts/mycred-wpecommerce.php:371 ../modules/mycred-module-
703
- #: hooks.php:1004 ../modules/mycred-module-hooks.php:2025 ../modules/mycred-
704
- #: module-hooks.php:2395 ../plugins/mycred-hook-badgeOS.php:124 ../plugins/mycred-
705
- #: hook-badgeOS.php:126 ../plugins/mycred-hook-badgeOS.php:135 ../plugins/mycred-
706
- #: hook-events-manager-light.php:196 ../plugins/mycred-hook-events-manager-light.
707
- #: php:209 ../plugins/mycred-hook-gd-star-rating.php:109 ../plugins/mycred-hook-
708
- #: gd-star-rating.php:122 ../plugins/mycred-hook-woocommerce.php:321 ..
709
- #: plugins/mycred-hook-wp-favorite-posts.php:217 ../plugins/mycred-hook-wp-
710
- #: favorite-posts.php:235 ../plugins/mycred-hook-wp-favorite-posts.php:249 ..
711
- #: plugins/mycred-hook-wp-favorite-posts.php:262 ../plugins/mycred-hook-wp-polls.
712
- #: php:136
713
- msgid "Log Template"
714
- msgstr "Plantilla de Registro"
715
 
716
- #: ../addons/banking/services/mycred-bank-service-interest.php:442 ..
717
- #: addons/banking/services/mycred-bank-service-payouts.php:290 ..
718
- #: addons/coupons/myCRED-addon-coupons.php:438
719
- msgid "Minimum Balance"
720
- msgstr "Saldo Minimo"
 
 
721
 
722
- #: ../addons/banking/services/mycred-bank-service-interest.php:446 ..
723
- #: addons/banking/services/mycred-bank-service-payouts.php:294
724
- msgid "Optional minimum balance requirement."
725
- msgstr "Requerimiento opcional de saldo minimo."
 
726
 
727
- #: ../addons/banking/services/mycred-bank-service-interest.php:449 ..
728
- #: addons/banking/services/mycred-bank-service-payouts.php:297
729
- msgid "Exclude"
730
- msgstr "Excluir"
731
 
732
- #: ../addons/banking/services/mycred-bank-service-interest.php:452 ..
733
- #: addons/banking/services/mycred-bank-service-payouts.php:300
734
- msgid "Comma separated list of user IDs"
735
- msgstr "Lista del IDs de usuarios delimitado por comas"
736
 
737
- #: ../addons/banking/services/mycred-bank-service-interest.php:456 ..
738
- #: addons/banking/services/mycred-bank-service-payouts.php:304
739
- msgid "Roles"
740
- msgstr "Papeles"
741
 
742
- #: ../addons/banking/services/mycred-bank-service-interest.php:522
743
- msgid "This user is excluded from receiving interest on this balance."
744
- msgstr "Este usuario esta excluido la concesión de interés sobre este saldo."
745
 
746
- #: ../addons/banking/services/mycred-bank-service-interest.php:525
747
- msgid "Remove from Excluded List"
748
- msgstr "Quitar de la Lista de Exclusion"
749
 
750
- #: ../addons/banking/services/mycred-bank-service-interest.php:537
751
- msgid "This user role is excluded from receiving interest on this balance."
752
- msgstr "Este papel de usuario esta excluido de recibir interés sobre este saldo."
 
 
753
 
754
- #: ../addons/banking/services/mycred-bank-service-interest.php:552 ../addons/buy-
755
- #: creds/myCRED-addon-buy-creds.php:836 ../addons/sell-content/myCRED-addon-sell-
756
- #: content.php:114
757
- msgid "Leave empty to use the default value."
758
- msgstr "Dejar vacio si va a utilizar el valor predefinido."
759
 
760
- #: ../addons/banking/services/mycred-bank-service-interest.php:558
761
- msgid "Save Interest Rate"
762
- msgstr "Guardar el tipo de interés"
 
 
763
 
764
- #: ../addons/banking/services/mycred-bank-service-interest.php:559
765
- msgid "Exclude from receiving interest"
766
- msgstr "Excluir de recibir interés"
 
 
 
767
 
768
- #: ../addons/banking/services/mycred-bank-service-interest.php:676
769
- msgid "Compound interest rate saved."
770
- msgstr "Tipo de interés compuesto guardado."
 
 
 
 
771
 
772
- #: ../addons/banking/services/mycred-bank-service-interest.php:678
773
- msgid "User excluded from receiving interest."
774
- msgstr "Usuario excluido la concesión de interés."
775
 
776
- #: ../addons/banking/services/mycred-bank-service-interest.php:680
777
- msgid "User included in receiving interest."
778
- msgstr "Usuario permitido la concesión de interés."
 
 
779
 
780
- #: ../addons/banking/services/mycred-bank-service-payouts.php:21
781
- msgid "Daily %_plural%"
782
- msgstr "%_plural% diarios"
783
 
784
- #: ../addons/banking/services/mycred-bank-service-payouts.php:246 ..
785
- #: includes/mycred-admin.php:426 ../modules/mycred-module-log.php:276 ..
786
- #: modules/mycred-module-log.php:277
787
- msgid "History"
788
- msgstr "Historial"
789
 
790
- #: ../addons/banking/services/mycred-bank-service-payouts.php:255
791
- msgid "Last Run"
792
- msgstr "Ultima Ejecución"
793
 
794
- #: ../addons/banking/services/mycred-bank-service-payouts.php:259
795
- msgid "Total Payouts"
796
- msgstr "Total Desembolsos"
 
 
 
 
 
 
797
 
798
- #: ../addons/banking/services/mycred-bank-service-payouts.php:263
799
- msgid "Pay Users"
800
- msgstr "Pagar a los Usuarios"
 
801
 
802
- #: ../addons/banking/services/mycred-bank-service-payouts.php:266 ../addons/buy-
803
- #: creds/myCRED-addon-buy-creds.php:343 ../addons/buy-creds/myCRED-addon-buy-
804
- #: creds.php:1633 ../addons/buy-creds/myCRED-addon-buy-creds.php:1713 ..
805
- #: addons/buy-creds/abstracts/mycred-abstract-payment-gateway.php:593 ..
806
- #: includes/mycred-admin.php:752 ../includes/mycred-admin.php:804 ..
807
- #: includes/mycred-shortcodes.php:972 ../includes/mycred-shortcodes.php:1115 ..
808
- #: plugins/mycred-hook-affiliatewp.php:256
809
- msgid "Amount"
810
- msgstr "Cantidad"
811
 
812
- #: ../addons/banking/services/mycred-bank-service-payouts.php:271 ..
813
- #: modules/mycred-module-hooks.php:2410
814
- msgid "Interval"
815
- msgstr "Interval"
816
 
817
- #: ../addons/banking/services/mycred-bank-service-payouts.php:276
818
- msgid "Cycles"
819
- msgstr "Ciclos"
 
820
 
821
- #: ../addons/banking/services/mycred-bank-service-payouts.php:278
822
- msgid "Set to -1 for unlimited"
823
- msgstr "Ajusta a -1 para ilimitado"
 
824
 
825
- #: ../addons/banking/services/mycred-bank-service-payouts.php:281
826
- msgid "Important"
827
- msgstr "Importante"
 
828
 
829
- #: ../addons/banking/services/mycred-bank-service-payouts.php:281
830
- msgid ""
831
- "You can always stop payouts by deactivating this service. Just remember that "
832
- "if you deactivate while there are cycles left, this service will continue on "
833
- "when it gets re-activated. Set cycles to zero to reset."
834
- msgstr ""
835
- "Siempre se puede detener los desembolsos mediante la desactivación de este "
836
- "servicio. Pero recuerda que si lo desactivas mientras que todavia quedan "
837
- "ciclos para completar, este servicio volverá a continuar en cuando se vuelvá "
838
- "a activar. Fija o configura los ciclos a cero para reiniciar.\n"
839
 
840
- #: ../addons/buy-creds/myCRED-addon-buy-creds.php:56 ../addons/buy-creds/myCRED-
841
- #: addon-buy-creds.php:57 ../addons/buy-creds/myCRED-addon-buy-creds.php:58
842
- msgid "Payment Gateways"
843
- msgstr "Pasarela de Pago"
844
 
845
- #: ../addons/buy-creds/myCRED-addon-buy-creds.php:269
846
- msgctxt "Post Type General Name"
847
- msgid "Pending Payments"
848
- msgstr "Pagos Pendientes"
849
 
850
- #: ../addons/buy-creds/myCRED-addon-buy-creds.php:270
851
- msgctxt "Post Type Singular Name"
852
- msgid "Pending Payment"
853
- msgstr "Pago Pendiente"
 
 
 
 
854
 
855
- #: ../addons/buy-creds/myCRED-addon-buy-creds.php:271 ../addons/buy-creds/myCRED-
856
- #: addon-buy-creds.php:273 ../addons/buy-creds/myCRED-addon-buy-creds.php:284
857
- msgid "Pending Payments"
858
- msgstr "Pagos Pendientes"
859
 
860
- #: ../addons/buy-creds/myCRED-addon-buy-creds.php:277
861
- msgid "Edit Pending Payment"
862
- msgstr "Editar Pago Pendiente"
863
 
864
- #: ../addons/buy-creds/myCRED-addon-buy-creds.php:280 ../addons/buy-creds/myCRED-
865
- #: addon-buy-creds.php:1752
866
- msgid "No pending payments found"
867
- msgstr "Ningun pago pendiente encontrado"
868
 
869
- #: ../addons/buy-creds/myCRED-addon-buy-creds.php:281
870
- msgid "Not found in Trash"
871
- msgstr "No ha sido encontrado en la Papelera"
872
 
873
- #: ../addons/buy-creds/myCRED-addon-buy-creds.php:340 ../addons/buy-creds/myCRED-
874
- #: addon-buy-creds.php:1078 ../addons/buy-creds/myCRED-addon-buy-creds.php:1711
875
- msgid "Transaction ID"
876
- msgstr "Identificación de la Transacción"
877
 
878
- #: ../addons/buy-creds/myCRED-addon-buy-creds.php:342 ../addons/buy-creds/myCRED-
879
- #: addon-buy-creds.php:1074
880
- msgid "Buyer"
881
- msgstr "Comprador"
882
 
883
- #: ../addons/buy-creds/myCRED-addon-buy-creds.php:344 ../addons/buy-creds/myCRED-
884
- #: addon-buy-creds.php:1714 ../addons/buy-creds/abstracts/mycred-abstract-payment-
885
- #: gateway.php:594
886
- msgid "Cost"
887
- msgstr "Coste"
888
 
889
- #: ../addons/buy-creds/myCRED-addon-buy-creds.php:345 ../addons/buy-creds/myCRED-
890
- #: addon-buy-creds.php:1073 ../addons/buy-creds/myCRED-addon-buy-creds.php:1712 ..
891
- #: includes/mycred-overview.php:166 ../includes/mycred-overview.php:173
892
- msgid "Gateway"
893
- msgstr "Pasarela"
894
 
895
- #: ../addons/buy-creds/myCRED-addon-buy-creds.php:346
896
- msgid "Type"
897
- msgstr "Clase"
 
 
 
 
898
 
899
- #: ../addons/buy-creds/myCRED-addon-buy-creds.php:439
900
- msgid "Pay Out"
901
- msgstr "Desembolso"
902
 
903
- #: ../addons/buy-creds/myCRED-addon-buy-creds.php:473
904
- msgid "buyCRED Purchase Log"
905
- msgstr "compraCRED Registro de Compras"
906
 
907
- #: ../addons/buy-creds/myCRED-addon-buy-creds.php:474 ../addons/buy-creds/myCRED-
908
- #: addon-buy-creds.php:725 ../addons/buy-creds/myCRED-addon-buy-creds.php:922
909
- msgid "Purchase Log"
910
- msgstr "Registro de Compras"
911
 
912
- #: ../addons/buy-creds/myCRED-addon-buy-creds.php:578 ../addons/gateway/event-
913
- #: booking/mycred-eventespresso3.php:26 ../addons/gateway/event-booking/mycred-
914
- #: eventsmanager-pro.php:516 ../addons/gateway/event-booking/mycred-eventsmanager.
915
- #: php:540 ../addons/sell-content/myCRED-addon-sell-content.php:424
916
- msgid "Payments"
917
- msgstr "Pagos"
918
 
919
- #: ../addons/buy-creds/myCRED-addon-buy-creds.php:612
920
- msgid "Please login to purchase %_plural%"
921
- msgstr "Identifícate antes de comprar %_plural%"
 
 
 
 
 
 
 
 
922
 
923
- #: ../addons/buy-creds/myCRED-addon-buy-creds.php:627
 
 
 
 
 
 
924
  #, php-format
925
- msgid "Gift purchase from %display_name%."
926
- msgstr "Regalo comprado de parte de %display_name%."
927
 
928
- #: ../addons/buy-creds/myCRED-addon-buy-creds.php:642 ../addons/ranks/myCRED-
929
- #: addon-ranks.php:1084
930
- msgid "Minimum %plural%"
931
- msgstr "Minimo %_plural%"
932
 
933
- #: ../addons/buy-creds/myCRED-addon-buy-creds.php:646
934
- msgid "Minimum amount of %plural% a user must purchase. Will default to 1."
 
 
 
 
935
  msgstr ""
936
- "La mínima cantidad de %plural% que el usuario debe comprar. Sera predefinido "
937
- "a 1."
 
 
938
 
939
- #: ../addons/buy-creds/myCRED-addon-buy-creds.php:651 ../addons/transfer/myCRED-
940
- #: addon-transfer.php:211 ../includes/mycred-widgets.php:598 ../modules/mycred-
941
- #: module-settings.php:656
942
- msgid "Point Types"
943
- msgstr "Clase de Puntos"
944
 
945
- #: ../addons/buy-creds/myCRED-addon-buy-creds.php:654
946
- msgid "Select the point types that users can buy. You must select at least one!"
947
- msgstr ""
948
- "Elige el clase de punto que el usuario puede comprar. Debes eligir al menos "
949
- "uno!"
950
 
951
- #: ../addons/buy-creds/myCRED-addon-buy-creds.php:665
952
- msgid "Login Template"
953
- msgstr "Plantilla de Ingreso"
 
954
 
955
- #: ../addons/buy-creds/myCRED-addon-buy-creds.php:669
956
- msgid "Content to show when a user is not logged in."
957
- msgstr "Mostrar este contenido cuando un usuario no ha sido ingresado."
958
 
959
- #: ../addons/buy-creds/myCRED-addon-buy-creds.php:679
960
- msgid "Thank You Page"
961
- msgstr "Página de Agradecimiento"
 
 
962
 
963
- #: ../addons/buy-creds/myCRED-addon-buy-creds.php:682 ../addons/buy-creds/myCRED-
964
- #: addon-buy-creds.php:705
965
- msgid "Custom URL"
966
- msgstr "URL Personalizada"
967
 
968
- #: ../addons/buy-creds/myCRED-addon-buy-creds.php:687 ../addons/buy-creds/myCRED-
969
- #: addon-buy-creds.php:710
970
- msgid "Page"
971
- msgstr "Página"
972
 
973
- #: ../addons/buy-creds/myCRED-addon-buy-creds.php:702
974
- msgid "Cancellation Page"
975
- msgstr "Página de Cancelación"
976
 
977
- #: ../addons/buy-creds/myCRED-addon-buy-creds.php:727
978
- msgid "Show seperate log for %_plural% purchases."
979
- msgstr "Mostrar registro distinto para compras de %_plural%."
980
 
981
- #: ../addons/buy-creds/myCRED-addon-buy-creds.php:729
982
- msgid "Gifting"
983
- msgstr "Regalar"
984
 
985
- #: ../addons/buy-creds/myCRED-addon-buy-creds.php:731
986
- #, php-format
987
- msgid "Allow users to buy %_plural% for other users."
988
- msgstr "Prmita que usuarios compren %_plural% para otros usuarios."
989
 
990
- #: ../addons/buy-creds/myCRED-addon-buy-creds.php:732
991
- #, php-format
992
- msgid "Allow users to buy %_plural% for content authors."
993
- msgstr "Prmita que usuarios compren %_plural% para autores de contenido."
 
994
 
995
- #: ../addons/buy-creds/myCRED-addon-buy-creds.php:740 ../modules/mycred-module-
996
- #: hooks.php:3110
997
- msgid "Available Shortcodes"
998
- msgstr "Códigos cortos Disponibles"
999
 
1000
- #: ../addons/buy-creds/myCRED-addon-buy-creds.php:830
1001
- #, php-format
1002
- msgid "%s Exchange Rate"
1003
- msgstr "Tipo de Cambio %s"
1004
 
1005
- #: ../addons/buy-creds/myCRED-addon-buy-creds.php:844
1006
- msgid "Save Exchange Rates"
1007
- msgstr "Guardar Tipo de Cambio"
 
1008
 
1009
- #: ../addons/buy-creds/myCRED-addon-buy-creds.php:900
1010
- msgid "Exchange rate override saved"
1011
- msgstr "Anulación de de tipo de cambio guardado"
1012
 
1013
- #: ../addons/buy-creds/myCRED-addon-buy-creds.php:903
1014
- msgid "Payment completed"
1015
- msgstr "Pago finalizado"
1016
 
1017
- #: ../addons/buy-creds/myCRED-addon-buy-creds.php:922
1018
- #, php-format
1019
- msgid "%s Payment Gateways"
1020
- msgstr "%s Pasarelas de Pago"
 
1021
 
1022
- #: ../addons/buy-creds/myCRED-addon-buy-creds.php:922 ../addons/buy-creds/myCRED-
1023
- #: addon-buy-creds.php:1085
1024
- msgid "buyCRED Settings"
1025
- msgstr "Configuraciones de compraCRED"
1026
 
1027
- #: ../addons/buy-creds/myCRED-addon-buy-creds.php:947
1028
- msgid "Test Mode"
1029
- msgstr "Modo de Prueba"
 
1030
 
1031
- #: ../addons/buy-creds/myCRED-addon-buy-creds.php:949
1032
- msgid "Enabled"
1033
- msgstr "Habilitado"
 
 
 
1034
 
1035
- #. also, "Inhabilitar"
1036
- #: ../addons/buy-creds/myCRED-addon-buy-creds.php:952
1037
- msgid "Disabled"
1038
- msgstr "Desactivado"
 
1039
 
1040
- #: ../addons/buy-creds/myCRED-addon-buy-creds.php:962
1041
- msgid "Sandbox Mode"
1042
- msgstr "Modo Entorno Aislado"
1043
 
1044
- #: ../addons/buy-creds/myCRED-addon-buy-creds.php:965
1045
- msgid "Enable for test purchases."
1046
- msgstr "Habilitar para compras de prueba."
 
 
 
 
1047
 
1048
- #: ../addons/buy-creds/myCRED-addon-buy-creds.php:986 ../addons/gateway/event-
1049
- #: booking/mycred-eventespresso3.php:502 ../modules/mycred-module-settings.php:739
 
1050
  msgid "Update Settings"
1051
  msgstr "Actualizar Configuraciones"
1052
 
1053
- #: ../addons/buy-creds/myCRED-addon-buy-creds.php:987
1054
- msgid "More Gateways"
1055
- msgstr "Mas Pasarelas"
1056
 
1057
- #: ../addons/buy-creds/myCRED-addon-buy-creds.php:1075 ../includes/mycred-log.php:
1058
- #: 756
1059
- msgid "Date"
1060
- msgstr "Fecha"
1061
 
1062
- #: ../addons/buy-creds/myCRED-addon-buy-creds.php:1077
1063
- msgid "Payed"
1064
- msgstr "Pagado"
1065
 
1066
- #: ../addons/buy-creds/myCRED-addon-buy-creds.php:1085
1067
- msgid "<strong>buy</strong>CRED Purchase Log"
1068
- msgstr "Registro de Compras de <strong>compra</strong>CRED"
1069
 
1070
- #: ../addons/buy-creds/myCRED-addon-buy-creds.php:1085 ../addons/gateway/event-
1071
- #: booking/mycred-eventespresso3.php:367
1072
- msgid "Gateway Settings"
1073
- msgstr "Configuraciones de la Pasarela de Pago"
 
 
 
1074
 
1075
- #: ../addons/buy-creds/myCRED-addon-buy-creds.php:1270 ../addons/sell-
1076
- #: content/myCRED-addon-sell-content.php:1210
1077
- msgid "No purchases found"
1078
- msgstr "No se encontro ninguna compra"
1079
 
1080
- #: ../addons/buy-creds/myCRED-addon-buy-creds.php:1347 ../addons/buy-creds/myCRED-
1081
- #: addon-buy-creds.php:1464
1082
- msgid "This Add-on needs to setup before you can use this shortcode."
 
 
1083
  msgstr ""
1084
- "Esta extensión (add-on) debe ser configurado antes de poder usar este código "
1085
- "corto (shortcode)."
1086
 
1087
- #: ../addons/buy-creds/myCRED-addon-buy-creds.php:1366 ../addons/buy-creds/myCRED-
1088
- #: addon-buy-creds.php:1483
1089
- msgid "No gateways installed."
1090
- msgstr "Ningun pasarela de pago instalado."
1091
 
1092
- #: ../addons/buy-creds/myCRED-addon-buy-creds.php:1367 ../addons/buy-creds/myCRED-
1093
- #: addon-buy-creds.php:1484
1094
- msgid "Gateway does not exist."
1095
- msgstr "Puerta de enlace no existe."
1096
 
1097
- #: ../addons/buy-creds/myCRED-addon-buy-creds.php:1415
1098
- msgid "Yourself"
1099
- msgstr "Tu mismo"
1100
 
1101
- #: ../addons/buy-creds/myCRED-addon-buy-creds.php:1485
1102
- msgid "No active gateways found."
1103
- msgstr "No se encuentra ningun puerta de enlace activo."
 
 
1104
 
1105
- #: ../addons/buy-creds/myCRED-addon-buy-creds.php:1486
1106
- msgid "The selected gateway is not active."
1107
- msgstr "La puerta de enlace seleccionada no esta activo."
1108
-
1109
- #: ../addons/buy-creds/myCRED-addon-buy-creds.php:1533
1110
- #, php-format
1111
- msgid "Buy with %gateway%"
1112
- msgstr "Compra con %gateway%"
1113
-
1114
- #: ../addons/buy-creds/myCRED-addon-buy-creds.php:1539 ../addons/sell-
1115
- #: content/myCRED-addon-sell-content.php:44
1116
- msgid "Buy Now"
1117
- msgstr "Compra Ahora"
1118
 
1119
- #: ../addons/buy-creds/myCRED-addon-buy-creds.php:1584
1120
- msgid "No users found"
1121
- msgstr "Ningun Usuario Encontrado"
 
 
 
 
1122
 
1123
- #: ../addons/buy-creds/myCRED-addon-buy-creds.php:1594
1124
- msgid "To"
1125
- msgstr "A"
 
 
1126
 
1127
- #: ../addons/buy-creds/myCRED-addon-buy-creds.php:1611
1128
- msgid "Select Amount"
1129
- msgstr "Selecciona la Cantidad"
 
 
 
 
 
 
 
1130
 
1131
- #: ../addons/buy-creds/myCRED-addon-buy-creds.php:1635
1132
- msgid "min."
1133
- msgstr "min."
1134
 
1135
- #: ../addons/buy-creds/myCRED-addon-buy-creds.php:1643
1136
- msgid "Select Gateway"
1137
- msgstr "Selecciona la Pasarela de Pago"
 
 
 
 
1138
 
1139
- #: ../addons/buy-creds/myCRED-addon-buy-creds.php:1686 ../addons/gateway/event-
1140
- #: booking/mycred-eventespresso3.php:27 ../addons/gateway/event-booking/mycred-
1141
- #: eventsmanager-pro.php:39 ../addons/gateway/event-booking/mycred-eventsmanager.
1142
- #: php:35
1143
- msgid "Pay Now"
1144
- msgstr "Pagar Ahora"
 
 
 
 
1145
 
1146
- #: ../addons/buy-creds/myCRED-addon-buy-creds.php:1687 ../includes/mycred-install.
1147
- #: php:536
1148
- msgid "Cancel"
1149
- msgstr "Cancelar"
 
 
 
 
1150
 
1151
- #: ../addons/buy-creds/myCRED-addon-buy-creds.php:1715 ../addons/ranks/myCRED-
1152
- #: addon-ranks.php:1612 ../modules/mycred-module-log.php:407 ../modules/mycred-
1153
- #: module-settings.php:625 ../modules/mycred-module-settings.php:640
1154
- msgid "Actions"
1155
- msgstr "Acciones"
1156
 
1157
- #: ../addons/buy-creds/abstracts/mycred-abstract-payment-gateway.php:114
1158
- msgid "This Payment Gateway has no settings"
1159
- msgstr "Esta Pasarela de Pago no ha sido configurado"
1160
 
1161
- #: ../addons/buy-creds/abstracts/mycred-abstract-payment-gateway.php:151
1162
- msgid "Select currency"
1163
- msgstr "Elige moneda"
1164
 
1165
- #: ../addons/buy-creds/abstracts/mycred-abstract-payment-gateway.php:352
1166
- msgid "Incoming confirmation call detected"
1167
- msgstr "Se detectó una llamada entrante de la confirmación."
 
 
1168
 
1169
- #: ../addons/buy-creds/abstracts/mycred-abstract-payment-gateway.php:353
1170
  #, php-format
1171
- msgid "Gateway identified itself as \"%s\""
1172
- msgstr "Puerta de enlace se identifico como \"%s\""
1173
 
1174
- #: ../addons/buy-creds/abstracts/mycred-abstract-payment-gateway.php:354
1175
- msgid "Verifying caller"
1176
- msgstr "Verificando la llamada"
1177
 
1178
- #. also, "Pago de Prueba" depending on context
1179
- #: ../addons/buy-creds/abstracts/mycred-abstract-payment-gateway.php:400
1180
- msgid "Test Payment"
1181
- msgstr "Probar Pago"
1182
 
1183
- #: ../addons/buy-creds/abstracts/mycred-abstract-payment-gateway.php:404 ..
1184
- #: addons/gateway/carts/mycred-marketpress.php:179
1185
- msgid "Payment"
1186
- msgstr "PAgo"
1187
 
1188
- #: ../addons/buy-creds/abstracts/mycred-abstract-payment-gateway.php:424
1189
- msgid "Cancel purchase"
1190
- msgstr "Cancelar la compra"
1191
 
1192
- #: ../addons/buy-creds/abstracts/mycred-abstract-payment-gateway.php:503 ..
1193
- #: includes/mycred-admin.php:745 ../includes/mycred-admin.php:789
1194
- msgid "required"
1195
- msgstr "necesario"
1196
 
1197
- #: ../addons/buy-creds/abstracts/mycred-abstract-payment-gateway.php:504 ..
1198
- #: includes/mycred-admin.php:747 ../includes/mycred-admin.php:791
1199
- msgid "optional"
1200
- msgstr "opcional"
1201
 
1202
- #: ../addons/buy-creds/abstracts/mycred-abstract-payment-gateway.php:509
1203
- msgid "First Name"
1204
- msgstr "Nombre"
1205
 
1206
- #: ../addons/buy-creds/abstracts/mycred-abstract-payment-gateway.php:513
1207
- msgid "Last Name"
1208
- msgstr "Apellido"
1209
 
1210
- #: ../addons/buy-creds/abstracts/mycred-abstract-payment-gateway.php:517
1211
- msgid "Address Line 1"
1212
- msgstr "Dirección Linea 1"
1213
 
1214
- #: ../addons/buy-creds/abstracts/mycred-abstract-payment-gateway.php:521
1215
- msgid "Address Line 2"
1216
- msgstr "Dirección Linea 2"
 
1217
 
1218
- #: ../addons/buy-creds/abstracts/mycred-abstract-payment-gateway.php:525
1219
- msgid "City"
1220
- msgstr "Ciudad"
1221
 
1222
- #: ../addons/buy-creds/abstracts/mycred-abstract-payment-gateway.php:529
1223
- msgid "Zip"
1224
- msgstr "Código Postal"
1225
 
1226
- #: ../addons/buy-creds/abstracts/mycred-abstract-payment-gateway.php:533
1227
- msgid "State"
1228
- msgstr "Estado/Provincia"
1229
 
1230
- #: ../addons/buy-creds/abstracts/mycred-abstract-payment-gateway.php:537
1231
- msgid "Country"
1232
- msgstr "País"
 
 
1233
 
1234
- #: ../addons/buy-creds/abstracts/mycred-abstract-payment-gateway.php:540
1235
- msgid "Choose Country"
1236
- msgstr "Eliga el País"
1237
 
1238
- #: ../addons/buy-creds/abstracts/mycred-abstract-payment-gateway.php:587
1239
  #, php-format
1240
- msgid "%s Purchase"
1241
- msgstr "Compra %s"
1242
 
1243
- #: ../addons/buy-creds/abstracts/mycred-abstract-payment-gateway.php:592 ..
1244
- #: addons/gateway/carts/mycred-wpecommerce.php:112
1245
- msgid "Item"
1246
- msgstr "Articulo"
1247
 
1248
- #: ../addons/buy-creds/abstracts/mycred-abstract-payment-gateway.php:615
1249
- msgid "Debug"
1250
- msgstr "Depurar"
1251
 
1252
- #: ../addons/buy-creds/abstracts/mycred-abstract-payment-gateway.php:616
1253
- msgid ""
1254
- "Here you can see information that are collected and sent to this gateway. "
1255
- "Debug information is only visible for administrators and are intended for "
1256
- "troubleshooting / testing of this gateway. Please disable \"Sandbox Mode\" "
1257
- "when you want to take this gateway online."
1258
- msgstr ""
1259
- "Aquí se puede ver la información que se recoge y se envía a esta puerta de "
1260
- "enlace. La información de depuración sólo es visible para los "
1261
- "administradores y está disponible resolver problemas algunas / pruebar este "
1262
- "puerta de enlace. Por favor, desactivar \"Modo Entorno Aislado\" cuando se "
1263
- "quiere activar este portal y ponerlo online."
1264
 
1265
- #: ../addons/buy-creds/abstracts/mycred-abstract-payment-gateway.php:620
1266
- msgid "Section"
1267
- msgstr "Sección"
1268
 
1269
- #: ../addons/buy-creds/abstracts/mycred-abstract-payment-gateway.php:621
1270
- msgid "Result"
1271
- msgstr "Resultado"
1272
 
1273
- #: ../addons/buy-creds/abstracts/mycred-abstract-payment-gateway.php:626
1274
- msgid "Payment Status"
1275
- msgstr "Estado de Pago"
1276
 
1277
- #: ../addons/buy-creds/abstracts/mycred-abstract-payment-gateway.php:630
1278
- msgid "Request"
1279
- msgstr "Solicitud"
1280
-
1281
- #: ../addons/buy-creds/abstracts/mycred-abstract-payment-gateway.php:634
1282
- msgid "Gateway Response"
1283
- msgstr "Respuesta de la Pasarela de Pago"
1284
-
1285
- #: ../addons/buy-creds/abstracts/mycred-abstract-payment-gateway.php:681
1286
- #, php-format
1287
- msgid "Continue to %s"
1288
- msgstr "Continuar a %s"
1289
-
1290
- #: ../addons/buy-creds/abstracts/mycred-abstract-payment-gateway.php:682 ..
1291
- #: addons/buy-creds/gateways/bitpay.php:233
1292
- msgid "Click here if you are not automatically redirected"
1293
- msgstr "Haga clic aqui si no se encuentra redirigida automáticamente"
1294
 
1295
- #: ../addons/buy-creds/abstracts/mycred-abstract-payment-gateway.php:687
1296
- msgid "The following information will be sent to the gateway"
1297
- msgstr "La información siguiente sera transmitido a la pasarela de pago"
1298
 
1299
- #: ../addons/buy-creds/abstracts/mycred-abstract-payment-gateway.php:1373
1300
- msgid "Outside US"
1301
- msgstr "Fuera de los EEUU"
1302
 
1303
- #: ../addons/buy-creds/abstracts/mycred-abstract-payment-gateway.php:1390
1304
- msgid "January"
1305
- msgstr "Enero"
 
1306
 
1307
- #: ../addons/buy-creds/abstracts/mycred-abstract-payment-gateway.php:1391
1308
- msgid "February"
1309
- msgstr "Febrero"
 
 
1310
 
1311
- #: ../addons/buy-creds/abstracts/mycred-abstract-payment-gateway.php:1392
1312
- msgid "March"
1313
- msgstr "Marzo"
 
1314
 
1315
- #: ../addons/buy-creds/abstracts/mycred-abstract-payment-gateway.php:1393
1316
- msgid "April"
1317
- msgstr "Abril"
 
1318
 
1319
- #: ../addons/buy-creds/abstracts/mycred-abstract-payment-gateway.php:1394
1320
- msgid "May"
1321
- msgstr "Mayo"
 
1322
 
1323
- #: ../addons/buy-creds/abstracts/mycred-abstract-payment-gateway.php:1395
1324
- msgid "June"
1325
- msgstr "Junio"
 
1326
 
1327
- #: ../addons/buy-creds/abstracts/mycred-abstract-payment-gateway.php:1396
1328
- msgid "July"
1329
- msgstr "Julio"
 
1330
 
1331
- #: ../addons/buy-creds/abstracts/mycred-abstract-payment-gateway.php:1397
1332
- msgid "August"
1333
- msgstr "Agosto"
 
 
 
 
 
1334
 
1335
- #: ../addons/buy-creds/abstracts/mycred-abstract-payment-gateway.php:1398
1336
- msgid "September"
1337
- msgstr "Septiembre"
 
1338
 
1339
- #: ../addons/buy-creds/abstracts/mycred-abstract-payment-gateway.php:1399
1340
- msgid "October"
1341
- msgstr "Octubre"
 
 
 
 
 
1342
 
1343
- #: ../addons/buy-creds/abstracts/mycred-abstract-payment-gateway.php:1400
1344
- msgid "November"
1345
- msgstr "Noviembre"
 
1346
 
1347
- #: ../addons/buy-creds/abstracts/mycred-abstract-payment-gateway.php:1401
1348
- msgid "December"
1349
- msgstr "Diciembre"
 
 
 
1350
 
1351
- #: ../addons/buy-creds/gateways/bitpay.php:62 ../addons/buy-
1352
- #: creds/gateways/netbilling.php:92 ../addons/buy-creds/gateways/paypal-standard.
1353
- #: php:145 ../addons/buy-creds/gateways/skrill.php:124
1354
  #, php-format
1355
- msgid "Price mismatch. Expected: %s Received: %s"
1356
- msgstr "Desajuste de precio. Esperaba: %s Recibido: %s"
1357
 
1358
- #: ../addons/buy-creds/gateways/bitpay.php:68 ../addons/buy-creds/gateways/paypal-
1359
- #: standard.php:151 ../addons/buy-creds/gateways/skrill.php:130
1360
  #, php-format
1361
- msgid "Currency mismatch. Expected: %s Received: %s"
1362
- msgstr "Desajuste de moneda. Esperaba: %s Recibido: %s"
1363
 
1364
- #: ../addons/buy-creds/gateways/bitpay.php:74 ../addons/buy-
1365
- #: creds/gateways/netbilling.php:98 ../addons/buy-creds/gateways/paypal-standard.
1366
- #: php:157 ../addons/buy-creds/gateways/skrill.php:136
1367
  #, php-format
1368
- msgid "Payment not completed. Received: %s"
1369
- msgstr "Pago no cumplido. Recibido: %s"
1370
 
1371
- #: ../addons/buy-creds/gateways/bitpay.php:85 ../addons/buy-
1372
- #: creds/gateways/netbilling.php:109 ../addons/buy-creds/gateways/paypal-standard.
1373
- #: php:168 ../addons/buy-creds/gateways/skrill.php:147 ../addons/buy-
1374
- #: creds/gateways/zombaio.php:185
1375
- msgid "Failed to credit users account."
1376
- msgstr "No se pudo creditar la cuenta del usuario."
1377
 
1378
- #: ../addons/buy-creds/gateways/bitpay.php:164 ../addons/buy-
1379
- #: creds/gateways/netbilling.php:145 ../addons/buy-creds/gateways/paypal-standard.
1380
- #: php:208 ../addons/buy-creds/gateways/skrill.php:187 ../addons/buy-
1381
- #: creds/gateways/zombaio.php:214
1382
- msgid "Please setup this gateway before attempting to make a purchase!"
1383
  msgstr ""
1384
- "¡Por favor configure esta puerta de enlace antes de intentar hacer una "
1385
- "compra!"
1386
 
1387
- #: ../addons/buy-creds/gateways/bitpay.php:216 ../addons/buy-
1388
- #: creds/gateways/bitpay.php:227 ../addons/buy-creds/gateways/netbilling.php:198 .
1389
- #: ./addons/buy-creds/gateways/paypal-standard.php:268 ../addons/buy-
1390
- #: creds/gateways/skrill.php:281 ../addons/buy-creds/gateways/zombaio.php:247
1391
- msgid "Processing payment &hellip;"
1392
- msgstr "Procesando el pago &hellip;"
1393
 
1394
- #: ../addons/buy-creds/gateways/bitpay.php:219
1395
- msgid "Could not create a BitPay Invoice. Please contact the site administrator!"
 
 
1396
  msgstr ""
1397
- "¡No se pudo crear una factura de BitPay. Por favor pongase en contacto con "
1398
- "el administrador del sitio!"
1399
 
1400
- #: ../addons/buy-creds/gateways/bitpay.php:220
1401
- msgid "Bitpay returned the following error message:"
1402
- msgstr "Bitpay comunico este mensaje de error:"
 
1403
 
1404
- #: ../addons/buy-creds/gateways/bitpay.php:253 ../includes/mycred-remote.php:551
1405
- msgid "API Key"
1406
- msgstr "Clave de la API"
 
 
1407
 
1408
- #: ../addons/buy-creds/gateways/bitpay.php:259 ../addons/buy-
1409
- #: creds/gateways/paypal-standard.php:286 ../addons/buy-creds/gateways/skrill.php:
1410
- #: 300
1411
- msgid "Currency"
1412
- msgstr "Moneda"
1413
 
1414
- #: ../addons/buy-creds/gateways/bitpay.php:262
1415
- msgid "Currency Code"
1416
- msgstr "Código de Moneda"
 
 
 
 
 
1417
 
1418
- #: ../addons/buy-creds/gateways/bitpay.php:266 ../addons/buy-
1419
- #: creds/gateways/netbilling.php:235 ../addons/buy-creds/gateways/paypal-standard.
1420
- #: php:298 ../addons/buy-creds/gateways/skrill.php:319
1421
- msgid "Item Name"
1422
- msgstr "Nombre de Artículo"
1423
 
1424
- #: ../addons/buy-creds/gateways/bitpay.php:270 ../addons/buy-
1425
- #: creds/gateways/netbilling.php:239 ../addons/buy-creds/gateways/paypal-standard.
1426
- #: php:302 ../addons/buy-creds/gateways/skrill.php:323
1427
- msgid "Description of the item being purchased by the user."
1428
- msgstr "Descripción del artículo que el usuario esta comprando."
1429
 
1430
- #: ../addons/buy-creds/gateways/bitpay.php:273 ../addons/buy-
1431
- #: creds/gateways/netbilling.php:242 ../addons/buy-creds/gateways/paypal-standard.
1432
- #: php:305 ../addons/buy-creds/gateways/skrill.php:326
1433
- msgid "Exchange Rates"
1434
- msgstr "Tipo de Cambio"
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1435
 
1436
- #: ../addons/buy-creds/gateways/bitpay.php:277
1437
- msgid "Transaction Speed"
1438
- msgstr "Velocidad de la Transacción"
 
1439
 
1440
- #: ../addons/buy-creds/gateways/bitpay.php:284
1441
- msgid "High"
1442
- msgstr "Alto"
 
 
1443
 
1444
- #: ../addons/buy-creds/gateways/bitpay.php:285
1445
- msgid "Medium"
1446
- msgstr "Medio"
1447
-
1448
- #: ../addons/buy-creds/gateways/bitpay.php:286
1449
- msgid "Low"
1450
- msgstr "Bajo"
1451
-
1452
- #: ../addons/buy-creds/gateways/bitpay.php:299
1453
- msgid "Full Notifications"
1454
- msgstr "Notificaciones Completas"
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1455
 
1456
- #: ../addons/buy-creds/gateways/bitpay.php:306 ../includes/mycred-network.php:161
1457
- #: ../includes/mycred-network.php:175
1458
- msgid "No"
1459
- msgstr "No"
 
 
 
1460
 
1461
- #: ../addons/buy-creds/gateways/bitpay.php:307 ../includes/mycred-network.php:157
1462
- #: ../includes/mycred-network.php:171
1463
- msgid "Yes"
1464
- msgstr ""
1465
 
1466
- #: ../addons/buy-creds/gateways/netbilling.php:216
1467
- msgid "Account ID"
1468
- msgstr "ID de la Cuenta"
 
1469
 
1470
- #: ../addons/buy-creds/gateways/netbilling.php:222
1471
- msgid "Site Tag"
1472
- msgstr "Etiqueta (tag) del Sitio"
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1473
 
1474
- #: ../addons/buy-creds/gateways/netbilling.php:228
1475
- msgid "Order Integrity Key"
1476
- msgstr "Clave de Integridad del Pedido"
 
1477
 
1478
- #: ../addons/buy-creds/gateways/netbilling.php:232
1479
- msgid "Found under Step 12 on the Fraud Defense page."
1480
- msgstr "Se encuentra en Paso 12 de la página sobre Defensa contra Fraude."
 
1481
 
1482
- #: ../addons/buy-creds/gateways/netbilling.php:246
1483
- msgid "Postback CGI URL"
1484
- msgstr "Devolución de la URL CGI"
 
1485
 
1486
- #: ../addons/buy-creds/gateways/netbilling.php:250
 
1487
  msgid ""
1488
- "For this gateway to work, you must login to your NETbilling account and edit "
1489
- "your site. Under \"Default payment form settings\" make sure the Postback CGI "
1490
- "URL is set to the above address and \"Return method\" is set to POST."
1491
  msgstr ""
1492
- "Para que esta pasarela de pago funcione, deberia acceder a su cuenta "
1493
- "NETbilling y editar su sitio web. En \"Configuración de Formularios "
1494
- "Predefinido\" asegúrese de que la devolución de la URL CGI esta ajustada a la "
1495
- "dirección indicada arriba y \"Método de Retorno\" está ajustado a POST."
1496
 
1497
- #: ../addons/buy-creds/gateways/netbilling.php:298
1498
- msgid "Incorrect Credit Card number"
1499
- msgstr "Número de Tarjeta de Crédito Incorrecta"
1500
 
1501
- #: ../addons/buy-creds/gateways/netbilling.php:304
1502
- msgid "The credit card entered is past its expiration date."
1503
- msgstr "La tarjeta de crédito ha pasado su fecha de vencimiento."
 
1504
 
1505
- #: ../addons/buy-creds/gateways/netbilling.php:307
1506
- msgid "The CVV2 number entered is not valid."
1507
- msgstr "El numero CVV2 teclado no es valido."
1508
 
1509
- #: ../addons/buy-creds/gateways/netbilling.php:314
1510
- msgid "The bank routing number entered is not valid."
1511
- msgstr "El número de ruta bancaria introducido no es valido."
1512
 
1513
- #: ../addons/buy-creds/gateways/netbilling.php:318
1514
- msgid "The bank account number entered is not valid."
1515
- msgstr "La cuenta bancaria introducida no es valida."
 
 
1516
 
1517
- #: ../addons/buy-creds/gateways/paypal-standard.php:192 ../addons/buy-
1518
- #: creds/gateways/skrill.php:171
1519
- msgid "Success"
1520
- msgstr "Exito"
1521
 
1522
- #: ../addons/buy-creds/gateways/paypal-standard.php:193 ../addons/buy-
1523
- #: creds/gateways/skrill.php:172
1524
- msgid "Thank you for your purchase"
1525
- msgstr "Gracias por su compra"
 
 
 
 
1526
 
1527
- #: ../addons/buy-creds/gateways/paypal-standard.php:263
 
 
 
 
 
 
 
 
 
 
1528
  #, php-format
1529
- msgctxt "Return label. %s = Website name"
1530
- msgid "Return to %s"
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1531
  msgstr ""
 
 
1532
 
1533
- #: ../addons/buy-creds/gateways/paypal-standard.php:292
1534
- msgid "Account Email"
1535
- msgstr "Cuenta de Correo Electrónico"
 
1536
 
1537
- #: ../addons/buy-creds/gateways/skrill.php:228
1538
- msgid "Return to "
1539
- msgstr "Volver a"
1540
 
1541
- #: ../addons/buy-creds/gateways/skrill.php:264
1542
- msgid "Product:"
1543
- msgstr "Producto:"
 
 
 
 
 
 
 
 
1544
 
1545
- #: ../addons/buy-creds/gateways/skrill.php:273
1546
- msgid "Gift to:"
1547
- msgstr "Regalar a:"
1548
 
1549
- #: ../addons/buy-creds/gateways/skrill.php:274
1550
- msgid "(author)"
1551
- msgstr "(autor)"
1552
 
1553
- #: ../addons/buy-creds/gateways/skrill.php:307
1554
- msgid "Merchant Account Email"
1555
- msgstr "Correo electrónico de la Cuenta Comerciante"
1556
 
1557
- #: ../addons/buy-creds/gateways/skrill.php:313
1558
- msgid "Secret Word"
1559
- msgstr "Palabra Secreta"
 
1560
 
1561
- #: ../addons/buy-creds/gateways/skrill.php:330
1562
- msgid "Confirmation Email"
1563
- msgstr "Correo electrónico de confirmación"
1564
 
1565
- #: ../addons/buy-creds/gateways/skrill.php:333
1566
- msgid "Ask Skrill to send me a confirmation email for each successful purchase."
1567
- msgstr ""
1568
- "Pide a Skrill que me mande un email de confirmación para cada compra "
1569
- "finalizada con éxito."
1570
 
1571
- #: ../addons/buy-creds/gateways/skrill.php:336
1572
- msgid "Checkout Page"
1573
- msgstr "Página de Pago"
1574
 
1575
- #: ../addons/buy-creds/gateways/skrill.php:339 ../addons/gateway/carts/mycred-
1576
- #: woocommerce.php:92 ../addons/ranks/myCRED-addon-ranks.php:1318 ..
1577
- #: addons/transfer/includes/mycred-transfer-widgets.php:118 ../includes/mycred-
1578
- #: widgets.php:196 ../includes/mycred-widgets.php:384 ../includes/mycred-widgets.
1579
- #: php:592 ../modules/mycred-module-hooks.php:3073
1580
- msgid "Title"
1581
- msgstr "Titulo"
1582
 
1583
- #: ../addons/buy-creds/gateways/skrill.php:341
1584
- msgid "If left empty, your account email is used as title on the Skill Payment Page."
1585
- msgstr ""
1586
- "Si se deja vacío, el correo electrónico de su cuenta sera utilizada como "
1587
- "título en la Página de Pagos Skrill. "
1588
 
1589
- #: ../addons/buy-creds/gateways/skrill.php:344 ../addons/buy-
1590
- #: creds/gateways/zombaio.php:283
1591
- msgid "Logo URL"
1592
- msgstr "URL del Logotipo"
1593
 
1594
- #: ../addons/buy-creds/gateways/skrill.php:346
1595
  msgid ""
1596
- "The URL to the image you want to use on the top of the gateway. For best "
1597
- "integration results we recommend you use logos with dimensions up to 200px "
1598
- "in width and 50px in height."
1599
  msgstr ""
1600
- "La URL de la imagen que quieres usar en la encima de la pasarela de pago. "
1601
- "Para obtener la mejor integración recomendamos que uses logotipos con "
1602
- "dimensiones de hasta 200 píxeles de ancho y 50 px de altura."
1603
-
1604
- #: ../addons/buy-creds/gateways/skrill.php:349
1605
- msgid "Confirmation Note"
1606
- msgstr "Nota de Confirmación"
1607
 
1608
- #: ../addons/buy-creds/gateways/skrill.php:351
1609
  msgid ""
1610
- "Optional text to show user once a transaction has been successfully "
1611
- "completed. This text is shown by Skrill."
 
1612
  msgstr ""
1613
- "Texto opcional a mostrar al usuario cuando la transacción haya sido "
1614
- "completado con éxito. Este texto sera mostrado por Skrill."
 
1615
 
1616
- #: ../addons/buy-creds/gateways/zombaio.php:154
1617
- #, php-format
1618
- msgid "Duplicate transaction. Received: %s"
1619
- msgstr "Transacción duplicado. Recibido: %s"
1620
 
1621
- #: ../addons/buy-creds/gateways/zombaio.php:160
1622
- #, php-format
1623
- msgid "Live transaction while debug mode is enabled! Received: %s"
1624
- msgstr "Depuración de transacciones en vivo esta habilitado! Recibido: %s"
1625
-
1626
- #: ../addons/buy-creds/gateways/zombaio.php:265
1627
- msgid "Site ID"
1628
- msgstr "ID del Sitio de web"
1629
-
1630
- #. or "Contraseña de GW" not clear based on lack of context
1631
- #: ../addons/buy-creds/gateways/zombaio.php:271
1632
- msgid "GW Password"
1633
- msgstr "Contraseña GW"
1634
-
1635
- #: ../addons/buy-creds/gateways/zombaio.php:277
1636
- msgid "Pricing ID"
1637
- msgstr "ID de Precios"
1638
 
1639
- #: ../addons/buy-creds/gateways/zombaio.php:289
1640
- msgid "IP Verification"
1641
- msgstr "Verificación de IP"
1642
 
1643
- #: ../addons/buy-creds/gateways/zombaio.php:292
1644
- msgid "Do not verify that callbacks are coming from Zombaio."
1645
- msgstr "No verifique que las devoluciónes de llamadas proceden de Zombaio."
1646
 
1647
- #: ../addons/buy-creds/gateways/zombaio.php:295
1648
- msgid "Language"
1649
- msgstr "Lengua"
1650
 
1651
- #: ../addons/buy-creds/gateways/zombaio.php:302
1652
- msgid "Postback URL (ZScript)"
1653
- msgstr "Devolución de la URL (ZScript)"
1654
 
1655
- #: ../addons/buy-creds/gateways/zombaio.php:306
1656
- msgid ""
1657
- "For this gateway to work, login to ZOA and set the Postback URL to the above "
1658
- "address and click validate."
1659
- msgstr ""
1660
- "Para que esta puerta de enlace funcione, ingrese en ZOA y ajuste la "
1661
- "devolución de datos de la URL a la dirección que se encuentra arriba y haga "
1662
- "clic sobre validar."
1663
 
1664
- #: ../addons/coupons/myCRED-addon-coupons.php:86 ../addons/coupons/myCRED-addon-
1665
- #: coupons.php:92 ../addons/coupons/myCRED-addon-coupons.php:500 ..
1666
- #: includes/mycred-overview.php:188 ../includes/mycred-overview.php:195
1667
- msgid "Coupons"
1668
- msgstr "Cupones"
1669
 
1670
- #: ../addons/coupons/myCRED-addon-coupons.php:87 ..
1671
- #: addons/coupons/includes/mycred-coupon-shortcodes.php:69
1672
- msgid "Coupon"
1673
- msgstr "Cupón"
1674
 
1675
- #: ../addons/coupons/myCRED-addon-coupons.php:88
1676
- msgid "Create New"
1677
- msgstr "Crear Nuevo"
1678
 
1679
- #: ../addons/coupons/myCRED-addon-coupons.php:89
1680
- msgid "Create New Coupon"
1681
- msgstr "Crea Nueva Cupón"
1682
 
1683
- #: ../addons/coupons/myCRED-addon-coupons.php:90
1684
- msgid "Edit Coupon"
1685
- msgstr "Editar Cupón"
1686
 
1687
- #: ../addons/coupons/myCRED-addon-coupons.php:91
1688
- msgid "New Coupon"
1689
- msgstr "Nuevo Cupón"
1690
 
1691
- #: ../addons/coupons/myCRED-addon-coupons.php:94
1692
- msgid "Search coupons"
1693
- msgstr "Busqueda de Cupones"
1694
 
1695
- #: ../addons/coupons/myCRED-addon-coupons.php:95
1696
- msgid "No coupons found"
1697
- msgstr "Ningun Cupón Encontrado"
1698
 
1699
- #: ../addons/coupons/myCRED-addon-coupons.php:96
1700
- msgid "No coupons found in Trash"
1701
- msgstr "Ningun Cupón Encontrado en la Papelera"
 
 
1702
 
1703
- #: ../addons/coupons/myCRED-addon-coupons.php:98 ../addons/email-notices/myCRED-
1704
- #: addon-email-notices.php:165 ../addons/email-notices/myCRED-addon-email-notices.
1705
- #: php:171 ../addons/email-notices/myCRED-addon-email-notices.php:177 ..
1706
- #: addons/email-notices/myCRED-addon-email-notices.php:283
1707
- msgid "Email Notices"
1708
- msgstr "Avisos por Correo Electrónico"
1709
 
1710
- #: ../addons/coupons/myCRED-addon-coupons.php:119 ../addons/coupons/myCRED-addon-
1711
- #: coupons.php:120 ../addons/coupons/myCRED-addon-coupons.php:121 ..
1712
- #: addons/coupons/myCRED-addon-coupons.php:122
1713
- msgid "Coupon updated."
1714
- msgstr "Cupón Actualizado"
1715
 
1716
- #: ../addons/coupons/myCRED-addon-coupons.php:124
1717
- msgid "Coupon published."
1718
- msgstr "Cupón Publicado."
 
 
 
 
 
1719
 
1720
- #: ../addons/coupons/myCRED-addon-coupons.php:125
1721
- msgid "Coupon saved."
1722
- msgstr "Cupón Guardado"
 
 
 
 
 
1723
 
1724
- #: ../addons/coupons/myCRED-addon-coupons.php:128
1725
- msgid "Draft Coupon saved."
1726
- msgstr "Cupón Borrador Guardado."
1727
 
1728
- #: ../addons/coupons/myCRED-addon-coupons.php:142
1729
- msgid "Unique Coupon Code"
1730
- msgstr "Unico Código de Cupón"
1731
 
1732
- #: ../addons/coupons/myCRED-addon-coupons.php:158
1733
- msgid "Coupon Code"
1734
- msgstr "Código de Cupón"
1735
 
1736
- #: ../addons/coupons/myCRED-addon-coupons.php:159 ../addons/coupons/myCRED-addon-
1737
- #: coupons.php:347
1738
- msgid "Value"
1739
- msgstr "Valor"
1740
 
1741
- #: ../addons/coupons/myCRED-addon-coupons.php:160
1742
- msgid "Used"
 
 
1743
  msgstr ""
 
 
1744
 
1745
- #: ../addons/coupons/myCRED-addon-coupons.php:161 ../addons/transfer/myCRED-addon-
1746
- #: transfer.php:259 ../modules/mycred-module-hooks.php:1714 ../modules/mycred-
1747
- #: module-hooks.php:2032
1748
- msgid "Limits"
1749
- msgstr "imites"
1750
 
1751
- #: ../addons/coupons/myCRED-addon-coupons.php:162
1752
- msgid "Expires"
1753
- msgstr "Expire"
1754
 
1755
- #: ../addons/coupons/myCRED-addon-coupons.php:165 ../addons/coupons/myCRED-addon-
1756
- #: coupons.php:354 ../addons/email-notices/myCRED-addon-email-notices.php:814 ..
1757
- #: addons/email-notices/myCRED-addon-email-notices.php:1031 ..
1758
- #: addons/gateway/carts/mycred-marketpress.php:389 ..
1759
- #: addons/gateway/carts/mycred-woocommerce.php:120 ..
1760
- #: addons/gateway/carts/mycred-wpecommerce.php:354 ../addons/gateway/event-
1761
- #: booking/mycred-eventespresso3.php:437 ../addons/gateway/event-booking/mycred-
1762
- #: eventsmanager-pro.php:504 ../addons/gateway/event-booking/mycred-eventsmanager.
1763
- #: php:550 ../addons/ranks/myCRED-addon-ranks.php:1045 ../addons/ranks/myCRED-
1764
- #: addon-ranks.php:1200 ../addons/sell-content/myCRED-addon-sell-content.php:412 .
1765
- #: ./includes/mycred-widgets.php:203 ../includes/mycred-widgets.php:390 ..
1766
- #: includes/importers/mycred-cubepoints.php:365
1767
- msgid "Point Type"
1768
- msgstr "Clase de Puntos"
1769
 
1770
- #: ../addons/coupons/myCRED-addon-coupons.php:193 ../addons/coupons/myCRED-addon-
1771
- #: coupons.php:461
1772
- msgid "not yet used"
1773
- msgstr "todavia no utilizado"
1774
 
1775
- #: ../addons/coupons/myCRED-addon-coupons.php:211 ../includes/mycred-admin.php:
1776
- #: 416 ../modules/mycred-module-hooks.php:2507
1777
- msgid "Total"
1778
- msgstr "Total"
1779
 
1780
- #: ../addons/coupons/myCRED-addon-coupons.php:211
1781
- msgid "Per User"
1782
- msgstr "Por Usuario"
1783
 
1784
- #: ../addons/coupons/myCRED-addon-coupons.php:219
1785
- msgid "Never"
1786
- msgstr "Nunca"
 
1787
 
1788
- #: ../addons/coupons/myCRED-addon-coupons.php:223
1789
- msgid "Expired"
1790
- msgstr "Caducado"
 
1791
 
1792
- #: ../addons/coupons/myCRED-addon-coupons.php:226
1793
- #, php-format
1794
- msgid "In %s time"
1795
- msgstr "En %s tiempo"
1796
 
1797
- #: ../addons/coupons/myCRED-addon-coupons.php:279
1798
- msgid "Coupon Setup"
1799
- msgstr "Configuración de Cupón"
 
1800
 
1801
- #: ../addons/coupons/myCRED-addon-coupons.php:288
1802
- msgid "Coupon Limits"
1803
- msgstr "Limites de Cupón"
 
1804
 
1805
- #: ../addons/coupons/myCRED-addon-coupons.php:297
1806
- msgid "Coupon Requirements"
1807
- msgstr "Requisitos de Cupón"
1808
 
1809
- #: ../addons/coupons/myCRED-addon-coupons.php:307
1810
- msgid "Usage"
1811
- msgstr "Utilización"
 
 
1812
 
1813
- #: ../addons/coupons/myCRED-addon-coupons.php:350
1814
- msgid "The amount of %plural% this coupon is worth."
1815
- msgstr "La cantidad de %plural% que vale este cupón."
 
1816
 
1817
- #: ../addons/coupons/myCRED-addon-coupons.php:359
1818
- msgid "Select the point type that this coupon is applied."
1819
- msgstr "Elige el clase de puntos al cual este cupón se aplica."
 
1820
 
1821
- #: ../addons/coupons/myCRED-addon-coupons.php:369
1822
- msgid "Expire"
1823
- msgstr "Caducar"
 
1824
 
1825
- #: ../addons/coupons/myCRED-addon-coupons.php:372
1826
- msgid "Optional date when this coupon expires. Expired coupons will be trashed."
1827
- msgstr ""
1828
- "La fecha opcional cuando este cupón caduca. Cupones caducados seran "
1829
- "destrozado."
1830
 
1831
- #: ../addons/coupons/myCRED-addon-coupons.php:401
1832
- msgid "Global Maximum"
1833
- msgstr "Máximo Global"
1834
 
1835
- #: ../addons/coupons/myCRED-addon-coupons.php:404
1836
- msgid ""
1837
- "The maximum number of times this coupon can be used. Note that the coupon "
1838
- "will be automatically trashed once this maximum is reached!"
1839
- msgstr ""
1840
- "El número máximo de veces que este cupón se puede utilizar. Ten en cuenta "
1841
- "que el cupón será colocado en la papelera de forma automática una vez que se "
1842
- "alcanza este máximo!"
1843
 
1844
- #. not clear if this is referring to the maximum number of users or to the maximum "points" a user can have or accrue?
1845
- #: ../addons/coupons/myCRED-addon-coupons.php:408
1846
- msgid "User Maximum"
1847
- msgstr "Máximo Usuario"
1848
 
1849
- #: ../addons/coupons/myCRED-addon-coupons.php:411
1850
- msgid "The maximum number of times this coupon can be used by a user."
1851
- msgstr "El máximo numero de veces que se puede utilizadar este cupón por un usuario."
 
 
1852
 
1853
- #: ../addons/coupons/myCRED-addon-coupons.php:440
1854
- msgid ""
1855
- "Optional minimum balance a user must have in order to use this coupon. Use "
1856
- "zero to disable."
1857
- msgstr ""
1858
- "Mínimo saldo opcional que el usuario debe tener para utilizar este cupón. "
1859
- "Utilice cero para inhabilitar."
1860
 
1861
- #: ../addons/coupons/myCRED-addon-coupons.php:443
1862
- msgid "Maximum Balance"
1863
- msgstr "Saldo Máximo"
1864
 
1865
- #: ../addons/coupons/myCRED-addon-coupons.php:445
1866
- msgid ""
1867
- "Optional maximum balance a user can have in order to use this coupon. Use "
1868
- "zero to disable."
1869
- msgstr ""
1870
- "Saldo máximo opcional que un usuario puede tener para usar este cupón. Ponga "
1871
- "cero para desactivar."
1872
 
1873
- #: ../addons/coupons/myCRED-addon-coupons.php:506
1874
- #, php-format
1875
- msgid ""
1876
- "Log entry for successful coupon redemption. Use %coupon% to show the coupon "
1877
- "code."
1878
- msgstr ""
1879
- "Entrada del registro al exitoso canje del cupón. Utilice %coupon% para "
1880
- "mostrar el código del cupón."
1881
 
1882
- #: ../addons/coupons/myCRED-addon-coupons.php:509
1883
- msgid "Invalid Coupon Message"
1884
- msgstr "Mensaje Cupón Invalido"
 
1885
 
1886
- #: ../addons/coupons/myCRED-addon-coupons.php:513
1887
- msgid "Message to show when users try to use a coupon that does not exists."
1888
- msgstr "Mostrar mensaje cuando los usuarios intenten usar un cupón que no existe."
1889
 
1890
- #: ../addons/coupons/myCRED-addon-coupons.php:516
1891
- msgid "Expired Coupon Message"
1892
- msgstr "Mensaje de Cupón Caducado"
1893
 
1894
- #: ../addons/coupons/myCRED-addon-coupons.php:520
1895
- msgid "Message to show when users try to use that has expired."
1896
- msgstr "Mostrar mensaje cuando los usuarios intenten usar lo que ha caducado."
1897
 
1898
- #: ../addons/coupons/myCRED-addon-coupons.php:523
1899
- msgid "User Limit Message"
1900
- msgstr "Mensaje de Límite de Usuario"
1901
 
1902
- #: ../addons/coupons/myCRED-addon-coupons.php:527
1903
- msgid "Message to show when the user limit has been reached for the coupon."
1904
- msgstr "Mostrar mensaje cuando el cupón alcanza su límite de usuarios."
1905
 
1906
- #: ../addons/coupons/myCRED-addon-coupons.php:530
1907
- msgid "Minimum Balance Message"
1908
- msgstr "Mensaje de Saldo Mínimo"
 
1909
 
1910
- #: ../addons/coupons/myCRED-addon-coupons.php:534
 
1911
  msgid ""
1912
- "Message to show when a user does not meet the minimum balance requirement. "
1913
- "(if used)"
1914
  msgstr ""
1915
- "Mostrar mensaje cuando el usuario no cumple con el saldo mínimo requerido. "
1916
- "(si se utiliza)"
1917
 
1918
- #: ../addons/coupons/myCRED-addon-coupons.php:537
1919
- msgid "Maximum Balance Message"
1920
- msgstr "Mensaje Saldo Máximo"
 
1921
 
1922
- #: ../addons/coupons/myCRED-addon-coupons.php:541
1923
- msgid ""
1924
- "Message to show when a user does not meet the maximum balance requirement. "
1925
- "(if used)"
1926
- msgstr ""
1927
- "Mostrar mensaje cuando un usuario no alcanza el saldo máximo requerido. (si "
1928
- "se utiliza)"
1929
 
1930
- #: ../addons/coupons/myCRED-addon-coupons.php:544
1931
- msgid "Success Message"
1932
- msgstr "Mensaje de éxito"
 
1933
 
1934
- #: ../addons/coupons/myCRED-addon-coupons.php:548
1935
- msgid "Message to show when a coupon was successfully deposited to a users account."
1936
- msgstr "Monstrar mensaje cuando un cupón se deposita con éxito en una cuenta usuaria."
1937
 
1938
- #: ../addons/coupons/includes/mycred-coupon-shortcodes.php:72
1939
- msgid "Apply Coupon"
1940
- msgstr "Aplica el Cupón"
 
 
 
1941
 
1942
- #: ../addons/email-notices/myCRED-addon-email-notices.php:166 ../addons/email-
1943
- #: notices/myCRED-addon-email-notices.php:1270
1944
- msgid "Email Notice"
1945
- msgstr "Aviso por Correo Electrónico"
1946
 
1947
- #: ../addons/email-notices/myCRED-addon-email-notices.php:168
1948
- msgid "Add New Notice"
1949
- msgstr "Añade Nueva Notificación"
 
1950
 
1951
- #: ../addons/email-notices/myCRED-addon-email-notices.php:169
1952
- msgid "Edit Notice"
1953
- msgstr "Editar Aviso"
 
1954
 
1955
- #: ../addons/email-notices/myCRED-addon-email-notices.php:170
1956
- msgid "New Notice"
1957
- msgstr "Nuevo Aviso"
1958
 
1959
- #: ../addons/email-notices/myCRED-addon-email-notices.php:172
1960
- msgid "View Notice"
1961
- msgstr "Ver Aviso"
 
 
 
1962
 
1963
- #: ../addons/email-notices/myCRED-addon-email-notices.php:173
1964
- msgid "Search Email Notices"
1965
- msgstr "Búsqueda de Avisos por Correo Electrónico"
1966
 
1967
- #: ../addons/email-notices/myCRED-addon-email-notices.php:174
1968
- msgid "No email notices found"
1969
- msgstr "Ningun aviso por correo electrónico encontrado"
 
 
1970
 
1971
- #: ../addons/email-notices/myCRED-addon-email-notices.php:175
1972
- msgid "No email notices found in Trash"
1973
- msgstr "Ningun aviso por correo electrónico encontrado en la papelera"
 
1974
 
1975
- #: ../addons/email-notices/myCRED-addon-email-notices.php:200 ..
1976
- #: addons/gateway/carts/mycred-wpecommerce.php:341 ../includes/mycred-functions.
1977
- #: php:587
1978
- msgid "General"
1979
- msgstr "General"
1980
 
1981
- #. can also be users as in plural, I've assumed it is user singular with a missing apostrophe
1982
- #: ../addons/email-notices/myCRED-addon-email-notices.php:201
1983
- msgid "users balance changes"
1984
- msgstr "el saldo de usuario cambia"
 
1985
 
1986
- #: ../addons/email-notices/myCRED-addon-email-notices.php:202
1987
- msgid "user gains %_plural%"
1988
- msgstr "usuario gana %_plural%"
 
1989
 
1990
- #: ../addons/email-notices/myCRED-addon-email-notices.php:203
1991
- msgid "user lose %_plural%"
1992
- msgstr "usuario pierde %_plural%"
 
1993
 
1994
- #: ../addons/email-notices/myCRED-addon-email-notices.php:204
1995
- msgid "users balance reaches zero"
1996
- msgstr "saldo de usuario llega a cero"
 
1997
 
1998
- #. can also be users as in plural, I've assumed it is user singular with a missing apostrophe
1999
- #: ../addons/email-notices/myCRED-addon-email-notices.php:205
2000
- msgid "users balance goes minus"
2001
- msgstr "el saldo de usuario cae a negativo"
 
2002
 
2003
- #: ../addons/email-notices/myCRED-addon-email-notices.php:211
2004
- msgid "Badge Add-on"
2005
- msgstr ""
2006
 
2007
- #: ../addons/email-notices/myCRED-addon-email-notices.php:212
2008
- msgid "user gains a badge"
 
 
 
2009
  msgstr ""
 
 
2010
 
2011
- #: ../addons/email-notices/myCRED-addon-email-notices.php:219
2012
- msgid "Sell Content Add-on"
2013
- msgstr "Extensión para Vender Contenido"
 
2014
 
2015
- #: ../addons/email-notices/myCRED-addon-email-notices.php:220
2016
- msgid "user buys content"
2017
- msgstr "usuario compra contenido"
2018
 
2019
- #: ../addons/email-notices/myCRED-addon-email-notices.php:221
2020
- msgid "authors content gets sold"
2021
- msgstr "el contenido del autor sera vendido"
 
2022
 
2023
- #: ../addons/email-notices/myCRED-addon-email-notices.php:228
2024
- msgid "buyCREDs Add-on"
2025
- msgstr "Extensión de compraCREDs"
2026
 
2027
- #: ../addons/email-notices/myCRED-addon-email-notices.php:229
2028
- msgid "user buys %_plural%"
2029
- msgstr "usuario compra %_plural%"
 
 
 
 
 
2030
 
2031
- #: ../addons/email-notices/myCRED-addon-email-notices.php:236
2032
- msgid "Transfer Add-on"
2033
- msgstr "Extensión de Transferencias"
 
 
 
2034
 
2035
- #: ../addons/email-notices/myCRED-addon-email-notices.php:237
2036
- msgid "user sends %_plural%"
2037
- msgstr "usuario manda %_plural%"
 
2038
 
2039
- #: ../addons/email-notices/myCRED-addon-email-notices.php:238
2040
- msgid "user receives %_plural%"
2041
- msgstr "usuario recibe %_plural%"
2042
-
2043
- #: ../addons/email-notices/myCRED-addon-email-notices.php:245
2044
- msgid "Ranks Add-on"
2045
- msgstr "Extensión de Rangos"
2046
-
2047
- #: ../addons/email-notices/myCRED-addon-email-notices.php:246
2048
- msgid "user is demoted"
2049
- msgstr "se ha degrado al usuario"
2050
 
2051
- #: ../addons/email-notices/myCRED-addon-email-notices.php:247
2052
- msgid "user is promoted"
2053
- msgstr "se ha promovido al usuario"
 
2054
 
2055
- #: ../addons/email-notices/myCRED-addon-email-notices.php:285
2056
- msgid ""
2057
- "Settings that apply to all email notices and can not be overridden for "
2058
- "individual emails."
2059
- msgstr ""
2060
- "Ajustes que se aplica a todos los correos electrónicos y que no seran "
2061
- "anulados para correos electronicos especificos."
2062
 
2063
- #: ../addons/email-notices/myCRED-addon-email-notices.php:286
2064
- msgid "Email Format"
2065
- msgstr "Formato de Correo Electrónico"
 
2066
 
2067
- #: ../addons/email-notices/myCRED-addon-email-notices.php:290
2068
- msgid "Plain text emails only."
2069
- msgstr "Correo electrónico usando texto sin formato."
 
2070
 
2071
- #: ../addons/email-notices/myCRED-addon-email-notices.php:294
2072
- msgid "HTML or Plain text emails."
2073
- msgstr "Correo electrónico usando HTML o texto sin formato."
 
2074
 
2075
- #: ../addons/email-notices/myCRED-addon-email-notices.php:297
2076
- msgid "Filters"
2077
- msgstr "Filtros"
 
2078
 
2079
- #: ../addons/email-notices/myCRED-addon-email-notices.php:301
2080
- msgid ""
2081
- "Allow WordPress and Third Party Plugins to filter the email subject before "
2082
- "an email is sent."
2083
- msgstr ""
2084
- "Permite a Wordpress y a los Plugins de terceros a filtrar el asunto del "
2085
- "correo electrónico antes de enviarlo."
2086
 
2087
- #: ../addons/email-notices/myCRED-addon-email-notices.php:305
2088
  msgid ""
2089
- "Allow WordPress and Third Party Plugins to filter the email content before "
2090
- "an email is sent."
2091
  msgstr ""
2092
- "Permite a Wordpress y a los Plugins de terceros a filtrar el contenido del "
2093
- "correo electrónico antes de enviarlo."
2094
-
2095
- #: ../addons/email-notices/myCRED-addon-email-notices.php:310 ../addons/email-
2096
- #: notices/myCRED-addon-email-notices.php:316
2097
- msgid "Email Schedule"
2098
- msgstr "Itinerario de Emails"
2099
 
2100
- #: ../addons/email-notices/myCRED-addon-email-notices.php:312
2101
- msgid "WordPress Cron is disabled. Emails will be sent immediately."
2102
- msgstr "WordPress Cron esta desactivado. Los emails seran mandados inmediatamente."
2103
 
2104
- #: ../addons/email-notices/myCRED-addon-email-notices.php:320
2105
- msgid "Send emails immediately"
2106
- msgstr "Mandar emails inmediatamente"
2107
 
2108
- #: ../addons/email-notices/myCRED-addon-email-notices.php:324
2109
- msgid "Send emails once an hour"
2110
- msgstr "Mandar emails una vez a la hora"
 
2111
 
2112
- #: ../addons/email-notices/myCRED-addon-email-notices.php:328
2113
- msgid "Send emails once a day"
2114
- msgstr "Mandar emails una vez al dia"
 
2115
 
2116
- #: ../addons/email-notices/myCRED-addon-email-notices.php:331
2117
- msgid "Subscriptions"
2118
- msgstr "Suscripciones"
 
2119
 
2120
- #: ../addons/email-notices/myCRED-addon-email-notices.php:333
2121
  #, php-format
2122
- msgid ""
2123
- "Use the %s shortcode to allow users to subscribe / unsubscribe to email "
2124
- "updates."
2125
- msgstr ""
2126
- "Utilize el %s codigo corto para permitir que los usuarios suscriben o darsen "
2127
- "de baja a informes vía correo electrónico."
2128
 
2129
- #: ../addons/email-notices/myCRED-addon-email-notices.php:338
2130
- msgid "SMTP Override"
2131
- msgstr "Invalidar SMTP"
 
2132
 
2133
- #: ../addons/email-notices/myCRED-addon-email-notices.php:342
2134
- msgid ""
2135
- "SMTP Debug. Enable if you are experiencing issues with wp_mail() or if you "
2136
- "use a SMTP plugin for emails."
2137
- msgstr ""
2138
- "Depurar SMTP. Habilitar si hay erores con wp_mail() o si utiliza un plugin "
2139
- "SMTP para email."
2140
 
2141
- #: ../addons/email-notices/myCRED-addon-email-notices.php:345
2142
  msgid ""
2143
- "Default email settings. These settings can be individually overridden when "
2144
- "editing emails."
2145
  msgstr ""
2146
- "Configuraciones predeterminadas para correos electrónicos. Estos ajustes "
2147
- "pueden ser anulado individualmente cuando se edita correos electrónicos."
2148
-
2149
- #: ../addons/email-notices/myCRED-addon-email-notices.php:346 ../addons/email-
2150
- #: notices/myCRED-addon-email-notices.php:900
2151
- msgid "Email Settings"
2152
- msgstr "Configuraciones de Correo Electrónico"
2153
 
2154
- #: ../addons/email-notices/myCRED-addon-email-notices.php:349 ../addons/email-
2155
- #: notices/myCRED-addon-email-notices.php:1053
2156
- msgid "Senders Name:"
2157
- msgstr "Nombre del Remitente"
2158
 
2159
- #: ../addons/email-notices/myCRED-addon-email-notices.php:353 ../addons/email-
2160
- #: notices/myCRED-addon-email-notices.php:1055
2161
- msgid "Senders Email:"
2162
- msgstr "Correo Electrónico del Remitente:"
2163
 
2164
- #: ../addons/email-notices/myCRED-addon-email-notices.php:357
2165
- msgid "Reply-To:"
2166
- msgstr "Responder-A:"
 
2167
 
2168
- #: ../addons/email-notices/myCRED-addon-email-notices.php:361
2169
- msgid "Default Email Content"
2170
- msgstr "Contenido de Correo Electrónico Predefinido"
2171
 
2172
- #: ../addons/email-notices/myCRED-addon-email-notices.php:365
2173
- msgid "Default email content."
2174
- msgstr "Contenido de correo electrónico predefinido."
 
2175
 
2176
- #: ../addons/email-notices/myCRED-addon-email-notices.php:368
2177
- msgid "Default Email Styling"
2178
- msgstr "Estilo de Correo Electrónico Predefinido"
 
2179
 
2180
- #: ../addons/email-notices/myCRED-addon-email-notices.php:372
2181
- msgid "Ignored if HTML is not allowed in emails."
2182
- msgstr "Sera ignorado si no se permite HTML en los correos electrónicos."
 
2183
 
2184
- #: ../addons/email-notices/myCRED-addon-email-notices.php:719
2185
  #, php-format
2186
- msgctxt "Badge Title - Level 1,2,3.."
2187
- msgid "%s - Level %d"
2188
- msgstr ""
2189
 
2190
- #: ../addons/email-notices/myCRED-addon-email-notices.php:809 ../addons/email-
2191
- #: notices/myCRED-addon-email-notices.php:949
2192
- msgid "Email Subject"
2193
- msgstr "Asunto del Correo Electrónico"
2194
 
2195
- #: ../addons/email-notices/myCRED-addon-email-notices.php:835
2196
- msgid "Not Active"
2197
- msgstr "No esta Activo"
2198
 
2199
- #: ../addons/email-notices/myCRED-addon-email-notices.php:838
2200
  #, php-format
2201
- msgid "Scheduled:<br /><strong>%1$s</strong>"
2202
- msgstr "Programada:<br /><strong>%1$s</strong>"
2203
-
2204
- #: ../addons/email-notices/myCRED-addon-email-notices.php:843
2205
- msgid "Active"
2206
- msgstr "Activo"
2207
 
2208
- #: ../addons/email-notices/myCRED-addon-email-notices.php:845
2209
  #, php-format
2210
- msgid "Active - Last run:<br /><strong>%1$s</strong>"
2211
- msgstr "Activo - Ultima ejecución:<br /><strong>%1$s</strong>"
2212
 
2213
- #: ../addons/email-notices/myCRED-addon-email-notices.php:855
2214
- msgid "Email is sent when"
2215
- msgstr "el Correo Electrónico se envia cuando"
 
 
 
 
 
 
2216
 
2217
- #: ../addons/email-notices/myCRED-addon-email-notices.php:857
2218
- msgid "Missing instance for this notice!"
2219
- msgstr "¡Falta una instancia para este aviso!"
2220
 
2221
- #: ../addons/email-notices/myCRED-addon-email-notices.php:866 ../addons/email-
2222
- #: notices/myCRED-addon-email-notices.php:868 ../addons/email-notices/myCRED-
2223
- #: addon-email-notices.php:870
2224
- msgid "Sent To"
2225
- msgstr "Enviado A:"
2226
 
2227
- #: ../addons/email-notices/myCRED-addon-email-notices.php:866 ../addons/email-
2228
- #: notices/myCRED-addon-email-notices.php:1019 ../includes/mycred-admin.php:799 ..
2229
- #: includes/mycred-log.php:755 ../modules/mycred-module-log.php:609
2230
- msgid "User"
2231
- msgstr "Usuario"
2232
 
2233
- #: ../addons/email-notices/myCRED-addon-email-notices.php:868 ../addons/email-
2234
- #: notices/myCRED-addon-email-notices.php:1020
2235
- msgid "Administrator"
2236
- msgstr "Administrador"
2237
 
2238
- #: ../addons/email-notices/myCRED-addon-email-notices.php:870
2239
- msgid "Both Administrator and User"
2240
- msgstr "Tanto Administrador como Usuario"
 
2241
 
2242
- #: ../addons/email-notices/myCRED-addon-email-notices.php:880 ../addons/email-
2243
- #: notices/myCRED-addon-email-notices.php:1037
2244
- msgid "All types"
 
 
2245
  msgstr ""
 
 
2246
 
2247
- #: ../addons/email-notices/myCRED-addon-email-notices.php:909
2248
- msgid "Available Template Tags"
2249
- msgstr "Etiquetas (tags) de Plantilla Disponibles"
2250
 
2251
- #: ../addons/email-notices/myCRED-addon-email-notices.php:920
2252
- msgid "Email Header"
2253
- msgstr "Encabezado del Correo Electrónico"
2254
 
2255
- #: ../addons/email-notices/myCRED-addon-email-notices.php:986
2256
- msgid "Send this email notice when..."
2257
- msgstr "Envia este aviso por correo electrónico cuando..."
2258
 
2259
- #: ../addons/email-notices/myCRED-addon-email-notices.php:1017
2260
- msgid "Recipient:"
2261
- msgstr "Destinatario:"
 
2262
 
2263
- #: ../addons/email-notices/myCRED-addon-email-notices.php:1021
2264
- msgid "Both"
2265
- msgstr "Ambos"
2266
 
2267
- #: ../addons/email-notices/myCRED-addon-email-notices.php:1025 ..
2268
- #: addons/gateway/carts/mycred-woocommerce.php:160 ../modules/mycred-module-
2269
- #: settings.php:674 ../modules/mycred-module-settings.php:695 ../modules/mycred-
2270
- #: module-settings.php:720
2271
- msgid "Label"
2272
- msgstr "Etiqueta"
2273
 
2274
- #: ../addons/email-notices/myCRED-addon-email-notices.php:1057
2275
- msgid "Reply-To Email:"
2276
- msgstr "Responder-A Correo Electrónico:"
 
2277
 
2278
- #: ../addons/email-notices/myCRED-addon-email-notices.php:1063
2279
- msgid "Save"
2280
- msgstr "Guardar"
 
2281
 
2282
- #: ../addons/email-notices/myCRED-addon-email-notices.php:1075
2283
- msgid "CSS Styling"
2284
- msgstr "Estilo CSS"
2285
 
2286
- #: ../addons/email-notices/myCRED-addon-email-notices.php:1091
2287
- msgid "Site Related"
2288
- msgstr "Relacionado al Sitio"
2289
 
2290
- #: ../addons/email-notices/myCRED-addon-email-notices.php:1092
2291
- msgid "Your websites title"
2292
- msgstr "Titulo de tu pagina web"
2293
 
2294
- #: ../addons/email-notices/myCRED-addon-email-notices.php:1093
2295
- msgid "Your websites address"
2296
- msgstr "Dirección de tu pagina web"
2297
 
2298
- #: ../addons/email-notices/myCRED-addon-email-notices.php:1094
2299
- msgid "Your websites tagline (description)"
2300
- msgstr "La descripción de tu sitio web (lema o eslogan)"
2301
 
2302
- #: ../addons/email-notices/myCRED-addon-email-notices.php:1095
2303
- msgid "Your websites admin email"
2304
- msgstr "El correo electrónico de admin para tu pagina web"
 
2305
 
2306
- #: ../addons/email-notices/myCRED-addon-email-notices.php:1096
2307
- msgid "Total number of blog members"
2308
- msgstr "Número total de miembros del blog"
2309
 
2310
- #: ../addons/email-notices/myCRED-addon-email-notices.php:1100
2311
- msgid "The users new balance"
2312
- msgstr ""
2313
 
2314
- #: ../addons/email-notices/myCRED-addon-email-notices.php:1101
2315
- msgid "The users old balance"
2316
- msgstr ""
2317
 
2318
- #: ../addons/email-notices/myCRED-addon-email-notices.php:1102
2319
- msgid "The amount of points gained or lost in this instance"
 
2320
  msgstr ""
 
 
2321
 
2322
- #: ../addons/email-notices/myCRED-addon-email-notices.php:1103
2323
- msgid "The log entry"
2324
- msgstr ""
2325
 
2326
- #: ../addons/email-notices/myCRED-addon-email-notices.php:1178 ../addons/email-
2327
- #: notices/myCRED-addon-email-notices.php:1181 ../addons/email-notices/myCRED-
2328
- #: addon-email-notices.php:1187
2329
- msgid "Email Notice Updated."
2330
- msgstr "Aviso atraves de correo electrónico Actualizado."
 
 
 
2331
 
2332
- #: ../addons/email-notices/myCRED-addon-email-notices.php:1183
2333
- msgid "Email Notice Activated"
2334
- msgstr "Notificación atraves de Correo Electrónico Activado"
2335
 
2336
- #: ../addons/email-notices/myCRED-addon-email-notices.php:1184
2337
- msgid "Email Notice Saved"
2338
- msgstr "Aviso por Correo Electrónico Guardado"
2339
 
2340
- #: ../addons/email-notices/myCRED-addon-email-notices.php:1203
2341
- msgid ""
2342
- "Once a notice is \"published\" it becomes active! Select \"Save Draft\" if you "
2343
- "are not yet ready to use this email notice!"
2344
- msgstr ""
2345
- "¡Una vez que un aviso sea \"publicado\" se activa! ¡Elige \"Guardar Borrador\" "
2346
- "si aun no estás listo para utilizar este aviso por email!"
2347
 
2348
- #: ../addons/email-notices/myCRED-addon-email-notices.php:1205
2349
  #, php-format
2350
- msgid "This notice will become active on:<br /><strong>%1$s</strong>"
2351
- msgstr "Este aviso se activará en:<br /><strong>%1$s</strong>"
2352
 
2353
- #: ../addons/email-notices/myCRED-addon-email-notices.php:1207
2354
- msgid "This email notice is active."
2355
- msgstr "Esta notificación de correo electrónico esta activada."
 
2356
 
2357
- #: ../addons/email-notices/myCRED-addon-email-notices.php:1218
2358
- msgid "Settings saved."
2359
- msgstr "Configuraciones Guardadas"
 
2360
 
2361
- #: ../addons/email-notices/myCRED-addon-email-notices.php:1269
2362
- msgid "Unsubscribe"
2363
- msgstr "Cancelar la Suscripción"
 
2364
 
2365
- #: ../addons/email-notices/myCRED-addon-email-notices.php:1290
2366
- msgid "There are no email notifications yet."
2367
- msgstr "Todavía no hay notificaciones de email."
 
2368
 
2369
- #: ../addons/gateway/carts/mycred-marketpress.php:147 ../addons/gateway/event-
2370
- #: booking/mycred-eventespresso3.php:277 ../addons/gateway/event-booking/mycred-
2371
- #: eventespresso3.php:301 ../addons/gateway/event-booking/mycred-eventsmanager.
2372
- #: php:412 ../includes/mycred-admin.php:629 ../includes/mycred-admin.php:800
2373
- msgid "Current Balance"
2374
- msgstr "Saldo Actual"
2375
 
2376
- #: ../addons/gateway/carts/mycred-marketpress.php:151 ..
2377
- #: addons/gateway/carts/mycred-wpecommerce.php:123 ../addons/gateway/event-
2378
- #: booking/mycred-eventespresso3.php:281 ../addons/gateway/event-booking/mycred-
2379
- #: eventespresso3.php:305 ../addons/gateway/event-booking/mycred-eventsmanager.
2380
- #: php:416
2381
- msgid "Total Cost"
2382
- msgstr "Coste Total"
2383
 
2384
- #: ../addons/gateway/carts/mycred-marketpress.php:155 ../addons/gateway/event-
2385
- #: booking/mycred-eventespresso3.php:285 ../addons/gateway/event-booking/mycred-
2386
- #: eventespresso3.php:309
2387
- msgid "Balance After Purchase"
2388
- msgstr "Saldo Despues de Compra"
2389
 
2390
- #: ../addons/gateway/carts/mycred-marketpress.php:182 ..
2391
- #: addons/gateway/carts/mycred-marketpress.php:231
2392
- msgid "Go Back"
2393
- msgstr "Regresar"
2394
 
2395
- #: ../addons/gateway/carts/mycred-marketpress.php:185
2396
- msgid "will be deducted from your account."
2397
- msgstr "sera restado de su cuenta."
2398
 
2399
- #: ../addons/gateway/carts/mycred-marketpress.php:221
2400
  #, php-format
2401
- msgid ""
2402
- "Sorry, but you can not use this gateway as your account is excluded. Please "
2403
- "<a href=\"%s\">select a different payment method</a>."
2404
  msgstr ""
2405
- "Lo siento, pero no puede utilizar esta pasarela de pago porque excluye su "
2406
- "cuenta. Por favor <a href=\"%s\"> elige otro método de pago."
2407
-
2408
- #: ../addons/gateway/carts/mycred-marketpress.php:247
2409
- msgid "Paid"
2410
- msgstr "Pagado"
2411
 
2412
- #: ../addons/gateway/carts/mycred-marketpress.php:250 ..
2413
- #: addons/gateway/carts/mycred-woocommerce.php:30 ../includes/mycred-network.php:
2414
- #: 50 ../includes/mycred-network.php:51
2415
- msgid "myCRED"
2416
- msgstr "myCRED"
2417
 
2418
- #: ../addons/gateway/carts/mycred-marketpress.php:356
2419
- msgid "%_singular% Balance"
2420
- msgstr "%_singular% Saldo"
 
 
 
 
2421
 
2422
- #: ../addons/gateway/carts/mycred-marketpress.php:359 ..
2423
- #: addons/gateway/carts/mycred-wpecommerce.php:27
2424
  #, php-format
2425
- msgid "Payment for Order: #%order_id%"
2426
- msgstr "Pago por el Pedido"
 
 
 
 
2427
 
2428
- #: ../addons/gateway/carts/mycred-marketpress.php:362
2429
- msgid "Product Sale: %post_title%"
2430
- msgstr "Venta de Producto: "
 
2431
 
2432
- #: ../addons/gateway/carts/mycred-marketpress.php:363
2433
- msgid "Pay using your account balance."
2434
- msgstr "Paga usando el saldo de su cuenta."
 
2435
 
2436
- #: ../addons/gateway/carts/mycred-marketpress.php:364
 
 
 
 
2437
  #, php-format
2438
- msgid ""
2439
- "TOTAL amount has been deducted from your account. Your current balance is: "
2440
- "%balance_f%"
2441
- msgstr "Cantidad TOTAL ha sido restado de su cuenta. Su saldo actual es:% balance_f%"
2442
 
2443
- #: ../addons/gateway/carts/mycred-marketpress.php:365 ..
2444
- #: addons/gateway/carts/mycred-woocommerce.php:263
2445
- msgid "Insufficient funds."
2446
- msgstr "Fondos Insuficientes."
2447
 
2448
- #: ../addons/gateway/carts/mycred-marketpress.php:366
2449
- msgid ""
2450
- "You must be logged in to pay with %_plural%. Please <a "
2451
- "href=\"%login_url_here%\">login</a>."
2452
- msgstr ""
2453
- "Debes haber iniciado sesión para pagar con %_plural%. Por favor <a "
2454
- "href=\"%login_url_here%\">identifícate</a>."
2455
 
2456
- #: ../addons/gateway/carts/mycred-marketpress.php:373
2457
  #, php-format
2458
- msgid ""
2459
- "Let your users pay for items in their shopping cart using their %s Account. "
2460
- "Note! This gateway requires your users to be logged in when making a "
2461
- "purchase!"
2462
- msgstr ""
2463
- "Permita que sus usuarios paguen para los articulos en su carrito de compra "
2464
- "usando su %s Cuenta. ¡Nota! Esta pasarela de pago requiere que sus usuarios "
2465
- "esten ingresado para realizar una compra. "
2466
 
2467
- #: ../addons/gateway/carts/mycred-marketpress.php:376
2468
- msgid "Method Name"
2469
- msgstr "Nombre del Método"
2470
 
2471
- #: ../addons/gateway/carts/mycred-marketpress.php:378
2472
- msgid ""
2473
- "Enter a public name for this payment method that is displayed to users - No "
2474
- "HTML"
2475
- msgstr ""
2476
- "Introduzca el nombre público para este método de pago que se va a mostrar a "
2477
- "los usuarios - sin HTML"
2478
 
2479
- #: ../addons/gateway/carts/mycred-marketpress.php:383
2480
- msgid "Gateway Logo URL"
2481
- msgstr "URL del Logotipo de la Pasarela de Pago"
2482
 
2483
- #: ../addons/gateway/carts/mycred-marketpress.php:404 ..
2484
- #: addons/gateway/carts/mycred-woocommerce.php:136
2485
  #, php-format
2486
- msgid "How much is 1 %_singular% worth in %currency%?"
2487
- msgstr "¿Cuanto vale un 1 %_singular% en %currency%?"
2488
 
2489
- #: ../addons/gateway/carts/mycred-marketpress.php:409 ..
2490
- #: addons/gateway/carts/mycred-woocommerce.php:141 ..
2491
- #: addons/gateway/carts/mycred-wpecommerce.php:360 ../addons/gateway/event-
2492
- #: booking/mycred-eventespresso3.php:450 ../addons/gateway/event-booking/mycred-
2493
- #: eventsmanager-pro.php:540 ../addons/gateway/event-booking/mycred-eventsmanager.
2494
- #: php:578 ../includes/mycred-shortcodes.php:977
2495
- msgid "Exchange Rate"
2496
- msgstr "Tipo de Cambio"
2497
 
2498
- #: ../addons/gateway/carts/mycred-marketpress.php:418 ..
2499
- #: addons/gateway/carts/mycred-woocommerce.php:169 ..
2500
- #: addons/gateway/carts/mycred-wpecommerce.php:364 ../addons/gateway/event-
2501
- #: booking/mycred-eventespresso3.php:462 ../addons/gateway/event-booking/mycred-
2502
- #: eventsmanager-pro.php:531 ../addons/gateway/event-booking/mycred-eventsmanager.
2503
- #: php:569
2504
- msgid "Profit Sharing"
2505
- msgstr "Reparto de Ganancias"
2506
 
2507
- #: ../addons/gateway/carts/mycred-marketpress.php:421
2508
- msgid "Percentage"
2509
- msgstr "Porcentaje"
 
2510
 
2511
- #: ../addons/gateway/carts/mycred-marketpress.php:423 ..
2512
- #: addons/gateway/carts/mycred-woocommerce.php:171 ..
2513
- #: addons/gateway/carts/mycred-wpecommerce.php:368 ../addons/gateway/event-
2514
- #: booking/mycred-eventespresso3.php:464 ../addons/gateway/event-booking/mycred-
2515
- #: eventsmanager-pro.php:534 ../addons/gateway/event-booking/mycred-eventsmanager.
2516
- #: php:572
2517
- msgid "Option to share sales with the product owner. Use zero to disable."
2518
- msgstr ""
2519
- "Opción de compartir las ventas con el dueño del producto. Utilice cero para "
2520
- "inhabilitar."
2521
 
2522
- #: ../addons/gateway/carts/mycred-marketpress.php:435 ..
2523
- #: addons/gateway/carts/mycred-wpecommerce.php:375 ../addons/gateway/event-
2524
- #: booking/mycred-eventsmanager-pro.php:607 ../addons/gateway/event-
2525
- #: booking/mycred-eventsmanager.php:626
2526
- msgid "Messages"
2527
- msgstr "Mensajes"
2528
 
2529
- #: ../addons/gateway/carts/mycred-marketpress.php:438 ..
2530
- #: addons/gateway/carts/mycred-wpecommerce.php:386 ../addons/gateway/event-
2531
- #: booking/mycred-eventsmanager-pro.php:617 ../addons/gateway/event-
2532
- #: booking/mycred-eventsmanager.php:636 ../plugins/mycred-hook-buddypress.php:247
2533
- msgid "Insufficient Funds"
2534
- msgstr "Fondos Insuficientes"
2535
 
2536
- #: ../addons/gateway/carts/mycred-marketpress.php:440
2537
- msgid "Message to show when the user can not use this gateway."
2538
- msgstr "Monstrar mensaje cuando el usuario no puede usar esta pasarela de pago."
2539
 
2540
- #: ../addons/gateway/carts/mycred-marketpress.php:446 ..
2541
- #: addons/gateway/carts/mycred-wpecommerce.php:382 ../addons/gateway/event-
2542
- #: booking/mycred-eventespresso3.php:490
2543
- msgid "Visitors"
2544
- msgstr "Visitantes"
2545
 
2546
- #: ../addons/gateway/carts/mycred-marketpress.php:448
2547
- msgid "Message to show to buyers that are not logged in."
2548
- msgstr "Monstrar mensaje a los compradores que no han iniciado la sesión."
2549
 
2550
- #: ../addons/gateway/carts/mycred-marketpress.php:454
2551
- msgid "User Instructions"
2552
- msgstr "Instrucciones del Usuario"
2553
 
2554
- #: ../addons/gateway/carts/mycred-marketpress.php:456
2555
- msgid "Information to show users before payment."
2556
- msgstr "Mostrar esta información a los usuarios antes del pago."
2557
 
2558
- #: ../addons/gateway/carts/mycred-marketpress.php:462
2559
- msgid "Confirmation Information"
2560
- msgstr "Informe de Confirmación"
2561
 
2562
- #: ../addons/gateway/carts/mycred-marketpress.php:464
2563
- msgid "Information to display on the order confirmation page. - HTML allowed"
2564
- msgstr ""
2565
- "Información que se mostrará en la página de confirmación del pedido - se "
2566
- "permite HTML."
2567
 
2568
- #: ../addons/gateway/carts/mycred-marketpress.php:470
2569
- msgid "Order Confirmation Email"
2570
- msgstr "Email de Confirmación del Pedido"
2571
 
2572
- #: ../addons/gateway/carts/mycred-marketpress.php:472
2573
- #, php-format
 
 
 
2574
  msgid ""
2575
- "This is the email text to send to those who have made %s checkouts. It "
2576
- "overrides the default order checkout email. These codes will be replaced "
2577
- "with order details: CUSTOMERNAME, ORDERID, ORDERINFO, SHIPPINGINFO, "
2578
- "PAYMENTINFO, TOTAL, TRACKINGURL. No HTML allowed."
2579
  msgstr ""
2580
- "Esto es el texto del correo electrónico que se manda a los que hayan "
2581
- "finalizado %s compras. Anula al correo electrónico predeterminado al "
2582
- "finalizar el cajero. Estos códigos seran reemplazados con los detalles del "
2583
- "pedido: ORDERID, ORDERINFO, SHIPPINGINFO, PAYMENTINFO, TOTAL, TRACKINGURL. "
2584
- "No se permite el uso de HTML."
2585
-
2586
- #: ../addons/gateway/carts/mycred-woocommerce.php:31
2587
- msgid "Let users pay using their myCRED balance."
2588
- msgstr "Permite que los usuarios paguen mediante su saldo myCRED."
2589
 
2590
- #: ../addons/gateway/carts/mycred-woocommerce.php:85
2591
- msgid "Enable/Disable"
2592
- msgstr "Activar/Desactivar"
2593
 
2594
- #: ../addons/gateway/carts/mycred-woocommerce.php:87
2595
- msgid "Enable myCRED Payment"
2596
- msgstr "Activar Pago myCRED"
 
2597
 
2598
- #: ../addons/gateway/carts/mycred-woocommerce.php:89
2599
- msgid ""
2600
- "Users who are not logged in or excluded from using myCRED will not have "
2601
- "access to this gateway!"
2602
- msgstr ""
2603
- "¡Los usuarios que no estan ingresado o los que han sido excluido de utilizar "
2604
- "myCRED no tendran acceso a esta pasarela de pago!"
2605
 
2606
- #: ../addons/gateway/carts/mycred-woocommerce.php:94
2607
- msgid "Title to show for this payment option."
2608
- msgstr "Mostrar este titulo para esta opción de pago."
2609
 
2610
- #: ../addons/gateway/carts/mycred-woocommerce.php:95
2611
- msgid "Pay with myCRED"
2612
- msgstr "Paga con myCRED"
2613
 
2614
- #. not sure if it is "message to customers" or "message from customers"? current translation is "message to customers"
2615
- #: ../addons/gateway/carts/mycred-woocommerce.php:99
2616
- msgid "Customer Message"
2617
- msgstr "Mensaje a los Clientes"
2618
 
2619
- #: ../addons/gateway/carts/mycred-woocommerce.php:110 ..
2620
- #: addons/gateway/carts/mycred-woocommerce.php:182
2621
- msgid "Refund Log Template"
2622
- msgstr "Plantilla de Registro de Reembolsos"
2623
-
2624
- #: ../addons/gateway/carts/mycred-woocommerce.php:122
2625
- msgid "Select the point type users can use to pay."
2626
- msgstr "Elige el clase de punto que los usuarios pueden utilizar para realizar pagos."
2627
 
2628
- #: ../addons/gateway/carts/mycred-woocommerce.php:148
2629
- msgid "Show Total"
2630
- msgstr "Mostrar Total"
 
 
2631
 
2632
- #: ../addons/gateway/carts/mycred-woocommerce.php:150
2633
- msgid "Show the final price in %_plural% ."
2634
- msgstr "Mostrar el precio final en %_plural%."
2635
 
2636
- #: ../addons/gateway/carts/mycred-woocommerce.php:153
2637
- msgid "Show in Cart"
2638
- msgstr "Mostrar en Carrito"
2639
 
2640
- #: ../addons/gateway/carts/mycred-woocommerce.php:154
2641
- msgid "Show on Checkout Page"
2642
- msgstr "Mostrar en la página de pago"
2643
 
2644
- #: ../addons/gateway/carts/mycred-woocommerce.php:155
2645
- msgid "Show in Cart and on Checkout Page"
2646
- msgstr "Mostrar en el Carrito y en la página de pago"
2647
 
2648
- #: ../addons/gateway/carts/mycred-woocommerce.php:162
2649
- msgid "Order Total in %_plural%"
2650
- msgstr "Total del Pedido en %_plural%"
 
 
2651
 
2652
- #: ../addons/gateway/carts/mycred-woocommerce.php:178
2653
- msgid "Log entry template for profit sharing."
2654
- msgstr "Plantilla para entradas de registro para el reparto de ganancias."
2655
 
2656
- #: ../addons/gateway/carts/mycred-woocommerce.php:184
2657
- msgid "Log entry template for refunds of profit shares."
2658
- msgstr "Plantilla de entrada de registro para reembolsos de reparto de ganancias."
2659
 
2660
- #: ../addons/gateway/carts/mycred-woocommerce.php:214
2661
- msgid "myCRED Payment"
2662
- msgstr "Pago myCRED"
2663
 
2664
- #: ../addons/gateway/carts/mycred-woocommerce.php:215
2665
  #, php-format
2666
  msgid ""
2667
- "Allows users to pay using their myCRED %_singular% balance. Please note that "
2668
- "users with insufficient funds and users who are not logged in will not see "
2669
- "this payment gateway on the checkout page."
2670
  msgstr ""
2671
- "Permite a los usuarios pagar usando su mycred % _singular% saldo. Por favor, "
2672
- "ten en cuenta que los usuarios con fondos insuficientes y los usuarios que "
2673
- "no han iniciado sesión no verán esta pasarela de pago en la página de pago."
2674
 
2675
- #: ../addons/gateway/carts/mycred-woocommerce.php:240
2676
- msgid "You must be logged in to pay with %_plural%"
2677
- msgstr "Debes haber iniciado sesión para pagar con %_plural%"
2678
 
2679
- #: ../addons/gateway/carts/mycred-woocommerce.php:246
2680
- msgid "You can not use this gateway. Please try a different payment option."
 
 
2681
  msgstr ""
2682
- "No puede usar esta pasarela de pago. Por favor prueba una opción de pago "
2683
- "diferente."
2684
 
2685
- #: ../addons/gateway/carts/mycred-woocommerce.php:360
2686
- #, php-format
2687
- msgctxt "%s = Point amount formatted"
2688
- msgid "Refunded %s"
 
 
 
 
2689
  msgstr ""
 
 
2690
 
2691
- #: ../addons/gateway/carts/mycred-woocommerce.php:408
2692
- msgid "Your account has successfully been charged."
2693
- msgstr "Su cuenta ha sido cambiado con éxito."
2694
 
2695
- #: ../addons/gateway/carts/mycred-woocommerce.php:741 ..
2696
- #: addons/gateway/carts/mycred-wpecommerce.php:131
2697
- msgid "Your current balance"
2698
- msgstr "Tu saldo actual"
2699
 
2700
- #: ../addons/gateway/carts/mycred-wpecommerce.php:30
2701
- msgid "Store sale"
2702
- msgstr "Venta desde la Tienda"
 
2703
 
2704
- #: ../addons/gateway/carts/mycred-wpecommerce.php:32
2705
- msgid "You must be logged in to use this gateway"
2706
- msgstr "Debe esta conectado para usar esta pasarela de pago."
2707
 
2708
- #: ../addons/gateway/carts/mycred-wpecommerce.php:33
2709
- msgid "Insufficient Funds."
2710
- msgstr "Fondos Insuficientes."
 
2711
 
2712
- #: ../addons/gateway/carts/mycred-wpecommerce.php:34
2713
- msgid "Deduct the amount from your balance."
2714
- msgstr "Restar la cantidad de su saldo."
2715
 
2716
- #: ../addons/gateway/carts/mycred-wpecommerce.php:199
2717
- msgid "You can not use this gateway."
2718
- msgstr "No puedes usar esta pasarela de pago."
 
2719
 
2720
- #: ../addons/gateway/carts/mycred-wpecommerce.php:344
2721
- msgid "Log Template for Payments"
2722
- msgstr "Plantilla de Registro para Pagos"
 
2723
 
2724
- #: ../addons/gateway/carts/mycred-wpecommerce.php:361
2725
  #, php-format
2726
- msgid "How much is 1 %s worth in %s"
2727
- msgstr "Cuanto vale 1 %s en %s"
2728
-
2729
- #: ../addons/gateway/carts/mycred-wpecommerce.php:378
2730
- msgid "Instructions"
2731
- msgstr "Instrucciones"
2732
-
2733
- #: ../addons/gateway/carts/mycred-wpecommerce.php:379
2734
  msgid ""
2735
- "Optional instructions to show users when selecting this gateway. Leave empty "
2736
- "to hide."
2737
  msgstr ""
2738
- "Instrucciones opcionales para mostrar a los usuarios cuando se selecciona "
2739
- "esta pasarela. Deje el campo vacío para ocultarlo."
2740
 
2741
- #: ../addons/gateway/carts/mycred-wpecommerce.php:383
2742
- msgid "Message to show visitors who are not logged in."
2743
- msgstr "Muestra mensaje a los visitantes que no han iniciado sesión."
2744
 
2745
- #: ../addons/gateway/carts/mycred-wpecommerce.php:387
2746
- msgid ""
2747
- "Message to show when users does not have enough %plural% to pay using this "
2748
- "gateway."
2749
  msgstr ""
2750
- "Monstrar mensaje cuando los usuarios no tienen bastante %plural% con que "
2751
- "pagar usando esta pasarela de pago."
2752
 
2753
- #: ../addons/gateway/event-booking/mycred-eventespresso3.php:32
2754
- msgid "Payment for Event Registration"
2755
- msgstr "Pago para Registrar Evento"
2756
 
2757
- #: ../addons/gateway/event-booking/mycred-eventespresso3.php:343
2758
  #, php-format
2759
- msgid "Activate %s"
2760
- msgstr "Activar %s"
2761
 
2762
- #: ../addons/gateway/event-booking/mycred-eventespresso3.php:351
2763
- #, php-format
2764
- msgid "Deactivate %s"
2765
- msgstr "Desactivar %s"
2766
 
2767
- #: ../addons/gateway/event-booking/mycred-eventespresso3.php:399 ..
2768
- #: addons/gateway/event-booking/mycred-eventsmanager-pro.php:490 ..
2769
- #: addons/gateway/event-booking/mycred-eventsmanager.php:524
2770
  #, php-format
2771
- msgid "How many %s is 1 %s worth?"
2772
- msgstr "¿Cuantos %s vale un %s?"
2773
 
2774
- #: ../addons/gateway/event-booking/mycred-eventespresso3.php:407
2775
- msgid "Gateways Settings Successfully Updated"
2776
- msgstr "Configuracion de l Pasarela de Pago ha sido Actualizado "
2777
 
2778
- #: ../addons/gateway/event-booking/mycred-eventespresso3.php:415 ..
2779
- #: addons/gateway/event-booking/mycred-eventsmanager-pro.php:576 ..
2780
- #: addons/gateway/event-booking/mycred-eventsmanager.php:602
2781
- msgid "Labels"
2782
- msgstr "Etiquetas"
2783
 
2784
- #. also, "Titulo de la Pasarela de Pago" depending on the technical nature of the action being done
2785
- #: ../addons/gateway/event-booking/mycred-eventespresso3.php:418
2786
- msgid "Gateway Title"
2787
- msgstr "Titulo de la Red de Enlace"
2788
 
2789
- #: ../addons/gateway/event-booking/mycred-eventespresso3.php:420
2790
- msgid "Title to show on Payment page"
2791
- msgstr "Titulo que se mostrara en tu pagina de Pago"
2792
 
2793
- #: ../addons/gateway/event-booking/mycred-eventespresso3.php:423
2794
- msgid "Payment Type"
2795
- msgstr "Clase de Pago"
2796
 
2797
- #: ../addons/gateway/event-booking/mycred-eventespresso3.php:425
2798
- msgid "Title to show on receipts and logs"
2799
- msgstr "El titulo a mostrar en la factura y en los registros."
2800
 
2801
- #: ../addons/gateway/event-booking/mycred-eventespresso3.php:428 ..
2802
- #: addons/gateway/event-booking/mycred-eventsmanager-pro.php:593 ..
2803
- #: addons/gateway/event-booking/mycred-eventsmanager.php:619 ../addons/sell-
2804
- #: content/myCRED-addon-sell-content.php:460 ../addons/sell-content/myCRED-addon-
2805
- #: sell-content.php:687 ../addons/transfer/includes/mycred-transfer-widgets.php:130
2806
- msgid "Button Label"
2807
- msgstr "Eqiqueta Asignada al Botón"
2808
 
2809
- #: ../addons/gateway/event-booking/mycred-eventespresso3.php:430
2810
- msgid "Pay Button"
2811
- msgstr "Botón de Pago"
 
 
2812
 
2813
- #: ../addons/gateway/event-booking/mycred-eventespresso3.php:447 ..
2814
- #: addons/gateway/event-booking/mycred-eventsmanager-pro.php:139 ..
2815
- #: addons/gateway/event-booking/mycred-eventsmanager-pro.php:142 ..
2816
- #: addons/gateway/event-booking/mycred-eventsmanager.php:336 ..
2817
- #: addons/gateway/event-booking/mycred-eventsmanager.php:339 ../addons/sell-
2818
- #: content/myCRED-addon-sell-content.php:451 ../addons/sell-content/myCRED-addon-
2819
- #: sell-content.php:683
2820
- msgid "Price"
2821
- msgstr "Precio"
2822
-
2823
- #: ../addons/gateway/event-booking/mycred-eventespresso3.php:455
2824
- msgid "Important!"
2825
- msgstr "¡Importante!"
2826
-
2827
- #: ../addons/gateway/event-booking/mycred-eventespresso3.php:457
2828
- msgid ""
2829
- "You can disable purchases using this gateway by adding a custom Event Meta: "
2830
- "<code>mycred_no_sale</code>"
2831
- msgstr ""
2832
- "Puedes inhabilitar compras a traves de esta pasarela mediante la adición de "
2833
- "un Evento Meta personalizado: <code>mycred_no_sale</code>"
2834
-
2835
- #: ../addons/gateway/event-booking/mycred-eventespresso3.php:458
2836
- msgid "Users must be logged in to use this gateway!"
2837
- msgstr "¡Los usuarios deben estar conectado para usar esta pasarela de pago!"
2838
-
2839
- #: ../addons/gateway/event-booking/mycred-eventespresso3.php:467 ..
2840
- #: modules/mycred-module-log.php:23 ../modules/mycred-module-log.php:24
2841
- msgid "Log"
2842
- msgstr "Registro"
2843
-
2844
- #: ../addons/gateway/event-booking/mycred-eventespresso3.php:470 ..
2845
- #: includes/mycred-admin.php:761 ../includes/mycred-admin.php:805
2846
- msgid "Log Entry"
2847
- msgstr "Entrada de Registro"
2848
-
2849
- #: ../addons/gateway/event-booking/mycred-eventespresso3.php:477 ../addons/sell-
2850
- #: content/myCRED-addon-sell-content.php:474
2851
- msgid "Templates"
2852
- msgstr "Plantillas"
2853
-
2854
- #: ../addons/gateway/event-booking/mycred-eventespresso3.php:480
2855
- msgid "Solvent users"
2856
- msgstr "Usuarios Solventes"
2857
-
2858
- #: ../addons/gateway/event-booking/mycred-eventespresso3.php:482
2859
- msgid ""
2860
- "Message to show users on the payment page before they are charged. Leave "
2861
- "empty to hide."
2862
- msgstr ""
2863
- "Mostrar mensaje a los usuarios en la pagina de pago antes de cobrar. Dejalo "
2864
- "vacío para ocultar. "
2865
-
2866
- #: ../addons/gateway/event-booking/mycred-eventespresso3.php:485
2867
- msgid "Insolvent users"
2868
- msgstr "Usuarios Insolventes"
2869
 
2870
- #: ../addons/gateway/event-booking/mycred-eventespresso3.php:487
2871
- msgid "Message to show users who do not have enough points to pay."
2872
- msgstr ""
2873
- "Mostrar mensaje a los usuarios que no tienen suficientes puntos con que "
2874
- "pagar."
2875
 
2876
- #: ../addons/gateway/event-booking/mycred-eventespresso3.php:492
2877
- msgid "Message to show visitors (users not logged in) on the payment page."
2878
- msgstr ""
2879
- "Mostrar mensaje a los visitantes (usuarios que no han iniciado sesión) en la "
2880
- "pagina de pago."
2881
 
2882
- #: ../addons/gateway/event-booking/mycred-eventsmanager-pro.php:33 ..
2883
- #: addons/gateway/event-booking/mycred-eventsmanager.php:29
2884
- msgid "Payment for tickets to %link_with_title%"
2885
- msgstr "Pago de entradas para %link_with_title%"
2886
 
2887
- #: ../addons/gateway/event-booking/mycred-eventsmanager-pro.php:34 ..
2888
- #: addons/gateway/event-booking/mycred-eventsmanager.php:30
2889
- msgid "Ticket refund for %link_with_title%"
2890
- msgstr "Reembolso de entrada para "
 
 
 
 
2891
 
2892
- #: ../addons/gateway/event-booking/mycred-eventsmanager-pro.php:38 ..
2893
- #: addons/gateway/event-booking/mycred-eventsmanager.php:34
2894
  #, php-format
2895
- msgid "Pay using your %_plural% balance"
2896
- msgstr "Paga utilizando tu saldo de %_plural%"
2897
 
2898
- #: ../addons/gateway/event-booking/mycred-eventsmanager-pro.php:40 ..
2899
- #: addons/gateway/event-booking/mycred-eventsmanager.php:36
2900
- msgid "Pay"
2901
- msgstr "Pagar"
2902
 
2903
- #: ../addons/gateway/event-booking/mycred-eventsmanager-pro.php:41
2904
- msgid "%plural% Cost"
2905
- msgstr "%plural% Coste"
 
2906
 
2907
- #: ../addons/gateway/event-booking/mycred-eventsmanager-pro.php:44 ..
2908
- #: addons/gateway/event-booking/mycred-eventsmanager.php:39
2909
- msgid "Thank you for your payment!"
2910
- msgstr "¡Gracias por su pago!"
2911
 
2912
- #: ../addons/gateway/event-booking/mycred-eventsmanager-pro.php:45 ..
2913
- #: addons/gateway/event-booking/mycred-eventsmanager.php:40
2914
- msgid "I'm sorry but you can not pay for these tickets using %_plural%"
2915
- msgstr "Lo siento pero no puedes pagar estos billetes usando %_plural%"
2916
 
2917
- #: ../addons/gateway/event-booking/mycred-eventsmanager-pro.php:136 ..
2918
- #: addons/gateway/event-booking/mycred-eventsmanager.php:333
2919
- msgid "Ticket Type"
2920
- msgstr "Clase de Billete"
2921
 
2922
- #: ../addons/gateway/event-booking/mycred-eventsmanager-pro.php:145 ..
2923
- #: addons/gateway/event-booking/mycred-eventsmanager.php:342
2924
- msgid "Spaces"
2925
- msgstr "Espacios"
2926
 
2927
- #: ../addons/gateway/event-booking/mycred-eventsmanager-pro.php:193
2928
- msgid "Your Balance"
2929
- msgstr "Su Saldo"
 
2930
 
2931
- #: ../addons/gateway/event-booking/mycred-eventsmanager-pro.php:258
2932
- msgid "You can not pay using this gateway."
2933
- msgstr "No puede usar esta pasarela de pago."
 
 
2934
 
2935
- #: ../addons/gateway/event-booking/mycred-eventsmanager-pro.php:393
2936
- msgid "Reject"
2937
- msgstr "Rechazar"
 
 
2938
 
2939
- #: ../addons/gateway/event-booking/mycred-eventsmanager-pro.php:397 ..
2940
- #: modules/mycred-module-log.php:563 ../modules/mycred-module-settings.php:678 ..
2941
- #: modules/mycred-module-settings.php:699
2942
- msgid "Delete"
2943
- msgstr "Borrar"
2944
 
2945
- #: ../addons/gateway/event-booking/mycred-eventsmanager-pro.php:402
2946
- msgid "Edit/View"
2947
- msgstr "Editar/Ver"
2948
 
2949
- #: ../addons/gateway/event-booking/mycred-eventsmanager-pro.php:518 ..
2950
- #: addons/gateway/event-booking/mycred-eventsmanager.php:542
2951
- msgid "Disabled - Users CAN NOT pay for tickets using %plural%."
2952
- msgstr "Deshabilitado - Usuarios NO PUEDEN pagar entradas utilizando %plural%."
2953
 
2954
- #: ../addons/gateway/event-booking/mycred-eventsmanager-pro.php:519 ..
2955
- #: addons/gateway/event-booking/mycred-eventsmanager.php:543
2956
- msgid "Single - Users can ONLY pay for tickets using %plural%."
2957
- msgstr "Individuales - Usuarios NO PUEDEN pagar entradas utilizando %plural%."
2958
 
2959
- #: ../addons/gateway/event-booking/mycred-eventsmanager-pro.php:520 ..
2960
- #: addons/gateway/event-booking/mycred-eventsmanager.php:544
2961
- msgid "Multi - Users can pay for tickets using other gateways or %plural%."
 
 
2962
  msgstr ""
2963
- "Multi-usuarios pueden pagar entradas utilizando otras pasarelas de pago o "
2964
- "%plural%."
2965
-
2966
- #: ../addons/gateway/event-booking/mycred-eventsmanager-pro.php:524 ..
2967
- #: addons/gateway/event-booking/mycred-eventsmanager-pro.php:557 ..
2968
- #: addons/gateway/event-booking/mycred-eventsmanager.php:562 ..
2969
- #: addons/gateway/event-booking/mycred-eventsmanager.php:595
2970
- msgid "Refunds"
2971
- msgstr "Reembolsos"
2972
 
2973
- #: ../addons/gateway/event-booking/mycred-eventsmanager-pro.php:527
2974
  msgid ""
2975
- "The percentage of the paid amount to refund if a user cancels their booking. "
2976
- "Use zero for no refunds. No refunds are given to \"Rejected\" bookings!"
2977
  msgstr ""
2978
- "El porcentaje de la cantidad pagada que se reembolsará si se cancela una "
2979
- "reserva. Utilice cero para no ofrecer reembolso ninguno. No se reembolsa "
2980
- "reservas \"Rechazadas\""
2981
 
2982
- #: ../addons/gateway/event-booking/mycred-eventsmanager-pro.php:547 ..
2983
- #: addons/gateway/event-booking/mycred-eventsmanager.php:585
2984
- msgid "Log Templates"
2985
- msgstr "Plantillas de Registro"
2986
 
2987
- #: ../addons/gateway/event-booking/mycred-eventsmanager-pro.php:550 ..
2988
- #: addons/gateway/event-booking/mycred-eventsmanager.php:588
2989
- msgid "Purchases"
2990
- msgstr "Compras"
2991
 
2992
- #: ../addons/gateway/event-booking/mycred-eventsmanager-pro.php:579 ..
2993
- #: addons/gateway/event-booking/mycred-eventsmanager.php:605
2994
- msgid "Payment Link Label"
2995
- msgstr "La Etiqueta del Enlace de Pago"
 
 
 
 
 
 
 
 
2996
 
2997
- #: ../addons/gateway/event-booking/mycred-eventsmanager-pro.php:582 ..
2998
- #: addons/gateway/event-booking/mycred-eventsmanager.php:608
2999
  msgid ""
3000
- "The payment link shows / hides the payment form under \"My Bookings\". No HTML "
3001
- "allowed."
3002
  msgstr ""
3003
- "El enlace de pago muestra / oculta el formulario de pago en \"Mis Reservas\". "
3004
- "¡No se permite HTML!"
3005
-
3006
- #: ../addons/gateway/event-booking/mycred-eventsmanager-pro.php:586 ..
3007
- #: addons/gateway/event-booking/mycred-eventsmanager.php:612
3008
- msgid "Payment Header"
3009
- msgstr "Encabezado de Pago"
3010
 
3011
- #: ../addons/gateway/event-booking/mycred-eventsmanager-pro.php:589 ..
3012
- #: addons/gateway/event-booking/mycred-eventsmanager.php:615
3013
- msgid "Shown on top of the payment form. No HTML allowed."
3014
- msgstr "Mostrar en la encima del formulario de pago. No se permite HTML."
3015
 
3016
- #: ../addons/gateway/event-booking/mycred-eventsmanager-pro.php:596 ..
3017
- #: addons/gateway/event-booking/mycred-eventsmanager.php:622
3018
- msgid "The button label for payments. No HTML allowed!"
3019
- msgstr "La etiqueta para el botón de pagos. ¡No se permite HTML!"
3020
 
3021
- #: ../addons/gateway/event-booking/mycred-eventsmanager-pro.php:600
3022
- msgid "Cart & Checkout Cost"
3023
- msgstr "Coste de Carrito y Página de pago"
3024
 
3025
- #: ../addons/gateway/event-booking/mycred-eventsmanager-pro.php:603
3026
- msgid "Label for cost in %plural%"
3027
- msgstr "Etiqueta para coste en %plural%"
3028
 
3029
- #: ../addons/gateway/event-booking/mycred-eventsmanager-pro.php:610 ..
3030
- #: addons/gateway/event-booking/mycred-eventsmanager.php:629
3031
- msgid "Successful Payments"
3032
- msgstr "Compras Finalizadas con Exito"
3033
 
3034
- #: ../addons/gateway/event-booking/mycred-eventsmanager-pro.php:613 ..
3035
- #: addons/gateway/event-booking/mycred-eventsmanager-pro.php:620 ..
3036
- #: addons/gateway/event-booking/mycred-eventsmanager.php:632 ..
3037
- #: addons/gateway/event-booking/mycred-eventsmanager.php:639
3038
- msgid "No HTML allowed!"
3039
- msgstr "¡No se permite HTML!"
3040
 
3041
- #: ../addons/gateway/event-booking/mycred-eventsmanager.php:420
3042
- msgid "Balance After Payment"
3043
- msgstr "Saldo despues de Pago"
3044
 
3045
- #: ../addons/gateway/event-booking/mycred-eventsmanager.php:532
3046
- msgid "Click to toggle"
3047
- msgstr "Haga clic para alternar"
3048
 
3049
- #: ../addons/gateway/event-booking/mycred-eventsmanager.php:533
 
3050
  #, php-format
3051
- msgid "%s Payments"
3052
- msgstr "Pagos de "
3053
 
3054
- #: ../addons/gateway/event-booking/mycred-eventsmanager.php:565
3055
- msgid ""
3056
- "The percentage of the paid amount to refund if a booking gets cancelled. Use "
3057
- "zero for no refunds. No refunds are given to \"Rejected\" bookings."
3058
- msgstr ""
3059
- "El porcentaje de la cantidad pagada que se reembolsará si se cancela una "
3060
- "reserva. Utilice cero para no ofrecer reembolso ninguno. No se reembolsa "
3061
- "reservas \"Rechazadas\""
3062
-
3063
- #: ../addons/notifications/myCRED-addon-notifications.php:193
3064
- msgid "Notifications"
3065
- msgstr "Notificaciones"
3066
-
3067
- #: ../addons/notifications/myCRED-addon-notifications.php:195
3068
- msgid "Styling"
3069
- msgstr "Diseño/Estilo"
3070
 
3071
- #: ../addons/notifications/myCRED-addon-notifications.php:198
3072
- msgid "Use the included CSS Styling for notifications."
3073
- msgstr "Utilice el Estilo CSS incluido para notificaciones."
 
 
3074
 
3075
- #: ../addons/notifications/myCRED-addon-notifications.php:201 ..
3076
- #: addons/ranks/myCRED-addon-ranks.php:1427 ../addons/ranks/myCRED-addon-ranks.
3077
- #: php:1472 ../modules/mycred-module-buddypress.php:464
3078
- msgid "Template"
3079
- msgstr "Plantilla"
3080
 
3081
- #: ../addons/notifications/myCRED-addon-notifications.php:205
3082
- #, php-format
3083
- msgid "Use %entry% to show the log entry in the notice and %amount% for the amount."
3084
- msgstr ""
3085
- "Utiliza %entry% para mostrar la entrada de registro en el aviso y %amount% "
3086
- "para la cantidad."
3087
 
3088
- #: ../addons/notifications/myCRED-addon-notifications.php:205
3089
- msgid "Restore to default"
3090
- msgstr ""
3091
 
3092
- #: ../addons/notifications/myCRED-addon-notifications.php:208
3093
- msgid "Transient Lifespan"
3094
- msgstr "Duración de Transitorio"
3095
 
3096
- #: ../addons/notifications/myCRED-addon-notifications.php:212
3097
  msgid ""
3098
- "The number of days a users notification is saved before being automatically "
3099
- "deleted."
3100
  msgstr ""
3101
- "Cuantos dias una notificación del usuario se guarda antes de automáticamente "
3102
- "borrarse."
 
3103
 
3104
- #: ../addons/notifications/myCRED-addon-notifications.php:215
3105
- msgid "Duration"
3106
- msgstr "Duracion"
3107
 
3108
- #: ../addons/notifications/myCRED-addon-notifications.php:219
3109
- msgid ""
3110
- "Number of seconds before a notice is automatically removed after being shown "
3111
- "to user. Use zero to disable."
3112
- msgstr ""
3113
 
3114
- #: ../addons/ranks/myCRED-addon-ranks.php:212 ../addons/ranks/myCRED-addon-ranks.
3115
- #: php:213 ../addons/ranks/myCRED-addon-ranks.php:443 ../addons/ranks/myCRED-
3116
- #: addon-ranks.php:452 ../addons/ranks/myCRED-addon-ranks.php:458 ..
3117
- #: addons/ranks/myCRED-addon-ranks.php:833 ../addons/ranks/myCRED-addon-ranks.
3118
- #: php:1310 ../addons/ranks/myCRED-addon-ranks.php:1601
3119
- msgid "Ranks"
3120
- msgstr "Rangos"
3121
 
3122
- #: ../addons/ranks/myCRED-addon-ranks.php:424
3123
- msgid "Warning! All ranks will be deleted! This can not be undone!"
3124
- msgstr "¡Advertencia! ¡Todos los rangos seran borrados! ¡No se puede deshacer esto!"
3125
 
3126
- #: ../addons/ranks/myCRED-addon-ranks.php:425
3127
- msgid "Are you sure you want to re-assign user ranks?"
3128
- msgstr "Esta seguro que quieres reasignar rangos de los usuarios?"
3129
 
3130
- #: ../addons/ranks/myCRED-addon-ranks.php:441
3131
- #, php-format
3132
- msgid "Ranks for %s"
3133
- msgstr ""
3134
 
3135
- #: ../addons/ranks/myCRED-addon-ranks.php:447 ../addons/ranks/myCRED-addon-ranks.
3136
- #: php:833
3137
- msgid "Rank"
3138
- msgstr "Rango"
3139
 
3140
- #: ../addons/ranks/myCRED-addon-ranks.php:449
3141
- msgid "Add New Rank"
3142
- msgstr "Añadir Nuevo Rango"
3143
 
3144
- #: ../addons/ranks/myCRED-addon-ranks.php:450
3145
- msgid "Edit Rank"
3146
- msgstr "Editar Rango"
3147
 
3148
- #: ../addons/ranks/myCRED-addon-ranks.php:451
3149
- msgid "New Rank"
3150
- msgstr "Nuevo Rango"
 
3151
 
3152
- #: ../addons/ranks/myCRED-addon-ranks.php:453
3153
- msgid "View Rank"
3154
- msgstr "Ver Rango"
3155
 
3156
- #: ../addons/ranks/myCRED-addon-ranks.php:454
3157
- msgid "Search Ranks"
3158
- msgstr "Búsqueda de Rangos"
 
3159
 
3160
- #: ../addons/ranks/myCRED-addon-ranks.php:455
3161
- msgid "No ranks found"
3162
- msgstr "Ningun rango encontrado"
 
3163
 
3164
- #: ../addons/ranks/myCRED-addon-ranks.php:456
3165
- msgid "No ranks found in Trash"
3166
- msgstr "Ningun rango encontrao el la papelera"
 
 
 
 
3167
 
3168
- #: ../addons/ranks/myCRED-addon-ranks.php:540
3169
  #, php-format
3170
- msgid "Completed - Total of %d users effected"
3171
- msgstr "Completado - Un total %d usuarios afectados"
3172
 
3173
- #: ../addons/ranks/myCRED-addon-ranks.php:977 ../addons/ranks/myCRED-addon-ranks.
3174
- #: php:978 ../addons/ranks/myCRED-addon-ranks.php:979 ../addons/ranks/myCRED-
3175
- #: addon-ranks.php:980 ../addons/ranks/myCRED-addon-ranks.php:981 ..
3176
- #: addons/ranks/myCRED-addon-ranks.php:982 ../addons/ranks/myCRED-addon-ranks.
3177
- #: php:985 ../addons/ranks/myCRED-addon-ranks.php:986
3178
- msgid "Rank Updated."
3179
- msgstr "Rango Actualizado."
3180
 
3181
- #: ../addons/ranks/myCRED-addon-ranks.php:983
3182
- msgid "Rank Enabled"
3183
- msgstr "Rango Habilitado"
3184
 
3185
- #: ../addons/ranks/myCRED-addon-ranks.php:984
3186
- msgid "Rank Saved"
3187
- msgstr "Rango Guardado"
3188
 
3189
- #: ../addons/ranks/myCRED-addon-ranks.php:1023
3190
- #, php-format
3191
- msgid "<strong>Rank:</strong> %s"
 
 
 
 
 
3192
  msgstr ""
 
 
3193
 
3194
- #: ../addons/ranks/myCRED-addon-ranks.php:1039 ../addons/ranks/myCRED-addon-ranks.
3195
- #: php:1122
3196
- msgid "Rank Title"
3197
- msgstr "Titulo de Rango"
3198
 
3199
- #: ../addons/ranks/myCRED-addon-ranks.php:1040
3200
- msgid "Logo"
3201
- msgstr "Logotipo"
 
3202
 
3203
- #: ../addons/ranks/myCRED-addon-ranks.php:1041
3204
- msgid "Requirement"
3205
- msgstr "Requisito"
 
3206
 
3207
- #: ../addons/ranks/myCRED-addon-ranks.php:1067
3208
- msgid "No Logo Set"
3209
- msgstr "No hay Logotipo Configurado"
 
3210
 
3211
- #: ../addons/ranks/myCRED-addon-ranks.php:1082 ../addons/ranks/myCRED-addon-ranks.
3212
- #: php:1087
3213
- msgid "Any Value"
3214
- msgstr "Cualquier Valor"
3215
 
3216
- #: ../addons/ranks/myCRED-addon-ranks.php:1089
3217
- msgid "Maximum %plural%"
3218
- msgstr "Maximo %plural%"
3219
 
3220
- #: ../addons/ranks/myCRED-addon-ranks.php:1137
3221
- msgid "Rank Settings"
3222
- msgstr "Configuración de Rango"
3223
 
3224
- #: ../addons/ranks/myCRED-addon-ranks.php:1191
3225
- msgid "Minimum %plural% to reach this rank"
3226
- msgstr "Minimo %plural% para llegar a este rango"
 
3227
 
3228
- #: ../addons/ranks/myCRED-addon-ranks.php:1195
3229
- msgid "Maximum %plural% to be included in this rank"
3230
- msgstr "Maximo %plural% para ser incluido en este rango"
 
3231
 
3232
- #: ../addons/ranks/myCRED-addon-ranks.php:1213
3233
- msgid "All Published Ranks"
3234
- msgstr "Todos los Rangos Publicados"
 
 
 
 
 
 
 
 
 
 
 
3235
 
3236
- #: ../addons/ranks/myCRED-addon-ranks.php:1223 ../addons/ranks/myCRED-addon-ranks.
3237
- #: php:1225
3238
- msgid "Not Set"
3239
- msgstr "No Configurado"
3240
 
3241
- #: ../addons/ranks/myCRED-addon-ranks.php:1231
3242
- msgid "No Ranks found"
3243
- msgstr "Ningun rango encontrado"
3244
 
3245
- #: ../addons/ranks/myCRED-addon-ranks.php:1315
3246
- msgid "Rank Features"
3247
- msgstr "Caracteristicas de los Rangos"
3248
 
3249
- #: ../addons/ranks/myCRED-addon-ranks.php:1319
3250
- msgid "%plural% requirement"
3251
- msgstr "%plural% requisito"
 
3252
 
3253
- #: ../addons/ranks/myCRED-addon-ranks.php:1320
3254
- msgid "Featured Image (Logo)"
3255
- msgstr "Imagen Principal (Logotipo)"
3256
 
3257
- #: ../addons/ranks/myCRED-addon-ranks.php:1322
3258
- msgid "Content"
3259
- msgstr "Contenido"
3260
 
3261
- #: ../addons/ranks/myCRED-addon-ranks.php:1324
3262
- msgid "Excerpt"
3263
- msgstr "Extracto"
3264
 
3265
- #: ../addons/ranks/myCRED-addon-ranks.php:1326
3266
- msgid "Comments"
3267
- msgstr "Comentario"
 
3268
 
3269
- #: ../addons/ranks/myCRED-addon-ranks.php:1328
3270
- msgid "Page Attributes"
3271
- msgstr "Atributos de Página"
 
3272
 
3273
- #: ../addons/ranks/myCRED-addon-ranks.php:1330
3274
- msgid "Custom Fields"
3275
- msgstr "Campo Personalizado"
3276
-
3277
- #: ../addons/ranks/myCRED-addon-ranks.php:1334
3278
- msgid "Public"
3279
- msgstr "Público"
3280
 
3281
- #. This is not clear, especially the second sentence (fragment)!
3282
- #: ../addons/ranks/myCRED-addon-ranks.php:1338
3283
  msgid ""
3284
- "If you want to create a template archive for each rank, you must select to "
3285
- "have ranks public. Defaults to disabled."
3286
  msgstr ""
3287
- "Si desea crear un archivo de plantilla para cada rango, debe seleccionar que "
3288
- "los rangos sean público. Los valores predeterminados desactivado."
3289
-
3290
- #: ../addons/ranks/myCRED-addon-ranks.php:1341
3291
- msgid "Archive URL"
3292
- msgstr "URL del Archivo"
3293
 
3294
- #: ../addons/ranks/myCRED-addon-ranks.php:1345
3295
- msgid "Ignored if Ranks are not public"
3296
- msgstr "Sera Ingnorado si los Rangos no son Pulicos"
3297
 
3298
- #. not sure if this is order, as in ordering pizza or order as in rank, organization
3299
- #: ../addons/ranks/myCRED-addon-ranks.php:1348
3300
- msgid "Display Order"
3301
- msgstr "Orden de Visualización"
3302
 
3303
- #: ../addons/ranks/myCRED-addon-ranks.php:1356
3304
- msgid "Ascending - Lowest rank to highest"
3305
- msgstr "Ascendente - Rango más bajo a lo más alto"
3306
 
3307
- #: ../addons/ranks/myCRED-addon-ranks.php:1357
3308
- msgid "Descending - Highest rank to lowest"
3309
- msgstr "Descendiente - Rango más alto al más bajo"
3310
 
3311
- #: ../addons/ranks/myCRED-addon-ranks.php:1368
3312
- msgid ""
3313
- "Select in what order ranks should be displayed in your admin area and/or "
3314
- "front if ranks are \"Public\""
3315
  msgstr ""
3316
- "Elige en que orden se debe mostrar los rangos en tu area de administrador "
3317
- "y/o en el frente si los rangos son \"Público\""
3318
 
3319
- #: ../addons/ranks/myCRED-addon-ranks.php:1374
3320
- msgid "Rank Basis"
3321
- msgstr "Base de Rango"
3322
 
3323
- #: ../addons/ranks/myCRED-addon-ranks.php:1377
3324
- msgid "Users are ranked according to their current balance."
3325
- msgstr "Los usuarios se clasifican según su saldo actual."
3326
 
3327
- #: ../addons/ranks/myCRED-addon-ranks.php:1380
3328
  msgid ""
3329
- "Users are ranked according to the total amount of %_plural% they have "
3330
- "accumulated."
3331
  msgstr ""
3332
- "Los usuarios se clasifican según la cantidad total de %_plural% que han "
3333
- "acumulado."
3334
 
3335
- #: ../addons/ranks/myCRED-addon-ranks.php:1384 ../addons/ranks/myCRED-addon-ranks.
3336
- #: php:1389
3337
- msgid "Calculate Totals"
3338
- msgstr "Calcular Totales"
3339
 
3340
- #: ../addons/ranks/myCRED-addon-ranks.php:1387
3341
- msgid ""
3342
- "Use this button to calculate or recalculate your users totals. If not used, "
3343
- "the users current balance will be used as a starting point."
3344
- msgstr ""
3345
 
3346
- #: ../addons/ranks/myCRED-addon-ranks.php:1387
3347
- msgid ""
3348
- "Once a users total has been calculated, they will be assigned to their "
3349
- "appropriate roles. For this reason, it is highly recommended that you first "
3350
- "setup your ranks!"
3351
- msgstr ""
3352
- "Una vez que la suma del usuario haya sido calculado, sus roles "
3353
- "corespondientes seran asignados. ¡Por esta razón, se recomienda altamente "
3354
- "que primero configures los rangos!"
3355
 
3356
- #: ../addons/ranks/myCRED-addon-ranks.php:1388
3357
- msgid ""
3358
- "Depending on your log size and number of users this process may take a while."
3359
- " Please do not leave, click \"Update Settings\" or re-fresh this page until "
3360
- "this is completed!"
3361
- msgstr ""
3362
- "Segun el tamaño de registro y los numeros de usuarios este proceso puede "
3363
- "llevar un rato. ¡Por favor no abandone esta pagina, haga click sobre "
3364
- "\"Actualizar Configuraciones\" o refrescar la pagina hasta que se haya "
3365
- "completado!"
3366
 
3367
- #: ../addons/ranks/myCRED-addon-ranks.php:1405 ../addons/ranks/myCRED-addon-ranks.
3368
- #: php:1450 ../modules/mycred-module-buddypress.php:424
3369
- msgid "Do not show."
3370
- msgstr "No mostrar."
3371
 
3372
- #: ../addons/ranks/myCRED-addon-ranks.php:1406
3373
- msgid "Include in Profile Header."
3374
- msgstr "Incluir en Encabezado del Perfil"
3375
 
3376
- #: ../addons/ranks/myCRED-addon-ranks.php:1408
3377
- msgid "Include under the \"Profile\" tab and Profile Header."
3378
- msgstr "Incluir bajo la pestanã \"Perfil\" y Encabezado de Perfil."
3379
 
3380
- #: ../addons/ranks/myCRED-addon-ranks.php:1412
3381
- msgid "Rank in BuddyPress"
3382
- msgstr "Rango en BuddyPress"
 
3383
 
3384
- #: ../addons/ranks/myCRED-addon-ranks.php:1429 ../addons/ranks/myCRED-addon-ranks.
3385
- #: php:1474
3386
- #, php-format
3387
- msgid ""
3388
- "Template to use when showing a users Rank in BuddyPress. Use %rank_title% "
3389
- "for the title and %rank_logo% to show the rank logo. HTML is allowed."
3390
- msgstr ""
3391
 
3392
- #: ../addons/ranks/myCRED-addon-ranks.php:1451
3393
- msgid "Include in Topic Replies"
3394
- msgstr ""
3395
 
3396
- #: ../addons/ranks/myCRED-addon-ranks.php:1453
3397
- msgid "Include in Topic Replies and Profile"
3398
- msgstr ""
3399
 
3400
- #: ../addons/ranks/myCRED-addon-ranks.php:1457
3401
- msgid "Rank in bbPress"
3402
- msgstr ""
3403
 
3404
- #: ../addons/ranks/myCRED-addon-ranks.php:1536
3405
- msgid "Script Communication Error"
3406
- msgstr "Error del Script de Comunicación"
3407
 
3408
- #: ../addons/ranks/myCRED-addon-ranks.php:1604 ../modules/mycred-module-settings.
3409
- #: php:632
3410
- msgid "User Meta Key"
3411
- msgstr "Clave Meta del Usuario"
3412
 
3413
- #: ../addons/ranks/myCRED-addon-ranks.php:1608
3414
- msgid "No. of ranks"
3415
- msgstr "Numero de Rangos"
3416
 
3417
- #: ../addons/ranks/myCRED-addon-ranks.php:1613
3418
- msgid "Remove All Ranks"
3419
- msgstr "Quitar todos los Rangos"
3420
 
3421
- #: ../addons/ranks/myCRED-addon-ranks.php:1613
3422
- msgid "Assign Ranks to Users"
3423
- msgstr "Asignar Rango a los Usuarios"
3424
 
3425
- #: ../addons/ranks/includes/mycred-rank-functions.php:257
3426
- msgid "mycred_get_users_rank() : Missing required user id"
3427
- msgstr "mycred_get_users_rank() : Falta el requisito id del usuario"
3428
 
3429
- #: ../addons/ranks/includes/mycred-rank-functions.php:270
3430
- msgid "no rank"
3431
- msgstr "ningun rango"
3432
 
3433
- #: ../addons/ranks/includes/mycred-rank-shortcodes.php:115 ..
3434
- #: addons/ranks/includes/mycred-rank-shortcodes.php:202
3435
- msgid "No users found with this rank"
3436
- msgstr "Ningun usuario encontrado con este rango"
3437
 
3438
- #: ../addons/ranks/includes/mycred-rank-shortcodes.php:122 ../includes/mycred-
3439
- #: shortcodes.php:525
3440
- msgid "error"
3441
- msgstr "error"
3442
 
3443
- #: ../addons/ranks/includes/mycred-rank-shortcodes.php:122
3444
- msgid "Rank ID is required!"
3445
- msgstr "¡ID de Rango obligatorio!"
3446
 
3447
- #: ../addons/sell-content/myCRED-addon-sell-content.php:74
3448
- msgid "Hours"
3449
- msgstr "Horas"
3450
 
3451
- #: ../addons/sell-content/myCRED-addon-sell-content.php:111
3452
- msgid "Profit Share"
3453
- msgstr "Reparto de Utilidades"
3454
 
3455
- #: ../addons/sell-content/myCRED-addon-sell-content.php:119
3456
- msgid "Save Profit Share"
3457
- msgstr "Guardar Reparto de Utilidades"
3458
 
3459
- #: ../addons/sell-content/myCRED-addon-sell-content.php:166
3460
- msgid "Profit Share override saved"
3461
- msgstr "Anulación de reparto de utilidades guardado"
3462
 
3463
- #: ../addons/sell-content/myCRED-addon-sell-content.php:328
3464
- msgid "You can not buy this content."
3465
- msgstr "No puedes comprar este contenido."
3466
 
3467
- #: ../addons/sell-content/myCRED-addon-sell-content.php:373
3468
- msgid "Error. Try Again"
3469
- msgstr "Error. Inténtelo de nuevo"
3470
 
3471
- #: ../addons/sell-content/myCRED-addon-sell-content.php:395
3472
- msgid "No Payout. Just charge."
3473
- msgstr "No Desembolsar. Solo cobrar."
3474
 
3475
- #: ../addons/sell-content/myCRED-addon-sell-content.php:396
3476
- msgid "Pay Content Author."
3477
- msgstr "Pagar al Autor del Contenido"
3478
 
3479
- #: ../addons/sell-content/myCRED-addon-sell-content.php:402 ../includes/mycred-
3480
- #: overview.php:141 ../includes/mycred-overview.php:148
3481
- msgid "Sell Content"
3482
- msgstr "Vender Contenido"
3483
 
3484
- #: ../addons/sell-content/myCRED-addon-sell-content.php:404
3485
- msgid "Post Types"
3486
- msgstr "Post Types"
3487
 
3488
- #: ../addons/sell-content/myCRED-addon-sell-content.php:408
3489
- msgid "Comma separated list of post types that can be sold."
3490
- msgstr "Lista separada por comas de post types que se puede vender."
3491
 
3492
- #: ../addons/sell-content/myCRED-addon-sell-content.php:438
3493
- msgid "Percentage to pay Author"
3494
- msgstr "Porcentaje que pagar al Autor"
3495
 
3496
- #: ../addons/sell-content/myCRED-addon-sell-content.php:440
3497
- msgid ""
3498
- "Percentage of the price to pay the author. Can not be zero and is ignored if "
3499
- "authors are not paid."
3500
- msgstr ""
3501
- "Porcentaje del precio que pagar al autor. No puede ser cero y sera ignorado "
3502
- "si no se les paga a los autores."
3503
 
3504
- #. also, "por defecto" and "predeterminados"
3505
- #: ../addons/sell-content/myCRED-addon-sell-content.php:448
3506
- msgid "Defaults"
3507
- msgstr "Predefinidos"
3508
 
3509
- #: ../addons/sell-content/myCRED-addon-sell-content.php:456
3510
- msgid "Allow authors to change price."
3511
- msgstr "Permitir que los Autores cambien el precio."
3512
 
3513
- #: ../addons/sell-content/myCRED-addon-sell-content.php:465
3514
- msgid "Allow authors to change button label."
3515
- msgstr "Permitir que los Autores cambien la etiqueta asignada al botón."
3516
 
3517
- #: ../addons/sell-content/myCRED-addon-sell-content.php:469
3518
- msgid "Purchases expire after"
3519
- msgstr "Compras caducan despues de"
3520
 
3521
- #: ../addons/sell-content/myCRED-addon-sell-content.php:471
3522
- msgid "Use zero for permanent sales."
3523
- msgstr "Usa cero para ventas permanentes."
3524
 
3525
- #: ../addons/sell-content/myCRED-addon-sell-content.php:477
3526
- msgid "For Visitors"
3527
- msgstr "Para Visitantes"
3528
 
3529
- #: ../addons/sell-content/myCRED-addon-sell-content.php:487
3530
- #, php-format
3531
- msgid ""
3532
- "Do <strong>not</strong> use the %buy_button% in this template as a user must "
3533
- "be logged in to buy content!"
3534
- msgstr ""
3535
- "<strong>¡No utilice</strong> el %buy_button% en esta plantilla porque el "
3536
- "usuario debe haber inciciado sesión para poder comprar contenidos!"
3537
 
3538
- #: ../addons/sell-content/myCRED-addon-sell-content.php:492
3539
- msgid "For Members"
3540
- msgstr "Para Miembros"
3541
 
3542
- #: ../addons/sell-content/myCRED-addon-sell-content.php:502 ../addons/sell-
3543
- #: content/myCRED-addon-sell-content.php:517
3544
- #, php-format
3545
- msgid "Your template must contain the %buy_button% tag for purchases to work!"
3546
- msgstr ""
3547
- "¡Tu plantilla debe contener la etiqueta %buy_button% para que se pueda "
3548
- "realizar compras!"
3549
 
3550
- #: ../addons/sell-content/myCRED-addon-sell-content.php:507
3551
- msgid "For members that can not afford to buy"
3552
- msgstr "Para los miembros que no tienen al alcance comprar"
3553
 
3554
- #: ../addons/sell-content/myCRED-addon-sell-content.php:521
3555
- msgid "Log template for Purchases"
3556
- msgstr "Plantilla de registros para Compras"
3557
 
3558
- #: ../addons/sell-content/myCRED-addon-sell-content.php:528
3559
- msgid "Log template for Sales"
3560
- msgstr "Plantilla de registros para Ventas"
3561
 
3562
- #: ../addons/sell-content/myCRED-addon-sell-content.php:581
3563
- #, php-format
3564
- msgid "%s Sell This"
3565
- msgstr "%s Vende Esto"
3566
 
3567
- #: ../addons/sell-content/myCRED-addon-sell-content.php:636
3568
- #, php-format
3569
- msgid "%s Sell Content needs to be setup before you can use this feature."
3570
- msgstr ""
3571
- "%s Vender Contenidos necesita haberse configurado antes de poder utilizar "
3572
- "esta característica técnica."
3573
 
3574
- #: ../addons/sell-content/myCRED-addon-sell-content.php:639
3575
- msgid "Setup add-on"
3576
- msgstr "Configurar Extensión"
3577
 
3578
- #: ../addons/sell-content/myCRED-addon-sell-content.php:639
3579
- msgid "Lets do it"
3580
- msgstr "Vamos a hacerlo."
3581
 
3582
- #: ../addons/sell-content/myCRED-addon-sell-content.php:677
3583
- #, php-format
3584
- msgid "Enable sale of this %s"
3585
- msgstr "Habilitar la venta de esto %s"
3586
 
3587
- #: ../addons/sell-content/myCRED-addon-sell-content.php:691
3588
- msgid "Purchase expires after"
3589
- msgstr "Compra caduca despues de"
3590
 
3591
- #: ../addons/sell-content/myCRED-addon-sell-content.php:1017
3592
- msgid "Thank you for your purchase!"
3593
- msgstr "¡Gracias por su compra!"
3594
 
3595
- #: ../addons/sell-content/myCRED-addon-sell-content.php:1105 ../addons/sell-
3596
- #: content/myCRED-addon-sell-content.php:1191
3597
- msgid "The following content is set for sale:"
3598
- msgstr "El siguiente contenido esta listo para la venta:"
3599
 
3600
- #: ../addons/sell-content/myCRED-addon-sell-content.php:1254
3601
- msgid "Purchased"
3602
- msgstr "Comprado"
3603
 
3604
- #: ../addons/stats/myCRED-addon-stats.php:54
3605
- msgid "Statistics"
3606
- msgstr ""
3607
 
3608
- #: ../addons/stats/myCRED-addon-stats.php:126
3609
- msgid "Overview"
3610
- msgstr ""
3611
 
3612
- #: ../addons/stats/myCRED-addon-stats.php:192
3613
- msgid "Refresh"
3614
- msgstr ""
3615
 
3616
- #: ../addons/stats/myCRED-addon-stats.php:248
3617
- msgid "Your log is empty. No statistics can be shown."
3618
- msgstr ""
3619
 
3620
- #: ../addons/stats/abstracts/mycred-abstract-stat-widget.php:102 ..
3621
- #: includes/importers/mycred-balances.php:181 ../includes/importers/mycred-
3622
- #: cubepoints.php:293 ../includes/importers/mycred-log-entries.php:148
3623
- msgid "View Log"
3624
- msgstr "Ver Registro"
3625
 
3626
- #: ../addons/stats/abstracts/mycred-abstract-stat-widget.php:105 ..
3627
- #: modules/mycred-module-hooks.php:26 ../modules/mycred-module-hooks.php:27 ..
3628
- #: modules/mycred-module-hooks.php:28
3629
- msgid "Hooks"
3630
- msgstr "Ganchos"
3631
 
3632
- #: ../addons/stats/widgets/mycred-stats-widget-circulation.php:44
3633
- #, php-format
3634
- msgid "Total %s:"
3635
- msgstr ""
3636
 
3637
- #: ../addons/stats/widgets/mycred-stats-widget-circulation.php:136 ..
3638
- #: includes/mycred-overview.php:78
3639
- msgid "Total amount in circulation"
3640
- msgstr "Suma total en circulación"
3641
 
3642
- #: ../addons/stats/widgets/mycred-stats-widget-circulation.php:138
3643
- #, php-format
3644
- msgid "Total amount of %s in circulation"
3645
- msgstr ""
3646
 
3647
- #: ../addons/stats/widgets/mycred-stats-widget-circulation.php:170
3648
- msgid "Total gains (%)"
3649
- msgstr ""
3650
 
3651
- #: ../addons/stats/widgets/mycred-stats-widget-circulation.php:174
3652
- msgid "Total loses (%)"
3653
- msgstr ""
3654
 
3655
- #: ../addons/stats/widgets/mycred-stats-widget-circulation.php:178
3656
- #, php-format
3657
- msgid "Total Gained: %s"
3658
- msgstr ""
3659
 
3660
- #: ../addons/stats/widgets/mycred-stats-widget-circulation.php:178
3661
- #, php-format
3662
- msgid "Total Spent: %s"
3663
- msgstr ""
3664
 
3665
- #: ../addons/stats/widgets/mycred-stats-widget-circulation.php:189 ..
3666
- #: includes/mycred-log.php:993 ../modules/mycred-module-buddypress.php:237
3667
- msgid "Today"
3668
- msgstr "Hoy"
3669
 
3670
- #: ../addons/stats/widgets/mycred-stats-widget-circulation.php:190 ..
3671
- #: includes/mycred-log.php:995 ../modules/mycred-module-buddypress.php:239
3672
- msgid "This Week"
3673
- msgstr "Esta Semana"
3674
 
3675
- #: ../addons/stats/widgets/mycred-stats-widget-circulation.php:191 ..
3676
- #: includes/mycred-log.php:996 ../modules/mycred-module-buddypress.php:240
3677
- msgid "This Month"
3678
- msgstr "Este Mes"
3679
 
3680
- #: ../addons/stats/widgets/mycred-stats-widget-circulation.php:192
3681
- msgid "This Year"
3682
- msgstr ""
3683
 
3684
- #: ../addons/stats/widgets/mycred-stats-widget-circulation.php:196 ..
3685
- #: addons/stats/widgets/mycred-stats-widget-circulation.php:198 ..
3686
- #: addons/stats/widgets/mycred-stats-widget-circulation.php:200 ..
3687
- #: addons/stats/widgets/mycred-stats-widget-circulation.php:202
3688
- msgid "Gained"
3689
- msgstr ""
3690
 
3691
- #: ../addons/stats/widgets/mycred-stats-widget-circulation.php:197 ..
3692
- #: addons/stats/widgets/mycred-stats-widget-circulation.php:199 ..
3693
- #: addons/stats/widgets/mycred-stats-widget-circulation.php:201 ..
3694
- #: addons/stats/widgets/mycred-stats-widget-circulation.php:203
3695
- msgid "Lost"
3696
- msgstr ""
3697
 
3698
- #: ../addons/stats/widgets/mycred-stats-widget-daily-gains.php:118
3699
- msgid "Most common ways your users have gained points during this period."
3700
- msgstr ""
3701
 
3702
- #: ../addons/stats/widgets/mycred-stats-widget-daily-gains.php:120
3703
- #, php-format
3704
- msgid "Most common ways your users have gained %_plural% during this period."
3705
- msgstr ""
3706
 
3707
- #: ../addons/stats/widgets/mycred-stats-widget-daily-gains.php:127
3708
- msgid "Gains in the last 10 days"
3709
- msgstr ""
3710
 
3711
- #: ../addons/stats/widgets/mycred-stats-widget-daily-gains.php:151 ..
3712
- #: addons/stats/widgets/mycred-stats-widget-daily-loses.php:151
3713
- msgid "View"
3714
- msgstr ""
3715
 
3716
- #: ../addons/stats/widgets/mycred-stats-widget-daily-gains.php:166 ..
3717
- #: addons/stats/widgets/mycred-stats-widget-daily-loses.php:166
3718
- msgid "No data found"
3719
- msgstr ""
3720
 
3721
- #: ../addons/stats/widgets/mycred-stats-widget-daily-loses.php:118
3722
- msgid "Most common ways your users have lost or spent points during this period."
3723
- msgstr ""
 
3724
 
3725
- #: ../addons/stats/widgets/mycred-stats-widget-daily-loses.php:120
3726
- #, php-format
3727
- msgid "Most common ways your users have lost or spent %_plural% during this period."
3728
- msgstr ""
3729
 
3730
- #: ../addons/stats/widgets/mycred-stats-widget-daily-loses.php:127
3731
- msgid "Loses in the last 10 days"
3732
- msgstr ""
 
3733
 
3734
- #: ../addons/transfer/myCRED-addon-transfer.php:44
3735
- msgid "You do not have enough %plural% to send."
3736
- msgstr "No tienes bastante %plural% para mandar."
 
3737
 
3738
- #: ../addons/transfer/myCRED-addon-transfer.php:45
3739
- msgid "You have exceeded your %limit% transfer limit."
3740
- msgstr "Has excedido tu limite de transferencia de %limit%."
 
3741
 
3742
- #: ../addons/transfer/myCRED-addon-transfer.php:51 ../includes/mycred-functions.
3743
- #: php:2454
3744
- msgid "Transfer"
3745
- msgstr "Transferir"
3746
 
3747
- #: ../addons/transfer/myCRED-addon-transfer.php:154
3748
- msgid "Transaction completed."
3749
- msgstr "Transacción Finalizada"
 
3750
 
3751
- #: ../addons/transfer/myCRED-addon-transfer.php:155
3752
- msgid "Security token could not be verified. Please contact your site administrator!"
3753
- msgstr ""
3754
- "No se pudo verificar el 'token' (código) de seguridad. ¡Por favor, póngase "
3755
- "en contacto con el administrador del sitio!"
3756
 
3757
- #: ../addons/transfer/myCRED-addon-transfer.php:156
3758
- msgid "Communications error. Please try again later."
3759
- msgstr "Error en comunicación. Por favor inténtelo de nuevo más tarde."
3760
 
3761
- #: ../addons/transfer/myCRED-addon-transfer.php:157
3762
- msgid "Recipient not found. Please try again."
3763
- msgstr "El recipiente no fuel encontrado. Por favor Inténtelo de nuevo."
3764
-
3765
- #: ../addons/transfer/myCRED-addon-transfer.php:158
3766
- msgid "Transaction declined by recipient."
3767
- msgstr "Transacción rechazada por el destinatario"
3768
-
3769
- #: ../addons/transfer/myCRED-addon-transfer.php:159
3770
- msgid "Incorrect amount. Please try again."
3771
- msgstr "Cantidad incorecta. Por favor inténtelo de nuevo."
3772
-
3773
- #: ../addons/transfer/myCRED-addon-transfer.php:160
3774
  msgid ""
3775
- "This myCRED Add-on has not yet been setup! No transfers are allowed until "
3776
- "this has been done!"
3777
  msgstr ""
3778
- "¡Esta Extensión de myCRED todavía no ha sido configurado! No se permite "
3779
- "transferencias hasta que se haga esto."
3780
-
3781
- #: ../addons/transfer/myCRED-addon-transfer.php:161 ../includes/mycred-functions.
3782
- #: php:2582
3783
- msgid "Insufficient Funds. Please try a lower amount."
3784
- msgstr "Fondos Insuficientes. Por favor intenta con una cantidad menor."
3785
-
3786
- #: ../addons/transfer/myCRED-addon-transfer.php:162
3787
- msgid "Transfer Limit exceeded."
3788
- msgstr "Límite de transferencia excedida."
3789
-
3790
- #: ../addons/transfer/myCRED-addon-transfer.php:189
3791
- msgid "No limits."
3792
- msgstr "Sin limite."
3793
 
3794
- #: ../addons/transfer/myCRED-addon-transfer.php:190
3795
- msgid "Impose daily limit."
3796
- msgstr "Imponer limite diario."
 
 
3797
 
3798
- #: ../addons/transfer/myCRED-addon-transfer.php:191
3799
- msgid "Impose weekly limit."
3800
- msgstr "Imponer limite semanal."
 
3801
 
3802
- #: ../addons/transfer/myCRED-addon-transfer.php:198
3803
- msgid "User Login (user_login)"
3804
- msgstr "Ingreso Usuario (user_login)"
3805
 
3806
- #: ../addons/transfer/myCRED-addon-transfer.php:199
3807
- msgid "User Email (user_email)"
3808
- msgstr "Correo Electrónico del Usuario (user_email)"
3809
 
3810
- #: ../addons/transfer/myCRED-addon-transfer.php:207 ../includes/mycred-overview.
3811
- #: php:120 ../includes/mycred-overview.php:127
3812
- msgid "Transfers"
3813
- msgstr "Transferencias"
3814
 
3815
- #: ../addons/transfer/myCRED-addon-transfer.php:216
3816
- msgid "Select the point types that users can transfer."
3817
- msgstr "Elige el clase de punto que el usuario puede transferir."
3818
 
3819
- #: ../addons/transfer/myCRED-addon-transfer.php:224
3820
- msgid "Log template for sending"
3821
- msgstr "Plantilla de registros para transmitir"
3822
 
3823
- #: ../addons/transfer/myCRED-addon-transfer.php:231
3824
- msgid "Log template for receiving"
3825
- msgstr "Plantilla de registros para recibir"
3826
 
3827
- #: ../addons/transfer/myCRED-addon-transfer.php:238
3828
- msgid "Autofill Recipient"
3829
- msgstr "Destinatario del Relleno Automático"
3830
 
3831
- #: ../addons/transfer/myCRED-addon-transfer.php:250
3832
- msgid "Select what user details recipients should be autofilled by."
 
 
3833
  msgstr ""
3834
- "Selecciona cuales detalles del usuario al destinatario deben ser rellenados "
3835
- "automáticamente."
3836
-
3837
- #: ../addons/transfer/myCRED-addon-transfer.php:253
3838
- msgid "Reload"
3839
- msgstr "Recargar"
3840
 
3841
- #: ../addons/transfer/myCRED-addon-transfer.php:256
3842
- msgid "Reload page on successful transfers."
3843
- msgstr "Actualizar la pagina despues de transferencias finalizadas."
3844
 
3845
- #: ../addons/transfer/myCRED-addon-transfer.php:276
3846
- msgid "Limit Amount"
3847
- msgstr "Limitar la Cantidad"
 
 
 
 
 
3848
 
3849
- #: ../addons/transfer/myCRED-addon-transfer.php:280
3850
- msgid "Form Templates"
3851
- msgstr "Plantillas de Formulario"
 
3852
 
3853
- #: ../addons/transfer/myCRED-addon-transfer.php:283
3854
- msgid "Not logged in Template"
3855
- msgstr "Plantilla de no estar ingresado"
 
3856
 
3857
- #: ../addons/transfer/myCRED-addon-transfer.php:285
 
3858
  msgid ""
3859
- "Text to show when users are not logged in. Leave empty to hide. No HTML "
3860
- "elements allowed!"
3861
  msgstr ""
3862
- "Mostrar este texto cuango los usuarios no han iniciado la sesión. ¡No se "
3863
- "permite ningun elemento de HTML!"
3864
 
3865
- #: ../addons/transfer/myCRED-addon-transfer.php:289
3866
- msgid "Balance Template"
3867
- msgstr "Plantilla de Saldo"
3868
 
3869
- #: ../addons/transfer/myCRED-addon-transfer.php:291
 
 
 
 
 
3870
  msgid ""
3871
- "Template to use when displaying the users balance (if included). No HTML "
3872
- "elements allowed!"
3873
  msgstr ""
3874
- "Utilizar esta plantilla cuando mostrando el saldo del usuario (si esta "
3875
- "incluido). ¡No se permite elementos de HTML!"
3876
 
3877
- #: ../addons/transfer/myCRED-addon-transfer.php:295
3878
- msgid "Limit Template"
3879
- msgstr "Limitar Plantilla"
 
3880
 
3881
- #: ../addons/transfer/myCRED-addon-transfer.php:297
3882
- msgid "Template to use when displaying limits (if used). No HTML elements allowed!"
3883
- msgstr ""
3884
- "Utilizar esta plantilla cuando mostrando límites (si se utiliza). ¡No se "
3885
- "permite elementos de HTML!"
3886
 
3887
- #: ../addons/transfer/myCRED-addon-transfer.php:301
3888
- msgid "Button Template"
3889
- msgstr "Plantilla del Botón"
 
3890
 
3891
- #: ../addons/transfer/myCRED-addon-transfer.php:303
3892
- msgid "Send Transfer button template. No HTML elements allowed!"
3893
- msgstr "Plantilla del botón Enviar Transferencia ¡No se permite elementos de HTML!"
 
3894
 
3895
- #: ../addons/transfer/myCRED-addon-transfer.php:306
3896
- msgid "Error Messages"
3897
- msgstr "Mensajes de Error"
3898
 
3899
- #. English needs to be corrected: "Balance too low to send."
3900
- #: ../addons/transfer/myCRED-addon-transfer.php:309
3901
- msgid "Balance to low to send."
3902
- msgstr "Saldo insuficiente - no se puede enviar."
3903
 
3904
- #: ../addons/transfer/myCRED-addon-transfer.php:311
3905
- msgid ""
3906
- "Text to show when a users balance is to low for transfers. Leave empty to "
3907
- "hide. No HTML elements allowed!"
3908
- msgstr ""
3909
- "Mostrar este texto cuando el saldo de un usuario es demasiado bajo para "
3910
- "efectuar transferencias. Deje el campo vacío para ocultarlo. ¡No se permite "
3911
- "ningun elemento de HTML!"
3912
 
3913
- #: ../addons/transfer/myCRED-addon-transfer.php:315
3914
- msgid "Transfer Limit Reached."
3915
- msgstr "Límite de Transferencia Alcanzado."
 
3916
 
3917
- #: ../addons/transfer/myCRED-addon-transfer.php:317
3918
- msgid ""
3919
- "Text to show when a user has reached their transfer limit (if used). Leave "
3920
- "empty to hide. No HTML elements allowed!"
3921
- msgstr ""
3922
- "Mostrar este texto cuando un usuario haya llegado al límite de su "
3923
- "transferencia (si se utiliza). Deje el campo vacío para ocultarlo. ¡No se "
3924
- "permite ningun elemento de HTML!"
3925
 
3926
- #: ../addons/transfer/includes/mycred-transfer-shortcodes.php:130
3927
- msgid "username"
3928
- msgstr "nombre de usuario"
3929
 
3930
- #: ../addons/transfer/includes/mycred-transfer-shortcodes.php:133
3931
- msgid "email"
3932
- msgstr "correo electrónico"
 
3933
 
3934
- #. is this recipients plural or recipient's with an apostrophe missing?
3935
- #: ../addons/transfer/includes/mycred-transfer-shortcodes.php:135
3936
- #, php-format
3937
- msgid "recipients %s"
3938
- msgstr "destinatarios %s"
3939
 
3940
- #: ../addons/transfer/includes/mycred-transfer-shortcodes.php:225
3941
- msgid "To:"
3942
- msgstr "A:"
3943
-
3944
- #: ../addons/transfer/includes/mycred-transfer-shortcodes.php:231
3945
- msgid "Amount:"
3946
- msgstr "Cantidad:"
3947
-
3948
- #: ../addons/transfer/includes/mycred-transfer-widgets.php:20
3949
- msgid "Allow transfers between users."
3950
- msgstr "Permitir transferencias entre usuarios."
3951
-
3952
- #: ../addons/transfer/includes/mycred-transfer-widgets.php:23
3953
  #, php-format
3954
- msgid "(%s) Transfer"
3955
- msgstr "(%s) Transfererir"
 
 
 
 
 
 
3956
 
3957
- #: ../addons/transfer/includes/mycred-transfer-widgets.php:40
3958
- msgid "The myCRED Transfer add-on has not yet been setup!"
3959
- msgstr "¡Esta Extensión de myCRED todavía no ha sido configurado!"
 
3960
 
3961
- #: ../addons/transfer/includes/mycred-transfer-widgets.php:123
3962
- msgid "Show users balance"
3963
- msgstr "Mostrar el saldo de usuarios"
 
 
 
3964
 
3965
- #: ../addons/transfer/includes/mycred-transfer-widgets.php:127
3966
- msgid "Show users limit"
3967
- msgstr "Mostrar los límites de usuarios"
3968
 
3969
- #: ../includes/mycred-about.php:77
3970
  #, php-format
3971
- msgid "Welcome to %s %s"
3972
- msgstr "Bienvenido a %s %s"
3973
-
3974
- #: ../includes/mycred-admin.php:198
3975
- msgid "A log entry is required in order to adjust this users balance"
3976
- msgstr "Se rpecisa una entrada de registro para ajustar el saldo de este usuario"
3977
 
3978
- #: ../includes/mycred-admin.php:200
3979
- msgid "Users balance saved"
3980
- msgstr "Saldo de Usuario(s) Guardado"
 
3981
 
3982
- #: ../includes/mycred-admin.php:208
3983
- msgid "Users excluded"
3984
- msgstr "Usuarios Excluidos"
 
3985
 
3986
- #: ../includes/mycred-admin.php:213
3987
- msgid ""
3988
- "All buyCRED Payment Gateways have been disabled! Please check your exchange "
3989
- "rate settings and update all premium payment gateways!"
3990
- msgstr ""
3991
- "¡Todas las Pasarelas de Pago de buyCRED han sido desactivado! ¡Por favor "
3992
- "verifica la configuración del tipo de cambio y actualiza todas las pasarelas "
3993
- "de pago!"
3994
 
3995
- #: ../includes/mycred-admin.php:242
3996
- msgid "User is excluded"
3997
- msgstr "El Usuario ha sido excluido"
3998
 
3999
- #: ../includes/mycred-admin.php:247
4000
- msgid "Log Entry can not be empty"
4001
- msgstr "Entrada de registro no puede estar vacío"
4002
 
4003
- #: ../includes/mycred-admin.php:251
4004
- msgid "Amount can not be zero"
4005
- msgstr "La Cantidad no Puede ser Cero"
 
4006
 
4007
- #: ../includes/mycred-admin.php:272
4008
- msgid "Failed to update this uses balance."
4009
- msgstr "No se pudo actualizar el saldo de este usuario."
4010
 
4011
- #: ../includes/mycred-admin.php:406
4012
- msgid "Excluded"
4013
- msgstr "Excluido"
4014
 
4015
- #: ../includes/mycred-admin.php:427
4016
- msgid "Adjust"
4017
- msgstr "Modificar"
4018
 
4019
- #: ../includes/mycred-admin.php:469 ../includes/mycred-admin.php:470
4020
- msgid "Edit Balance"
4021
- msgstr "Editar Saldo"
4022
 
4023
- #: ../includes/mycred-admin.php:490
4024
- msgid "Profile"
4025
- msgstr "Perfil"
4026
 
4027
- #: ../includes/mycred-admin.php:497
4028
- msgid "Extended Profile"
4029
- msgstr "Perfil Extendido"
4030
 
4031
- #: ../includes/mycred-admin.php:591
4032
- #, php-format
4033
- msgid "This user is excluded from using %s"
4034
- msgstr "Este usuario esta excluido de poder utilizar %s"
4035
 
4036
- #: ../includes/mycred-admin.php:615
4037
- msgid "Edit User"
4038
- msgstr "Editar Usuario"
 
 
4039
 
4040
- #: ../includes/mycred-admin.php:617
4041
- msgctxt "user"
4042
- msgid "Add New"
4043
- msgstr "Añadir Nuevo"
4044
 
4045
- #: ../includes/mycred-admin.php:619
4046
- msgctxt "user"
4047
- msgid "Add Existing"
4048
- msgstr "Añadir Existente"
4049
 
4050
- #: ../includes/mycred-admin.php:630
4051
- #, php-format
4052
- msgid "Total %s Accumulated"
4053
- msgstr "Total %s Acumulado"
4054
 
4055
- #: ../includes/mycred-admin.php:631
4056
- #, php-format
4057
- msgid "Total %s Spent"
4058
- msgstr "Total %s Gastado"
4059
 
4060
- #: ../includes/mycred-admin.php:642
4061
- msgid "View History"
4062
- msgstr "Ver Historial"
4063
 
4064
- #: ../includes/mycred-admin.php:643
4065
- msgid "Exclude User"
4066
- msgstr "Excluir Usuario"
4067
 
4068
- #: ../includes/mycred-admin.php:647
4069
- msgid "Adjust Balance"
4070
- msgstr "Ajustar Saldo"
4071
 
4072
- #: ../includes/mycred-admin.php:656
4073
  msgid ""
4074
- "Warning! Excluding this user will result in their balance being deleted "
4075
- "along with any entries currently in your log! This can not be undone!"
 
4076
  msgstr ""
4077
- "¡Aviso! ¡Excluir este usuario resultara en la eliminación de su saldo ademas "
4078
- "de cualquier entradas actuales en tu registro! ¡Esto no se puede deshacer!"
 
 
4079
 
4080
- #: ../includes/mycred-admin.php:721
4081
- #, php-format
4082
- msgid "%singular% balance"
4083
- msgstr "%singular% saldo"
 
4084
 
4085
- #: ../includes/mycred-admin.php:765 ../includes/mycred-admin.php:806
4086
- msgid "Update Balance"
4087
- msgstr "Actualizar Saldo"
 
4088
 
4089
- #: ../includes/mycred-admin.php:798
4090
- msgid "ID"
4091
- msgstr "ID"
 
4092
 
4093
- #: ../includes/mycred-admin.php:804
4094
- msgid "A positive or negative value"
4095
- msgstr "Un valor positivo o negativo"
 
4096
 
4097
- #: ../includes/mycred-functions.php:79
4098
- msgid "Point"
4099
- msgstr "Punto"
 
4100
 
4101
- #: ../includes/mycred-functions.php:80
4102
- msgid "Points"
4103
- msgstr "Puntos"
4104
 
4105
- #: ../includes/mycred-functions.php:398
4106
- msgid "Deleted"
4107
- msgstr "Borrado"
 
 
4108
 
4109
- #: ../includes/mycred-functions.php:530
4110
- msgid "Deleted Item"
4111
- msgstr "Artículo Borrado"
4112
 
4113
- #: ../includes/mycred-functions.php:594
4114
- msgid "User Related"
4115
- msgstr "Relacionado al Usuario"
 
4116
 
4117
- #: ../includes/mycred-functions.php:601
4118
- msgid "Post Related"
4119
- msgstr "Relacionado a la Entrada"
4120
 
4121
- #: ../includes/mycred-functions.php:608
4122
- msgid "Comment Related"
4123
- msgstr "Relacionado al Comentario"
 
4124
 
4125
- #: ../includes/mycred-functions.php:615
4126
- msgid "Widget Related"
4127
- msgstr "Relacionado al Widget"
4128
 
4129
- #: ../includes/mycred-functions.php:622
4130
- msgid "Amount Related"
4131
- msgstr "Cantidad Relacionada"
4132
 
4133
- #: ../includes/mycred-functions.php:629
4134
- msgid "Video Related"
4135
- msgstr "Relacionado al Video"
 
4136
 
4137
- #: ../includes/mycred-functions.php:640
4138
- msgid "and"
4139
- msgstr "y"
4140
 
4141
- #: ../includes/mycred-functions.php:642
4142
- msgid "Available Template Tags:"
4143
- msgstr "Etiquetas de Plantilla Disponibles:"
4144
 
4145
- #: ../includes/mycred-functions.php:1694
4146
- msgid "Entire Log"
4147
- msgstr "Todo el Registro"
4148
 
4149
- #: ../includes/mycred-functions.php:1699 ../includes/mycred-functions.php:1700
4150
- msgid "Displayed Rows"
4151
- msgstr "Filas Mostradas"
4152
 
4153
- #: ../includes/mycred-functions.php:1707
4154
- msgid "Search Results"
4155
- msgstr "Resultados de la Búsqueda"
 
4156
 
4157
- #: ../includes/mycred-functions.php:1708
4158
- msgid "My Entire Log"
4159
- msgstr "Mi Registro Entero"
4160
 
4161
- #: ../includes/mycred-functions.php:1875
4162
- msgid "ref empty"
4163
- msgstr "ref vacío"
 
4164
 
4165
- #: ../includes/mycred-functions.php:1883
4166
- msgid "incorrect user id format"
4167
- msgstr "Formato incorrecto para id del usuario"
4168
 
4169
- #: ../includes/mycred-functions.php:1896
4170
- msgid "incorrect unix timestamp (from):"
4171
- msgstr "erroneo marca de tiempo de unix (desde):"
4172
 
4173
- #: ../includes/mycred-functions.php:1905
4174
- msgid "incorrect unix timestamp (to):"
4175
- msgstr "erroneo marca de tiempo de unix (a):"
4176
 
4177
- #: ../includes/mycred-functions.php:2314
4178
- msgid "Website Registration"
4179
- msgstr "Inscripción del Sitio Web"
 
 
4180
 
4181
- #: ../includes/mycred-functions.php:2315
4182
- msgid "Website Visit"
4183
- msgstr "Visita de Sitio Web"
4184
 
4185
- #: ../includes/mycred-functions.php:2316
4186
- msgid "Viewing Content (Member)"
4187
- msgstr "Viendo Contenido (Miembro)"
4188
 
4189
- #: ../includes/mycred-functions.php:2317
4190
- msgid "Viewing Content (Author)"
4191
- msgstr "Viendo Contenido (Autor)"
4192
 
4193
- #: ../includes/mycred-functions.php:2318
4194
- msgid "Logging in"
4195
- msgstr "Accediendo"
4196
 
4197
- #: ../includes/mycred-functions.php:2319
4198
- msgid "Publishing Content"
4199
- msgstr "Publicando Contenido"
4200
 
4201
- #: ../includes/mycred-functions.php:2320 ../modules/mycred-module-hooks.php:1663
4202
- msgid "Approved Comment"
4203
- msgstr "Comentario Aprobado"
 
 
 
 
4204
 
4205
- #: ../includes/mycred-functions.php:2321
4206
- msgid "Unapproved Comment"
4207
- msgstr "Comentario no Aprobado"
 
 
 
4208
 
4209
- #: ../includes/mycred-functions.php:2322
4210
- msgid "SPAM Comment"
4211
- msgstr "Comentario SPAM"
4212
 
4213
- #: ../includes/mycred-functions.php:2323
4214
- msgid "Deleted Comment"
4215
- msgstr "Comentario Borrado"
 
 
 
 
4216
 
4217
- #: ../includes/mycred-functions.php:2324
4218
- msgid "Link Click"
4219
- msgstr "Click al Enlace"
 
 
4220
 
4221
- #: ../includes/mycred-functions.php:2325
4222
- msgid "Watching Video"
4223
- msgstr "Mirando Video"
 
4224
 
4225
- #: ../includes/mycred-functions.php:2326
4226
- msgid "Visitor Referral"
4227
- msgstr "Referencia de Visitante"
 
4228
 
4229
- #: ../includes/mycred-functions.php:2327
4230
- msgid "Signup Referral"
4231
- msgstr "Referencia de Inscripción "
 
4232
 
4233
- #: ../includes/mycred-functions.php:2331
4234
- msgid "New Profile Update"
4235
- msgstr "Nuevo Perfil Actualizado"
 
 
 
4236
 
4237
- #: ../includes/mycred-functions.php:2332
4238
- msgid "Profile Update Removal"
4239
- msgstr ""
4240
 
4241
- #: ../includes/mycred-functions.php:2333
4242
- msgid "Avatar Upload"
4243
- msgstr "Subir Avatar"
 
 
4244
 
4245
- #: ../includes/mycred-functions.php:2334
4246
- msgid "New Friendship"
4247
- msgstr "Nueva Amistad"
 
4248
 
4249
- #: ../includes/mycred-functions.php:2335
4250
- msgid "Ended Friendship"
4251
- msgstr "Amistad Terminada"
4252
 
4253
- #: ../includes/mycred-functions.php:2336
4254
- msgid "New Profile Comment"
4255
- msgstr "Nuevo Comentario de Perfil"
4256
 
4257
- #: ../includes/mycred-functions.php:2337
4258
- msgid "Profile Comment Deletion"
4259
- msgstr "Borrar Comentario del Perfil"
4260
 
4261
- #: ../includes/mycred-functions.php:2338
4262
- msgid "New Message"
4263
- msgstr "Nuevo Mensaje"
 
 
 
 
 
4264
 
4265
- #: ../includes/mycred-functions.php:2339
4266
- msgid "Sending Gift"
4267
- msgstr "Mandando Regalo"
4268
 
4269
- #: ../includes/mycred-functions.php:2340
4270
- msgid "New Group"
4271
- msgstr "Nuevo Grupo"
 
 
 
 
 
 
4272
 
4273
- #: ../includes/mycred-functions.php:2341
4274
- msgid "Deleted Group"
4275
- msgstr "Grupo Borrado"
4276
 
4277
- #: ../includes/mycred-functions.php:2342
4278
- msgid "New Group Forum Topic"
4279
- msgstr "Nuevo Tema del Fórum de Grupo"
 
 
 
 
4280
 
4281
- #: ../includes/mycred-functions.php:2343
4282
- msgid "Edit Group Forum Topic"
4283
- msgstr "Editar el Tema del Fórum de Grupo"
4284
 
4285
- #: ../includes/mycred-functions.php:2344
4286
- msgid "New Group Forum Post"
4287
- msgstr "Nueva Entrada del Fórum de Grupo"
 
 
 
 
 
4288
 
4289
- #: ../includes/mycred-functions.php:2345
4290
- msgid "Edit Group Forum Post"
4291
- msgstr "Editar Entrada del Fórum de Grupo"
 
 
 
 
 
 
 
4292
 
4293
- #: ../includes/mycred-functions.php:2346
4294
- msgid "Joining Group"
4295
- msgstr "Agregar al Grupo"
 
4296
 
4297
- #: ../includes/mycred-functions.php:2347
4298
- msgid "Leaving Group"
4299
- msgstr "Dejando el Grupo"
4300
 
4301
- #: ../includes/mycred-functions.php:2348
4302
- msgid "New Group Avatar"
4303
- msgstr "Nuevo Avatar del Grupo"
 
 
 
 
4304
 
4305
- #: ../includes/mycred-functions.php:2349
4306
- msgid "New Group Comment"
4307
- msgstr "Nuevo Comentario al Grupo\n"
4308
 
4309
- #: ../includes/mycred-functions.php:2353 ../plugins/mycred-hook-buddypress-media.
4310
- #: php:205
4311
- msgid "Photo Upload"
4312
- msgstr "Subir Foto"
 
4313
 
4314
- #: ../includes/mycred-functions.php:2354 ../plugins/mycred-hook-buddypress-media.
4315
- #: php:219
4316
- msgid "Video Upload"
4317
- msgstr "Subir Video"
 
4318
 
4319
- #: ../includes/mycred-functions.php:2355 ../plugins/mycred-hook-buddypress-media.
4320
- #: php:233
4321
- msgid "Music Upload"
4322
- msgstr "Subir Música"
 
4323
 
4324
- #: ../includes/mycred-functions.php:2359
4325
- msgid "New Link"
4326
- msgstr "Nuevo Enlace"
 
4327
 
4328
- #: ../includes/mycred-functions.php:2360
4329
- msgid "Link Voting"
4330
- msgstr "Votar sobre Enlace"
 
4331
 
4332
- #: ../includes/mycred-functions.php:2361
4333
- msgid "Link Update"
4334
- msgstr "Enlace Actualizado"
 
 
4335
 
4336
- #: ../includes/mycred-functions.php:2365
4337
- msgid "New Forum (bbPress)"
4338
- msgstr "Nuevo Fórum (bbPress)"
 
4339
 
4340
- #: ../includes/mycred-functions.php:2366
4341
- msgid "New Forum Topic (bbPress)"
4342
- msgstr "Nuevo Tema de Fórum (bbPress)"
 
4343
 
4344
- #: ../includes/mycred-functions.php:2367
4345
- msgid "Favorited Topic (bbPress)"
4346
- msgstr "Tema Favorito (bbPress)"
 
4347
 
4348
- #: ../includes/mycred-functions.php:2368
4349
- msgid "New Topic Reply (bbPress)"
4350
- msgstr "Nueva Respuesta a Tema (bbPress)"
 
4351
 
4352
- #: ../includes/mycred-functions.php:2372
4353
- msgid "Form Submission (Contact Form 7)"
4354
- msgstr "Sumisión de Formulario (Contact Form 7)"
 
4355
 
4356
- #: ../includes/mycred-functions.php:2375
4357
- msgid "Form Submission (Gravity Form)"
4358
- msgstr "Sumisión de Formulario (Gravity Form)"
4359
 
4360
- #: ../includes/mycred-functions.php:2378
4361
- msgid "New Forum Topic (SimplePress)"
4362
- msgstr "Nuevo Tema de Fórum (SimplePress)"
4363
 
4364
- #: ../includes/mycred-functions.php:2379
4365
- msgid "New Forum Post (SimplePress)"
4366
- msgstr "Nueva Entrada de Fórum (SimplePress)"
 
4367
 
4368
- #: ../includes/mycred-functions.php:2388
4369
- msgid "Affiliate Signup (AffiliateWP)"
4370
- msgstr ""
 
 
4371
 
4372
- #: ../includes/mycred-functions.php:2389
4373
- msgid "Referred Visit (AffiliateWP)"
4374
- msgstr ""
 
 
4375
 
4376
- #: ../includes/mycred-functions.php:2390
4377
- msgid "Affiliate Referral (AffiliateWP)"
 
 
4378
  msgstr ""
 
 
4379
 
4380
- #: ../includes/mycred-functions.php:2391
4381
- msgid "Referral Refund (AffiliateWP)"
4382
- msgstr ""
 
 
 
4383
 
4384
- #: ../includes/mycred-functions.php:2395 ../plugins/mycred-hook-wp-postratings.
4385
- #: php:150
4386
- msgid "Adding a Rating"
 
4387
  msgstr ""
 
 
 
4388
 
4389
- #: ../includes/mycred-functions.php:2396 ../plugins/mycred-hook-wp-postratings.
4390
- #: php:169
4391
- msgid "Receiving a Rating"
4392
- msgstr ""
4393
 
4394
- #: ../includes/mycred-functions.php:2400
4395
- msgid "Poll Voting"
4396
- msgstr "Votación"
 
4397
 
4398
- #: ../includes/mycred-functions.php:2403
4399
- msgid "Sending an Invite"
4400
- msgstr "Mandando una Invitación"
 
4401
 
4402
- #: ../includes/mycred-functions.php:2404
4403
- msgid "Accepting an Invite"
4404
- msgstr "Aceptando una Invitación"
 
 
 
 
 
4405
 
4406
- #: ../includes/mycred-functions.php:2410
4407
- msgid "Banking Payout"
4408
- msgstr "Desembolso Bancario"
 
4409
 
4410
- #: ../includes/mycred-functions.php:2413
4411
- msgid "buyCRED Purchase (PayPal Standard)"
4412
- msgstr "Compra buyCRED (PayPal Standard)"
 
4413
 
4414
- #: ../includes/mycred-functions.php:2414
4415
- msgid "buyCRED Purchase (Skrill)"
4416
- msgstr "Compra buyCRED (Skrill)"
 
4417
 
4418
- #: ../includes/mycred-functions.php:2415
4419
- msgid "buyCRED Purchase (Zombaio)"
4420
- msgstr "Compra buyCRED (Zombaio)"
 
 
 
4421
 
4422
- #: ../includes/mycred-functions.php:2416
4423
- msgid "buyCRED Purchase (NETBilling)"
4424
- msgstr "Compra buyCRED (NETBilling)"
 
4425
 
4426
- #: ../includes/mycred-functions.php:2417
4427
- msgid "buyCRED Purchase (BitPay)"
4428
- msgstr "Compra buyCRED (BitPay)"
 
 
 
4429
 
4430
- #: ../includes/mycred-functions.php:2422
4431
- msgid "Coupon Purchase"
4432
- msgstr "Compra Cupón"
 
4433
 
4434
- #: ../includes/mycred-functions.php:2426
4435
- msgid "Store Purchase (WooCommerce)"
4436
- msgstr "Compra de Tienda (WooCommerce)"
4437
 
4438
- #: ../includes/mycred-functions.php:2427
4439
- msgid "Store Reward (WooCommerce)"
4440
- msgstr ""
4441
 
4442
- #: ../includes/mycred-functions.php:2428
4443
- msgid "Product Review (WooCommerce)"
4444
- msgstr ""
4445
 
4446
- #: ../includes/mycred-functions.php:2431
4447
- msgid "Store Purchase (MarketPress)"
4448
- msgstr "Compra de Tienda (MarketPress)"
4449
 
4450
- #: ../includes/mycred-functions.php:2432
4451
- msgid "Store Reward (MarketPress)"
 
 
4452
  msgstr ""
 
 
 
4453
 
4454
- #: ../includes/mycred-functions.php:2435
4455
- msgid "Store Purchase (WP E-Commerce)"
4456
- msgstr "Compra de Tienda (WP E-Commerce)"
4457
-
4458
- #: ../includes/mycred-functions.php:2441
4459
- msgid "Event Payment (Event Espresso)"
4460
- msgstr "Pago por Evento (Event Espresso)"
4461
-
4462
- #: ../includes/mycred-functions.php:2442
4463
- msgid "Event Sale (Event Espresso)"
4464
- msgstr "Venta de Evento (Event Espresso)"
4465
 
4466
- #: ../includes/mycred-functions.php:2446
4467
- msgid "Event Payment (Events Manager)"
4468
- msgstr "Pago por Evento (Events Manager)"
 
4469
 
4470
- #: ../includes/mycred-functions.php:2447
4471
- msgid "Event Sale (Events Manager)"
4472
- msgstr "Venta de Evento (Events Manager)"
 
 
4473
 
4474
- #: ../includes/mycred-functions.php:2451
4475
- msgid "Content Purchase / Sale"
4476
- msgstr "Compra / Venta de Contenido"
4477
 
4478
- #: ../includes/mycred-functions.php:2458
4479
- msgid "Manual Adjustment by Admin"
4480
- msgstr "Ajuste Manual por Admin"
4481
 
4482
- #: ../includes/mycred-functions.php:2528 ../includes/mycred-shortcodes.php:925
4483
- msgid "Point types not found."
4484
- msgstr "Clase de puntos no encontrado."
4485
 
4486
- #: ../includes/mycred-functions.php:2540 ../includes/mycred-functions.php:2560 ..
4487
- #: includes/mycred-shortcodes.php:931 ../includes/mycred-shortcodes.php:939
4488
- #, php-format
4489
- msgid "You are excluded from using %s."
4490
- msgstr "Esta exluido del uso de %s."
4491
 
4492
- #: ../includes/mycred-functions.php:2550 ../includes/mycred-shortcodes.php:935
4493
- msgid "Your balance is too low to use this feature."
4494
- msgstr "Tu saldo esta demasiado bajo para usar esta característica."
 
4495
 
4496
- #: ../includes/mycred-functions.php:2573
4497
- #, php-format
4498
- msgid "You must exchange at least %s!"
4499
- msgstr "Debes intercambiar por lo menos %s!"
4500
 
4501
- #: ../includes/mycred-functions.php:2595
4502
- #, php-format
4503
- msgid "Exchange from %s"
4504
- msgstr "Intercambiar desde %s"
4505
 
4506
- #: ../includes/mycred-functions.php:2607
4507
- #, php-format
4508
- msgid "Exchange to %s"
4509
- msgstr "Intercambiar a %s"
4510
 
4511
- #: ../includes/mycred-functions.php:2615
4512
  #, php-format
4513
- msgid "You have successfully exchanged %s into %s."
4514
- msgstr "Has intercambiado %s a %s con éxito."
4515
 
4516
- #: ../includes/mycred-functions.php:2647
4517
- msgid "per day"
4518
- msgstr ""
4519
 
4520
- #: ../includes/mycred-functions.php:2649
4521
- msgid "per week"
 
 
4522
  msgstr ""
 
 
4523
 
4524
- #: ../includes/mycred-functions.php:2651
4525
- msgid "per month"
4526
- msgstr ""
4527
 
4528
- #: ../includes/mycred-functions.php:2653
4529
- msgid "in total"
 
 
 
4530
  msgstr ""
 
 
4531
 
4532
- #: ../includes/mycred-functions.php:2655 ../includes/mycred-functions.php:2659
4533
- #, php-format
4534
- msgid "Maximum once"
4535
- msgid_plural "Maximum %d times"
4536
- msgstr[0] ""
4537
- msgstr[1] ""
4538
 
4539
- #: ../includes/mycred-importer.php:11
4540
- #, php-format
4541
- msgid "%s Log Import"
4542
- msgstr "Registro de Importe %s"
4543
 
4544
- #: ../includes/mycred-importer.php:12
4545
- msgid "Import log entries via a CSV file."
4546
- msgstr "Importa las entradas de registro atraves de un fichero CSV."
4547
 
4548
- #: ../includes/mycred-importer.php:43
4549
- #, php-format
4550
- msgid "%s Balance Import"
4551
- msgstr "%s balance de Importar"
 
 
 
4552
 
4553
- #: ../includes/mycred-importer.php:44
4554
- msgid "Import balances."
4555
- msgstr "Saldos Importar."
4556
 
4557
- #: ../includes/mycred-importer.php:75
4558
- #, php-format
4559
- msgid "%s CubePoints Import"
4560
- msgstr "Importar CubePoints %s"
4561
 
4562
- #: ../includes/mycred-importer.php:76 ../includes/importers/mycred-cubepoints.php:
4563
- #: 344
4564
- msgid "Import CubePoints log entries and / or balances."
4565
- msgstr "Importar las entradas de registro de CubePoints y/o saldos."
4566
 
4567
- #: ../includes/mycred-importer.php:92
4568
- msgid "No CubePoints log exists."
4569
- msgstr "No existe ningun registro de CubePoints."
 
4570
 
4571
- #: ../includes/mycred-install.php:39
4572
- msgid "myCRED requires WordPress 3.8 or higher. Version detected:"
4573
- msgstr "myCRED requiere WordPress 3.8 o más alto. La versión detectada:"
4574
 
4575
- #: ../includes/mycred-install.php:44
4576
- msgid "myCRED requires PHP 5.2.4 or higher. Version detected: "
4577
- msgstr "myCRED requiere PHP 5.2.4 o más alto. La versión detectada:"
 
 
4578
 
4579
- #: ../includes/mycred-install.php:49
4580
- msgid "myCRED requires SQL 5.0 or higher. Version detected: "
4581
- msgstr "myCRED requiere SWL 5.0 o más alto. La versión detectada:"
4582
 
4583
- #: ../includes/mycred-install.php:54
4584
- msgid ""
4585
- "The mcrypt PHP library must be enabled in order to use this plugin! Please "
4586
- "check your PHP configuration or contact your host and ask them to enable it "
4587
- "for you!"
4588
- msgstr ""
4589
- "La biblioteca PHP mcrypt debe ser habilitado para poder usar este plugin! "
4590
- "Por favor verifica tu configuración de PHP o contacta a tu web host y "
4591
- "pideles que lo habiliten para ti!"
4592
 
4593
- #: ../includes/mycred-install.php:59
4594
- msgid ""
4595
- "Sorry but your WordPress installation does not reach the minimum "
4596
- "requirements for running myCRED. The following errors were given:"
4597
- msgstr ""
4598
- "Lo sentimos, pero tu instalación de WordPress no alcanza a los requisitos "
4599
- "mínimos de mycred. Se produce los siguientes errores:"
4600
 
4601
- #: ../includes/mycred-install.php:268
4602
- msgid "myCRED needs your attention."
4603
- msgstr "myCRED precisa tu atención."
4604
 
4605
- #: ../includes/mycred-install.php:268
4606
- msgid "Run Setup"
4607
- msgstr "Ejecutar Configuración"
4608
 
4609
- #: ../includes/mycred-install.php:280 ../includes/mycred-install.php:281
4610
- msgid "myCRED Setup"
4611
- msgstr "Instalación de myCRED"
4612
 
4613
- #: ../includes/mycred-install.php:410
4614
- #, php-format
4615
- msgid "%s Setup"
4616
- msgstr "Configurar %s"
4617
 
4618
- #: ../includes/mycred-install.php:412
4619
- msgid "Step"
4620
- msgstr "Paso"
4621
 
4622
- #: ../includes/mycred-install.php:436
 
 
 
 
 
4623
  msgid ""
4624
- "Click \"Begin Setup\" to install myCRED. You will be able to select your "
4625
- "points format, layout and security settings."
 
4626
  msgstr ""
4627
- "Haga clic en \"Empezar la Instalación\" para instalar myCRED. Podras ajustar "
4628
- "el formato de puntos, disposiciones y configuraciones de seguridad."
4629
-
4630
- #: ../includes/mycred-install.php:437
4631
- msgid "Begin Setup"
4632
- msgstr "Empezar la Instalación"
4633
-
4634
- #: ../includes/mycred-install.php:492
4635
- msgid "Select the format you want to use for your points."
4636
- msgstr "Elige el formato que quieres usar para tus puntos."
4637
-
4638
- #: ../includes/mycred-install.php:493
4639
- msgid "Format"
4640
- msgstr "Formato"
4641
-
4642
- #: ../includes/mycred-install.php:496
4643
- msgid "Separators"
4644
- msgstr "Separadores"
4645
 
4646
- #: ../includes/mycred-install.php:506 ../modules/mycred-module-settings.php:531
4647
- msgid "Decimals"
4648
- msgstr "Decimales"
4649
 
4650
- #: ../includes/mycred-install.php:508
4651
- msgid "Use zero for no decimals or maximum 20."
4652
  msgstr ""
 
 
4653
 
4654
- #: ../includes/mycred-install.php:511 ../modules/mycred-module-settings.php:537
4655
- msgid "Presentation"
4656
- msgstr "Presentación"
 
4657
 
4658
- #: ../includes/mycred-install.php:514 ../modules/mycred-module-settings.php:518
4659
- msgid "Name (Singular)"
4660
- msgstr "Nombre (singular)"
4661
 
4662
- #: ../includes/mycred-install.php:518 ../modules/mycred-module-settings.php:523
4663
- msgid "Name (Plural)"
4664
- msgstr "Nombre (plural)"
 
4665
 
4666
- #: ../includes/mycred-install.php:524 ../modules/mycred-module-settings.php:540
4667
- msgid "Prefix"
4668
- msgstr "Prefijo"
 
4669
 
4670
- #: ../includes/mycred-install.php:532 ../modules/mycred-module-settings.php:548
4671
- msgid "Suffix"
4672
- msgstr "Sufijo"
4673
 
4674
- #: ../includes/mycred-install.php:536
4675
- msgid "Cancel Setup"
4676
- msgstr "Cancelar la Instalación"
 
 
 
 
 
4677
 
4678
- #: ../includes/mycred-install.php:536 ../includes/mycred-install.php:606
4679
- msgid "Next"
4680
- msgstr "Siguiente"
4681
 
4682
- #: ../includes/mycred-install.php:568 ../modules/mycred-module-settings.php:556
4683
- msgid "Security"
4684
- msgstr "Seguridad"
 
4685
 
4686
- #: ../includes/mycred-install.php:571
4687
- msgid "Edit Settings Capability"
4688
- msgstr "Editar la capacidad de las configuraciones"
 
4689
 
4690
- #. is this user's or users (plural)?
4691
- #: ../includes/mycred-install.php:575
4692
- msgid "Edit Users %plural% Capability"
4693
- msgstr "Editar la Capacidad de %plural% del Usuario"
4694
 
4695
- #: ../includes/mycred-install.php:579 ../modules/mycred-module-settings.php:569
4696
- msgid "Maximum %plural% payouts"
4697
- msgstr "Desembolso %plural% Máximo"
 
 
 
4698
 
4699
- #: ../includes/mycred-install.php:581 ../modules/mycred-module-settings.php:571
4700
  msgid ""
4701
- "As an added security, you can set the maximum amount a user can gain or "
4702
- "loose in a single instance. If used, make sure this is the maximum amount a "
4703
- "user would be able to transfer, buy, or spend in your store. Use zero to "
4704
- "disable."
4705
  msgstr ""
4706
- "Como mayor seguridad, puedes configurar la cantidad máxima que un usuario "
4707
- "puede ganar o perder en una sola instancia. Si se utiliza esto, asegurate "
4708
- "que es tambien la máxima cantidad que el usuario puede transferir, comprar, "
4709
- "o gastar en tu tienda. Ponga zero para desactivar."
4710
 
4711
- #: ../includes/mycred-install.php:584 ../modules/mycred-module-settings.php:574
4712
- msgid "Excludes"
4713
- msgstr "Excluye"
 
 
 
 
 
 
 
4714
 
4715
- #: ../includes/mycred-install.php:588 ../modules/mycred-module-settings.php:578
4716
- msgid "Exclude those who can \"Edit Settings\"."
4717
- msgstr "Excluir a los que puedan \"Editar las Configuraciones\"."
4718
 
4719
- #: ../includes/mycred-install.php:592 ../modules/mycred-module-settings.php:582
4720
- msgid "Exclude those who can \"Edit Users %plural%\"."
4721
- msgstr "Excluir a los que pueden \"Editar los %plural% de Usuarios\"."
 
 
 
 
4722
 
4723
- #: ../includes/mycred-install.php:595 ../modules/mycred-module-settings.php:586
4724
- msgid "Exclude the following user IDs:"
4725
- msgstr "Excluir a los siguientes IDs de usuarios"
4726
 
4727
- #: ../includes/mycred-install.php:599 ../modules/mycred-module-settings.php:591
4728
- msgid "User Deletions"
4729
- msgstr "Eliminación de Usuarios"
4730
-
4731
- #: ../includes/mycred-install.php:603 ../modules/mycred-module-settings.php:594
4732
- msgid "Delete log entries when user is deleted."
4733
- msgstr "Elimina las entradas de registro cuando se elimina el usuario."
4734
-
4735
- #: ../includes/mycred-install.php:624
4736
- msgid "Ready"
4737
- msgstr "Listo"
4738
 
4739
- #: ../includes/mycred-install.php:625
4740
- msgid "Almost done! Click the button below to finish this setup."
4741
- msgstr ""
4742
- "¡Casi terminado! Haga clic al botón de abajo para finalizar esta "
4743
- "configuración."
4744
 
4745
- #: ../includes/mycred-install.php:626
4746
- msgid "Install & Run"
4747
- msgstr "Instalar e ejecutar"
4748
 
4749
- #: ../includes/mycred-log.php:485
4750
- #, php-format
4751
- msgid "Showing %d %s"
4752
- msgstr "Mostrando %d %s"
4753
 
4754
- #. need more context: entrada or inscripción
4755
- #: ../includes/mycred-log.php:485
4756
- msgid "entry"
4757
- msgstr "entrada"
4758
 
4759
- #: ../includes/mycred-log.php:500
4760
- msgid "Go to the first page"
4761
- msgstr "Ir a la primera página"
4762
 
4763
- #: ../includes/mycred-log.php:507
4764
- msgid "Go to the previous page"
4765
- msgstr "Ir a la página anterior"
 
 
4766
 
4767
- #: ../includes/mycred-log.php:517
4768
- msgid "Current page"
4769
- msgstr "Página corriente"
4770
 
4771
- #: ../includes/mycred-log.php:523
4772
  #, php-format
4773
- msgctxt "mycred"
4774
- msgid "%1$s of %2$s"
4775
- msgstr "%1$s de %2$s"
 
 
 
 
 
 
 
 
4776
 
4777
- #: ../includes/mycred-log.php:527
4778
- msgid "Go to the next page"
4779
- msgstr "Ir a la página siguiente"
 
4780
 
4781
- #: ../includes/mycred-log.php:534
4782
- msgid "Go to the last page"
4783
- msgstr "Ir a la última página"
4784
 
4785
- #: ../includes/mycred-log.php:611
4786
- msgid "Show all references"
4787
- msgstr "Muestra todas las referencias"
4788
 
4789
- #: ../includes/mycred-log.php:628
4790
- msgid "User ID, Username, Email or Nicename"
4791
  msgstr ""
 
 
4792
 
4793
- #: ../includes/mycred-log.php:636
4794
- msgid "Show in order"
4795
- msgstr "Mostrar en Orden"
4796
 
4797
- #: ../includes/mycred-log.php:637 ../includes/mycred-widgets.php:426
4798
- msgid "Ascending"
4799
- msgstr "Ascendente"
4800
 
4801
- #: ../includes/mycred-log.php:637 ../includes/mycred-widgets.php:427
4802
- msgid "Descending"
4803
- msgstr "Descendente"
4804
 
4805
- #: ../includes/mycred-log.php:658
4806
- msgid "Filter"
4807
- msgstr "Filtro"
4808
 
4809
- #: ../includes/mycred-log.php:718
4810
  msgid ""
4811
- "Log entries are exported to a CSV file and depending on the number of "
4812
- "entries selected, the process may take a few seconds."
4813
  msgstr ""
4814
- "Se exporta las entradas de registro a un fichero CSV y dependiendo del "
4815
- "número de entradas seleccionadas, el proceso puede tardar unos segundos."
4816
 
4817
- #: ../includes/mycred-log.php:725
4818
- msgid "No export options available."
4819
- msgstr "No hay opciones para exportar."
4820
 
4821
- #. need more context: entrada or inscripción
4822
- #: ../includes/mycred-log.php:758
4823
- msgid "Entry"
4824
- msgstr "Entrada"
4825
 
4826
- #: ../includes/mycred-log.php:874 ../modules/mycred-module-log.php:525
4827
- msgid "User Missing"
4828
- msgstr "Usuario Ausente"
4829
 
4830
- #: ../includes/mycred-log.php:958
4831
- msgid "No log entries found"
4832
- msgstr "Ninguna entrada de registro encontrada"
4833
 
4834
- #: ../includes/mycred-log.php:976 ../includes/mycred-log.php:978
4835
- msgid "Search Log"
4836
- msgstr "Busqueda de Registro"
4837
 
4838
- #. buscar las entradas en el registro
4839
- #: ../includes/mycred-log.php:977
4840
- msgid "search log entries"
4841
- msgstr "Búsqueda de las entradas de registro"
4842
 
4843
- #: ../includes/mycred-log.php:992 ../modules/mycred-module-buddypress.php:236 ..
4844
- #: modules/mycred-module-buddypress.php:249
4845
- msgid "All"
4846
- msgstr "Todo"
4847
 
4848
- #: ../includes/mycred-log.php:994 ../modules/mycred-module-buddypress.php:238
4849
- msgid "Yesterday"
4850
- msgstr "Ayer"
4851
 
4852
- #: ../includes/mycred-network.php:59 ../includes/mycred-network.php:60
4853
- msgid "Network Settings"
4854
- msgstr "Configuración de la Red"
4855
 
4856
- #: ../includes/mycred-network.php:134
4857
- #, php-format
4858
- msgid "%s Network"
4859
- msgstr "Red de %s"
4860
 
4861
- #: ../includes/mycred-network.php:140
4862
- #, php-format
4863
- msgid "Note! %s has not yet been setup."
4864
- msgstr "¡Aviso! %s no ha sido configurado."
 
4865
 
4866
- #: ../includes/mycred-network.php:144
4867
- msgid "Network Settings Updated"
4868
- msgstr "Configuraciones de la Red Actualizadas"
4869
 
4870
- #: ../includes/mycred-network.php:146
4871
- #, php-format
4872
- msgid "Configure network settings for %s."
4873
- msgstr "Configure los parámetros de red para %s."
4874
 
4875
- #: ../includes/mycred-network.php:153
4876
- msgid "Master Template"
4877
- msgstr "Plantilla Principal"
4878
 
4879
- #: ../includes/mycred-network.php:164
4880
- #, php-format
 
 
 
 
 
 
 
4881
  msgid ""
4882
- "If enabled, %s will use your main site's settings for all other sites in "
4883
- "your network."
4884
  msgstr ""
4885
- "Si activado, %s utilizara la configuración de tu sitio principal para todas "
4886
- "los sitios en tu red."
4887
 
4888
- #: ../includes/mycred-network.php:167
4889
- msgid "Central Logging"
4890
- msgstr "Central de Registro"
4891
 
4892
- #: ../includes/mycred-network.php:178
4893
- #, php-format
4894
- msgid "If enabled, %s will log all site actions in your main site's log."
 
4895
  msgstr ""
4896
- "Si está activado, %s registrará todas las acciones en el registro de tu "
4897
- "sitio principal."
4898
 
4899
- #: ../includes/mycred-network.php:181
4900
- msgid "Site Block"
4901
- msgstr "Bloqueo de Sitio"
4902
 
4903
- #: ../includes/mycred-network.php:185
4904
- #, php-format
4905
- msgid "Comma separated list of blog ids where %s is to be disabled."
4906
- msgstr "Lista separada por comas de blog IDs donde %s se va a inhabilitar."
4907
-
4908
- #: ../includes/mycred-network.php:194
4909
- msgid "Save Network Settings"
4910
- msgstr "Guardar las Configuraciones de la Eed"
4911
 
4912
- #: ../includes/mycred-overview.php:25
4913
- #, php-format
4914
- msgid "%s Overview"
4915
- msgstr "Descripción de %s"
4916
 
4917
- #. also, "Otorgado"
4918
- #: ../includes/mycred-overview.php:81
4919
- msgid "Awarded"
4920
- msgstr "Concedido"
4921
 
4922
- #: ../includes/mycred-overview.php:84
4923
- msgid "Deducted"
4924
- msgstr "Deducido"
4925
 
4926
- #: ../includes/mycred-overview.php:208
4927
- msgid "Manual"
4928
- msgstr "Manual"
 
4929
 
4930
- #: ../includes/mycred-remote.php:523
4931
- msgid "This feature requires WordPress Permalinks to be setup and enabled!"
 
 
4932
  msgstr ""
4933
- "¡Esta característica técnica requiere que los Permalinks de Wordpress esten "
4934
- "activados y configurado!"
 
4935
 
4936
- #: ../includes/mycred-remote.php:526
4937
- msgid "Click Update Settings to load the Remote API settings."
 
 
 
 
 
 
4938
  msgstr ""
4939
- "Haga clic sobre Actualizar Configuraciones para cargar la configuración de "
4940
- "API remoto."
 
4941
 
4942
- #: ../includes/mycred-remote.php:528
4943
- msgid "Allow Remote Access"
4944
- msgstr "Permita Acceso Remoto"
 
4945
 
4946
- #: ../includes/mycred-remote.php:549
4947
- msgid "Remote Access"
4948
- msgstr "Acceso Remoto"
4949
 
4950
- #: ../includes/mycred-remote.php:554
4951
- msgid "Key"
4952
- msgstr "Clave"
4953
 
4954
- #: ../includes/mycred-remote.php:555
4955
- msgid "16, 24 or 32 characters"
4956
- msgstr ""
4957
 
4958
- #: ../includes/mycred-remote.php:556
4959
- msgid "Required for this feature to work!<br />Minimum 12 characters."
4960
- msgstr ""
4961
- "¡Precisado para que esta característica técnica funcione!<br /> Minimo 12 "
4962
- "símbolos."
4963
 
4964
- #: ../includes/mycred-remote.php:559
4965
- msgid "Key Length"
4966
- msgstr "Longitud de la Clave"
4967
 
4968
- #: ../includes/mycred-remote.php:564
4969
- msgid "Generate New Key"
4970
- msgstr "Generar nueva clave"
4971
 
4972
- #: ../includes/mycred-remote.php:566
4973
- msgid "Warning!"
4974
- msgstr "¡Aviso!"
 
 
4975
 
4976
- #: ../includes/mycred-remote.php:566
4977
- msgid ""
4978
- "Keep this key safe! Those you share this key with will be able to remotely "
4979
- "deduct / add / transfer %plural%!"
4980
- msgstr ""
4981
- "¡Mantenga la seguridad de esta clave! Aquellos con quien compartes esta "
4982
- "clave podran restar / añadir / transferir %plural% de forma remota."
4983
 
4984
- #: ../includes/mycred-remote.php:568
4985
- msgid "Incoming URI"
4986
- msgstr "URI Entrante"
4987
 
4988
- #: ../includes/mycred-remote.php:572
4989
- msgid ""
4990
- "The incoming call address. Remote calls made to any other URL will be "
4991
- "ignored."
4992
- msgstr ""
4993
- "La dirección de la llamada entrante. Se ignorará las llamadas remotas a "
4994
- "cualquier otro URL."
4995
 
4996
- #: ../includes/mycred-remote.php:575
4997
- msgid "Debug Mode"
4998
- msgstr "Modo de Depuración"
4999
 
5000
- #: ../includes/mycred-remote.php:578
5001
- msgid ""
5002
- "Remember to disable when not used to prevent mischievous calls from learning "
5003
- "about your setup!"
5004
- msgstr ""
5005
- "Recuerda a desactivarlo cuando no está en uso para prevenir que llamadas "
5006
- "maliciosas conozcan detalles de tu configuración!"
5007
 
5008
- #: ../includes/mycred-shortcodes.php:175
5009
- msgid "Leaderboard is empty."
5010
- msgstr "La Tabla de Clasificación esta vacía"
 
5011
 
5012
- #: ../includes/mycred-shortcodes.php:525
5013
- msgid "Anchor missing URL!"
5014
- msgstr "¡La Ancla falta el URL!"
 
 
 
5015
 
5016
- #: ../includes/mycred-shortcodes.php:637
5017
- msgid "Sent"
5018
- msgstr "Enviado"
5019
 
5020
- #: ../includes/mycred-shortcodes.php:638
5021
- msgid "Error - Try Again"
5022
- msgstr "Error - Inténtelo de nuevo."
5023
 
5024
- #: ../includes/mycred-shortcodes.php:764
5025
- msgid "A video ID is required for this shortcode"
5026
- msgstr "Este código corto (shortcode) precisa un ID del video."
5027
 
5028
- #: ../includes/mycred-shortcodes.php:957
5029
- #, php-format
5030
- msgid "Convert <span>%s</span> to <span>%s</span>"
5031
- msgstr "Convertir <span>%s</span> a <span>%s</span>"
5032
 
5033
- #: ../includes/mycred-shortcodes.php:966
5034
- #, php-format
5035
- msgid "Your current %s balance"
5036
- msgstr "Tu Saldo Actual %s"
5037
 
5038
- #: ../includes/mycred-shortcodes.php:974
5039
- #, php-format
5040
- msgid "Minimum %s"
5041
- msgstr "Minimo %s"
 
 
 
5042
 
5043
- #: ../includes/mycred-shortcodes.php:978
5044
  #, php-format
5045
- msgid "1 %s = <span class=\"rate\">%s</span> %s"
5046
- msgstr "1 %s = <span class=\"rate\">%s</span> %s"
5047
 
5048
- #: ../includes/mycred-shortcodes.php:984
5049
- msgid "Exchange"
5050
- msgstr "Intercambio"
 
 
 
 
5051
 
5052
- #: ../includes/mycred-shortcodes.php:1049
5053
- msgid "No instances found for this point type"
5054
- msgstr ""
5055
 
5056
- #: ../includes/mycred-shortcodes.php:1053
5057
- msgid "Invalid point type"
5058
- msgstr ""
5059
 
5060
- #: ../includes/mycred-shortcodes.php:1114
5061
- msgid "Instance"
5062
- msgstr ""
 
5063
 
5064
- #: ../includes/mycred-shortcodes.php:1116 ../modules/mycred-module-hooks.php:672 .
5065
- #: ./modules/mycred-module-hooks.php:679 ../modules/mycred-module-hooks.php:703 ..
5066
- #: modules/mycred-module-hooks.php:710 ../modules/mycred-module-hooks.php:780 ..
5067
- #: modules/mycred-module-hooks.php:787 ../modules/mycred-module-hooks.php:1011 ..
5068
- #: modules/mycred-module-hooks.php:1153 ../modules/mycred-module-hooks.php:1170 .
5069
- #: ./modules/mycred-module-hooks.php:1219 ../modules/mycred-module-hooks.php:3008
5070
- #: ../modules/mycred-module-hooks.php:3028 ../plugins/mycred-hook-affiliatewp.php:
5071
- #: 237 ../plugins/mycred-hook-bbPress.php:410 ../plugins/mycred-hook-bbPress.php:
5072
- #: 440 ../plugins/mycred-hook-bbPress.php:475 ../plugins/mycred-hook-bbPress.php:
5073
- #: 492 ../plugins/mycred-hook-buddypress-gallery.php:102 ../plugins/mycred-hook-
5074
- #: buddypress-links.php:250 ../plugins/mycred-hook-buddypress-links.php:267 ..
5075
- #: plugins/mycred-hook-buddypress-links.php:284 ../plugins/mycred-hook-
5076
- #: buddypress-links.php:294 ../plugins/mycred-hook-buddypress-links.php:303 ..
5077
- #: plugins/mycred-hook-buddypress-links.php:320 ../plugins/mycred-hook-
5078
- #: buddypress-media.php:209 ../plugins/mycred-hook-buddypress-media.php:223 ..
5079
- #: plugins/mycred-hook-buddypress-media.php:237 ../plugins/mycred-hook-
5080
- #: buddypress.php:490 ../plugins/mycred-hook-buddypress.php:507 ../plugins/mycred-
5081
- #: hook-buddypress.php:524 ../plugins/mycred-hook-buddypress.php:541 ..
5082
- #: plugins/mycred-hook-buddypress.php:574 ../plugins/mycred-hook-buddypress.php:
5083
- #: 604 ../plugins/mycred-hook-buddypress.php:621 ../plugins/mycred-hook-
5084
- #: buddypress.php:1193 ../plugins/mycred-hook-buddypress.php:1210 ..
5085
- #: plugins/mycred-hook-buddypress.php:1227 ../plugins/mycred-hook-buddypress.php:
5086
- #: 1244 ../plugins/mycred-hook-buddypress.php:1262 ../plugins/mycred-hook-
5087
- #: buddypress.php:1292 ../plugins/mycred-hook-buddypress.php:1309 ..
5088
- #: plugins/mycred-hook-contact-form7.php:147 ../plugins/mycred-hook-events-
5089
- #: manager-light.php:192 ../plugins/mycred-hook-gravityforms.php:148 ..
5090
- #: plugins/mycred-hook-invite-anyone.php:202 ../plugins/mycred-hook-invite-
5091
- #: anyone.php:205 ../plugins/mycred-hook-invite-anyone.php:223 ../plugins/mycred-
5092
- #: hook-invite-anyone.php:226 ../plugins/mycred-hook-sharethis.php:302 ..
5093
- #: plugins/mycred-hook-simplepress.php:284 ../plugins/mycred-hook-simplepress.
5094
- #: php:314 ../plugins/mycred-hook-woocommerce.php:317 ../plugins/mycred-hook-wp-
5095
- #: favorite-posts.php:213 ../plugins/mycred-hook-wp-favorite-posts.php:231 ..
5096
- #: plugins/mycred-hook-wp-postratings.php:156 ../plugins/mycred-hook-wp-
5097
- #: postratings.php:175
5098
- msgid "Limit"
5099
- msgstr "Límite"
5100
 
5101
- #: ../includes/mycred-widgets.php:22
 
5102
  #, php-format
5103
- msgid "Show the current users %s balance"
5104
- msgstr "Enseñar el saldo de %s del usuario actual"
5105
 
5106
- #: ../includes/mycred-widgets.php:25
5107
  #, php-format
5108
- msgid "(%s) My Balance"
5109
- msgstr "(%s) Mi Saldo"
5110
 
5111
- #: ../includes/mycred-widgets.php:212
5112
- msgid "Layout"
5113
- msgstr "Disposición"
5114
 
5115
- #: ../includes/mycred-widgets.php:220
5116
- msgid "Include history"
5117
- msgstr "Incluir el historial"
 
5118
 
5119
- #: ../includes/mycred-widgets.php:222
5120
- msgid "History Title"
5121
- msgstr "Titulo de Historial"
 
5122
 
5123
- #. the English needs to be corrected to "Number of Entries"
5124
- #: ../includes/mycred-widgets.php:224
5125
- msgid "Number of entires"
5126
- msgstr "Numero de Entradas"
5127
 
5128
- #: ../includes/mycred-widgets.php:226 ../includes/mycred-widgets.php:411
5129
- msgid "Row layout"
5130
- msgstr "Disposición de Filas"
 
5131
 
5132
- #: ../includes/mycred-widgets.php:234 ../includes/mycred-widgets.php:612
5133
- msgid "Show message when not logged in"
5134
- msgstr "Mostrar mensaje cuando no ha iniciado la sesión"
5135
 
5136
- #: ../includes/mycred-widgets.php:236 ../includes/mycred-widgets.php:613
5137
- msgid "Message"
5138
- msgstr "Mensaje"
5139
 
5140
- #: ../includes/mycred-widgets.php:306
5141
  #, php-format
5142
- msgid "Show a list of users sorted by their %s balance"
5143
- msgstr "Mustra una lista de usuarios ordenados por sus %s saldos"
5144
 
5145
- #: ../includes/mycred-widgets.php:309
5146
- #, php-format
5147
- msgid "(%s) Leaderboard"
5148
- msgstr "(%s) Tabla de Clasificación"
5149
 
5150
- #: ../includes/mycred-widgets.php:398
5151
- msgid "Based On"
5152
- msgstr "Basado Sobre"
5153
 
5154
- #: ../includes/mycred-widgets.php:400
5155
- msgid ""
5156
- "Use \"balance\" to base the leaderboard on your users current balances or use "
5157
- "a specific reference."
5158
- msgstr ""
5159
- "Utiliza \"saldo\" para basar la tabla de clasificación sobre los saldos "
5160
- "actuales de tus usuarios o utiliza una referencia especifica."
5161
 
5162
- #: ../includes/mycred-widgets.php:400
5163
- msgid "Reference Guide"
5164
- msgstr "Guia de Referencia"
5165
 
5166
- #: ../includes/mycred-widgets.php:405
5167
- msgid "Visible to non-members"
5168
- msgstr "Visible al público (no miembros)"
5169
 
5170
- #: ../includes/mycred-widgets.php:407
5171
- msgid "Number of users"
5172
- msgstr "Numero de Usuarios"
5173
 
5174
- #: ../includes/mycred-widgets.php:416
5175
- msgid "Offset"
5176
- msgstr "Offset"
5177
 
5178
- #: ../includes/mycred-widgets.php:418
5179
- msgid "Optional offset of order. Use zero to return the first in the list."
 
 
 
5180
  msgstr ""
5181
- "Opcional desplazamiento (offset) de la orden. Utilice cero para devolver el "
5182
- "primero en la lista."
5183
-
5184
- #: ../includes/mycred-widgets.php:421
5185
- msgid "Order"
5186
- msgstr "Orden"
5187
 
5188
- #: ../includes/mycred-widgets.php:441
5189
- msgid "Append current users position"
5190
- msgstr "Añade la posición actual de usuarios "
5191
 
5192
- #: ../includes/mycred-widgets.php:442
5193
- msgid ""
5194
- "If the current user is not in this leaderboard, you can select to append "
5195
- "them at the end with their current position."
5196
- msgstr ""
5197
- "Si el usuario actual no esta en esta tabla de clasificación, puedes elegir a "
5198
- "agregarles al final con su posición actual."
5199
 
5200
- #: ../includes/mycred-widgets.php:493
5201
- msgid "Shows the current users balances for each point type."
5202
- msgstr "Mostrar el saldo actual del usuario para cada clase de punto (\"point type\")."
 
5203
 
5204
- #: ../includes/mycred-widgets.php:496
5205
- #, php-format
5206
- msgid "(%s) Wallet"
5207
- msgstr "(%s) Cartera"
5208
 
5209
- #: ../includes/mycred-widgets.php:604
5210
- msgid "Row Layout"
5211
- msgstr "Disposición de Filas"
5212
 
5213
- #: ../includes/importers/mycred-balances.php:81 ../includes/importers/mycred-
5214
- #: balances.php:159 ../includes/importers/mycred-balances.php:198 ..
5215
- #: includes/importers/mycred-balances.php:213 ../includes/importers/mycred-log-
5216
- #: entries.php:81 ../includes/importers/mycred-log-entries.php:126 ..
5217
- #: includes/importers/mycred-log-entries.php:165 ../includes/importers/mycred-
5218
- #: log-entries.php:180
5219
- msgid "Sorry, there has been an error."
5220
- msgstr "Lo sentimos, se ha producido un error."
5221
 
5222
- #: ../includes/importers/mycred-balances.php:82 ../includes/importers/mycred-log-
5223
- #: entries.php:82
5224
- msgid "The file does not exist, please try again."
5225
- msgstr "El fichero no existe, por favor inténtelo de nuevo más tarde."
5226
 
5227
- #: ../includes/importers/mycred-balances.php:160 ../includes/importers/mycred-log-
5228
- #: entries.php:127
5229
- msgid "The CSV is invalid."
5230
- msgstr "El CSV no es valido."
5231
 
5232
- #: ../includes/importers/mycred-balances.php:171
5233
- #, php-format
5234
  msgid ""
5235
- "Import complete - A total of <strong>%d</strong> balances were successfully "
5236
- "imported. <strong>%d</strong> was skipped."
5237
  msgstr ""
5238
- "Importación Finalizado - En total, <strong>%d</strong> saldos fueron "
5239
- "importado con éxito. Se saltaron <strong>%d</strong>."
5240
-
5241
- #: ../includes/importers/mycred-balances.php:181 ../includes/importers/mycred-
5242
- #: cubepoints.php:293 ../includes/importers/mycred-log-entries.php:148
5243
- msgid "Import More"
5244
- msgstr "Importar Más"
5245
 
5246
- #: ../includes/importers/mycred-balances.php:227
5247
- msgid "Import Balances"
5248
- msgstr "Saldos Importar"
 
5249
 
5250
- #: ../includes/importers/mycred-balances.php:244
5251
- msgid "Import balances from a CSV file."
5252
- msgstr "Importa saldos de registro desde un fichero CSV."
 
 
 
 
 
 
5253
 
5254
- #: ../includes/importers/mycred-balances.php:252 ../includes/importers/mycred-log-
5255
- #: entries.php:219
5256
  msgid ""
5257
- "Before you can upload your import file, you will need to fix the following "
5258
- "error:"
 
5259
  msgstr ""
5260
- "Antes que puedas subir tu fichero de importe, tendras que corregir los "
5261
- "errores siguientes:"
 
 
5262
 
5263
- #: ../includes/importers/mycred-balances.php:261 ../includes/importers/mycred-log-
5264
- #: entries.php:228
5265
- msgid "Choose a file from your computer:"
5266
- msgstr "Elige un fichero en tu ordenador:"
5267
 
5268
- #: ../includes/importers/mycred-balances.php:267 ../includes/importers/mycred-log-
5269
- #: entries.php:234
5270
- #, php-format
5271
- msgid "Maximum size: %s"
5272
- msgstr "Tamaño Máximo: %s"
5273
 
5274
- #: ../includes/importers/mycred-balances.php:272 ../includes/importers/mycred-log-
5275
- #: entries.php:239
5276
- msgid "OR enter path to file:"
5277
- msgstr "O rellena la ruta al fichero:"
5278
 
5279
- #: ../includes/importers/mycred-balances.php:279 ../includes/importers/mycred-log-
5280
- #: entries.php:246
5281
- msgid "Delimiter"
5282
- msgstr "Delimitador"
5283
 
5284
- #: ../includes/importers/mycred-balances.php:283
5285
- msgid "Method"
5286
- msgstr "Método"
5287
 
5288
- #: ../includes/importers/mycred-balances.php:285
5289
- msgid "Replace current balances with the amount in this CSV file"
5290
- msgstr "Sustituir los balances actuales con los montos en el archivo CSV"
5291
 
5292
- #: ../includes/importers/mycred-balances.php:286
5293
- msgid "Adjust current balances according to the amount in this CSV file"
5294
- msgstr "Ajustar los balances actuales de acuerdo al monto en el archivo CSV"
5295
 
5296
- #: ../includes/importers/mycred-balances.php:292 ../includes/importers/mycred-log-
5297
- #: entries.php:252
5298
- msgid "Upload file and import"
5299
- msgstr "Subir fichero e importar"
5300
 
5301
- #: ../includes/importers/mycred-cubepoints.php:276
5302
- msgid "No balances were imported."
5303
- msgstr "Ningun saldo fue importado."
5304
 
5305
- #: ../includes/importers/mycred-cubepoints.php:276
5306
- msgid "No log entries were imported!"
5307
- msgstr "¡No se importo ninguna entrada de registro!"
5308
 
5309
- #: ../includes/importers/mycred-cubepoints.php:282 ../includes/importers/mycred-
5310
- #: log-entries.php:138
5311
- #, php-format
5312
- msgid ""
5313
- "Import complete - A total of <strong>%d</strong> entries were successfully "
5314
- "imported. <strong>%d</strong> was skipped."
5315
- msgstr ""
5316
- "Importación Finalizado - En total, <strong>%d</strong> entradas fueron "
5317
- "importado con éxito. Se saltaron <strong>%d</strong>."
5318
 
5319
- #: ../includes/importers/mycred-cubepoints.php:306
5320
- msgid "No CubePoints log."
5321
- msgstr "No hay registro de CubePoints."
5322
 
5323
- #: ../includes/importers/mycred-cubepoints.php:317
5324
- msgid "Import CubePoints Log"
5325
- msgstr "Importar registro de CubePoints"
5326
-
5327
- #: ../includes/importers/mycred-cubepoints.php:334
5328
- msgid "Select what to import"
5329
- msgstr "Elige lo que deseas importar"
5330
 
5331
- #: ../includes/importers/mycred-cubepoints.php:335
5332
- msgid "Log Entries Only"
5333
- msgstr "Solo Entradas de Registro"
5334
 
5335
- #: ../includes/importers/mycred-cubepoints.php:336
5336
- msgid "CubePoints Balances Only"
5337
- msgstr "Saldos de CubePoints Unicamente"
5338
 
5339
- #: ../includes/importers/mycred-cubepoints.php:337
5340
- msgid "Log Entries and Balances"
5341
- msgstr "Solo Entradas y Saldos de Registro"
 
 
 
5342
 
5343
- #: ../includes/importers/mycred-cubepoints.php:351
5344
- msgid "Import"
5345
- msgstr "Importar"
5346
 
5347
- #: ../includes/importers/mycred-cubepoints.php:360
5348
  msgid ""
5349
- "Warning! Importing CubePoints balances will replace your users myCRED "
5350
- "balance!"
5351
  msgstr ""
5352
- "¡Advertencia! ¡La importación de los saldos de CubePoints reemplazará el "
5353
- "saldo de myCRED para tus usuarios!"
5354
 
5355
- #: ../includes/importers/mycred-cubepoints.php:378
5356
- msgid "Import Log"
5357
- msgstr "Importar Registro"
5358
 
5359
- #: ../includes/importers/mycred-log-entries.php:194
5360
- msgid "Import Log Entries"
5361
- msgstr "Importar Entradas de Registro"
 
 
 
5362
 
5363
- #: ../includes/importers/mycred-log-entries.php:211
5364
- msgid "Import log entries from a CSV file."
5365
- msgstr "Importa las entradas de registro desde un fichero CSV."
 
5366
 
5367
- #: ../modules/mycred-module-addons.php:25 ../modules/mycred-module-addons.php:26
5368
- msgid "Add-ons"
5369
- msgstr "Extensiones"
5370
 
5371
- #: ../modules/mycred-module-addons.php:160
5372
- msgid "Give your users badges based on their interaction with your website."
5373
- msgstr "Dar insignias a tus usuarios basado en sus interacciones con tu sitio web."
5374
 
5375
- #: ../modules/mycred-module-addons.php:171
5376
- msgid "Setup recurring payouts or offer / charge interest on user account balances."
5377
- msgstr ""
5378
- "Configura los pagos recurrentes u ofrecer / cobrar interés sobre los saldos "
5379
- "de las cuentas de usuarios."
5380
 
5381
- #: ../modules/mycred-module-addons.php:182
5382
- msgid ""
5383
- "The <strong>buy</strong>CRED Add-on allows your users to buy points using "
5384
- "PayPal, Skrill (Moneybookers) or NETbilling. <strong>buy</strong>CRED can "
5385
- "also let your users buy points for other members."
5386
- msgstr ""
5387
- "La Extensión <strong>compra</strong>CRED permite que tus usuarios compren "
5388
- "puntos utilizando PayPal, Skrill (Moneybookers) o NETbilling. "
5389
- "<strong>compra</strong>CRED tambien permite que tus usuarios compren puntos "
5390
- "para otros miembros."
5391
 
5392
- #: ../modules/mycred-module-addons.php:193
5393
- msgid ""
5394
- "The coupons add-on allows you to create coupons that users can use to add "
5395
- "points to their accounts."
5396
- msgstr ""
5397
- "Los cupones de add-on le permite crear cupones que los usuarios pueden "
5398
- "utilizar para agregar puntos a sus cuentas."
5399
 
5400
- #: ../modules/mycred-module-addons.php:204
5401
- msgid "Create email notices for any type of myCRED instance."
5402
- msgstr ""
5403
- "Crea avisos por correo electrónico para cualquier tipo de instancias de "
5404
- "myCRED."
5405
 
5406
- #: ../modules/mycred-module-addons.php:215
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
5407
  msgid ""
5408
- "Let your users pay using their <strong>my</strong>CRED points balance. "
5409
- "Supported Carts: WooCommerce, MarketPress and WP E-Commerce. Supported Event "
5410
- "Bookings: Event Espresso and Events Manager (free & pro)."
5411
  msgstr ""
5412
- "Permite que tus usuarios paguen utilizando el saldo de sus puntos "
5413
- "<strong>my</strong>CRED. Carritos soportados: WooCommerce, MarketPress and "
5414
- "WP E-Commerce. Reservas de Eventos soportados: Event Espresso and Events "
5415
- "Manager (gratis y pro)."
5416
 
5417
- #: ../modules/mycred-module-addons.php:226
5418
- msgid "Create pop-up notifications for when users gain or loose points."
5419
- msgstr "Crear notificaciones pop-up cuando los usuarios ganan o pierden puntos."
5420
 
5421
- #: ../modules/mycred-module-addons.php:238
 
 
 
 
 
 
 
 
 
 
 
 
5422
  msgid ""
5423
- "Create ranks for users reaching a certain number of %_plural% with the "
5424
- "option to add logos for each rank."
5425
  msgstr ""
5426
- "Crear rangos para los usuarios que alcanzan a un cierto número de %_plural% "
5427
- "con la opción de añadir logotipos para cada rango."
5428
 
5429
- #: ../modules/mycred-module-addons.php:249
5430
  msgid ""
5431
- "This add-on allows you to sell posts, pages or any public post types on your "
5432
- "website. You can either sell the entire content or using our shortcode, sell "
5433
- "parts of your content allowing you to offer \"teasers\"."
5434
  msgstr ""
5435
- "Esta extensión permite que vendas posts, páginas o cualquier tipo de "
5436
- "publicación en tu sitio web. Puedes venter contenidos enteros o utilizando "
5437
- "el código corto (shortcode), vender partes de tu contenido permitiendote "
5438
- "ofrecer \"avances\"."
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
5439
 
5440
- #: ../modules/mycred-module-addons.php:260
 
 
 
 
5441
  msgid ""
5442
- "Gives you access to your myCRED Staticstics based on your users gains and "
5443
- "loses."
5444
  msgstr ""
 
 
5445
 
5446
- #: ../modules/mycred-module-addons.php:271
5447
  msgid ""
5448
- "Allow your users to send or \"donate\" points to other members by either using "
5449
- "the mycred_transfer shortcode or the myCRED Transfer widget."
5450
  msgstr ""
5451
- "Permite que los usuarios envien o \"donen\" puntos a otros miembros utilizando "
5452
- "el código corto (shortcode) de mycred_transfer o el widget de Transferencia "
5453
- "myCRED."
5454
 
5455
- #: ../modules/mycred-module-addons.php:313
5456
- #, php-format
5457
- msgid "%s Add-ons"
5458
- msgstr "%s Extensiones (addons)"
5459
 
5460
- #: ../modules/mycred-module-addons.php:320
5461
- msgid "Add-on Activated"
5462
- msgstr "Extensión Activado"
 
5463
 
5464
- #: ../modules/mycred-module-addons.php:323
5465
- msgid "Add-on Deactivated"
5466
- msgstr "Extensión Desactivado"
 
5467
 
5468
- #: ../modules/mycred-module-addons.php:328
5469
- msgid "Add-ons Reloaded"
5470
- msgstr ""
5471
 
5472
- #: ../modules/mycred-module-addons.php:331
5473
- msgid "Add-ons can expand your current installation with further features."
5474
- msgstr ""
5475
- "Extensiones pueden ampliar tu instalación actual con más características "
5476
- "técnicas."
5477
 
5478
- #: ../modules/mycred-module-addons.php:358
5479
- msgid "Reload Add-ons"
5480
- msgstr ""
5481
 
5482
- #: ../modules/mycred-module-addons.php:359
5483
- #, php-format
5484
- msgid "You can find more add-ons in our %s."
5485
- msgstr "Puedes encontrar más extensiones (add-ons) en nuestro %s."
5486
 
5487
- #: ../modules/mycred-module-addons.php:359
5488
- msgid "online store"
5489
- msgstr "tienda online"
5490
 
5491
- #: ../modules/mycred-module-addons.php:382
5492
- msgid "Deactivate Add-on"
5493
- msgstr "Desactivar Extensión"
 
5494
 
5495
- #: ../modules/mycred-module-addons.php:383
5496
- msgid "Deactivate"
5497
- msgstr "Desactivar"
 
5498
 
5499
- #: ../modules/mycred-module-addons.php:390
5500
- msgid "Activate Add-on"
5501
- msgstr "Activar Extensión"
5502
 
5503
- #: ../modules/mycred-module-addons.php:391
5504
- msgid "Activate"
5505
- msgstr "Activar"
 
5506
 
5507
- #: ../modules/mycred-module-addons.php:409
5508
- msgid "Version"
5509
- msgstr "Version"
5510
 
5511
- #: ../modules/mycred-module-addons.php:413
5512
- msgid "By"
5513
- msgstr "Por"
 
5514
 
5515
- #: ../modules/mycred-module-addons.php:417
5516
- msgid "About"
5517
- msgstr "Acerca de"
5518
 
5519
- #: ../modules/mycred-module-addons.php:421
5520
- msgid "Get Pro"
5521
- msgstr "Obtenga la versión Pro"
5522
 
5523
- #: ../modules/mycred-module-buddypress.php:31
5524
- msgid "My History"
5525
- msgstr "Mi Historial"
 
 
5526
 
5527
- #: ../modules/mycred-module-buddypress.php:32
5528
- #, php-format
5529
- msgid "%s's History"
5530
- msgstr "La Historial de %s"
5531
 
5532
- #: ../modules/mycred-module-buddypress.php:131
5533
- msgid "Current balance"
5534
- msgstr "Saldo Actual"
5535
 
5536
- #: ../modules/mycred-module-buddypress.php:362
5537
- msgid "Go"
5538
- msgstr "Ir a"
5539
 
5540
- #: ../modules/mycred-module-buddypress.php:425
5541
- msgid "Show in Profile"
5542
- msgstr "Mostrar en Perfil"
5543
 
5544
- #: ../modules/mycred-module-buddypress.php:442
5545
- #, php-format
5546
- msgid "%singular% Balance"
5547
- msgstr "%singular% Saldo"
5548
 
5549
- #: ../modules/mycred-module-buddypress.php:459
5550
- #, php-format
5551
- msgid "Members and visitors can other members %_singular% balance."
5552
- msgstr "Miembros y visitantes pueden ver el saldo de %_singular% de otros miembros."
5553
 
5554
- #: ../modules/mycred-module-buddypress.php:469
5555
- msgid "%plural% History"
5556
- msgstr "Historial de %plural%"
5557
 
5558
- #: ../modules/mycred-module-buddypress.php:486
5559
- msgid "Members can view each others %_plural% history."
5560
- msgstr "Miembros pueden ver, uno al otro, el historial de sus %_plural%."
5561
 
5562
- #: ../modules/mycred-module-buddypress.php:491
5563
- msgid "Menu Title"
5564
- msgstr "Título de Menú"
5565
 
5566
- #: ../modules/mycred-module-buddypress.php:493
5567
- msgid "Title shown to me"
5568
- msgstr "Título mostrado a mi"
5569
 
5570
- #: ../modules/mycred-module-buddypress.php:498
5571
- #, php-format
5572
- msgid "Title shown to others. Use %s to show the first name."
5573
- msgstr "Título mostrado a otros. Utilice %s para mostrar el nombre de pila."
5574
 
5575
- #: ../modules/mycred-module-buddypress.php:503
5576
- msgid "Menu Position"
5577
- msgstr "Posición del Menú"
5578
 
5579
- #: ../modules/mycred-module-buddypress.php:505
5580
- msgid "Current menu positions:"
5581
- msgstr "Posiciones Acuales del Menú"
5582
 
5583
- #: ../modules/mycred-module-buddypress.php:510
5584
- msgid "History URL slug"
5585
- msgstr "La ficha historial de la URL"
5586
 
5587
- #: ../modules/mycred-module-buddypress.php:512
5588
- msgid "Do not use empty spaces!"
5589
- msgstr "¡No utilice espacios vacíos!"
5590
 
5591
- #: ../modules/mycred-module-buddypress.php:517
5592
- msgid "Number of history entries to show"
5593
- msgstr "Numero de entradas de historial a mostrar"
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
5594
 
5595
- #: ../modules/mycred-module-hooks.php:107
5596
  #, php-format
5597
- msgid "%plural% for registrations"
5598
- msgstr "%plural% por inscripciones"
5599
 
5600
- #: ../modules/mycred-module-hooks.php:108
5601
- #, php-format
5602
- msgid "Award %_plural% for users joining your website."
5603
- msgstr "Concede %_plural% a usuarios por unirse a tu sitio de web."
5604
 
5605
- #: ../modules/mycred-module-hooks.php:114
5606
- #, php-format
5607
- msgid "%plural% for daily visits"
5608
- msgstr "%plural% para visitas diarias"
5609
 
5610
- #: ../modules/mycred-module-hooks.php:115
5611
- #, php-format
5612
- msgid "Award %_plural% for users visiting your website on a daily basis."
5613
- msgstr "Concede %_plural% a usuarios por visitar tu sitio web diariamente."
5614
 
5615
- #: ../modules/mycred-module-hooks.php:121
5616
- #, php-format
5617
- msgid "%plural% for viewing content"
5618
- msgstr "%plural% para ver contenido"
5619
 
5620
- #: ../modules/mycred-module-hooks.php:122
5621
- msgid ""
5622
- "Award %_plural% to your users for viewing posts and / or %plural% to your "
5623
- "authors for members viewing their content."
5624
- msgstr ""
5625
- "Concede %_plural% a usuarios por ver entradas y / o %plural% a tus autores "
5626
- "cuando miembros ven su contenido."
5627
 
5628
- #: ../modules/mycred-module-hooks.php:128
5629
- #, php-format
5630
- msgid "%plural% for logins"
5631
- msgstr "%plural% para ingresos"
 
 
 
 
5632
 
5633
- #: ../modules/mycred-module-hooks.php:129
5634
  #, php-format
5635
- msgid ""
5636
- "Award %_plural% for logging in to your website. You can also set an optional "
5637
- "limit."
5638
- msgstr ""
5639
- "Conceder %_plural% por iniciar sesión en tu sitio web. También puedes "
5640
- "ajustar un limíte opcional."
5641
 
5642
- #: ../modules/mycred-module-hooks.php:135
5643
- #, php-format
5644
- msgid "%plural% for publishing content"
5645
- msgstr "%plural% por publicar contenido"
5646
 
5647
- #: ../modules/mycred-module-hooks.php:136
5648
  #, php-format
5649
- msgid ""
5650
- "Award %_plural% for publishing content on your website. If your custom post "
5651
- "type is not shown bellow, make sure it is set to \"Public\"."
5652
- msgstr "Concede %_plural% por publicar contenido en tu sitio web. "
5653
 
5654
- #: ../modules/mycred-module-hooks.php:142
5655
- #, php-format
5656
- msgid "%plural% for comments"
5657
- msgstr "%plural% por comentarios"
5658
 
5659
- #: ../modules/mycred-module-hooks.php:142
5660
- #, php-format
5661
- msgid "%plural% for Disqus comments"
5662
- msgstr "%plural% por comentarios Disqus"
5663
 
5664
- #: ../modules/mycred-module-hooks.php:143
5665
- #, php-format
5666
- msgid "Award %_plural% for making comments."
5667
- msgstr "Concede %_plural% por hacer comentarios."
5668
 
5669
- #: ../modules/mycred-module-hooks.php:149
5670
- #, php-format
5671
- msgid "%plural% for clicking on links"
5672
- msgstr "%plural% por hacer clic sobre enlaces"
5673
 
5674
- #: ../modules/mycred-module-hooks.php:150
5675
- msgid ""
5676
- "Award %_plural% to users who clicks on links generated by the [mycred_link] "
5677
- "shortcode."
5678
- msgstr ""
5679
- "Concede %_plural% a los usuarios que han hecho clic sobre enlaces generados "
5680
- "por el [mycred_link] código corto (shortcode)."
5681
 
5682
- #: ../modules/mycred-module-hooks.php:156
5683
- #, php-format
5684
- msgid "%plural% for viewing Videos"
5685
- msgstr "%plural% por ver videos"
5686
 
5687
- #: ../modules/mycred-module-hooks.php:157
5688
- msgid ""
5689
- "Award %_plural% to users who watches videos embedded using the "
5690
- "[mycred_video] shortcode."
5691
- msgstr ""
5692
- "Concede %_plural% a los usuarios que han visto videos incrustados utilizando "
5693
- "el [mycred_link] código corto (shortcode)."
5694
 
5695
- #: ../modules/mycred-module-hooks.php:163
5696
- #, php-format
5697
- msgid "%plural% for referrals"
5698
- msgstr "%plural% por referencias (o recomendaciones)"
5699
 
5700
- #: ../modules/mycred-module-hooks.php:164
5701
- msgid "Award %_plural% to users who refer either visitors and/or new member signups."
5702
- msgstr ""
5703
- "Concede %_plural% a los usuarios que o refieren visitantes y/o nuevos "
5704
- "miembros inscritos."
5705
 
5706
- #: ../modules/mycred-module-hooks.php:199
5707
- #, php-format
5708
- msgid "%s Hooks"
5709
- msgstr "Ganchos de %s"
5710
 
5711
- #: ../modules/mycred-module-hooks.php:203
5712
- msgid ""
5713
- "Hooks are instances where %_plural% are awarded or deducted from a user, "
5714
- "depending on their actions around your website."
5715
- msgstr ""
5716
- "Ganchas son instancias donde %_plural% son concedidos (o restados) al "
5717
- "usuario, dependiendo de sus acciones en tu sitio web."
5718
 
5719
- #: ../modules/mycred-module-hooks.php:417 ../modules/mycred-module-hooks.php:523 .
5720
- #: ./modules/mycred-module-hooks.php:683 ../modules/mycred-module-hooks.php:714 ..
5721
- #: modules/mycred-module-hooks.php:791 ../modules/mycred-module-hooks.php:1157 ..
5722
- #: modules/mycred-module-hooks.php:1174 ../modules/mycred-module-hooks.php:1223 .
5723
- #: ./modules/mycred-module-hooks.php:1675 ../modules/mycred-module-hooks.php:1692
5724
- #: ../modules/mycred-module-hooks.php:1709 ../modules/mycred-module-hooks.php:
5725
- #: 3000 ../modules/mycred-module-hooks.php:3020 ../plugins/mycred-hook-
5726
- #: affiliatewp.php:225 ../plugins/mycred-hook-affiliatewp.php:242 ..
5727
- #: plugins/mycred-hook-badgeOS.php:298 ../plugins/mycred-hook-bbPress.php:415 ..
5728
- #: plugins/mycred-hook-bbPress.php:428 ../plugins/mycred-hook-bbPress.php:445 ..
5729
- #: plugins/mycred-hook-bbPress.php:463 ../plugins/mycred-hook-bbPress.php:480 ..
5730
- #: plugins/mycred-hook-bbPress.php:497 ../plugins/mycred-hook-bbPress.php:519 ..
5731
- #: plugins/mycred-hook-buddypress-gallery.php:107 ../plugins/mycred-hook-
5732
- #: buddypress-links.php:255 ../plugins/mycred-hook-buddypress-links.php:272 ..
5733
- #: plugins/mycred-hook-buddypress-links.php:289 ../plugins/mycred-hook-
5734
- #: buddypress-links.php:308 ../plugins/mycred-hook-buddypress-links.php:325 ..
5735
- #: plugins/mycred-hook-buddypress-links.php:338 ../plugins/mycred-hook-
5736
- #: buddypress-media.php:213 ../plugins/mycred-hook-buddypress-media.php:227 ..
5737
- #: plugins/mycred-hook-buddypress-media.php:241 ../plugins/mycred-hook-
5738
- #: buddypress-media.php:254 ../plugins/mycred-hook-buddypress-media.php:264 ..
5739
- #: plugins/mycred-hook-buddypress-media.php:274 ../plugins/mycred-hook-
5740
- #: buddypress.php:495 ../plugins/mycred-hook-buddypress.php:512 ../plugins/mycred-
5741
- #: hook-buddypress.php:529 ../plugins/mycred-hook-buddypress.php:549 ..
5742
- #: plugins/mycred-hook-buddypress.php:562 ../plugins/mycred-hook-buddypress.php:
5743
- #: 579 ../plugins/mycred-hook-buddypress.php:592 ../plugins/mycred-hook-
5744
- #: buddypress.php:609 ../plugins/mycred-hook-buddypress.php:626 ../plugins/mycred-
5745
- #: hook-buddypress.php:1168 ../plugins/mycred-hook-buddypress.php:1181 ..
5746
- #: plugins/mycred-hook-buddypress.php:1198 ../plugins/mycred-hook-buddypress.php:
5747
- #: 1215 ../plugins/mycred-hook-buddypress.php:1232 ../plugins/mycred-hook-
5748
- #: buddypress.php:1249 ../plugins/mycred-hook-buddypress.php:1267 ..
5749
- #: plugins/mycred-hook-buddypress.php:1280 ../plugins/mycred-hook-buddypress.php:
5750
- #: 1297 ../plugins/mycred-hook-buddypress.php:1314 ../plugins/mycred-hook-contact-
5751
- #: form7.php:152 ../plugins/mycred-hook-gravityforms.php:153 ../plugins/mycred-
5752
- #: hook-invite-anyone.php:197 ../plugins/mycred-hook-invite-anyone.php:218 ..
5753
- #: plugins/mycred-hook-jetpack.php:506 ../plugins/mycred-hook-jetpack.php:519 ..
5754
- #: plugins/mycred-hook-sharethis.php:307 ../plugins/mycred-hook-simplepress.php:
5755
- #: 289 ../plugins/mycred-hook-simplepress.php:302 ../plugins/mycred-hook-
5756
- #: simplepress.php:319 ../plugins/mycred-hook-simplepress.php:337 ..
5757
- #: plugins/mycred-hook-wp-postratings.php:164 ../plugins/mycred-hook-wp-
5758
- #: postratings.php:183
5759
- msgid "Log template"
5760
- msgstr "Plantilla de Registro"
5761
 
5762
- #: ../modules/mycred-module-hooks.php:666
5763
- #, php-format
5764
- msgid "%plural% for viewing Posts"
5765
- msgstr "%plural% para ver Entradas"
 
 
5766
 
5767
- #: ../modules/mycred-module-hooks.php:669 ../modules/mycred-module-hooks.php:686 .
5768
- #: ./modules/mycred-module-hooks.php:700 ../modules/mycred-module-hooks.php:717 ..
5769
- #: modules/mycred-module-hooks.php:777 ../modules/mycred-module-hooks.php:794
5770
- msgid "Member"
5771
- msgstr "Miembro"
5772
 
5773
- #: ../modules/mycred-module-hooks.php:676 ../modules/mycred-module-hooks.php:692 .
5774
- #: ./modules/mycred-module-hooks.php:707 ../modules/mycred-module-hooks.php:723 ..
5775
- #: modules/mycred-module-hooks.php:784 ../modules/mycred-module-hooks.php:800 ..
5776
- #: modules/mycred-module-hooks.php:1670 ../modules/mycred-module-hooks.php:1687 .
5777
- #: ./modules/mycred-module-hooks.php:1704
5778
- msgid "Content Author"
5779
- msgstr "Autor del Contenido"
5780
 
5781
- #: ../modules/mycred-module-hooks.php:697
5782
- #, php-format
5783
- msgid "%plural% for viewing Pages"
5784
- msgstr "%plural% para ver Paginas"
5785
 
5786
- #: ../modules/mycred-module-hooks.php:774
5787
- #, php-format
5788
- msgid "%plural% for viewing %s"
5789
- msgstr "%plural% para Ver %s"
5790
 
5791
- #: ../modules/mycred-module-hooks.php:1147
5792
- #, php-format
5793
- msgid "%plural% for Posts"
5794
- msgstr "%plural% por Posts"
5795
 
5796
- #: ../modules/mycred-module-hooks.php:1164
5797
- #, php-format
5798
- msgid "%plural% for Pages"
5799
- msgstr "%plural% por Paginas"
5800
 
5801
- #: ../modules/mycred-module-hooks.php:1213
5802
- #, php-format
5803
- msgid "%plural% for %s"
5804
- msgstr "%plural% por %s"
 
5805
 
5806
- #: ../modules/mycred-module-hooks.php:1660
5807
- msgid ""
5808
- "%plural% are only awarded when your website has been synced with the Disqus "
5809
- "server!"
5810
- msgstr ""
5811
- "¡%_plural% seran concedidos unicamente cuando tu sitio web se ha "
5812
- "sincronizado con el servidor de Disqus!"
5813
 
5814
- #: ../modules/mycred-module-hooks.php:1666 ../modules/mycred-module-hooks.php:
5815
- #: 1683 ../modules/mycred-module-hooks.php:1700
5816
- msgid "Comment Author"
5817
- msgstr "Autor del Comentario"
 
 
 
 
 
5818
 
5819
- #: ../modules/mycred-module-hooks.php:1680
5820
- msgid "Comment Marked SPAM"
5821
- msgstr "Comentario Marcado como SPAM"
5822
 
5823
- #: ../modules/mycred-module-hooks.php:1697
5824
- msgid "Trashed / Unapproved Comments"
5825
- msgstr "Comentarios Destrozados / No Aprobados"
5826
 
5827
- #: ../modules/mycred-module-hooks.php:1717
5828
- msgid "Limit per post"
5829
- msgstr "Límite por Entrada"
5830
 
5831
- #. what is the Spanish word for "post"? o anglicismo?
5832
- #: ../modules/mycred-module-hooks.php:1719
5833
- msgid ""
5834
- "The number of comments per post that grants %_plural% to the comment author. "
5835
- "Use zero for unlimited."
5836
- msgstr ""
5837
- "El numero de comentarios por cada post que concede %_plural% al autor del "
5838
- "comentario. Utilice cero para un número ilimitado"
5839
 
5840
- #: ../modules/mycred-module-hooks.php:1723
5841
- msgid "Limit per day"
5842
- msgstr "Límite por día"
 
 
5843
 
5844
- #: ../modules/mycred-module-hooks.php:1725
5845
- msgid "Number of comments per day that grants %_plural%. Use zero for unlimited."
5846
- msgstr ""
5847
- "Número de comentarios diarios que conceden %_plural%. Utilice cero para un "
5848
- "número ilimitado."
5849
 
5850
- #: ../modules/mycred-module-hooks.php:1730
5851
- msgid ""
5852
- "%plural% is to be awarded even when comment authors reply to their own "
5853
- "comment."
5854
- msgstr ""
5855
- "%_plural% seran concedidos incluso cuando los autores responden a su proprio "
5856
- "comentario."
5857
 
5858
- #: ../modules/mycred-module-hooks.php:1810
5859
- msgid "Once for each unique URL"
5860
- msgstr "Una sola vez para cada única URL"
5861
 
5862
- #: ../modules/mycred-module-hooks.php:1811
5863
- msgid "Once for each unique link id"
5864
- msgstr "Una vez para cada id del enlace único "
5865
 
5866
- #: ../modules/mycred-module-hooks.php:2022
5867
- msgid ""
5868
- "The default amount to award for clicking on links. You can override this in "
5869
- "the shortcode."
5870
- msgstr ""
5871
- "La cantidad predefinida que sera cedida por hacer clic sobre enlaces. Puedes "
5872
- "anular esto con el 'shortcode' (código corto)."
5873
 
5874
- #: ../modules/mycred-module-hooks.php:2029
5875
- #, php-format
5876
- msgid "Custom tags: %url%, %title% or %id%."
5877
- msgstr "Etiquetas personalizadas: %url%, %title% o/u %id%."
5878
 
5879
- #: ../modules/mycred-module-hooks.php:2042 ../modules/mycred-module-hooks.php:3096
5880
- msgid "Note!"
5881
- msgstr "¡Atención!"
5882
 
5883
- #: ../modules/mycred-module-hooks.php:2042
5884
- msgid ""
5885
- "If no ID is set when using the mycred_link shortcode, the shortcode will "
5886
- "generate one automatically based on the value set under href. If you are "
5887
- "using this feature for \"sharing\" content, it is recommended that you limit "
5888
- "by ID."
5889
- msgstr ""
5890
- "Si no se ha fijado ningun ID cuando estas utilizando el codigo corto "
5891
- "(shortcode) de mycred_link, se generará uno automaticamente basado sobre el "
5892
- "valor fijado en href. Si estas utilizando esta función para \"compartir\" "
5893
- "contenidos, se recomienda que limites por ID."
5894
 
5895
- #: ../modules/mycred-module-hooks.php:2044 ../modules/mycred-module-hooks.php:2428
5896
- msgid "Available Shortcode"
5897
- msgstr "Código corto Disponible"
 
 
5898
 
5899
- #: ../modules/mycred-module-hooks.php:2392
5900
- msgid "Amount to award for viewing videos."
5901
- msgstr "Cantidad a ceder para ver videos."
5902
 
5903
- #: ../modules/mycred-module-hooks.php:2402
5904
- msgid "Award Logic"
5905
- msgstr "Lógica de Concesión"
5906
 
5907
- #: ../modules/mycred-module-hooks.php:2404
5908
- #, php-format
5909
- msgid "Select when %_plural% should be awarded or deducted."
5910
- msgstr "Elige cuando %_plural% deberian ser concedidos o restados."
5911
 
5912
- #: ../modules/mycred-module-hooks.php:2405
5913
- msgid "Play - As soon as video starts playing."
5914
- msgstr "Play - En cuanto el video empiece a reproducirse."
5915
 
5916
- #: ../modules/mycred-module-hooks.php:2406
5917
- msgid "Full - First when the entire video has played."
5918
- msgstr "Completo - Primero cuando el video entero se haya reproducido."
5919
 
5920
- #: ../modules/mycred-module-hooks.php:2407
5921
- msgid "Interval - For each x number of seconds watched."
5922
- msgstr "Intervalo - Para cada x numero de segundos vistos."
 
5923
 
5924
- #: ../modules/mycred-module-hooks.php:2412
5925
- msgid "Number of seconds"
5926
- msgstr "Numero de segundos"
5927
 
5928
- #: ../modules/mycred-module-hooks.php:2419
5929
- msgid "Leniency"
5930
- msgstr "Lenidad"
 
5931
 
5932
- #: ../modules/mycred-module-hooks.php:2421
5933
- msgid ""
5934
- "The maximum percentage a users view of a movie can differ from the actual "
5935
- "length."
5936
- msgstr ""
5937
- "El porcentaje máximo medido que un usuario vea puede variar con la duración "
5938
- "actual del video."
5939
 
5940
- #: ../modules/mycred-module-hooks.php:2424
5941
- msgid ""
5942
- "Do not set this value to zero! A lot of thing can happen while a user "
5943
- "watches a movie and sometimes a few seconds can drop of the counter due to "
5944
- "buffering or play back errors."
5945
- msgstr ""
5946
- "¡No fijes este valor a cero! Muchas cosas pueden suceder mientras que un "
5947
- "usuario ve una película y a veces la contador puede disminuir por pocos "
5948
- "segundos por falta de buffering o por errores de reproducción."
5949
 
5950
- #: ../modules/mycred-module-hooks.php:2499
5951
- msgid "Affiliate Program"
5952
- msgstr "Programa de Afiliados"
5953
 
5954
- #: ../modules/mycred-module-hooks.php:2508
5955
- msgid "Per Day"
5956
- msgstr "Por Día"
 
5957
 
5958
- #: ../modules/mycred-module-hooks.php:2667
5959
- msgid "Link"
5960
- msgstr "Enlace"
5961
 
5962
- #: ../modules/mycred-module-hooks.php:2671
5963
- msgid "Visitors Referred"
5964
- msgstr "Visitantes Referidos"
5965
 
5966
- #: ../modules/mycred-module-hooks.php:2675
5967
- msgid "Signups Referred"
5968
- msgstr "Inscripciones Referidos"
5969
 
5970
- #: ../modules/mycred-module-hooks.php:2994 ../plugins/mycred-hook-affiliatewp.php:
5971
- #: 231
5972
- msgid "Referring Visitors"
5973
- msgstr "Referiendo Visitantes"
5974
 
5975
- #: ../modules/mycred-module-hooks.php:3013 ../modules/mycred-module-hooks.php:3033
5976
- msgid "Referring Signups"
5977
- msgstr "Inscripciones a través de Referencias"
 
5978
 
5979
- #: ../modules/mycred-module-hooks.php:3017
5980
- msgid "Visitors who have Cookies disabled will not award %_plural%."
5981
- msgstr "Visitantes que tienen cookies desactivado no recibiran %_plural%."
5982
 
5983
- #: ../modules/mycred-module-hooks.php:3035
5984
- msgid "Registrations are disabled."
5985
- msgstr "Se han deshabilitado inscripciones."
5986
 
5987
- #: ../modules/mycred-module-hooks.php:3043
5988
- msgid "Referral Links"
5989
- msgstr "Enlaces Referentes"
 
 
5990
 
5991
- #: ../modules/mycred-module-hooks.php:3047
5992
- msgid "Assign numeric referral IDs to each user."
5993
- msgstr "Asignar ID numerica referente a cada usuario."
5994
 
5995
- #: ../modules/mycred-module-hooks.php:3048 ../modules/mycred-module-hooks.php:3054
5996
- msgid "Example"
5997
- msgstr "Ejemplo"
 
 
 
 
 
5998
 
5999
- #: ../modules/mycred-module-hooks.php:3053
6000
- msgid "Assign usernames as IDs for each user."
6001
- msgstr "Asignar los nombres de usuario como ID para cada usuario."
 
6002
 
6003
- #: ../modules/mycred-module-hooks.php:3057
6004
- msgid "IP Limit"
6005
- msgstr "Límite de IP"
6006
 
6007
- #: ../modules/mycred-module-hooks.php:3061
6008
- msgid "The number of times each IP address grants %_plural%. Use zero for unlimited."
 
 
6009
  msgstr ""
6010
- "El numero de veces que cada IP concede %_plural%. Utilice cero para un "
6011
- "número ilimitado"
6012
 
6013
- #: ../modules/mycred-module-hooks.php:3065 ../modules/mycred-module-hooks.php:3100
6014
- msgid "BuddyPress Profile"
6015
- msgstr "Perfil de BuddyPress"
6016
 
6017
- #: ../modules/mycred-module-hooks.php:3068
6018
- msgid "Insert Link in users Profile"
6019
- msgstr "Insertar enlace en el perfil del usuario"
 
 
 
 
6020
 
6021
- #: ../modules/mycred-module-hooks.php:3069
 
6022
  msgid ""
6023
- "Option to inser the referral link in users profiles. Links will only be "
6024
- "visible to users viewing their own profiles or administrators."
6025
  msgstr ""
6026
- "Opción para insertar el enlace de referencia en los perfiles de los usuarios."
6027
- " Estos enlaces serán visibles a los administradores o a los usuarios cuando "
6028
- "ven a sus propios perfiles."
 
 
 
 
 
 
 
 
 
 
 
6029
 
6030
- #: ../modules/mycred-module-hooks.php:3075
6031
- msgid "Leave empty to hide."
6032
- msgstr "Deje el campo vacío para ocultarlo."
6033
 
6034
- #: ../modules/mycred-module-hooks.php:3078
6035
- msgid "Description"
6036
- msgstr "Descripción"
6037
 
6038
- #: ../modules/mycred-module-hooks.php:3079
6039
- msgid "Optional description to insert under the link."
6040
- msgstr "Insertar la descripción opcional debajo del enlace."
6041
 
6042
- #: ../modules/mycred-module-hooks.php:3093
6043
- msgid "Profile Positioning"
6044
- msgstr "Posicionamiento del Perfil"
6045
 
6046
- #: ../modules/mycred-module-hooks.php:3095
6047
  msgid ""
6048
- "You can move around the referral link on your users profile by changing the "
6049
- "position. Increase to move up, decrease to move down."
6050
  msgstr ""
6051
- "Puedes moverte por el enlace de referencia en su perfil los usuarios "
6052
- "cambiando la posición. Aumentar a moverse hacia arriba, disminuye al bajar."
6053
 
6054
- #: ../modules/mycred-module-hooks.php:3096
6055
- msgid "You can not move the referral link above the users \"Base\" profile details!"
 
 
 
 
 
 
6056
  msgstr ""
6057
- "¡No puedes trasladar el enlace de referencia encima de los detalles \"Base\" "
6058
- "en el perfil del usuario!"
6059
 
6060
- #: ../modules/mycred-module-hooks.php:3102
6061
- msgid "Requires BuddyPress Extended Profiles to be enabled."
6062
- msgstr "Requiere que Perfils Extendidos de BuddyPress sea activado."
6063
 
6064
- #: ../modules/mycred-module-log.php:207 ../modules/mycred-module-log.php:230 ..
6065
- #: modules/mycred-module-settings.php:66 ../modules/mycred-module-settings.php:109
6066
- msgid "Access denied for this action"
6067
- msgstr "Acceso denegado para esta acción"
6068
 
6069
- #: ../modules/mycred-module-log.php:214
6070
- msgid "Row Deleted"
6071
- msgstr "Fila Borrado"
6072
 
6073
- #: ../modules/mycred-module-log.php:243
6074
- msgid "Log entry not found"
6075
- msgstr "No se encontro la entrada de registro "
 
6076
 
6077
- #: ../modules/mycred-module-log.php:256
6078
- msgid "Entry Updated"
6079
- msgstr "Entrada Actualizada"
6080
 
6081
- #: ../modules/mycred-module-log.php:316 ../modules/mycred-module-settings.php:621
6082
- msgid "Entries"
6083
- msgstr "Entradas"
6084
 
6085
- #: ../modules/mycred-module-log.php:333 ../modules/mycred-module-log.php:431 ..
6086
- #: modules/mycred-module-log.php:701 ../modules/mycred-module-settings.php:772
6087
- msgid "Export"
6088
- msgstr "Exportar"
6089
 
6090
- #: ../modules/mycred-module-log.php:340
6091
- msgid "Search results for"
6092
- msgstr "Buscar entre resultados por"
6093
 
6094
- #: ../modules/mycred-module-log.php:411
6095
- #, php-format
6096
- msgid "%s Log"
6097
- msgstr "Registro de %s"
6098
 
6099
- #: ../modules/mycred-module-log.php:422
6100
- msgid ""
6101
- "Warning. The required Mcrypt PHP Library is not installed on this server! "
6102
- "Certain hooks and shortcodes will not work correctly!"
6103
- msgstr ""
6104
 
6105
- #: ../modules/mycred-module-log.php:563
6106
- msgid "Edit"
6107
- msgstr "Editar"
6108
 
6109
- #: ../modules/mycred-module-log.php:610
6110
- msgid "Time"
6111
- msgstr "Tiempo"
6112
 
6113
- #: ../modules/mycred-module-log.php:614
6114
- msgid "Current Log Entry"
6115
- msgstr "Entrada Actual de Registro"
6116
 
6117
- #: ../modules/mycred-module-log.php:616
6118
- msgid "The current saved log entry"
6119
- msgstr "La entrada guardada actual del registro"
6120
 
6121
- #: ../modules/mycred-module-log.php:619
6122
- msgid "Adjust Log Entry"
6123
- msgstr "Ajustar entrada de registro"
6124
 
6125
- #: ../modules/mycred-module-log.php:621
6126
- msgid "The new log entry"
6127
- msgstr "La nueva entrada de registro"
 
 
 
 
6128
 
6129
- #: ../modules/mycred-module-log.php:624
6130
- msgid "Update Log Entry"
6131
- msgstr "Actualiza la entrada de registro"
 
6132
 
6133
- #: ../modules/mycred-module-log.php:695
6134
- #, php-format
6135
- msgid "My %s History"
6136
- msgstr "Mi Historial de %s"
6137
 
6138
- #: ../modules/mycred-module-settings.php:70 ../modules/mycred-module-settings.php:
6139
- #: 113 ../modules/mycred-module-settings.php:166
6140
- msgid "Missing point type"
6141
- msgstr "Falta el clase de punto (\"point type\")"
6142
 
6143
- #: ../modules/mycred-module-settings.php:144
6144
- msgid "Accounts successfully reset"
6145
- msgstr "Las cuentas fueron reiniciadas con éxito."
6146
 
6147
- #: ../modules/mycred-module-settings.php:196
6148
- msgid "No users found to export"
6149
- msgstr "No se encontro usuarios para exportar"
6150
 
6151
- #: ../modules/mycred-module-settings.php:246
6152
- msgid "Invalid decimal value."
6153
- msgstr ""
6154
 
6155
- #: ../modules/mycred-module-settings.php:293
6156
- msgid "Log Updated"
 
 
 
6157
  msgstr ""
 
 
6158
 
6159
- #: ../modules/mycred-module-settings.php:423
6160
- msgid "Update Database"
6161
- msgstr ""
6162
 
6163
- #: ../modules/mycred-module-settings.php:424
6164
- msgid "Zero for no decimals or maximum 20."
 
 
6165
  msgstr ""
 
 
6166
 
6167
- #: ../modules/mycred-module-settings.php:427 ../modules/mycred-module-settings.
6168
- #: php:528
6169
- msgid "Tip"
6170
- msgstr "Pista"
6171
 
6172
- #: ../modules/mycred-module-settings.php:427
6173
- msgid ""
6174
- "As this is your main point type, the value you select here will be the "
6175
- "largest number of decimals your installation will support."
6176
- msgstr ""
6177
 
6178
- #: ../modules/mycred-module-settings.php:440 ../modules/mycred-module-settings.
6179
- #: php:453
6180
- msgid "No decimals"
6181
- msgstr ""
6182
 
6183
- #: ../modules/mycred-module-settings.php:465
6184
  #, php-format
6185
- msgid "<a href=\"%s\">Click here</a> to change your default point types setup."
 
 
 
 
 
6186
  msgstr ""
 
 
6187
 
6188
- #: ../modules/mycred-module-settings.php:503
 
 
 
 
 
 
 
 
6189
  #, php-format
6190
- msgid "%s Settings"
6191
- msgstr "Configuración de %s"
6192
 
6193
- #: ../modules/mycred-module-settings.php:507
6194
- msgid "Adjust your core or add-on settings."
6195
- msgstr "Ajustar las configuraciones de tu nucleo o de las extensiones."
6196
 
6197
- #: ../modules/mycred-module-settings.php:513
6198
- msgid "Core Settings"
6199
- msgstr "Ajustes Basicos"
6200
 
6201
- #: ../modules/mycred-module-settings.php:515
6202
- msgid "Name"
6203
- msgstr "Nombre"
 
6204
 
6205
- #: ../modules/mycred-module-settings.php:520
6206
- #, php-format
6207
- msgid "Accessible though the %singular% template tag."
6208
- msgstr "Acesible a través de la etiqueta de la plantilla del %singular%."
6209
 
6210
- #: ../modules/mycred-module-settings.php:525
6211
- msgid "Accessible though the %plural% template tag."
6212
- msgstr "Acesible a través de la etiqueta de la plantilla del %singular%."
6213
 
6214
- #: ../modules/mycred-module-settings.php:528
6215
- msgid ""
6216
- "Adding an underscore at the beginning of template tag for names will return "
6217
- "them in lowercase. i.e. %_singular%"
6218
- msgstr ""
6219
- "Añadiendo un guión bajo al principio de la etiqueta de la plantilla para "
6220
- "nombres los cnovertira en minúsculas. Por ejemplo %_singular%"
6221
 
6222
- #: ../modules/mycred-module-settings.php:552
6223
- msgid "Separator"
6224
- msgstr "Separador"
 
6225
 
6226
- #: ../modules/mycred-module-settings.php:559
6227
- msgid "Edit Settings"
6228
- msgstr "Editar las Configuraciones"
 
6229
 
6230
- #. or "Verificar la capacidad de"
6231
- #: ../modules/mycred-module-settings.php:561 ../modules/mycred-module-settings.
6232
- #: php:566
6233
- msgid "Capability to check for."
6234
- msgstr "La capacidad que se va a verificar."
6235
 
6236
- #: ../modules/mycred-module-settings.php:564
6237
- msgid "Edit Users %plural%"
6238
- msgstr "Edita %plural% de Usuarios"
6239
 
6240
- #: ../modules/mycred-module-settings.php:588
6241
- msgid "Comma separated list of user ids to exclude. No spaces allowed!"
6242
- msgstr ""
6243
- "Lista separada por comas de los IDs de usuario para excluir. ¡No se permiten "
6244
- "espacios!"
6245
 
6246
- #: ../modules/mycred-module-settings.php:612
6247
- msgid "Management"
6248
- msgstr "Gestión"
6249
 
6250
- #: ../modules/mycred-module-settings.php:614
6251
- msgid "The Log"
6252
- msgstr "El Registro"
 
6253
 
6254
- #: ../modules/mycred-module-settings.php:617
6255
- msgid "Table Name"
6256
- msgstr "Nombre de Tabla"
 
6257
 
6258
- #: ../modules/mycred-module-settings.php:626
6259
- msgid "Empty Log"
6260
- msgstr "Registro Vacío"
 
 
6261
 
6262
- #: ../modules/mycred-module-settings.php:641
6263
- msgid "Set all to zero"
6264
- msgstr "Ajusta todo a cero"
6265
 
6266
- #: ../modules/mycred-module-settings.php:641
6267
- msgid "CSV Export"
6268
- msgstr "Exportar CSV"
6269
 
6270
- #: ../modules/mycred-module-settings.php:667
6271
- msgid "Default"
6272
- msgstr "Predefinido"
6273
 
6274
- #: ../modules/mycred-module-settings.php:670 ../modules/mycred-module-settings.
6275
- #: php:691 ../modules/mycred-module-settings.php:715
6276
- msgid "Meta Key"
6277
- msgstr "Clave Meta"
6278
 
6279
- #: ../modules/mycred-module-settings.php:712
6280
- msgid "Add New Type"
6281
- msgstr "Añadir Nuevo Clase"
6282
 
6283
- #: ../modules/mycred-module-settings.php:717
6284
- msgid "A unique ID for this type."
6285
- msgstr "Una ID exclusiva para este clase."
 
6286
 
6287
- #: ../modules/mycred-module-settings.php:722
6288
- msgid "Menu and page title."
6289
- msgstr "Título del Menú y de la Página\n"
 
 
 
6290
 
6291
- #: ../modules/mycred-module-settings.php:725
6292
- msgid ""
6293
- "The meta key must be lowercase and only contain letters or underscores. All "
6294
- "other characters will be deleted!"
6295
  msgstr ""
 
 
6296
 
6297
- #: ../modules/mycred-module-settings.php:748
6298
- msgid "Identify users by"
6299
- msgstr "Identifique usuarios por"
6300
 
6301
- #: ../modules/mycred-module-settings.php:754
6302
- msgid "User ID"
6303
- msgstr "ID del Usuario"
6304
 
6305
- #: ../modules/mycred-module-settings.php:755
6306
- msgid "User Email"
6307
- msgstr "Email de Usuario"
6308
 
6309
- #: ../modules/mycred-module-settings.php:756
6310
- msgid "User Login"
6311
- msgstr "Ingreso de Usuario"
 
6312
 
6313
- #: ../modules/mycred-module-settings.php:764
6314
- msgid ""
6315
- "Use ID if you intend to use this export as a backup of your current site "
6316
- "while Email is recommended if you want to export to a different site."
6317
- msgstr ""
6318
- "Usa ID si deseas tener esta exportación como un respaldo de tu sitio, Usa "
6319
- "Email si deseas exportar la data a otro sitio"
6320
 
6321
- #: ../modules/mycred-module-settings.php:767
6322
- msgid "Import Log Entry"
6323
- msgstr "Importa la entrada de registro"
6324
 
6325
- #: ../modules/mycred-module-settings.php:769
6326
  #, php-format
6327
- msgid ""
6328
- "Optional log entry to use if you intend to import this file in a different "
6329
- "%s installation."
6330
- msgstr ""
6331
- "Usa la entrada de registro opcional si tiene la intención de importar este "
6332
- "fichero en otra instalación %s."
6333
 
6334
- #: ../plugins/mycred-hook-affiliatewp.php:18
6335
- msgid "AffiliateWP"
6336
- msgstr ""
6337
 
6338
- #: ../plugins/mycred-hook-affiliatewp.php:19
6339
  #, php-format
6340
- msgid ""
6341
- "Awards %_plural% for affiliate signups, referring visitors and store sale "
6342
- "referrals."
6343
- msgstr ""
6344
 
6345
- #: ../plugins/mycred-hook-affiliatewp.php:218
6346
- msgid "Affiliate Signup"
6347
- msgstr ""
 
6348
 
6349
- #: ../plugins/mycred-hook-affiliatewp.php:248
6350
- msgid "Referring Sales"
6351
- msgstr ""
 
6352
 
6353
- #: ../plugins/mycred-hook-affiliatewp.php:251
6354
- msgid "Pay a set amount for all referrals."
6355
- msgstr ""
6356
 
6357
- #: ../plugins/mycred-hook-affiliatewp.php:252
6358
- msgid "AffiliateWP will use %plural% as currency so pay the referral amount."
6359
- msgstr ""
6360
 
6361
- #: ../plugins/mycred-hook-affiliatewp.php:253
6362
- msgid "Apply an exchange rate against the referral amount."
6363
- msgstr ""
6364
 
6365
- #: ../plugins/mycred-hook-affiliatewp.php:261
6366
- msgid "Log template - Payout"
6367
- msgstr ""
 
6368
 
6369
- #: ../plugins/mycred-hook-affiliatewp.php:266
6370
- msgid "Log template - Refund"
6371
- msgstr ""
 
6372
 
6373
- #: ../plugins/mycred-hook-badgeOS.php:18
6374
- msgid "BadgeOS"
6375
- msgstr "BadgeOS"
6376
 
6377
- #: ../plugins/mycred-hook-badgeOS.php:19
6378
- msgid ""
6379
- "Default settings for each BadgeOS Achievement type. These settings may be "
6380
- "overridden for individual achievement type."
6381
- msgstr ""
6382
- "Configuraciones predefinidos para cada clase de BadgeOS Logro (Achievement). "
6383
- "Estos ajustes pueden ser anulados para el tipo de logro individual."
6384
 
6385
- #: ../plugins/mycred-hook-badgeOS.php:105
6386
- #, php-format
6387
- msgid ""
6388
- "Please setup your <a href=\"%s\">default settings</a> before using this "
6389
- "feature."
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
6390
  msgstr ""
6391
- "Por favor configura tus <a href=\"%s\">configuraciones predefinidos</a> antes "
6392
- "de usar este función."
 
 
 
 
 
6393
 
6394
- #: ../plugins/mycred-hook-badgeOS.php:118 ../plugins/mycred-hook-badgeOS.php:120
6395
- msgid "%plural% to Award"
6396
- msgstr "%plural% a Conceder"
 
6397
 
6398
- #. also "Ponga cero para inhabilitar"
6399
- #: ../plugins/mycred-hook-badgeOS.php:122
6400
- msgid "Use zero to disable"
6401
- msgstr "Ponga cero para desactivar"
6402
 
6403
- #: ../plugins/mycred-hook-badgeOS.php:133
6404
- msgid "Deduction Log Template"
6405
- msgstr "Plantilla de Registro Descontado"
6406
 
6407
- #: ../plugins/mycred-hook-badgeOS.php:278
 
 
 
 
6408
  #, php-format
6409
- msgid "Default %s for %s"
6410
- msgstr "Predeterminar %s por %s"
6411
 
6412
- #: ../plugins/mycred-hook-badgeOS.php:284
6413
- msgid "Use zero to disable users gaining %_plural%"
6414
- msgstr "Ponga cero para que los usuarios no obtengan %_plural%"
6415
 
6416
- #: ../plugins/mycred-hook-badgeOS.php:288
6417
- msgid "Default Log template"
6418
- msgstr "Plantilla de Registro Predefinido"
6419
 
6420
- #: ../plugins/mycred-hook-bbPress.php:18
6421
- msgid "bbPress"
6422
- msgstr "bbPress"
6423
 
6424
- #: ../plugins/mycred-hook-bbPress.php:19
6425
- #, php-format
6426
- msgid "Awards %_plural% for bbPress actions."
6427
- msgstr "Concede %_plural% por acciones en bbPress."
6428
 
6429
- #: ../plugins/mycred-hook-bbPress.php:404
6430
- #, php-format
6431
- msgid "%plural% for New Forum"
6432
- msgstr "%plural% por nuevo foro"
6433
 
6434
- #: ../plugins/mycred-hook-bbPress.php:421
6435
- #, php-format
6436
- msgid "%plural% for Forum Deletion"
6437
- msgstr "%plural% por Eliminar Foro"
6438
 
6439
- #: ../plugins/mycred-hook-bbPress.php:434 ../plugins/mycred-hook-simplepress.php:
6440
- #: 278
6441
- #, php-format
6442
- msgid "%plural% for New Topic"
6443
- msgstr "%plural% por Nuevo Tema"
6444
 
6445
- #: ../plugins/mycred-hook-bbPress.php:452
6446
- #, php-format
6447
- msgid "Forum authors can receive %_plural% for creating new topics."
6448
- msgstr "Autores "
6449
 
6450
- #: ../plugins/mycred-hook-bbPress.php:456 ../plugins/mycred-hook-simplepress.php:
6451
- #: 295
6452
  #, php-format
6453
- msgid "%plural% for Topic Deletion"
6454
- msgstr "%plural% por Borrar Tema"
6455
 
6456
- #: ../plugins/mycred-hook-bbPress.php:469
6457
- #, php-format
6458
- msgid "%plural% for Favorited Topic"
6459
- msgstr "%plural% por Añadir Tema a tus \"Favoritos\""
6460
 
6461
- #: ../plugins/mycred-hook-bbPress.php:486
6462
- #, php-format
6463
- msgid "%plural% for New Reply"
6464
- msgstr "%plural% por Nueva Respuesta"
6465
 
6466
- #: ../plugins/mycred-hook-bbPress.php:504
6467
- #, php-format
6468
- msgid "Topic authors can receive %_plural% for replying to their own Topic"
6469
- msgstr "Autor de la tema puede recibir %_plural% por responder a su propia Tema"
6470
 
6471
- #: ../plugins/mycred-hook-bbPress.php:508
6472
- #, php-format
6473
- msgid "Show users %_plural% balance in replies"
6474
- msgstr "Mostrar usuarios el saldo de %_plural% en las respuestas"
6475
 
6476
- #: ../plugins/mycred-hook-bbPress.php:512
6477
- #, php-format
6478
- msgid "%plural% for Reply Deletion"
6479
- msgstr "%plural% para Borrar Respuesta"
6480
 
6481
- #: ../plugins/mycred-hook-buddypress-gallery.php:19
6482
- msgid "BuddyPress: Gallery Actions"
6483
- msgstr "BuddyPress: Acciones sobre Galerías"
6484
 
6485
- #: ../plugins/mycred-hook-buddypress-gallery.php:20
6486
- #, php-format
6487
- msgid ""
6488
- "Awards %_plural% for creating a new gallery either using BP Album+ or BP "
6489
- "Gallery."
6490
- msgstr ""
6491
- "Conceder %_plural% por crear una nueva galería ya sea usando BP Album+ o BP "
6492
- "Gallery."
6493
 
6494
- #: ../plugins/mycred-hook-buddypress-gallery.php:96
6495
- #, php-format
6496
- msgid "%plural% for New Gallery"
6497
- msgstr "%plural% por Nueva Galería"
6498
 
6499
- #: ../plugins/mycred-hook-buddypress-links.php:19
6500
- msgid "BuddyPress: Links"
6501
- msgstr "BuddyPress: Enlaces"
6502
 
6503
- #: ../plugins/mycred-hook-buddypress-links.php:20
6504
- #, php-format
6505
- msgid "Awards %_plural% for link related actions."
6506
- msgstr "Concede %_plural% por acciones relacionados a enlaces."
6507
 
6508
- #: ../plugins/mycred-hook-buddypress-links.php:244
6509
- #, php-format
6510
- msgid "%plural% for New Links"
6511
- msgstr "%plural% por Nuevos Enlaces"
6512
 
6513
- #: ../plugins/mycred-hook-buddypress-links.php:261
 
 
 
 
6514
  #, php-format
6515
- msgid "%plural% for Vote on Link"
6516
- msgstr "%plural% por Votar sobre Enlaces"
6517
 
6518
- #: ../plugins/mycred-hook-buddypress-links.php:277
6519
- msgid "%plural% per received Vote"
6520
- msgstr "%plural% por Votos Recibidos"
6521
 
6522
- #: ../plugins/mycred-hook-buddypress-links.php:280
6523
- msgid "Vote Up"
6524
- msgstr "Votar a Favor"
 
 
 
 
 
 
 
 
 
6525
 
6526
- #: ../plugins/mycred-hook-buddypress-links.php:299
6527
- msgid "Vote Down"
6528
- msgstr "Votar en Contra "
6529
 
6530
- #: ../plugins/mycred-hook-buddypress-links.php:314
6531
- #, php-format
6532
- msgid "%plural% for Updating Links"
6533
- msgstr "%plural% por Actualizar Enlaces"
6534
 
6535
- #: ../plugins/mycred-hook-buddypress-links.php:331
6536
- #, php-format
6537
- msgid "%plural% for Deleting Links"
6538
- msgstr "%plural% por Borrar Enlaces"
6539
 
6540
- #: ../plugins/mycred-hook-buddypress-media.php:18
6541
- msgid "rtMedia Galleries"
6542
- msgstr "Galerías rtMedia (rtMedia Galleries)"
6543
 
6544
- #: ../plugins/mycred-hook-buddypress-media.php:19
6545
- #, php-format
6546
- msgid "Award / Deduct %_plural% for users creating albums or uploading new photos."
6547
- msgstr "Concede / Resta %_plural% a usuarios por crear álbumes o subir nuevos fotos."
6548
 
6549
- #: ../plugins/mycred-hook-buddypress-media.php:202
6550
- msgid "New Media Upload"
6551
- msgstr "Subir Nuevo Media"
 
6552
 
6553
- #: ../plugins/mycred-hook-buddypress-media.php:247
6554
- msgid "Delete Media"
6555
- msgstr "Borrar Medios"
 
6556
 
6557
- #: ../plugins/mycred-hook-buddypress-media.php:250
6558
- msgid "Delete Photo"
6559
- msgstr "Borrar Foto"
6560
 
6561
- #: ../plugins/mycred-hook-buddypress-media.php:260
6562
- msgid "Delete Video"
6563
- msgstr "Borrar Video"
6564
 
6565
- #: ../plugins/mycred-hook-buddypress-media.php:270
6566
- msgid "Delete Music"
6567
- msgstr "Borrar Música"
6568
 
6569
- #: ../plugins/mycred-hook-buddypress.php:20
6570
- msgid "BuddyPress: Members"
6571
- msgstr "BuddyPress: Miembros"
6572
 
6573
- #: ../plugins/mycred-hook-buddypress.php:21
6574
- #, php-format
6575
- msgid "Awards %_plural% for profile related actions."
6576
- msgstr "Concede %_plural% por acciones relacionados al perfil."
6577
 
6578
- #: ../plugins/mycred-hook-buddypress.php:28
6579
- msgid "BuddyPress: Groups"
6580
- msgstr "BuddyPress: Grupos"
6581
 
6582
- #: ../plugins/mycred-hook-buddypress.php:29
6583
- #, php-format
6584
- msgid ""
6585
- "Awards %_plural% for group related actions. Use minus to deduct %_plural% or "
6586
- "zero to disable a specific hook."
6587
- msgstr ""
6588
- "Concede %_plural% para acciones relacionados a grupos. Usa negativo para "
6589
- "sustraer %_plural% o cero para desabilitar un gancho especifico."
6590
 
6591
- #: ../plugins/mycred-hook-buddypress.php:484
6592
- #, php-format
6593
- msgid "%plural% for Profile Updates"
6594
- msgstr "%plural% por Actualizar Perfil"
6595
 
6596
- #: ../plugins/mycred-hook-buddypress.php:501
6597
- #, php-format
6598
- msgid "%plural% for Removing Profile Update"
6599
- msgstr ""
6600
 
6601
- #: ../plugins/mycred-hook-buddypress.php:518
6602
- #, php-format
6603
- msgid "%plural% for New Avatar"
6604
- msgstr "%plural% por Nuevo Avatar"
6605
 
6606
- #: ../plugins/mycred-hook-buddypress.php:535
6607
- #, php-format
6608
- msgid "%plural% for New Friendships"
6609
- msgstr "%plural% por Nueva Amistad"
6610
 
6611
- #: ../plugins/mycred-hook-buddypress.php:545
6612
- #, php-format
6613
- msgid ""
6614
- "Users with zero balance can not add friends. Requires that you deduct "
6615
- "%_plural% for adding a new friend."
6616
- msgstr ""
6617
 
6618
- #: ../plugins/mycred-hook-buddypress.php:555
6619
- #, php-format
6620
- msgid "%plural% for Leaving Friendship"
6621
- msgstr "%plural% por Dejar Amistad"
6622
 
6623
- #: ../plugins/mycred-hook-buddypress.php:568
6624
- #, php-format
6625
- msgid "%plural% for New Comment"
6626
- msgstr "%plural% por Nuevo Comentario"
6627
 
6628
- #: ../plugins/mycred-hook-buddypress.php:585
 
 
6629
  #, php-format
6630
- msgid "%plural% for Deleting Comment"
6631
- msgstr "%plural% por Borrar Comentario"
6632
 
6633
- #: ../plugins/mycred-hook-buddypress.php:598
 
6634
  #, php-format
6635
- msgid "%plural% for New Messages"
6636
- msgstr "%plural% por Nuevo Mensaje"
6637
 
6638
- #: ../plugins/mycred-hook-buddypress.php:615
 
 
6639
  #, php-format
6640
- msgid "%plural% for Sending Gift"
6641
- msgstr "%plural% por Enviar Regalo"
6642
 
6643
- #: ../plugins/mycred-hook-buddypress.php:1154
6644
- #, php-format
6645
- msgid "%plural% for Creating Groups"
6646
- msgstr "%plural% por Creat Cupones"
 
 
6647
 
6648
- #: ../plugins/mycred-hook-buddypress.php:1158
6649
- msgid ""
6650
- "If you use a negative value and the user does not have enough %_plural% the "
6651
- "\"Create Group\" button will be disabled."
 
6652
  msgstr ""
6653
- "Si usas un valor negativo y el usuario no tiene bastante %_plural% el botón "
6654
- "\"Crear Grupo\" sera desactivada."
6655
-
6656
- #: ../plugins/mycred-hook-buddypress.php:1162
6657
- msgid "Number of members before awarding %_plural%"
6658
- msgstr "Numero de miembros antes de conceder %_plural%"
6659
-
6660
- #: ../plugins/mycred-hook-buddypress.php:1164
6661
- msgid "Use zero to award %_plural% when group is created."
6662
- msgstr "Ponga cero para %_plural% cuando se crea un grupo."
6663
 
6664
- #: ../plugins/mycred-hook-buddypress.php:1174
6665
- #, php-format
6666
- msgid "%plural% for Deleting Groups"
6667
- msgstr "%plural% por Borrar Grupos"
 
 
 
6668
 
6669
- #: ../plugins/mycred-hook-buddypress.php:1187
6670
- #, php-format
6671
- msgid "%plural% for New Forum Topic"
6672
- msgstr "%plural% por Nuevo Tema de Foro"
 
6673
 
6674
- #: ../plugins/mycred-hook-buddypress.php:1204
6675
- #, php-format
6676
- msgid "%plural% for Editing Forum Topic"
6677
- msgstr "%plural% por Editar Tema de Foro"
6678
 
6679
- #: ../plugins/mycred-hook-buddypress.php:1221
6680
- #, php-format
6681
- msgid "%plural% for New Forum Post"
6682
- msgstr "%plural% por Nueva Publicación en Foro"
 
6683
 
6684
- #: ../plugins/mycred-hook-buddypress.php:1238
6685
- #, php-format
6686
- msgid "%plural% for Editing Forum Post"
6687
- msgstr "%plural% por Editar Publicación en Foro"
6688
 
6689
- #: ../plugins/mycred-hook-buddypress.php:1255
6690
- #, php-format
6691
- msgid "%plural% for Joining Groups"
6692
- msgstr "%plural% por Unirse a Grupos"
 
6693
 
6694
- #: ../plugins/mycred-hook-buddypress.php:1259
6695
- msgid ""
6696
- "If you use a negative value and the user does not have enough %_plural% the "
6697
- "\"Join Group\" button will be disabled."
6698
- msgstr ""
6699
- "Si usas un valor negativo y el usuario no tiene bastante %_plural% el botón "
6700
- "\"Unirse a Grupo\" sera desactivada."
6701
 
6702
- #: ../plugins/mycred-hook-buddypress.php:1273
6703
- #, php-format
6704
- msgid "%plural% for Leaving Groups"
6705
- msgstr "%plural% por Dejar Grupos"
 
6706
 
6707
- #: ../plugins/mycred-hook-buddypress.php:1286
6708
- #, php-format
6709
- msgid "%plural% for New Group Avatar"
6710
- msgstr "%plural% por Nuevo Avatar de Grupo"
6711
 
6712
- #: ../plugins/mycred-hook-buddypress.php:1303
6713
- #, php-format
6714
- msgid "%plural% for New Group Comment"
6715
- msgstr "%plural% por Nuevo Comentario Grupo"
6716
 
6717
- #: ../plugins/mycred-hook-contact-form7.php:18
6718
- msgid "Contact Form 7 Form Submissions"
6719
- msgstr "Presentación Formulario de Contact Form 7"
6720
 
6721
- #: ../plugins/mycred-hook-contact-form7.php:19
6722
- #, php-format
6723
- msgid "Awards %_plural% for successful form submissions (by logged in users)."
6724
- msgstr ""
6725
- "Concede %_plural% por el exitoso envío del formulario (por usuarios que han "
6726
- "iniciado sesión)"
6727
 
6728
- #: ../plugins/mycred-hook-contact-form7.php:117 ../plugins/mycred-hook-
6729
- #: gravityforms.php:118
6730
- msgid "No forms found."
6731
- msgstr "No se ha encontrado ningun formulario."
6732
 
6733
- #: ../plugins/mycred-hook-events-manager-light.php:18
6734
- msgid "Events Manager"
6735
- msgstr "Gestionamiento de Eventos"
6736
 
6737
- #: ../plugins/mycred-hook-events-manager-light.php:19
6738
- #, php-format
6739
- msgid "Awards %_plural% for users attending events."
6740
- msgstr "Concede %_plural% para usuarios que asistieron actividades o eventos."
6741
 
6742
- #: ../plugins/mycred-hook-events-manager-light.php:186
6743
- msgid "Attending Event"
6744
- msgstr "Asistir Evento"
6745
 
6746
- #: ../plugins/mycred-hook-events-manager-light.php:203
6747
- msgid "Cancelling Attendance"
6748
- msgstr "Cancelando Asistencia"
6749
 
6750
- #: ../plugins/mycred-hook-gd-star-rating.php:18
6751
- msgid "GD Star Rating"
6752
- msgstr "GD Star Rating"
6753
 
6754
- #: ../plugins/mycred-hook-gd-star-rating.php:19
6755
- #, php-format
6756
- msgid "Awards %_plural% for users rate items using the GD Star Rating plugin."
 
 
6757
  msgstr ""
6758
- "Concede %_plural% a usuarios que evaluan artículos a través de GD Star "
6759
- "Rating plugin."
 
 
6760
 
6761
- #: ../plugins/mycred-hook-gd-star-rating.php:103
6762
- msgid "Rating"
6763
- msgstr "Clasificación"
6764
 
6765
- #.
6766
- #.
6767
- #: ../plugins/mycred-hook-gd-star-rating.php:116
6768
- msgid "Up / Down Vote"
6769
- msgstr "Voto Arriba / Abajo"
6770
 
6771
- #: ../plugins/mycred-hook-gravityforms.php:18
6772
- msgid "Gravityform Submissions"
6773
- msgstr "Entregas de Gravityform"
6774
 
6775
- #: ../plugins/mycred-hook-gravityforms.php:19
6776
- #, php-format
6777
- msgid "Awards %_plural% for successful form submissions."
6778
- msgstr "Concede %_plural% por el exitoso envío del formularios."
6779
 
6780
- #. does this really need to be translated?
6781
- #: ../plugins/mycred-hook-invite-anyone.php:18
6782
- msgid "Invite Anyone Plugin"
6783
- msgstr "Invite Anyone Plugin"
6784
 
6785
- #: ../plugins/mycred-hook-invite-anyone.php:19
6786
  #, php-format
6787
- msgid ""
6788
- "Awards %_plural% for sending invitations and/or %_plural% if the invite is "
6789
- "accepted."
6790
- msgstr ""
6791
- "Concede %_plural% por mandar invitaciones y/o %_plural% si se acepta la "
6792
- "invitación."
6793
 
6794
- #: ../plugins/mycred-hook-invite-anyone.php:190
6795
  #, php-format
6796
- msgid "%plural% for Sending An Invite"
6797
- msgstr "%plural% por Enviar una Invitación"
6798
 
6799
- #: ../plugins/mycred-hook-invite-anyone.php:210
6800
- #, php-format
6801
- msgid "%plural% for Accepting An Invite"
6802
- msgstr "%plural% por Aceptar una Invitación"
6803
 
6804
- #: ../plugins/mycred-hook-invite-anyone.php:214
6805
- #, php-format
6806
- msgid "%plural% for each invited user that accepts an invitation."
6807
- msgstr "%plural% por cada usuario invitado que acepta la invitación."
6808
 
6809
- #: ../plugins/mycred-hook-jetpack.php:18
6810
- msgid "Jetpack Subscriptions"
6811
- msgstr "Suscripciónes a Jetpack"
6812
 
6813
- #: ../plugins/mycred-hook-jetpack.php:19
6814
- #, php-format
6815
- msgid ""
6816
- "Awards %_plural% for users signing up for site or comment updates using "
6817
- "Jetpack."
6818
- msgstr ""
6819
- "Concede %_plural% a usuarios por incribirse a las actualizaciones del sitio "
6820
- "web o a los comentarios atraves de Jetpack."
6821
 
6822
- #: ../plugins/mycred-hook-jetpack.php:499
6823
- msgid "Site Subscriptions"
6824
- msgstr "Suscripciónes al Sitio Web"
6825
 
6826
- #: ../plugins/mycred-hook-jetpack.php:512
6827
- msgid "Comment Subscriptions"
6828
- msgstr "Suscripciónes a commentarios"
6829
 
6830
- #: ../plugins/mycred-hook-marketpress.php:63 ../plugins/mycred-hook-woocommerce.
6831
- #: php:80
6832
- msgid "Reward with %plural%"
6833
- msgstr "Premiar con %plural%"
6834
 
6835
- #: ../plugins/mycred-hook-sharethis.php:19
6836
- #, php-format
6837
- msgid "%plural% for Sharing"
6838
- msgstr "%plural% para Compartir"
6839
 
6840
- #: ../plugins/mycred-hook-sharethis.php:20
6841
- #, php-format
6842
  msgid ""
6843
- "Awards %_plural% for users sharing / liking your website content to popular "
6844
- "social media sites."
6845
  msgstr ""
6846
- "Concede %_plural% a usuarios por compartir / gustar el contenido de tu sitio "
6847
- "web atraves de sitio de los medios de comunicación social."
6848
-
6849
- #: ../plugins/mycred-hook-sharethis.php:257
6850
- msgid "Your ShareThis public key is not set."
6851
- msgstr "Tu llave publico de ShareThis no ha sido configurado."
6852
-
6853
- #: ../plugins/mycred-hook-sharethis.php:262
6854
- msgid "No ShareThis services detected. Please check your installation."
6855
- msgstr "Ningun servicio ShareThis detectado. Por favor verifique su instalación."
6856
-
6857
- #: ../plugins/mycred-hook-simplepress.php:19
6858
- #, php-format
6859
- msgid "Awards %_plural% for Simple:Press actions."
6860
- msgstr "Concede %_plural% por acciones en Simple:Press."
6861
 
6862
- #: ../plugins/mycred-hook-simplepress.php:308
6863
- #, php-format
6864
- msgid "%plural% for New Topic Post"
6865
- msgstr "%plural% por Nueva Publicacion "
6866
 
6867
- #: ../plugins/mycred-hook-simplepress.php:326
6868
- #, php-format
6869
- msgid "Topic authors can receive %_plural% for posting on their own Topic"
6870
- msgstr "Autor de la tema puede recibir %_plural% por publicar su propia Tema"
6871
 
6872
- #: ../plugins/mycred-hook-simplepress.php:330
6873
- #, php-format
6874
- msgid "%plural% for Topic Post Deletion"
6875
- msgstr "%plural% por Borrar la Tema del Post"
6876
 
6877
- #: ../plugins/mycred-hook-woocommerce.php:210
6878
- msgid "WooCommerce Product Reviews"
6879
- msgstr " Revisión del Producto WooCommerce\n"
6880
 
6881
- #: ../plugins/mycred-hook-woocommerce.php:211
6882
- #, php-format
6883
- msgid "Awards %_plural% for users leaving reviews on your WooCommerce products."
6884
- msgstr ""
6885
- "Concede %_plural% a usuarios por escribir reseñas sobre tus productos "
6886
- "WooCommerce."
6887
 
6888
- #: ../plugins/mycred-hook-wp-favorite-posts.php:18
6889
- msgid "WP Favorite Posts"
6890
- msgstr "WP Favorite Posts"
6891
 
6892
- #: ../plugins/mycred-hook-wp-favorite-posts.php:19
6893
- #, php-format
6894
- msgid "Awards %_plural% for users adding posts to their favorites."
6895
- msgstr "Concede %_plural% a usuarios por añadir entradas a sus favoritos."
6896
 
6897
- #: ../plugins/mycred-hook-wp-favorite-posts.php:207
6898
- msgid "Adding Content to Favorites"
6899
- msgstr "Añadiendo Contenido a Favoritos"
6900
 
6901
- #: ../plugins/mycred-hook-wp-favorite-posts.php:225
6902
- msgid "Authors Content added to favorites"
6903
- msgstr ""
6904
 
6905
- #: ../plugins/mycred-hook-wp-favorite-posts.php:243
6906
- msgid "Removing Content from Favorites"
6907
- msgstr "Quitando Contenido de Favoritos"
6908
 
6909
- #: ../plugins/mycred-hook-wp-favorite-posts.php:256
6910
- msgid "Removing Content from Favorites (Author)"
6911
  msgstr ""
 
 
6912
 
6913
- #: ../plugins/mycred-hook-wp-polls.php:18
6914
- msgid "WP-Polls"
6915
- msgstr "WP-Polls"
6916
-
6917
- #: ../plugins/mycred-hook-wp-polls.php:19
6918
- #, php-format
6919
- msgid "Awards %_plural% for users voting in polls."
6920
- msgstr ""
6921
- "Concede %_plural% a usuarios que han votado en encuestas.Concede %_plural% a "
6922
- "usuarios que han votado en encuestas."
6923
 
6924
- #: ../plugins/mycred-hook-wp-postratings.php:18
6925
- msgid "Post Ratings"
6926
  msgstr ""
 
 
6927
 
6928
- #: ../plugins/mycred-hook-wp-postratings.php:19
6929
- #, php-format
6930
  msgid ""
6931
- "Awards %_plural% for post ratings. Supports awarding %_plural% both to post "
6932
- "author and the user rating."
 
6933
  msgstr ""
 
 
 
6934
 
6935
- #: ../plugins/mycred-hook-wp-postratings.php:76
6936
- msgid "Based on rating"
6937
- msgstr ""
6938
 
6939
- #: ../plugins/mycred-hook-wp-postratings.php:160 ../plugins/mycred-hook-wp-
6940
- #: postratings.php:179
6941
- msgid "Use the Rating Value instead of the amount set here."
 
6942
  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: Mon Nov 23 2015 17:48:51 GMT+0100 (CET)\n"
7
+ "Last-Translator: Gabriel Merovingi <gabriel.s@merovingi.com>\n"
8
  "Language-Team: myCRED & All the awesome users helping out <support@mycred."
9
  "me>\n"
10
  "Language: Spanish (Spain)\n"
25
  "X-Poedit-SearchPath-1: .\n"
26
  "X-Loco-Target-Locale: es_ES"
27
 
28
+ #. URI of the plugin
29
+ msgid "http://mycred.me"
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
30
  msgstr ""
 
 
31
 
32
+ #. Description of the plugin
33
  msgid ""
34
+ "<strong>my</strong>CRED is an adaptive points management system for "
35
+ "WordPress powered websites, giving you full control on how points are gained,"
36
+ " used, traded, managed, logged or presented."
37
  msgstr ""
 
 
38
 
39
+ #. Author of the plugin
40
+ msgid "Gabriel S Merovingi"
41
  msgstr ""
 
 
 
 
 
 
 
 
 
 
42
 
43
+ #. Author URI of the plugin
44
+ msgid "http://www.merovingi.com"
45
+ msgstr ""
46
 
47
+ #: ../mycred.php:685
48
  msgid ""
49
  "In order to adjust the number of decimal places you want to use we must "
50
  "update your log. It is highly recommended that you backup your current log "
51
  "before continuing!"
52
  msgstr ""
53
 
54
+ #: ../abstracts/mycred-abstract-hook.php:284
55
+ msgid "/ Day"
56
+ msgstr ""
 
 
 
 
57
 
58
+ #: ../abstracts/mycred-abstract-hook.php:285
59
+ msgid "/ Week"
60
  msgstr ""
 
 
61
 
62
+ #: ../abstracts/mycred-abstract-hook.php:286
63
+ msgid "/ Month"
64
+ msgstr ""
65
 
66
+ #: ../abstracts/mycred-abstract-hook.php:287
67
+ msgid "in Total"
68
+ msgstr ""
 
 
69
 
70
+ #: ../modules/mycred-module-settings.php:246
71
+ msgid "Invalid decimal value."
72
+ msgstr ""
 
 
 
73
 
74
+ #: ../modules/mycred-module-settings.php:293
75
+ msgid "Log Updated"
 
 
76
  msgstr ""
 
 
77
 
78
+ #: ../modules/mycred-module-settings.php:423
79
+ msgid "Update Database"
80
+ msgstr ""
81
 
82
+ #: ../modules/mycred-module-settings.php:424
83
+ msgid "Zero for no decimals or maximum 20."
84
+ msgstr ""
 
 
85
 
86
+ #: ../modules/mycred-module-settings.php:427
87
+ msgid ""
88
+ "As this is your main point type, the value you select here will be the "
89
+ "largest number of decimals your installation will support."
90
  msgstr ""
91
 
92
+ #: ../modules/mycred-module-settings.php:440 ../modules/mycred-module-settings.
93
+ #: php:453
94
+ msgid "No decimals"
95
  msgstr ""
96
 
97
+ #: ../modules/mycred-module-settings.php:465
98
+ #, php-format
99
+ msgid "<a href=\"%s\">Click here</a> to change your default point types setup."
100
  msgstr ""
101
 
102
+ #: ../modules/mycred-module-settings.php:725
103
+ msgid ""
104
+ "The meta key must be lowercase and only contain letters or underscores. All "
105
+ "other characters will be deleted!"
106
  msgstr ""
107
 
108
+ #: ../modules/mycred-module-addons.php:260
109
+ msgid ""
110
+ "Gives you access to your myCRED Staticstics based on your users gains and "
111
+ "loses."
112
+ msgstr ""
113
 
114
+ #: ../modules/mycred-module-addons.php:328
115
+ msgid "Add-ons Reloaded"
116
+ msgstr ""
117
 
118
+ #: ../modules/mycred-module-addons.php:358
119
+ msgid "Reload Add-ons"
120
+ msgstr ""
121
 
122
+ #: ../modules/mycred-module-log.php:422
123
+ msgid ""
124
+ "Warning. The required Mcrypt PHP Library is not installed on this server! "
125
+ "Certain hooks and shortcodes will not work correctly!"
126
+ msgstr ""
 
 
 
 
127
 
128
+ #: ../plugins/mycred-hook-wp-postratings.php:18
129
+ msgid "Post Ratings"
130
+ msgstr ""
131
 
132
+ #: ../plugins/mycred-hook-wp-postratings.php:19
133
+ #, php-format
134
+ msgid ""
135
+ "Awards %_plural% for post ratings. Supports awarding %_plural% both to post "
136
+ "author and the user rating."
137
+ msgstr ""
138
 
139
+ #: ../plugins/mycred-hook-wp-postratings.php:76
140
+ msgid "Based on rating"
141
+ msgstr ""
142
 
143
+ #: ../plugins/mycred-hook-wp-postratings.php:150 ../includes/mycred-functions.php:
144
+ #: 2599
145
+ msgid "Adding a Rating"
146
+ msgstr ""
147
 
148
+ #: ../plugins/mycred-hook-wp-postratings.php:160 ../plugins/mycred-hook-wp-
149
+ #: postratings.php:179
150
+ msgid "Use the Rating Value instead of the amount set here."
151
+ msgstr ""
152
 
153
+ #: ../plugins/mycred-hook-wp-postratings.php:169 ../includes/mycred-functions.php:
154
+ #: 2600
155
+ msgid "Receiving a Rating"
156
+ msgstr ""
 
 
 
 
157
 
158
+ #: ../plugins/mycred-hook-buddypress.php:519
159
  #, php-format
160
+ msgid "%plural% for Removing Profile Update"
161
  msgstr ""
162
 
163
+ #: ../plugins/mycred-hook-buddypress.php:563
164
  #, php-format
165
+ msgid ""
166
+ "Users with zero balance can not add friends. Requires that you deduct "
167
+ "%_plural% for adding a new friend."
168
+ msgstr ""
 
 
169
 
170
+ #: ../plugins/mycred-hook-affiliatewp.php:18
171
+ msgid "AffiliateWP"
172
  msgstr ""
173
 
174
+ #: ../plugins/mycred-hook-affiliatewp.php:19
175
  #, php-format
176
+ msgid ""
177
+ "Awards %_plural% for affiliate signups, referring visitors and store sale "
178
+ "referrals."
179
+ msgstr ""
180
 
181
+ #: ../plugins/mycred-hook-affiliatewp.php:218
182
+ msgid "Affiliate Signup"
183
+ msgstr ""
184
 
185
+ #: ../plugins/mycred-hook-affiliatewp.php:248
186
+ msgid "Referring Sales"
187
+ msgstr ""
 
 
 
188
 
189
+ #: ../plugins/mycred-hook-affiliatewp.php:251
190
+ msgid "Pay a set amount for all referrals."
191
+ msgstr ""
192
 
193
+ #: ../plugins/mycred-hook-affiliatewp.php:252
194
+ #, php-format
195
+ msgid "AffiliateWP will use %plural% as currency so pay the referral amount."
196
+ msgstr ""
197
 
198
+ #: ../plugins/mycred-hook-affiliatewp.php:253
199
+ msgid "Apply an exchange rate against the referral amount."
200
+ msgstr ""
201
 
202
+ #: ../plugins/mycred-hook-affiliatewp.php:261
203
+ msgid "Log template - Payout"
204
+ msgstr ""
205
 
206
+ #: ../plugins/mycred-hook-affiliatewp.php:266
207
+ msgid "Log template - Refund"
208
+ msgstr ""
209
 
210
+ #: ../plugins/mycred-hook-wp-favorite-posts.php:225
211
+ msgid "Authors Content added to favorites"
212
+ msgstr ""
213
 
214
+ #: ../plugins/mycred-hook-wp-favorite-posts.php:256
215
+ msgid "Removing Content from Favorites (Author)"
216
+ msgstr ""
217
 
218
+ #: ../includes/mycred-log.php:628
219
+ msgid "User ID, Username, Email or Nicename"
220
+ msgstr ""
 
221
 
222
+ #: ../includes/mycred-remote.php:555
223
+ msgid "16, 24 or 32 characters"
224
+ msgstr ""
225
 
226
+ #: ../includes/mycred-shortcodes.php:1065
227
+ msgid "No instances found for this point type"
228
+ msgstr ""
229
 
230
+ #: ../includes/mycred-shortcodes.php:1069
231
+ msgid "Invalid point type"
232
+ msgstr ""
 
233
 
234
+ #: ../includes/mycred-shortcodes.php:1130
235
+ msgid "Instance"
236
+ msgstr ""
237
 
238
+ #: ../includes/mycred-install.php:508
239
+ msgid "Use zero for no decimals or maximum 20."
240
+ msgstr ""
 
 
 
241
 
242
+ #: ../includes/mycred-functions.php:2536
243
+ msgid "Profile Update Removal"
244
+ msgstr ""
245
 
246
+ #: ../includes/mycred-functions.php:2592
247
+ msgid "Affiliate Signup (AffiliateWP)"
248
+ msgstr ""
249
 
250
+ #: ../includes/mycred-functions.php:2593
251
+ msgid "Referred Visit (AffiliateWP)"
252
  msgstr ""
253
 
254
+ #: ../includes/mycred-functions.php:2594
255
+ msgid "Affiliate Referral (AffiliateWP)"
256
+ msgstr ""
257
 
258
+ #: ../includes/mycred-functions.php:2595
259
+ msgid "Referral Refund (AffiliateWP)"
260
+ msgstr ""
261
 
262
+ #: ../includes/mycred-functions.php:2631
263
+ msgid "Store Reward (WooCommerce)"
264
+ msgstr ""
265
 
266
+ #: ../includes/mycred-functions.php:2632
267
+ msgid "Product Review (WooCommerce)"
268
+ msgstr ""
269
 
270
+ #: ../includes/mycred-functions.php:2636
271
+ msgid "Store Reward (MarketPress)"
272
+ msgstr ""
 
 
273
 
274
+ #: ../includes/mycred-functions.php:2851
275
+ msgid "per day"
276
+ msgstr ""
 
277
 
278
+ #: ../includes/mycred-functions.php:2853
279
+ msgid "per week"
280
+ msgstr ""
281
 
282
+ #: ../includes/mycred-functions.php:2855
283
+ msgid "per month"
284
+ msgstr ""
 
 
285
 
286
+ #: ../includes/mycred-functions.php:2857
287
+ msgid "in total"
 
 
288
  msgstr ""
289
 
290
+ #: ../includes/mycred-functions.php:2859 ../includes/mycred-functions.php:2863
291
+ #, php-format
292
+ msgid "Maximum once"
293
+ msgid_plural "Maximum %d times"
294
+ msgstr[0] ""
295
+ msgstr[1] ""
296
+
297
+ #. Description of the plugin
298
+ msgid ""
299
+ "Let your users pay using their <strong>my</strong>CRED points balance. "
300
+ "Supported Carts: WooCommerce, MarketPress and WP E-Commerce. Supported Event "
301
+ "Bookings: Event Espresso, Events Manager."
302
  msgstr ""
303
 
304
+ #: ../addons/gateway/carts/mycred-woocommerce.php:360
 
305
  #, php-format
306
+ msgctxt "%s = Point amount formatted"
307
+ msgid "Refunded %s"
308
  msgstr ""
309
 
310
+ #. Description of the plugin
311
+ msgid ""
312
+ "Award your users rank based on their current or total balance. Supports "
313
+ "multiple point types."
314
  msgstr ""
315
 
316
+ #: ../addons/ranks/myCRED-addon-ranks.php:441
317
+ #, php-format
318
+ msgid "Ranks for %s"
319
+ msgstr ""
320
 
321
+ #: ../addons/ranks/myCRED-addon-ranks.php:1024
322
+ #, php-format
323
+ msgid "<strong>Rank:</strong> %s"
324
  msgstr ""
325
 
326
+ #: ../addons/ranks/myCRED-addon-ranks.php:1388
327
+ msgid ""
328
+ "Use this button to calculate or recalculate your users totals. If not used, "
329
+ "the users current balance will be used as a starting point."
330
  msgstr ""
331
 
332
+ #: ../addons/ranks/myCRED-addon-ranks.php:1430 ../addons/ranks/myCRED-addon-ranks.
333
+ #: php:1475
334
+ #, php-format
335
+ msgid ""
336
+ "Template to use when showing a users Rank in BuddyPress. Use %rank_title% "
337
+ "for the title and %rank_logo% to show the rank logo. HTML is allowed."
338
  msgstr ""
339
 
340
+ #: ../addons/ranks/myCRED-addon-ranks.php:1452
341
+ msgid "Include in Topic Replies"
 
342
  msgstr ""
343
 
344
+ #: ../addons/ranks/myCRED-addon-ranks.php:1454
345
+ msgid "Include in Topic Replies and Profile"
346
+ msgstr ""
347
 
348
+ #: ../addons/ranks/myCRED-addon-ranks.php:1458
349
+ msgid "Rank in bbPress"
350
+ msgstr ""
 
 
351
 
352
+ #: ../addons/ranks/includes/mycred-rank-shortcodes.php:145
353
+ msgid "Rank not found. Please check the id and try again."
354
+ msgstr ""
 
355
 
356
+ #. Description of the plugin
357
+ msgid "Notify your users when their balances changes."
358
+ msgstr ""
 
359
 
360
+ #: ../addons/notifications/myCRED-addon-notifications.php:205
361
+ msgid "Restore to default"
362
+ msgstr ""
 
363
 
364
+ #: ../addons/notifications/myCRED-addon-notifications.php:219
365
+ msgid ""
366
+ "Number of seconds before a notice is automatically removed after being shown "
367
+ "to user. Use zero to disable."
368
  msgstr ""
369
 
370
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:211
371
+ msgid "Badge Add-on"
372
+ msgstr ""
 
373
 
374
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:212
375
+ msgid "user gains a badge"
376
+ msgstr ""
377
 
378
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:719
379
+ #, php-format
380
+ msgctxt "Badge Title - Level 1,2,3.."
381
+ msgid "%s - Level %d"
382
+ msgstr ""
383
 
384
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:880 ../addons/email-
385
+ #: notices/myCRED-addon-email-notices.php:1037
386
+ msgid "All types"
387
  msgstr ""
388
 
389
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:1100
390
+ msgid "The users new balance"
 
 
391
  msgstr ""
392
 
393
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:1101
394
+ msgid "The users old balance"
395
  msgstr ""
396
 
397
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:1102
398
+ msgid "The amount of points gained or lost in this instance"
 
399
  msgstr ""
400
 
401
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:1103
402
+ msgid "The log entry"
403
  msgstr ""
404
 
405
+ #: ../addons/stats/myCRED-addon-stats.php:54
406
+ msgid "Statistics"
407
  msgstr ""
408
 
409
+ #: ../addons/stats/myCRED-addon-stats.php:126
410
+ msgid "Overview"
411
+ msgstr ""
 
412
 
413
+ #: ../addons/stats/myCRED-addon-stats.php:192
414
+ msgid "Refresh"
415
+ msgstr ""
 
416
 
417
+ #: ../addons/stats/myCRED-addon-stats.php:248
418
+ msgid "Your log is empty. No statistics can be shown."
419
+ msgstr ""
420
+
421
+ #: ../addons/stats/widgets/mycred-stats-widget-circulation.php:44
422
  #, php-format
423
+ msgid "Total %s:"
424
  msgstr ""
425
 
426
+ #: ../addons/stats/widgets/mycred-stats-widget-circulation.php:138
427
  #, php-format
428
+ msgid "Total amount of %s in circulation"
 
429
  msgstr ""
430
 
431
+ #: ../addons/stats/widgets/mycred-stats-widget-circulation.php:170
432
+ msgid "Total gains (%)"
433
+ msgstr ""
434
+
435
+ #: ../addons/stats/widgets/mycred-stats-widget-circulation.php:174
436
+ msgid "Total loses (%)"
437
+ msgstr ""
438
+
439
+ #: ../addons/stats/widgets/mycred-stats-widget-circulation.php:178
440
  #, php-format
441
+ msgid "Total Gained: %s"
442
+ msgstr ""
 
 
443
 
444
+ #: ../addons/stats/widgets/mycred-stats-widget-circulation.php:178
445
  #, php-format
446
+ msgid "Total Spent: %s"
447
+ msgstr ""
 
448
 
449
+ #: ../addons/stats/widgets/mycred-stats-widget-circulation.php:192
450
+ msgid "This Year"
451
+ msgstr ""
 
452
 
453
+ #: ../addons/stats/widgets/mycred-stats-widget-circulation.php:196 ..
454
+ #: addons/stats/widgets/mycred-stats-widget-circulation.php:198 ..
455
+ #: addons/stats/widgets/mycred-stats-widget-circulation.php:200 ..
456
+ #: addons/stats/widgets/mycred-stats-widget-circulation.php:202
457
+ msgid "Gained"
458
+ msgstr ""
459
 
460
+ #: ../addons/stats/widgets/mycred-stats-widget-circulation.php:197 ..
461
+ #: addons/stats/widgets/mycred-stats-widget-circulation.php:199 ..
462
+ #: addons/stats/widgets/mycred-stats-widget-circulation.php:201 ..
463
+ #: addons/stats/widgets/mycred-stats-widget-circulation.php:203
464
+ msgid "Lost"
 
465
  msgstr ""
 
 
 
466
 
467
+ #: ../addons/stats/widgets/mycred-stats-widget-daily-loses.php:118
468
+ msgid "Most common ways your users have lost or spent points during this period."
469
+ msgstr ""
 
470
 
471
+ #: ../addons/stats/widgets/mycred-stats-widget-daily-loses.php:120
472
  #, php-format
473
+ msgid "Most common ways your users have lost or spent %_plural% during this period."
474
  msgstr ""
 
 
475
 
476
+ #: ../addons/stats/widgets/mycred-stats-widget-daily-loses.php:127
477
+ msgid "Loses in the last 10 days"
478
+ msgstr ""
479
 
480
+ #: ../addons/stats/widgets/mycred-stats-widget-daily-loses.php:151 ..
481
+ #: addons/stats/widgets/mycred-stats-widget-daily-gains.php:151
482
+ msgid "View"
483
+ msgstr ""
484
 
485
+ #: ../addons/stats/widgets/mycred-stats-widget-daily-loses.php:166 ..
486
+ #: addons/stats/widgets/mycred-stats-widget-daily-gains.php:166
487
+ msgid "No data found"
488
+ msgstr ""
 
 
 
 
489
 
490
+ #: ../addons/stats/widgets/mycred-stats-widget-daily-gains.php:118
491
+ msgid "Most common ways your users have gained points during this period."
492
+ msgstr ""
493
+
494
+ #: ../addons/stats/widgets/mycred-stats-widget-daily-gains.php:120
495
  #, php-format
496
+ msgid "Most common ways your users have gained %_plural% during this period."
497
+ msgstr ""
498
 
499
+ #: ../addons/stats/widgets/mycred-stats-widget-daily-gains.php:127
500
+ msgid "Gains in the last 10 days"
501
+ msgstr ""
502
 
503
+ #: ../addons/badges/myCRED-addon-badges.php:169
504
+ #, php-format
505
+ msgid "Badges (%d)"
506
+ msgstr ""
507
 
508
+ #: ../addons/badges/myCRED-addon-badges.php:287
509
+ msgid "No connections where removed."
510
+ msgstr ""
511
 
512
+ #: ../addons/badges/myCRED-addon-badges.php:555
513
+ msgid "Badge Setup"
514
+ msgstr ""
 
515
 
516
+ #: ../addons/badges/myCRED-addon-badges.php:684 ../addons/badges/myCRED-addon-
517
+ #: badges.php:742 ../addons/badges/myCRED-addon-badges.php:773 ..
518
+ #: addons/badges/myCRED-addon-badges.php:831
519
+ msgid "Add Image"
520
+ msgstr ""
521
 
522
+ #: ../addons/badges/myCRED-addon-badges.php:685
523
+ msgid "Optional image to show when a user has not yet earned this badge."
524
+ msgstr ""
525
 
526
+ #: ../addons/badges/myCRED-addon-badges.php:704 ../addons/badges/myCRED-addon-
527
+ #: badges.php:756
528
+ #, php-format
529
+ msgid "Level %d"
530
+ msgstr ""
531
 
532
+ #: ../addons/badges/myCRED-addon-badges.php:709 ../addons/badges/myCRED-addon-
533
+ #: badges.php:761 ../addons/badges/myCRED-addon-badges.php:831
534
+ msgid "for"
535
+ msgstr ""
536
 
537
+ #: ../addons/badges/myCRED-addon-badges.php:774 ../addons/badges/myCRED-addon-
538
+ #: badges.php:831
539
+ msgid "Leave empty if you do not want to assign a custom image for this level."
540
+ msgstr ""
541
 
542
+ #: ../addons/badges/myCRED-addon-badges.php:774 ../addons/badges/myCRED-addon-
543
+ #: badges.php:831
544
+ msgid "Remove this level"
545
+ msgstr ""
546
 
547
+ #: ../addons/badges/myCRED-addon-badges.php:788
548
+ msgid "Add Level"
549
+ msgstr ""
550
 
551
+ #: ../addons/badges/myCRED-addon-badges.php:831 ../addons/badges/myCRED-addon-
552
+ #: badges.php:1154
553
+ msgid "Level"
554
+ msgstr ""
555
 
556
+ #: ../addons/badges/myCRED-addon-badges.php:986 ../addons/badges/myCRED-addon-
557
+ #: badges.php:1017
558
+ msgid "Show all badges, including badges users have not yet earned."
559
+ msgstr ""
560
 
561
+ #: ../addons/badges/myCRED-addon-badges.php:1111
562
+ msgid "User Badges"
563
+ msgstr ""
564
 
565
+ #: ../addons/badges/myCRED-addon-badges.php:1116
566
+ msgid ""
567
+ "Here you can view the badges this user has earned and if needed, manually "
568
+ "give or take away a badge from a user."
569
  msgstr ""
 
 
570
 
571
+ #: ../addons/badges/myCRED-addon-badges.php:1125
572
+ msgid "Not earned"
573
+ msgstr ""
574
 
575
+ #: ../addons/badges/myCRED-addon-badges.php:1131 ../addons/badges/myCRED-addon-
576
+ #: badges.php:1168
577
+ msgid "Earned"
578
+ msgstr ""
579
 
580
+ #: ../addons/badges/myCRED-addon-badges.php:1143
581
+ msgid "No image"
582
+ msgstr ""
583
 
584
+ #: ../addons/badges/myCRED-addon-badges.php:1150
585
+ msgid "Select a level"
586
+ msgstr ""
587
+
588
+ #: ../addons/badges/includes/mycred-badge-functions.php:68
589
  #, php-format
590
+ msgid "Level %s"
591
+ msgstr ""
592
 
593
+ #: ../addons/badges/includes/mycred-badge-functions.php:71
594
+ #, php-format
595
+ msgctxt "\"Points\" for \"reference\" \"x time(s)\" - Level"
596
+ msgid "%s for %s %s - %s"
597
+ msgstr ""
598
 
599
+ #: ../addons/badges/includes/mycred-badge-functions.php:71 ..
600
+ #: addons/coupons/myCRED-addon-coupons.php:221 ../addons/coupons/myCRED-addon-
601
+ #: coupons.php:516
602
+ #, php-format
603
+ msgid "1 time"
604
+ msgid_plural "%d times"
605
+ msgstr[0] ""
606
+ msgstr[1] ""
607
 
608
+ #. Description of the plugin
609
+ msgid "Create coupons that your users can use to add points to their accounts."
610
+ msgstr ""
611
 
612
+ #: ../addons/coupons/myCRED-addon-coupons.php:174
613
+ msgid "Used"
614
+ msgstr ""
 
615
 
616
+ #. Description of the plugin
617
+ msgid ""
618
+ "The <strong>buy</strong>CRED Add-on allows your users to buy points using "
619
+ "PayPal, Skrill (Moneybookers), Zombaio or NETbilling. "
620
+ "<strong>buy</strong>CRED can also let your users buy points for other "
621
+ "members."
622
+ msgstr ""
623
 
624
+ #: ../addons/buy-creds/gateways/paypal-standard.php:263
625
+ #, php-format
626
+ msgctxt "Return label. %s = Website name"
627
+ msgid "Return to %s"
628
+ msgstr ""
629
 
630
+ msgid "myCRED"
631
+ msgstr "myCRED"
 
632
 
633
+ #: ../mycred.php:462
634
+ msgid "Balance"
635
+ msgstr "Saldo"
636
 
637
+ #: ../mycred.php:487
638
+ msgid "%label% History"
639
+ msgstr "%label% Historial"
 
640
 
641
+ #: ../mycred.php:581
642
+ #, php-format
643
+ msgid "About %s"
644
+ msgstr "Sobre"
645
 
646
+ #: ../mycred.php:590
647
+ msgid "Awesome People"
648
+ msgstr "Gente genial"
 
649
 
650
+ #: ../mycred.php:678 ../mycred.php:703 ../mycred.php:721 ../includes/mycred-
651
+ #: shortcodes.php:640 ../addons/gateway/event-booking/mycred-eventsmanager.php:
652
+ #: 478 ../addons/transfer/myCRED-addon-transfer.php:146 ../addons/ranks/myCRED-
653
+ #: addon-ranks.php:423 ../addons/ranks/myCRED-addon-ranks.php:1523 ..
654
+ #: addons/badges/myCRED-addon-badges.php:605 ../addons/sell-content/myCRED-addon-
655
+ #: sell-content.php:371
656
+ msgid "Processing..."
657
+ msgstr "Procesando..."
658
 
659
+ #: ../mycred.php:679
660
+ msgid ""
661
+ "Warning! All entries in your log will be permanently removed! This can not "
662
+ "be undone!"
663
+ msgstr ""
664
+ "¡Aviso! Todas las entradas en su registro seran permanentemente borrado! "
665
+ "¡Esto no se puede deshacer!"
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
666
 
667
+ #: ../mycred.php:680
668
+ msgid ""
669
+ "All log entries belonging to deleted users will be permanently deleted! This "
670
+ "can not be undone!"
671
+ msgstr ""
672
+ "¡Todas las entradas de registro perteneciendo al usuario seran "
673
+ "permanentemente borradas! ¡Esto no se puede deshacer!"
674
 
675
+ #: ../mycred.php:681
676
+ msgid "Warning! All user balances will be set to zero! This can not be undone!"
677
+ msgstr ""
678
+ "¡Aviso! ¡Todo los saldos del usuario seran puesto a cero! ¡Esto no se puede "
679
+ "deshacer!"
680
 
681
+ #: ../mycred.php:682
682
+ msgid "Done!"
683
+ msgstr "¡Realizado!"
 
684
 
685
+ #: ../mycred.php:683 ../mycred.php:702 ../mycred.php:720
686
+ msgid "Close"
687
+ msgstr "Cerrar"
 
688
 
689
+ #: ../mycred.php:684
690
+ #, php-format
691
+ msgid "Export users %plural%"
692
+ msgstr "Exportar usuarios %plural%"
693
 
694
+ #: ../mycred.php:701
695
+ msgid "Edit Users Balance"
696
+ msgstr "Editar saldo del usuario"
697
 
698
+ #: ../mycred.php:719
699
+ msgid "Edit Log Entry"
700
+ msgstr "Edidar entrada de registro"
701
 
702
+ #: ../mycred.php:723
703
+ msgid "Are you sure you want to delete this log entry? This can not be undone!"
704
+ msgstr ""
705
+ "¿Esta seguro que quiere borrar esta entrada de registro? ¡Esto no se puede "
706
+ "deshacer!"
707
 
708
+ #: ../mycred.php:724
709
+ msgid "Log entry updated"
710
+ msgstr "Entrada de registro actualizado"
 
 
711
 
712
+ #: ../mycred.php:781 ../mycred.php:803 ../addons/gateway/event-booking/mycred-
713
+ #: eventsmanager.php:537 ../addons/gateway/event-booking/mycred-eventsmanager-pro.
714
+ #: php:499 ../addons/email-notices/myCRED-addon-email-notices.php:811
715
+ msgid "Setup"
716
+ msgstr "Configurar"
717
 
718
+ #: ../mycred.php:783 ../modules/mycred-module-settings.php:21 ../modules/mycred-
719
+ #: module-settings.php:22 ../modules/mycred-module-settings.php:23 ..
720
+ #: includes/mycred-network.php:170 ../addons/gateway/carts/mycred-marketpress.
721
+ #: php:371 ../addons/stats/abstracts/mycred-abstract-stat-widget.php:108
722
+ msgid "Settings"
723
+ msgstr "Configuraciones"
724
 
725
+ #: ../mycred.php:826
726
+ msgid ""
727
+ "Make sure to backup your database and files before updating, in case "
728
+ "anything goes wrong!"
729
+ msgstr ""
730
+ "Antes de actualizar, asegura crear copias de seguridad de su base de datos y "
731
+ "archivo, por si acaso!"
732
 
733
+ #: ../abstracts/mycred-abstract-hook.php:90
734
+ msgid "This Hook has no settings"
735
+ msgstr "Este gancho no ha sido configurado"
736
 
737
+ #: ../abstracts/mycred-abstract-hook.php:283 ../abstracts/mycred-abstract-hook.
738
+ #: php:354 ../modules/mycred-module-hooks.php:1816 ../includes/mycred-functions.
739
+ #: php:2845
740
+ msgid "No limit"
741
+ msgstr "Sin Limite"
742
 
743
+ #: ../abstracts/mycred-abstract-hook.php:355
744
+ msgid "Once every 24 hours"
745
+ msgstr "Una vez cada 24 horas"
746
 
747
+ #: ../abstracts/mycred-abstract-hook.php:356
748
+ msgid "Once every 7 days"
749
+ msgstr "Una vez cada 7 dias"
 
 
750
 
751
+ #: ../abstracts/mycred-abstract-hook.php:357
752
+ msgid "Once per day (reset at midnight)"
753
+ msgstr "Una vez al dia (reinicializado al medianoche)"
754
 
755
+ #: ../abstracts/mycred-abstract-hook.php:364 ../addons/banking/abstracts/mycred-
756
+ #: abstract-service.php:498 ../addons/email-notices/myCRED-addon-email-notices.
757
+ #: php:198 ../addons/email-notices/myCRED-addon-email-notices.php:992 ..
758
+ #: addons/buy-creds/myCRED-addon-buy-creds.php:696 ../addons/buy-creds/myCRED-
759
+ #: addon-buy-creds.php:719 ../addons/buy-creds/abstracts/mycred-abstract-payment-
760
+ #: gateway.php:1023 ../addons/buy-creds/abstracts/mycred-abstract-payment-gateway.
761
+ #: php:1046 ../addons/buy-creds/gateways/zombaio.php:356
762
+ msgid "Select"
763
+ msgstr "Seleccionar"
764
 
765
+ #: ../abstracts/mycred-abstract-module.php:400 ../abstracts/mycred-abstract-
766
+ #: module.php:410
767
+ msgid "Surprise"
768
+ msgstr "Sorpresa"
769
 
770
+ #: ../abstracts/mycred-abstract-module.php:511 ../includes/mycred-network.php:93
771
+ msgid "click to close"
772
+ msgstr "haga clic para cerrar"
 
 
 
 
 
 
773
 
774
+ #: ../abstracts/mycred-abstract-module.php:512 ../includes/mycred-network.php:94
775
+ msgid "click to open"
776
+ msgstr "haga clic para abrir"
 
777
 
778
+ #: ../abstracts/mycred-abstract-module.php:545 ../addons/buy-creds/myCRED-addon-
779
+ #: buy-creds.php:927
780
+ msgid "Settings Updated"
781
+ msgstr "Configuraciones Actualizadas"
782
 
783
+ #: ../modules/mycred-module-settings.php:66 ../modules/mycred-module-settings.php:
784
+ #: 109 ../modules/mycred-module-log.php:207 ../modules/mycred-module-log.php:230
785
+ msgid "Access denied for this action"
786
+ msgstr "Acceso denegado para esta acción"
787
 
788
+ #: ../modules/mycred-module-settings.php:70 ../modules/mycred-module-settings.php:
789
+ #: 113 ../modules/mycred-module-settings.php:166
790
+ msgid "Missing point type"
791
+ msgstr "Falta el clase de punto (\"point type\")"
792
 
793
+ #: ../modules/mycred-module-settings.php:144
794
+ msgid "Accounts successfully reset"
795
+ msgstr "Las cuentas fueron reiniciadas con éxito."
 
 
 
 
 
 
 
796
 
797
+ #: ../modules/mycred-module-settings.php:196
798
+ msgid "No users found to export"
799
+ msgstr "No se encontro usuarios para exportar"
 
800
 
801
+ #: ../modules/mycred-module-settings.php:427 ../modules/mycred-module-settings.
802
+ #: php:528
803
+ msgid "Tip"
804
+ msgstr "Pista"
805
 
806
+ #: ../modules/mycred-module-settings.php:484 ../modules/mycred-module-addons.php:
807
+ #: 303 ../modules/mycred-module-log.php:358 ../modules/mycred-module-log.php:647 .
808
+ #: ./modules/mycred-module-hooks.php:193 ../includes/mycred-network.php:141 ..
809
+ #: includes/mycred-admin.php:584 ../addons/banking/myCRED-addon-banking.php:219 .
810
+ #: ./addons/stats/myCRED-addon-stats.php:182 ../addons/buy-creds/myCRED-addon-buy-
811
+ #: creds.php:916 ../addons/buy-creds/myCRED-addon-buy-creds.php:1022
812
+ msgid "Access Denied"
813
+ msgstr "Acceso Denegado"
814
 
815
+ #: ../modules/mycred-module-settings.php:503
816
+ #, php-format
817
+ msgid "%s Settings"
818
+ msgstr "Configuración de %s"
819
 
820
+ #: ../modules/mycred-module-settings.php:507
821
+ msgid "Adjust your core or add-on settings."
822
+ msgstr "Ajustar las configuraciones de tu nucleo o de las extensiones."
823
 
824
+ #: ../modules/mycred-module-settings.php:513
825
+ msgid "Core Settings"
826
+ msgstr "Ajustes Basicos"
 
827
 
828
+ #: ../modules/mycred-module-settings.php:515
829
+ msgid "Name"
830
+ msgstr "Nombre"
831
 
832
+ #: ../modules/mycred-module-settings.php:518 ../includes/mycred-install.php:514
833
+ msgid "Name (Singular)"
834
+ msgstr "Nombre (singular)"
 
835
 
836
+ #: ../modules/mycred-module-settings.php:520
837
+ #, php-format
838
+ msgid "Accessible though the %singular% template tag."
839
+ msgstr "Acesible a través de la etiqueta de la plantilla del %singular%."
840
 
841
+ #: ../modules/mycred-module-settings.php:523 ../includes/mycred-install.php:518
842
+ msgid "Name (Plural)"
843
+ msgstr "Nombre (plural)"
 
 
844
 
845
+ #: ../modules/mycred-module-settings.php:525
846
+ #, php-format
847
+ msgid "Accessible though the %plural% template tag."
848
+ msgstr "Acesible a través de la etiqueta de la plantilla del %singular%."
 
849
 
850
+ #: ../modules/mycred-module-settings.php:528
851
+ msgid ""
852
+ "Adding an underscore at the beginning of template tag for names will return "
853
+ "them in lowercase. i.e. %_singular%"
854
+ msgstr ""
855
+ "Añadiendo un guión bajo al principio de la etiqueta de la plantilla para "
856
+ "nombres los cnovertira en minúsculas. Por ejemplo %_singular%"
857
 
858
+ #: ../modules/mycred-module-settings.php:531 ../includes/mycred-install.php:506
859
+ msgid "Decimals"
860
+ msgstr "Decimales"
861
 
862
+ #: ../modules/mycred-module-settings.php:537 ../includes/mycred-install.php:511
863
+ msgid "Presentation"
864
+ msgstr "Presentación"
865
 
866
+ #: ../modules/mycred-module-settings.php:540 ../includes/mycred-install.php:524
867
+ msgid "Prefix"
868
+ msgstr "Prefijo"
 
869
 
870
+ #: ../modules/mycred-module-settings.php:548 ../includes/mycred-install.php:532
871
+ msgid "Suffix"
872
+ msgstr "Sufijo"
 
 
 
873
 
874
+ #: ../modules/mycred-module-settings.php:552
875
+ msgid "Separator"
876
+ msgstr "Separador"
877
+
878
+ #: ../modules/mycred-module-settings.php:556 ../includes/mycred-install.php:568
879
+ msgid "Security"
880
+ msgstr "Seguridad"
881
+
882
+ #: ../modules/mycred-module-settings.php:559
883
+ msgid "Edit Settings"
884
+ msgstr "Editar las Configuraciones"
885
 
886
+ #. or "Verificar la capacidad de"
887
+ #: ../modules/mycred-module-settings.php:561 ../modules/mycred-module-settings.
888
+ #: php:566
889
+ msgid "Capability to check for."
890
+ msgstr "La capacidad que se va a verificar."
891
+
892
+ #: ../modules/mycred-module-settings.php:564
893
  #, php-format
894
+ msgid "Edit Users %plural%"
895
+ msgstr "Edita %plural% de Usuarios"
896
 
897
+ #: ../modules/mycred-module-settings.php:569 ../includes/mycred-install.php:579
898
+ #, php-format
899
+ msgid "Maximum %plural% payouts"
900
+ msgstr "Desembolso %plural% Máximo"
901
 
902
+ #: ../modules/mycred-module-settings.php:571 ../includes/mycred-install.php:581
903
+ msgid ""
904
+ "As an added security, you can set the maximum amount a user can gain or "
905
+ "loose in a single instance. If used, make sure this is the maximum amount a "
906
+ "user would be able to transfer, buy, or spend in your store. Use zero to "
907
+ "disable."
908
  msgstr ""
909
+ "Como mayor seguridad, puedes configurar la cantidad máxima que un usuario "
910
+ "puede ganar o perder en una sola instancia. Si se utiliza esto, asegurate "
911
+ "que es tambien la máxima cantidad que el usuario puede transferir, comprar, "
912
+ "o gastar en tu tienda. Ponga zero para desactivar."
913
 
914
+ #: ../modules/mycred-module-settings.php:574 ../includes/mycred-install.php:584
915
+ msgid "Excludes"
916
+ msgstr "Excluye"
 
 
917
 
918
+ #: ../modules/mycred-module-settings.php:578 ../includes/mycred-install.php:588
919
+ msgid "Exclude those who can \"Edit Settings\"."
920
+ msgstr "Excluir a los que puedan \"Editar las Configuraciones\"."
 
 
921
 
922
+ #: ../modules/mycred-module-settings.php:582 ../includes/mycred-install.php:592
923
+ #, php-format
924
+ msgid "Exclude those who can \"Edit Users %plural%\"."
925
+ msgstr "Excluir a los que pueden \"Editar los %plural% de Usuarios\"."
926
 
927
+ #: ../modules/mycred-module-settings.php:586 ../includes/mycred-install.php:595
928
+ msgid "Exclude the following user IDs:"
929
+ msgstr "Excluir a los siguientes IDs de usuarios"
930
 
931
+ #: ../modules/mycred-module-settings.php:588
932
+ msgid "Comma separated list of user ids to exclude. No spaces allowed!"
933
+ msgstr ""
934
+ "Lista separada por comas de los IDs de usuario para excluir. ¡No se permiten "
935
+ "espacios!"
936
 
937
+ #: ../modules/mycred-module-settings.php:591 ../includes/mycred-install.php:599
938
+ msgid "User Deletions"
939
+ msgstr "Eliminación de Usuarios"
 
940
 
941
+ #: ../modules/mycred-module-settings.php:594 ../includes/mycred-install.php:603
942
+ msgid "Delete log entries when user is deleted."
943
+ msgstr "Elimina las entradas de registro cuando se elimina el usuario."
 
944
 
945
+ #: ../modules/mycred-module-settings.php:612
946
+ msgid "Management"
947
+ msgstr "Gestión"
948
 
949
+ #: ../modules/mycred-module-settings.php:614
950
+ msgid "The Log"
951
+ msgstr "El Registro"
952
 
953
+ #: ../modules/mycred-module-settings.php:617
954
+ msgid "Table Name"
955
+ msgstr "Nombre de Tabla"
956
 
957
+ #: ../modules/mycred-module-settings.php:621 ../modules/mycred-module-log.php:316
958
+ msgid "Entries"
959
+ msgstr "Entradas"
 
960
 
961
+ #: ../modules/mycred-module-settings.php:625 ../modules/mycred-module-settings.
962
+ #: php:640 ../modules/mycred-module-log.php:407 ../addons/ranks/myCRED-addon-
963
+ #: ranks.php:1613 ../addons/buy-creds/myCRED-addon-buy-creds.php:1715
964
+ msgid "Actions"
965
+ msgstr "Acciones"
966
 
967
+ #: ../modules/mycred-module-settings.php:626
968
+ msgid "Empty Log"
969
+ msgstr "Registro Vacío"
 
970
 
971
+ #: ../modules/mycred-module-settings.php:632 ../addons/ranks/myCRED-addon-ranks.
972
+ #: php:1605
973
+ msgid "User Meta Key"
974
+ msgstr "Clave Meta del Usuario"
975
 
976
+ #: ../modules/mycred-module-settings.php:636 ../addons/ranks/myCRED-addon-ranks.
977
+ #: php:1043 ../addons/badges/myCRED-addon-badges.php:442
978
+ msgid "Users"
979
+ msgstr "Usuarios"
980
 
981
+ #: ../modules/mycred-module-settings.php:641
982
+ msgid "Set all to zero"
983
+ msgstr "Ajusta todo a cero"
984
 
985
+ #: ../modules/mycred-module-settings.php:641
986
+ msgid "CSV Export"
987
+ msgstr "Exportar CSV"
988
 
989
+ #: ../modules/mycred-module-settings.php:656 ../includes/mycred-widgets.php:600 ..
990
+ #: addons/transfer/myCRED-addon-transfer.php:211 ../addons/buy-creds/myCRED-
991
+ #: addon-buy-creds.php:652
992
+ msgid "Point Types"
993
+ msgstr "Clase de Puntos"
994
 
995
+ #: ../modules/mycred-module-settings.php:667
996
+ msgid "Default"
997
+ msgstr "Predefinido"
 
998
 
999
+ #: ../modules/mycred-module-settings.php:670 ../modules/mycred-module-settings.
1000
+ #: php:691 ../modules/mycred-module-settings.php:715
1001
+ msgid "Meta Key"
1002
+ msgstr "Clave Meta"
1003
 
1004
+ #: ../modules/mycred-module-settings.php:674 ../modules/mycred-module-settings.
1005
+ #: php:695 ../modules/mycred-module-settings.php:720 ..
1006
+ #: addons/gateway/carts/mycred-woocommerce.php:160 ../addons/email-
1007
+ #: notices/myCRED-addon-email-notices.php:1025
1008
+ msgid "Label"
1009
+ msgstr "Etiqueta"
1010
 
1011
+ #: ../modules/mycred-module-settings.php:678 ../modules/mycred-module-settings.
1012
+ #: php:699 ../modules/mycred-module-log.php:563 ../addons/gateway/event-
1013
+ #: booking/mycred-eventsmanager-pro.php:397
1014
+ msgid "Delete"
1015
+ msgstr "Borrar"
1016
 
1017
+ #: ../modules/mycred-module-settings.php:712
1018
+ msgid "Add New Type"
1019
+ msgstr "Añadir Nuevo Clase"
1020
 
1021
+ #: ../modules/mycred-module-settings.php:717
1022
+ msgid "A unique ID for this type."
1023
+ msgstr "Una ID exclusiva para este clase."
1024
+
1025
+ #: ../modules/mycred-module-settings.php:722
1026
+ msgid "Menu and page title."
1027
+ msgstr "Título del Menú y de la Página\n"
1028
 
1029
+ #: ../modules/mycred-module-settings.php:739 ../addons/gateway/event-
1030
+ #: booking/mycred-eventespresso3.php:502 ../addons/buy-creds/myCRED-addon-buy-
1031
+ #: creds.php:986
1032
  msgid "Update Settings"
1033
  msgstr "Actualizar Configuraciones"
1034
 
1035
+ #: ../modules/mycred-module-settings.php:748
1036
+ msgid "Identify users by"
1037
+ msgstr "Identifique usuarios por"
1038
 
1039
+ #: ../modules/mycred-module-settings.php:754
1040
+ msgid "User ID"
1041
+ msgstr "ID del Usuario"
 
1042
 
1043
+ #: ../modules/mycred-module-settings.php:755
1044
+ msgid "User Email"
1045
+ msgstr "Email de Usuario"
1046
 
1047
+ #: ../modules/mycred-module-settings.php:756
1048
+ msgid "User Login"
1049
+ msgstr "Ingreso de Usuario"
1050
 
1051
+ #: ../modules/mycred-module-settings.php:764
1052
+ msgid ""
1053
+ "Use ID if you intend to use this export as a backup of your current site "
1054
+ "while Email is recommended if you want to export to a different site."
1055
+ msgstr ""
1056
+ "Usa ID si deseas tener esta exportación como un respaldo de tu sitio, Usa "
1057
+ "Email si deseas exportar la data a otro sitio"
1058
 
1059
+ #: ../modules/mycred-module-settings.php:767
1060
+ msgid "Import Log Entry"
1061
+ msgstr "Importa la entrada de registro"
 
1062
 
1063
+ #: ../modules/mycred-module-settings.php:769
1064
+ #, php-format
1065
+ msgid ""
1066
+ "Optional log entry to use if you intend to import this file in a different "
1067
+ "%s installation."
1068
  msgstr ""
1069
+ "Usa la entrada de registro opcional si tiene la intención de importar este "
1070
+ "fichero en otra instalación %s."
1071
 
1072
+ #: ../modules/mycred-module-settings.php:772 ../modules/mycred-module-log.php:333
1073
+ #: ../modules/mycred-module-log.php:431 ../modules/mycred-module-log.php:701
1074
+ msgid "Export"
1075
+ msgstr "Exportar"
1076
 
1077
+ #: ../modules/mycred-module-addons.php:25 ../modules/mycred-module-addons.php:26
1078
+ msgid "Add-ons"
1079
+ msgstr "Extensiones"
 
1080
 
1081
+ #: ../modules/mycred-module-addons.php:160
1082
+ msgid "Give your users badges based on their interaction with your website."
1083
+ msgstr "Dar insignias a tus usuarios basado en sus interacciones con tu sitio web."
1084
 
1085
+ #: ../modules/mycred-module-addons.php:171
1086
+ msgid "Setup recurring payouts or offer / charge interest on user account balances."
1087
+ msgstr ""
1088
+ "Configura los pagos recurrentes u ofrecer / cobrar interés sobre los saldos "
1089
+ "de las cuentas de usuarios."
1090
 
1091
+ #: ../modules/mycred-module-addons.php:182
1092
+ msgid ""
1093
+ "The <strong>buy</strong>CRED Add-on allows your users to buy points using "
1094
+ "PayPal, Skrill (Moneybookers) or NETbilling. <strong>buy</strong>CRED can "
1095
+ "also let your users buy points for other members."
1096
+ msgstr ""
1097
+ "La Extensión <strong>compra</strong>CRED permite que tus usuarios compren "
1098
+ "puntos utilizando PayPal, Skrill (Moneybookers) o NETbilling. "
1099
+ "<strong>compra</strong>CRED tambien permite que tus usuarios compren puntos "
1100
+ "para otros miembros."
 
 
 
1101
 
1102
+ #: ../modules/mycred-module-addons.php:193
1103
+ msgid ""
1104
+ "The coupons add-on allows you to create coupons that users can use to add "
1105
+ "points to their accounts."
1106
+ msgstr ""
1107
+ "Los cupones de add-on le permite crear cupones que los usuarios pueden "
1108
+ "utilizar para agregar puntos a sus cuentas."
1109
 
1110
+ #: ../modules/mycred-module-addons.php:204
1111
+ msgid "Create email notices for any type of myCRED instance."
1112
+ msgstr ""
1113
+ "Crea avisos por correo electrónico para cualquier tipo de instancias de "
1114
+ "myCRED."
1115
 
1116
+ #: ../modules/mycred-module-addons.php:215
1117
+ msgid ""
1118
+ "Let your users pay using their <strong>my</strong>CRED points balance. "
1119
+ "Supported Carts: WooCommerce, MarketPress and WP E-Commerce. Supported Event "
1120
+ "Bookings: Event Espresso and Events Manager (free & pro)."
1121
+ msgstr ""
1122
+ "Permite que tus usuarios paguen utilizando el saldo de sus puntos "
1123
+ "<strong>my</strong>CRED. Carritos soportados: WooCommerce, MarketPress and "
1124
+ "WP E-Commerce. Reservas de Eventos soportados: Event Espresso and Events "
1125
+ "Manager (gratis y pro)."
1126
 
1127
+ #: ../modules/mycred-module-addons.php:226
1128
+ msgid "Create pop-up notifications for when users gain or loose points."
1129
+ msgstr "Crear notificaciones pop-up cuando los usuarios ganan o pierden puntos."
1130
 
1131
+ #: ../modules/mycred-module-addons.php:238
1132
+ msgid ""
1133
+ "Create ranks for users reaching a certain number of %_plural% with the "
1134
+ "option to add logos for each rank."
1135
+ msgstr ""
1136
+ "Crear rangos para los usuarios que alcanzan a un cierto número de %_plural% "
1137
+ "con la opción de añadir logotipos para cada rango."
1138
 
1139
+ #: ../modules/mycred-module-addons.php:249
1140
+ msgid ""
1141
+ "This add-on allows you to sell posts, pages or any public post types on your "
1142
+ "website. You can either sell the entire content or using our shortcode, sell "
1143
+ "parts of your content allowing you to offer \"teasers\"."
1144
+ msgstr ""
1145
+ "Esta extensión permite que vendas posts, páginas o cualquier tipo de "
1146
+ "publicación en tu sitio web. Puedes venter contenidos enteros o utilizando "
1147
+ "el código corto (shortcode), vender partes de tu contenido permitiendote "
1148
+ "ofrecer \"avances\"."
1149
 
1150
+ #: ../modules/mycred-module-addons.php:271
1151
+ msgid ""
1152
+ "Allow your users to send or \"donate\" points to other members by either using "
1153
+ "the mycred_transfer shortcode or the myCRED Transfer widget."
1154
+ msgstr ""
1155
+ "Permite que los usuarios envien o \"donen\" puntos a otros miembros utilizando "
1156
+ "el código corto (shortcode) de mycred_transfer o el widget de Transferencia "
1157
+ "myCRED."
1158
 
1159
+ #: ../modules/mycred-module-addons.php:313
1160
+ #, php-format
1161
+ msgid "%s Add-ons"
1162
+ msgstr "%s Extensiones (addons)"
 
1163
 
1164
+ #: ../modules/mycred-module-addons.php:320
1165
+ msgid "Add-on Activated"
1166
+ msgstr "Extensión Activado"
1167
 
1168
+ #: ../modules/mycred-module-addons.php:323
1169
+ msgid "Add-on Deactivated"
1170
+ msgstr "Extensión Desactivado"
1171
 
1172
+ #: ../modules/mycred-module-addons.php:331
1173
+ msgid "Add-ons can expand your current installation with further features."
1174
+ msgstr ""
1175
+ "Extensiones pueden ampliar tu instalación actual con más características "
1176
+ "técnicas."
1177
 
1178
+ #: ../modules/mycred-module-addons.php:359
1179
  #, php-format
1180
+ msgid "You can find more add-ons in our %s."
1181
+ msgstr "Puedes encontrar más extensiones (add-ons) en nuestro %s."
1182
 
1183
+ #: ../modules/mycred-module-addons.php:359
1184
+ msgid "online store"
1185
+ msgstr "tienda online"
1186
 
1187
+ #: ../modules/mycred-module-addons.php:382
1188
+ msgid "Deactivate Add-on"
1189
+ msgstr "Desactivar Extensión"
 
1190
 
1191
+ #: ../modules/mycred-module-addons.php:383
1192
+ msgid "Deactivate"
1193
+ msgstr "Desactivar"
 
1194
 
1195
+ #: ../modules/mycred-module-addons.php:390
1196
+ msgid "Activate Add-on"
1197
+ msgstr "Activar Extensión"
1198
 
1199
+ #: ../modules/mycred-module-addons.php:391
1200
+ msgid "Activate"
1201
+ msgstr "Activar"
 
1202
 
1203
+ #: ../modules/mycred-module-addons.php:409
1204
+ msgid "Version"
1205
+ msgstr "Version"
 
1206
 
1207
+ #: ../modules/mycred-module-addons.php:413
1208
+ msgid "By"
1209
+ msgstr "Por"
1210
 
1211
+ #: ../modules/mycred-module-addons.php:417
1212
+ msgid "About"
1213
+ msgstr "Acerca de"
1214
 
1215
+ #: ../modules/mycred-module-addons.php:421
1216
+ msgid "Get Pro"
1217
+ msgstr "Obtenga la versión Pro"
1218
 
1219
+ #: ../modules/mycred-module-log.php:23 ../modules/mycred-module-log.php:24 ..
1220
+ #: addons/gateway/event-booking/mycred-eventespresso3.php:467
1221
+ msgid "Log"
1222
+ msgstr "Registro"
1223
 
1224
+ #: ../modules/mycred-module-log.php:214
1225
+ msgid "Row Deleted"
1226
+ msgstr "Fila Borrado"
1227
 
1228
+ #: ../modules/mycred-module-log.php:243
1229
+ msgid "Log entry not found"
1230
+ msgstr "No se encontro la entrada de registro "
1231
 
1232
+ #: ../modules/mycred-module-log.php:256
1233
+ msgid "Entry Updated"
1234
+ msgstr "Entrada Actualizada"
1235
 
1236
+ #: ../modules/mycred-module-log.php:276 ../modules/mycred-module-log.php:277 ..
1237
+ #: includes/mycred-admin.php:423 ../addons/banking/services/mycred-bank-service-
1238
+ #: payouts.php:246
1239
+ msgid "History"
1240
+ msgstr "Historial"
1241
 
1242
+ #: ../modules/mycred-module-log.php:340
1243
+ msgid "Search results for"
1244
+ msgstr "Buscar entre resultados por"
1245
 
1246
+ #: ../modules/mycred-module-log.php:411
1247
  #, php-format
1248
+ msgid "%s Log"
1249
+ msgstr "Registro de %s"
1250
 
1251
+ #: ../modules/mycred-module-log.php:525 ../includes/mycred-log.php:874
1252
+ msgid "User Missing"
1253
+ msgstr "Usuario Ausente"
 
1254
 
1255
+ #: ../modules/mycred-module-log.php:563
1256
+ msgid "Edit"
1257
+ msgstr "Editar"
1258
 
1259
+ #: ../modules/mycred-module-log.php:609 ../includes/mycred-log.php:755 ..
1260
+ #: includes/mycred-admin.php:796 ../addons/email-notices/myCRED-addon-email-
1261
+ #: notices.php:866 ../addons/email-notices/myCRED-addon-email-notices.php:1019
1262
+ msgid "User"
1263
+ msgstr "Usuario"
 
 
 
 
 
 
 
1264
 
1265
+ #: ../modules/mycred-module-log.php:610
1266
+ msgid "Time"
1267
+ msgstr "Tiempo"
1268
 
1269
+ #: ../modules/mycred-module-log.php:614
1270
+ msgid "Current Log Entry"
1271
+ msgstr "Entrada Actual de Registro"
1272
 
1273
+ #: ../modules/mycred-module-log.php:616
1274
+ msgid "The current saved log entry"
1275
+ msgstr "La entrada guardada actual del registro"
1276
 
1277
+ #: ../modules/mycred-module-log.php:619
1278
+ msgid "Adjust Log Entry"
1279
+ msgstr "Ajustar entrada de registro"
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1280
 
1281
+ #: ../modules/mycred-module-log.php:621
1282
+ msgid "The new log entry"
1283
+ msgstr "La nueva entrada de registro"
1284
 
1285
+ #: ../modules/mycred-module-log.php:624
1286
+ msgid "Update Log Entry"
1287
+ msgstr "Actualiza la entrada de registro"
1288
 
1289
+ #: ../modules/mycred-module-log.php:695
1290
+ #, php-format
1291
+ msgid "My %s History"
1292
+ msgstr "Mi Historial de %s"
1293
 
1294
+ #: ../modules/mycred-module-hooks.php:26 ../modules/mycred-module-hooks.php:27 ..
1295
+ #: modules/mycred-module-hooks.php:28 ../addons/stats/abstracts/mycred-abstract-
1296
+ #: stat-widget.php:105
1297
+ msgid "Hooks"
1298
+ msgstr "Ganchos"
1299
 
1300
+ #: ../modules/mycred-module-hooks.php:107
1301
+ #, php-format
1302
+ msgid "%plural% for registrations"
1303
+ msgstr "%plural% por inscripciones"
1304
 
1305
+ #: ../modules/mycred-module-hooks.php:108
1306
+ #, php-format
1307
+ msgid "Award %_plural% for users joining your website."
1308
+ msgstr "Concede %_plural% a usuarios por unirse a tu sitio de web."
1309
 
1310
+ #: ../modules/mycred-module-hooks.php:114
1311
+ #, php-format
1312
+ msgid "%plural% for daily visits"
1313
+ msgstr "%plural% para visitas diarias"
1314
 
1315
+ #: ../modules/mycred-module-hooks.php:115
1316
+ #, php-format
1317
+ msgid "Award %_plural% for users visiting your website on a daily basis."
1318
+ msgstr "Concede %_plural% a usuarios por visitar tu sitio web diariamente."
1319
 
1320
+ #: ../modules/mycred-module-hooks.php:121
1321
+ #, php-format
1322
+ msgid "%plural% for viewing content"
1323
+ msgstr "%plural% para ver contenido"
1324
 
1325
+ #: ../modules/mycred-module-hooks.php:122
1326
+ #, php-format
1327
+ msgid ""
1328
+ "Award %_plural% to your users for viewing posts and / or %plural% to your "
1329
+ "authors for members viewing their content."
1330
+ msgstr ""
1331
+ "Concede %_plural% a usuarios por ver entradas y / o %plural% a tus autores "
1332
+ "cuando miembros ven su contenido."
1333
 
1334
+ #: ../modules/mycred-module-hooks.php:128
1335
+ #, php-format
1336
+ msgid "%plural% for logins"
1337
+ msgstr "%plural% para ingresos"
1338
 
1339
+ #: ../modules/mycred-module-hooks.php:129
1340
+ #, php-format
1341
+ msgid ""
1342
+ "Award %_plural% for logging in to your website. You can also set an optional "
1343
+ "limit."
1344
+ msgstr ""
1345
+ "Conceder %_plural% por iniciar sesión en tu sitio web. También puedes "
1346
+ "ajustar un limíte opcional."
1347
 
1348
+ #: ../modules/mycred-module-hooks.php:135
1349
+ #, php-format
1350
+ msgid "%plural% for publishing content"
1351
+ msgstr "%plural% por publicar contenido"
1352
 
1353
+ #: ../modules/mycred-module-hooks.php:136
1354
+ #, php-format
1355
+ msgid ""
1356
+ "Award %_plural% for publishing content on your website. If your custom post "
1357
+ "type is not shown bellow, make sure it is set to \"Public\"."
1358
+ msgstr "Concede %_plural% por publicar contenido en tu sitio web. "
1359
 
1360
+ #: ../modules/mycred-module-hooks.php:142
 
 
1361
  #, php-format
1362
+ msgid "%plural% for comments"
1363
+ msgstr "%plural% por comentarios"
1364
 
1365
+ #: ../modules/mycred-module-hooks.php:142
 
1366
  #, php-format
1367
+ msgid "%plural% for Disqus comments"
1368
+ msgstr "%plural% por comentarios Disqus"
1369
 
1370
+ #: ../modules/mycred-module-hooks.php:143
 
 
1371
  #, php-format
1372
+ msgid "Award %_plural% for making comments."
1373
+ msgstr "Concede %_plural% por hacer comentarios."
1374
 
1375
+ #: ../modules/mycred-module-hooks.php:149
1376
+ #, php-format
1377
+ msgid "%plural% for clicking on links"
1378
+ msgstr "%plural% por hacer clic sobre enlaces"
 
 
1379
 
1380
+ #: ../modules/mycred-module-hooks.php:150
1381
+ msgid ""
1382
+ "Award %_plural% to users who clicks on links generated by the [mycred_link] "
1383
+ "shortcode."
 
1384
  msgstr ""
1385
+ "Concede %_plural% a los usuarios que han hecho clic sobre enlaces generados "
1386
+ "por el [mycred_link] código corto (shortcode)."
1387
 
1388
+ #: ../modules/mycred-module-hooks.php:156
1389
+ #, php-format
1390
+ msgid "%plural% for viewing Videos"
1391
+ msgstr "%plural% por ver videos"
 
 
1392
 
1393
+ #: ../modules/mycred-module-hooks.php:157
1394
+ msgid ""
1395
+ "Award %_plural% to users who watches videos embedded using the "
1396
+ "[mycred_video] shortcode."
1397
  msgstr ""
1398
+ "Concede %_plural% a los usuarios que han visto videos incrustados utilizando "
1399
+ "el [mycred_link] código corto (shortcode)."
1400
 
1401
+ #: ../modules/mycred-module-hooks.php:163
1402
+ #, php-format
1403
+ msgid "%plural% for referrals"
1404
+ msgstr "%plural% por referencias (o recomendaciones)"
1405
 
1406
+ #: ../modules/mycred-module-hooks.php:164
1407
+ msgid "Award %_plural% to users who refer either visitors and/or new member signups."
1408
+ msgstr ""
1409
+ "Concede %_plural% a los usuarios que o refieren visitantes y/o nuevos "
1410
+ "miembros inscritos."
1411
 
1412
+ #: ../modules/mycred-module-hooks.php:199
1413
+ #, php-format
1414
+ msgid "%s Hooks"
1415
+ msgstr "Ganchos de %s"
 
1416
 
1417
+ #: ../modules/mycred-module-hooks.php:203
1418
+ #, php-format
1419
+ msgid ""
1420
+ "Hooks are instances where %_plural% are awarded or deducted from a user, "
1421
+ "depending on their actions around your website."
1422
+ msgstr ""
1423
+ "Ganchas son instancias donde %_plural% son concedidos (o restados) al "
1424
+ "usuario, dependiendo de sus acciones en tu sitio web."
1425
 
1426
+ #: ../modules/mycred-module-hooks.php:222 ../addons/banking/myCRED-addon-banking.
1427
+ #: php:248 ../addons/buy-creds/myCRED-addon-buy-creds.php:954
1428
+ msgid "Enable"
1429
+ msgstr "Habilitar"
 
1430
 
1431
+ #: ../modules/mycred-module-hooks.php:240 ../addons/banking/myCRED-addon-banking.
1432
+ #: php:261
1433
+ msgid "Update Changes"
1434
+ msgstr "Actualizar Cambios"
 
1435
 
1436
+ #: ../modules/mycred-module-hooks.php:417 ../modules/mycred-module-hooks.php:523 .
1437
+ #: ./modules/mycred-module-hooks.php:690 ../modules/mycred-module-hooks.php:721 ..
1438
+ #: modules/mycred-module-hooks.php:798 ../modules/mycred-module-hooks.php:1164 ..
1439
+ #: modules/mycred-module-hooks.php:1181 ../modules/mycred-module-hooks.php:1230 .
1440
+ #: ./modules/mycred-module-hooks.php:1682 ../modules/mycred-module-hooks.php:1699
1441
+ #: ../modules/mycred-module-hooks.php:1716 ../modules/mycred-module-hooks.php:
1442
+ #: 3007 ../modules/mycred-module-hooks.php:3027 ../plugins/mycred-hook-invite-
1443
+ #: anyone.php:197 ../plugins/mycred-hook-invite-anyone.php:218 ../plugins/mycred-
1444
+ #: hook-wp-postratings.php:164 ../plugins/mycred-hook-wp-postratings.php:183 ..
1445
+ #: plugins/mycred-hook-gravityforms.php:153 ../plugins/mycred-hook-simplepress.
1446
+ #: php:289 ../plugins/mycred-hook-simplepress.php:302 ../plugins/mycred-hook-
1447
+ #: simplepress.php:319 ../plugins/mycred-hook-simplepress.php:337 ..
1448
+ #: plugins/mycred-hook-buddypress-gallery.php:107 ../plugins/mycred-hook-
1449
+ #: buddypress.php:513 ../plugins/mycred-hook-buddypress.php:530 ../plugins/mycred-
1450
+ #: hook-buddypress.php:547 ../plugins/mycred-hook-buddypress.php:567 ..
1451
+ #: plugins/mycred-hook-buddypress.php:580 ../plugins/mycred-hook-buddypress.php:
1452
+ #: 597 ../plugins/mycred-hook-buddypress.php:610 ../plugins/mycred-hook-
1453
+ #: buddypress.php:627 ../plugins/mycred-hook-buddypress.php:644 ../plugins/mycred-
1454
+ #: hook-buddypress.php:1218 ../plugins/mycred-hook-buddypress.php:1231 ..
1455
+ #: plugins/mycred-hook-buddypress.php:1248 ../plugins/mycred-hook-buddypress.php:
1456
+ #: 1265 ../plugins/mycred-hook-buddypress.php:1282 ../plugins/mycred-hook-
1457
+ #: buddypress.php:1299 ../plugins/mycred-hook-buddypress.php:1317 ..
1458
+ #: plugins/mycred-hook-buddypress.php:1330 ../plugins/mycred-hook-buddypress.php:
1459
+ #: 1347 ../plugins/mycred-hook-buddypress.php:1364 ../plugins/mycred-hook-
1460
+ #: buddypress-links.php:255 ../plugins/mycred-hook-buddypress-links.php:272 ..
1461
+ #: plugins/mycred-hook-buddypress-links.php:289 ../plugins/mycred-hook-
1462
+ #: buddypress-links.php:308 ../plugins/mycred-hook-buddypress-links.php:325 ..
1463
+ #: plugins/mycred-hook-buddypress-links.php:338 ../plugins/mycred-hook-
1464
+ #: affiliatewp.php:225 ../plugins/mycred-hook-affiliatewp.php:242 ..
1465
+ #: plugins/mycred-hook-sharethis.php:307 ../plugins/mycred-hook-buddypress-media.
1466
+ #: php:213 ../plugins/mycred-hook-buddypress-media.php:227 ../plugins/mycred-hook-
1467
+ #: buddypress-media.php:241 ../plugins/mycred-hook-buddypress-media.php:254 ..
1468
+ #: plugins/mycred-hook-buddypress-media.php:264 ../plugins/mycred-hook-
1469
+ #: buddypress-media.php:274 ../plugins/mycred-hook-contact-form7.php:152 ..
1470
+ #: plugins/mycred-hook-jetpack.php:506 ../plugins/mycred-hook-jetpack.php:519 ..
1471
+ #: plugins/mycred-hook-bbPress.php:415 ../plugins/mycred-hook-bbPress.php:428 ..
1472
+ #: plugins/mycred-hook-bbPress.php:445 ../plugins/mycred-hook-bbPress.php:463 ..
1473
+ #: plugins/mycred-hook-bbPress.php:480 ../plugins/mycred-hook-bbPress.php:497 ..
1474
+ #: plugins/mycred-hook-bbPress.php:519 ../plugins/mycred-hook-badgeOS.php:298
1475
+ msgid "Log template"
1476
+ msgstr "Plantilla de Registro"
1477
 
1478
+ #: ../modules/mycred-module-hooks.php:673
1479
+ #, php-format
1480
+ msgid "%plural% for viewing Posts"
1481
+ msgstr "%plural% para ver Entradas"
1482
 
1483
+ #: ../modules/mycred-module-hooks.php:676 ../modules/mycred-module-hooks.php:693 .
1484
+ #: ./modules/mycred-module-hooks.php:707 ../modules/mycred-module-hooks.php:724 ..
1485
+ #: modules/mycred-module-hooks.php:784 ../modules/mycred-module-hooks.php:801
1486
+ msgid "Member"
1487
+ msgstr "Miembro"
1488
 
1489
+ #: ../modules/mycred-module-hooks.php:679 ../modules/mycred-module-hooks.php:686 .
1490
+ #: ./modules/mycred-module-hooks.php:710 ../modules/mycred-module-hooks.php:717 ..
1491
+ #: modules/mycred-module-hooks.php:787 ../modules/mycred-module-hooks.php:794 ..
1492
+ #: modules/mycred-module-hooks.php:1018 ../modules/mycred-module-hooks.php:1160 .
1493
+ #: ./modules/mycred-module-hooks.php:1177 ../modules/mycred-module-hooks.php:1226
1494
+ #: ../modules/mycred-module-hooks.php:3015 ../modules/mycred-module-hooks.php:
1495
+ #: 3035 ../plugins/mycred-hook-invite-anyone.php:202 ../plugins/mycred-hook-
1496
+ #: invite-anyone.php:205 ../plugins/mycred-hook-invite-anyone.php:223 ..
1497
+ #: plugins/mycred-hook-invite-anyone.php:226 ../plugins/mycred-hook-wp-
1498
+ #: postratings.php:156 ../plugins/mycred-hook-wp-postratings.php:175 ..
1499
+ #: plugins/mycred-hook-gravityforms.php:148 ../plugins/mycred-hook-simplepress.
1500
+ #: php:284 ../plugins/mycred-hook-simplepress.php:314 ../plugins/mycred-hook-
1501
+ #: buddypress-gallery.php:102 ../plugins/mycred-hook-buddypress.php:508 ..
1502
+ #: plugins/mycred-hook-buddypress.php:525 ../plugins/mycred-hook-buddypress.php:
1503
+ #: 542 ../plugins/mycred-hook-buddypress.php:559 ../plugins/mycred-hook-
1504
+ #: buddypress.php:592 ../plugins/mycred-hook-buddypress.php:622 ../plugins/mycred-
1505
+ #: hook-buddypress.php:639 ../plugins/mycred-hook-buddypress.php:1243 ..
1506
+ #: plugins/mycred-hook-buddypress.php:1260 ../plugins/mycred-hook-buddypress.php:
1507
+ #: 1277 ../plugins/mycred-hook-buddypress.php:1294 ../plugins/mycred-hook-
1508
+ #: buddypress.php:1312 ../plugins/mycred-hook-buddypress.php:1342 ..
1509
+ #: plugins/mycred-hook-buddypress.php:1359 ../plugins/mycred-hook-buddypress-
1510
+ #: links.php:250 ../plugins/mycred-hook-buddypress-links.php:267 ..
1511
+ #: plugins/mycred-hook-buddypress-links.php:284 ../plugins/mycred-hook-
1512
+ #: buddypress-links.php:294 ../plugins/mycred-hook-buddypress-links.php:303 ..
1513
+ #: plugins/mycred-hook-buddypress-links.php:320 ../plugins/mycred-hook-
1514
+ #: affiliatewp.php:237 ../plugins/mycred-hook-events-manager-light.php:192 ..
1515
+ #: plugins/mycred-hook-sharethis.php:302 ../plugins/mycred-hook-buddypress-media.
1516
+ #: php:209 ../plugins/mycred-hook-buddypress-media.php:223 ../plugins/mycred-hook-
1517
+ #: buddypress-media.php:237 ../plugins/mycred-hook-wp-favorite-posts.php:213 ..
1518
+ #: plugins/mycred-hook-wp-favorite-posts.php:231 ../plugins/mycred-hook-contact-
1519
+ #: form7.php:147 ../plugins/mycred-hook-bbPress.php:410 ../plugins/mycred-hook-
1520
+ #: bbPress.php:440 ../plugins/mycred-hook-bbPress.php:475 ../plugins/mycred-hook-
1521
+ #: bbPress.php:492 ../plugins/mycred-hook-woocommerce.php:317 ../includes/mycred-
1522
+ #: shortcodes.php:1132
1523
+ msgid "Limit"
1524
+ msgstr "Límite"
1525
 
1526
+ #: ../modules/mycred-module-hooks.php:683 ../modules/mycred-module-hooks.php:699 .
1527
+ #: ./modules/mycred-module-hooks.php:714 ../modules/mycred-module-hooks.php:730 ..
1528
+ #: modules/mycred-module-hooks.php:791 ../modules/mycred-module-hooks.php:807 ..
1529
+ #: modules/mycred-module-hooks.php:1677 ../modules/mycred-module-hooks.php:1694 .
1530
+ #: ./modules/mycred-module-hooks.php:1711
1531
+ msgid "Content Author"
1532
+ msgstr "Autor del Contenido"
1533
 
1534
+ #: ../modules/mycred-module-hooks.php:704
1535
+ #, php-format
1536
+ msgid "%plural% for viewing Pages"
1537
+ msgstr "%plural% para ver Paginas"
1538
 
1539
+ #: ../modules/mycred-module-hooks.php:781
1540
+ #, php-format
1541
+ msgid "%plural% for viewing %s"
1542
+ msgstr "%plural% para Ver %s"
1543
 
1544
+ #. can also be "Plantilla de Bitácora"
1545
+ #: ../modules/mycred-module-hooks.php:1011 ../modules/mycred-module-hooks.php:
1546
+ #: 2032 ../modules/mycred-module-hooks.php:2402 ../plugins/mycred-hook-wp-polls.
1547
+ #: php:136 ../plugins/mycred-hook-gd-star-rating.php:109 ../plugins/mycred-hook-
1548
+ #: gd-star-rating.php:122 ../plugins/mycred-hook-events-manager-light.php:196 ..
1549
+ #: plugins/mycred-hook-events-manager-light.php:209 ../plugins/mycred-hook-wp-
1550
+ #: favorite-posts.php:217 ../plugins/mycred-hook-wp-favorite-posts.php:235 ..
1551
+ #: plugins/mycred-hook-wp-favorite-posts.php:249 ../plugins/mycred-hook-wp-
1552
+ #: favorite-posts.php:262 ../plugins/mycred-hook-woocommerce.php:321 ..
1553
+ #: plugins/mycred-hook-badgeOS.php:124 ../plugins/mycred-hook-badgeOS.php:126 ..
1554
+ #: plugins/mycred-hook-badgeOS.php:135 ../addons/banking/services/mycred-bank-
1555
+ #: service-payouts.php:283 ../addons/banking/services/mycred-bank-service-
1556
+ #: interest.php:435 ../addons/gateway/carts/mycred-wpecommerce.php:371 ..
1557
+ #: addons/gateway/carts/mycred-woocommerce.php:104 ..
1558
+ #: addons/gateway/carts/mycred-woocommerce.php:176 ..
1559
+ #: addons/gateway/carts/mycred-marketpress.php:395 ..
1560
+ #: addons/gateway/carts/mycred-marketpress.php:428 ../addons/coupons/myCRED-
1561
+ #: addon-coupons.php:557 ../addons/buy-creds/myCRED-addon-buy-creds.php:673 ..
1562
+ #: addons/buy-creds/myCRED-addon-buy-creds.php:736
1563
+ msgid "Log Template"
1564
+ msgstr "Plantilla de Registro"
1565
 
1566
+ #: ../modules/mycred-module-hooks.php:1154
1567
+ #, php-format
1568
+ msgid "%plural% for Posts"
1569
+ msgstr "%plural% por Posts"
1570
 
1571
+ #: ../modules/mycred-module-hooks.php:1171
1572
+ #, php-format
1573
+ msgid "%plural% for Pages"
1574
+ msgstr "%plural% por Paginas"
1575
 
1576
+ #: ../modules/mycred-module-hooks.php:1220
1577
+ #, php-format
1578
+ msgid "%plural% for %s"
1579
+ msgstr "%plural% por %s"
1580
 
1581
+ #: ../modules/mycred-module-hooks.php:1667
1582
+ #, php-format
1583
  msgid ""
1584
+ "%plural% are only awarded when your website has been synced with the Disqus "
1585
+ "server!"
 
1586
  msgstr ""
1587
+ "¡%_plural% seran concedidos unicamente cuando tu sitio web se ha "
1588
+ "sincronizado con el servidor de Disqus!"
 
 
1589
 
1590
+ #: ../modules/mycred-module-hooks.php:1670 ../includes/mycred-functions.php:2524
1591
+ msgid "Approved Comment"
1592
+ msgstr "Comentario Aprobado"
1593
 
1594
+ #: ../modules/mycred-module-hooks.php:1673 ../modules/mycred-module-hooks.php:
1595
+ #: 1690 ../modules/mycred-module-hooks.php:1707
1596
+ msgid "Comment Author"
1597
+ msgstr "Autor del Comentario"
1598
 
1599
+ #: ../modules/mycred-module-hooks.php:1687
1600
+ msgid "Comment Marked SPAM"
1601
+ msgstr "Comentario Marcado como SPAM"
1602
 
1603
+ #: ../modules/mycred-module-hooks.php:1704
1604
+ msgid "Trashed / Unapproved Comments"
1605
+ msgstr "Comentarios Destrozados / No Aprobados"
1606
 
1607
+ #: ../modules/mycred-module-hooks.php:1721 ../modules/mycred-module-hooks.php:
1608
+ #: 2039 ../addons/transfer/myCRED-addon-transfer.php:259 ../addons/coupons/myCRED-
1609
+ #: addon-coupons.php:175
1610
+ msgid "Limits"
1611
+ msgstr "imites"
1612
 
1613
+ #: ../modules/mycred-module-hooks.php:1724
1614
+ msgid "Limit per post"
1615
+ msgstr "Límite por Entrada"
 
1616
 
1617
+ #. what is the Spanish word for "post"? o anglicismo?
1618
+ #: ../modules/mycred-module-hooks.php:1726
1619
+ msgid ""
1620
+ "The number of comments per post that grants %_plural% to the comment author. "
1621
+ "Use zero for unlimited."
1622
+ msgstr ""
1623
+ "El numero de comentarios por cada post que concede %_plural% al autor del "
1624
+ "comentario. Utilice cero para un número ilimitado"
1625
 
1626
+ #: ../modules/mycred-module-hooks.php:1730
1627
+ msgid "Limit per day"
1628
+ msgstr "Límite por día"
1629
+
1630
+ #: ../modules/mycred-module-hooks.php:1732
1631
+ msgid "Number of comments per day that grants %_plural%. Use zero for unlimited."
1632
+ msgstr ""
1633
+ "Número de comentarios diarios que conceden %_plural%. Utilice cero para un "
1634
+ "número ilimitado."
1635
+
1636
+ #: ../modules/mycred-module-hooks.php:1737
1637
  #, php-format
1638
+ msgid ""
1639
+ "%plural% is to be awarded even when comment authors reply to their own "
1640
+ "comment."
1641
+ msgstr ""
1642
+ "%_plural% seran concedidos incluso cuando los autores responden a su proprio "
1643
+ "comentario."
1644
+
1645
+ #: ../modules/mycred-module-hooks.php:1817
1646
+ msgid "Once for each unique URL"
1647
+ msgstr "Una sola vez para cada única URL"
1648
+
1649
+ #: ../modules/mycred-module-hooks.php:1818
1650
+ msgid "Once for each unique link id"
1651
+ msgstr "Una vez para cada id del enlace único "
1652
+
1653
+ #: ../modules/mycred-module-hooks.php:2029
1654
+ msgid ""
1655
+ "The default amount to award for clicking on links. You can override this in "
1656
+ "the shortcode."
1657
  msgstr ""
1658
+ "La cantidad predefinida que sera cedida por hacer clic sobre enlaces. Puedes "
1659
+ "anular esto con el 'shortcode' (código corto)."
1660
 
1661
+ #: ../modules/mycred-module-hooks.php:2036
1662
+ #, php-format
1663
+ msgid "Custom tags: %url%, %title% or %id%."
1664
+ msgstr "Etiquetas personalizadas: %url%, %title% o/u %id%."
1665
 
1666
+ #: ../modules/mycred-module-hooks.php:2049 ../modules/mycred-module-hooks.php:3103
1667
+ msgid "Note!"
1668
+ msgstr "¡Atención!"
1669
 
1670
+ #: ../modules/mycred-module-hooks.php:2049
1671
+ msgid ""
1672
+ "If no ID is set when using the mycred_link shortcode, the shortcode will "
1673
+ "generate one automatically based on the value set under href. If you are "
1674
+ "using this feature for \"sharing\" content, it is recommended that you limit "
1675
+ "by ID."
1676
+ msgstr ""
1677
+ "Si no se ha fijado ningun ID cuando estas utilizando el codigo corto "
1678
+ "(shortcode) de mycred_link, se generará uno automaticamente basado sobre el "
1679
+ "valor fijado en href. Si estas utilizando esta función para \"compartir\" "
1680
+ "contenidos, se recomienda que limites por ID."
1681
 
1682
+ #: ../modules/mycred-module-hooks.php:2051 ../modules/mycred-module-hooks.php:2435
1683
+ msgid "Available Shortcode"
1684
+ msgstr "Código corto Disponible"
1685
 
1686
+ #: ../modules/mycred-module-hooks.php:2399
1687
+ msgid "Amount to award for viewing videos."
1688
+ msgstr "Cantidad a ceder para ver videos."
1689
 
1690
+ #: ../modules/mycred-module-hooks.php:2409
1691
+ msgid "Award Logic"
1692
+ msgstr "Lógica de Concesión"
1693
 
1694
+ #: ../modules/mycred-module-hooks.php:2411
1695
+ #, php-format
1696
+ msgid "Select when %_plural% should be awarded or deducted."
1697
+ msgstr "Elige cuando %_plural% deberian ser concedidos o restados."
1698
 
1699
+ #: ../modules/mycred-module-hooks.php:2412
1700
+ msgid "Play - As soon as video starts playing."
1701
+ msgstr "Play - En cuanto el video empiece a reproducirse."
1702
 
1703
+ #: ../modules/mycred-module-hooks.php:2413
1704
+ msgid "Full - First when the entire video has played."
1705
+ msgstr "Completo - Primero cuando el video entero se haya reproducido."
 
 
1706
 
1707
+ #: ../modules/mycred-module-hooks.php:2414
1708
+ msgid "Interval - For each x number of seconds watched."
1709
+ msgstr "Intervalo - Para cada x numero de segundos vistos."
1710
 
1711
+ #: ../modules/mycred-module-hooks.php:2417 ../addons/banking/services/mycred-bank-
1712
+ #: service-payouts.php:271
1713
+ msgid "Interval"
1714
+ msgstr "Interval"
 
 
 
1715
 
1716
+ #: ../modules/mycred-module-hooks.php:2419
1717
+ msgid "Number of seconds"
1718
+ msgstr "Numero de segundos"
 
 
1719
 
1720
+ #: ../modules/mycred-module-hooks.php:2426
1721
+ msgid "Leniency"
1722
+ msgstr "Lenidad"
 
1723
 
1724
+ #: ../modules/mycred-module-hooks.php:2428
1725
  msgid ""
1726
+ "The maximum percentage a users view of a movie can differ from the actual "
1727
+ "length."
 
1728
  msgstr ""
1729
+ "El porcentaje máximo medido que un usuario vea puede variar con la duración "
1730
+ "actual del video."
 
 
 
 
 
1731
 
1732
+ #: ../modules/mycred-module-hooks.php:2431
1733
  msgid ""
1734
+ "Do not set this value to zero! A lot of thing can happen while a user "
1735
+ "watches a movie and sometimes a few seconds can drop of the counter due to "
1736
+ "buffering or play back errors."
1737
  msgstr ""
1738
+ "¡No fijes este valor a cero! Muchas cosas pueden suceder mientras que un "
1739
+ "usuario ve una película y a veces la contador puede disminuir por pocos "
1740
+ "segundos por falta de buffering o por errores de reproducción."
1741
 
1742
+ #: ../modules/mycred-module-hooks.php:2506
1743
+ msgid "Affiliate Program"
1744
+ msgstr "Programa de Afiliados"
 
1745
 
1746
+ #: ../modules/mycred-module-hooks.php:2514 ../includes/mycred-admin.php:413 ..
1747
+ #: addons/coupons/myCRED-addon-coupons.php:232
1748
+ msgid "Total"
1749
+ msgstr "Total"
 
 
 
 
 
 
 
 
 
 
 
 
 
1750
 
1751
+ #: ../modules/mycred-module-hooks.php:2515
1752
+ msgid "Per Day"
1753
+ msgstr "Por Día"
1754
 
1755
+ #: ../modules/mycred-module-hooks.php:2674
1756
+ msgid "Link"
1757
+ msgstr "Enlace"
1758
 
1759
+ #: ../modules/mycred-module-hooks.php:2678
1760
+ msgid "Visitors Referred"
1761
+ msgstr "Visitantes Referidos"
1762
 
1763
+ #: ../modules/mycred-module-hooks.php:2682
1764
+ msgid "Signups Referred"
1765
+ msgstr "Inscripciones Referidos"
1766
 
1767
+ #: ../modules/mycred-module-hooks.php:3001 ../plugins/mycred-hook-affiliatewp.php:
1768
+ #: 231
1769
+ msgid "Referring Visitors"
1770
+ msgstr "Referiendo Visitantes"
 
 
 
 
1771
 
1772
+ #: ../modules/mycred-module-hooks.php:3020 ../modules/mycred-module-hooks.php:3040
1773
+ msgid "Referring Signups"
1774
+ msgstr "Inscripciones a través de Referencias"
 
 
1775
 
1776
+ #: ../modules/mycred-module-hooks.php:3024
1777
+ msgid "Visitors who have Cookies disabled will not award %_plural%."
1778
+ msgstr "Visitantes que tienen cookies desactivado no recibiran %_plural%."
 
1779
 
1780
+ #: ../modules/mycred-module-hooks.php:3042
1781
+ msgid "Registrations are disabled."
1782
+ msgstr "Se han deshabilitado inscripciones."
1783
 
1784
+ #: ../modules/mycred-module-hooks.php:3050
1785
+ msgid "Referral Links"
1786
+ msgstr "Enlaces Referentes"
1787
 
1788
+ #: ../modules/mycred-module-hooks.php:3054
1789
+ msgid "Assign numeric referral IDs to each user."
1790
+ msgstr "Asignar ID numerica referente a cada usuario."
1791
 
1792
+ #: ../modules/mycred-module-hooks.php:3055 ../modules/mycred-module-hooks.php:3061
1793
+ msgid "Example"
1794
+ msgstr "Ejemplo"
1795
 
1796
+ #: ../modules/mycred-module-hooks.php:3060
1797
+ msgid "Assign usernames as IDs for each user."
1798
+ msgstr "Asignar los nombres de usuario como ID para cada usuario."
1799
 
1800
+ #: ../modules/mycred-module-hooks.php:3064
1801
+ msgid "IP Limit"
1802
+ msgstr "Límite de IP"
1803
 
1804
+ #: ../modules/mycred-module-hooks.php:3068
1805
+ msgid "The number of times each IP address grants %_plural%. Use zero for unlimited."
1806
+ msgstr ""
1807
+ "El numero de veces que cada IP concede %_plural%. Utilice cero para un "
1808
+ "número ilimitado"
1809
 
1810
+ #: ../modules/mycred-module-hooks.php:3072 ../modules/mycred-module-hooks.php:3107
1811
+ msgid "BuddyPress Profile"
1812
+ msgstr "Perfil de BuddyPress"
 
 
 
1813
 
1814
+ #: ../modules/mycred-module-hooks.php:3075
1815
+ msgid "Insert Link in users Profile"
1816
+ msgstr "Insertar enlace en el perfil del usuario"
 
 
1817
 
1818
+ #: ../modules/mycred-module-hooks.php:3076
1819
+ msgid ""
1820
+ "Option to inser the referral link in users profiles. Links will only be "
1821
+ "visible to users viewing their own profiles or administrators."
1822
+ msgstr ""
1823
+ "Opción para insertar el enlace de referencia en los perfiles de los usuarios."
1824
+ " Estos enlaces serán visibles a los administradores o a los usuarios cuando "
1825
+ "ven a sus propios perfiles."
1826
 
1827
+ #: ../modules/mycred-module-hooks.php:3080 ../includes/mycred-widgets.php:196 ..
1828
+ #: includes/mycred-widgets.php:385 ../includes/mycred-widgets.php:594 ..
1829
+ #: addons/gateway/carts/mycred-woocommerce.php:92 ..
1830
+ #: addons/transfer/includes/mycred-transfer-widgets.php:120 ..
1831
+ #: addons/ranks/myCRED-addon-ranks.php:1319 ../addons/buy-creds/gateways/skrill.
1832
+ #: php:339
1833
+ msgid "Title"
1834
+ msgstr "Titulo"
1835
 
1836
+ #: ../modules/mycred-module-hooks.php:3082
1837
+ msgid "Leave empty to hide."
1838
+ msgstr "Deje el campo vacío para ocultarlo."
1839
 
1840
+ #: ../modules/mycred-module-hooks.php:3085
1841
+ msgid "Description"
1842
+ msgstr "Descripción"
1843
 
1844
+ #: ../modules/mycred-module-hooks.php:3086
1845
+ msgid "Optional description to insert under the link."
1846
+ msgstr "Insertar la descripción opcional debajo del enlace."
1847
 
1848
+ #: ../modules/mycred-module-hooks.php:3100
1849
+ msgid "Profile Positioning"
1850
+ msgstr "Posicionamiento del Perfil"
 
1851
 
1852
+ #: ../modules/mycred-module-hooks.php:3102
1853
+ msgid ""
1854
+ "You can move around the referral link on your users profile by changing the "
1855
+ "position. Increase to move up, decrease to move down."
1856
  msgstr ""
1857
+ "Puedes moverte por el enlace de referencia en su perfil los usuarios "
1858
+ "cambiando la posición. Aumentar a moverse hacia arriba, disminuye al bajar."
1859
 
1860
+ #: ../modules/mycred-module-hooks.php:3103
1861
+ msgid "You can not move the referral link above the users \"Base\" profile details!"
1862
+ msgstr ""
1863
+ "¡No puedes trasladar el enlace de referencia encima de los detalles \"Base\" "
1864
+ "en el perfil del usuario!"
1865
 
1866
+ #: ../modules/mycred-module-hooks.php:3109
1867
+ msgid "Requires BuddyPress Extended Profiles to be enabled."
1868
+ msgstr "Requiere que Perfils Extendidos de BuddyPress sea activado."
1869
 
1870
+ #: ../modules/mycred-module-hooks.php:3117 ../addons/buy-creds/myCRED-addon-buy-
1871
+ #: creds.php:741
1872
+ msgid "Available Shortcodes"
1873
+ msgstr "Códigos cortos Disponibles"
 
 
 
 
 
 
 
 
 
 
1874
 
1875
+ #: ../modules/mycred-module-buddypress.php:31
1876
+ msgid "My History"
1877
+ msgstr "Mi Historial"
 
1878
 
1879
+ #: ../modules/mycred-module-buddypress.php:32
1880
+ #, php-format
1881
+ msgid "%s's History"
1882
+ msgstr "La Historial de %s"
1883
 
1884
+ #: ../modules/mycred-module-buddypress.php:131
1885
+ msgid "Current balance"
1886
+ msgstr "Saldo Actual"
1887
 
1888
+ #: ../modules/mycred-module-buddypress.php:236 ../modules/mycred-module-
1889
+ #: buddypress.php:249 ../includes/mycred-log.php:992
1890
+ msgid "All"
1891
+ msgstr "Todo"
1892
 
1893
+ #: ../modules/mycred-module-buddypress.php:237 ../includes/mycred-log.php:993 ..
1894
+ #: addons/stats/widgets/mycred-stats-widget-circulation.php:189
1895
+ msgid "Today"
1896
+ msgstr "Hoy"
1897
 
1898
+ #: ../modules/mycred-module-buddypress.php:238 ../includes/mycred-log.php:994
1899
+ msgid "Yesterday"
1900
+ msgstr "Ayer"
 
1901
 
1902
+ #: ../modules/mycred-module-buddypress.php:239 ../includes/mycred-log.php:995 ..
1903
+ #: addons/stats/widgets/mycred-stats-widget-circulation.php:190
1904
+ msgid "This Week"
1905
+ msgstr "Esta Semana"
1906
 
1907
+ #: ../modules/mycred-module-buddypress.php:240 ../includes/mycred-log.php:996 ..
1908
+ #: addons/stats/widgets/mycred-stats-widget-circulation.php:191
1909
+ msgid "This Month"
1910
+ msgstr "Este Mes"
1911
 
1912
+ #: ../modules/mycred-module-buddypress.php:362
1913
+ msgid "Go"
1914
+ msgstr "Ir a"
1915
 
1916
+ #: ../modules/mycred-module-buddypress.php:417 ../addons/gateway/carts/mycred-
1917
+ #: woocommerce.php:152 ../addons/badges/myCRED-addon-badges.php:970 ..
1918
+ #: addons/badges/myCRED-addon-badges.php:1001
1919
+ msgid "Do not show"
1920
+ msgstr "No Mostrar"
1921
 
1922
+ #: ../modules/mycred-module-buddypress.php:418 ../addons/badges/myCRED-addon-
1923
+ #: badges.php:971
1924
+ msgid "Include in Profile Header"
1925
+ msgstr "Incluir en el Encabezado del Perfil"
1926
 
1927
+ #: ../modules/mycred-module-buddypress.php:419 ../addons/ranks/myCRED-addon-ranks.
1928
+ #: php:1408 ../addons/badges/myCRED-addon-badges.php:972
1929
+ msgid "Include under the \"Profile\" tab"
1930
+ msgstr "Incluir debajo de la pestaña del \"Perfil\""
1931
 
1932
+ #: ../modules/mycred-module-buddypress.php:420 ../addons/badges/myCRED-addon-
1933
+ #: badges.php:973
1934
+ msgid "Include under the \"Profile\" tab and Profile Header"
1935
+ msgstr "Incluir bajo la pestanã \"Perfil\" y Encabezado de Perfil"
1936
 
1937
+ #: ../modules/mycred-module-buddypress.php:424 ../addons/ranks/myCRED-addon-ranks.
1938
+ #: php:1406 ../addons/ranks/myCRED-addon-ranks.php:1451
1939
+ msgid "Do not show."
1940
+ msgstr "No mostrar."
 
1941
 
1942
+ #: ../modules/mycred-module-buddypress.php:425
1943
+ msgid "Show in Profile"
1944
+ msgstr "Mostrar en Perfil"
1945
 
1946
+ #: ../modules/mycred-module-buddypress.php:442
1947
+ #, php-format
1948
+ msgid "%singular% Balance"
1949
+ msgstr "%singular% Saldo"
 
 
 
 
1950
 
1951
+ #: ../modules/mycred-module-buddypress.php:459
1952
+ #, php-format
1953
+ msgid "Members and visitors can other members %_singular% balance."
1954
+ msgstr "Miembros y visitantes pueden ver el saldo de %_singular% de otros miembros."
1955
 
1956
+ #: ../modules/mycred-module-buddypress.php:464 ../addons/ranks/myCRED-addon-ranks.
1957
+ #: php:1428 ../addons/ranks/myCRED-addon-ranks.php:1473 ..
1958
+ #: addons/notifications/myCRED-addon-notifications.php:201
1959
+ msgid "Template"
1960
+ msgstr "Plantilla"
1961
 
1962
+ #: ../modules/mycred-module-buddypress.php:469
1963
+ #, php-format
1964
+ msgid "%plural% History"
1965
+ msgstr "Historial de %plural%"
 
 
 
1966
 
1967
+ #: ../modules/mycred-module-buddypress.php:486
1968
+ msgid "Members can view each others %_plural% history."
1969
+ msgstr "Miembros pueden ver, uno al otro, el historial de sus %_plural%."
1970
 
1971
+ #: ../modules/mycred-module-buddypress.php:491
1972
+ msgid "Menu Title"
1973
+ msgstr "Título de Menú"
 
 
 
 
1974
 
1975
+ #: ../modules/mycred-module-buddypress.php:493
1976
+ msgid "Title shown to me"
1977
+ msgstr "Título mostrado a mi"
 
 
 
 
 
1978
 
1979
+ #: ../modules/mycred-module-buddypress.php:498
1980
+ #, php-format
1981
+ msgid "Title shown to others. Use %s to show the first name."
1982
+ msgstr "Título mostrado a otros. Utilice %s para mostrar el nombre de pila."
1983
 
1984
+ #: ../modules/mycred-module-buddypress.php:503
1985
+ msgid "Menu Position"
1986
+ msgstr "Posición del Menú"
1987
 
1988
+ #: ../modules/mycred-module-buddypress.php:505
1989
+ msgid "Current menu positions:"
1990
+ msgstr "Posiciones Acuales del Menú"
1991
 
1992
+ #: ../modules/mycred-module-buddypress.php:510
1993
+ msgid "History URL slug"
1994
+ msgstr "La ficha historial de la URL"
1995
 
1996
+ #: ../modules/mycred-module-buddypress.php:512
1997
+ msgid "Do not use empty spaces!"
1998
+ msgstr "¡No utilice espacios vacíos!"
1999
 
2000
+ #: ../modules/mycred-module-buddypress.php:517
2001
+ msgid "Number of history entries to show"
2002
+ msgstr "Numero de entradas de historial a mostrar"
2003
 
2004
+ #. does this really need to be translated?
2005
+ #: ../plugins/mycred-hook-invite-anyone.php:18
2006
+ msgid "Invite Anyone Plugin"
2007
+ msgstr "Invite Anyone Plugin"
2008
 
2009
+ #: ../plugins/mycred-hook-invite-anyone.php:19
2010
+ #, php-format
2011
  msgid ""
2012
+ "Awards %_plural% for sending invitations and/or %_plural% if the invite is "
2013
+ "accepted."
2014
  msgstr ""
2015
+ "Concede %_plural% por mandar invitaciones y/o %_plural% si se acepta la "
2016
+ "invitación."
2017
 
2018
+ #: ../plugins/mycred-hook-invite-anyone.php:190
2019
+ #, php-format
2020
+ msgid "%plural% for Sending An Invite"
2021
+ msgstr "%plural% por Enviar una Invitación"
2022
 
2023
+ #: ../plugins/mycred-hook-invite-anyone.php:210
2024
+ #, php-format
2025
+ msgid "%plural% for Accepting An Invite"
2026
+ msgstr "%plural% por Aceptar una Invitación"
 
 
 
2027
 
2028
+ #: ../plugins/mycred-hook-invite-anyone.php:214
2029
+ #, php-format
2030
+ msgid "%plural% for each invited user that accepts an invitation."
2031
+ msgstr "%plural% por cada usuario invitado que acepta la invitación."
2032
 
2033
+ #: ../plugins/mycred-hook-wp-polls.php:18
2034
+ msgid "WP-Polls"
2035
+ msgstr "WP-Polls"
2036
 
2037
+ #: ../plugins/mycred-hook-wp-polls.php:19
2038
+ #, php-format
2039
+ msgid "Awards %_plural% for users voting in polls."
2040
+ msgstr ""
2041
+ "Concede %_plural% a usuarios que han votado en encuestas.Concede %_plural% a "
2042
+ "usuarios que han votado en encuestas."
2043
 
2044
+ #: ../plugins/mycred-hook-gravityforms.php:18
2045
+ msgid "Gravityform Submissions"
2046
+ msgstr "Entregas de Gravityform"
 
2047
 
2048
+ #: ../plugins/mycred-hook-gravityforms.php:19
2049
+ #, php-format
2050
+ msgid "Awards %_plural% for successful form submissions."
2051
+ msgstr "Concede %_plural% por el exitoso envío del formularios."
2052
 
2053
+ #: ../plugins/mycred-hook-gravityforms.php:118 ../plugins/mycred-hook-contact-
2054
+ #: form7.php:117
2055
+ msgid "No forms found."
2056
+ msgstr "No se ha encontrado ningun formulario."
2057
 
2058
+ #: ../plugins/mycred-hook-gd-star-rating.php:18
2059
+ msgid "GD Star Rating"
2060
+ msgstr "GD Star Rating"
2061
 
2062
+ #: ../plugins/mycred-hook-gd-star-rating.php:19
2063
+ #, php-format
2064
+ msgid "Awards %_plural% for users rate items using the GD Star Rating plugin."
2065
+ msgstr ""
2066
+ "Concede %_plural% a usuarios que evaluan artículos a través de GD Star "
2067
+ "Rating plugin."
2068
 
2069
+ #: ../plugins/mycred-hook-gd-star-rating.php:103
2070
+ msgid "Rating"
2071
+ msgstr "Clasificación"
2072
 
2073
+ #.
2074
+ #.
2075
+ #: ../plugins/mycred-hook-gd-star-rating.php:116
2076
+ msgid "Up / Down Vote"
2077
+ msgstr "Voto Arriba / Abajo"
2078
 
2079
+ #: ../plugins/mycred-hook-simplepress.php:19
2080
+ #, php-format
2081
+ msgid "Awards %_plural% for Simple:Press actions."
2082
+ msgstr "Concede %_plural% por acciones en Simple:Press."
2083
 
2084
+ #: ../plugins/mycred-hook-simplepress.php:278 ../plugins/mycred-hook-bbPress.php:
2085
+ #: 434
2086
+ #, php-format
2087
+ msgid "%plural% for New Topic"
2088
+ msgstr "%plural% por Nuevo Tema"
2089
 
2090
+ #: ../plugins/mycred-hook-simplepress.php:295 ../plugins/mycred-hook-bbPress.php:
2091
+ #: 456
2092
+ #, php-format
2093
+ msgid "%plural% for Topic Deletion"
2094
+ msgstr "%plural% por Borrar Tema"
2095
 
2096
+ #: ../plugins/mycred-hook-simplepress.php:308
2097
+ #, php-format
2098
+ msgid "%plural% for New Topic Post"
2099
+ msgstr "%plural% por Nueva Publicacion "
2100
 
2101
+ #: ../plugins/mycred-hook-simplepress.php:326
2102
+ #, php-format
2103
+ msgid "Topic authors can receive %_plural% for posting on their own Topic"
2104
+ msgstr "Autor de la tema puede recibir %_plural% por publicar su propia Tema"
2105
 
2106
+ #: ../plugins/mycred-hook-simplepress.php:330
2107
+ #, php-format
2108
+ msgid "%plural% for Topic Post Deletion"
2109
+ msgstr "%plural% por Borrar la Tema del Post"
2110
 
2111
+ #: ../plugins/mycred-hook-marketpress.php:63 ../plugins/mycred-hook-woocommerce.
2112
+ #: php:80
2113
+ #, php-format
2114
+ msgid "Reward with %plural%"
2115
+ msgstr "Premiar con %plural%"
2116
 
2117
+ #: ../plugins/mycred-hook-buddypress-gallery.php:19
2118
+ msgid "BuddyPress: Gallery Actions"
2119
+ msgstr "BuddyPress: Acciones sobre Galerías"
2120
 
2121
+ #: ../plugins/mycred-hook-buddypress-gallery.php:20
2122
+ #, php-format
2123
+ msgid ""
2124
+ "Awards %_plural% for creating a new gallery either using BP Album+ or BP "
2125
+ "Gallery."
2126
  msgstr ""
2127
+ "Conceder %_plural% por crear una nueva galería ya sea usando BP Album+ o BP "
2128
+ "Gallery."
2129
 
2130
+ #: ../plugins/mycred-hook-buddypress-gallery.php:96
2131
+ #, php-format
2132
+ msgid "%plural% for New Gallery"
2133
+ msgstr "%plural% por Nueva Galería"
2134
 
2135
+ #: ../plugins/mycred-hook-buddypress.php:14
2136
+ msgid "BuddyPress: Members"
2137
+ msgstr "BuddyPress: Miembros"
2138
 
2139
+ #: ../plugins/mycred-hook-buddypress.php:15
2140
+ #, php-format
2141
+ msgid "Awards %_plural% for profile related actions."
2142
+ msgstr "Concede %_plural% por acciones relacionados al perfil."
2143
 
2144
+ #: ../plugins/mycred-hook-buddypress.php:22
2145
+ msgid "BuddyPress: Groups"
2146
+ msgstr "BuddyPress: Grupos"
2147
 
2148
+ #: ../plugins/mycred-hook-buddypress.php:23
2149
+ #, php-format
2150
+ msgid ""
2151
+ "Awards %_plural% for group related actions. Use minus to deduct %_plural% or "
2152
+ "zero to disable a specific hook."
2153
+ msgstr ""
2154
+ "Concede %_plural% para acciones relacionados a grupos. Usa negativo para "
2155
+ "sustraer %_plural% o cero para desabilitar un gancho especifico."
2156
 
2157
+ #: ../plugins/mycred-hook-buddypress.php:252 ../addons/gateway/event-
2158
+ #: booking/mycred-eventsmanager.php:636 ../addons/gateway/event-booking/mycred-
2159
+ #: eventsmanager-pro.php:617 ../addons/gateway/carts/mycred-wpecommerce.php:386 ..
2160
+ #: addons/gateway/carts/mycred-marketpress.php:438
2161
+ msgid "Insufficient Funds"
2162
+ msgstr "Fondos Insuficientes"
2163
 
2164
+ #: ../plugins/mycred-hook-buddypress.php:502
2165
+ #, php-format
2166
+ msgid "%plural% for Profile Updates"
2167
+ msgstr "%plural% por Actualizar Perfil"
2168
 
2169
+ #: ../plugins/mycred-hook-buddypress.php:536
2170
+ #, php-format
2171
+ msgid "%plural% for New Avatar"
2172
+ msgstr "%plural% por Nuevo Avatar"
 
 
 
 
 
 
 
2173
 
2174
+ #: ../plugins/mycred-hook-buddypress.php:553
2175
+ #, php-format
2176
+ msgid "%plural% for New Friendships"
2177
+ msgstr "%plural% por Nueva Amistad"
2178
 
2179
+ #: ../plugins/mycred-hook-buddypress.php:573
2180
+ #, php-format
2181
+ msgid "%plural% for Leaving Friendship"
2182
+ msgstr "%plural% por Dejar Amistad"
 
 
 
2183
 
2184
+ #: ../plugins/mycred-hook-buddypress.php:586
2185
+ #, php-format
2186
+ msgid "%plural% for New Comment"
2187
+ msgstr "%plural% por Nuevo Comentario"
2188
 
2189
+ #: ../plugins/mycred-hook-buddypress.php:603
2190
+ #, php-format
2191
+ msgid "%plural% for Deleting Comment"
2192
+ msgstr "%plural% por Borrar Comentario"
2193
 
2194
+ #: ../plugins/mycred-hook-buddypress.php:616
2195
+ #, php-format
2196
+ msgid "%plural% for New Messages"
2197
+ msgstr "%plural% por Nuevo Mensaje"
2198
 
2199
+ #: ../plugins/mycred-hook-buddypress.php:633
2200
+ #, php-format
2201
+ msgid "%plural% for Sending Gift"
2202
+ msgstr "%plural% por Enviar Regalo"
2203
 
2204
+ #: ../plugins/mycred-hook-buddypress.php:1204
2205
+ #, php-format
2206
+ msgid "%plural% for Creating Groups"
2207
+ msgstr "%plural% por Creat Cupones"
 
 
 
2208
 
2209
+ #: ../plugins/mycred-hook-buddypress.php:1208
2210
  msgid ""
2211
+ "If you use a negative value and the user does not have enough %_plural% the "
2212
+ "\"Create Group\" button will be disabled."
2213
  msgstr ""
2214
+ "Si usas un valor negativo y el usuario no tiene bastante %_plural% el botón "
2215
+ "\"Crear Grupo\" sera desactivada."
 
 
 
 
 
2216
 
2217
+ #: ../plugins/mycred-hook-buddypress.php:1212
2218
+ msgid "Number of members before awarding %_plural%"
2219
+ msgstr "Numero de miembros antes de conceder %_plural%"
2220
 
2221
+ #: ../plugins/mycred-hook-buddypress.php:1214
2222
+ msgid "Use zero to award %_plural% when group is created."
2223
+ msgstr "Ponga cero para %_plural% cuando se crea un grupo."
2224
 
2225
+ #: ../plugins/mycred-hook-buddypress.php:1224
2226
+ #, php-format
2227
+ msgid "%plural% for Deleting Groups"
2228
+ msgstr "%plural% por Borrar Grupos"
2229
 
2230
+ #: ../plugins/mycred-hook-buddypress.php:1237
2231
+ #, php-format
2232
+ msgid "%plural% for New Forum Topic"
2233
+ msgstr "%plural% por Nuevo Tema de Foro"
2234
 
2235
+ #: ../plugins/mycred-hook-buddypress.php:1254
2236
+ #, php-format
2237
+ msgid "%plural% for Editing Forum Topic"
2238
+ msgstr "%plural% por Editar Tema de Foro"
2239
 
2240
+ #: ../plugins/mycred-hook-buddypress.php:1271
2241
  #, php-format
2242
+ msgid "%plural% for New Forum Post"
2243
+ msgstr "%plural% por Nueva Publicación en Foro"
 
 
 
 
2244
 
2245
+ #: ../plugins/mycred-hook-buddypress.php:1288
2246
+ #, php-format
2247
+ msgid "%plural% for Editing Forum Post"
2248
+ msgstr "%plural% por Editar Publicación en Foro"
2249
 
2250
+ #: ../plugins/mycred-hook-buddypress.php:1305
2251
+ #, php-format
2252
+ msgid "%plural% for Joining Groups"
2253
+ msgstr "%plural% por Unirse a Grupos"
 
 
 
2254
 
2255
+ #: ../plugins/mycred-hook-buddypress.php:1309
2256
  msgid ""
2257
+ "If you use a negative value and the user does not have enough %_plural% the "
2258
+ "\"Join Group\" button will be disabled."
2259
  msgstr ""
2260
+ "Si usas un valor negativo y el usuario no tiene bastante %_plural% el botón "
2261
+ "\"Unirse a Grupo\" sera desactivada."
 
 
 
 
 
2262
 
2263
+ #: ../plugins/mycred-hook-buddypress.php:1323
2264
+ #, php-format
2265
+ msgid "%plural% for Leaving Groups"
2266
+ msgstr "%plural% por Dejar Grupos"
2267
 
2268
+ #: ../plugins/mycred-hook-buddypress.php:1336
2269
+ #, php-format
2270
+ msgid "%plural% for New Group Avatar"
2271
+ msgstr "%plural% por Nuevo Avatar de Grupo"
2272
 
2273
+ #: ../plugins/mycred-hook-buddypress.php:1353
2274
+ #, php-format
2275
+ msgid "%plural% for New Group Comment"
2276
+ msgstr "%plural% por Nuevo Comentario Grupo"
2277
 
2278
+ #: ../plugins/mycred-hook-buddypress-links.php:19
2279
+ msgid "BuddyPress: Links"
2280
+ msgstr "BuddyPress: Enlaces"
2281
 
2282
+ #: ../plugins/mycred-hook-buddypress-links.php:20
2283
+ #, php-format
2284
+ msgid "Awards %_plural% for link related actions."
2285
+ msgstr "Concede %_plural% por acciones relacionados a enlaces."
2286
 
2287
+ #: ../plugins/mycred-hook-buddypress-links.php:244
2288
+ #, php-format
2289
+ msgid "%plural% for New Links"
2290
+ msgstr "%plural% por Nuevos Enlaces"
2291
 
2292
+ #: ../plugins/mycred-hook-buddypress-links.php:261
2293
+ #, php-format
2294
+ msgid "%plural% for Vote on Link"
2295
+ msgstr "%plural% por Votar sobre Enlaces"
2296
 
2297
+ #: ../plugins/mycred-hook-buddypress-links.php:277
2298
  #, php-format
2299
+ msgid "%plural% per received Vote"
2300
+ msgstr "%plural% por Votos Recibidos"
 
2301
 
2302
+ #: ../plugins/mycred-hook-buddypress-links.php:280
2303
+ msgid "Vote Up"
2304
+ msgstr "Votar a Favor"
 
2305
 
2306
+ #: ../plugins/mycred-hook-buddypress-links.php:299
2307
+ msgid "Vote Down"
2308
+ msgstr "Votar en Contra "
2309
 
2310
+ #: ../plugins/mycred-hook-buddypress-links.php:314
2311
  #, php-format
2312
+ msgid "%plural% for Updating Links"
2313
+ msgstr "%plural% por Actualizar Enlaces"
 
 
 
 
2314
 
2315
+ #: ../plugins/mycred-hook-buddypress-links.php:331
2316
  #, php-format
2317
+ msgid "%plural% for Deleting Links"
2318
+ msgstr "%plural% por Borrar Enlaces"
2319
 
2320
+ #: ../plugins/mycred-hook-affiliatewp.php:256 ../includes/mycred-shortcodes.php:
2321
+ #: 988 ../includes/mycred-shortcodes.php:1131 ../includes/mycred-admin.php:749 ..
2322
+ #: includes/mycred-admin.php:801 ../addons/banking/services/mycred-bank-service-
2323
+ #: payouts.php:266 ../addons/buy-creds/myCRED-addon-buy-creds.php:344 ..
2324
+ #: addons/buy-creds/myCRED-addon-buy-creds.php:1633 ../addons/buy-creds/myCRED-
2325
+ #: addon-buy-creds.php:1713 ../addons/buy-creds/abstracts/mycred-abstract-payment-
2326
+ #: gateway.php:593
2327
+ msgid "Amount"
2328
+ msgstr "Cantidad"
2329
 
2330
+ #: ../plugins/mycred-hook-events-manager-light.php:18
2331
+ msgid "Events Manager"
2332
+ msgstr "Gestionamiento de Eventos"
2333
 
2334
+ #: ../plugins/mycred-hook-events-manager-light.php:19
2335
+ #, php-format
2336
+ msgid "Awards %_plural% for users attending events."
2337
+ msgstr "Concede %_plural% para usuarios que asistieron actividades o eventos."
 
2338
 
2339
+ #: ../plugins/mycred-hook-events-manager-light.php:186
2340
+ msgid "Attending Event"
2341
+ msgstr "Asistir Evento"
 
 
2342
 
2343
+ #: ../plugins/mycred-hook-events-manager-light.php:203
2344
+ msgid "Cancelling Attendance"
2345
+ msgstr "Cancelando Asistencia"
 
2346
 
2347
+ #: ../plugins/mycred-hook-sharethis.php:19
2348
+ #, php-format
2349
+ msgid "%plural% for Sharing"
2350
+ msgstr "%plural% para Compartir"
2351
 
2352
+ #: ../plugins/mycred-hook-sharethis.php:20
2353
+ #, php-format
2354
+ msgid ""
2355
+ "Awards %_plural% for users sharing / liking your website content to popular "
2356
+ "social media sites."
2357
  msgstr ""
2358
+ "Concede %_plural% a usuarios por compartir / gustar el contenido de tu sitio "
2359
+ "web atraves de sitio de los medios de comunicación social."
2360
 
2361
+ #: ../plugins/mycred-hook-sharethis.php:257
2362
+ msgid "Your ShareThis public key is not set."
2363
+ msgstr "Tu llave publico de ShareThis no ha sido configurado."
2364
 
2365
+ #: ../plugins/mycred-hook-sharethis.php:262
2366
+ msgid "No ShareThis services detected. Please check your installation."
2367
+ msgstr "Ningun servicio ShareThis detectado. Por favor verifique su instalación."
2368
 
2369
+ #: ../plugins/mycred-hook-buddypress-media.php:18
2370
+ msgid "rtMedia Galleries"
2371
+ msgstr "Galerías rtMedia (rtMedia Galleries)"
2372
 
2373
+ #: ../plugins/mycred-hook-buddypress-media.php:19
2374
+ #, php-format
2375
+ msgid "Award / Deduct %_plural% for users creating albums or uploading new photos."
2376
+ msgstr "Concede / Resta %_plural% a usuarios por crear álbumes o subir nuevos fotos."
2377
 
2378
+ #: ../plugins/mycred-hook-buddypress-media.php:202
2379
+ msgid "New Media Upload"
2380
+ msgstr "Subir Nuevo Media"
2381
 
2382
+ #: ../plugins/mycred-hook-buddypress-media.php:205 ../includes/mycred-functions.
2383
+ #: php:2557
2384
+ msgid "Photo Upload"
2385
+ msgstr "Subir Foto"
 
 
2386
 
2387
+ #: ../plugins/mycred-hook-buddypress-media.php:219 ../includes/mycred-functions.
2388
+ #: php:2558
2389
+ msgid "Video Upload"
2390
+ msgstr "Subir Video"
2391
 
2392
+ #: ../plugins/mycred-hook-buddypress-media.php:233 ../includes/mycred-functions.
2393
+ #: php:2559
2394
+ msgid "Music Upload"
2395
+ msgstr "Subir Música"
2396
 
2397
+ #: ../plugins/mycred-hook-buddypress-media.php:247
2398
+ msgid "Delete Media"
2399
+ msgstr "Borrar Medios"
2400
 
2401
+ #: ../plugins/mycred-hook-buddypress-media.php:250
2402
+ msgid "Delete Photo"
2403
+ msgstr "Borrar Foto"
2404
 
2405
+ #: ../plugins/mycred-hook-buddypress-media.php:260
2406
+ msgid "Delete Video"
2407
+ msgstr "Borrar Video"
2408
 
2409
+ #: ../plugins/mycred-hook-buddypress-media.php:270
2410
+ msgid "Delete Music"
2411
+ msgstr "Borrar Música"
2412
 
2413
+ #: ../plugins/mycred-hook-wp-favorite-posts.php:18
2414
+ msgid "WP Favorite Posts"
2415
+ msgstr "WP Favorite Posts"
2416
 
2417
+ #: ../plugins/mycred-hook-wp-favorite-posts.php:19
2418
+ #, php-format
2419
+ msgid "Awards %_plural% for users adding posts to their favorites."
2420
+ msgstr "Concede %_plural% a usuarios por añadir entradas a sus favoritos."
2421
 
2422
+ #: ../plugins/mycred-hook-wp-favorite-posts.php:207
2423
+ msgid "Adding Content to Favorites"
2424
+ msgstr "Añadiendo Contenido a Favoritos"
2425
 
2426
+ #: ../plugins/mycred-hook-wp-favorite-posts.php:243
2427
+ msgid "Removing Content from Favorites"
2428
+ msgstr "Quitando Contenido de Favoritos"
2429
 
2430
+ #: ../plugins/mycred-hook-contact-form7.php:18
2431
+ msgid "Contact Form 7 Form Submissions"
2432
+ msgstr "Presentación Formulario de Contact Form 7"
2433
 
2434
+ #: ../plugins/mycred-hook-contact-form7.php:19
2435
+ #, php-format
2436
+ msgid "Awards %_plural% for successful form submissions (by logged in users)."
2437
  msgstr ""
2438
+ "Concede %_plural% por el exitoso envío del formulario (por usuarios que han "
2439
+ "iniciado sesión)"
2440
 
2441
+ #: ../plugins/mycred-hook-jetpack.php:18
2442
+ msgid "Jetpack Subscriptions"
2443
+ msgstr "Suscripciónes a Jetpack"
2444
 
2445
+ #: ../plugins/mycred-hook-jetpack.php:19
2446
+ #, php-format
2447
+ msgid ""
2448
+ "Awards %_plural% for users signing up for site or comment updates using "
2449
+ "Jetpack."
2450
+ msgstr ""
2451
+ "Concede %_plural% a usuarios por incribirse a las actualizaciones del sitio "
2452
+ "web o a los comentarios atraves de Jetpack."
2453
 
2454
+ #: ../plugins/mycred-hook-jetpack.php:499
2455
+ msgid "Site Subscriptions"
2456
+ msgstr "Suscripciónes al Sitio Web"
2457
 
2458
+ #: ../plugins/mycred-hook-jetpack.php:512
2459
+ msgid "Comment Subscriptions"
2460
+ msgstr "Suscripciónes a commentarios"
2461
 
2462
+ #: ../plugins/mycred-hook-bbPress.php:18
2463
+ msgid "bbPress"
2464
+ msgstr "bbPress"
 
 
 
 
2465
 
2466
+ #: ../plugins/mycred-hook-bbPress.php:19
2467
  #, php-format
2468
+ msgid "Awards %_plural% for bbPress actions."
2469
+ msgstr "Concede %_plural% por acciones en bbPress."
2470
 
2471
+ #: ../plugins/mycred-hook-bbPress.php:404
2472
+ #, php-format
2473
+ msgid "%plural% for New Forum"
2474
+ msgstr "%plural% por nuevo foro"
2475
 
2476
+ #: ../plugins/mycred-hook-bbPress.php:421
2477
+ #, php-format
2478
+ msgid "%plural% for Forum Deletion"
2479
+ msgstr "%plural% por Eliminar Foro"
2480
 
2481
+ #: ../plugins/mycred-hook-bbPress.php:452
2482
+ #, php-format
2483
+ msgid "Forum authors can receive %_plural% for creating new topics."
2484
+ msgstr "Autores "
2485
 
2486
+ #: ../plugins/mycred-hook-bbPress.php:469
2487
+ #, php-format
2488
+ msgid "%plural% for Favorited Topic"
2489
+ msgstr "%plural% por Añadir Tema a tus \"Favoritos\""
2490
 
2491
+ #: ../plugins/mycred-hook-bbPress.php:486
2492
+ #, php-format
2493
+ msgid "%plural% for New Reply"
2494
+ msgstr "%plural% por Nueva Respuesta"
 
 
2495
 
2496
+ #: ../plugins/mycred-hook-bbPress.php:504
2497
+ #, php-format
2498
+ msgid "Topic authors can receive %_plural% for replying to their own Topic"
2499
+ msgstr "Autor de la tema puede recibir %_plural% por responder a su propia Tema"
 
 
 
2500
 
2501
+ #: ../plugins/mycred-hook-bbPress.php:508
2502
+ #, php-format
2503
+ msgid "Show users %_plural% balance in replies"
2504
+ msgstr "Mostrar usuarios el saldo de %_plural% en las respuestas"
 
2505
 
2506
+ #: ../plugins/mycred-hook-bbPress.php:512
2507
+ #, php-format
2508
+ msgid "%plural% for Reply Deletion"
2509
+ msgstr "%plural% para Borrar Respuesta"
2510
 
2511
+ #: ../plugins/mycred-hook-woocommerce.php:210
2512
+ msgid "WooCommerce Product Reviews"
2513
+ msgstr " Revisión del Producto WooCommerce\n"
2514
 
2515
+ #: ../plugins/mycred-hook-woocommerce.php:211
2516
  #, php-format
2517
+ msgid "Awards %_plural% for users leaving reviews on your WooCommerce products."
 
 
2518
  msgstr ""
2519
+ "Concede %_plural% a usuarios por escribir reseñas sobre tus productos "
2520
+ "WooCommerce."
 
 
 
 
2521
 
2522
+ #: ../plugins/mycred-hook-badgeOS.php:18
2523
+ msgid "BadgeOS"
2524
+ msgstr "BadgeOS"
 
 
2525
 
2526
+ #: ../plugins/mycred-hook-badgeOS.php:19
2527
+ msgid ""
2528
+ "Default settings for each BadgeOS Achievement type. These settings may be "
2529
+ "overridden for individual achievement type."
2530
+ msgstr ""
2531
+ "Configuraciones predefinidos para cada clase de BadgeOS Logro (Achievement). "
2532
+ "Estos ajustes pueden ser anulados para el tipo de logro individual."
2533
 
2534
+ #: ../plugins/mycred-hook-badgeOS.php:105
 
2535
  #, php-format
2536
+ msgid ""
2537
+ "Please setup your <a href=\"%s\">default settings</a> before using this "
2538
+ "feature."
2539
+ msgstr ""
2540
+ "Por favor configura tus <a href=\"%s\">configuraciones predefinidos</a> antes "
2541
+ "de usar este función."
2542
 
2543
+ #: ../plugins/mycred-hook-badgeOS.php:118 ../plugins/mycred-hook-badgeOS.php:120
2544
+ #, php-format
2545
+ msgid "%plural% to Award"
2546
+ msgstr "%plural% a Conceder"
2547
 
2548
+ #. also "Ponga cero para inhabilitar"
2549
+ #: ../plugins/mycred-hook-badgeOS.php:122
2550
+ msgid "Use zero to disable"
2551
+ msgstr "Ponga cero para desactivar"
2552
 
2553
+ #: ../plugins/mycred-hook-badgeOS.php:133
2554
+ msgid "Deduction Log Template"
2555
+ msgstr "Plantilla de Registro Descontado"
2556
+
2557
+ #: ../plugins/mycred-hook-badgeOS.php:278
2558
  #, php-format
2559
+ msgid "Default %s for %s"
2560
+ msgstr "Predeterminar %s por %s"
 
 
2561
 
2562
+ #: ../plugins/mycred-hook-badgeOS.php:284
2563
+ msgid "Use zero to disable users gaining %_plural%"
2564
+ msgstr "Ponga cero para que los usuarios no obtengan %_plural%"
 
2565
 
2566
+ #: ../plugins/mycred-hook-badgeOS.php:288
2567
+ msgid "Default Log template"
2568
+ msgstr "Plantilla de Registro Predefinido"
 
 
 
 
2569
 
2570
+ #: ../includes/mycred-importer.php:11
2571
  #, php-format
2572
+ msgid "%s Log Import"
2573
+ msgstr "Registro de Importe %s"
 
 
 
 
 
 
2574
 
2575
+ #: ../includes/mycred-importer.php:12
2576
+ msgid "Import log entries via a CSV file."
2577
+ msgstr "Importa las entradas de registro atraves de un fichero CSV."
2578
 
2579
+ #: ../includes/mycred-importer.php:43
2580
+ #, php-format
2581
+ msgid "%s Balance Import"
2582
+ msgstr "%s balance de Importar"
 
 
 
2583
 
2584
+ #: ../includes/mycred-importer.php:44
2585
+ msgid "Import balances."
2586
+ msgstr "Saldos Importar."
2587
 
2588
+ #: ../includes/mycred-importer.php:75
 
2589
  #, php-format
2590
+ msgid "%s CubePoints Import"
2591
+ msgstr "Importar CubePoints %s"
2592
 
2593
+ #: ../includes/mycred-importer.php:76 ../includes/importers/mycred-cubepoints.php:
2594
+ #: 344
2595
+ msgid "Import CubePoints log entries and / or balances."
2596
+ msgstr "Importar las entradas de registro de CubePoints y/o saldos."
 
 
 
 
2597
 
2598
+ #: ../includes/mycred-importer.php:92
2599
+ msgid "No CubePoints log exists."
2600
+ msgstr "No existe ningun registro de CubePoints."
 
 
 
 
 
2601
 
2602
+ #: ../includes/mycred-log.php:485
2603
+ #, php-format
2604
+ msgid "Showing %d %s"
2605
+ msgstr "Mostrando %d %s"
2606
 
2607
+ #. need more context: entrada or inscripción
2608
+ #: ../includes/mycred-log.php:485
2609
+ msgid "entry"
2610
+ msgstr "entrada"
 
 
 
 
 
 
2611
 
2612
+ #: ../includes/mycred-log.php:500
2613
+ msgid "Go to the first page"
2614
+ msgstr "Ir a la primera página"
 
 
 
2615
 
2616
+ #: ../includes/mycred-log.php:507
2617
+ msgid "Go to the previous page"
2618
+ msgstr "Ir a la página anterior"
 
 
 
2619
 
2620
+ #: ../includes/mycred-log.php:517
2621
+ msgid "Current page"
2622
+ msgstr "Página corriente"
2623
 
2624
+ #: ../includes/mycred-log.php:523
2625
+ #, php-format
2626
+ msgctxt "mycred"
2627
+ msgid "%1$s of %2$s"
2628
+ msgstr "%1$s de %2$s"
2629
 
2630
+ #: ../includes/mycred-log.php:527
2631
+ msgid "Go to the next page"
2632
+ msgstr "Ir a la página siguiente"
2633
 
2634
+ #: ../includes/mycred-log.php:534
2635
+ msgid "Go to the last page"
2636
+ msgstr "Ir a la última página"
2637
 
2638
+ #: ../includes/mycred-log.php:611
2639
+ msgid "Show all references"
2640
+ msgstr "Muestra todas las referencias"
2641
 
2642
+ #: ../includes/mycred-log.php:636
2643
+ msgid "Show in order"
2644
+ msgstr "Mostrar en Orden"
2645
 
2646
+ #: ../includes/mycred-log.php:637 ../includes/mycred-widgets.php:427
2647
+ msgid "Ascending"
2648
+ msgstr "Ascendente"
 
 
2649
 
2650
+ #: ../includes/mycred-log.php:637 ../includes/mycred-widgets.php:428
2651
+ msgid "Descending"
2652
+ msgstr "Descendente"
2653
 
2654
+ #: ../includes/mycred-log.php:658
2655
+ msgid "Filter"
2656
+ msgstr "Filtro"
2657
+
2658
+ #: ../includes/mycred-log.php:718
2659
  msgid ""
2660
+ "Log entries are exported to a CSV file and depending on the number of "
2661
+ "entries selected, the process may take a few seconds."
 
 
2662
  msgstr ""
2663
+ "Se exporta las entradas de registro a un fichero CSV y dependiendo del "
2664
+ "número de entradas seleccionadas, el proceso puede tardar unos segundos."
 
 
 
 
 
 
 
2665
 
2666
+ #: ../includes/mycred-log.php:725
2667
+ msgid "No export options available."
2668
+ msgstr "No hay opciones para exportar."
2669
 
2670
+ #: ../includes/mycred-log.php:756 ../addons/buy-creds/myCRED-addon-buy-creds.php:
2671
+ #: 1075
2672
+ msgid "Date"
2673
+ msgstr "Fecha"
2674
 
2675
+ #. need more context: entrada or inscripción
2676
+ #: ../includes/mycred-log.php:758
2677
+ msgid "Entry"
2678
+ msgstr "Entrada"
 
 
 
2679
 
2680
+ #: ../includes/mycred-log.php:958
2681
+ msgid "No log entries found"
2682
+ msgstr "Ninguna entrada de registro encontrada"
2683
 
2684
+ #: ../includes/mycred-log.php:976 ../includes/mycred-log.php:978
2685
+ msgid "Search Log"
2686
+ msgstr "Busqueda de Registro"
2687
 
2688
+ #. buscar las entradas en el registro
2689
+ #: ../includes/mycred-log.php:977
2690
+ msgid "search log entries"
2691
+ msgstr "Búsqueda de las entradas de registro"
2692
 
2693
+ #: ../includes/mycred-remote.php:523
2694
+ msgid "This feature requires WordPress Permalinks to be setup and enabled!"
2695
+ msgstr ""
2696
+ "¡Esta característica técnica requiere que los Permalinks de Wordpress esten "
2697
+ "activados y configurado!"
 
 
 
2698
 
2699
+ #: ../includes/mycred-remote.php:526
2700
+ msgid "Click Update Settings to load the Remote API settings."
2701
+ msgstr ""
2702
+ "Haga clic sobre Actualizar Configuraciones para cargar la configuración de "
2703
+ "API remoto."
2704
 
2705
+ #: ../includes/mycred-remote.php:528
2706
+ msgid "Allow Remote Access"
2707
+ msgstr "Permita Acceso Remoto"
2708
 
2709
+ #: ../includes/mycred-remote.php:549
2710
+ msgid "Remote Access"
2711
+ msgstr "Acceso Remoto"
2712
 
2713
+ #: ../includes/mycred-remote.php:551 ../addons/buy-creds/gateways/bitpay.php:253
2714
+ msgid "API Key"
2715
+ msgstr "Clave de la API"
2716
 
2717
+ #: ../includes/mycred-remote.php:554
2718
+ msgid "Key"
2719
+ msgstr "Clave"
2720
 
2721
+ #: ../includes/mycred-remote.php:556
2722
+ msgid "Required for this feature to work!<br />Minimum 12 characters."
2723
+ msgstr ""
2724
+ "¡Precisado para que esta característica técnica funcione!<br /> Minimo 12 "
2725
+ "símbolos."
2726
 
2727
+ #: ../includes/mycred-remote.php:559
2728
+ msgid "Key Length"
2729
+ msgstr "Longitud de la Clave"
2730
 
2731
+ #: ../includes/mycred-remote.php:564
2732
+ msgid "Generate New Key"
2733
+ msgstr "Generar nueva clave"
2734
 
2735
+ #: ../includes/mycred-remote.php:566
2736
+ msgid "Warning!"
2737
+ msgstr "¡Aviso!"
2738
 
2739
+ #: ../includes/mycred-remote.php:566
2740
  #, php-format
2741
  msgid ""
2742
+ "Keep this key safe! Those you share this key with will be able to remotely "
2743
+ "deduct / add / transfer %plural%!"
 
2744
  msgstr ""
2745
+ "¡Mantenga la seguridad de esta clave! Aquellos con quien compartes esta "
2746
+ "clave podran restar / añadir / transferir %plural% de forma remota."
 
2747
 
2748
+ #: ../includes/mycred-remote.php:568
2749
+ msgid "Incoming URI"
2750
+ msgstr "URI Entrante"
2751
 
2752
+ #: ../includes/mycred-remote.php:572
2753
+ msgid ""
2754
+ "The incoming call address. Remote calls made to any other URL will be "
2755
+ "ignored."
2756
  msgstr ""
2757
+ "La dirección de la llamada entrante. Se ignorará las llamadas remotas a "
2758
+ "cualquier otro URL."
2759
 
2760
+ #: ../includes/mycred-remote.php:575
2761
+ msgid "Debug Mode"
2762
+ msgstr "Modo de Depuración"
2763
+
2764
+ #: ../includes/mycred-remote.php:578
2765
+ msgid ""
2766
+ "Remember to disable when not used to prevent mischievous calls from learning "
2767
+ "about your setup!"
2768
  msgstr ""
2769
+ "Recuerda a desactivarlo cuando no está en uso para prevenir que llamadas "
2770
+ "maliciosas conozcan detalles de tu configuración!"
2771
 
2772
+ #: ../includes/mycred-network.php:66 ../includes/mycred-network.php:67
2773
+ msgid "Network Settings"
2774
+ msgstr "Configuración de la Red"
2775
 
2776
+ #: ../includes/mycred-network.php:151
2777
+ #, php-format
2778
+ msgid "%s Network"
2779
+ msgstr "Red de %s"
2780
 
2781
+ #: ../includes/mycred-network.php:157
2782
+ #, php-format
2783
+ msgid "Note! %s has not yet been setup."
2784
+ msgstr "¡Aviso! %s no ha sido configurado."
2785
 
2786
+ #: ../includes/mycred-network.php:161
2787
+ msgid "Network Settings Updated"
2788
+ msgstr "Configuraciones de la Red Actualizadas"
2789
 
2790
+ #: ../includes/mycred-network.php:164
2791
+ #, php-format
2792
+ msgid "Configure network settings for %s."
2793
+ msgstr "Configure los parámetros de red para %s."
2794
 
2795
+ #: ../includes/mycred-network.php:172
2796
+ msgid "Master Template"
2797
+ msgstr "Plantilla Principal"
2798
 
2799
+ #: ../includes/mycred-network.php:176 ../includes/mycred-network.php:190 ..
2800
+ #: addons/buy-creds/gateways/bitpay.php:307
2801
+ msgid "Yes"
2802
+ msgstr "Sí"
2803
 
2804
+ #: ../includes/mycred-network.php:180 ../includes/mycred-network.php:194 ..
2805
+ #: addons/buy-creds/gateways/bitpay.php:306
2806
+ msgid "No"
2807
+ msgstr "No"
2808
 
2809
+ #: ../includes/mycred-network.php:183
2810
  #, php-format
 
 
 
 
 
 
 
 
2811
  msgid ""
2812
+ "If enabled, %s will use your main site's settings for all other sites in "
2813
+ "your network."
2814
  msgstr ""
2815
+ "Si activado, %s utilizara la configuración de tu sitio principal para todas "
2816
+ "los sitios en tu red."
2817
 
2818
+ #: ../includes/mycred-network.php:186
2819
+ msgid "Central Logging"
2820
+ msgstr "Central de Registro"
2821
 
2822
+ #: ../includes/mycred-network.php:197
2823
+ #, php-format
2824
+ msgid "If enabled, %s will log all site actions in your main site's log."
 
2825
  msgstr ""
2826
+ "Si está activado, %s registrará todas las acciones en el registro de tu "
2827
+ "sitio principal."
2828
 
2829
+ #: ../includes/mycred-network.php:200
2830
+ msgid "Site Block"
2831
+ msgstr "Bloqueo de Sitio"
2832
 
2833
+ #: ../includes/mycred-network.php:204
2834
  #, php-format
2835
+ msgid "Comma separated list of blog ids where %s is to be disabled."
2836
+ msgstr "Lista separada por comas de blog IDs donde %s se va a inhabilitar."
2837
 
2838
+ #: ../includes/mycred-network.php:216
2839
+ msgid "Save Network Settings"
2840
+ msgstr "Guardar las Configuraciones de la Eed"
 
2841
 
2842
+ #: ../includes/mycred-about.php:77
 
 
2843
  #, php-format
2844
+ msgid "Welcome to %s %s"
2845
+ msgstr "Bienvenido a %s %s"
2846
 
2847
+ #: ../includes/mycred-shortcodes.php:175
2848
+ msgid "Leaderboard is empty."
2849
+ msgstr "La Tabla de Clasificación esta vacía"
2850
 
2851
+ #: ../includes/mycred-shortcodes.php:525
2852
+ msgid "error"
2853
+ msgstr "error"
 
 
2854
 
2855
+ #: ../includes/mycred-shortcodes.php:525
2856
+ msgid "Anchor missing URL!"
2857
+ msgstr "¡La Ancla falta el URL!"
 
2858
 
2859
+ #: ../includes/mycred-shortcodes.php:641
2860
+ msgid "Sent"
2861
+ msgstr "Enviado"
2862
 
2863
+ #: ../includes/mycred-shortcodes.php:642
2864
+ msgid "Error - Try Again"
2865
+ msgstr "Error - Inténtelo de nuevo."
2866
 
2867
+ #: ../includes/mycred-shortcodes.php:780
2868
+ msgid "A video ID is required for this shortcode"
2869
+ msgstr "Este código corto (shortcode) precisa un ID del video."
2870
 
2871
+ #: ../includes/mycred-shortcodes.php:941 ../includes/mycred-functions.php:2732
2872
+ msgid "Point types not found."
2873
+ msgstr "Clase de puntos no encontrado."
 
 
 
 
2874
 
2875
+ #: ../includes/mycred-shortcodes.php:947 ../includes/mycred-shortcodes.php:955 ..
2876
+ #: includes/mycred-functions.php:2744 ../includes/mycred-functions.php:2764
2877
+ #, php-format
2878
+ msgid "You are excluded from using %s."
2879
+ msgstr "Esta exluido del uso de %s."
2880
 
2881
+ #: ../includes/mycred-shortcodes.php:951 ../includes/mycred-functions.php:2754
2882
+ msgid "Your balance is too low to use this feature."
2883
+ msgstr "Tu saldo esta demasiado bajo para usar esta característica."
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
2884
 
2885
+ #: ../includes/mycred-shortcodes.php:973
2886
+ #, php-format
2887
+ msgid "Convert <span>%s</span> to <span>%s</span>"
2888
+ msgstr "Convertir <span>%s</span> a <span>%s</span>"
 
2889
 
2890
+ #: ../includes/mycred-shortcodes.php:982
2891
+ #, php-format
2892
+ msgid "Your current %s balance"
2893
+ msgstr "Tu Saldo Actual %s"
 
2894
 
2895
+ #: ../includes/mycred-shortcodes.php:990
2896
+ #, php-format
2897
+ msgid "Minimum %s"
2898
+ msgstr "Minimo %s"
2899
 
2900
+ #: ../includes/mycred-shortcodes.php:993 ../addons/gateway/event-booking/mycred-
2901
+ #: eventespresso3.php:450 ../addons/gateway/event-booking/mycred-eventsmanager.
2902
+ #: php:578 ../addons/gateway/event-booking/mycred-eventsmanager-pro.php:540 ..
2903
+ #: addons/gateway/carts/mycred-wpecommerce.php:360 ..
2904
+ #: addons/gateway/carts/mycred-woocommerce.php:141 ..
2905
+ #: addons/gateway/carts/mycred-marketpress.php:409
2906
+ msgid "Exchange Rate"
2907
+ msgstr "Tipo de Cambio"
2908
 
2909
+ #: ../includes/mycred-shortcodes.php:994
 
2910
  #, php-format
2911
+ msgid "1 %s = <span class=\"rate\">%s</span> %s"
2912
+ msgstr "1 %s = <span class=\"rate\">%s</span> %s"
2913
 
2914
+ #: ../includes/mycred-shortcodes.php:1000
2915
+ msgid "Exchange"
2916
+ msgstr "Intercambio"
 
2917
 
2918
+ #: ../includes/mycred-overview.php:25
2919
+ #, php-format
2920
+ msgid "%s Overview"
2921
+ msgstr "Descripción de %s"
2922
 
2923
+ #: ../includes/mycred-overview.php:78 ../addons/stats/widgets/mycred-stats-widget-
2924
+ #: circulation.php:136
2925
+ msgid "Total amount in circulation"
2926
+ msgstr "Suma total en circulación"
2927
 
2928
+ #. also, "Otorgado"
2929
+ #: ../includes/mycred-overview.php:81
2930
+ msgid "Awarded"
2931
+ msgstr "Concedido"
2932
 
2933
+ #: ../includes/mycred-overview.php:84
2934
+ msgid "Deducted"
2935
+ msgstr "Deducido"
 
2936
 
2937
+ #: ../includes/mycred-overview.php:120 ../includes/mycred-overview.php:127 ..
2938
+ #: addons/transfer/myCRED-addon-transfer.php:207
2939
+ msgid "Transfers"
2940
+ msgstr "Transferencias"
2941
 
2942
+ #: ../includes/mycred-overview.php:141 ../includes/mycred-overview.php:148 ..
2943
+ #: addons/sell-content/myCRED-addon-sell-content.php:401
2944
+ msgid "Sell Content"
2945
+ msgstr "Vender Contenido"
2946
 
2947
+ #: ../includes/mycred-overview.php:166 ../includes/mycred-overview.php:173 ..
2948
+ #: addons/buy-creds/myCRED-addon-buy-creds.php:346 ../addons/buy-creds/myCRED-
2949
+ #: addon-buy-creds.php:1073 ../addons/buy-creds/myCRED-addon-buy-creds.php:1712
2950
+ msgid "Gateway"
2951
+ msgstr "Pasarela"
2952
 
2953
+ #: ../includes/mycred-overview.php:188 ../includes/mycred-overview.php:195 ..
2954
+ #: addons/coupons/myCRED-addon-coupons.php:93 ../addons/coupons/myCRED-addon-
2955
+ #: coupons.php:99 ../addons/coupons/myCRED-addon-coupons.php:555
2956
+ msgid "Coupons"
2957
+ msgstr "Cupones"
2958
 
2959
+ #: ../includes/mycred-overview.php:208
2960
+ msgid "Manual"
2961
+ msgstr "Manual"
 
 
2962
 
2963
+ #: ../includes/mycred-install.php:39
2964
+ msgid "myCRED requires WordPress 3.8 or higher. Version detected:"
2965
+ msgstr "myCRED requiere WordPress 3.8 o más alto. La versión detectada:"
2966
 
2967
+ #: ../includes/mycred-install.php:44
2968
+ msgid "myCRED requires PHP 5.2.4 or higher. Version detected: "
2969
+ msgstr "myCRED requiere PHP 5.2.4 o más alto. La versión detectada:"
 
2970
 
2971
+ #: ../includes/mycred-install.php:49
2972
+ msgid "myCRED requires SQL 5.0 or higher. Version detected: "
2973
+ msgstr "myCRED requiere SWL 5.0 o más alto. La versión detectada:"
 
2974
 
2975
+ #: ../includes/mycred-install.php:54
2976
+ msgid ""
2977
+ "The mcrypt PHP library must be enabled in order to use this plugin! Please "
2978
+ "check your PHP configuration or contact your host and ask them to enable it "
2979
+ "for you!"
2980
  msgstr ""
2981
+ "La biblioteca PHP mcrypt debe ser habilitado para poder usar este plugin! "
2982
+ "Por favor verifica tu configuración de PHP o contacta a tu web host y "
2983
+ "pideles que lo habiliten para ti!"
 
 
 
 
 
 
2984
 
2985
+ #: ../includes/mycred-install.php:59
2986
  msgid ""
2987
+ "Sorry but your WordPress installation does not reach the minimum "
2988
+ "requirements for running myCRED. The following errors were given:"
2989
  msgstr ""
2990
+ "Lo sentimos, pero tu instalación de WordPress no alcanza a los requisitos "
2991
+ "mínimos de mycred. Se produce los siguientes errores:"
 
2992
 
2993
+ #: ../includes/mycred-install.php:268
2994
+ msgid "myCRED needs your attention."
2995
+ msgstr "myCRED precisa tu atención."
 
2996
 
2997
+ #: ../includes/mycred-install.php:268
2998
+ msgid "Run Setup"
2999
+ msgstr "Ejecutar Configuración"
 
3000
 
3001
+ #: ../includes/mycred-install.php:280 ../includes/mycred-install.php:281
3002
+ msgid "myCRED Setup"
3003
+ msgstr "Instalación de myCRED"
3004
+
3005
+ #: ../includes/mycred-install.php:410
3006
+ #, php-format
3007
+ msgid "%s Setup"
3008
+ msgstr "Configurar %s"
3009
+
3010
+ #: ../includes/mycred-install.php:412
3011
+ msgid "Step"
3012
+ msgstr "Paso"
3013
 
3014
+ #: ../includes/mycred-install.php:436
 
3015
  msgid ""
3016
+ "Click \"Begin Setup\" to install myCRED. You will be able to select your "
3017
+ "points format, layout and security settings."
3018
  msgstr ""
3019
+ "Haga clic en \"Empezar la Instalación\" para instalar myCRED. Podras ajustar "
3020
+ "el formato de puntos, disposiciones y configuraciones de seguridad."
 
 
 
 
 
3021
 
3022
+ #: ../includes/mycred-install.php:437
3023
+ msgid "Begin Setup"
3024
+ msgstr "Empezar la Instalación"
 
3025
 
3026
+ #: ../includes/mycred-install.php:492
3027
+ msgid "Select the format you want to use for your points."
3028
+ msgstr "Elige el formato que quieres usar para tus puntos."
 
3029
 
3030
+ #: ../includes/mycred-install.php:493
3031
+ msgid "Format"
3032
+ msgstr "Formato"
3033
 
3034
+ #: ../includes/mycred-install.php:496
3035
+ msgid "Separators"
3036
+ msgstr "Separadores"
3037
 
3038
+ #: ../includes/mycred-install.php:536
3039
+ msgid "Cancel Setup"
3040
+ msgstr "Cancelar la Instalación"
 
3041
 
3042
+ #: ../includes/mycred-install.php:536 ../addons/buy-creds/myCRED-addon-buy-creds.
3043
+ #: php:1687
3044
+ msgid "Cancel"
3045
+ msgstr "Cancelar"
 
 
3046
 
3047
+ #: ../includes/mycred-install.php:536 ../includes/mycred-install.php:606
3048
+ msgid "Next"
3049
+ msgstr "Siguiente"
3050
 
3051
+ #: ../includes/mycred-install.php:571
3052
+ msgid "Edit Settings Capability"
3053
+ msgstr "Editar la capacidad de las configuraciones"
3054
 
3055
+ #. is this user's or users (plural)?
3056
+ #: ../includes/mycred-install.php:575
3057
  #, php-format
3058
+ msgid "Edit Users %plural% Capability"
3059
+ msgstr "Editar la Capacidad de %plural% del Usuario"
3060
 
3061
+ #: ../includes/mycred-install.php:624
3062
+ msgid "Ready"
3063
+ msgstr "Listo"
 
 
 
 
 
 
 
 
 
 
 
 
 
3064
 
3065
+ #: ../includes/mycred-install.php:625
3066
+ msgid "Almost done! Click the button below to finish this setup."
3067
+ msgstr ""
3068
+ "¡Casi terminado! Haga clic al botón de abajo para finalizar esta "
3069
+ "configuración."
3070
 
3071
+ #: ../includes/mycred-install.php:626
3072
+ msgid "Install & Run"
3073
+ msgstr "Instalar e ejecutar"
 
 
3074
 
3075
+ #: ../includes/mycred-admin.php:195
3076
+ msgid "A log entry is required in order to adjust this users balance"
3077
+ msgstr "Se rpecisa una entrada de registro para ajustar el saldo de este usuario"
 
 
 
3078
 
3079
+ #: ../includes/mycred-admin.php:197
3080
+ msgid "Users balance saved"
3081
+ msgstr "Saldo de Usuario(s) Guardado"
3082
 
3083
+ #: ../includes/mycred-admin.php:205
3084
+ msgid "Users excluded"
3085
+ msgstr "Usuarios Excluidos"
3086
 
3087
+ #: ../includes/mycred-admin.php:210
3088
  msgid ""
3089
+ "All buyCRED Payment Gateways have been disabled! Please check your exchange "
3090
+ "rate settings and update all premium payment gateways!"
3091
  msgstr ""
3092
+ "¡Todas las Pasarelas de Pago de buyCRED han sido desactivado! ¡Por favor "
3093
+ "verifica la configuración del tipo de cambio y actualiza todas las pasarelas "
3094
+ "de pago!"
3095
 
3096
+ #: ../includes/mycred-admin.php:239
3097
+ msgid "User is excluded"
3098
+ msgstr "El Usuario ha sido excluido"
3099
 
3100
+ #: ../includes/mycred-admin.php:244
3101
+ msgid "Log Entry can not be empty"
3102
+ msgstr "Entrada de registro no puede estar vacío"
 
 
3103
 
3104
+ #: ../includes/mycred-admin.php:248
3105
+ msgid "Amount can not be zero"
3106
+ msgstr "La Cantidad no Puede ser Cero"
 
 
 
 
3107
 
3108
+ #: ../includes/mycred-admin.php:269
3109
+ msgid "Failed to update this uses balance."
3110
+ msgstr "No se pudo actualizar el saldo de este usuario."
3111
 
3112
+ #: ../includes/mycred-admin.php:403
3113
+ msgid "Excluded"
3114
+ msgstr "Excluido"
3115
 
3116
+ #: ../includes/mycred-admin.php:424
3117
+ msgid "Adjust"
3118
+ msgstr "Modificar"
 
3119
 
3120
+ #: ../includes/mycred-admin.php:466 ../includes/mycred-admin.php:467
3121
+ msgid "Edit Balance"
3122
+ msgstr "Editar Saldo"
 
3123
 
3124
+ #: ../includes/mycred-admin.php:487
3125
+ msgid "Profile"
3126
+ msgstr "Perfil"
3127
 
3128
+ #: ../includes/mycred-admin.php:494
3129
+ msgid "Extended Profile"
3130
+ msgstr "Perfil Extendido"
3131
 
3132
+ #: ../includes/mycred-admin.php:588
3133
+ #, php-format
3134
+ msgid "This user is excluded from using %s"
3135
+ msgstr "Este usuario esta excluido de poder utilizar %s"
3136
 
3137
+ #: ../includes/mycred-admin.php:612
3138
+ msgid "Edit User"
3139
+ msgstr "Editar Usuario"
3140
 
3141
+ #: ../includes/mycred-admin.php:614
3142
+ msgctxt "user"
3143
+ msgid "Add New"
3144
+ msgstr "Añadir Nuevo"
3145
 
3146
+ #: ../includes/mycred-admin.php:616
3147
+ msgctxt "user"
3148
+ msgid "Add Existing"
3149
+ msgstr "Añadir Existente"
3150
 
3151
+ #: ../includes/mycred-admin.php:626 ../includes/mycred-admin.php:797 ..
3152
+ #: addons/gateway/event-booking/mycred-eventespresso3.php:277 ..
3153
+ #: addons/gateway/event-booking/mycred-eventespresso3.php:301 ..
3154
+ #: addons/gateway/event-booking/mycred-eventsmanager.php:412 ..
3155
+ #: addons/gateway/carts/mycred-marketpress.php:147
3156
+ msgid "Current Balance"
3157
+ msgstr "Saldo Actual"
3158
 
3159
+ #: ../includes/mycred-admin.php:627
3160
  #, php-format
3161
+ msgid "Total %s Accumulated"
3162
+ msgstr "Total %s Acumulado"
3163
 
3164
+ #: ../includes/mycred-admin.php:628
3165
+ #, php-format
3166
+ msgid "Total %s Spent"
3167
+ msgstr "Total %s Gastado"
 
 
 
3168
 
3169
+ #: ../includes/mycred-admin.php:639
3170
+ msgid "View History"
3171
+ msgstr "Ver Historial"
3172
 
3173
+ #: ../includes/mycred-admin.php:640
3174
+ msgid "Exclude User"
3175
+ msgstr "Excluir Usuario"
3176
 
3177
+ #: ../includes/mycred-admin.php:644
3178
+ msgid "Adjust Balance"
3179
+ msgstr "Ajustar Saldo"
3180
+
3181
+ #: ../includes/mycred-admin.php:653
3182
+ msgid ""
3183
+ "Warning! Excluding this user will result in their balance being deleted "
3184
+ "along with any entries currently in your log! This can not be undone!"
3185
  msgstr ""
3186
+ "¡Aviso! ¡Excluir este usuario resultara en la eliminación de su saldo ademas "
3187
+ "de cualquier entradas actuales en tu registro! ¡Esto no se puede deshacer!"
3188
 
3189
+ #: ../includes/mycred-admin.php:718
3190
+ #, php-format
3191
+ msgid "%singular% balance"
3192
+ msgstr "%singular% saldo"
3193
 
3194
+ #: ../includes/mycred-admin.php:742 ../includes/mycred-admin.php:786 ..
3195
+ #: addons/buy-creds/abstracts/mycred-abstract-payment-gateway.php:503
3196
+ msgid "required"
3197
+ msgstr "necesario"
3198
 
3199
+ #: ../includes/mycred-admin.php:744 ../includes/mycred-admin.php:788 ..
3200
+ #: addons/buy-creds/abstracts/mycred-abstract-payment-gateway.php:504
3201
+ msgid "optional"
3202
+ msgstr "opcional"
3203
 
3204
+ #: ../includes/mycred-admin.php:758 ../includes/mycred-admin.php:802 ..
3205
+ #: addons/gateway/event-booking/mycred-eventespresso3.php:470
3206
+ msgid "Log Entry"
3207
+ msgstr "Entrada de Registro"
3208
 
3209
+ #: ../includes/mycred-admin.php:762 ../includes/mycred-admin.php:803
3210
+ msgid "Update Balance"
3211
+ msgstr "Actualizar Saldo"
 
3212
 
3213
+ #: ../includes/mycred-admin.php:795
3214
+ msgid "ID"
3215
+ msgstr "ID"
3216
 
3217
+ #: ../includes/mycred-admin.php:801
3218
+ msgid "A positive or negative value"
3219
+ msgstr "Un valor positivo o negativo"
3220
 
3221
+ #: ../includes/mycred-widgets.php:21
3222
+ #, php-format
3223
+ msgid "(%s) My Balance"
3224
+ msgstr "(%s) Mi Saldo"
3225
 
3226
+ #: ../includes/mycred-widgets.php:24
3227
+ #, php-format
3228
+ msgid "Show the current users %s balance"
3229
+ msgstr "Enseñar el saldo de %s del usuario actual"
3230
 
3231
+ #: ../includes/mycred-widgets.php:203 ../includes/mycred-widgets.php:391 ..
3232
+ #: includes/importers/mycred-cubepoints.php:365 ../addons/gateway/event-
3233
+ #: booking/mycred-eventespresso3.php:437 ../addons/gateway/event-booking/mycred-
3234
+ #: eventsmanager.php:550 ../addons/gateway/event-booking/mycred-eventsmanager-pro.
3235
+ #: php:504 ../addons/gateway/carts/mycred-wpecommerce.php:354 ..
3236
+ #: addons/gateway/carts/mycred-woocommerce.php:120 ..
3237
+ #: addons/gateway/carts/mycred-marketpress.php:389 ../addons/ranks/myCRED-addon-
3238
+ #: ranks.php:1046 ../addons/ranks/myCRED-addon-ranks.php:1201 ../addons/email-
3239
+ #: notices/myCRED-addon-email-notices.php:814 ../addons/email-notices/myCRED-
3240
+ #: addon-email-notices.php:1031 ../addons/coupons/myCRED-addon-coupons.php:179 ..
3241
+ #: addons/coupons/myCRED-addon-coupons.php:388 ../addons/sell-content/myCRED-
3242
+ #: addon-sell-content.php:411
3243
+ msgid "Point Type"
3244
+ msgstr "Clase de Puntos"
3245
 
3246
+ #: ../includes/mycred-widgets.php:212
3247
+ msgid "Layout"
3248
+ msgstr "Disposición"
 
3249
 
3250
+ #: ../includes/mycred-widgets.php:220
3251
+ msgid "Include history"
3252
+ msgstr "Incluir el historial"
3253
 
3254
+ #: ../includes/mycred-widgets.php:222
3255
+ msgid "History Title"
3256
+ msgstr "Titulo de Historial"
3257
 
3258
+ #. the English needs to be corrected to "Number of Entries"
3259
+ #: ../includes/mycred-widgets.php:224
3260
+ msgid "Number of entires"
3261
+ msgstr "Numero de Entradas"
3262
 
3263
+ #: ../includes/mycred-widgets.php:226 ../includes/mycred-widgets.php:412
3264
+ msgid "Row layout"
3265
+ msgstr "Disposición de Filas"
3266
 
3267
+ #: ../includes/mycred-widgets.php:234 ../includes/mycred-widgets.php:614
3268
+ msgid "Show message when not logged in"
3269
+ msgstr "Mostrar mensaje cuando no ha iniciado la sesión"
3270
 
3271
+ #: ../includes/mycred-widgets.php:236 ../includes/mycred-widgets.php:615
3272
+ msgid "Message"
3273
+ msgstr "Mensaje"
3274
 
3275
+ #: ../includes/mycred-widgets.php:306
3276
+ #, php-format
3277
+ msgid "(%s) Leaderboard"
3278
+ msgstr "(%s) Tabla de Clasificación"
3279
 
3280
+ #: ../includes/mycred-widgets.php:309
3281
+ #, php-format
3282
+ msgid "Show a list of users sorted by their %s balance"
3283
+ msgstr "Mustra una lista de usuarios ordenados por sus %s saldos"
3284
 
3285
+ #: ../includes/mycred-widgets.php:399
3286
+ msgid "Based On"
3287
+ msgstr "Basado Sobre"
 
 
 
 
3288
 
3289
+ #: ../includes/mycred-widgets.php:401
 
3290
  msgid ""
3291
+ "Use \"balance\" to base the leaderboard on your users current balances or use "
3292
+ "a specific reference."
3293
  msgstr ""
3294
+ "Utiliza \"saldo\" para basar la tabla de clasificación sobre los saldos "
3295
+ "actuales de tus usuarios o utiliza una referencia especifica."
 
 
 
 
3296
 
3297
+ #: ../includes/mycred-widgets.php:401
3298
+ msgid "Reference Guide"
3299
+ msgstr "Guia de Referencia"
3300
 
3301
+ #: ../includes/mycred-widgets.php:406
3302
+ msgid "Visible to non-members"
3303
+ msgstr "Visible al público (no miembros)"
 
3304
 
3305
+ #: ../includes/mycred-widgets.php:408
3306
+ msgid "Number of users"
3307
+ msgstr "Numero de Usuarios"
3308
 
3309
+ #: ../includes/mycred-widgets.php:417
3310
+ msgid "Offset"
3311
+ msgstr "Offset"
3312
 
3313
+ #: ../includes/mycred-widgets.php:419
3314
+ msgid "Optional offset of order. Use zero to return the first in the list."
 
 
3315
  msgstr ""
3316
+ "Opcional desplazamiento (offset) de la orden. Utilice cero para devolver el "
3317
+ "primero en la lista."
3318
 
3319
+ #: ../includes/mycred-widgets.php:422
3320
+ msgid "Order"
3321
+ msgstr "Orden"
3322
 
3323
+ #: ../includes/mycred-widgets.php:442
3324
+ msgid "Append current users position"
3325
+ msgstr "Añade la posición actual de usuarios "
3326
 
3327
+ #: ../includes/mycred-widgets.php:443
3328
  msgid ""
3329
+ "If the current user is not in this leaderboard, you can select to append "
3330
+ "them at the end with their current position."
3331
  msgstr ""
3332
+ "Si el usuario actual no esta en esta tabla de clasificación, puedes elegir a "
3333
+ "agregarles al final con su posición actual."
3334
 
3335
+ #: ../includes/mycred-widgets.php:495
3336
+ #, php-format
3337
+ msgid "(%s) Wallet"
3338
+ msgstr "(%s) Cartera"
3339
 
3340
+ #: ../includes/mycred-widgets.php:498
3341
+ msgid "Shows the current users balances for each point type."
3342
+ msgstr "Mostrar el saldo actual del usuario para cada clase de punto (\"point type\")."
 
 
3343
 
3344
+ #: ../includes/mycred-widgets.php:606
3345
+ msgid "Row Layout"
3346
+ msgstr "Disposición de Filas"
 
 
 
 
 
 
3347
 
3348
+ #: ../includes/mycred-functions.php:85
3349
+ msgid "Point"
3350
+ msgstr "Punto"
 
 
 
 
 
 
 
3351
 
3352
+ #: ../includes/mycred-functions.php:86
3353
+ msgid "Points"
3354
+ msgstr "Puntos"
 
3355
 
3356
+ #: ../includes/mycred-functions.php:447
3357
+ msgid "Deleted"
3358
+ msgstr "Borrado"
3359
 
3360
+ #: ../includes/mycred-functions.php:594
3361
+ msgid "Deleted Item"
3362
+ msgstr "Artículo Borrado"
3363
 
3364
+ #: ../includes/mycred-functions.php:658 ../addons/gateway/carts/mycred-
3365
+ #: wpecommerce.php:341 ../addons/email-notices/myCRED-addon-email-notices.php:200
3366
+ msgid "General"
3367
+ msgstr "General"
3368
 
3369
+ #: ../includes/mycred-functions.php:665
3370
+ msgid "User Related"
3371
+ msgstr "Relacionado al Usuario"
 
 
 
 
3372
 
3373
+ #: ../includes/mycred-functions.php:672
3374
+ msgid "Post Related"
3375
+ msgstr "Relacionado a la Entrada"
3376
 
3377
+ #: ../includes/mycred-functions.php:679
3378
+ msgid "Comment Related"
3379
+ msgstr "Relacionado al Comentario"
3380
 
3381
+ #: ../includes/mycred-functions.php:686
3382
+ msgid "Widget Related"
3383
+ msgstr "Relacionado al Widget"
3384
 
3385
+ #: ../includes/mycred-functions.php:693
3386
+ msgid "Amount Related"
3387
+ msgstr "Cantidad Relacionada"
3388
 
3389
+ #: ../includes/mycred-functions.php:700
3390
+ msgid "Video Related"
3391
+ msgstr "Relacionado al Video"
 
3392
 
3393
+ #: ../includes/mycred-functions.php:711
3394
+ msgid "and"
3395
+ msgstr "y"
3396
 
3397
+ #: ../includes/mycred-functions.php:713
3398
+ msgid "Available Template Tags:"
3399
+ msgstr "Etiquetas de Plantilla Disponibles:"
3400
 
3401
+ #: ../includes/mycred-functions.php:1874
3402
+ msgid "Entire Log"
3403
+ msgstr "Todo el Registro"
3404
 
3405
+ #: ../includes/mycred-functions.php:1879 ../includes/mycred-functions.php:1880
3406
+ msgid "Displayed Rows"
3407
+ msgstr "Filas Mostradas"
3408
 
3409
+ #: ../includes/mycred-functions.php:1887
3410
+ msgid "Search Results"
3411
+ msgstr "Resultados de la Búsqueda"
3412
 
3413
+ #: ../includes/mycred-functions.php:1888
3414
+ msgid "My Entire Log"
3415
+ msgstr "Mi Registro Entero"
 
3416
 
3417
+ #: ../includes/mycred-functions.php:2518
3418
+ msgid "Website Registration"
3419
+ msgstr "Inscripción del Sitio Web"
 
3420
 
3421
+ #: ../includes/mycred-functions.php:2519
3422
+ msgid "Website Visit"
3423
+ msgstr "Visita de Sitio Web"
3424
 
3425
+ #: ../includes/mycred-functions.php:2520
3426
+ msgid "Viewing Content (Member)"
3427
+ msgstr "Viendo Contenido (Miembro)"
3428
 
3429
+ #: ../includes/mycred-functions.php:2521
3430
+ msgid "Viewing Content (Author)"
3431
+ msgstr "Viendo Contenido (Autor)"
3432
 
3433
+ #: ../includes/mycred-functions.php:2522
3434
+ msgid "Logging in"
3435
+ msgstr "Accediendo"
3436
 
3437
+ #: ../includes/mycred-functions.php:2523
3438
+ msgid "Publishing Content"
3439
+ msgstr "Publicando Contenido"
3440
 
3441
+ #: ../includes/mycred-functions.php:2525
3442
+ msgid "Unapproved Comment"
3443
+ msgstr "Comentario no Aprobado"
3444
 
3445
+ #: ../includes/mycred-functions.php:2526
3446
+ msgid "SPAM Comment"
3447
+ msgstr "Comentario SPAM"
3448
 
3449
+ #: ../includes/mycred-functions.php:2527
3450
+ msgid "Deleted Comment"
3451
+ msgstr "Comentario Borrado"
3452
 
3453
+ #: ../includes/mycred-functions.php:2528
3454
+ msgid "Link Click"
3455
+ msgstr "Click al Enlace"
3456
 
3457
+ #: ../includes/mycred-functions.php:2529
3458
+ msgid "Watching Video"
3459
+ msgstr "Mirando Video"
 
3460
 
3461
+ #: ../includes/mycred-functions.php:2530
3462
+ msgid "Visitor Referral"
3463
+ msgstr "Referencia de Visitante"
3464
 
3465
+ #: ../includes/mycred-functions.php:2531
3466
+ msgid "Signup Referral"
3467
+ msgstr "Referencia de Inscripción "
3468
 
3469
+ #: ../includes/mycred-functions.php:2535
3470
+ msgid "New Profile Update"
3471
+ msgstr "Nuevo Perfil Actualizado"
3472
 
3473
+ #: ../includes/mycred-functions.php:2537
3474
+ msgid "Avatar Upload"
3475
+ msgstr "Subir Avatar"
 
 
 
 
3476
 
3477
+ #: ../includes/mycred-functions.php:2538
3478
+ msgid "New Friendship"
3479
+ msgstr "Nueva Amistad"
 
3480
 
3481
+ #: ../includes/mycred-functions.php:2539
3482
+ msgid "Ended Friendship"
3483
+ msgstr "Amistad Terminada"
3484
 
3485
+ #: ../includes/mycred-functions.php:2540
3486
+ msgid "New Profile Comment"
3487
+ msgstr "Nuevo Comentario de Perfil"
3488
 
3489
+ #: ../includes/mycred-functions.php:2541
3490
+ msgid "Profile Comment Deletion"
3491
+ msgstr "Borrar Comentario del Perfil"
3492
 
3493
+ #: ../includes/mycred-functions.php:2542
3494
+ msgid "New Message"
3495
+ msgstr "Nuevo Mensaje"
3496
 
3497
+ #: ../includes/mycred-functions.php:2543
3498
+ msgid "Sending Gift"
3499
+ msgstr "Mandando Regalo"
3500
 
3501
+ #: ../includes/mycred-functions.php:2544
3502
+ msgid "New Group"
3503
+ msgstr "Nuevo Grupo"
 
 
 
 
 
3504
 
3505
+ #: ../includes/mycred-functions.php:2545
3506
+ msgid "Deleted Group"
3507
+ msgstr "Grupo Borrado"
3508
 
3509
+ #: ../includes/mycred-functions.php:2546
3510
+ msgid "New Group Forum Topic"
3511
+ msgstr "Nuevo Tema del Fórum de Grupo"
 
 
 
 
3512
 
3513
+ #: ../includes/mycred-functions.php:2547
3514
+ msgid "Edit Group Forum Topic"
3515
+ msgstr "Editar el Tema del Fórum de Grupo"
3516
 
3517
+ #: ../includes/mycred-functions.php:2548
3518
+ msgid "New Group Forum Post"
3519
+ msgstr "Nueva Entrada del Fórum de Grupo"
3520
 
3521
+ #: ../includes/mycred-functions.php:2549
3522
+ msgid "Edit Group Forum Post"
3523
+ msgstr "Editar Entrada del Fórum de Grupo"
3524
 
3525
+ #: ../includes/mycred-functions.php:2550
3526
+ msgid "Joining Group"
3527
+ msgstr "Agregar al Grupo"
 
3528
 
3529
+ #: ../includes/mycred-functions.php:2551
3530
+ msgid "Leaving Group"
3531
+ msgstr "Dejando el Grupo"
 
 
 
3532
 
3533
+ #: ../includes/mycred-functions.php:2552
3534
+ msgid "New Group Avatar"
3535
+ msgstr "Nuevo Avatar del Grupo"
3536
 
3537
+ #: ../includes/mycred-functions.php:2553
3538
+ msgid "New Group Comment"
3539
+ msgstr "Nuevo Comentario al Grupo\n"
3540
 
3541
+ #: ../includes/mycred-functions.php:2563
3542
+ msgid "New Link"
3543
+ msgstr "Nuevo Enlace"
 
3544
 
3545
+ #: ../includes/mycred-functions.php:2564
3546
+ msgid "Link Voting"
3547
+ msgstr "Votar sobre Enlace"
3548
 
3549
+ #: ../includes/mycred-functions.php:2565
3550
+ msgid "Link Update"
3551
+ msgstr "Enlace Actualizado"
3552
 
3553
+ #: ../includes/mycred-functions.php:2569
3554
+ msgid "New Forum (bbPress)"
3555
+ msgstr "Nuevo Fórum (bbPress)"
 
3556
 
3557
+ #: ../includes/mycred-functions.php:2570
3558
+ msgid "New Forum Topic (bbPress)"
3559
+ msgstr "Nuevo Tema de Fórum (bbPress)"
3560
 
3561
+ #: ../includes/mycred-functions.php:2571
3562
+ msgid "Favorited Topic (bbPress)"
3563
+ msgstr "Tema Favorito (bbPress)"
3564
 
3565
+ #: ../includes/mycred-functions.php:2572
3566
+ msgid "New Topic Reply (bbPress)"
3567
+ msgstr "Nueva Respuesta a Tema (bbPress)"
3568
 
3569
+ #: ../includes/mycred-functions.php:2576
3570
+ msgid "Form Submission (Contact Form 7)"
3571
+ msgstr "Sumisión de Formulario (Contact Form 7)"
3572
 
3573
+ #: ../includes/mycred-functions.php:2579
3574
+ msgid "Form Submission (Gravity Form)"
3575
+ msgstr "Sumisión de Formulario (Gravity Form)"
3576
 
3577
+ #: ../includes/mycred-functions.php:2582
3578
+ msgid "New Forum Topic (SimplePress)"
3579
+ msgstr "Nuevo Tema de Fórum (SimplePress)"
 
 
3580
 
3581
+ #: ../includes/mycred-functions.php:2583
3582
+ msgid "New Forum Post (SimplePress)"
3583
+ msgstr "Nueva Entrada de Fórum (SimplePress)"
 
 
3584
 
3585
+ #: ../includes/mycred-functions.php:2604
3586
+ msgid "Poll Voting"
3587
+ msgstr "Votación"
 
3588
 
3589
+ #: ../includes/mycred-functions.php:2607
3590
+ msgid "Sending an Invite"
3591
+ msgstr "Mandando una Invitación"
 
3592
 
3593
+ #: ../includes/mycred-functions.php:2608
3594
+ msgid "Accepting an Invite"
3595
+ msgstr "Aceptando una Invitación"
 
3596
 
3597
+ #: ../includes/mycred-functions.php:2614
3598
+ msgid "Banking Payout"
3599
+ msgstr "Desembolso Bancario"
3600
 
3601
+ #: ../includes/mycred-functions.php:2617
3602
+ msgid "buyCRED Purchase (PayPal Standard)"
3603
+ msgstr "Compra buyCRED (PayPal Standard)"
3604
 
3605
+ #: ../includes/mycred-functions.php:2618
3606
+ msgid "buyCRED Purchase (Skrill)"
3607
+ msgstr "Compra buyCRED (Skrill)"
 
3608
 
3609
+ #: ../includes/mycred-functions.php:2619
3610
+ msgid "buyCRED Purchase (Zombaio)"
3611
+ msgstr "Compra buyCRED (Zombaio)"
 
3612
 
3613
+ #: ../includes/mycred-functions.php:2620
3614
+ msgid "buyCRED Purchase (NETBilling)"
3615
+ msgstr "Compra buyCRED (NETBilling)"
 
3616
 
3617
+ #: ../includes/mycred-functions.php:2621
3618
+ msgid "buyCRED Purchase (BitPay)"
3619
+ msgstr "Compra buyCRED (BitPay)"
 
3620
 
3621
+ #: ../includes/mycred-functions.php:2626
3622
+ msgid "Coupon Purchase"
3623
+ msgstr "Compra Cupón"
 
3624
 
3625
+ #: ../includes/mycred-functions.php:2630
3626
+ msgid "Store Purchase (WooCommerce)"
3627
+ msgstr "Compra de Tienda (WooCommerce)"
3628
 
3629
+ #: ../includes/mycred-functions.php:2635
3630
+ msgid "Store Purchase (MarketPress)"
3631
+ msgstr "Compra de Tienda (MarketPress)"
 
 
 
3632
 
3633
+ #: ../includes/mycred-functions.php:2639
3634
+ msgid "Store Purchase (WP E-Commerce)"
3635
+ msgstr "Compra de Tienda (WP E-Commerce)"
 
 
 
3636
 
3637
+ #: ../includes/mycred-functions.php:2645
3638
+ msgid "Event Payment (Event Espresso)"
3639
+ msgstr "Pago por Evento (Event Espresso)"
3640
 
3641
+ #: ../includes/mycred-functions.php:2646
3642
+ msgid "Event Sale (Event Espresso)"
3643
+ msgstr "Venta de Evento (Event Espresso)"
 
3644
 
3645
+ #: ../includes/mycred-functions.php:2650
3646
+ msgid "Event Payment (Events Manager)"
3647
+ msgstr "Pago por Evento (Events Manager)"
3648
 
3649
+ #: ../includes/mycred-functions.php:2651
3650
+ msgid "Event Sale (Events Manager)"
3651
+ msgstr "Venta de Evento (Events Manager)"
 
3652
 
3653
+ #: ../includes/mycred-functions.php:2655
3654
+ msgid "Content Purchase / Sale"
3655
+ msgstr "Compra / Venta de Contenido"
 
3656
 
3657
+ #: ../includes/mycred-functions.php:2658 ../addons/transfer/myCRED-addon-transfer.
3658
+ #: php:51
3659
+ msgid "Transfer"
3660
+ msgstr "Transferir"
3661
 
3662
+ #: ../includes/mycred-functions.php:2662
3663
+ msgid "Manual Adjustment by Admin"
3664
+ msgstr "Ajuste Manual por Admin"
 
3665
 
3666
+ #: ../includes/mycred-functions.php:2777
3667
+ #, php-format
3668
+ msgid "You must exchange at least %s!"
3669
+ msgstr "Debes intercambiar por lo menos %s!"
3670
 
3671
+ #: ../includes/mycred-functions.php:2786 ../addons/transfer/myCRED-addon-transfer.
3672
+ #: php:161
3673
+ msgid "Insufficient Funds. Please try a lower amount."
3674
+ msgstr "Fondos Insuficientes. Por favor intenta con una cantidad menor."
3675
 
3676
+ #: ../includes/mycred-functions.php:2799
3677
+ #, php-format
3678
+ msgid "Exchange from %s"
3679
+ msgstr "Intercambiar desde %s"
3680
 
3681
+ #: ../includes/mycred-functions.php:2811
3682
+ #, php-format
3683
+ msgid "Exchange to %s"
3684
+ msgstr "Intercambiar a %s"
3685
 
3686
+ #: ../includes/mycred-functions.php:2819
3687
+ #, php-format
3688
+ msgid "You have successfully exchanged %s into %s."
3689
+ msgstr "Has intercambiado %s a %s con éxito."
3690
 
3691
+ #: ../includes/importers/mycred-cubepoints.php:276
3692
+ msgid "No balances were imported."
3693
+ msgstr "Ningun saldo fue importado."
 
 
3694
 
3695
+ #: ../includes/importers/mycred-cubepoints.php:276
3696
+ msgid "No log entries were imported!"
3697
+ msgstr "¡No se importo ninguna entrada de registro!"
3698
 
3699
+ #: ../includes/importers/mycred-cubepoints.php:282 ../includes/importers/mycred-
3700
+ #: log-entries.php:138
3701
+ #, php-format
 
 
 
 
 
 
 
 
 
 
3702
  msgid ""
3703
+ "Import complete - A total of <strong>%d</strong> entries were successfully "
3704
+ "imported. <strong>%d</strong> was skipped."
3705
  msgstr ""
3706
+ "Importación Finalizado - En total, <strong>%d</strong> entradas fueron "
3707
+ "importado con éxito. Se saltaron <strong>%d</strong>."
 
 
 
 
 
 
 
 
 
 
 
 
 
3708
 
3709
+ #: ../includes/importers/mycred-cubepoints.php:293 ../includes/importers/mycred-
3710
+ #: balances.php:181 ../includes/importers/mycred-log-entries.php:148 ..
3711
+ #: addons/stats/abstracts/mycred-abstract-stat-widget.php:102
3712
+ msgid "View Log"
3713
+ msgstr "Ver Registro"
3714
 
3715
+ #: ../includes/importers/mycred-cubepoints.php:293 ../includes/importers/mycred-
3716
+ #: balances.php:181 ../includes/importers/mycred-log-entries.php:148
3717
+ msgid "Import More"
3718
+ msgstr "Importar Más"
3719
 
3720
+ #: ../includes/importers/mycred-cubepoints.php:306
3721
+ msgid "No CubePoints log."
3722
+ msgstr "No hay registro de CubePoints."
3723
 
3724
+ #: ../includes/importers/mycred-cubepoints.php:317
3725
+ msgid "Import CubePoints Log"
3726
+ msgstr "Importar registro de CubePoints"
3727
 
3728
+ #: ../includes/importers/mycred-cubepoints.php:334
3729
+ msgid "Select what to import"
3730
+ msgstr "Elige lo que deseas importar"
 
3731
 
3732
+ #: ../includes/importers/mycred-cubepoints.php:335
3733
+ msgid "Log Entries Only"
3734
+ msgstr "Solo Entradas de Registro"
3735
 
3736
+ #: ../includes/importers/mycred-cubepoints.php:336
3737
+ msgid "CubePoints Balances Only"
3738
+ msgstr "Saldos de CubePoints Unicamente"
3739
 
3740
+ #: ../includes/importers/mycred-cubepoints.php:337
3741
+ msgid "Log Entries and Balances"
3742
+ msgstr "Solo Entradas y Saldos de Registro"
3743
 
3744
+ #: ../includes/importers/mycred-cubepoints.php:351
3745
+ msgid "Import"
3746
+ msgstr "Importar"
3747
 
3748
+ #: ../includes/importers/mycred-cubepoints.php:360
3749
+ msgid ""
3750
+ "Warning! Importing CubePoints balances will replace your users myCRED "
3751
+ "balance!"
3752
  msgstr ""
3753
+ "¡Advertencia! ¡La importación de los saldos de CubePoints reemplazará el "
3754
+ "saldo de myCRED para tus usuarios!"
 
 
 
 
3755
 
3756
+ #: ../includes/importers/mycred-cubepoints.php:378
3757
+ msgid "Import Log"
3758
+ msgstr "Importar Registro"
3759
 
3760
+ #: ../includes/importers/mycred-balances.php:81 ../includes/importers/mycred-
3761
+ #: balances.php:159 ../includes/importers/mycred-balances.php:198 ..
3762
+ #: includes/importers/mycred-balances.php:213 ../includes/importers/mycred-log-
3763
+ #: entries.php:81 ../includes/importers/mycred-log-entries.php:126 ..
3764
+ #: includes/importers/mycred-log-entries.php:165 ../includes/importers/mycred-
3765
+ #: log-entries.php:180
3766
+ msgid "Sorry, there has been an error."
3767
+ msgstr "Lo sentimos, se ha producido un error."
3768
 
3769
+ #: ../includes/importers/mycred-balances.php:82 ../includes/importers/mycred-log-
3770
+ #: entries.php:82
3771
+ msgid "The file does not exist, please try again."
3772
+ msgstr "El fichero no existe, por favor inténtelo de nuevo más tarde."
3773
 
3774
+ #: ../includes/importers/mycred-balances.php:160 ../includes/importers/mycred-log-
3775
+ #: entries.php:127
3776
+ msgid "The CSV is invalid."
3777
+ msgstr "El CSV no es valido."
3778
 
3779
+ #: ../includes/importers/mycred-balances.php:171
3780
+ #, php-format
3781
  msgid ""
3782
+ "Import complete - A total of <strong>%d</strong> balances were successfully "
3783
+ "imported. <strong>%d</strong> was skipped."
3784
  msgstr ""
3785
+ "Importación Finalizado - En total, <strong>%d</strong> saldos fueron "
3786
+ "importado con éxito. Se saltaron <strong>%d</strong>."
3787
 
3788
+ #: ../includes/importers/mycred-balances.php:227
3789
+ msgid "Import Balances"
3790
+ msgstr "Saldos Importar"
3791
 
3792
+ #: ../includes/importers/mycred-balances.php:244
3793
+ msgid "Import balances from a CSV file."
3794
+ msgstr "Importa saldos de registro desde un fichero CSV."
3795
+
3796
+ #: ../includes/importers/mycred-balances.php:252 ../includes/importers/mycred-log-
3797
+ #: entries.php:219
3798
  msgid ""
3799
+ "Before you can upload your import file, you will need to fix the following "
3800
+ "error:"
3801
  msgstr ""
3802
+ "Antes que puedas subir tu fichero de importe, tendras que corregir los "
3803
+ "errores siguientes:"
3804
 
3805
+ #: ../includes/importers/mycred-balances.php:261 ../includes/importers/mycred-log-
3806
+ #: entries.php:228
3807
+ msgid "Choose a file from your computer:"
3808
+ msgstr "Elige un fichero en tu ordenador:"
3809
 
3810
+ #: ../includes/importers/mycred-balances.php:267 ../includes/importers/mycred-log-
3811
+ #: entries.php:234
3812
+ #, php-format
3813
+ msgid "Maximum size: %s"
3814
+ msgstr "Tamaño Máximo: %s"
3815
 
3816
+ #: ../includes/importers/mycred-balances.php:272 ../includes/importers/mycred-log-
3817
+ #: entries.php:239
3818
+ msgid "OR enter path to file:"
3819
+ msgstr "O rellena la ruta al fichero:"
3820
 
3821
+ #: ../includes/importers/mycred-balances.php:279 ../includes/importers/mycred-log-
3822
+ #: entries.php:246
3823
+ msgid "Delimiter"
3824
+ msgstr "Delimitador"
3825
 
3826
+ #: ../includes/importers/mycred-balances.php:283
3827
+ msgid "Method"
3828
+ msgstr "Método"
3829
 
3830
+ #: ../includes/importers/mycred-balances.php:285
3831
+ msgid "Replace current balances with the amount in this CSV file"
3832
+ msgstr "Sustituir los balances actuales con los montos en el archivo CSV"
 
3833
 
3834
+ #: ../includes/importers/mycred-balances.php:286
3835
+ msgid "Adjust current balances according to the amount in this CSV file"
3836
+ msgstr "Ajustar los balances actuales de acuerdo al monto en el archivo CSV"
 
 
 
 
 
3837
 
3838
+ #: ../includes/importers/mycred-balances.php:292 ../includes/importers/mycred-log-
3839
+ #: entries.php:252
3840
+ msgid "Upload file and import"
3841
+ msgstr "Subir fichero e importar"
3842
 
3843
+ #: ../includes/importers/mycred-log-entries.php:194
3844
+ msgid "Import Log Entries"
3845
+ msgstr "Importar Entradas de Registro"
 
 
 
 
 
3846
 
3847
+ #: ../includes/importers/mycred-log-entries.php:211
3848
+ msgid "Import log entries from a CSV file."
3849
+ msgstr "Importa las entradas de registro desde un fichero CSV."
3850
 
3851
+ #: ../addons/banking/myCRED-addon-banking.php:44 ../addons/banking/myCRED-addon-
3852
+ #: banking.php:45 ../addons/banking/myCRED-addon-banking.php:46
3853
+ msgid "Banking"
3854
+ msgstr "Banco"
3855
 
3856
+ #: ../addons/banking/myCRED-addon-banking.php:158
3857
+ msgid "Central Banking"
3858
+ msgstr "Banco Central"
 
 
3859
 
3860
+ #: ../addons/banking/myCRED-addon-banking.php:159
 
 
 
 
 
 
 
 
 
 
 
 
3861
  #, php-format
3862
+ msgid ""
3863
+ "Instead of creating %_plural% out of thin-air, all payouts are made from a "
3864
+ "nominated \"Central Bank\" account. Any %_plural% a user spends or loses are "
3865
+ "deposited back into this account."
3866
+ msgstr ""
3867
+ "En vez de crear %_plural% de la nada, todos los desembolsos seran hechos "
3868
+ "desde una cuenta nominada del \"Banco Central\". Qualquier %_plural% que un "
3869
+ "usuario gaste o pierda seran depositados a esta misma cuenta."
3870
 
3871
+ #: ../addons/banking/myCRED-addon-banking.php:165 ..
3872
+ #: addons/banking/services/mycred-bank-service-interest.php:512
3873
+ msgid "Compound Interest"
3874
+ msgstr "Interés Compuesto"
3875
 
3876
+ #: ../addons/banking/myCRED-addon-banking.php:166
3877
+ #, php-format
3878
+ msgid "Apply a positive or negative interest rate on your users %_plural% balances."
3879
+ msgstr ""
3880
+ "Aplicar un tipo de interés compuesto positivo o negativo al saldo de "
3881
+ "%_plural% de tus usuarios."
3882
 
3883
+ #: ../addons/banking/myCRED-addon-banking.php:172
3884
+ msgid "Recurring Payouts"
3885
+ msgstr "Pagos Recurrentes"
3886
 
3887
+ #: ../addons/banking/myCRED-addon-banking.php:173
3888
  #, php-format
3889
+ msgid "Setup mass %_singular% payouts for your users."
3890
+ msgstr "Configurar pago en masa &_singular% para tus usuarios."
 
 
 
 
3891
 
3892
+ #: ../addons/banking/myCRED-addon-banking.php:225
3893
+ #, php-format
3894
+ msgid "%s Banking"
3895
+ msgstr "%s Bancario"
3896
 
3897
+ #: ../addons/banking/myCRED-addon-banking.php:228
3898
+ #, php-format
3899
+ msgid "Your banking setup for %plural%."
3900
+ msgstr "Tu configuración bancario para %plural%."
3901
 
3902
+ #: ../addons/banking/myCRED-addon-banking.php:231
3903
+ msgid "WP-Cron deactivation detected!"
3904
+ msgstr "¡Se detecto la desactivación de WP-Cron!"
 
 
 
 
 
3905
 
3906
+ #: ../addons/banking/myCRED-addon-banking.php:232
3907
+ msgid "Warning! This add-on requires WP - Cron to work."
3908
+ msgstr "¡Aviso! Esta extensión requiere WP - Cron para funcionar."
3909
 
3910
+ #: ../addons/banking/abstracts/mycred-abstract-service.php:79
3911
+ msgid "This Service has no settings"
3912
+ msgstr "Este servicio no ha sido configurado"
3913
 
3914
+ #. also, "Cada Hora"
3915
+ #: ../addons/banking/abstracts/mycred-abstract-service.php:233
3916
+ msgid "Hourly"
3917
+ msgstr "Por Hora"
3918
 
3919
+ #: ../addons/banking/abstracts/mycred-abstract-service.php:237
3920
+ msgid "Daily"
3921
+ msgstr "Diario"
3922
 
3923
+ #: ../addons/banking/abstracts/mycred-abstract-service.php:241
3924
+ msgid "Weekly"
3925
+ msgstr "Semanal"
3926
 
3927
+ #: ../addons/banking/abstracts/mycred-abstract-service.php:245
3928
+ msgid "Monthly"
3929
+ msgstr "Mensual"
3930
 
3931
+ #: ../addons/banking/abstracts/mycred-abstract-service.php:249
3932
+ msgid "Quarterly"
3933
+ msgstr "Trimestral"
3934
 
3935
+ #: ../addons/banking/abstracts/mycred-abstract-service.php:253
3936
+ msgid "Semiannually"
3937
+ msgstr "Semestral"
3938
 
3939
+ #: ../addons/banking/abstracts/mycred-abstract-service.php:257
3940
+ msgid "Annually"
3941
+ msgstr "Anual"
3942
 
3943
+ #: ../addons/banking/services/mycred-bank-service-payouts.php:21
3944
+ msgid "Daily %_plural%"
3945
+ msgstr "%_plural% diarios"
 
3946
 
3947
+ #: ../addons/banking/services/mycred-bank-service-payouts.php:250 ..
3948
+ #: addons/banking/services/mycred-bank-service-interest.php:392 ..
3949
+ #: addons/banking/services/mycred-bank-service-interest.php:409
3950
+ msgid "Run Count"
3951
+ msgstr "Cuenta de Ejecución"
3952
 
3953
+ #: ../addons/banking/services/mycred-bank-service-payouts.php:255
3954
+ msgid "Last Run"
3955
+ msgstr "Ultima Ejecución"
 
3956
 
3957
+ #: ../addons/banking/services/mycred-bank-service-payouts.php:259
3958
+ msgid "Total Payouts"
3959
+ msgstr "Total Desembolsos"
 
3960
 
3961
+ #: ../addons/banking/services/mycred-bank-service-payouts.php:263
3962
+ msgid "Pay Users"
3963
+ msgstr "Pagar a los Usuarios"
 
3964
 
3965
+ #: ../addons/banking/services/mycred-bank-service-payouts.php:268 ..
3966
+ #: addons/banking/services/mycred-bank-service-interest.php:427
3967
+ msgid "Can not be zero."
3968
+ msgstr "No puede ser cero."
3969
 
3970
+ #: ../addons/banking/services/mycred-bank-service-payouts.php:276
3971
+ msgid "Cycles"
3972
+ msgstr "Ciclos"
3973
 
3974
+ #: ../addons/banking/services/mycred-bank-service-payouts.php:278
3975
+ msgid "Set to -1 for unlimited"
3976
+ msgstr "Ajusta a -1 para ilimitado"
3977
 
3978
+ #: ../addons/banking/services/mycred-bank-service-payouts.php:281
3979
+ msgid "Important"
3980
+ msgstr "Importante"
3981
 
3982
+ #: ../addons/banking/services/mycred-bank-service-payouts.php:281
3983
  msgid ""
3984
+ "You can always stop payouts by deactivating this service. Just remember that "
3985
+ "if you deactivate while there are cycles left, this service will continue on "
3986
+ "when it gets re-activated. Set cycles to zero to reset."
3987
  msgstr ""
3988
+ "Siempre se puede detener los desembolsos mediante la desactivación de este "
3989
+ "servicio. Pero recuerda que si lo desactivas mientras que todavia quedan "
3990
+ "ciclos para completar, este servicio volverá a continuar en cuando se vuelvá "
3991
+ "a activar. Fija o configura los ciclos a cero para reiniciar.\n"
3992
 
3993
+ #: ../addons/banking/services/mycred-bank-service-payouts.php:290 ..
3994
+ #: addons/banking/services/mycred-bank-service-interest.php:442 ..
3995
+ #: addons/coupons/myCRED-addon-coupons.php:480
3996
+ msgid "Minimum Balance"
3997
+ msgstr "Saldo Minimo"
3998
 
3999
+ #: ../addons/banking/services/mycred-bank-service-payouts.php:294 ..
4000
+ #: addons/banking/services/mycred-bank-service-interest.php:446
4001
+ msgid "Optional minimum balance requirement."
4002
+ msgstr "Requerimiento opcional de saldo minimo."
4003
 
4004
+ #: ../addons/banking/services/mycred-bank-service-payouts.php:297 ..
4005
+ #: addons/banking/services/mycred-bank-service-interest.php:449
4006
+ msgid "Exclude"
4007
+ msgstr "Excluir"
4008
 
4009
+ #: ../addons/banking/services/mycred-bank-service-payouts.php:300 ..
4010
+ #: addons/banking/services/mycred-bank-service-interest.php:452
4011
+ msgid "Comma separated list of user IDs"
4012
+ msgstr "Lista del IDs de usuarios delimitado por comas"
4013
 
4014
+ #: ../addons/banking/services/mycred-bank-service-payouts.php:304 ..
4015
+ #: addons/banking/services/mycred-bank-service-interest.php:456
4016
+ msgid "Roles"
4017
+ msgstr "Papeles"
4018
 
4019
+ #: ../addons/banking/services/mycred-bank-service-central.php:105
4020
+ msgid "Bank User"
4021
+ msgstr "Usuario del Banco"
4022
 
4023
+ #: ../addons/banking/services/mycred-bank-service-central.php:109
4024
+ msgid "The user ID of the central bank account. This user can not be excluded!"
4025
+ msgstr ""
4026
+ "El ID de la cuenta de usuario del banco central. Este usuario no puede ser "
4027
+ "excluido!"
4028
 
4029
+ #: ../addons/banking/services/mycred-bank-service-central.php:112
4030
+ msgid "Ignore Manual Adjustments"
4031
+ msgstr "Ignorar Ajustes Manuales"
4032
 
4033
+ #: ../addons/banking/services/mycred-bank-service-interest.php:24
4034
+ #, php-format
4035
+ msgid "%plural% interest rate payment"
4036
+ msgstr "%plural% pago de tasa de interés"
4037
 
4038
+ #: ../addons/banking/services/mycred-bank-service-interest.php:379
4039
+ msgid "Compounding Interest"
4040
+ msgstr "Interés Compuesto"
4041
 
4042
+ #: ../addons/banking/services/mycred-bank-service-interest.php:379
4043
+ #, php-format
4044
+ msgid "%d Users are left to process."
4045
+ msgstr "Quedan %d usuarios para procesar."
4046
 
4047
+ #: ../addons/banking/services/mycred-bank-service-interest.php:388
4048
+ msgid "Payout History"
4049
+ msgstr "Historial de Desembolso"
4050
 
4051
+ #: ../addons/banking/services/mycred-bank-service-interest.php:397
4052
+ msgid "Last Payout"
4053
+ msgstr "Ultimo Desembolso"
4054
 
4055
+ #: ../addons/banking/services/mycred-bank-service-interest.php:397 ..
4056
+ #: addons/banking/services/mycred-bank-service-interest.php:414
4057
+ msgid "Activated"
4058
+ msgstr "Activado"
4059
 
4060
+ #: ../addons/banking/services/mycred-bank-service-interest.php:401
4061
+ msgid "Total Payed Interest"
4062
+ msgstr "Total Interés Pagado"
4063
 
4064
+ #: ../addons/banking/services/mycred-bank-service-interest.php:405
4065
+ msgid "Compound History"
4066
+ msgstr "Historial del Compuesto"
4067
 
4068
+ #: ../addons/banking/services/mycred-bank-service-interest.php:414
4069
+ msgid "Last Interest Compound"
4070
+ msgstr "Ultimo Interés Compuesto"
4071
 
4072
+ #: ../addons/banking/services/mycred-bank-service-interest.php:418
4073
+ msgid "Total Compounded Interest"
4074
+ msgstr "Total Interés Compuesto"
4075
 
4076
+ #: ../addons/banking/services/mycred-bank-service-interest.php:422 ..
4077
+ #: addons/banking/services/mycred-bank-service-interest.php:549
4078
+ msgid "Interest Rate"
4079
+ msgstr "Tasa de Interés"
4080
 
4081
+ #: ../addons/banking/services/mycred-bank-service-interest.php:425
4082
+ msgid "Default Rate"
4083
+ msgstr "Tasa de Incumplimiento"
4084
 
4085
+ #: ../addons/banking/services/mycred-bank-service-interest.php:430 ..
4086
+ #: addons/gateway/carts/mycred-wpecommerce.php:367
4087
+ msgid "Payout"
4088
+ msgstr "Desembolso"
4089
 
4090
+ #: ../addons/banking/services/mycred-bank-service-interest.php:522
4091
+ msgid "This user is excluded from receiving interest on this balance."
4092
+ msgstr "Este usuario esta excluido la concesión de interés sobre este saldo."
4093
 
4094
+ #: ../addons/banking/services/mycred-bank-service-interest.php:525
4095
+ msgid "Remove from Excluded List"
4096
+ msgstr "Quitar de la Lista de Exclusion"
4097
 
4098
+ #: ../addons/banking/services/mycred-bank-service-interest.php:537
4099
+ msgid "This user role is excluded from receiving interest on this balance."
4100
+ msgstr "Este papel de usuario esta excluido de recibir interés sobre este saldo."
4101
 
4102
+ #: ../addons/banking/services/mycred-bank-service-interest.php:552 ../addons/sell-
4103
+ #: content/myCRED-addon-sell-content.php:114 ../addons/buy-creds/myCRED-addon-buy-
4104
+ #: creds.php:837
4105
+ msgid "Leave empty to use the default value."
4106
+ msgstr "Dejar vacio si va a utilizar el valor predefinido."
4107
 
4108
+ #: ../addons/banking/services/mycred-bank-service-interest.php:558
4109
+ msgid "Save Interest Rate"
4110
+ msgstr "Guardar el tipo de interés"
4111
 
4112
+ #: ../addons/banking/services/mycred-bank-service-interest.php:559
4113
+ msgid "Exclude from receiving interest"
4114
+ msgstr "Excluir de recibir interés"
4115
 
4116
+ #: ../addons/banking/services/mycred-bank-service-interest.php:673
4117
+ msgid "Compound interest rate saved."
4118
+ msgstr "Tipo de interés compuesto guardado."
4119
 
4120
+ #: ../addons/banking/services/mycred-bank-service-interest.php:675
4121
+ msgid "User excluded from receiving interest."
4122
+ msgstr "Usuario excluido la concesión de interés."
4123
 
4124
+ #: ../addons/banking/services/mycred-bank-service-interest.php:677
4125
+ msgid "User included in receiving interest."
4126
+ msgstr "Usuario permitido la concesión de interés."
4127
 
4128
+ #: ../addons/gateway/event-booking/mycred-eventespresso3.php:26 ..
4129
+ #: addons/gateway/event-booking/mycred-eventsmanager.php:540 ..
4130
+ #: addons/gateway/event-booking/mycred-eventsmanager-pro.php:516 ../addons/sell-
4131
+ #: content/myCRED-addon-sell-content.php:423 ../addons/buy-creds/myCRED-addon-buy-
4132
+ #: creds.php:579
4133
+ msgid "Payments"
4134
+ msgstr "Pagos"
4135
 
4136
+ #: ../addons/gateway/event-booking/mycred-eventespresso3.php:27 ..
4137
+ #: addons/gateway/event-booking/mycred-eventsmanager.php:35 ..
4138
+ #: addons/gateway/event-booking/mycred-eventsmanager-pro.php:39 ../addons/buy-
4139
+ #: creds/myCRED-addon-buy-creds.php:1686
4140
+ msgid "Pay Now"
4141
+ msgstr "Pagar Ahora"
4142
 
4143
+ #: ../addons/gateway/event-booking/mycred-eventespresso3.php:32
4144
+ msgid "Payment for Event Registration"
4145
+ msgstr "Pago para Registrar Evento"
4146
 
4147
+ #: ../addons/gateway/event-booking/mycred-eventespresso3.php:281 ..
4148
+ #: addons/gateway/event-booking/mycred-eventespresso3.php:305 ..
4149
+ #: addons/gateway/event-booking/mycred-eventsmanager.php:416 ..
4150
+ #: addons/gateway/carts/mycred-wpecommerce.php:123 ..
4151
+ #: addons/gateway/carts/mycred-marketpress.php:151
4152
+ msgid "Total Cost"
4153
+ msgstr "Coste Total"
4154
 
4155
+ #: ../addons/gateway/event-booking/mycred-eventespresso3.php:285 ..
4156
+ #: addons/gateway/event-booking/mycred-eventespresso3.php:309 ..
4157
+ #: addons/gateway/carts/mycred-marketpress.php:155
4158
+ msgid "Balance After Purchase"
4159
+ msgstr "Saldo Despues de Compra"
4160
 
4161
+ #: ../addons/gateway/event-booking/mycred-eventespresso3.php:343
4162
+ #, php-format
4163
+ msgid "Activate %s"
4164
+ msgstr "Activar %s"
4165
 
4166
+ #: ../addons/gateway/event-booking/mycred-eventespresso3.php:351
4167
+ #, php-format
4168
+ msgid "Deactivate %s"
4169
+ msgstr "Desactivar %s"
4170
 
4171
+ #: ../addons/gateway/event-booking/mycred-eventespresso3.php:367 ../addons/buy-
4172
+ #: creds/myCRED-addon-buy-creds.php:1085
4173
+ msgid "Gateway Settings"
4174
+ msgstr "Configuraciones de la Pasarela de Pago"
4175
 
4176
+ #: ../addons/gateway/event-booking/mycred-eventespresso3.php:399 ..
4177
+ #: addons/gateway/event-booking/mycred-eventsmanager.php:524 ..
4178
+ #: addons/gateway/event-booking/mycred-eventsmanager-pro.php:490
4179
+ #, php-format
4180
+ msgid "How many %s is 1 %s worth?"
4181
+ msgstr "¿Cuantos %s vale un %s?"
4182
 
4183
+ #: ../addons/gateway/event-booking/mycred-eventespresso3.php:407
4184
+ msgid "Gateways Settings Successfully Updated"
4185
+ msgstr "Configuracion de l Pasarela de Pago ha sido Actualizado "
4186
 
4187
+ #: ../addons/gateway/event-booking/mycred-eventespresso3.php:415 ..
4188
+ #: addons/gateway/event-booking/mycred-eventsmanager.php:602 ..
4189
+ #: addons/gateway/event-booking/mycred-eventsmanager-pro.php:576
4190
+ msgid "Labels"
4191
+ msgstr "Etiquetas"
4192
 
4193
+ #. also, "Titulo de la Pasarela de Pago" depending on the technical nature of the action being done
4194
+ #: ../addons/gateway/event-booking/mycred-eventespresso3.php:418
4195
+ msgid "Gateway Title"
4196
+ msgstr "Titulo de la Red de Enlace"
4197
 
4198
+ #: ../addons/gateway/event-booking/mycred-eventespresso3.php:420
4199
+ msgid "Title to show on Payment page"
4200
+ msgstr "Titulo que se mostrara en tu pagina de Pago"
4201
 
4202
+ #: ../addons/gateway/event-booking/mycred-eventespresso3.php:423
4203
+ msgid "Payment Type"
4204
+ msgstr "Clase de Pago"
4205
 
4206
+ #: ../addons/gateway/event-booking/mycred-eventespresso3.php:425
4207
+ msgid "Title to show on receipts and logs"
4208
+ msgstr "El titulo a mostrar en la factura y en los registros."
4209
 
4210
+ #: ../addons/gateway/event-booking/mycred-eventespresso3.php:428 ..
4211
+ #: addons/gateway/event-booking/mycred-eventsmanager.php:619 ..
4212
+ #: addons/gateway/event-booking/mycred-eventsmanager-pro.php:593 ..
4213
+ #: addons/transfer/includes/mycred-transfer-widgets.php:132 ../addons/sell-
4214
+ #: content/myCRED-addon-sell-content.php:459 ../addons/sell-content/myCRED-addon-
4215
+ #: sell-content.php:686
4216
+ msgid "Button Label"
4217
+ msgstr "Eqiqueta Asignada al Botón"
4218
 
4219
+ #: ../addons/gateway/event-booking/mycred-eventespresso3.php:430
4220
+ msgid "Pay Button"
4221
+ msgstr "Botón de Pago"
4222
 
4223
+ #: ../addons/gateway/event-booking/mycred-eventespresso3.php:447 ..
4224
+ #: addons/gateway/event-booking/mycred-eventsmanager.php:336 ..
4225
+ #: addons/gateway/event-booking/mycred-eventsmanager.php:339 ..
4226
+ #: addons/gateway/event-booking/mycred-eventsmanager-pro.php:139 ..
4227
+ #: addons/gateway/event-booking/mycred-eventsmanager-pro.php:142 ../addons/sell-
4228
+ #: content/myCRED-addon-sell-content.php:450 ../addons/sell-content/myCRED-addon-
4229
+ #: sell-content.php:682
4230
+ msgid "Price"
4231
+ msgstr "Precio"
4232
 
4233
+ #: ../addons/gateway/event-booking/mycred-eventespresso3.php:455
4234
+ msgid "Important!"
4235
+ msgstr "¡Importante!"
4236
 
4237
+ #: ../addons/gateway/event-booking/mycred-eventespresso3.php:457
4238
+ msgid ""
4239
+ "You can disable purchases using this gateway by adding a custom Event Meta: "
4240
+ "<code>mycred_no_sale</code>"
4241
+ msgstr ""
4242
+ "Puedes inhabilitar compras a traves de esta pasarela mediante la adición de "
4243
+ "un Evento Meta personalizado: <code>mycred_no_sale</code>"
4244
 
4245
+ #: ../addons/gateway/event-booking/mycred-eventespresso3.php:458
4246
+ msgid "Users must be logged in to use this gateway!"
4247
+ msgstr "¡Los usuarios deben estar conectado para usar esta pasarela de pago!"
4248
 
4249
+ #: ../addons/gateway/event-booking/mycred-eventespresso3.php:462 ..
4250
+ #: addons/gateway/event-booking/mycred-eventsmanager.php:569 ..
4251
+ #: addons/gateway/event-booking/mycred-eventsmanager-pro.php:531 ..
4252
+ #: addons/gateway/carts/mycred-wpecommerce.php:364 ..
4253
+ #: addons/gateway/carts/mycred-woocommerce.php:169 ..
4254
+ #: addons/gateway/carts/mycred-marketpress.php:418
4255
+ msgid "Profit Sharing"
4256
+ msgstr "Reparto de Ganancias"
4257
 
4258
+ #: ../addons/gateway/event-booking/mycred-eventespresso3.php:464 ..
4259
+ #: addons/gateway/event-booking/mycred-eventsmanager.php:572 ..
4260
+ #: addons/gateway/event-booking/mycred-eventsmanager-pro.php:534 ..
4261
+ #: addons/gateway/carts/mycred-wpecommerce.php:368 ..
4262
+ #: addons/gateway/carts/mycred-woocommerce.php:171 ..
4263
+ #: addons/gateway/carts/mycred-marketpress.php:423
4264
+ msgid "Option to share sales with the product owner. Use zero to disable."
4265
+ msgstr ""
4266
+ "Opción de compartir las ventas con el dueño del producto. Utilice cero para "
4267
+ "inhabilitar."
4268
 
4269
+ #: ../addons/gateway/event-booking/mycred-eventespresso3.php:477 ../addons/sell-
4270
+ #: content/myCRED-addon-sell-content.php:473
4271
+ msgid "Templates"
4272
+ msgstr "Plantillas"
4273
 
4274
+ #: ../addons/gateway/event-booking/mycred-eventespresso3.php:480
4275
+ msgid "Solvent users"
4276
+ msgstr "Usuarios Solventes"
4277
 
4278
+ #: ../addons/gateway/event-booking/mycred-eventespresso3.php:482
4279
+ msgid ""
4280
+ "Message to show users on the payment page before they are charged. Leave "
4281
+ "empty to hide."
4282
+ msgstr ""
4283
+ "Mostrar mensaje a los usuarios en la pagina de pago antes de cobrar. Dejalo "
4284
+ "vacío para ocultar. "
4285
 
4286
+ #: ../addons/gateway/event-booking/mycred-eventespresso3.php:485
4287
+ msgid "Insolvent users"
4288
+ msgstr "Usuarios Insolventes"
4289
 
4290
+ #: ../addons/gateway/event-booking/mycred-eventespresso3.php:487
4291
+ msgid "Message to show users who do not have enough points to pay."
4292
+ msgstr ""
4293
+ "Mostrar mensaje a los usuarios que no tienen suficientes puntos con que "
4294
+ "pagar."
4295
 
4296
+ #: ../addons/gateway/event-booking/mycred-eventespresso3.php:490 ..
4297
+ #: addons/gateway/carts/mycred-wpecommerce.php:382 ..
4298
+ #: addons/gateway/carts/mycred-marketpress.php:446
4299
+ msgid "Visitors"
4300
+ msgstr "Visitantes"
4301
 
4302
+ #: ../addons/gateway/event-booking/mycred-eventespresso3.php:492
4303
+ msgid "Message to show visitors (users not logged in) on the payment page."
4304
+ msgstr ""
4305
+ "Mostrar mensaje a los visitantes (usuarios que no han iniciado sesión) en la "
4306
+ "pagina de pago."
4307
 
4308
+ #: ../addons/gateway/event-booking/mycred-eventsmanager.php:29 ..
4309
+ #: addons/gateway/event-booking/mycred-eventsmanager-pro.php:33
4310
+ msgid "Payment for tickets to %link_with_title%"
4311
+ msgstr "Pago de entradas para %link_with_title%"
4312
 
4313
+ #: ../addons/gateway/event-booking/mycred-eventsmanager.php:30 ..
4314
+ #: addons/gateway/event-booking/mycred-eventsmanager-pro.php:34
4315
+ msgid "Ticket refund for %link_with_title%"
4316
+ msgstr "Reembolso de entrada para "
4317
 
4318
+ #: ../addons/gateway/event-booking/mycred-eventsmanager.php:34 ..
4319
+ #: addons/gateway/event-booking/mycred-eventsmanager-pro.php:38
4320
+ #, php-format
4321
+ msgid "Pay using your %_plural% balance"
4322
+ msgstr "Paga utilizando tu saldo de %_plural%"
4323
 
4324
+ #: ../addons/gateway/event-booking/mycred-eventsmanager.php:36 ..
4325
+ #: addons/gateway/event-booking/mycred-eventsmanager-pro.php:40
4326
+ msgid "Pay"
4327
+ msgstr "Pagar"
4328
 
4329
+ #: ../addons/gateway/event-booking/mycred-eventsmanager.php:39 ..
4330
+ #: addons/gateway/event-booking/mycred-eventsmanager-pro.php:44
4331
+ msgid "Thank you for your payment!"
4332
+ msgstr "¡Gracias por su pago!"
4333
 
4334
+ #: ../addons/gateway/event-booking/mycred-eventsmanager.php:40 ..
4335
+ #: addons/gateway/event-booking/mycred-eventsmanager-pro.php:45
4336
+ msgid "I'm sorry but you can not pay for these tickets using %_plural%"
4337
+ msgstr "Lo siento pero no puedes pagar estos billetes usando %_plural%"
4338
 
4339
+ #: ../addons/gateway/event-booking/mycred-eventsmanager.php:333 ..
4340
+ #: addons/gateway/event-booking/mycred-eventsmanager-pro.php:136
4341
+ msgid "Ticket Type"
4342
+ msgstr "Clase de Billete"
4343
 
4344
+ #: ../addons/gateway/event-booking/mycred-eventsmanager.php:342 ..
4345
+ #: addons/gateway/event-booking/mycred-eventsmanager-pro.php:145
4346
+ msgid "Spaces"
4347
+ msgstr "Espacios"
4348
 
4349
+ #: ../addons/gateway/event-booking/mycred-eventsmanager.php:420
4350
+ msgid "Balance After Payment"
4351
+ msgstr "Saldo despues de Pago"
4352
 
4353
+ #: ../addons/gateway/event-booking/mycred-eventsmanager.php:532
4354
+ msgid "Click to toggle"
4355
+ msgstr "Haga clic para alternar"
4356
 
4357
+ #: ../addons/gateway/event-booking/mycred-eventsmanager.php:533
4358
+ #, php-format
4359
+ msgid "%s Payments"
4360
+ msgstr "Pagos de "
4361
 
4362
+ #: ../addons/gateway/event-booking/mycred-eventsmanager.php:542 ..
4363
+ #: addons/gateway/event-booking/mycred-eventsmanager-pro.php:518
4364
+ #, php-format
4365
+ msgid "Disabled - Users CAN NOT pay for tickets using %plural%."
4366
+ msgstr "Deshabilitado - Usuarios NO PUEDEN pagar entradas utilizando %plural%."
4367
 
4368
+ #: ../addons/gateway/event-booking/mycred-eventsmanager.php:543 ..
4369
+ #: addons/gateway/event-booking/mycred-eventsmanager-pro.php:519
4370
+ #, php-format
4371
+ msgid "Single - Users can ONLY pay for tickets using %plural%."
4372
+ msgstr "Individuales - Usuarios NO PUEDEN pagar entradas utilizando %plural%."
4373
 
4374
+ #: ../addons/gateway/event-booking/mycred-eventsmanager.php:544 ..
4375
+ #: addons/gateway/event-booking/mycred-eventsmanager-pro.php:520
4376
+ #, php-format
4377
+ msgid "Multi - Users can pay for tickets using other gateways or %plural%."
4378
  msgstr ""
4379
+ "Multi-usuarios pueden pagar entradas utilizando otras pasarelas de pago o "
4380
+ "%plural%."
4381
 
4382
+ #: ../addons/gateway/event-booking/mycred-eventsmanager.php:562 ..
4383
+ #: addons/gateway/event-booking/mycred-eventsmanager.php:595 ..
4384
+ #: addons/gateway/event-booking/mycred-eventsmanager-pro.php:524 ..
4385
+ #: addons/gateway/event-booking/mycred-eventsmanager-pro.php:557
4386
+ msgid "Refunds"
4387
+ msgstr "Reembolsos"
4388
 
4389
+ #: ../addons/gateway/event-booking/mycred-eventsmanager.php:565
4390
+ msgid ""
4391
+ "The percentage of the paid amount to refund if a booking gets cancelled. Use "
4392
+ "zero for no refunds. No refunds are given to \"Rejected\" bookings."
4393
  msgstr ""
4394
+ "El porcentaje de la cantidad pagada que se reembolsará si se cancela una "
4395
+ "reserva. Utilice cero para no ofrecer reembolso ninguno. No se reembolsa "
4396
+ "reservas \"Rechazadas\""
4397
 
4398
+ #: ../addons/gateway/event-booking/mycred-eventsmanager.php:585 ..
4399
+ #: addons/gateway/event-booking/mycred-eventsmanager-pro.php:547
4400
+ msgid "Log Templates"
4401
+ msgstr "Plantillas de Registro"
4402
 
4403
+ #: ../addons/gateway/event-booking/mycred-eventsmanager.php:588 ..
4404
+ #: addons/gateway/event-booking/mycred-eventsmanager-pro.php:550
4405
+ msgid "Purchases"
4406
+ msgstr "Compras"
4407
 
4408
+ #: ../addons/gateway/event-booking/mycred-eventsmanager.php:605 ..
4409
+ #: addons/gateway/event-booking/mycred-eventsmanager-pro.php:579
4410
+ msgid "Payment Link Label"
4411
+ msgstr "La Etiqueta del Enlace de Pago"
4412
 
4413
+ #: ../addons/gateway/event-booking/mycred-eventsmanager.php:608 ..
4414
+ #: addons/gateway/event-booking/mycred-eventsmanager-pro.php:582
4415
+ msgid ""
4416
+ "The payment link shows / hides the payment form under \"My Bookings\". No HTML "
4417
+ "allowed."
4418
+ msgstr ""
4419
+ "El enlace de pago muestra / oculta el formulario de pago en \"Mis Reservas\". "
4420
+ "¡No se permite HTML!"
4421
 
4422
+ #: ../addons/gateway/event-booking/mycred-eventsmanager.php:612 ..
4423
+ #: addons/gateway/event-booking/mycred-eventsmanager-pro.php:586
4424
+ msgid "Payment Header"
4425
+ msgstr "Encabezado de Pago"
4426
 
4427
+ #: ../addons/gateway/event-booking/mycred-eventsmanager.php:615 ..
4428
+ #: addons/gateway/event-booking/mycred-eventsmanager-pro.php:589
4429
+ msgid "Shown on top of the payment form. No HTML allowed."
4430
+ msgstr "Mostrar en la encima del formulario de pago. No se permite HTML."
4431
 
4432
+ #: ../addons/gateway/event-booking/mycred-eventsmanager.php:622 ..
4433
+ #: addons/gateway/event-booking/mycred-eventsmanager-pro.php:596
4434
+ msgid "The button label for payments. No HTML allowed!"
4435
+ msgstr "La etiqueta para el botón de pagos. ¡No se permite HTML!"
4436
 
4437
+ #: ../addons/gateway/event-booking/mycred-eventsmanager.php:626 ..
4438
+ #: addons/gateway/event-booking/mycred-eventsmanager-pro.php:607 ..
4439
+ #: addons/gateway/carts/mycred-wpecommerce.php:375 ..
4440
+ #: addons/gateway/carts/mycred-marketpress.php:435
4441
+ msgid "Messages"
4442
+ msgstr "Mensajes"
4443
 
4444
+ #: ../addons/gateway/event-booking/mycred-eventsmanager.php:629 ..
4445
+ #: addons/gateway/event-booking/mycred-eventsmanager-pro.php:610
4446
+ msgid "Successful Payments"
4447
+ msgstr "Compras Finalizadas con Exito"
4448
 
4449
+ #: ../addons/gateway/event-booking/mycred-eventsmanager.php:632 ..
4450
+ #: addons/gateway/event-booking/mycred-eventsmanager.php:639 ..
4451
+ #: addons/gateway/event-booking/mycred-eventsmanager-pro.php:613 ..
4452
+ #: addons/gateway/event-booking/mycred-eventsmanager-pro.php:620
4453
+ msgid "No HTML allowed!"
4454
+ msgstr "¡No se permite HTML!"
4455
 
4456
+ #: ../addons/gateway/event-booking/mycred-eventsmanager-pro.php:41
4457
+ #, php-format
4458
+ msgid "%plural% Cost"
4459
+ msgstr "%plural% Coste"
4460
 
4461
+ #: ../addons/gateway/event-booking/mycred-eventsmanager-pro.php:193
4462
+ msgid "Your Balance"
4463
+ msgstr "Su Saldo"
4464
 
4465
+ #: ../addons/gateway/event-booking/mycred-eventsmanager-pro.php:258
4466
+ msgid "You can not pay using this gateway."
4467
+ msgstr "No puede usar esta pasarela de pago."
4468
 
4469
+ #: ../addons/gateway/event-booking/mycred-eventsmanager-pro.php:393
4470
+ msgid "Reject"
4471
+ msgstr "Rechazar"
4472
 
4473
+ #: ../addons/gateway/event-booking/mycred-eventsmanager-pro.php:402
4474
+ msgid "Edit/View"
4475
+ msgstr "Editar/Ver"
4476
 
4477
+ #: ../addons/gateway/event-booking/mycred-eventsmanager-pro.php:527
4478
+ msgid ""
4479
+ "The percentage of the paid amount to refund if a user cancels their booking. "
4480
+ "Use zero for no refunds. No refunds are given to \"Rejected\" bookings!"
4481
  msgstr ""
4482
+ "El porcentaje de la cantidad pagada que se reembolsará si se cancela una "
4483
+ "reserva. Utilice cero para no ofrecer reembolso ninguno. No se reembolsa "
4484
+ "reservas \"Rechazadas\""
4485
 
4486
+ #: ../addons/gateway/event-booking/mycred-eventsmanager-pro.php:600
4487
+ msgid "Cart & Checkout Cost"
4488
+ msgstr "Coste de Carrito y Página de pago"
 
 
 
 
 
 
 
 
4489
 
4490
+ #: ../addons/gateway/event-booking/mycred-eventsmanager-pro.php:603
4491
+ #, php-format
4492
+ msgid "Label for cost in %plural%"
4493
+ msgstr "Etiqueta para coste en %plural%"
4494
 
4495
+ #: ../addons/gateway/carts/mycred-wpecommerce.php:27 ..
4496
+ #: addons/gateway/carts/mycred-marketpress.php:359
4497
+ #, php-format
4498
+ msgid "Payment for Order: #%order_id%"
4499
+ msgstr "Pago por el Pedido"
4500
 
4501
+ #: ../addons/gateway/carts/mycred-wpecommerce.php:30
4502
+ msgid "Store sale"
4503
+ msgstr "Venta desde la Tienda"
4504
 
4505
+ #: ../addons/gateway/carts/mycred-wpecommerce.php:32
4506
+ msgid "You must be logged in to use this gateway"
4507
+ msgstr "Debe esta conectado para usar esta pasarela de pago."
4508
 
4509
+ #: ../addons/gateway/carts/mycred-wpecommerce.php:33
4510
+ msgid "Insufficient Funds."
4511
+ msgstr "Fondos Insuficientes."
4512
 
4513
+ #: ../addons/gateway/carts/mycred-wpecommerce.php:34
4514
+ msgid "Deduct the amount from your balance."
4515
+ msgstr "Restar la cantidad de su saldo."
 
 
4516
 
4517
+ #: ../addons/gateway/carts/mycred-wpecommerce.php:112 ../addons/buy-
4518
+ #: creds/abstracts/mycred-abstract-payment-gateway.php:592
4519
+ msgid "Item"
4520
+ msgstr "Articulo"
4521
 
4522
+ #: ../addons/gateway/carts/mycred-wpecommerce.php:131 ..
4523
+ #: addons/gateway/carts/mycred-woocommerce.php:741
4524
+ msgid "Your current balance"
4525
+ msgstr "Tu saldo actual"
4526
 
4527
+ #: ../addons/gateway/carts/mycred-wpecommerce.php:199
4528
+ msgid "You can not use this gateway."
4529
+ msgstr "No puedes usar esta pasarela de pago."
 
4530
 
4531
+ #: ../addons/gateway/carts/mycred-wpecommerce.php:344
4532
+ msgid "Log Template for Payments"
4533
+ msgstr "Plantilla de Registro para Pagos"
 
4534
 
4535
+ #: ../addons/gateway/carts/mycred-wpecommerce.php:361
4536
  #, php-format
4537
+ msgid "How much is 1 %s worth in %s"
4538
+ msgstr "Cuanto vale 1 %s en %s"
4539
 
4540
+ #: ../addons/gateway/carts/mycred-wpecommerce.php:378
4541
+ msgid "Instructions"
4542
+ msgstr "Instrucciones"
4543
 
4544
+ #: ../addons/gateway/carts/mycred-wpecommerce.php:379
4545
+ msgid ""
4546
+ "Optional instructions to show users when selecting this gateway. Leave empty "
4547
+ "to hide."
4548
  msgstr ""
4549
+ "Instrucciones opcionales para mostrar a los usuarios cuando se selecciona "
4550
+ "esta pasarela. Deje el campo vacío para ocultarlo."
4551
 
4552
+ #: ../addons/gateway/carts/mycred-wpecommerce.php:383
4553
+ msgid "Message to show visitors who are not logged in."
4554
+ msgstr "Muestra mensaje a los visitantes que no han iniciado sesión."
4555
 
4556
+ #: ../addons/gateway/carts/mycred-wpecommerce.php:387
4557
+ #, php-format
4558
+ msgid ""
4559
+ "Message to show when users does not have enough %plural% to pay using this "
4560
+ "gateway."
4561
  msgstr ""
4562
+ "Monstrar mensaje cuando los usuarios no tienen bastante %plural% con que "
4563
+ "pagar usando esta pasarela de pago."
4564
 
4565
+ #: ../addons/gateway/carts/mycred-woocommerce.php:31
4566
+ msgid "Let users pay using their myCRED balance."
4567
+ msgstr "Permite que los usuarios paguen mediante su saldo myCRED."
 
 
 
4568
 
4569
+ #: ../addons/gateway/carts/mycred-woocommerce.php:85
4570
+ msgid "Enable/Disable"
4571
+ msgstr "Activar/Desactivar"
 
4572
 
4573
+ #: ../addons/gateway/carts/mycred-woocommerce.php:87
4574
+ msgid "Enable myCRED Payment"
4575
+ msgstr "Activar Pago myCRED"
4576
 
4577
+ #: ../addons/gateway/carts/mycred-woocommerce.php:89
4578
+ msgid ""
4579
+ "Users who are not logged in or excluded from using myCRED will not have "
4580
+ "access to this gateway!"
4581
+ msgstr ""
4582
+ "¡Los usuarios que no estan ingresado o los que han sido excluido de utilizar "
4583
+ "myCRED no tendran acceso a esta pasarela de pago!"
4584
 
4585
+ #: ../addons/gateway/carts/mycred-woocommerce.php:94
4586
+ msgid "Title to show for this payment option."
4587
+ msgstr "Mostrar este titulo para esta opción de pago."
4588
 
4589
+ #: ../addons/gateway/carts/mycred-woocommerce.php:95
4590
+ msgid "Pay with myCRED"
4591
+ msgstr "Paga con myCRED"
 
4592
 
4593
+ #. not sure if it is "message to customers" or "message from customers"? current translation is "message to customers"
4594
+ #: ../addons/gateway/carts/mycred-woocommerce.php:99
4595
+ msgid "Customer Message"
4596
+ msgstr "Mensaje a los Clientes"
4597
 
4598
+ #: ../addons/gateway/carts/mycred-woocommerce.php:110 ..
4599
+ #: addons/gateway/carts/mycred-woocommerce.php:182
4600
+ msgid "Refund Log Template"
4601
+ msgstr "Plantilla de Registro de Reembolsos"
4602
 
4603
+ #: ../addons/gateway/carts/mycred-woocommerce.php:122
4604
+ msgid "Select the point type users can use to pay."
4605
+ msgstr "Elige el clase de punto que los usuarios pueden utilizar para realizar pagos."
4606
 
4607
+ #: ../addons/gateway/carts/mycred-woocommerce.php:136 ..
4608
+ #: addons/gateway/carts/mycred-marketpress.php:404
4609
+ #, php-format
4610
+ msgid "How much is 1 %_singular% worth in %currency%?"
4611
+ msgstr "¿Cuanto vale un 1 %_singular% en %currency%?"
4612
 
4613
+ #: ../addons/gateway/carts/mycred-woocommerce.php:148
4614
+ msgid "Show Total"
4615
+ msgstr "Mostrar Total"
4616
 
4617
+ #: ../addons/gateway/carts/mycred-woocommerce.php:150
4618
+ msgid "Show the final price in %_plural% ."
4619
+ msgstr "Mostrar el precio final en %_plural%."
 
 
 
 
 
 
4620
 
4621
+ #: ../addons/gateway/carts/mycred-woocommerce.php:153
4622
+ msgid "Show in Cart"
4623
+ msgstr "Mostrar en Carrito"
 
 
 
 
4624
 
4625
+ #: ../addons/gateway/carts/mycred-woocommerce.php:154
4626
+ msgid "Show on Checkout Page"
4627
+ msgstr "Mostrar en la página de pago"
4628
 
4629
+ #: ../addons/gateway/carts/mycred-woocommerce.php:155
4630
+ msgid "Show in Cart and on Checkout Page"
4631
+ msgstr "Mostrar en el Carrito y en la página de pago"
4632
 
4633
+ #: ../addons/gateway/carts/mycred-woocommerce.php:162
4634
+ msgid "Order Total in %_plural%"
4635
+ msgstr "Total del Pedido en %_plural%"
4636
 
4637
+ #: ../addons/gateway/carts/mycred-woocommerce.php:178
4638
+ msgid "Log entry template for profit sharing."
4639
+ msgstr "Plantilla para entradas de registro para el reparto de ganancias."
 
4640
 
4641
+ #: ../addons/gateway/carts/mycred-woocommerce.php:184
4642
+ msgid "Log entry template for refunds of profit shares."
4643
+ msgstr "Plantilla de entrada de registro para reembolsos de reparto de ganancias."
4644
 
4645
+ #: ../addons/gateway/carts/mycred-woocommerce.php:214
4646
+ msgid "myCRED Payment"
4647
+ msgstr "Pago myCRED"
4648
+
4649
+ #: ../addons/gateway/carts/mycred-woocommerce.php:215
4650
+ #, php-format
4651
  msgid ""
4652
+ "Allows users to pay using their myCRED %_singular% balance. Please note that "
4653
+ "users with insufficient funds and users who are not logged in will not see "
4654
+ "this payment gateway on the checkout page."
4655
  msgstr ""
4656
+ "Permite a los usuarios pagar usando su mycred % _singular% saldo. Por favor, "
4657
+ "ten en cuenta que los usuarios con fondos insuficientes y los usuarios que "
4658
+ "no han iniciado sesión no verán esta pasarela de pago en la página de pago."
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
4659
 
4660
+ #: ../addons/gateway/carts/mycred-woocommerce.php:240
4661
+ msgid "You must be logged in to pay with %_plural%"
4662
+ msgstr "Debes haber iniciado sesión para pagar con %_plural%"
4663
 
4664
+ #: ../addons/gateway/carts/mycred-woocommerce.php:246
4665
+ msgid "You can not use this gateway. Please try a different payment option."
4666
  msgstr ""
4667
+ "No puede usar esta pasarela de pago. Por favor prueba una opción de pago "
4668
+ "diferente."
4669
 
4670
+ #: ../addons/gateway/carts/mycred-woocommerce.php:263 ..
4671
+ #: addons/gateway/carts/mycred-marketpress.php:365
4672
+ msgid "Insufficient funds."
4673
+ msgstr "Fondos Insuficientes."
4674
 
4675
+ #: ../addons/gateway/carts/mycred-woocommerce.php:408
4676
+ msgid "Your account has successfully been charged."
4677
+ msgstr "Su cuenta ha sido cambiado con éxito."
4678
 
4679
+ #: ../addons/gateway/carts/mycred-marketpress.php:179 ../addons/buy-
4680
+ #: creds/abstracts/mycred-abstract-payment-gateway.php:404
4681
+ msgid "Payment"
4682
+ msgstr "PAgo"
4683
 
4684
+ #: ../addons/gateway/carts/mycred-marketpress.php:182 ..
4685
+ #: addons/gateway/carts/mycred-marketpress.php:231
4686
+ msgid "Go Back"
4687
+ msgstr "Regresar"
4688
 
4689
+ #: ../addons/gateway/carts/mycred-marketpress.php:185
4690
+ msgid "will be deducted from your account."
4691
+ msgstr "sera restado de su cuenta."
4692
 
4693
+ #: ../addons/gateway/carts/mycred-marketpress.php:221
4694
+ #, php-format
4695
+ msgid ""
4696
+ "Sorry, but you can not use this gateway as your account is excluded. Please "
4697
+ "<a href=\"%s\">select a different payment method</a>."
4698
+ msgstr ""
4699
+ "Lo siento, pero no puede utilizar esta pasarela de pago porque excluye su "
4700
+ "cuenta. Por favor <a href=\"%s\"> elige otro método de pago."
4701
 
4702
+ #: ../addons/gateway/carts/mycred-marketpress.php:247
4703
+ msgid "Paid"
4704
+ msgstr "Pagado"
4705
 
4706
+ #: ../addons/gateway/carts/mycred-marketpress.php:356
4707
+ #, php-format
4708
+ msgid "%_singular% Balance"
4709
+ msgstr "%_singular% Saldo"
4710
 
4711
+ #: ../addons/gateway/carts/mycred-marketpress.php:362
4712
+ #, php-format
4713
+ msgid "Product Sale: %post_title%"
4714
+ msgstr "Venta de Producto: "
4715
 
4716
+ #: ../addons/gateway/carts/mycred-marketpress.php:363
4717
+ msgid "Pay using your account balance."
4718
+ msgstr "Paga usando el saldo de su cuenta."
 
4719
 
4720
+ #: ../addons/gateway/carts/mycred-marketpress.php:364
4721
+ #, php-format
4722
+ msgid ""
4723
+ "TOTAL amount has been deducted from your account. Your current balance is: "
4724
+ "%balance_f%"
4725
+ msgstr "Cantidad TOTAL ha sido restado de su cuenta. Su saldo actual es:% balance_f%"
4726
 
4727
+ #: ../addons/gateway/carts/mycred-marketpress.php:366
4728
  msgid ""
4729
+ "You must be logged in to pay with %_plural%. Please <a "
4730
+ "href=\"%login_url_here%\">login</a>."
 
 
4731
  msgstr ""
4732
+ "Debes haber iniciado sesión para pagar con %_plural%. Por favor <a "
4733
+ "href=\"%login_url_here%\">identifícate</a>."
 
 
4734
 
4735
+ #: ../addons/gateway/carts/mycred-marketpress.php:373
4736
+ #, php-format
4737
+ msgid ""
4738
+ "Let your users pay for items in their shopping cart using their %s Account. "
4739
+ "Note! This gateway requires your users to be logged in when making a "
4740
+ "purchase!"
4741
+ msgstr ""
4742
+ "Permita que sus usuarios paguen para los articulos en su carrito de compra "
4743
+ "usando su %s Cuenta. ¡Nota! Esta pasarela de pago requiere que sus usuarios "
4744
+ "esten ingresado para realizar una compra. "
4745
 
4746
+ #: ../addons/gateway/carts/mycred-marketpress.php:376
4747
+ msgid "Method Name"
4748
+ msgstr "Nombre del Método"
4749
 
4750
+ #: ../addons/gateway/carts/mycred-marketpress.php:378
4751
+ msgid ""
4752
+ "Enter a public name for this payment method that is displayed to users - No "
4753
+ "HTML"
4754
+ msgstr ""
4755
+ "Introduzca el nombre público para este método de pago que se va a mostrar a "
4756
+ "los usuarios - sin HTML"
4757
 
4758
+ #: ../addons/gateway/carts/mycred-marketpress.php:383
4759
+ msgid "Gateway Logo URL"
4760
+ msgstr "URL del Logotipo de la Pasarela de Pago"
4761
 
4762
+ #: ../addons/gateway/carts/mycred-marketpress.php:421
4763
+ msgid "Percentage"
4764
+ msgstr "Porcentaje"
 
 
 
 
 
 
 
 
4765
 
4766
+ #: ../addons/gateway/carts/mycred-marketpress.php:440
4767
+ msgid "Message to show when the user can not use this gateway."
4768
+ msgstr "Monstrar mensaje cuando el usuario no puede usar esta pasarela de pago."
 
 
4769
 
4770
+ #: ../addons/gateway/carts/mycred-marketpress.php:448
4771
+ msgid "Message to show to buyers that are not logged in."
4772
+ msgstr "Monstrar mensaje a los compradores que no han iniciado la sesión."
4773
 
4774
+ #: ../addons/gateway/carts/mycred-marketpress.php:454
4775
+ msgid "User Instructions"
4776
+ msgstr "Instrucciones del Usuario"
 
4777
 
4778
+ #: ../addons/gateway/carts/mycred-marketpress.php:456
4779
+ msgid "Information to show users before payment."
4780
+ msgstr "Mostrar esta información a los usuarios antes del pago."
 
4781
 
4782
+ #: ../addons/gateway/carts/mycred-marketpress.php:462
4783
+ msgid "Confirmation Information"
4784
+ msgstr "Informe de Confirmación"
4785
 
4786
+ #: ../addons/gateway/carts/mycred-marketpress.php:464
4787
+ msgid "Information to display on the order confirmation page. - HTML allowed"
4788
+ msgstr ""
4789
+ "Información que se mostrará en la página de confirmación del pedido - se "
4790
+ "permite HTML."
4791
 
4792
+ #: ../addons/gateway/carts/mycred-marketpress.php:470
4793
+ msgid "Order Confirmation Email"
4794
+ msgstr "Email de Confirmación del Pedido"
4795
 
4796
+ #: ../addons/gateway/carts/mycred-marketpress.php:472
4797
  #, php-format
4798
+ msgid ""
4799
+ "This is the email text to send to those who have made %s checkouts. It "
4800
+ "overrides the default order checkout email. These codes will be replaced "
4801
+ "with order details: CUSTOMERNAME, ORDERID, ORDERINFO, SHIPPINGINFO, "
4802
+ "PAYMENTINFO, TOTAL, TRACKINGURL. No HTML allowed."
4803
+ msgstr ""
4804
+ "Esto es el texto del correo electrónico que se manda a los que hayan "
4805
+ "finalizado %s compras. Anula al correo electrónico predeterminado al "
4806
+ "finalizar el cajero. Estos códigos seran reemplazados con los detalles del "
4807
+ "pedido: ORDERID, ORDERINFO, SHIPPINGINFO, PAYMENTINFO, TOTAL, TRACKINGURL. "
4808
+ "No se permite el uso de HTML."
4809
 
4810
+ #: ../addons/transfer/myCRED-addon-transfer.php:44
4811
+ #, php-format
4812
+ msgid "You do not have enough %plural% to send."
4813
+ msgstr "No tienes bastante %plural% para mandar."
4814
 
4815
+ #: ../addons/transfer/myCRED-addon-transfer.php:45
4816
+ msgid "You have exceeded your %limit% transfer limit."
4817
+ msgstr "Has excedido tu limite de transferencia de %limit%."
4818
 
4819
+ #: ../addons/transfer/myCRED-addon-transfer.php:154
4820
+ msgid "Transaction completed."
4821
+ msgstr "Transacción Finalizada"
4822
 
4823
+ #: ../addons/transfer/myCRED-addon-transfer.php:155
4824
+ msgid "Security token could not be verified. Please contact your site administrator!"
4825
  msgstr ""
4826
+ "No se pudo verificar el 'token' (código) de seguridad. ¡Por favor, póngase "
4827
+ "en contacto con el administrador del sitio!"
4828
 
4829
+ #: ../addons/transfer/myCRED-addon-transfer.php:156
4830
+ msgid "Communications error. Please try again later."
4831
+ msgstr "Error en comunicación. Por favor inténtelo de nuevo más tarde."
4832
 
4833
+ #: ../addons/transfer/myCRED-addon-transfer.php:157
4834
+ msgid "Recipient not found. Please try again."
4835
+ msgstr "El recipiente no fuel encontrado. Por favor Inténtelo de nuevo."
4836
 
4837
+ #: ../addons/transfer/myCRED-addon-transfer.php:158
4838
+ msgid "Transaction declined by recipient."
4839
+ msgstr "Transacción rechazada por el destinatario"
4840
 
4841
+ #: ../addons/transfer/myCRED-addon-transfer.php:159
4842
+ msgid "Incorrect amount. Please try again."
4843
+ msgstr "Cantidad incorecta. Por favor inténtelo de nuevo."
4844
 
4845
+ #: ../addons/transfer/myCRED-addon-transfer.php:160
4846
  msgid ""
4847
+ "This myCRED Add-on has not yet been setup! No transfers are allowed until "
4848
+ "this has been done!"
4849
  msgstr ""
4850
+ "¡Esta Extensión de myCRED todavía no ha sido configurado! No se permite "
4851
+ "transferencias hasta que se haga esto."
4852
 
4853
+ #: ../addons/transfer/myCRED-addon-transfer.php:162
4854
+ msgid "Transfer Limit exceeded."
4855
+ msgstr "Límite de transferencia excedida."
4856
 
4857
+ #: ../addons/transfer/myCRED-addon-transfer.php:189
4858
+ msgid "No limits."
4859
+ msgstr "Sin limite."
 
4860
 
4861
+ #: ../addons/transfer/myCRED-addon-transfer.php:190
4862
+ msgid "Impose daily limit."
4863
+ msgstr "Imponer limite diario."
4864
 
4865
+ #: ../addons/transfer/myCRED-addon-transfer.php:191
4866
+ msgid "Impose weekly limit."
4867
+ msgstr "Imponer limite semanal."
4868
 
4869
+ #: ../addons/transfer/myCRED-addon-transfer.php:198
4870
+ msgid "User Login (user_login)"
4871
+ msgstr "Ingreso Usuario (user_login)"
4872
 
4873
+ #: ../addons/transfer/myCRED-addon-transfer.php:199
4874
+ msgid "User Email (user_email)"
4875
+ msgstr "Correo Electrónico del Usuario (user_email)"
 
4876
 
4877
+ #: ../addons/transfer/myCRED-addon-transfer.php:216
4878
+ msgid "Select the point types that users can transfer."
4879
+ msgstr "Elige el clase de punto que el usuario puede transferir."
 
4880
 
4881
+ #: ../addons/transfer/myCRED-addon-transfer.php:224
4882
+ msgid "Log template for sending"
4883
+ msgstr "Plantilla de registros para transmitir"
4884
 
4885
+ #: ../addons/transfer/myCRED-addon-transfer.php:231
4886
+ msgid "Log template for receiving"
4887
+ msgstr "Plantilla de registros para recibir"
4888
 
4889
+ #: ../addons/transfer/myCRED-addon-transfer.php:238
4890
+ msgid "Autofill Recipient"
4891
+ msgstr "Destinatario del Relleno Automático"
 
4892
 
4893
+ #: ../addons/transfer/myCRED-addon-transfer.php:250
4894
+ msgid "Select what user details recipients should be autofilled by."
4895
+ msgstr ""
4896
+ "Selecciona cuales detalles del usuario al destinatario deben ser rellenados "
4897
+ "automáticamente."
4898
 
4899
+ #: ../addons/transfer/myCRED-addon-transfer.php:253
4900
+ msgid "Reload"
4901
+ msgstr "Recargar"
4902
 
4903
+ #: ../addons/transfer/myCRED-addon-transfer.php:256
4904
+ msgid "Reload page on successful transfers."
4905
+ msgstr "Actualizar la pagina despues de transferencias finalizadas."
 
4906
 
4907
+ #: ../addons/transfer/myCRED-addon-transfer.php:276
4908
+ msgid "Limit Amount"
4909
+ msgstr "Limitar la Cantidad"
4910
 
4911
+ #: ../addons/transfer/myCRED-addon-transfer.php:280
4912
+ msgid "Form Templates"
4913
+ msgstr "Plantillas de Formulario"
4914
+
4915
+ #: ../addons/transfer/myCRED-addon-transfer.php:283
4916
+ msgid "Not logged in Template"
4917
+ msgstr "Plantilla de no estar ingresado"
4918
+
4919
+ #: ../addons/transfer/myCRED-addon-transfer.php:285
4920
  msgid ""
4921
+ "Text to show when users are not logged in. Leave empty to hide. No HTML "
4922
+ "elements allowed!"
4923
  msgstr ""
4924
+ "Mostrar este texto cuango los usuarios no han iniciado la sesión. ¡No se "
4925
+ "permite ningun elemento de HTML!"
4926
 
4927
+ #: ../addons/transfer/myCRED-addon-transfer.php:289
4928
+ msgid "Balance Template"
4929
+ msgstr "Plantilla de Saldo"
4930
 
4931
+ #: ../addons/transfer/myCRED-addon-transfer.php:291
4932
+ msgid ""
4933
+ "Template to use when displaying the users balance (if included). No HTML "
4934
+ "elements allowed!"
4935
  msgstr ""
4936
+ "Utilizar esta plantilla cuando mostrando el saldo del usuario (si esta "
4937
+ "incluido). ¡No se permite elementos de HTML!"
4938
 
4939
+ #: ../addons/transfer/myCRED-addon-transfer.php:295
4940
+ msgid "Limit Template"
4941
+ msgstr "Limitar Plantilla"
4942
 
4943
+ #: ../addons/transfer/myCRED-addon-transfer.php:297
4944
+ msgid "Template to use when displaying limits (if used). No HTML elements allowed!"
4945
+ msgstr ""
4946
+ "Utilizar esta plantilla cuando mostrando límites (si se utiliza). ¡No se "
4947
+ "permite elementos de HTML!"
 
 
 
4948
 
4949
+ #: ../addons/transfer/myCRED-addon-transfer.php:301
4950
+ msgid "Button Template"
4951
+ msgstr "Plantilla del Botón"
 
4952
 
4953
+ #: ../addons/transfer/myCRED-addon-transfer.php:303
4954
+ msgid "Send Transfer button template. No HTML elements allowed!"
4955
+ msgstr "Plantilla del botón Enviar Transferencia ¡No se permite elementos de HTML!"
 
4956
 
4957
+ #: ../addons/transfer/myCRED-addon-transfer.php:306
4958
+ msgid "Error Messages"
4959
+ msgstr "Mensajes de Error"
4960
 
4961
+ #. English needs to be corrected: "Balance too low to send."
4962
+ #: ../addons/transfer/myCRED-addon-transfer.php:309
4963
+ msgid "Balance to low to send."
4964
+ msgstr "Saldo insuficiente - no se puede enviar."
4965
 
4966
+ #: ../addons/transfer/myCRED-addon-transfer.php:311
4967
+ msgid ""
4968
+ "Text to show when a users balance is to low for transfers. Leave empty to "
4969
+ "hide. No HTML elements allowed!"
4970
  msgstr ""
4971
+ "Mostrar este texto cuando el saldo de un usuario es demasiado bajo para "
4972
+ "efectuar transferencias. Deje el campo vacío para ocultarlo. ¡No se permite "
4973
+ "ningun elemento de HTML!"
4974
 
4975
+ #: ../addons/transfer/myCRED-addon-transfer.php:315
4976
+ msgid "Transfer Limit Reached."
4977
+ msgstr "Límite de Transferencia Alcanzado."
4978
+
4979
+ #: ../addons/transfer/myCRED-addon-transfer.php:317
4980
+ msgid ""
4981
+ "Text to show when a user has reached their transfer limit (if used). Leave "
4982
+ "empty to hide. No HTML elements allowed!"
4983
  msgstr ""
4984
+ "Mostrar este texto cuando un usuario haya llegado al límite de su "
4985
+ "transferencia (si se utiliza). Deje el campo vacío para ocultarlo. ¡No se "
4986
+ "permite ningun elemento de HTML!"
4987
 
4988
+ #: ../addons/transfer/includes/mycred-transfer-widgets.php:21
4989
+ #, php-format
4990
+ msgid "(%s) Transfer"
4991
+ msgstr "(%s) Transfererir"
4992
 
4993
+ #: ../addons/transfer/includes/mycred-transfer-widgets.php:24
4994
+ msgid "Allow transfers between users."
4995
+ msgstr "Permitir transferencias entre usuarios."
4996
 
4997
+ #: ../addons/transfer/includes/mycred-transfer-widgets.php:42
4998
+ msgid "The myCRED Transfer add-on has not yet been setup!"
4999
+ msgstr "¡Esta Extensión de myCRED todavía no ha sido configurado!"
5000
 
5001
+ #: ../addons/transfer/includes/mycred-transfer-widgets.php:125
5002
+ msgid "Show users balance"
5003
+ msgstr "Mostrar el saldo de usuarios"
5004
 
5005
+ #: ../addons/transfer/includes/mycred-transfer-widgets.php:129
5006
+ msgid "Show users limit"
5007
+ msgstr "Mostrar los límites de usuarios"
 
 
5008
 
5009
+ #: ../addons/transfer/includes/mycred-transfer-shortcodes.php:130
5010
+ msgid "username"
5011
+ msgstr "nombre de usuario"
5012
 
5013
+ #: ../addons/transfer/includes/mycred-transfer-shortcodes.php:133
5014
+ msgid "email"
5015
+ msgstr "correo electrónico"
5016
 
5017
+ #. is this recipients plural or recipient's with an apostrophe missing?
5018
+ #: ../addons/transfer/includes/mycred-transfer-shortcodes.php:135
5019
+ #, php-format
5020
+ msgid "recipients %s"
5021
+ msgstr "destinatarios %s"
5022
 
5023
+ #: ../addons/transfer/includes/mycred-transfer-shortcodes.php:225
5024
+ msgid "To:"
5025
+ msgstr "A:"
 
 
 
 
5026
 
5027
+ #: ../addons/transfer/includes/mycred-transfer-shortcodes.php:231
5028
+ msgid "Amount:"
5029
+ msgstr "Cantidad:"
5030
 
5031
+ #: ../addons/ranks/myCRED-addon-ranks.php:212 ../addons/ranks/myCRED-addon-ranks.
5032
+ #: php:213 ../addons/ranks/myCRED-addon-ranks.php:443 ../addons/ranks/myCRED-
5033
+ #: addon-ranks.php:452 ../addons/ranks/myCRED-addon-ranks.php:458 ..
5034
+ #: addons/ranks/myCRED-addon-ranks.php:834 ../addons/ranks/myCRED-addon-ranks.
5035
+ #: php:1311 ../addons/ranks/myCRED-addon-ranks.php:1602
5036
+ msgid "Ranks"
5037
+ msgstr "Rangos"
5038
 
5039
+ #: ../addons/ranks/myCRED-addon-ranks.php:424
5040
+ msgid "Warning! All ranks will be deleted! This can not be undone!"
5041
+ msgstr "¡Advertencia! ¡Todos los rangos seran borrados! ¡No se puede deshacer esto!"
5042
 
5043
+ #: ../addons/ranks/myCRED-addon-ranks.php:425
5044
+ msgid "Are you sure you want to re-assign user ranks?"
5045
+ msgstr "Esta seguro que quieres reasignar rangos de los usuarios?"
 
 
 
 
5046
 
5047
+ #: ../addons/ranks/myCRED-addon-ranks.php:447 ../addons/ranks/myCRED-addon-ranks.
5048
+ #: php:834
5049
+ msgid "Rank"
5050
+ msgstr "Rango"
5051
 
5052
+ #: ../addons/ranks/myCRED-addon-ranks.php:448 ../addons/email-notices/myCRED-
5053
+ #: addon-email-notices.php:167 ../addons/badges/myCRED-addon-badges.php:385 ..
5054
+ #: addons/buy-creds/myCRED-addon-buy-creds.php:279 ../addons/buy-creds/myCRED-
5055
+ #: addon-buy-creds.php:280
5056
+ msgid "Add New"
5057
+ msgstr "Añade Nuevo"
5058
 
5059
+ #: ../addons/ranks/myCRED-addon-ranks.php:449
5060
+ msgid "Add New Rank"
5061
+ msgstr "Añadir Nuevo Rango"
5062
 
5063
+ #: ../addons/ranks/myCRED-addon-ranks.php:450
5064
+ msgid "Edit Rank"
5065
+ msgstr "Editar Rango"
5066
 
5067
+ #: ../addons/ranks/myCRED-addon-ranks.php:451
5068
+ msgid "New Rank"
5069
+ msgstr "Nuevo Rango"
5070
 
5071
+ #: ../addons/ranks/myCRED-addon-ranks.php:453
5072
+ msgid "View Rank"
5073
+ msgstr "Ver Rango"
 
5074
 
5075
+ #: ../addons/ranks/myCRED-addon-ranks.php:454
5076
+ msgid "Search Ranks"
5077
+ msgstr "Búsqueda de Rangos"
 
5078
 
5079
+ #: ../addons/ranks/myCRED-addon-ranks.php:455
5080
+ msgid "No ranks found"
5081
+ msgstr "Ningun rango encontrado"
5082
+
5083
+ #: ../addons/ranks/myCRED-addon-ranks.php:456
5084
+ msgid "No ranks found in Trash"
5085
+ msgstr "Ningun rango encontrao el la papelera"
5086
 
5087
+ #: ../addons/ranks/myCRED-addon-ranks.php:541
5088
  #, php-format
5089
+ msgid "Completed - Total of %d users effected"
5090
+ msgstr "Completado - Un total %d usuarios afectados"
5091
 
5092
+ #: ../addons/ranks/myCRED-addon-ranks.php:978 ../addons/ranks/myCRED-addon-ranks.
5093
+ #: php:979 ../addons/ranks/myCRED-addon-ranks.php:980 ../addons/ranks/myCRED-
5094
+ #: addon-ranks.php:981 ../addons/ranks/myCRED-addon-ranks.php:982 ..
5095
+ #: addons/ranks/myCRED-addon-ranks.php:983 ../addons/ranks/myCRED-addon-ranks.
5096
+ #: php:986 ../addons/ranks/myCRED-addon-ranks.php:987
5097
+ msgid "Rank Updated."
5098
+ msgstr "Rango Actualizado."
5099
 
5100
+ #: ../addons/ranks/myCRED-addon-ranks.php:984
5101
+ msgid "Rank Enabled"
5102
+ msgstr "Rango Habilitado"
5103
 
5104
+ #: ../addons/ranks/myCRED-addon-ranks.php:985
5105
+ msgid "Rank Saved"
5106
+ msgstr "Rango Guardado"
5107
 
5108
+ #: ../addons/ranks/myCRED-addon-ranks.php:1040 ../addons/ranks/myCRED-addon-ranks.
5109
+ #: php:1123
5110
+ msgid "Rank Title"
5111
+ msgstr "Titulo de Rango"
5112
 
5113
+ #: ../addons/ranks/myCRED-addon-ranks.php:1041
5114
+ msgid "Logo"
5115
+ msgstr "Logotipo"
5116
+
5117
+ #: ../addons/ranks/myCRED-addon-ranks.php:1042
5118
+ msgid "Requirement"
5119
+ msgstr "Requisito"
5120
+
5121
+ #: ../addons/ranks/myCRED-addon-ranks.php:1068
5122
+ msgid "No Logo Set"
5123
+ msgstr "No hay Logotipo Configurado"
5124
+
5125
+ #: ../addons/ranks/myCRED-addon-ranks.php:1083 ../addons/ranks/myCRED-addon-ranks.
5126
+ #: php:1088
5127
+ msgid "Any Value"
5128
+ msgstr "Cualquier Valor"
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
5129
 
5130
+ #: ../addons/ranks/myCRED-addon-ranks.php:1085 ../addons/buy-creds/myCRED-addon-
5131
+ #: buy-creds.php:643
5132
  #, php-format
5133
+ msgid "Minimum %plural%"
5134
+ msgstr "Minimo %_plural%"
5135
 
5136
+ #: ../addons/ranks/myCRED-addon-ranks.php:1090
5137
  #, php-format
5138
+ msgid "Maximum %plural%"
5139
+ msgstr "Maximo %plural%"
5140
 
5141
+ #: ../addons/ranks/myCRED-addon-ranks.php:1138
5142
+ msgid "Rank Settings"
5143
+ msgstr "Configuración de Rango"
5144
 
5145
+ #: ../addons/ranks/myCRED-addon-ranks.php:1192
5146
+ #, php-format
5147
+ msgid "Minimum %plural% to reach this rank"
5148
+ msgstr "Minimo %plural% para llegar a este rango"
5149
 
5150
+ #: ../addons/ranks/myCRED-addon-ranks.php:1196
5151
+ #, php-format
5152
+ msgid "Maximum %plural% to be included in this rank"
5153
+ msgstr "Maximo %plural% para ser incluido en este rango"
5154
 
5155
+ #: ../addons/ranks/myCRED-addon-ranks.php:1214
5156
+ msgid "All Published Ranks"
5157
+ msgstr "Todos los Rangos Publicados"
 
5158
 
5159
+ #: ../addons/ranks/myCRED-addon-ranks.php:1224 ../addons/ranks/myCRED-addon-ranks.
5160
+ #: php:1226
5161
+ msgid "Not Set"
5162
+ msgstr "No Configurado"
5163
 
5164
+ #: ../addons/ranks/myCRED-addon-ranks.php:1232
5165
+ msgid "No Ranks found"
5166
+ msgstr "Ningun rango encontrado"
5167
 
5168
+ #: ../addons/ranks/myCRED-addon-ranks.php:1316
5169
+ msgid "Rank Features"
5170
+ msgstr "Caracteristicas de los Rangos"
5171
 
5172
+ #: ../addons/ranks/myCRED-addon-ranks.php:1320
5173
  #, php-format
5174
+ msgid "%plural% requirement"
5175
+ msgstr "%plural% requisito"
5176
 
5177
+ #: ../addons/ranks/myCRED-addon-ranks.php:1321
5178
+ msgid "Featured Image (Logo)"
5179
+ msgstr "Imagen Principal (Logotipo)"
 
5180
 
5181
+ #: ../addons/ranks/myCRED-addon-ranks.php:1323
5182
+ msgid "Content"
5183
+ msgstr "Contenido"
5184
 
5185
+ #: ../addons/ranks/myCRED-addon-ranks.php:1325
5186
+ msgid "Excerpt"
5187
+ msgstr "Extracto"
 
 
 
 
5188
 
5189
+ #: ../addons/ranks/myCRED-addon-ranks.php:1327
5190
+ msgid "Comments"
5191
+ msgstr "Comentario"
5192
 
5193
+ #: ../addons/ranks/myCRED-addon-ranks.php:1329
5194
+ msgid "Page Attributes"
5195
+ msgstr "Atributos de Página"
5196
 
5197
+ #: ../addons/ranks/myCRED-addon-ranks.php:1331
5198
+ msgid "Custom Fields"
5199
+ msgstr "Campo Personalizado"
5200
 
5201
+ #: ../addons/ranks/myCRED-addon-ranks.php:1335
5202
+ msgid "Public"
5203
+ msgstr "Público"
5204
 
5205
+ #. This is not clear, especially the second sentence (fragment)!
5206
+ #: ../addons/ranks/myCRED-addon-ranks.php:1339
5207
+ msgid ""
5208
+ "If you want to create a template archive for each rank, you must select to "
5209
+ "have ranks public. Defaults to disabled."
5210
  msgstr ""
5211
+ "Si desea crear un archivo de plantilla para cada rango, debe seleccionar que "
5212
+ "los rangos sean público. Los valores predeterminados desactivado."
 
 
 
 
5213
 
5214
+ #: ../addons/ranks/myCRED-addon-ranks.php:1342
5215
+ msgid "Archive URL"
5216
+ msgstr "URL del Archivo"
5217
 
5218
+ #: ../addons/ranks/myCRED-addon-ranks.php:1346
5219
+ msgid "Ignored if Ranks are not public"
5220
+ msgstr "Sera Ingnorado si los Rangos no son Pulicos"
 
 
 
 
5221
 
5222
+ #. not sure if this is order, as in ordering pizza or order as in rank, organization
5223
+ #: ../addons/ranks/myCRED-addon-ranks.php:1349
5224
+ msgid "Display Order"
5225
+ msgstr "Orden de Visualización"
5226
 
5227
+ #: ../addons/ranks/myCRED-addon-ranks.php:1357
5228
+ msgid "Ascending - Lowest rank to highest"
5229
+ msgstr "Ascendente - Rango más bajo a lo más alto"
 
5230
 
5231
+ #: ../addons/ranks/myCRED-addon-ranks.php:1358
5232
+ msgid "Descending - Highest rank to lowest"
5233
+ msgstr "Descendiente - Rango más alto al más bajo"
5234
 
5235
+ #: ../addons/ranks/myCRED-addon-ranks.php:1369
5236
+ msgid ""
5237
+ "Select in what order ranks should be displayed in your admin area and/or "
5238
+ "front if ranks are \"Public\""
5239
+ msgstr ""
5240
+ "Elige en que orden se debe mostrar los rangos en tu area de administrador "
5241
+ "y/o en el frente si los rangos son \"Público\""
 
5242
 
5243
+ #: ../addons/ranks/myCRED-addon-ranks.php:1375
5244
+ msgid "Rank Basis"
5245
+ msgstr "Base de Rango"
 
5246
 
5247
+ #: ../addons/ranks/myCRED-addon-ranks.php:1378
5248
+ msgid "Users are ranked according to their current balance."
5249
+ msgstr "Los usuarios se clasifican según su saldo actual."
 
5250
 
5251
+ #: ../addons/ranks/myCRED-addon-ranks.php:1381
 
5252
  msgid ""
5253
+ "Users are ranked according to the total amount of %_plural% they have "
5254
+ "accumulated."
5255
  msgstr ""
5256
+ "Los usuarios se clasifican según la cantidad total de %_plural% que han "
5257
+ "acumulado."
 
 
 
 
 
5258
 
5259
+ #: ../addons/ranks/myCRED-addon-ranks.php:1385 ../addons/ranks/myCRED-addon-ranks.
5260
+ #: php:1390
5261
+ msgid "Calculate Totals"
5262
+ msgstr "Calcular Totales"
5263
 
5264
+ #: ../addons/ranks/myCRED-addon-ranks.php:1388
5265
+ msgid ""
5266
+ "Once a users total has been calculated, they will be assigned to their "
5267
+ "appropriate roles. For this reason, it is highly recommended that you first "
5268
+ "setup your ranks!"
5269
+ msgstr ""
5270
+ "Una vez que la suma del usuario haya sido calculado, sus roles "
5271
+ "corespondientes seran asignados. ¡Por esta razón, se recomienda altamente "
5272
+ "que primero configures los rangos!"
5273
 
5274
+ #: ../addons/ranks/myCRED-addon-ranks.php:1389
 
5275
  msgid ""
5276
+ "Depending on your log size and number of users this process may take a while."
5277
+ " Please do not leave, click \"Update Settings\" or re-fresh this page until "
5278
+ "this is completed!"
5279
  msgstr ""
5280
+ "Segun el tamaño de registro y los numeros de usuarios este proceso puede "
5281
+ "llevar un rato. ¡Por favor no abandone esta pagina, haga click sobre "
5282
+ "\"Actualizar Configuraciones\" o refrescar la pagina hasta que se haya "
5283
+ "completado!"
5284
 
5285
+ #: ../addons/ranks/myCRED-addon-ranks.php:1407
5286
+ msgid "Include in Profile Header."
5287
+ msgstr "Incluir en Encabezado del Perfil"
 
5288
 
5289
+ #: ../addons/ranks/myCRED-addon-ranks.php:1409
5290
+ msgid "Include under the \"Profile\" tab and Profile Header."
5291
+ msgstr "Incluir bajo la pestanã \"Perfil\" y Encabezado de Perfil."
 
 
5292
 
5293
+ #: ../addons/ranks/myCRED-addon-ranks.php:1413
5294
+ msgid "Rank in BuddyPress"
5295
+ msgstr "Rango en BuddyPress"
 
5296
 
5297
+ #: ../addons/ranks/myCRED-addon-ranks.php:1453 ../addons/badges/myCRED-addon-
5298
+ #: badges.php:1002
5299
+ msgid "Include in Profile"
5300
+ msgstr "Incluir en el Perfil"
5301
 
5302
+ #: ../addons/ranks/myCRED-addon-ranks.php:1537
5303
+ msgid "Script Communication Error"
5304
+ msgstr "Error del Script de Comunicación"
5305
 
5306
+ #: ../addons/ranks/myCRED-addon-ranks.php:1609
5307
+ msgid "No. of ranks"
5308
+ msgstr "Numero de Rangos"
5309
 
5310
+ #: ../addons/ranks/myCRED-addon-ranks.php:1614
5311
+ msgid "Remove All Ranks"
5312
+ msgstr "Quitar todos los Rangos"
5313
 
5314
+ #: ../addons/ranks/myCRED-addon-ranks.php:1614
5315
+ msgid "Assign Ranks to Users"
5316
+ msgstr "Asignar Rango a los Usuarios"
 
5317
 
5318
+ #: ../addons/ranks/includes/mycred-rank-functions.php:257
5319
+ msgid "mycred_get_users_rank() : Missing required user id"
5320
+ msgstr "mycred_get_users_rank() : Falta el requisito id del usuario"
5321
 
5322
+ #: ../addons/ranks/includes/mycred-rank-functions.php:270
5323
+ msgid "no rank"
5324
+ msgstr "ningun rango"
5325
 
5326
+ #: ../addons/ranks/includes/mycred-rank-shortcodes.php:115 ..
5327
+ #: addons/ranks/includes/mycred-rank-shortcodes.php:210
5328
+ msgid "No users found with this rank"
5329
+ msgstr "Ningun usuario encontrado con este rango"
 
 
 
 
 
5330
 
5331
+ #: ../addons/ranks/includes/mycred-rank-shortcodes.php:122
5332
+ msgid "Rank ID is required!"
5333
+ msgstr "¡ID de Rango obligatorio!"
5334
 
5335
+ #: ../addons/notifications/myCRED-addon-notifications.php:193
5336
+ msgid "Notifications"
5337
+ msgstr "Notificaciones"
 
 
 
 
5338
 
5339
+ #: ../addons/notifications/myCRED-addon-notifications.php:195
5340
+ msgid "Styling"
5341
+ msgstr "Diseño/Estilo"
5342
 
5343
+ #: ../addons/notifications/myCRED-addon-notifications.php:198
5344
+ msgid "Use the included CSS Styling for notifications."
5345
+ msgstr "Utilice el Estilo CSS incluido para notificaciones."
5346
 
5347
+ #: ../addons/notifications/myCRED-addon-notifications.php:205
5348
+ #, php-format
5349
+ msgid "Use %entry% to show the log entry in the notice and %amount% for the amount."
5350
+ msgstr ""
5351
+ "Utiliza %entry% para mostrar la entrada de registro en el aviso y %amount% "
5352
+ "para la cantidad."
5353
 
5354
+ #: ../addons/notifications/myCRED-addon-notifications.php:208
5355
+ msgid "Transient Lifespan"
5356
+ msgstr "Duración de Transitorio"
5357
 
5358
+ #: ../addons/notifications/myCRED-addon-notifications.php:212
5359
  msgid ""
5360
+ "The number of days a users notification is saved before being automatically "
5361
+ "deleted."
5362
  msgstr ""
5363
+ "Cuantos dias una notificación del usuario se guarda antes de automáticamente "
5364
+ "borrarse."
5365
 
5366
+ #: ../addons/notifications/myCRED-addon-notifications.php:215
5367
+ msgid "Duration"
5368
+ msgstr "Duracion"
5369
 
5370
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:165 ../addons/email-
5371
+ #: notices/myCRED-addon-email-notices.php:171 ../addons/email-notices/myCRED-
5372
+ #: addon-email-notices.php:177 ../addons/email-notices/myCRED-addon-email-notices.
5373
+ #: php:283 ../addons/coupons/myCRED-addon-coupons.php:105
5374
+ msgid "Email Notices"
5375
+ msgstr "Avisos por Correo Electrónico"
5376
 
5377
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:166 ../addons/email-
5378
+ #: notices/myCRED-addon-email-notices.php:1270
5379
+ msgid "Email Notice"
5380
+ msgstr "Aviso por Correo Electrónico"
5381
 
5382
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:168
5383
+ msgid "Add New Notice"
5384
+ msgstr "Añade Nueva Notificación"
5385
 
5386
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:169
5387
+ msgid "Edit Notice"
5388
+ msgstr "Editar Aviso"
5389
 
5390
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:170
5391
+ msgid "New Notice"
5392
+ msgstr "Nuevo Aviso"
 
 
5393
 
5394
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:172
5395
+ msgid "View Notice"
5396
+ msgstr "Ver Aviso"
 
 
 
 
 
 
 
5397
 
5398
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:173
5399
+ msgid "Search Email Notices"
5400
+ msgstr "Búsqueda de Avisos por Correo Electrónico"
 
 
 
 
5401
 
5402
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:174
5403
+ msgid "No email notices found"
5404
+ msgstr "Ningun aviso por correo electrónico encontrado"
 
 
5405
 
5406
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:175
5407
+ msgid "No email notices found in Trash"
5408
+ msgstr "Ningun aviso por correo electrónico encontrado en la papelera"
5409
+
5410
+ #. can also be users as in plural, I've assumed it is user singular with a missing apostrophe
5411
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:201
5412
+ msgid "users balance changes"
5413
+ msgstr "el saldo de usuario cambia"
5414
+
5415
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:202
5416
+ msgid "user gains %_plural%"
5417
+ msgstr "usuario gana %_plural%"
5418
+
5419
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:203
5420
+ msgid "user lose %_plural%"
5421
+ msgstr "usuario pierde %_plural%"
5422
+
5423
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:204
5424
+ msgid "users balance reaches zero"
5425
+ msgstr "saldo de usuario llega a cero"
5426
+
5427
+ #. can also be users as in plural, I've assumed it is user singular with a missing apostrophe
5428
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:205
5429
+ msgid "users balance goes minus"
5430
+ msgstr "el saldo de usuario cae a negativo"
5431
+
5432
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:219
5433
+ msgid "Sell Content Add-on"
5434
+ msgstr "Extensión para Vender Contenido"
5435
+
5436
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:220
5437
+ msgid "user buys content"
5438
+ msgstr "usuario compra contenido"
5439
+
5440
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:221
5441
+ msgid "authors content gets sold"
5442
+ msgstr "el contenido del autor sera vendido"
5443
+
5444
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:228
5445
+ msgid "buyCREDs Add-on"
5446
+ msgstr "Extensión de compraCREDs"
5447
+
5448
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:229
5449
+ msgid "user buys %_plural%"
5450
+ msgstr "usuario compra %_plural%"
5451
+
5452
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:236
5453
+ msgid "Transfer Add-on"
5454
+ msgstr "Extensión de Transferencias"
5455
+
5456
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:237
5457
+ msgid "user sends %_plural%"
5458
+ msgstr "usuario manda %_plural%"
5459
+
5460
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:238
5461
+ msgid "user receives %_plural%"
5462
+ msgstr "usuario recibe %_plural%"
5463
+
5464
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:245
5465
+ msgid "Ranks Add-on"
5466
+ msgstr "Extensión de Rangos"
5467
+
5468
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:246
5469
+ msgid "user is demoted"
5470
+ msgstr "se ha degrado al usuario"
5471
+
5472
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:247
5473
+ msgid "user is promoted"
5474
+ msgstr "se ha promovido al usuario"
5475
+
5476
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:285
5477
  msgid ""
5478
+ "Settings that apply to all email notices and can not be overridden for "
5479
+ "individual emails."
 
5480
  msgstr ""
5481
+ "Ajustes que se aplica a todos los correos electrónicos y que no seran "
5482
+ "anulados para correos electronicos especificos."
 
 
5483
 
5484
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:286
5485
+ msgid "Email Format"
5486
+ msgstr "Formato de Correo Electrónico"
5487
 
5488
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:290
5489
+ msgid "Plain text emails only."
5490
+ msgstr "Correo electrónico usando texto sin formato."
5491
+
5492
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:294
5493
+ msgid "HTML or Plain text emails."
5494
+ msgstr "Correo electrónico usando HTML o texto sin formato."
5495
+
5496
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:297
5497
+ msgid "Filters"
5498
+ msgstr "Filtros"
5499
+
5500
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:301
5501
  msgid ""
5502
+ "Allow WordPress and Third Party Plugins to filter the email subject before "
5503
+ "an email is sent."
5504
  msgstr ""
5505
+ "Permite a Wordpress y a los Plugins de terceros a filtrar el asunto del "
5506
+ "correo electrónico antes de enviarlo."
5507
 
5508
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:305
5509
  msgid ""
5510
+ "Allow WordPress and Third Party Plugins to filter the email content before "
5511
+ "an email is sent."
 
5512
  msgstr ""
5513
+ "Permite a Wordpress y a los Plugins de terceros a filtrar el contenido del "
5514
+ "correo electrónico antes de enviarlo."
5515
+
5516
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:310 ../addons/email-
5517
+ #: notices/myCRED-addon-email-notices.php:316
5518
+ msgid "Email Schedule"
5519
+ msgstr "Itinerario de Emails"
5520
+
5521
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:312
5522
+ msgid "WordPress Cron is disabled. Emails will be sent immediately."
5523
+ msgstr "WordPress Cron esta desactivado. Los emails seran mandados inmediatamente."
5524
+
5525
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:320
5526
+ msgid "Send emails immediately"
5527
+ msgstr "Mandar emails inmediatamente"
5528
+
5529
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:324
5530
+ msgid "Send emails once an hour"
5531
+ msgstr "Mandar emails una vez a la hora"
5532
+
5533
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:328
5534
+ msgid "Send emails once a day"
5535
+ msgstr "Mandar emails una vez al dia"
5536
+
5537
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:331
5538
+ msgid "Subscriptions"
5539
+ msgstr "Suscripciones"
5540
+
5541
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:333
5542
+ #, php-format
5543
+ msgid ""
5544
+ "Use the %s shortcode to allow users to subscribe / unsubscribe to email "
5545
+ "updates."
5546
+ msgstr ""
5547
+ "Utilize el %s codigo corto para permitir que los usuarios suscriben o darsen "
5548
+ "de baja a informes vía correo electrónico."
5549
 
5550
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:338
5551
+ msgid "SMTP Override"
5552
+ msgstr "Invalidar SMTP"
5553
+
5554
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:342
5555
  msgid ""
5556
+ "SMTP Debug. Enable if you are experiencing issues with wp_mail() or if you "
5557
+ "use a SMTP plugin for emails."
5558
  msgstr ""
5559
+ "Depurar SMTP. Habilitar si hay erores con wp_mail() o si utiliza un plugin "
5560
+ "SMTP para email."
5561
 
5562
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:345
5563
  msgid ""
5564
+ "Default email settings. These settings can be individually overridden when "
5565
+ "editing emails."
5566
  msgstr ""
5567
+ "Configuraciones predeterminadas para correos electrónicos. Estos ajustes "
5568
+ "pueden ser anulado individualmente cuando se edita correos electrónicos."
 
5569
 
5570
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:346 ../addons/email-
5571
+ #: notices/myCRED-addon-email-notices.php:900
5572
+ msgid "Email Settings"
5573
+ msgstr "Configuraciones de Correo Electrónico"
5574
 
5575
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:349 ../addons/email-
5576
+ #: notices/myCRED-addon-email-notices.php:1053
5577
+ msgid "Senders Name:"
5578
+ msgstr "Nombre del Remitente"
5579
 
5580
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:353 ../addons/email-
5581
+ #: notices/myCRED-addon-email-notices.php:1055
5582
+ msgid "Senders Email:"
5583
+ msgstr "Correo Electrónico del Remitente:"
5584
 
5585
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:357
5586
+ msgid "Reply-To:"
5587
+ msgstr "Responder-A:"
5588
 
5589
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:361
5590
+ msgid "Default Email Content"
5591
+ msgstr "Contenido de Correo Electrónico Predefinido"
 
 
5592
 
5593
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:365
5594
+ msgid "Default email content."
5595
+ msgstr "Contenido de correo electrónico predefinido."
5596
 
5597
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:368
5598
+ msgid "Default Email Styling"
5599
+ msgstr "Estilo de Correo Electrónico Predefinido"
 
5600
 
5601
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:372
5602
+ msgid "Ignored if HTML is not allowed in emails."
5603
+ msgstr "Sera ignorado si no se permite HTML en los correos electrónicos."
5604
 
5605
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:809 ../addons/email-
5606
+ #: notices/myCRED-addon-email-notices.php:949
5607
+ msgid "Email Subject"
5608
+ msgstr "Asunto del Correo Electrónico"
5609
 
5610
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:810 ..
5611
+ #: addons/badges/myCRED-addon-badges.php:1165
5612
+ msgid "Status"
5613
+ msgstr "Estatus"
5614
 
5615
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:835
5616
+ msgid "Not Active"
5617
+ msgstr "No esta Activo"
5618
 
5619
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:838
5620
+ #, php-format
5621
+ msgid "Scheduled:<br /><strong>%1$s</strong>"
5622
+ msgstr "Programada:<br /><strong>%1$s</strong>"
5623
 
5624
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:843
5625
+ msgid "Active"
5626
+ msgstr "Activo"
5627
 
5628
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:845
5629
+ #, php-format
5630
+ msgid "Active - Last run:<br /><strong>%1$s</strong>"
5631
+ msgstr "Activo - Ultima ejecución:<br /><strong>%1$s</strong>"
5632
 
5633
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:855
5634
+ msgid "Email is sent when"
5635
+ msgstr "el Correo Electrónico se envia cuando"
5636
 
5637
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:857
5638
+ msgid "Missing instance for this notice!"
5639
+ msgstr "¡Falta una instancia para este aviso!"
5640
 
5641
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:866 ../addons/email-
5642
+ #: notices/myCRED-addon-email-notices.php:868 ../addons/email-notices/myCRED-
5643
+ #: addon-email-notices.php:870
5644
+ msgid "Sent To"
5645
+ msgstr "Enviado A:"
5646
 
5647
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:868 ../addons/email-
5648
+ #: notices/myCRED-addon-email-notices.php:1020
5649
+ msgid "Administrator"
5650
+ msgstr "Administrador"
5651
 
5652
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:870
5653
+ msgid "Both Administrator and User"
5654
+ msgstr "Tanto Administrador como Usuario"
5655
 
5656
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:909
5657
+ msgid "Available Template Tags"
5658
+ msgstr "Etiquetas (tags) de Plantilla Disponibles"
5659
 
5660
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:920
5661
+ msgid "Email Header"
5662
+ msgstr "Encabezado del Correo Electrónico"
5663
 
5664
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:986
5665
+ msgid "Send this email notice when..."
5666
+ msgstr "Envia este aviso por correo electrónico cuando..."
 
5667
 
5668
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:1017
5669
+ msgid "Recipient:"
5670
+ msgstr "Destinatario:"
 
5671
 
5672
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:1021
5673
+ msgid "Both"
5674
+ msgstr "Ambos"
5675
 
5676
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:1057
5677
+ msgid "Reply-To Email:"
5678
+ msgstr "Responder-A Correo Electrónico:"
5679
 
5680
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:1063
5681
+ msgid "Save"
5682
+ msgstr "Guardar"
5683
 
5684
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:1075
5685
+ msgid "CSS Styling"
5686
+ msgstr "Estilo CSS"
5687
 
5688
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:1091
5689
+ msgid "Site Related"
5690
+ msgstr "Relacionado al Sitio"
 
5691
 
5692
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:1092
5693
+ msgid "Your websites title"
5694
+ msgstr "Titulo de tu pagina web"
5695
 
5696
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:1093
5697
+ msgid "Your websites address"
5698
+ msgstr "Dirección de tu pagina web"
5699
 
5700
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:1094
5701
+ msgid "Your websites tagline (description)"
5702
+ msgstr "La descripción de tu sitio web (lema o eslogan)"
5703
 
5704
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:1095
5705
+ msgid "Your websites admin email"
5706
+ msgstr "El correo electrónico de admin para tu pagina web"
5707
 
5708
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:1096
5709
+ msgid "Total number of blog members"
5710
+ msgstr "Número total de miembros del blog"
5711
+
5712
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:1178 ../addons/email-
5713
+ #: notices/myCRED-addon-email-notices.php:1181 ../addons/email-notices/myCRED-
5714
+ #: addon-email-notices.php:1187
5715
+ msgid "Email Notice Updated."
5716
+ msgstr "Aviso atraves de correo electrónico Actualizado."
5717
+
5718
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:1183
5719
+ msgid "Email Notice Activated"
5720
+ msgstr "Notificación atraves de Correo Electrónico Activado"
5721
+
5722
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:1184
5723
+ msgid "Email Notice Saved"
5724
+ msgstr "Aviso por Correo Electrónico Guardado"
5725
+
5726
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:1203
5727
+ msgid ""
5728
+ "Once a notice is \"published\" it becomes active! Select \"Save Draft\" if you "
5729
+ "are not yet ready to use this email notice!"
5730
+ msgstr ""
5731
+ "¡Una vez que un aviso sea \"publicado\" se activa! ¡Elige \"Guardar Borrador\" "
5732
+ "si aun no estás listo para utilizar este aviso por email!"
5733
 
5734
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:1205
5735
  #, php-format
5736
+ msgid "This notice will become active on:<br /><strong>%1$s</strong>"
5737
+ msgstr "Este aviso se activará en:<br /><strong>%1$s</strong>"
5738
 
5739
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:1207
5740
+ msgid "This email notice is active."
5741
+ msgstr "Esta notificación de correo electrónico esta activada."
 
5742
 
5743
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:1218
5744
+ msgid "Settings saved."
5745
+ msgstr "Configuraciones Guardadas"
 
5746
 
5747
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:1269
5748
+ msgid "Unsubscribe"
5749
+ msgstr "Cancelar la Suscripción"
 
5750
 
5751
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:1290
5752
+ msgid "There are no email notifications yet."
5753
+ msgstr "Todavía no hay notificaciones de email."
 
5754
 
5755
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:1296 ..
5756
+ #: addons/badges/myCRED-addon-badges.php:1182
5757
+ msgid "Save Changes"
5758
+ msgstr "Guardar Cambios"
 
 
 
5759
 
5760
+ #: ../addons/badges/myCRED-addon-badges.php:48 ../addons/badges/myCRED-addon-
5761
+ #: badges.php:49 ../addons/badges/myCRED-addon-badges.php:50 ..
5762
+ #: addons/badges/myCRED-addon-badges.php:144 ../addons/badges/myCRED-addon-
5763
+ #: badges.php:145 ../addons/badges/myCRED-addon-badges.php:383 ..
5764
+ #: addons/badges/myCRED-addon-badges.php:389 ../addons/badges/myCRED-addon-
5765
+ #: badges.php:395
5766
+ msgid "Badges"
5767
+ msgstr "Insignias"
5768
 
5769
+ #: ../addons/badges/myCRED-addon-badges.php:260
5770
  #, php-format
5771
+ msgid "%d Users earned this badge."
5772
+ msgstr "%d Usuarios que han ganado esta insignia."
 
 
 
 
5773
 
5774
+ #: ../addons/badges/myCRED-addon-badges.php:264
5775
+ msgid "No users has yet earned this badge."
5776
+ msgstr "Ningun usuario ha ganado esta insignia."
 
5777
 
5778
+ #: ../addons/badges/myCRED-addon-badges.php:289
5779
  #, php-format
5780
+ msgid "%s connections where removed."
5781
+ msgstr "%s conexiones han sido quitados."
 
 
5782
 
5783
+ #: ../addons/badges/myCRED-addon-badges.php:384
5784
+ msgid "Badge"
5785
+ msgstr "Insignia"
 
5786
 
5787
+ #: ../addons/badges/myCRED-addon-badges.php:386
5788
+ msgid "Add New Badge"
5789
+ msgstr "Añadir Nueva Insignia"
 
5790
 
5791
+ #: ../addons/badges/myCRED-addon-badges.php:387
5792
+ msgid "Edit Badge"
5793
+ msgstr "Editar Insignia"
 
5794
 
5795
+ #: ../addons/badges/myCRED-addon-badges.php:388
5796
+ msgid "New Badge"
5797
+ msgstr "Nueva Insignia"
 
5798
 
5799
+ #: ../addons/badges/myCRED-addon-badges.php:390
5800
+ msgid "View Badge"
5801
+ msgstr "Ver Insignia"
 
 
 
 
5802
 
5803
+ #: ../addons/badges/myCRED-addon-badges.php:391
5804
+ msgid "Search Badge"
5805
+ msgstr "Buscar Insignia"
 
5806
 
5807
+ #: ../addons/badges/myCRED-addon-badges.php:392
5808
+ msgid "No badges found"
5809
+ msgstr "Ninguna Insignia Encontrada"
 
 
 
 
5810
 
5811
+ #: ../addons/badges/myCRED-addon-badges.php:393
5812
+ msgid "No badges found in Trash"
5813
+ msgstr "Ninguna Insignia Encontrada en la Papelera"
 
5814
 
5815
+ #: ../addons/badges/myCRED-addon-badges.php:439 ../addons/badges/myCRED-addon-
5816
+ #: badges.php:541
5817
+ msgid "Badge Name"
5818
+ msgstr "Nombre de Insignia"
 
5819
 
5820
+ #: ../addons/badges/myCRED-addon-badges.php:440
5821
+ msgid "Badge Images"
5822
+ msgstr "Imagen de la Insignia"
 
5823
 
5824
+ #: ../addons/badges/myCRED-addon-badges.php:441
5825
+ msgid "Requirements"
5826
+ msgstr "Requisitos"
 
 
 
 
5827
 
5828
+ #: ../addons/badges/myCRED-addon-badges.php:481
5829
+ msgid "A user must have gained or lost:"
5830
+ msgstr "Un usuario deberia ganado o perdido:"
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
5831
 
5832
+ #: ../addons/badges/myCRED-addon-badges.php:517 ../addons/badges/myCRED-addon-
5833
+ #: badges.php:520 ../addons/badges/myCRED-addon-badges.php:524 ..
5834
+ #: addons/badges/myCRED-addon-badges.php:525 ../addons/badges/myCRED-addon-
5835
+ #: badges.php:526
5836
+ msgid "Badge Updated."
5837
+ msgstr "Insignia Actualizada"
5838
 
5839
+ #: ../addons/badges/myCRED-addon-badges.php:522
5840
+ msgid "Badge Enabled"
5841
+ msgstr "Insignia Habilitado"
 
 
5842
 
5843
+ #: ../addons/badges/myCRED-addon-badges.php:523
5844
+ msgid "Badge Saved"
5845
+ msgstr "Insignia Guardada"
 
 
 
 
5846
 
5847
+ #: ../addons/badges/myCRED-addon-badges.php:582
5848
+ msgid "Assign Badge"
5849
+ msgstr "Asignar Insignia"
 
5850
 
5851
+ #: ../addons/badges/myCRED-addon-badges.php:583
5852
+ msgid "Remove Connections"
5853
+ msgstr "Quitar Conexiones"
 
5854
 
5855
+ #: ../addons/badges/myCRED-addon-badges.php:638
5856
+ msgid "Time(s)"
5857
+ msgstr "Tiempo(s)"
 
5858
 
5859
+ #: ../addons/badges/myCRED-addon-badges.php:639
5860
+ msgid "In total"
5861
+ msgstr "En Total"
 
5862
 
5863
+ #: ../addons/badges/myCRED-addon-badges.php:671 ../addons/badges/myCRED-addon-
5864
+ #: badges.php:771 ../addons/badges/myCRED-addon-badges.php:831 ..
5865
+ #: addons/badges/myCRED-addon-badges.php:846
5866
+ msgid "Badge Image"
5867
+ msgstr "Imagen de la Insignia"
5868
 
5869
+ #: ../addons/badges/myCRED-addon-badges.php:672 ../addons/badges/myCRED-addon-
5870
+ #: badges.php:672
5871
+ msgid "Set badge image"
5872
+ msgstr "Configurar la imagen para la insignia"
 
 
 
5873
 
5874
+ #: ../addons/badges/myCRED-addon-badges.php:682
5875
+ msgid "Default Image"
5876
+ msgstr "Imagen Predefinida"
5877
+
5878
+ #: ../addons/badges/myCRED-addon-badges.php:683 ../addons/badges/myCRED-addon-
5879
+ #: badges.php:741 ../addons/badges/myCRED-addon-badges.php:772 ..
5880
+ #: addons/badges/myCRED-addon-badges.php:831
5881
+ msgid "image url"
5882
+ msgstr "enlace de la imagen"
5883
 
5884
+ #: ../addons/badges/myCRED-addon-badges.php:740
5885
+ msgid "Main Image"
5886
+ msgstr "Imagen Principal"
5887
 
5888
+ #: ../addons/badges/myCRED-addon-badges.php:848
5889
+ msgid "Use as Badge"
5890
+ msgstr "Utiliza como Insignia"
5891
 
5892
+ #: ../addons/badges/myCRED-addon-badges.php:1003
5893
+ msgid "Include in Forum Replies"
5894
+ msgstr "Incluir en Respuesta de Fórum"
5895
 
5896
+ #: ../addons/badges/myCRED-addon-badges.php:1004
5897
+ msgid "Include in Profile and Forum Replies"
5898
+ msgstr "Incluir en Perfil y Respuestas de Fórum"
 
 
 
 
 
5899
 
5900
+ #: ../addons/badges/includes/mycred-badge-functions.php:73
5901
+ #, php-format
5902
+ msgctxt "\"x points\" for \"reference\" in total"
5903
+ msgid "%s for %s in total"
5904
+ msgstr "%s para %s en total"
5905
 
5906
+ #: ../addons/coupons/myCRED-addon-coupons.php:94 ..
5907
+ #: addons/coupons/includes/mycred-coupon-shortcodes.php:18
5908
+ msgid "Coupon"
5909
+ msgstr "Cupón"
 
5910
 
5911
+ #: ../addons/coupons/myCRED-addon-coupons.php:95
5912
+ msgid "Create New"
5913
+ msgstr "Crear Nuevo"
 
 
 
 
5914
 
5915
+ #: ../addons/coupons/myCRED-addon-coupons.php:96
5916
+ msgid "Create New Coupon"
5917
+ msgstr "Crea Nueva Cupón"
5918
 
5919
+ #: ../addons/coupons/myCRED-addon-coupons.php:97
5920
+ msgid "Edit Coupon"
5921
+ msgstr "Editar Cupón"
5922
 
5923
+ #: ../addons/coupons/myCRED-addon-coupons.php:98
5924
+ msgid "New Coupon"
5925
+ msgstr "Nuevo Cupón"
 
 
 
 
5926
 
5927
+ #: ../addons/coupons/myCRED-addon-coupons.php:101
5928
+ msgid "Search coupons"
5929
+ msgstr "Busqueda de Cupones"
 
5930
 
5931
+ #: ../addons/coupons/myCRED-addon-coupons.php:102
5932
+ msgid "No coupons found"
5933
+ msgstr "Ningun Cupón Encontrado"
5934
 
5935
+ #: ../addons/coupons/myCRED-addon-coupons.php:103
5936
+ msgid "No coupons found in Trash"
5937
+ msgstr "Ningun Cupón Encontrado en la Papelera"
 
 
 
 
 
 
 
 
5938
 
5939
+ #: ../addons/coupons/myCRED-addon-coupons.php:129 ../addons/coupons/myCRED-addon-
5940
+ #: coupons.php:130 ../addons/coupons/myCRED-addon-coupons.php:131 ..
5941
+ #: addons/coupons/myCRED-addon-coupons.php:132
5942
+ msgid "Coupon updated."
5943
+ msgstr "Cupón Actualizado"
5944
 
5945
+ #: ../addons/coupons/myCRED-addon-coupons.php:134
5946
+ msgid "Coupon published."
5947
+ msgstr "Cupón Publicado."
5948
 
5949
+ #: ../addons/coupons/myCRED-addon-coupons.php:135
5950
+ msgid "Coupon saved."
5951
+ msgstr "Cupón Guardado"
5952
 
5953
+ #: ../addons/coupons/myCRED-addon-coupons.php:138
5954
+ msgid "Draft Coupon saved."
5955
+ msgstr "Cupón Borrador Guardado."
 
5956
 
5957
+ #: ../addons/coupons/myCRED-addon-coupons.php:155
5958
+ msgid "Unique Coupon Code"
5959
+ msgstr "Unico Código de Cupón"
5960
 
5961
+ #: ../addons/coupons/myCRED-addon-coupons.php:172
5962
+ msgid "Coupon Code"
5963
+ msgstr "Código de Cupón"
5964
 
5965
+ #: ../addons/coupons/myCRED-addon-coupons.php:173 ../addons/coupons/myCRED-addon-
5966
+ #: coupons.php:381
5967
+ msgid "Value"
5968
+ msgstr "Valor"
5969
 
5970
+ #: ../addons/coupons/myCRED-addon-coupons.php:176
5971
+ msgid "Expires"
5972
+ msgstr "Expire"
5973
 
5974
+ #: ../addons/coupons/myCRED-addon-coupons.php:210 ../addons/coupons/myCRED-addon-
5975
+ #: coupons.php:505
5976
+ msgid "not yet used"
5977
+ msgstr "todavia no utilizado"
5978
 
5979
+ #: ../addons/coupons/myCRED-addon-coupons.php:232
5980
+ msgid "Per User"
5981
+ msgstr "Por Usuario"
 
 
 
 
5982
 
5983
+ #: ../addons/coupons/myCRED-addon-coupons.php:241
5984
+ msgid "Never"
5985
+ msgstr "Nunca"
 
 
 
 
 
 
5986
 
5987
+ #: ../addons/coupons/myCRED-addon-coupons.php:247
5988
+ msgid "Expired"
5989
+ msgstr "Caducado"
5990
 
5991
+ #: ../addons/coupons/myCRED-addon-coupons.php:251
5992
+ #, php-format
5993
+ msgid "In %s time"
5994
+ msgstr "En %s tiempo"
5995
 
5996
+ #: ../addons/coupons/myCRED-addon-coupons.php:311
5997
+ msgid "Coupon Setup"
5998
+ msgstr "Configuración de Cupón"
5999
 
6000
+ #: ../addons/coupons/myCRED-addon-coupons.php:320
6001
+ msgid "Coupon Limits"
6002
+ msgstr "Limites de Cupón"
6003
 
6004
+ #: ../addons/coupons/myCRED-addon-coupons.php:329
6005
+ msgid "Coupon Requirements"
6006
+ msgstr "Requisitos de Cupón"
6007
 
6008
+ #: ../addons/coupons/myCRED-addon-coupons.php:339
6009
+ msgid "Usage"
6010
+ msgstr "Utilización"
 
6011
 
6012
+ #: ../addons/coupons/myCRED-addon-coupons.php:384
6013
+ #, php-format
6014
+ msgid "The amount of %plural% this coupon is worth."
6015
+ msgstr "La cantidad de %plural% que vale este cupón."
6016
 
6017
+ #: ../addons/coupons/myCRED-addon-coupons.php:393
6018
+ msgid "Select the point type that this coupon is applied."
6019
+ msgstr "Elige el clase de puntos al cual este cupón se aplica."
6020
 
6021
+ #: ../addons/coupons/myCRED-addon-coupons.php:403
6022
+ msgid "Expire"
6023
+ msgstr "Caducar"
6024
 
6025
+ #: ../addons/coupons/myCRED-addon-coupons.php:406
6026
+ msgid "Optional date when this coupon expires. Expired coupons will be trashed."
6027
+ msgstr ""
6028
+ "La fecha opcional cuando este cupón caduca. Cupones caducados seran "
6029
+ "destrozado."
6030
 
6031
+ #: ../addons/coupons/myCRED-addon-coupons.php:439
6032
+ msgid "Global Maximum"
6033
+ msgstr "Máximo Global"
6034
 
6035
+ #: ../addons/coupons/myCRED-addon-coupons.php:442
6036
+ msgid ""
6037
+ "The maximum number of times this coupon can be used. Note that the coupon "
6038
+ "will be automatically trashed once this maximum is reached!"
6039
+ msgstr ""
6040
+ "El número máximo de veces que este cupón se puede utilizar. Ten en cuenta "
6041
+ "que el cupón será colocado en la papelera de forma automática una vez que se "
6042
+ "alcanza este máximo!"
6043
 
6044
+ #. not clear if this is referring to the maximum number of users or to the maximum "points" a user can have or accrue?
6045
+ #: ../addons/coupons/myCRED-addon-coupons.php:446
6046
+ msgid "User Maximum"
6047
+ msgstr "Máximo Usuario"
6048
 
6049
+ #: ../addons/coupons/myCRED-addon-coupons.php:449
6050
+ msgid "The maximum number of times this coupon can be used by a user."
6051
+ msgstr "El máximo numero de veces que se puede utilizadar este cupón por un usuario."
6052
 
6053
+ #: ../addons/coupons/myCRED-addon-coupons.php:482
6054
+ msgid ""
6055
+ "Optional minimum balance a user must have in order to use this coupon. Use "
6056
+ "zero to disable."
6057
  msgstr ""
6058
+ "Mínimo saldo opcional que el usuario debe tener para utilizar este cupón. "
6059
+ "Utilice cero para inhabilitar."
6060
 
6061
+ #: ../addons/coupons/myCRED-addon-coupons.php:485
6062
+ msgid "Maximum Balance"
6063
+ msgstr "Saldo Máximo"
6064
 
6065
+ #: ../addons/coupons/myCRED-addon-coupons.php:487
6066
+ msgid ""
6067
+ "Optional maximum balance a user can have in order to use this coupon. Use "
6068
+ "zero to disable."
6069
+ msgstr ""
6070
+ "Saldo máximo opcional que un usuario puede tener para usar este cupón. Ponga "
6071
+ "cero para desactivar."
6072
 
6073
+ #: ../addons/coupons/myCRED-addon-coupons.php:561
6074
+ #, php-format
6075
  msgid ""
6076
+ "Log entry for successful coupon redemption. Use %coupon% to show the coupon "
6077
+ "code."
6078
  msgstr ""
6079
+ "Entrada del registro al exitoso canje del cupón. Utilice %coupon% para "
6080
+ "mostrar el código del cupón."
6081
+
6082
+ #: ../addons/coupons/myCRED-addon-coupons.php:564
6083
+ msgid "Invalid Coupon Message"
6084
+ msgstr "Mensaje Cupón Invalido"
6085
+
6086
+ #: ../addons/coupons/myCRED-addon-coupons.php:568
6087
+ msgid "Message to show when users try to use a coupon that does not exists."
6088
+ msgstr "Mostrar mensaje cuando los usuarios intenten usar un cupón que no existe."
6089
+
6090
+ #: ../addons/coupons/myCRED-addon-coupons.php:571
6091
+ msgid "Expired Coupon Message"
6092
+ msgstr "Mensaje de Cupón Caducado"
6093
 
6094
+ #: ../addons/coupons/myCRED-addon-coupons.php:575
6095
+ msgid "Message to show when users try to use that has expired."
6096
+ msgstr "Mostrar mensaje cuando los usuarios intenten usar lo que ha caducado."
6097
 
6098
+ #: ../addons/coupons/myCRED-addon-coupons.php:578
6099
+ msgid "User Limit Message"
6100
+ msgstr "Mensaje de Límite de Usuario"
6101
 
6102
+ #: ../addons/coupons/myCRED-addon-coupons.php:582
6103
+ msgid "Message to show when the user limit has been reached for the coupon."
6104
+ msgstr "Mostrar mensaje cuando el cupón alcanza su límite de usuarios."
6105
 
6106
+ #: ../addons/coupons/myCRED-addon-coupons.php:585
6107
+ msgid "Minimum Balance Message"
6108
+ msgstr "Mensaje de Saldo Mínimo"
6109
 
6110
+ #: ../addons/coupons/myCRED-addon-coupons.php:589
6111
  msgid ""
6112
+ "Message to show when a user does not meet the minimum balance requirement. "
6113
+ "(if used)"
6114
  msgstr ""
6115
+ "Mostrar mensaje cuando el usuario no cumple con el saldo mínimo requerido. "
6116
+ "(si se utiliza)"
6117
 
6118
+ #: ../addons/coupons/myCRED-addon-coupons.php:592
6119
+ msgid "Maximum Balance Message"
6120
+ msgstr "Mensaje Saldo Máximo"
6121
+
6122
+ #: ../addons/coupons/myCRED-addon-coupons.php:596
6123
+ msgid ""
6124
+ "Message to show when a user does not meet the maximum balance requirement. "
6125
+ "(if used)"
6126
  msgstr ""
6127
+ "Mostrar mensaje cuando un usuario no alcanza el saldo máximo requerido. (si "
6128
+ "se utiliza)"
6129
 
6130
+ #: ../addons/coupons/myCRED-addon-coupons.php:599
6131
+ msgid "Success Message"
6132
+ msgstr "Mensaje de éxito"
6133
 
6134
+ #: ../addons/coupons/myCRED-addon-coupons.php:603
6135
+ msgid "Message to show when a coupon was successfully deposited to a users account."
6136
+ msgstr "Monstrar mensaje cuando un cupón se deposita con éxito en una cuenta usuaria."
 
6137
 
6138
+ #: ../addons/coupons/includes/mycred-coupon-shortcodes.php:19
6139
+ msgid "Apply Coupon"
6140
+ msgstr "Aplica el Cupón"
6141
 
6142
+ #: ../addons/sell-content/myCRED-addon-sell-content.php:44 ../addons/buy-
6143
+ #: creds/myCRED-addon-buy-creds.php:1539
6144
+ msgid "Buy Now"
6145
+ msgstr "Compra Ahora"
6146
 
6147
+ #: ../addons/sell-content/myCRED-addon-sell-content.php:74
6148
+ msgid "Hours"
6149
+ msgstr "Horas"
6150
 
6151
+ #: ../addons/sell-content/myCRED-addon-sell-content.php:111
6152
+ msgid "Profit Share"
6153
+ msgstr "Reparto de Utilidades"
6154
 
6155
+ #: ../addons/sell-content/myCRED-addon-sell-content.php:119
6156
+ msgid "Save Profit Share"
6157
+ msgstr "Guardar Reparto de Utilidades"
 
6158
 
6159
+ #: ../addons/sell-content/myCRED-addon-sell-content.php:165
6160
+ msgid "Profit Share override saved"
6161
+ msgstr "Anulación de reparto de utilidades guardado"
6162
 
6163
+ #: ../addons/sell-content/myCRED-addon-sell-content.php:327
6164
+ msgid "You can not buy this content."
6165
+ msgstr "No puedes comprar este contenido."
 
6166
 
6167
+ #: ../addons/sell-content/myCRED-addon-sell-content.php:372
6168
+ msgid "Error. Try Again"
6169
+ msgstr "Error. Inténtelo de nuevo"
 
 
6170
 
6171
+ #: ../addons/sell-content/myCRED-addon-sell-content.php:394
6172
+ msgid "No Payout. Just charge."
6173
+ msgstr "No Desembolsar. Solo cobrar."
6174
 
6175
+ #: ../addons/sell-content/myCRED-addon-sell-content.php:395
6176
+ msgid "Pay Content Author."
6177
+ msgstr "Pagar al Autor del Contenido"
6178
 
6179
+ #: ../addons/sell-content/myCRED-addon-sell-content.php:403
6180
+ msgid "Post Types"
6181
+ msgstr "Post Types"
6182
 
6183
+ #: ../addons/sell-content/myCRED-addon-sell-content.php:407
6184
+ msgid "Comma separated list of post types that can be sold."
6185
+ msgstr "Lista separada por comas de post types que se puede vender."
6186
 
6187
+ #: ../addons/sell-content/myCRED-addon-sell-content.php:437
6188
+ msgid "Percentage to pay Author"
6189
+ msgstr "Porcentaje que pagar al Autor"
6190
 
6191
+ #: ../addons/sell-content/myCRED-addon-sell-content.php:439
6192
+ msgid ""
6193
+ "Percentage of the price to pay the author. Can not be zero and is ignored if "
6194
+ "authors are not paid."
6195
+ msgstr ""
6196
+ "Porcentaje del precio que pagar al autor. No puede ser cero y sera ignorado "
6197
+ "si no se les paga a los autores."
6198
 
6199
+ #. also, "por defecto" and "predeterminados"
6200
+ #: ../addons/sell-content/myCRED-addon-sell-content.php:447
6201
+ msgid "Defaults"
6202
+ msgstr "Predefinidos"
6203
 
6204
+ #: ../addons/sell-content/myCRED-addon-sell-content.php:455
6205
+ msgid "Allow authors to change price."
6206
+ msgstr "Permitir que los Autores cambien el precio."
 
6207
 
6208
+ #: ../addons/sell-content/myCRED-addon-sell-content.php:464
6209
+ msgid "Allow authors to change button label."
6210
+ msgstr "Permitir que los Autores cambien la etiqueta asignada al botón."
 
6211
 
6212
+ #: ../addons/sell-content/myCRED-addon-sell-content.php:468
6213
+ msgid "Purchases expire after"
6214
+ msgstr "Compras caducan despues de"
6215
 
6216
+ #: ../addons/sell-content/myCRED-addon-sell-content.php:470
6217
+ msgid "Use zero for permanent sales."
6218
+ msgstr "Usa cero para ventas permanentes."
6219
 
6220
+ #: ../addons/sell-content/myCRED-addon-sell-content.php:476
6221
+ msgid "For Visitors"
6222
+ msgstr "Para Visitantes"
6223
 
6224
+ #: ../addons/sell-content/myCRED-addon-sell-content.php:486
6225
+ #, php-format
6226
+ msgid ""
6227
+ "Do <strong>not</strong> use the %buy_button% in this template as a user must "
6228
+ "be logged in to buy content!"
6229
  msgstr ""
6230
+ "<strong>¡No utilice</strong> el %buy_button% en esta plantilla porque el "
6231
+ "usuario debe haber inciciado sesión para poder comprar contenidos!"
6232
 
6233
+ #: ../addons/sell-content/myCRED-addon-sell-content.php:491
6234
+ msgid "For Members"
6235
+ msgstr "Para Miembros"
6236
 
6237
+ #: ../addons/sell-content/myCRED-addon-sell-content.php:501 ../addons/sell-
6238
+ #: content/myCRED-addon-sell-content.php:516
6239
+ #, php-format
6240
+ msgid "Your template must contain the %buy_button% tag for purchases to work!"
6241
  msgstr ""
6242
+ "¡Tu plantilla debe contener la etiqueta %buy_button% para que se pueda "
6243
+ "realizar compras!"
6244
 
6245
+ #: ../addons/sell-content/myCRED-addon-sell-content.php:506
6246
+ msgid "For members that can not afford to buy"
6247
+ msgstr "Para los miembros que no tienen al alcance comprar"
 
6248
 
6249
+ #: ../addons/sell-content/myCRED-addon-sell-content.php:520
6250
+ msgid "Log template for Purchases"
6251
+ msgstr "Plantilla de registros para Compras"
 
 
6252
 
6253
+ #: ../addons/sell-content/myCRED-addon-sell-content.php:527
6254
+ msgid "Log template for Sales"
6255
+ msgstr "Plantilla de registros para Ventas"
 
6256
 
6257
+ #: ../addons/sell-content/myCRED-addon-sell-content.php:580
6258
  #, php-format
6259
+ msgid "%s Sell This"
6260
+ msgstr "%s Vende Esto"
6261
+
6262
+ #: ../addons/sell-content/myCRED-addon-sell-content.php:635
6263
+ #, php-format
6264
+ msgid "%s Sell Content needs to be setup before you can use this feature."
6265
  msgstr ""
6266
+ "%s Vender Contenidos necesita haberse configurado antes de poder utilizar "
6267
+ "esta característica técnica."
6268
 
6269
+ #: ../addons/sell-content/myCRED-addon-sell-content.php:638
6270
+ msgid "Setup add-on"
6271
+ msgstr "Configurar Extensión"
6272
+
6273
+ #: ../addons/sell-content/myCRED-addon-sell-content.php:638
6274
+ msgid "Lets do it"
6275
+ msgstr "Vamos a hacerlo."
6276
+
6277
+ #: ../addons/sell-content/myCRED-addon-sell-content.php:676
6278
  #, php-format
6279
+ msgid "Enable sale of this %s"
6280
+ msgstr "Habilitar la venta de esto %s"
6281
 
6282
+ #: ../addons/sell-content/myCRED-addon-sell-content.php:690
6283
+ msgid "Purchase expires after"
6284
+ msgstr "Compra caduca despues de"
6285
 
6286
+ #: ../addons/sell-content/myCRED-addon-sell-content.php:1016
6287
+ msgid "Thank you for your purchase!"
6288
+ msgstr "¡Gracias por su compra!"
6289
 
6290
+ #: ../addons/sell-content/myCRED-addon-sell-content.php:1104 ../addons/sell-
6291
+ #: content/myCRED-addon-sell-content.php:1190
6292
+ msgid "The following content is set for sale:"
6293
+ msgstr "El siguiente contenido esta listo para la venta:"
6294
 
6295
+ #: ../addons/sell-content/myCRED-addon-sell-content.php:1209 ../addons/buy-
6296
+ #: creds/myCRED-addon-buy-creds.php:1270
6297
+ msgid "No purchases found"
6298
+ msgstr "No se encontro ninguna compra"
6299
 
6300
+ #: ../addons/sell-content/myCRED-addon-sell-content.php:1253
6301
+ msgid "Purchased"
6302
+ msgstr "Comprado"
6303
 
6304
+ #: ../addons/buy-creds/myCRED-addon-buy-creds.php:56 ../addons/buy-creds/myCRED-
6305
+ #: addon-buy-creds.php:57 ../addons/buy-creds/myCRED-addon-buy-creds.php:58
6306
+ msgid "Payment Gateways"
6307
+ msgstr "Pasarela de Pago"
 
 
 
6308
 
6309
+ #: ../addons/buy-creds/myCRED-addon-buy-creds.php:273
6310
+ msgctxt "Post Type General Name"
6311
+ msgid "Pending Payments"
6312
+ msgstr "Pagos Pendientes"
6313
 
6314
+ #: ../addons/buy-creds/myCRED-addon-buy-creds.php:274
6315
+ msgctxt "Post Type Singular Name"
6316
+ msgid "Pending Payment"
6317
+ msgstr "Pago Pendiente"
6318
 
6319
+ #: ../addons/buy-creds/myCRED-addon-buy-creds.php:275 ../addons/buy-creds/myCRED-
6320
+ #: addon-buy-creds.php:277
6321
+ msgid "Pending Payments"
6322
+ msgstr "Pagos Pendientes"
 
6323
 
6324
+ #: ../addons/buy-creds/myCRED-addon-buy-creds.php:281
6325
+ msgid "Edit Pending Payment"
6326
+ msgstr "Editar Pago Pendiente"
6327
 
6328
+ #: ../addons/buy-creds/myCRED-addon-buy-creds.php:284 ../addons/buy-creds/myCRED-
6329
+ #: addon-buy-creds.php:1752
6330
+ msgid "No pending payments found"
6331
+ msgstr "Ningun pago pendiente encontrado"
 
6332
 
6333
+ #: ../addons/buy-creds/myCRED-addon-buy-creds.php:285
6334
+ msgid "Not found in Trash"
6335
+ msgstr "No ha sido encontrado en la Papelera"
6336
 
6337
+ #: ../addons/buy-creds/myCRED-addon-buy-creds.php:341 ../addons/buy-creds/myCRED-
6338
+ #: addon-buy-creds.php:1078 ../addons/buy-creds/myCRED-addon-buy-creds.php:1711
6339
+ msgid "Transaction ID"
6340
+ msgstr "Identificación de la Transacción"
6341
 
6342
+ #: ../addons/buy-creds/myCRED-addon-buy-creds.php:343 ../addons/buy-creds/myCRED-
6343
+ #: addon-buy-creds.php:1074
6344
+ msgid "Buyer"
6345
+ msgstr "Comprador"
6346
 
6347
+ #: ../addons/buy-creds/myCRED-addon-buy-creds.php:345 ../addons/buy-creds/myCRED-
6348
+ #: addon-buy-creds.php:1714 ../addons/buy-creds/abstracts/mycred-abstract-payment-
6349
+ #: gateway.php:594
6350
+ msgid "Cost"
6351
+ msgstr "Coste"
6352
 
6353
+ #: ../addons/buy-creds/myCRED-addon-buy-creds.php:347
6354
+ msgid "Type"
6355
+ msgstr "Clase"
6356
 
6357
+ #: ../addons/buy-creds/myCRED-addon-buy-creds.php:440
6358
+ msgid "Pay Out"
6359
+ msgstr "Desembolso"
6360
 
6361
+ #: ../addons/buy-creds/myCRED-addon-buy-creds.php:474
6362
+ msgid "buyCRED Purchase Log"
6363
+ msgstr "compraCRED Registro de Compras"
6364
 
6365
+ #: ../addons/buy-creds/myCRED-addon-buy-creds.php:475 ../addons/buy-creds/myCRED-
6366
+ #: addon-buy-creds.php:726 ../addons/buy-creds/myCRED-addon-buy-creds.php:922
6367
+ msgid "Purchase Log"
6368
+ msgstr "Registro de Compras"
6369
 
6370
+ #: ../addons/buy-creds/myCRED-addon-buy-creds.php:613
6371
+ msgid "Please login to purchase %_plural%"
6372
+ msgstr "Identifícate antes de comprar %_plural%"
6373
 
6374
+ #: ../addons/buy-creds/myCRED-addon-buy-creds.php:628
6375
+ #, php-format
6376
+ msgid "Gift purchase from %display_name%."
6377
+ msgstr "Regalo comprado de parte de %display_name%."
6378
 
6379
+ #: ../addons/buy-creds/myCRED-addon-buy-creds.php:647
6380
+ #, php-format
6381
+ msgid "Minimum amount of %plural% a user must purchase. Will default to 1."
6382
+ msgstr ""
6383
+ "La mínima cantidad de %plural% que el usuario debe comprar. Sera predefinido "
6384
+ "a 1."
6385
 
6386
+ #: ../addons/buy-creds/myCRED-addon-buy-creds.php:655
6387
+ msgid "Select the point types that users can buy. You must select at least one!"
 
 
6388
  msgstr ""
6389
+ "Elige el clase de punto que el usuario puede comprar. Debes eligir al menos "
6390
+ "uno!"
6391
 
6392
+ #: ../addons/buy-creds/myCRED-addon-buy-creds.php:666
6393
+ msgid "Login Template"
6394
+ msgstr "Plantilla de Ingreso"
6395
 
6396
+ #: ../addons/buy-creds/myCRED-addon-buy-creds.php:670
6397
+ msgid "Content to show when a user is not logged in."
6398
+ msgstr "Mostrar este contenido cuando un usuario no ha sido ingresado."
6399
 
6400
+ #: ../addons/buy-creds/myCRED-addon-buy-creds.php:680
6401
+ msgid "Thank You Page"
6402
+ msgstr "Página de Agradecimiento"
6403
 
6404
+ #: ../addons/buy-creds/myCRED-addon-buy-creds.php:683 ../addons/buy-creds/myCRED-
6405
+ #: addon-buy-creds.php:706
6406
+ msgid "Custom URL"
6407
+ msgstr "URL Personalizada"
6408
 
6409
+ #: ../addons/buy-creds/myCRED-addon-buy-creds.php:688 ../addons/buy-creds/myCRED-
6410
+ #: addon-buy-creds.php:711
6411
+ msgid "Page"
6412
+ msgstr "Página"
 
 
 
6413
 
6414
+ #: ../addons/buy-creds/myCRED-addon-buy-creds.php:703
6415
+ msgid "Cancellation Page"
6416
+ msgstr "Página de Cancelación"
6417
 
6418
+ #: ../addons/buy-creds/myCRED-addon-buy-creds.php:728
6419
  #, php-format
6420
+ msgid "Show seperate log for %_plural% purchases."
6421
+ msgstr "Mostrar registro distinto para compras de %_plural%."
 
 
 
 
6422
 
6423
+ #: ../addons/buy-creds/myCRED-addon-buy-creds.php:730
6424
+ msgid "Gifting"
6425
+ msgstr "Regalar"
6426
 
6427
+ #: ../addons/buy-creds/myCRED-addon-buy-creds.php:732
6428
  #, php-format
6429
+ msgid "Allow users to buy %_plural% for other users."
6430
+ msgstr "Prmita que usuarios compren %_plural% para otros usuarios."
 
 
6431
 
6432
+ #: ../addons/buy-creds/myCRED-addon-buy-creds.php:733
6433
+ #, php-format
6434
+ msgid "Allow users to buy %_plural% for content authors."
6435
+ msgstr "Prmita que usuarios compren %_plural% para autores de contenido."
6436
 
6437
+ #: ../addons/buy-creds/myCRED-addon-buy-creds.php:831
6438
+ #, php-format
6439
+ msgid "%s Exchange Rate"
6440
+ msgstr "Tipo de Cambio %s"
6441
 
6442
+ #: ../addons/buy-creds/myCRED-addon-buy-creds.php:845
6443
+ msgid "Save Exchange Rates"
6444
+ msgstr "Guardar Tipo de Cambio"
6445
 
6446
+ #: ../addons/buy-creds/myCRED-addon-buy-creds.php:900
6447
+ msgid "Exchange rate override saved"
6448
+ msgstr "Anulación de de tipo de cambio guardado"
6449
 
6450
+ #: ../addons/buy-creds/myCRED-addon-buy-creds.php:903
6451
+ msgid "Payment completed"
6452
+ msgstr "Pago finalizado"
6453
 
6454
+ #: ../addons/buy-creds/myCRED-addon-buy-creds.php:922
6455
+ #, php-format
6456
+ msgid "%s Payment Gateways"
6457
+ msgstr "%s Pasarelas de Pago"
6458
 
6459
+ #: ../addons/buy-creds/myCRED-addon-buy-creds.php:922 ../addons/buy-creds/myCRED-
6460
+ #: addon-buy-creds.php:1085
6461
+ msgid "buyCRED Settings"
6462
+ msgstr "Configuraciones de compraCRED"
6463
 
6464
+ #: ../addons/buy-creds/myCRED-addon-buy-creds.php:947
6465
+ msgid "Test Mode"
6466
+ msgstr "Modo de Prueba"
6467
 
6468
+ #: ../addons/buy-creds/myCRED-addon-buy-creds.php:949
6469
+ msgid "Enabled"
6470
+ msgstr "Habilitado"
 
 
 
 
6471
 
6472
+ #. also, "Inhabilitar"
6473
+ #: ../addons/buy-creds/myCRED-addon-buy-creds.php:952
6474
+ msgid "Disabled"
6475
+ msgstr "Desactivado"
6476
+
6477
+ #: ../addons/buy-creds/myCRED-addon-buy-creds.php:962
6478
+ msgid "Sandbox Mode"
6479
+ msgstr "Modo Entorno Aislado"
6480
+
6481
+ #: ../addons/buy-creds/myCRED-addon-buy-creds.php:965
6482
+ msgid "Enable for test purchases."
6483
+ msgstr "Habilitar para compras de prueba."
6484
+
6485
+ #: ../addons/buy-creds/myCRED-addon-buy-creds.php:987
6486
+ msgid "More Gateways"
6487
+ msgstr "Mas Pasarelas"
6488
+
6489
+ #: ../addons/buy-creds/myCRED-addon-buy-creds.php:1077
6490
+ msgid "Payed"
6491
+ msgstr "Pagado"
6492
+
6493
+ #: ../addons/buy-creds/myCRED-addon-buy-creds.php:1085
6494
+ msgid "<strong>buy</strong>CRED Purchase Log"
6495
+ msgstr "Registro de Compras de <strong>compra</strong>CRED"
6496
+
6497
+ #: ../addons/buy-creds/myCRED-addon-buy-creds.php:1347 ../addons/buy-creds/myCRED-
6498
+ #: addon-buy-creds.php:1464
6499
+ msgid "This Add-on needs to setup before you can use this shortcode."
6500
  msgstr ""
6501
+ "Esta extensión (add-on) debe ser configurado antes de poder usar este código "
6502
+ "corto (shortcode)."
6503
+
6504
+ #: ../addons/buy-creds/myCRED-addon-buy-creds.php:1366 ../addons/buy-creds/myCRED-
6505
+ #: addon-buy-creds.php:1483
6506
+ msgid "No gateways installed."
6507
+ msgstr "Ningun pasarela de pago instalado."
6508
 
6509
+ #: ../addons/buy-creds/myCRED-addon-buy-creds.php:1367 ../addons/buy-creds/myCRED-
6510
+ #: addon-buy-creds.php:1484
6511
+ msgid "Gateway does not exist."
6512
+ msgstr "Puerta de enlace no existe."
6513
 
6514
+ #: ../addons/buy-creds/myCRED-addon-buy-creds.php:1415
6515
+ msgid "Yourself"
6516
+ msgstr "Tu mismo"
 
6517
 
6518
+ #: ../addons/buy-creds/myCRED-addon-buy-creds.php:1485
6519
+ msgid "No active gateways found."
6520
+ msgstr "No se encuentra ningun puerta de enlace activo."
6521
 
6522
+ #: ../addons/buy-creds/myCRED-addon-buy-creds.php:1486
6523
+ msgid "The selected gateway is not active."
6524
+ msgstr "La puerta de enlace seleccionada no esta activo."
6525
+
6526
+ #: ../addons/buy-creds/myCRED-addon-buy-creds.php:1533
6527
  #, php-format
6528
+ msgid "Buy with %gateway%"
6529
+ msgstr "Compra con %gateway%"
6530
 
6531
+ #: ../addons/buy-creds/myCRED-addon-buy-creds.php:1584
6532
+ msgid "No users found"
6533
+ msgstr "Ningun Usuario Encontrado"
6534
 
6535
+ #: ../addons/buy-creds/myCRED-addon-buy-creds.php:1594
6536
+ msgid "To"
6537
+ msgstr "A"
6538
 
6539
+ #: ../addons/buy-creds/myCRED-addon-buy-creds.php:1611
6540
+ msgid "Select Amount"
6541
+ msgstr "Selecciona la Cantidad"
6542
 
6543
+ #: ../addons/buy-creds/myCRED-addon-buy-creds.php:1635
6544
+ msgid "min."
6545
+ msgstr "min."
 
6546
 
6547
+ #: ../addons/buy-creds/myCRED-addon-buy-creds.php:1643
6548
+ msgid "Select Gateway"
6549
+ msgstr "Selecciona la Pasarela de Pago"
 
6550
 
6551
+ #: ../addons/buy-creds/abstracts/mycred-abstract-payment-gateway.php:114
6552
+ msgid "This Payment Gateway has no settings"
6553
+ msgstr "Esta Pasarela de Pago no ha sido configurado"
 
6554
 
6555
+ #: ../addons/buy-creds/abstracts/mycred-abstract-payment-gateway.php:151
6556
+ msgid "Select currency"
6557
+ msgstr "Elige moneda"
 
 
6558
 
6559
+ #: ../addons/buy-creds/abstracts/mycred-abstract-payment-gateway.php:352
6560
+ msgid "Incoming confirmation call detected"
6561
+ msgstr "Se detectó una llamada entrante de la confirmación."
 
6562
 
6563
+ #: ../addons/buy-creds/abstracts/mycred-abstract-payment-gateway.php:353
 
6564
  #, php-format
6565
+ msgid "Gateway identified itself as \"%s\""
6566
+ msgstr "Puerta de enlace se identifico como \"%s\""
6567
 
6568
+ #: ../addons/buy-creds/abstracts/mycred-abstract-payment-gateway.php:354
6569
+ msgid "Verifying caller"
6570
+ msgstr "Verificando la llamada"
 
6571
 
6572
+ #. also, "Pago de Prueba" depending on context
6573
+ #: ../addons/buy-creds/abstracts/mycred-abstract-payment-gateway.php:400
6574
+ msgid "Test Payment"
6575
+ msgstr "Probar Pago"
6576
 
6577
+ #: ../addons/buy-creds/abstracts/mycred-abstract-payment-gateway.php:424
6578
+ msgid "Cancel purchase"
6579
+ msgstr "Cancelar la compra"
 
6580
 
6581
+ #: ../addons/buy-creds/abstracts/mycred-abstract-payment-gateway.php:509
6582
+ msgid "First Name"
6583
+ msgstr "Nombre"
 
6584
 
6585
+ #: ../addons/buy-creds/abstracts/mycred-abstract-payment-gateway.php:513
6586
+ msgid "Last Name"
6587
+ msgstr "Apellido"
 
6588
 
6589
+ #: ../addons/buy-creds/abstracts/mycred-abstract-payment-gateway.php:517
6590
+ msgid "Address Line 1"
6591
+ msgstr "Dirección Linea 1"
6592
 
6593
+ #: ../addons/buy-creds/abstracts/mycred-abstract-payment-gateway.php:521
6594
+ msgid "Address Line 2"
6595
+ msgstr "Dirección Linea 2"
 
 
 
 
 
6596
 
6597
+ #: ../addons/buy-creds/abstracts/mycred-abstract-payment-gateway.php:525
6598
+ msgid "City"
6599
+ msgstr "Ciudad"
 
6600
 
6601
+ #: ../addons/buy-creds/abstracts/mycred-abstract-payment-gateway.php:529
6602
+ msgid "Zip"
6603
+ msgstr "Código Postal"
6604
 
6605
+ #: ../addons/buy-creds/abstracts/mycred-abstract-payment-gateway.php:533
6606
+ msgid "State"
6607
+ msgstr "Estado/Provincia"
 
6608
 
6609
+ #: ../addons/buy-creds/abstracts/mycred-abstract-payment-gateway.php:537
6610
+ msgid "Country"
6611
+ msgstr "País"
 
6612
 
6613
+ #: ../addons/buy-creds/abstracts/mycred-abstract-payment-gateway.php:540
6614
+ msgid "Choose Country"
6615
+ msgstr "Eliga el País"
6616
+
6617
+ #: ../addons/buy-creds/abstracts/mycred-abstract-payment-gateway.php:587
6618
  #, php-format
6619
+ msgid "%s Purchase"
6620
+ msgstr "Compra %s"
6621
 
6622
+ #: ../addons/buy-creds/abstracts/mycred-abstract-payment-gateway.php:615
6623
+ msgid "Debug"
6624
+ msgstr "Depurar"
6625
 
6626
+ #: ../addons/buy-creds/abstracts/mycred-abstract-payment-gateway.php:616
6627
+ msgid ""
6628
+ "Here you can see information that are collected and sent to this gateway. "
6629
+ "Debug information is only visible for administrators and are intended for "
6630
+ "troubleshooting / testing of this gateway. Please disable \"Sandbox Mode\" "
6631
+ "when you want to take this gateway online."
6632
+ msgstr ""
6633
+ "Aquí se puede ver la información que se recoge y se envía a esta puerta de "
6634
+ "enlace. La información de depuración sólo es visible para los "
6635
+ "administradores y está disponible resolver problemas algunas / pruebar este "
6636
+ "puerta de enlace. Por favor, desactivar \"Modo Entorno Aislado\" cuando se "
6637
+ "quiere activar este portal y ponerlo online."
6638
 
6639
+ #: ../addons/buy-creds/abstracts/mycred-abstract-payment-gateway.php:620
6640
+ msgid "Section"
6641
+ msgstr "Sección"
6642
 
6643
+ #: ../addons/buy-creds/abstracts/mycred-abstract-payment-gateway.php:621
6644
+ msgid "Result"
6645
+ msgstr "Resultado"
 
6646
 
6647
+ #: ../addons/buy-creds/abstracts/mycred-abstract-payment-gateway.php:626
6648
+ msgid "Payment Status"
6649
+ msgstr "Estado de Pago"
 
6650
 
6651
+ #: ../addons/buy-creds/abstracts/mycred-abstract-payment-gateway.php:630
6652
+ msgid "Request"
6653
+ msgstr "Solicitud"
6654
 
6655
+ #: ../addons/buy-creds/abstracts/mycred-abstract-payment-gateway.php:634
6656
+ msgid "Gateway Response"
6657
+ msgstr "Respuesta de la Pasarela de Pago"
 
6658
 
6659
+ #: ../addons/buy-creds/abstracts/mycred-abstract-payment-gateway.php:681
6660
+ #, php-format
6661
+ msgid "Continue to %s"
6662
+ msgstr "Continuar a %s"
6663
 
6664
+ #: ../addons/buy-creds/abstracts/mycred-abstract-payment-gateway.php:682 ..
6665
+ #: addons/buy-creds/gateways/bitpay.php:233
6666
+ msgid "Click here if you are not automatically redirected"
6667
+ msgstr "Haga clic aqui si no se encuentra redirigida automáticamente"
6668
 
6669
+ #: ../addons/buy-creds/abstracts/mycred-abstract-payment-gateway.php:687
6670
+ msgid "The following information will be sent to the gateway"
6671
+ msgstr "La información siguiente sera transmitido a la pasarela de pago"
6672
 
6673
+ #: ../addons/buy-creds/abstracts/mycred-abstract-payment-gateway.php:1373
6674
+ msgid "Outside US"
6675
+ msgstr "Fuera de los EEUU"
6676
 
6677
+ #: ../addons/buy-creds/abstracts/mycred-abstract-payment-gateway.php:1390
6678
+ msgid "January"
6679
+ msgstr "Enero"
6680
 
6681
+ #: ../addons/buy-creds/abstracts/mycred-abstract-payment-gateway.php:1391
6682
+ msgid "February"
6683
+ msgstr "Febrero"
6684
 
6685
+ #: ../addons/buy-creds/abstracts/mycred-abstract-payment-gateway.php:1392
6686
+ msgid "March"
6687
+ msgstr "Marzo"
 
6688
 
6689
+ #: ../addons/buy-creds/abstracts/mycred-abstract-payment-gateway.php:1393
6690
+ msgid "April"
6691
+ msgstr "Abril"
6692
 
6693
+ #: ../addons/buy-creds/abstracts/mycred-abstract-payment-gateway.php:1394
6694
+ msgid "May"
6695
+ msgstr "Mayo"
 
 
 
 
 
6696
 
6697
+ #: ../addons/buy-creds/abstracts/mycred-abstract-payment-gateway.php:1395
6698
+ msgid "June"
6699
+ msgstr "Junio"
 
6700
 
6701
+ #: ../addons/buy-creds/abstracts/mycred-abstract-payment-gateway.php:1396
6702
+ msgid "July"
6703
+ msgstr "Julio"
 
6704
 
6705
+ #: ../addons/buy-creds/abstracts/mycred-abstract-payment-gateway.php:1397
6706
+ msgid "August"
6707
+ msgstr "Agosto"
 
6708
 
6709
+ #: ../addons/buy-creds/abstracts/mycred-abstract-payment-gateway.php:1398
6710
+ msgid "September"
6711
+ msgstr "Septiembre"
 
6712
 
6713
+ #: ../addons/buy-creds/abstracts/mycred-abstract-payment-gateway.php:1399
6714
+ msgid "October"
6715
+ msgstr "Octubre"
 
 
 
6716
 
6717
+ #: ../addons/buy-creds/abstracts/mycred-abstract-payment-gateway.php:1400
6718
+ msgid "November"
6719
+ msgstr "Noviembre"
 
6720
 
6721
+ #: ../addons/buy-creds/abstracts/mycred-abstract-payment-gateway.php:1401
6722
+ msgid "December"
6723
+ msgstr "Diciembre"
 
6724
 
6725
+ #: ../addons/buy-creds/gateways/bitpay.php:62 ../addons/buy-
6726
+ #: creds/gateways/netbilling.php:92 ../addons/buy-creds/gateways/paypal-standard.
6727
+ #: php:145 ../addons/buy-creds/gateways/skrill.php:124
6728
  #, php-format
6729
+ msgid "Price mismatch. Expected: %s Received: %s"
6730
+ msgstr "Desajuste de precio. Esperaba: %s Recibido: %s"
6731
 
6732
+ #: ../addons/buy-creds/gateways/bitpay.php:68 ../addons/buy-creds/gateways/paypal-
6733
+ #: standard.php:151 ../addons/buy-creds/gateways/skrill.php:130
6734
  #, php-format
6735
+ msgid "Currency mismatch. Expected: %s Received: %s"
6736
+ msgstr "Desajuste de moneda. Esperaba: %s Recibido: %s"
6737
 
6738
+ #: ../addons/buy-creds/gateways/bitpay.php:74 ../addons/buy-
6739
+ #: creds/gateways/netbilling.php:98 ../addons/buy-creds/gateways/paypal-standard.
6740
+ #: php:157 ../addons/buy-creds/gateways/skrill.php:136
6741
  #, php-format
6742
+ msgid "Payment not completed. Received: %s"
6743
+ msgstr "Pago no cumplido. Recibido: %s"
6744
 
6745
+ #: ../addons/buy-creds/gateways/bitpay.php:85 ../addons/buy-
6746
+ #: creds/gateways/netbilling.php:109 ../addons/buy-creds/gateways/zombaio.php:185
6747
+ #: ../addons/buy-creds/gateways/paypal-standard.php:168 ../addons/buy-
6748
+ #: creds/gateways/skrill.php:147
6749
+ msgid "Failed to credit users account."
6750
+ msgstr "No se pudo creditar la cuenta del usuario."
6751
 
6752
+ #: ../addons/buy-creds/gateways/bitpay.php:164 ../addons/buy-
6753
+ #: creds/gateways/netbilling.php:145 ../addons/buy-creds/gateways/zombaio.php:214
6754
+ #: ../addons/buy-creds/gateways/paypal-standard.php:208 ../addons/buy-
6755
+ #: creds/gateways/skrill.php:187
6756
+ msgid "Please setup this gateway before attempting to make a purchase!"
6757
  msgstr ""
6758
+ "¡Por favor configure esta puerta de enlace antes de intentar hacer una "
6759
+ "compra!"
 
 
 
 
 
 
 
 
6760
 
6761
+ #: ../addons/buy-creds/gateways/bitpay.php:216 ../addons/buy-
6762
+ #: creds/gateways/bitpay.php:227 ../addons/buy-creds/gateways/netbilling.php:198 .
6763
+ #: ./addons/buy-creds/gateways/zombaio.php:247 ../addons/buy-
6764
+ #: creds/gateways/paypal-standard.php:268 ../addons/buy-creds/gateways/skrill.php:
6765
+ #: 281
6766
+ msgid "Processing payment &hellip;"
6767
+ msgstr "Procesando el pago &hellip;"
6768
 
6769
+ #: ../addons/buy-creds/gateways/bitpay.php:219
6770
+ msgid "Could not create a BitPay Invoice. Please contact the site administrator!"
6771
+ msgstr ""
6772
+ "¡No se pudo crear una factura de BitPay. Por favor pongase en contacto con "
6773
+ "el administrador del sitio!"
6774
 
6775
+ #: ../addons/buy-creds/gateways/bitpay.php:220
6776
+ msgid "Bitpay returned the following error message:"
6777
+ msgstr "Bitpay comunico este mensaje de error:"
 
6778
 
6779
+ #: ../addons/buy-creds/gateways/bitpay.php:259 ../addons/buy-
6780
+ #: creds/gateways/paypal-standard.php:286 ../addons/buy-creds/gateways/skrill.php:
6781
+ #: 300
6782
+ msgid "Currency"
6783
+ msgstr "Moneda"
6784
 
6785
+ #: ../addons/buy-creds/gateways/bitpay.php:262
6786
+ msgid "Currency Code"
6787
+ msgstr "Código de Moneda"
 
6788
 
6789
+ #: ../addons/buy-creds/gateways/bitpay.php:266 ../addons/buy-
6790
+ #: creds/gateways/netbilling.php:235 ../addons/buy-creds/gateways/paypal-standard.
6791
+ #: php:298 ../addons/buy-creds/gateways/skrill.php:319
6792
+ msgid "Item Name"
6793
+ msgstr "Nombre de Artículo"
6794
 
6795
+ #: ../addons/buy-creds/gateways/bitpay.php:270 ../addons/buy-
6796
+ #: creds/gateways/netbilling.php:239 ../addons/buy-creds/gateways/paypal-standard.
6797
+ #: php:302 ../addons/buy-creds/gateways/skrill.php:323
6798
+ msgid "Description of the item being purchased by the user."
6799
+ msgstr "Descripción del artículo que el usuario esta comprando."
 
 
6800
 
6801
+ #: ../addons/buy-creds/gateways/bitpay.php:273 ../addons/buy-
6802
+ #: creds/gateways/netbilling.php:242 ../addons/buy-creds/gateways/paypal-standard.
6803
+ #: php:305 ../addons/buy-creds/gateways/skrill.php:326
6804
+ msgid "Exchange Rates"
6805
+ msgstr "Tipo de Cambio"
6806
 
6807
+ #: ../addons/buy-creds/gateways/bitpay.php:277
6808
+ msgid "Transaction Speed"
6809
+ msgstr "Velocidad de la Transacción"
 
6810
 
6811
+ #: ../addons/buy-creds/gateways/bitpay.php:284
6812
+ msgid "High"
6813
+ msgstr "Alto"
 
6814
 
6815
+ #: ../addons/buy-creds/gateways/bitpay.php:285
6816
+ msgid "Medium"
6817
+ msgstr "Medio"
6818
 
6819
+ #: ../addons/buy-creds/gateways/bitpay.php:286
6820
+ msgid "Low"
6821
+ msgstr "Bajo"
 
 
 
6822
 
6823
+ #: ../addons/buy-creds/gateways/bitpay.php:299
6824
+ msgid "Full Notifications"
6825
+ msgstr "Notificaciones Completas"
 
6826
 
6827
+ #: ../addons/buy-creds/gateways/netbilling.php:216
6828
+ msgid "Account ID"
6829
+ msgstr "ID de la Cuenta"
6830
 
6831
+ #: ../addons/buy-creds/gateways/netbilling.php:222
6832
+ msgid "Site Tag"
6833
+ msgstr "Etiqueta (tag) del Sitio"
 
6834
 
6835
+ #: ../addons/buy-creds/gateways/netbilling.php:228
6836
+ msgid "Order Integrity Key"
6837
+ msgstr "Clave de Integridad del Pedido"
6838
 
6839
+ #: ../addons/buy-creds/gateways/netbilling.php:232
6840
+ msgid "Found under Step 12 on the Fraud Defense page."
6841
+ msgstr "Se encuentra en Paso 12 de la página sobre Defensa contra Fraude."
6842
 
6843
+ #: ../addons/buy-creds/gateways/netbilling.php:246
6844
+ msgid "Postback CGI URL"
6845
+ msgstr "Devolución de la URL CGI"
6846
 
6847
+ #: ../addons/buy-creds/gateways/netbilling.php:250
6848
+ msgid ""
6849
+ "For this gateway to work, you must login to your NETbilling account and edit "
6850
+ "your site. Under \"Default payment form settings\" make sure the Postback CGI "
6851
+ "URL is set to the above address and \"Return method\" is set to POST."
6852
  msgstr ""
6853
+ "Para que esta pasarela de pago funcione, deberia acceder a su cuenta "
6854
+ "NETbilling y editar su sitio web. En \"Configuración de Formularios "
6855
+ "Predefinido\" asegúrese de que la devolución de la URL CGI esta ajustada a la "
6856
+ "dirección indicada arriba y \"Método de Retorno\" está ajustado a POST."
6857
 
6858
+ #: ../addons/buy-creds/gateways/netbilling.php:298
6859
+ msgid "Incorrect Credit Card number"
6860
+ msgstr "Número de Tarjeta de Crédito Incorrecta"
6861
 
6862
+ #: ../addons/buy-creds/gateways/netbilling.php:304
6863
+ msgid "The credit card entered is past its expiration date."
6864
+ msgstr "La tarjeta de crédito ha pasado su fecha de vencimiento."
 
 
6865
 
6866
+ #: ../addons/buy-creds/gateways/netbilling.php:307
6867
+ msgid "The CVV2 number entered is not valid."
6868
+ msgstr "El numero CVV2 teclado no es valido."
6869
 
6870
+ #: ../addons/buy-creds/gateways/netbilling.php:314
6871
+ msgid "The bank routing number entered is not valid."
6872
+ msgstr "El número de ruta bancaria introducido no es valido."
 
6873
 
6874
+ #: ../addons/buy-creds/gateways/netbilling.php:318
6875
+ msgid "The bank account number entered is not valid."
6876
+ msgstr "La cuenta bancaria introducida no es valida."
 
6877
 
6878
+ #: ../addons/buy-creds/gateways/zombaio.php:154
6879
  #, php-format
6880
+ msgid "Duplicate transaction. Received: %s"
6881
+ msgstr "Transacción duplicado. Recibido: %s"
 
 
 
 
6882
 
6883
+ #: ../addons/buy-creds/gateways/zombaio.php:160
6884
  #, php-format
6885
+ msgid "Live transaction while debug mode is enabled! Received: %s"
6886
+ msgstr "Depuración de transacciones en vivo esta habilitado! Recibido: %s"
6887
 
6888
+ #: ../addons/buy-creds/gateways/zombaio.php:265
6889
+ msgid "Site ID"
6890
+ msgstr "ID del Sitio de web"
 
6891
 
6892
+ #. or "Contraseña de GW" not clear based on lack of context
6893
+ #: ../addons/buy-creds/gateways/zombaio.php:271
6894
+ msgid "GW Password"
6895
+ msgstr "Contraseña GW"
6896
 
6897
+ #: ../addons/buy-creds/gateways/zombaio.php:277
6898
+ msgid "Pricing ID"
6899
+ msgstr "ID de Precios"
6900
 
6901
+ #: ../addons/buy-creds/gateways/zombaio.php:283 ../addons/buy-
6902
+ #: creds/gateways/skrill.php:344
6903
+ msgid "Logo URL"
6904
+ msgstr "URL del Logotipo"
 
 
 
 
6905
 
6906
+ #: ../addons/buy-creds/gateways/zombaio.php:289
6907
+ msgid "IP Verification"
6908
+ msgstr "Verificación de IP"
6909
 
6910
+ #: ../addons/buy-creds/gateways/zombaio.php:292
6911
+ msgid "Do not verify that callbacks are coming from Zombaio."
6912
+ msgstr "No verifique que las devoluciónes de llamadas proceden de Zombaio."
6913
 
6914
+ #: ../addons/buy-creds/gateways/zombaio.php:295
6915
+ msgid "Language"
6916
+ msgstr "Lengua"
 
6917
 
6918
+ #: ../addons/buy-creds/gateways/zombaio.php:302
6919
+ msgid "Postback URL (ZScript)"
6920
+ msgstr "Devolución de la URL (ZScript)"
 
6921
 
6922
+ #: ../addons/buy-creds/gateways/zombaio.php:306
 
6923
  msgid ""
6924
+ "For this gateway to work, login to ZOA and set the Postback URL to the above "
6925
+ "address and click validate."
6926
  msgstr ""
6927
+ "Para que esta puerta de enlace funcione, ingrese en ZOA y ajuste la "
6928
+ "devolución de datos de la URL a la dirección que se encuentra arriba y haga "
6929
+ "clic sobre validar."
 
 
 
 
 
 
 
 
 
 
 
 
6930
 
6931
+ #: ../addons/buy-creds/gateways/paypal-standard.php:192 ../addons/buy-
6932
+ #: creds/gateways/skrill.php:171
6933
+ msgid "Success"
6934
+ msgstr "Exito"
6935
 
6936
+ #: ../addons/buy-creds/gateways/paypal-standard.php:193 ../addons/buy-
6937
+ #: creds/gateways/skrill.php:172
6938
+ msgid "Thank you for your purchase"
6939
+ msgstr "Gracias por su compra"
6940
 
6941
+ #: ../addons/buy-creds/gateways/paypal-standard.php:292
6942
+ msgid "Account Email"
6943
+ msgstr "Cuenta de Correo Electrónico"
 
6944
 
6945
+ #: ../addons/buy-creds/gateways/skrill.php:228
6946
+ msgid "Return to "
6947
+ msgstr "Volver a"
6948
 
6949
+ #: ../addons/buy-creds/gateways/skrill.php:264
6950
+ msgid "Product:"
6951
+ msgstr "Producto:"
 
 
 
6952
 
6953
+ #: ../addons/buy-creds/gateways/skrill.php:273
6954
+ msgid "Gift to:"
6955
+ msgstr "Regalar a:"
6956
 
6957
+ #: ../addons/buy-creds/gateways/skrill.php:274
6958
+ msgid "(author)"
6959
+ msgstr "(autor)"
 
6960
 
6961
+ #: ../addons/buy-creds/gateways/skrill.php:307
6962
+ msgid "Merchant Account Email"
6963
+ msgstr "Correo electrónico de la Cuenta Comerciante"
6964
 
6965
+ #: ../addons/buy-creds/gateways/skrill.php:313
6966
+ msgid "Secret Word"
6967
+ msgstr "Palabra Secreta"
6968
 
6969
+ #: ../addons/buy-creds/gateways/skrill.php:330
6970
+ msgid "Confirmation Email"
6971
+ msgstr "Correo electrónico de confirmación"
6972
 
6973
+ #: ../addons/buy-creds/gateways/skrill.php:333
6974
+ msgid "Ask Skrill to send me a confirmation email for each successful purchase."
6975
  msgstr ""
6976
+ "Pide a Skrill que me mande un email de confirmación para cada compra "
6977
+ "finalizada con éxito."
6978
 
6979
+ #: ../addons/buy-creds/gateways/skrill.php:336
6980
+ msgid "Checkout Page"
6981
+ msgstr "Página de Pago"
 
 
 
 
 
 
 
6982
 
6983
+ #: ../addons/buy-creds/gateways/skrill.php:341
6984
+ msgid "If left empty, your account email is used as title on the Skill Payment Page."
6985
  msgstr ""
6986
+ "Si se deja vacío, el correo electrónico de su cuenta sera utilizada como "
6987
+ "título en la Página de Pagos Skrill. "
6988
 
6989
+ #: ../addons/buy-creds/gateways/skrill.php:346
 
6990
  msgid ""
6991
+ "The URL to the image you want to use on the top of the gateway. For best "
6992
+ "integration results we recommend you use logos with dimensions up to 200px "
6993
+ "in width and 50px in height."
6994
  msgstr ""
6995
+ "La URL de la imagen que quieres usar en la encima de la pasarela de pago. "
6996
+ "Para obtener la mejor integración recomendamos que uses logotipos con "
6997
+ "dimensiones de hasta 200 píxeles de ancho y 50 px de altura."
6998
 
6999
+ #: ../addons/buy-creds/gateways/skrill.php:349
7000
+ msgid "Confirmation Note"
7001
+ msgstr "Nota de Confirmación"
7002
 
7003
+ #: ../addons/buy-creds/gateways/skrill.php:351
7004
+ msgid ""
7005
+ "Optional text to show user once a transaction has been successfully "
7006
+ "completed. This text is shown by Skrill."
7007
  msgstr ""
7008
+ "Texto opcional a mostrar al usuario cuando la transacción haya sido "
7009
+ "completado con éxito. Este texto sera mostrado por Skrill."
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: Mon Jun 08 2015 23:42:36 GMT+0200 (CEST)\n"
7
- "Last-Translator: unimatrix0 <gabriel.s@merovingi.com>\n"
8
  "Language-Team: myCRED & All the awesome users helping out <support@mycred."
9
  "me>\n"
10
  "Language: Spanish (Venezuela)\n"
@@ -25,6889 +25,6956 @@ msgstr ""
25
  "X-Poedit-SearchPath-1: .\n"
26
  "X-Loco-Target-Locale: es_VE"
27
 
28
- #: ../mycred.php:461
29
- msgid "Balance"
30
- msgstr "Saldo"
31
-
32
- #: ../mycred.php:486
33
- msgid "%label% History"
34
- msgstr "%lavel% Historial"
35
-
36
- #: ../mycred.php:580
37
- #, php-format
38
- msgid "About %s"
39
- msgstr "Sobre"
40
-
41
- #: ../mycred.php:589
42
- msgid "Awesome People"
43
- msgstr "Gente genial"
44
-
45
- #: ../mycred.php:677 ../mycred.php:702 ../mycred.php:720 ../addons/badges/myCRED-
46
- #: addon-badges.php:605 ../addons/gateway/event-booking/mycred-eventsmanager.php:
47
- #: 478 ../addons/ranks/myCRED-addon-ranks.php:423 ../addons/ranks/myCRED-addon-
48
- #: ranks.php:1522 ../addons/sell-content/myCRED-addon-sell-content.php:372 ..
49
- #: addons/transfer/myCRED-addon-transfer.php:146 ../includes/mycred-shortcodes.
50
- #: php:636
51
- msgid "Processing..."
52
- msgstr "Procesando..."
53
-
54
- #: ../mycred.php:678
55
- msgid ""
56
- "Warning! All entries in your log will be permanently removed! This can not "
57
- "be undone!"
58
  msgstr ""
59
- "¡Aviso! Todas las entradas en su registro seran permanentemente borrado! "
60
- "¡Esto no se puede deshacer!"
61
 
62
- #: ../mycred.php:679
63
  msgid ""
64
- "All log entries belonging to deleted users will be permanently deleted! This "
65
- "can not be undone!"
 
66
  msgstr ""
67
- "¡Todas las entradas de registro perteneciendo al usuario seran "
68
- "permanentemente borradas! ¡Esto no se puede deshacer!"
69
 
70
- #: ../mycred.php:680
71
- msgid "Warning! All user balances will be set to zero! This can not be undone!"
72
  msgstr ""
73
- "¡Aviso! ¡Todo los saldos del usuario seran puesto a cero! ¡Esto no se puede "
74
- "deshacer!"
75
-
76
- #: ../mycred.php:681
77
- msgid "Done!"
78
- msgstr "¡Realizado!"
79
-
80
- #: ../mycred.php:682 ../mycred.php:701 ../mycred.php:719
81
- msgid "Close"
82
- msgstr "Cerrar"
83
 
84
- #: ../mycred.php:683
85
- msgid "Export users %plural%"
86
- msgstr "Exportar usuarios %plural%"
87
 
88
- #: ../mycred.php:684
89
  msgid ""
90
  "In order to adjust the number of decimal places you want to use we must "
91
  "update your log. It is highly recommended that you backup your current log "
92
  "before continuing!"
93
  msgstr ""
94
 
95
- #: ../mycred.php:700
96
- msgid "Edit Users Balance"
97
- msgstr "Editar saldo del usuario"
98
-
99
- #: ../mycred.php:718
100
- msgid "Edit Log Entry"
101
- msgstr "Edidar entrada de registro"
102
-
103
- #: ../mycred.php:722
104
- msgid "Are you sure you want to delete this log entry? This can not be undone!"
105
- msgstr ""
106
- "¿Esta seguro que quiere borrar esta entrada de registro? ¡Esto no se puede "
107
- "deshacer!"
108
-
109
- #: ../mycred.php:723
110
- msgid "Log entry updated"
111
- msgstr "Entrada de registro actualizado"
112
-
113
- #: ../mycred.php:780 ../mycred.php:802 ../addons/email-notices/myCRED-addon-email-
114
- #: notices.php:811 ../addons/gateway/event-booking/mycred-eventsmanager-pro.php:
115
- #: 499 ../addons/gateway/event-booking/mycred-eventsmanager.php:537
116
- msgid "Setup"
117
- msgstr "Configurar"
118
-
119
- #: ../mycred.php:782 ../addons/gateway/carts/mycred-marketpress.php:371 ..
120
- #: addons/stats/abstracts/mycred-abstract-stat-widget.php:108 ../includes/mycred-
121
- #: network.php:151 ../modules/mycred-module-settings.php:21 ../modules/mycred-
122
- #: module-settings.php:22 ../modules/mycred-module-settings.php:23
123
- msgid "Settings"
124
- msgstr "Configuraciones"
125
-
126
- #: ../mycred.php:825
127
- msgid ""
128
- "Make sure to backup your database and files before updating, in case "
129
- "anything goes wrong!"
130
- msgstr ""
131
- "Antes de actualizar, asegura crear copias de seguridad de su base de datos y "
132
- "archivo, por si acaso!"
133
-
134
- #: ../abstracts/mycred-abstract-hook.php:83
135
- msgid "This Hook has no settings"
136
- msgstr "Este gancho no ha sido configurado"
137
-
138
- #: ../abstracts/mycred-abstract-hook.php:226 ../abstracts/mycred-abstract-hook.
139
- #: php:293 ../includes/mycred-functions.php:2641 ../modules/mycred-module-hooks.
140
- #: php:1809
141
- msgid "No limit"
142
- msgstr "Sin Limite"
143
-
144
- #: ../abstracts/mycred-abstract-hook.php:227
145
  msgid "/ Day"
146
  msgstr ""
147
 
148
- #: ../abstracts/mycred-abstract-hook.php:228
149
  msgid "/ Week"
150
  msgstr ""
151
 
152
- #: ../abstracts/mycred-abstract-hook.php:229
153
  msgid "/ Month"
154
  msgstr ""
155
 
156
- #: ../abstracts/mycred-abstract-hook.php:230
157
  msgid "in Total"
158
  msgstr ""
159
 
160
- #: ../abstracts/mycred-abstract-hook.php:294
161
- msgid "Once every 24 hours"
162
- msgstr "Una vez cada 24 horas"
163
-
164
- #: ../abstracts/mycred-abstract-hook.php:295
165
- msgid "Once every 7 days"
166
- msgstr "Una vez cada 7 dias"
167
-
168
- #: ../abstracts/mycred-abstract-hook.php:296
169
- msgid "Once per day (reset at midnight)"
170
- msgstr "Una vez al dia (reinicializado al medianoche)"
171
-
172
- #: ../abstracts/mycred-abstract-hook.php:303 ../addons/banking/abstracts/mycred-
173
- #: abstract-service.php:498 ../addons/buy-creds/myCRED-addon-buy-creds.php:695 ..
174
- #: addons/buy-creds/myCRED-addon-buy-creds.php:718 ../addons/buy-
175
- #: creds/abstracts/mycred-abstract-payment-gateway.php:1023 ../addons/buy-
176
- #: creds/abstracts/mycred-abstract-payment-gateway.php:1046 ../addons/buy-
177
- #: creds/gateways/zombaio.php:356 ../addons/email-notices/myCRED-addon-email-
178
- #: notices.php:198 ../addons/email-notices/myCRED-addon-email-notices.php:992
179
- msgid "Select"
180
- msgstr "Seleccionar"
181
-
182
- #: ../abstracts/mycred-abstract-module.php:56
183
- msgid "myCRED_Module() Error. A Module ID is required!"
184
- msgstr "Error de myCRED_Module(). ¡Se requiere una ID de Modulo!"
185
-
186
- #: ../abstracts/mycred-abstract-module.php:350 ../abstracts/mycred-abstract-
187
- #: module.php:358
188
- msgid "Surprise"
189
- msgstr "Sorpresa"
190
-
191
- #: ../abstracts/mycred-abstract-module.php:445 ../includes/mycred-network.php:83
192
- msgid "click to close"
193
- msgstr "haga clic para cerrar"
194
-
195
- #: ../abstracts/mycred-abstract-module.php:446 ../includes/mycred-network.php:84
196
- msgid "click to open"
197
- msgstr "haga clic para abrir"
198
-
199
- #: ../abstracts/mycred-abstract-module.php:479 ../addons/buy-creds/myCRED-addon-
200
- #: buy-creds.php:927
201
- msgid "Settings Updated"
202
- msgstr "Configuraciones Actualizadas"
203
 
204
- #: ../addons/badges/myCRED-addon-badges.php:48 ../addons/badges/myCRED-addon-
205
- #: badges.php:49 ../addons/badges/myCRED-addon-badges.php:50 ..
206
- #: addons/badges/myCRED-addon-badges.php:144 ../addons/badges/myCRED-addon-
207
- #: badges.php:145 ../addons/badges/myCRED-addon-badges.php:383 ..
208
- #: addons/badges/myCRED-addon-badges.php:389 ../addons/badges/myCRED-addon-
209
- #: badges.php:395
210
- msgid "Badges"
211
  msgstr ""
212
 
213
- #: ../addons/badges/myCRED-addon-badges.php:169
214
- #, php-format
215
- msgid "Badges (%d)"
216
  msgstr ""
217
 
218
- #: ../addons/badges/myCRED-addon-badges.php:260
219
- #, php-format
220
- msgid "%d Users earned this badge."
221
  msgstr ""
222
 
223
- #: ../addons/badges/myCRED-addon-badges.php:264
224
- msgid "No users has yet earned this badge."
 
 
225
  msgstr ""
226
 
227
- #: ../addons/badges/myCRED-addon-badges.php:287
228
- msgid "No connections where removed."
 
229
  msgstr ""
230
 
231
- #: ../addons/badges/myCRED-addon-badges.php:289
232
  #, php-format
233
- msgid "%s connections where removed."
234
  msgstr ""
235
 
236
- #: ../addons/badges/myCRED-addon-badges.php:384
237
- msgid "Badge"
238
  msgstr ""
239
 
240
- #: ../addons/badges/myCRED-addon-badges.php:385 ../addons/buy-creds/myCRED-addon-
241
- #: buy-creds.php:275 ../addons/buy-creds/myCRED-addon-buy-creds.php:276 ..
242
- #: addons/email-notices/myCRED-addon-email-notices.php:167 ..
243
- #: addons/ranks/myCRED-addon-ranks.php:448
244
- msgid "Add New"
245
- msgstr "Añade Nuevo"
246
 
247
- #: ../addons/badges/myCRED-addon-badges.php:386
248
- msgid "Add New Badge"
249
  msgstr ""
250
 
251
- #: ../addons/badges/myCRED-addon-badges.php:387
252
- msgid "Edit Badge"
 
 
253
  msgstr ""
254
 
255
- #: ../addons/badges/myCRED-addon-badges.php:388
256
- msgid "New Badge"
257
  msgstr ""
258
 
259
- #: ../addons/badges/myCRED-addon-badges.php:390
260
- msgid "View Badge"
261
  msgstr ""
262
 
263
- #: ../addons/badges/myCRED-addon-badges.php:391
264
- msgid "Search Badge"
 
 
265
  msgstr ""
266
 
267
- #: ../addons/badges/myCRED-addon-badges.php:392
268
- msgid "No badges found"
 
269
  msgstr ""
270
 
271
- #: ../addons/badges/myCRED-addon-badges.php:393
272
- msgid "No badges found in Trash"
 
273
  msgstr ""
274
 
275
- #: ../addons/badges/myCRED-addon-badges.php:439 ../addons/badges/myCRED-addon-
276
- #: badges.php:541
277
- msgid "Badge Name"
278
  msgstr ""
279
 
280
- #: ../addons/badges/myCRED-addon-badges.php:440
281
- msgid "Badge Images"
 
 
 
282
  msgstr ""
283
 
284
- #: ../addons/badges/myCRED-addon-badges.php:441
285
- msgid "Requirements"
 
286
  msgstr ""
287
 
288
- #: ../addons/badges/myCRED-addon-badges.php:442 ../addons/ranks/myCRED-addon-
289
- #: ranks.php:1042 ../modules/mycred-module-settings.php:636
290
- msgid "Users"
291
- msgstr "Usuarios"
 
292
 
293
- #: ../addons/badges/myCRED-addon-badges.php:481
294
- msgid "A user must have gained or lost:"
 
295
  msgstr ""
296
 
297
- #: ../addons/badges/myCRED-addon-badges.php:517 ../addons/badges/myCRED-addon-
298
- #: badges.php:520 ../addons/badges/myCRED-addon-badges.php:524 ..
299
- #: addons/badges/myCRED-addon-badges.php:525 ../addons/badges/myCRED-addon-
300
- #: badges.php:526
301
- msgid "Badge Updated."
302
  msgstr ""
303
 
304
- #: ../addons/badges/myCRED-addon-badges.php:522
305
- msgid "Badge Enabled"
306
  msgstr ""
307
 
308
- #: ../addons/badges/myCRED-addon-badges.php:523
309
- msgid "Badge Saved"
310
  msgstr ""
311
 
312
- #: ../addons/badges/myCRED-addon-badges.php:555
313
- msgid "Badge Setup"
 
314
  msgstr ""
315
 
316
- #: ../addons/badges/myCRED-addon-badges.php:582
317
- msgid "Assign Badge"
 
318
  msgstr ""
319
 
320
- #: ../addons/badges/myCRED-addon-badges.php:583
321
- msgid "Remove Connections"
322
  msgstr ""
323
 
324
- #: ../addons/badges/myCRED-addon-badges.php:638
325
- msgid "Time(s)"
 
 
 
326
  msgstr ""
327
 
328
- #: ../addons/badges/myCRED-addon-badges.php:639
329
- msgid "In total"
330
  msgstr ""
331
 
332
- #: ../addons/badges/myCRED-addon-badges.php:671 ../addons/badges/myCRED-addon-
333
- #: badges.php:771 ../addons/badges/myCRED-addon-badges.php:831 ..
334
- #: addons/badges/myCRED-addon-badges.php:846
335
- msgid "Badge Image"
336
  msgstr ""
337
 
338
- #: ../addons/badges/myCRED-addon-badges.php:672 ../addons/badges/myCRED-addon-
339
- #: badges.php:672
340
- msgid "Set badge image"
341
  msgstr ""
342
 
343
- #: ../addons/badges/myCRED-addon-badges.php:682
344
- msgid "Default Image"
 
345
  msgstr ""
346
 
347
- #: ../addons/badges/myCRED-addon-badges.php:683 ../addons/badges/myCRED-addon-
348
- #: badges.php:741 ../addons/badges/myCRED-addon-badges.php:772 ..
349
- #: addons/badges/myCRED-addon-badges.php:831
350
- msgid "image url"
351
  msgstr ""
352
 
353
- #: ../addons/badges/myCRED-addon-badges.php:684 ../addons/badges/myCRED-addon-
354
- #: badges.php:742 ../addons/badges/myCRED-addon-badges.php:773 ..
355
- #: addons/badges/myCRED-addon-badges.php:831
356
- msgid "Add Image"
357
  msgstr ""
358
 
359
- #: ../addons/badges/myCRED-addon-badges.php:685
360
- msgid "Optional image to show when a user has not yet earned this badge."
 
 
 
361
  msgstr ""
362
 
363
- #: ../addons/badges/myCRED-addon-badges.php:704 ../addons/badges/myCRED-addon-
364
- #: badges.php:756
365
- #, php-format
366
- msgid "Level %d"
367
  msgstr ""
368
 
369
- #: ../addons/badges/myCRED-addon-badges.php:709 ../addons/badges/myCRED-addon-
370
- #: badges.php:761 ../addons/badges/myCRED-addon-badges.php:831
371
- msgid "for"
 
 
372
  msgstr ""
373
 
374
- #: ../addons/badges/myCRED-addon-badges.php:740
375
- msgid "Main Image"
376
  msgstr ""
377
 
378
- #: ../addons/badges/myCRED-addon-badges.php:774 ../addons/badges/myCRED-addon-
379
- #: badges.php:831
380
- msgid "Leave empty if you do not want to assign a custom image for this level."
381
  msgstr ""
382
 
383
- #: ../addons/badges/myCRED-addon-badges.php:774 ../addons/badges/myCRED-addon-
384
- #: badges.php:831
385
- msgid "Remove this level"
386
  msgstr ""
387
 
388
- #: ../addons/badges/myCRED-addon-badges.php:788
389
- msgid "Add Level"
 
390
  msgstr ""
391
 
392
- #: ../addons/badges/myCRED-addon-badges.php:831 ../addons/badges/myCRED-addon-
393
- #: badges.php:1154
394
- msgid "Level"
395
  msgstr ""
396
 
397
- #: ../addons/badges/myCRED-addon-badges.php:848
398
- msgid "Use as Badge"
399
  msgstr ""
400
 
401
- #: ../addons/badges/myCRED-addon-badges.php:970 ../addons/badges/myCRED-addon-
402
- #: badges.php:1001 ../addons/gateway/carts/mycred-woocommerce.php:152 ..
403
- #: modules/mycred-module-buddypress.php:417
404
- msgid "Do not show"
405
- msgstr "No Mostrar"
406
 
407
- #: ../addons/badges/myCRED-addon-badges.php:971 ../modules/mycred-module-
408
- #: buddypress.php:418
409
- msgid "Include in Profile Header"
410
  msgstr ""
411
 
412
- #: ../addons/badges/myCRED-addon-badges.php:972 ../addons/ranks/myCRED-addon-
413
- #: ranks.php:1407 ../modules/mycred-module-buddypress.php:419
414
- msgid "Include under the \"Profile\" tab"
415
- msgstr "Incluir debajo de la pestaña del \"Perfil\""
 
 
416
 
417
- #: ../addons/badges/myCRED-addon-badges.php:973 ../modules/mycred-module-
418
- #: buddypress.php:420
419
- msgid "Include under the \"Profile\" tab and Profile Header"
420
  msgstr ""
421
 
422
- #: ../addons/badges/myCRED-addon-badges.php:986 ../addons/badges/myCRED-addon-
423
- #: badges.php:1017
424
- msgid "Show all badges, including badges users have not yet earned."
425
  msgstr ""
426
 
427
- #: ../addons/badges/myCRED-addon-badges.php:1002 ../addons/ranks/myCRED-addon-
428
- #: ranks.php:1452
429
- msgid "Include in Profile"
430
  msgstr ""
431
 
432
- #: ../addons/badges/myCRED-addon-badges.php:1003
433
- msgid "Include in Forum Replies"
434
  msgstr ""
435
 
436
- #: ../addons/badges/myCRED-addon-badges.php:1004
437
- msgid "Include in Profile and Forum Replies"
 
438
  msgstr ""
439
 
440
- #: ../addons/badges/myCRED-addon-badges.php:1111
441
- msgid "User Badges"
442
  msgstr ""
443
 
444
- #: ../addons/badges/myCRED-addon-badges.php:1116
445
- msgid ""
446
- "Here you can view the badges this user has earned and if needed, manually "
447
- "give or take away a badge from a user."
448
  msgstr ""
449
 
450
- #: ../addons/badges/myCRED-addon-badges.php:1125
451
- msgid "Not earned"
 
 
452
  msgstr ""
453
 
454
- #: ../addons/badges/myCRED-addon-badges.php:1131 ../addons/badges/myCRED-addon-
455
- #: badges.php:1168
456
- msgid "Earned"
457
  msgstr ""
458
 
459
- #: ../addons/badges/myCRED-addon-badges.php:1143
460
- msgid "No image"
461
  msgstr ""
462
 
463
- #: ../addons/badges/myCRED-addon-badges.php:1150
464
- msgid "Select a level"
465
  msgstr ""
466
 
467
- #: ../addons/badges/myCRED-addon-badges.php:1165 ../addons/email-notices/myCRED-
468
- #: addon-email-notices.php:810
469
- msgid "Status"
470
- msgstr "Estatus"
 
471
 
472
- #: ../addons/badges/myCRED-addon-badges.php:1182 ../addons/email-notices/myCRED-
473
- #: addon-email-notices.php:1296
474
- msgid "Save Changes"
475
  msgstr ""
476
 
477
- #: ../addons/badges/includes/mycred-badge-functions.php:68
478
  #, php-format
479
- msgid "Level %s"
480
  msgstr ""
481
 
482
- #: ../addons/badges/includes/mycred-badge-functions.php:71
483
  #, php-format
484
- msgctxt "\"Points\" for \"reference\" \"x time(s)\" - Level"
485
- msgid "%s for %s %s - %s"
486
  msgstr ""
487
 
488
- #: ../addons/badges/includes/mycred-badge-functions.php:71 ..
489
- #: addons/coupons/myCRED-addon-coupons.php:202 ../addons/coupons/myCRED-addon-
490
- #: coupons.php:469
491
  #, php-format
492
- msgid "1 time"
493
- msgid_plural "%d times"
494
- msgstr[0] ""
495
- msgstr[1] ""
496
 
497
- #: ../addons/badges/includes/mycred-badge-functions.php:73
498
  #, php-format
499
- msgctxt "\"x points\" for \"reference\" in total"
500
- msgid "%s for %s in total"
501
  msgstr ""
502
 
503
- #: ../addons/banking/myCRED-addon-banking.php:44 ../addons/banking/myCRED-addon-
504
- #: banking.php:45 ../addons/banking/myCRED-addon-banking.php:46
505
- msgid "Banking"
506
- msgstr "Banco"
507
 
508
- #: ../addons/banking/myCRED-addon-banking.php:158
509
- msgid "Central Banking"
510
  msgstr ""
511
 
512
- #: ../addons/banking/myCRED-addon-banking.php:159
513
- #, php-format
514
- msgid ""
515
- "Instead of creating %_plural% out of thin-air, all payouts are made from a "
516
- "nominated \"Central Bank\" account. Any %_plural% a user spends or loses are "
517
- "deposited back into this account."
518
  msgstr ""
519
 
520
- #: ../addons/banking/myCRED-addon-banking.php:165 ..
521
- #: addons/banking/services/mycred-bank-service-interest.php:512
522
- msgid "Compound Interest"
523
- msgstr "Interés Compuesto"
524
 
525
- #: ../addons/banking/myCRED-addon-banking.php:166
526
- #, php-format
527
- msgid "Apply a positive or negative interest rate on your users %_plural% balances."
528
  msgstr ""
529
 
530
- #: ../addons/banking/myCRED-addon-banking.php:172
531
- msgid "Recurring Payouts"
532
- msgstr "Pagos Recurrentes"
 
 
 
533
 
534
- #: ../addons/banking/myCRED-addon-banking.php:173
535
- msgid "Setup mass %_singular% payouts for your users."
536
  msgstr ""
537
 
538
- #: ../addons/banking/myCRED-addon-banking.php:219 ../addons/buy-creds/myCRED-
539
- #: addon-buy-creds.php:916 ../addons/buy-creds/myCRED-addon-buy-creds.php:1022 ..
540
- #: addons/stats/myCRED-addon-stats.php:182 ../includes/mycred-admin.php:587 ..
541
- #: includes/mycred-network.php:125 ../modules/mycred-module-addons.php:303 ..
542
- #: modules/mycred-module-hooks.php:193 ../modules/mycred-module-log.php:358 ..
543
- #: modules/mycred-module-log.php:647 ../modules/mycred-module-settings.php:484
544
- msgid "Access Denied"
545
- msgstr "Acceso Denegado"
546
 
547
- #: ../addons/banking/myCRED-addon-banking.php:225
548
- #, php-format
549
- msgid "%s Banking"
550
- msgstr "%s Bancario"
551
 
552
- #: ../addons/banking/myCRED-addon-banking.php:228
553
- msgid "Your banking setup for %plural%."
554
  msgstr ""
555
 
556
- #: ../addons/banking/myCRED-addon-banking.php:231
557
- msgid "WP-Cron deactivation detected!"
558
- msgstr "¡Se detecto la desactivación de WP-Cron!"
 
 
559
 
560
- #: ../addons/banking/myCRED-addon-banking.php:232
561
- msgid "Warning! This add-on requires WP - Cron to work."
562
- msgstr "¡Aviso! Esta extensión requiere WP - Cron para funcionar."
563
 
564
- #: ../addons/banking/myCRED-addon-banking.php:248 ../addons/buy-creds/myCRED-
565
- #: addon-buy-creds.php:954 ../modules/mycred-module-hooks.php:222
566
- msgid "Enable"
567
- msgstr "Activar"
568
 
569
- #: ../addons/banking/myCRED-addon-banking.php:261 ../modules/mycred-module-hooks.
570
- #: php:240
571
- msgid "Update Changes"
572
- msgstr "Actualizar Cambios"
573
 
574
- #: ../addons/banking/abstracts/mycred-abstract-service.php:79
575
- msgid "This Service has no settings"
576
- msgstr "Este servicio no ha sido configurado"
 
577
 
578
- #. also, "Cada Hora"
579
- #: ../addons/banking/abstracts/mycred-abstract-service.php:233
580
- msgid "Hourly"
581
- msgstr "Por Hora"
582
 
583
- #: ../addons/banking/abstracts/mycred-abstract-service.php:237
584
- msgid "Daily"
585
- msgstr "Diario"
 
586
 
587
- #: ../addons/banking/abstracts/mycred-abstract-service.php:241
588
- msgid "Weekly"
589
- msgstr "Semanal"
 
590
 
591
- #: ../addons/banking/abstracts/mycred-abstract-service.php:245
592
- msgid "Monthly"
593
- msgstr "Mensual"
 
594
 
595
- #: ../addons/banking/abstracts/mycred-abstract-service.php:249
596
- msgid "Quarterly"
597
- msgstr "Trimestral"
 
598
 
599
- #: ../addons/banking/abstracts/mycred-abstract-service.php:253
600
- msgid "Semiannually"
601
- msgstr "Semestral"
602
 
603
- #: ../addons/banking/abstracts/mycred-abstract-service.php:257
604
- msgid "Annually"
605
- msgstr "Anual"
606
 
607
- #: ../addons/banking/services/mycred-bank-service-central.php:105
608
- msgid "Bank User"
609
  msgstr ""
610
 
611
- #: ../addons/banking/services/mycred-bank-service-central.php:109
612
- msgid "The user ID of the central bank account. This user can not be excluded!"
 
 
613
  msgstr ""
614
 
615
- #: ../addons/banking/services/mycred-bank-service-central.php:112
616
- msgid "Ignore Manual Adjustments"
617
  msgstr ""
618
 
619
- #: ../addons/banking/services/mycred-bank-service-interest.php:24
620
- msgid "%plural% interest rate payment"
621
- msgstr "%plural% pago de tasa de interés"
 
 
622
 
623
- #: ../addons/banking/services/mycred-bank-service-interest.php:379
624
- msgid "Compounding Interest"
625
  msgstr ""
626
 
627
- #: ../addons/banking/services/mycred-bank-service-interest.php:379
628
- #, php-format
629
- msgid "%d Users are left to process."
630
  msgstr ""
631
 
632
- #: ../addons/banking/services/mycred-bank-service-interest.php:388
633
- msgid "Payout History"
634
  msgstr ""
635
 
636
- #: ../addons/banking/services/mycred-bank-service-interest.php:392 ..
637
- #: addons/banking/services/mycred-bank-service-interest.php:409 ..
638
- #: addons/banking/services/mycred-bank-service-payouts.php:250
639
- msgid "Run Count"
640
  msgstr ""
641
 
642
- #: ../addons/banking/services/mycred-bank-service-interest.php:397
643
- msgid "Last Payout"
644
  msgstr ""
645
 
646
- #: ../addons/banking/services/mycred-bank-service-interest.php:397 ..
647
- #: addons/banking/services/mycred-bank-service-interest.php:414
648
- msgid "Activated"
649
  msgstr ""
650
 
651
- #: ../addons/banking/services/mycred-bank-service-interest.php:401
652
- msgid "Total Payed Interest"
653
  msgstr ""
654
 
655
- #: ../addons/banking/services/mycred-bank-service-interest.php:405
656
- msgid "Compound History"
657
  msgstr ""
658
 
659
- #: ../addons/banking/services/mycred-bank-service-interest.php:414
660
- msgid "Last Interest Compound"
661
  msgstr ""
662
 
663
- #: ../addons/banking/services/mycred-bank-service-interest.php:418
664
- msgid "Total Compounded Interest"
665
  msgstr ""
666
 
667
- #: ../addons/banking/services/mycred-bank-service-interest.php:422 ..
668
- #: addons/banking/services/mycred-bank-service-interest.php:549
669
- msgid "Interest Rate"
670
- msgstr "Tasa de Interés"
671
 
672
- #: ../addons/banking/services/mycred-bank-service-interest.php:425
673
- msgid "Default Rate"
674
  msgstr ""
675
 
676
- #: ../addons/banking/services/mycred-bank-service-interest.php:427 ..
677
- #: addons/banking/services/mycred-bank-service-payouts.php:268
678
- msgid "Can not be zero."
679
- msgstr "No puede ser cero."
680
 
681
- #: ../addons/banking/services/mycred-bank-service-interest.php:430 ..
682
- #: addons/gateway/carts/mycred-wpecommerce.php:367
683
- msgid "Payout"
684
- msgstr "Desembolso"
685
 
686
- #. can also be "Plantilla de Bitácora"
687
- #: ../addons/banking/services/mycred-bank-service-interest.php:435 ..
688
- #: addons/banking/services/mycred-bank-service-payouts.php:283 ../addons/buy-
689
- #: creds/myCRED-addon-buy-creds.php:672 ../addons/buy-creds/myCRED-addon-buy-
690
- #: creds.php:735 ../addons/coupons/myCRED-addon-coupons.php:502 ..
691
- #: addons/gateway/carts/mycred-marketpress.php:395 ..
692
- #: addons/gateway/carts/mycred-marketpress.php:428 ..
693
- #: addons/gateway/carts/mycred-woocommerce.php:104 ..
694
- #: addons/gateway/carts/mycred-woocommerce.php:176 ..
695
- #: addons/gateway/carts/mycred-wpecommerce.php:371 ../modules/mycred-module-
696
- #: hooks.php:1004 ../modules/mycred-module-hooks.php:2025 ../modules/mycred-
697
- #: module-hooks.php:2395 ../plugins/mycred-hook-badgeOS.php:124 ../plugins/mycred-
698
- #: hook-badgeOS.php:126 ../plugins/mycred-hook-badgeOS.php:135 ../plugins/mycred-
699
- #: hook-events-manager-light.php:196 ../plugins/mycred-hook-events-manager-light.
700
- #: php:209 ../plugins/mycred-hook-gd-star-rating.php:109 ../plugins/mycred-hook-
701
- #: gd-star-rating.php:122 ../plugins/mycred-hook-woocommerce.php:321 ..
702
- #: plugins/mycred-hook-wp-favorite-posts.php:217 ../plugins/mycred-hook-wp-
703
- #: favorite-posts.php:235 ../plugins/mycred-hook-wp-favorite-posts.php:249 ..
704
- #: plugins/mycred-hook-wp-favorite-posts.php:262 ../plugins/mycred-hook-wp-polls.
705
- #: php:136
706
- msgid "Log Template"
707
- msgstr "Plantilla de Registro"
708
 
709
- #: ../addons/banking/services/mycred-bank-service-interest.php:442 ..
710
- #: addons/banking/services/mycred-bank-service-payouts.php:290 ..
711
- #: addons/coupons/myCRED-addon-coupons.php:438
712
- msgid "Minimum Balance"
713
- msgstr "Saldo Minimo"
714
 
715
- #: ../addons/banking/services/mycred-bank-service-interest.php:446 ..
716
- #: addons/banking/services/mycred-bank-service-payouts.php:294
717
- msgid "Optional minimum balance requirement."
718
  msgstr ""
719
 
720
- #: ../addons/banking/services/mycred-bank-service-interest.php:449 ..
721
- #: addons/banking/services/mycred-bank-service-payouts.php:297
722
- msgid "Exclude"
723
  msgstr ""
724
 
725
- #: ../addons/banking/services/mycred-bank-service-interest.php:452 ..
726
- #: addons/banking/services/mycred-bank-service-payouts.php:300
727
- msgid "Comma separated list of user IDs"
728
  msgstr ""
729
 
730
- #: ../addons/banking/services/mycred-bank-service-interest.php:456 ..
731
- #: addons/banking/services/mycred-bank-service-payouts.php:304
732
- msgid "Roles"
733
  msgstr ""
734
 
735
- #: ../addons/banking/services/mycred-bank-service-interest.php:522
736
- msgid "This user is excluded from receiving interest on this balance."
737
  msgstr ""
738
 
739
- #: ../addons/banking/services/mycred-bank-service-interest.php:525
740
- msgid "Remove from Excluded List"
741
  msgstr ""
742
 
743
- #: ../addons/banking/services/mycred-bank-service-interest.php:537
744
- msgid "This user role is excluded from receiving interest on this balance."
745
  msgstr ""
746
 
747
- #: ../addons/banking/services/mycred-bank-service-interest.php:552 ../addons/buy-
748
- #: creds/myCRED-addon-buy-creds.php:836 ../addons/sell-content/myCRED-addon-sell-
749
- #: content.php:114
750
- msgid "Leave empty to use the default value."
751
  msgstr ""
752
 
753
- #: ../addons/banking/services/mycred-bank-service-interest.php:558
754
- msgid "Save Interest Rate"
755
  msgstr ""
756
 
757
- #: ../addons/banking/services/mycred-bank-service-interest.php:559
758
- msgid "Exclude from receiving interest"
759
  msgstr ""
760
 
761
- #: ../addons/banking/services/mycred-bank-service-interest.php:676
762
- msgid "Compound interest rate saved."
763
  msgstr ""
764
 
765
- #: ../addons/banking/services/mycred-bank-service-interest.php:678
766
- msgid "User excluded from receiving interest."
767
  msgstr ""
768
 
769
- #: ../addons/banking/services/mycred-bank-service-interest.php:680
770
- msgid "User included in receiving interest."
771
  msgstr ""
772
 
773
- #: ../addons/banking/services/mycred-bank-service-payouts.php:21
774
- msgid "Daily %_plural%"
775
- msgstr "%_plural% diarios"
776
 
777
- #: ../addons/banking/services/mycred-bank-service-payouts.php:246 ..
778
- #: includes/mycred-admin.php:426 ../modules/mycred-module-log.php:276 ..
779
- #: modules/mycred-module-log.php:277
780
- msgid "History"
781
- msgstr "Historial"
782
 
783
- #: ../addons/banking/services/mycred-bank-service-payouts.php:255
784
- msgid "Last Run"
785
  msgstr ""
786
 
787
- #: ../addons/banking/services/mycred-bank-service-payouts.php:259
788
- msgid "Total Payouts"
789
  msgstr ""
790
 
791
- #: ../addons/banking/services/mycred-bank-service-payouts.php:263
792
- msgid "Pay Users"
793
- msgstr "Pagar a los Usuarios"
794
 
795
- #: ../addons/banking/services/mycred-bank-service-payouts.php:266 ../addons/buy-
796
- #: creds/myCRED-addon-buy-creds.php:343 ../addons/buy-creds/myCRED-addon-buy-
797
- #: creds.php:1633 ../addons/buy-creds/myCRED-addon-buy-creds.php:1713 ..
798
- #: addons/buy-creds/abstracts/mycred-abstract-payment-gateway.php:593 ..
799
- #: includes/mycred-admin.php:752 ../includes/mycred-admin.php:804 ..
800
- #: includes/mycred-shortcodes.php:972 ../includes/mycred-shortcodes.php:1115 ..
801
- #: plugins/mycred-hook-affiliatewp.php:256
802
- msgid "Amount"
803
- msgstr "Cantidad"
804
 
805
- #: ../addons/banking/services/mycred-bank-service-payouts.php:271 ..
806
- #: modules/mycred-module-hooks.php:2410
807
- msgid "Interval"
808
- msgstr "Interval"
809
 
810
- #: ../addons/banking/services/mycred-bank-service-payouts.php:276
811
- msgid "Cycles"
812
- msgstr "Ciclos"
813
 
814
- #: ../addons/banking/services/mycred-bank-service-payouts.php:278
815
- msgid "Set to -1 for unlimited"
816
- msgstr "Ajusta a -1 para ilimitado"
817
 
818
- #: ../addons/banking/services/mycred-bank-service-payouts.php:281
819
- msgid "Important"
820
- msgstr "Importante"
821
 
822
- #: ../addons/banking/services/mycred-bank-service-payouts.php:281
823
- msgid ""
824
- "You can always stop payouts by deactivating this service. Just remember that "
825
- "if you deactivate while there are cycles left, this service will continue on "
826
- "when it gets re-activated. Set cycles to zero to reset."
827
  msgstr ""
828
- "Siempre se puede detener los desembolsos mediante la desactivación de este "
829
- "servicio. Pero recuerda que si lo desactivas mientras que todavia quedan "
830
- "ciclos para completar, este servicio volverá a continuar en cuando se vuelvá "
831
- "a activar. Fija o configura los ciclos a cero para reiniciar.\n"
832
 
833
- #: ../addons/buy-creds/myCRED-addon-buy-creds.php:56 ../addons/buy-creds/myCRED-
834
- #: addon-buy-creds.php:57 ../addons/buy-creds/myCRED-addon-buy-creds.php:58
835
- msgid "Payment Gateways"
836
- msgstr "Pasarela de Pago"
837
 
838
- #: ../addons/buy-creds/myCRED-addon-buy-creds.php:269
839
- msgctxt "Post Type General Name"
840
- msgid "Pending Payments"
841
  msgstr ""
842
 
843
- #: ../addons/buy-creds/myCRED-addon-buy-creds.php:270
844
- msgctxt "Post Type Singular Name"
845
- msgid "Pending Payment"
846
  msgstr ""
847
 
848
- #: ../addons/buy-creds/myCRED-addon-buy-creds.php:271 ../addons/buy-creds/myCRED-
849
- #: addon-buy-creds.php:273 ../addons/buy-creds/myCRED-addon-buy-creds.php:284
850
- msgid "Pending Payments"
851
  msgstr ""
852
 
853
- #: ../addons/buy-creds/myCRED-addon-buy-creds.php:277
854
- msgid "Edit Pending Payment"
855
  msgstr ""
856
 
857
- #: ../addons/buy-creds/myCRED-addon-buy-creds.php:280 ../addons/buy-creds/myCRED-
858
- #: addon-buy-creds.php:1752
859
- msgid "No pending payments found"
860
  msgstr ""
861
 
862
- #: ../addons/buy-creds/myCRED-addon-buy-creds.php:281
863
- msgid "Not found in Trash"
864
  msgstr ""
865
 
866
- #: ../addons/buy-creds/myCRED-addon-buy-creds.php:340 ../addons/buy-creds/myCRED-
867
- #: addon-buy-creds.php:1078 ../addons/buy-creds/myCRED-addon-buy-creds.php:1711
868
- msgid "Transaction ID"
869
- msgstr "Identificación de la Transacción"
870
 
871
- #: ../addons/buy-creds/myCRED-addon-buy-creds.php:342 ../addons/buy-creds/myCRED-
872
- #: addon-buy-creds.php:1074
873
- msgid "Buyer"
874
  msgstr ""
875
 
876
- #: ../addons/buy-creds/myCRED-addon-buy-creds.php:344 ../addons/buy-creds/myCRED-
877
- #: addon-buy-creds.php:1714 ../addons/buy-creds/abstracts/mycred-abstract-payment-
878
- #: gateway.php:594
879
- msgid "Cost"
880
- msgstr "Costo"
881
 
882
- #: ../addons/buy-creds/myCRED-addon-buy-creds.php:345 ../addons/buy-creds/myCRED-
883
- #: addon-buy-creds.php:1073 ../addons/buy-creds/myCRED-addon-buy-creds.php:1712 ..
884
- #: includes/mycred-overview.php:166 ../includes/mycred-overview.php:173
885
- msgid "Gateway"
886
- msgstr "Pasarela"
887
 
888
- #: ../addons/buy-creds/myCRED-addon-buy-creds.php:346
889
- msgid "Type"
890
  msgstr ""
891
 
892
- #: ../addons/buy-creds/myCRED-addon-buy-creds.php:439
893
- msgid "Pay Out"
894
  msgstr ""
895
 
896
- #: ../addons/buy-creds/myCRED-addon-buy-creds.php:473
897
- msgid "buyCRED Purchase Log"
898
- msgstr "compraCRED Registro de Compras"
899
 
900
- #: ../addons/buy-creds/myCRED-addon-buy-creds.php:474 ../addons/buy-creds/myCRED-
901
- #: addon-buy-creds.php:725 ../addons/buy-creds/myCRED-addon-buy-creds.php:922
902
- msgid "Purchase Log"
903
- msgstr "Registro de Compras"
904
 
905
- #: ../addons/buy-creds/myCRED-addon-buy-creds.php:578 ../addons/gateway/event-
906
- #: booking/mycred-eventespresso3.php:26 ../addons/gateway/event-booking/mycred-
907
- #: eventsmanager-pro.php:516 ../addons/gateway/event-booking/mycred-eventsmanager.
908
- #: php:540 ../addons/sell-content/myCRED-addon-sell-content.php:424
909
- msgid "Payments"
910
- msgstr "Pagos"
911
 
912
- #: ../addons/buy-creds/myCRED-addon-buy-creds.php:612
913
- msgid "Please login to purchase %_plural%"
914
- msgstr "Identifícate antes de comprar %_plural%"
915
 
916
- #: ../addons/buy-creds/myCRED-addon-buy-creds.php:627
917
- #, php-format
918
- msgid "Gift purchase from %display_name%."
919
- msgstr "Regalo comprado de parte de %display_name%."
920
 
921
- #: ../addons/buy-creds/myCRED-addon-buy-creds.php:642 ../addons/ranks/myCRED-
922
- #: addon-ranks.php:1084
923
- msgid "Minimum %plural%"
924
- msgstr "Minimo %_plural%"
925
 
926
- #: ../addons/buy-creds/myCRED-addon-buy-creds.php:646
927
- msgid "Minimum amount of %plural% a user must purchase. Will default to 1."
928
  msgstr ""
929
- "La mínima cantidad de %plural% que el usuario debe comprar. Sera predefinido "
930
- "a 1."
931
 
932
- #: ../addons/buy-creds/myCRED-addon-buy-creds.php:651 ../addons/transfer/myCRED-
933
- #: addon-transfer.php:211 ../includes/mycred-widgets.php:598 ../modules/mycred-
934
- #: module-settings.php:656
935
- msgid "Point Types"
936
- msgstr "Tipo de Puntos"
937
 
938
- #: ../addons/buy-creds/myCRED-addon-buy-creds.php:654
939
- msgid "Select the point types that users can buy. You must select at least one!"
940
  msgstr ""
941
 
942
- #: ../addons/buy-creds/myCRED-addon-buy-creds.php:665
943
- msgid "Login Template"
944
- msgstr "Plantilla de Ingreso"
945
 
946
- #: ../addons/buy-creds/myCRED-addon-buy-creds.php:669
947
- msgid "Content to show when a user is not logged in."
948
- msgstr "Mostrar este contenido cuando un usuario no ha sido ingresado."
949
 
950
- #: ../addons/buy-creds/myCRED-addon-buy-creds.php:679
951
- msgid "Thank You Page"
952
- msgstr "Página de Agradecimiento"
953
 
954
- #: ../addons/buy-creds/myCRED-addon-buy-creds.php:682 ../addons/buy-creds/myCRED-
955
- #: addon-buy-creds.php:705
956
- msgid "Custom URL"
957
- msgstr "URL Personalizada"
958
 
959
- #: ../addons/buy-creds/myCRED-addon-buy-creds.php:687 ../addons/buy-creds/myCRED-
960
- #: addon-buy-creds.php:710
961
- msgid "Page"
962
- msgstr "Página"
963
 
964
- #: ../addons/buy-creds/myCRED-addon-buy-creds.php:702
965
- msgid "Cancellation Page"
966
- msgstr "Página de Cancelación"
967
 
968
- #: ../addons/buy-creds/myCRED-addon-buy-creds.php:727
969
- msgid "Show seperate log for %_plural% purchases."
970
- msgstr "Mostrar registro distinto para compras de %_plural%."
971
 
972
- #: ../addons/buy-creds/myCRED-addon-buy-creds.php:729
973
- msgid "Gifting"
974
- msgstr "Regalar"
975
 
976
- #: ../addons/buy-creds/myCRED-addon-buy-creds.php:731
977
  #, php-format
978
- msgid "Allow users to buy %_plural% for other users."
979
- msgstr "Prmita que usuarios compren %_plural% para otros usuarios."
980
 
981
- #: ../addons/buy-creds/myCRED-addon-buy-creds.php:732
 
 
 
 
 
982
  #, php-format
983
- msgid "Allow users to buy %_plural% for content authors."
984
- msgstr "Prmita que usuarios compren %_plural% para autores de contenido."
985
 
986
- #: ../addons/buy-creds/myCRED-addon-buy-creds.php:740 ../modules/mycred-module-
987
- #: hooks.php:3110
988
- msgid "Available Shortcodes"
989
- msgstr "Códigos cortos Disponibles"
990
 
991
- #: ../addons/buy-creds/myCRED-addon-buy-creds.php:830
992
  #, php-format
993
- msgid "%s Exchange Rate"
994
  msgstr ""
995
 
996
- #: ../addons/buy-creds/myCRED-addon-buy-creds.php:844
997
- msgid "Save Exchange Rates"
998
  msgstr ""
999
 
1000
- #: ../addons/buy-creds/myCRED-addon-buy-creds.php:900
1001
- msgid "Exchange rate override saved"
1002
  msgstr ""
1003
 
1004
- #: ../addons/buy-creds/myCRED-addon-buy-creds.php:903
1005
- msgid "Payment completed"
1006
  msgstr ""
1007
 
1008
- #: ../addons/buy-creds/myCRED-addon-buy-creds.php:922
 
 
 
 
1009
  #, php-format
1010
- msgid "%s Payment Gateways"
1011
- msgstr "%s Pasarelas de Pago"
 
 
1012
 
1013
- #: ../addons/buy-creds/myCRED-addon-buy-creds.php:922 ../addons/buy-creds/myCRED-
1014
- #: addon-buy-creds.php:1085
1015
- msgid "buyCRED Settings"
1016
- msgstr "Configuraciones de compraCRED"
1017
 
1018
- #: ../addons/buy-creds/myCRED-addon-buy-creds.php:947
1019
- msgid "Test Mode"
1020
- msgstr "Modo de Prueba"
 
 
 
 
1021
 
1022
- #: ../addons/buy-creds/myCRED-addon-buy-creds.php:949
1023
- msgid "Enabled"
1024
- msgstr "Habilitado"
 
1025
 
1026
- #. also, "Inhabilitar"
1027
- #: ../addons/buy-creds/myCRED-addon-buy-creds.php:952
1028
- msgid "Disabled"
1029
- msgstr "Deshactivado"
1030
 
1031
- #: ../addons/buy-creds/myCRED-addon-buy-creds.php:962
1032
- msgid "Sandbox Mode"
1033
- msgstr "Modo Entorno Aislado"
 
1034
 
1035
- #: ../addons/buy-creds/myCRED-addon-buy-creds.php:965
1036
- msgid "Enable for test purchases."
1037
- msgstr "Habilitar para compras de prueba."
 
 
1038
 
1039
- #: ../addons/buy-creds/myCRED-addon-buy-creds.php:986 ../addons/gateway/event-
1040
- #: booking/mycred-eventespresso3.php:502 ../modules/mycred-module-settings.php:739
1041
- msgid "Update Settings"
1042
- msgstr "Actualizar Configuraciones"
1043
 
1044
- #: ../addons/buy-creds/myCRED-addon-buy-creds.php:987
1045
- msgid "More Gateways"
1046
  msgstr ""
1047
 
1048
- #: ../addons/buy-creds/myCRED-addon-buy-creds.php:1075 ../includes/mycred-log.php:
1049
- #: 756
1050
- msgid "Date"
1051
- msgstr "Fecha"
1052
 
1053
- #: ../addons/buy-creds/myCRED-addon-buy-creds.php:1077
1054
- msgid "Payed"
1055
- msgstr "Pagado"
 
1056
 
1057
- #: ../addons/buy-creds/myCRED-addon-buy-creds.php:1085
1058
- msgid "<strong>buy</strong>CRED Purchase Log"
1059
- msgstr "Registro de Compras de <strong>compra</strong>CRED"
 
1060
 
1061
- #: ../addons/buy-creds/myCRED-addon-buy-creds.php:1085 ../addons/gateway/event-
1062
- #: booking/mycred-eventespresso3.php:367
1063
- msgid "Gateway Settings"
1064
- msgstr "Configuraciones de la Pasarela de Pago"
1065
 
1066
- #: ../addons/buy-creds/myCRED-addon-buy-creds.php:1270 ../addons/sell-
1067
- #: content/myCRED-addon-sell-content.php:1210
1068
- msgid "No purchases found"
1069
- msgstr "No se encontro ninguna compra"
1070
 
1071
- #: ../addons/buy-creds/myCRED-addon-buy-creds.php:1347 ../addons/buy-creds/myCRED-
1072
- #: addon-buy-creds.php:1464
1073
- msgid "This Add-on needs to setup before you can use this shortcode."
1074
  msgstr ""
1075
- "Esta extensión (add-on) debe ser configurado antes de poder usar este código "
1076
- "corto (shortcode)."
1077
 
1078
- #: ../addons/buy-creds/myCRED-addon-buy-creds.php:1366 ../addons/buy-creds/myCRED-
1079
- #: addon-buy-creds.php:1483
1080
- msgid "No gateways installed."
1081
- msgstr "Ningun pasarela de pago instalado."
1082
 
1083
- #: ../addons/buy-creds/myCRED-addon-buy-creds.php:1367 ../addons/buy-creds/myCRED-
1084
- #: addon-buy-creds.php:1484
1085
- msgid "Gateway does not exist."
1086
- msgstr "Puerta de enlace no existe."
1087
 
1088
- #: ../addons/buy-creds/myCRED-addon-buy-creds.php:1415
1089
- msgid "Yourself"
1090
- msgstr "Tu mismo"
 
1091
 
1092
- #: ../addons/buy-creds/myCRED-addon-buy-creds.php:1485
1093
- msgid "No active gateways found."
1094
- msgstr "No se encuentra ningun puerta de enlace activo."
1095
 
1096
- #: ../addons/buy-creds/myCRED-addon-buy-creds.php:1486
1097
- msgid "The selected gateway is not active."
1098
- msgstr "La puerta de enlace seleccionada no esta activo."
1099
 
1100
- #: ../addons/buy-creds/myCRED-addon-buy-creds.php:1533
1101
- #, php-format
1102
- msgid "Buy with %gateway%"
1103
- msgstr "Compra con %gateway%"
1104
 
1105
- #: ../addons/buy-creds/myCRED-addon-buy-creds.php:1539 ../addons/sell-
1106
- #: content/myCRED-addon-sell-content.php:44
1107
- msgid "Buy Now"
1108
- msgstr "Compra Ahora"
1109
 
1110
- #: ../addons/buy-creds/myCRED-addon-buy-creds.php:1584
1111
- msgid "No users found"
1112
- msgstr "Ningun Usuario Encontrado"
1113
 
1114
- #: ../addons/buy-creds/myCRED-addon-buy-creds.php:1594
1115
- msgid "To"
1116
- msgstr "A"
1117
 
1118
- #: ../addons/buy-creds/myCRED-addon-buy-creds.php:1611
1119
- msgid "Select Amount"
1120
- msgstr "Selecciona la Cantidad"
1121
 
1122
- #: ../addons/buy-creds/myCRED-addon-buy-creds.php:1635
1123
- msgid "min."
1124
- msgstr "min."
1125
 
1126
- #: ../addons/buy-creds/myCRED-addon-buy-creds.php:1643
1127
- msgid "Select Gateway"
1128
- msgstr "Selecciona la Pasarela de Pago"
1129
 
1130
- #: ../addons/buy-creds/myCRED-addon-buy-creds.php:1686 ../addons/gateway/event-
1131
- #: booking/mycred-eventespresso3.php:27 ../addons/gateway/event-booking/mycred-
1132
- #: eventsmanager-pro.php:39 ../addons/gateway/event-booking/mycred-eventsmanager.
1133
- #: php:35
1134
- msgid "Pay Now"
1135
- msgstr "Pagar Ahora"
1136
 
1137
- #: ../addons/buy-creds/myCRED-addon-buy-creds.php:1687 ../includes/mycred-install.
1138
- #: php:536
1139
- msgid "Cancel"
1140
- msgstr "Cancelar"
1141
 
1142
- #: ../addons/buy-creds/myCRED-addon-buy-creds.php:1715 ../addons/ranks/myCRED-
1143
- #: addon-ranks.php:1612 ../modules/mycred-module-log.php:407 ../modules/mycred-
1144
- #: module-settings.php:625 ../modules/mycred-module-settings.php:640
1145
- msgid "Actions"
1146
- msgstr "Acciones"
1147
 
1148
- #: ../addons/buy-creds/abstracts/mycred-abstract-payment-gateway.php:114
1149
- msgid "This Payment Gateway has no settings"
1150
- msgstr "Esta Pasarela de Pago no ha sido configurado"
1151
 
1152
- #: ../addons/buy-creds/abstracts/mycred-abstract-payment-gateway.php:151
1153
- msgid "Select currency"
1154
- msgstr "Elige moneda"
1155
-
1156
- #: ../addons/buy-creds/abstracts/mycred-abstract-payment-gateway.php:352
1157
- msgid "Incoming confirmation call detected"
1158
- msgstr "Se detectó una llamada entrante de la confirmación."
1159
-
1160
- #: ../addons/buy-creds/abstracts/mycred-abstract-payment-gateway.php:353
1161
- #, php-format
1162
- msgid "Gateway identified itself as \"%s\""
1163
- msgstr "Puerta de enlace se identifico como \"%s\""
1164
-
1165
- #: ../addons/buy-creds/abstracts/mycred-abstract-payment-gateway.php:354
1166
- msgid "Verifying caller"
1167
- msgstr "Verificando la llamada"
1168
-
1169
- #. also, "Pago de Prueba" depending on context
1170
- #: ../addons/buy-creds/abstracts/mycred-abstract-payment-gateway.php:400
1171
- msgid "Test Payment"
1172
- msgstr "Probar Pago"
1173
-
1174
- #: ../addons/buy-creds/abstracts/mycred-abstract-payment-gateway.php:404 ..
1175
- #: addons/gateway/carts/mycred-marketpress.php:179
1176
- msgid "Payment"
1177
- msgstr "PAgo"
1178
-
1179
- #: ../addons/buy-creds/abstracts/mycred-abstract-payment-gateway.php:424
1180
- msgid "Cancel purchase"
1181
- msgstr "Cancelar la compra"
1182
 
1183
- #: ../addons/buy-creds/abstracts/mycred-abstract-payment-gateway.php:503 ..
1184
- #: includes/mycred-admin.php:745 ../includes/mycred-admin.php:789
1185
- msgid "required"
1186
- msgstr "necesario"
1187
 
1188
- #: ../addons/buy-creds/abstracts/mycred-abstract-payment-gateway.php:504 ..
1189
- #: includes/mycred-admin.php:747 ../includes/mycred-admin.php:791
1190
- msgid "optional"
1191
- msgstr "opcional"
1192
 
1193
- #: ../addons/buy-creds/abstracts/mycred-abstract-payment-gateway.php:509
1194
- msgid "First Name"
1195
- msgstr "Nombre"
1196
 
1197
- #: ../addons/buy-creds/abstracts/mycred-abstract-payment-gateway.php:513
1198
- msgid "Last Name"
1199
- msgstr "Apellido"
 
 
 
1200
 
1201
- #: ../addons/buy-creds/abstracts/mycred-abstract-payment-gateway.php:517
1202
- msgid "Address Line 1"
1203
- msgstr "Dirección Linea 1"
 
1204
 
1205
- #: ../addons/buy-creds/abstracts/mycred-abstract-payment-gateway.php:521
1206
- msgid "Address Line 2"
1207
- msgstr "Dirección Linea 2"
1208
 
1209
- #: ../addons/buy-creds/abstracts/mycred-abstract-payment-gateway.php:525
1210
- msgid "City"
1211
- msgstr "Ciudad"
1212
 
1213
- #: ../addons/buy-creds/abstracts/mycred-abstract-payment-gateway.php:529
1214
- msgid "Zip"
1215
- msgstr "Código Postal"
 
1216
 
1217
- #: ../addons/buy-creds/abstracts/mycred-abstract-payment-gateway.php:533
1218
- msgid "State"
1219
- msgstr "Estado/Provincia"
 
1220
 
1221
- #: ../addons/buy-creds/abstracts/mycred-abstract-payment-gateway.php:537
1222
- msgid "Country"
1223
- msgstr "País"
1224
 
1225
- #: ../addons/buy-creds/abstracts/mycred-abstract-payment-gateway.php:540
1226
- msgid "Choose Country"
1227
- msgstr "Eliga el País"
 
1228
 
1229
- #: ../addons/buy-creds/abstracts/mycred-abstract-payment-gateway.php:587
1230
  #, php-format
1231
- msgid "%s Purchase"
1232
- msgstr "Compra %s"
1233
-
1234
- #: ../addons/buy-creds/abstracts/mycred-abstract-payment-gateway.php:592 ..
1235
- #: addons/gateway/carts/mycred-wpecommerce.php:112
1236
- msgid "Item"
1237
- msgstr "Articulo"
1238
 
1239
- #: ../addons/buy-creds/abstracts/mycred-abstract-payment-gateway.php:615
1240
- msgid "Debug"
1241
- msgstr "Depurar"
1242
 
1243
- #: ../addons/buy-creds/abstracts/mycred-abstract-payment-gateway.php:616
1244
  msgid ""
1245
- "Here you can see information that are collected and sent to this gateway. "
1246
- "Debug information is only visible for administrators and are intended for "
1247
- "troubleshooting / testing of this gateway. Please disable \"Sandbox Mode\" "
1248
- "when you want to take this gateway online."
1249
  msgstr ""
1250
- "Aquí se puede ver la información que se recoge y se envía a esta puerta de "
1251
- "enlace. La información de depuración sólo es visible para los "
1252
- "administradores y está disponible resolver problemas algunas / pruebar este "
1253
- "puerta de enlace. Por favor, desactivar \"Modo Entorno Aislado\" cuando se "
1254
- "quiere activar este portal y ponerlo online."
1255
 
1256
- #: ../addons/buy-creds/abstracts/mycred-abstract-payment-gateway.php:620
1257
- msgid "Section"
1258
- msgstr "Sección"
 
1259
 
1260
- #: ../addons/buy-creds/abstracts/mycred-abstract-payment-gateway.php:621
1261
- msgid "Result"
1262
- msgstr "Resultado"
 
 
 
 
1263
 
1264
- #: ../addons/buy-creds/abstracts/mycred-abstract-payment-gateway.php:626
1265
- msgid "Payment Status"
1266
- msgstr "Estado de Pago"
1267
 
1268
- #: ../addons/buy-creds/abstracts/mycred-abstract-payment-gateway.php:630
1269
- msgid "Request"
1270
- msgstr "Solicitud"
 
1271
 
1272
- #: ../addons/buy-creds/abstracts/mycred-abstract-payment-gateway.php:634
1273
- msgid "Gateway Response"
1274
- msgstr "Respuesta de la Pasarela de Pago"
 
 
1275
 
1276
- #: ../addons/buy-creds/abstracts/mycred-abstract-payment-gateway.php:681
 
1277
  #, php-format
1278
- msgid "Continue to %s"
1279
- msgstr "Continuar a %s"
 
 
1280
 
1281
- #: ../addons/buy-creds/abstracts/mycred-abstract-payment-gateway.php:682 ..
1282
- #: addons/buy-creds/gateways/bitpay.php:233
1283
- msgid "Click here if you are not automatically redirected"
1284
- msgstr "Haga clic aqui si no se encuentra redirigida automáticamente"
1285
 
1286
- #: ../addons/buy-creds/abstracts/mycred-abstract-payment-gateway.php:687
1287
- msgid "The following information will be sent to the gateway"
1288
- msgstr "La información siguiente sera transmitido a la pasarela de pago"
 
1289
 
1290
- #: ../addons/buy-creds/abstracts/mycred-abstract-payment-gateway.php:1373
1291
- msgid "Outside US"
1292
- msgstr "Fuera de los EEUU"
1293
 
1294
- #: ../addons/buy-creds/abstracts/mycred-abstract-payment-gateway.php:1390
1295
- msgid "January"
1296
  msgstr ""
1297
 
1298
- #: ../addons/buy-creds/abstracts/mycred-abstract-payment-gateway.php:1391
1299
- msgid "February"
1300
  msgstr ""
1301
 
1302
- #: ../addons/buy-creds/abstracts/mycred-abstract-payment-gateway.php:1392
1303
- msgid "March"
1304
  msgstr ""
1305
 
1306
- #: ../addons/buy-creds/abstracts/mycred-abstract-payment-gateway.php:1393
1307
- msgid "April"
1308
  msgstr ""
1309
 
1310
- #: ../addons/buy-creds/abstracts/mycred-abstract-payment-gateway.php:1394
1311
- msgid "May"
 
 
1312
  msgstr ""
1313
 
1314
- #: ../addons/buy-creds/abstracts/mycred-abstract-payment-gateway.php:1395
1315
- msgid "June"
1316
  msgstr ""
1317
 
1318
- #: ../addons/buy-creds/abstracts/mycred-abstract-payment-gateway.php:1396
1319
- msgid "July"
1320
  msgstr ""
1321
 
1322
- #: ../addons/buy-creds/abstracts/mycred-abstract-payment-gateway.php:1397
1323
- msgid "August"
 
1324
  msgstr ""
1325
 
1326
- #: ../addons/buy-creds/abstracts/mycred-abstract-payment-gateway.php:1398
1327
- msgid "September"
1328
  msgstr ""
1329
 
1330
- #: ../addons/buy-creds/abstracts/mycred-abstract-payment-gateway.php:1399
1331
- msgid "October"
1332
  msgstr ""
1333
 
1334
- #: ../addons/buy-creds/abstracts/mycred-abstract-payment-gateway.php:1400
1335
- msgid "November"
1336
  msgstr ""
1337
 
1338
- #: ../addons/buy-creds/abstracts/mycred-abstract-payment-gateway.php:1401
1339
- msgid "December"
1340
  msgstr ""
1341
 
1342
- #: ../addons/buy-creds/gateways/bitpay.php:62 ../addons/buy-
1343
- #: creds/gateways/netbilling.php:92 ../addons/buy-creds/gateways/paypal-standard.
1344
- #: php:145 ../addons/buy-creds/gateways/skrill.php:124
1345
- #, php-format
1346
- msgid "Price mismatch. Expected: %s Received: %s"
1347
  msgstr ""
1348
 
1349
- #: ../addons/buy-creds/gateways/bitpay.php:68 ../addons/buy-creds/gateways/paypal-
1350
- #: standard.php:151 ../addons/buy-creds/gateways/skrill.php:130
1351
  #, php-format
1352
- msgid "Currency mismatch. Expected: %s Received: %s"
 
 
1353
  msgstr ""
1354
 
1355
- #: ../addons/buy-creds/gateways/bitpay.php:74 ../addons/buy-
1356
- #: creds/gateways/netbilling.php:98 ../addons/buy-creds/gateways/paypal-standard.
1357
- #: php:157 ../addons/buy-creds/gateways/skrill.php:136
1358
- #, php-format
1359
- msgid "Payment not completed. Received: %s"
1360
  msgstr ""
1361
 
1362
- #: ../addons/buy-creds/gateways/bitpay.php:85 ../addons/buy-
1363
- #: creds/gateways/netbilling.php:109 ../addons/buy-creds/gateways/paypal-standard.
1364
- #: php:168 ../addons/buy-creds/gateways/skrill.php:147 ../addons/buy-
1365
- #: creds/gateways/zombaio.php:185
1366
- msgid "Failed to credit users account."
1367
  msgstr ""
1368
 
1369
- #: ../addons/buy-creds/gateways/bitpay.php:164 ../addons/buy-
1370
- #: creds/gateways/netbilling.php:145 ../addons/buy-creds/gateways/paypal-standard.
1371
- #: php:208 ../addons/buy-creds/gateways/skrill.php:187 ../addons/buy-
1372
- #: creds/gateways/zombaio.php:214
1373
- msgid "Please setup this gateway before attempting to make a purchase!"
1374
  msgstr ""
1375
- "¡Por favor configure esta puerta de enlace antes de intentar hacer una "
1376
- "compra!"
1377
 
1378
- #: ../addons/buy-creds/gateways/bitpay.php:216 ../addons/buy-
1379
- #: creds/gateways/bitpay.php:227 ../addons/buy-creds/gateways/netbilling.php:198 .
1380
- #: ./addons/buy-creds/gateways/paypal-standard.php:268 ../addons/buy-
1381
- #: creds/gateways/skrill.php:281 ../addons/buy-creds/gateways/zombaio.php:247
1382
- msgid "Processing payment &hellip;"
1383
- msgstr "Procesando el pago &hellip;"
1384
 
1385
- #: ../addons/buy-creds/gateways/bitpay.php:219
1386
- msgid "Could not create a BitPay Invoice. Please contact the site administrator!"
1387
  msgstr ""
1388
- "¡No se pudo crear una factura de BitPay. Por favor pongase en contacto con "
1389
- "el administrador del sitio!"
1390
 
1391
- #: ../addons/buy-creds/gateways/bitpay.php:220
1392
- msgid "Bitpay returned the following error message:"
1393
- msgstr "Bitpay comunico este mensaje de error:"
1394
 
1395
- #: ../addons/buy-creds/gateways/bitpay.php:253 ../includes/mycred-remote.php:551
1396
- msgid "API Key"
1397
- msgstr "Clave de la API"
1398
 
1399
- #: ../addons/buy-creds/gateways/bitpay.php:259 ../addons/buy-
1400
- #: creds/gateways/paypal-standard.php:286 ../addons/buy-creds/gateways/skrill.php:
1401
- #: 300
1402
- msgid "Currency"
1403
- msgstr "Moneda"
1404
 
1405
- #: ../addons/buy-creds/gateways/bitpay.php:262
1406
- msgid "Currency Code"
1407
- msgstr "Código de Moneda"
 
 
1408
 
1409
- #: ../addons/buy-creds/gateways/bitpay.php:266 ../addons/buy-
1410
- #: creds/gateways/netbilling.php:235 ../addons/buy-creds/gateways/paypal-standard.
1411
- #: php:298 ../addons/buy-creds/gateways/skrill.php:319
1412
- msgid "Item Name"
1413
- msgstr "Nombre de Artículo"
1414
 
1415
- #: ../addons/buy-creds/gateways/bitpay.php:270 ../addons/buy-
1416
- #: creds/gateways/netbilling.php:239 ../addons/buy-creds/gateways/paypal-standard.
1417
- #: php:302 ../addons/buy-creds/gateways/skrill.php:323
1418
- msgid "Description of the item being purchased by the user."
1419
- msgstr "Descripción del artículo que el usuario esta comprando."
1420
 
1421
- #: ../addons/buy-creds/gateways/bitpay.php:273 ../addons/buy-
1422
- #: creds/gateways/netbilling.php:242 ../addons/buy-creds/gateways/paypal-standard.
1423
- #: php:305 ../addons/buy-creds/gateways/skrill.php:326
1424
- msgid "Exchange Rates"
1425
  msgstr ""
1426
 
1427
- #: ../addons/buy-creds/gateways/bitpay.php:277
1428
- msgid "Transaction Speed"
1429
- msgstr "Velocidad de la Transacción"
 
1430
 
1431
- #: ../addons/buy-creds/gateways/bitpay.php:284
1432
- msgid "High"
1433
- msgstr "Alto"
1434
 
1435
- #: ../addons/buy-creds/gateways/bitpay.php:285
1436
- msgid "Medium"
1437
- msgstr "Medio"
1438
 
1439
- #: ../addons/buy-creds/gateways/bitpay.php:286
1440
- msgid "Low"
1441
- msgstr "Bajo"
1442
 
1443
- #: ../addons/buy-creds/gateways/bitpay.php:299
1444
- msgid "Full Notifications"
1445
- msgstr "Notificaciones Completas"
1446
 
1447
- #: ../addons/buy-creds/gateways/bitpay.php:306 ../includes/mycred-network.php:161
1448
- #: ../includes/mycred-network.php:175
1449
- msgid "No"
1450
- msgstr "No"
1451
 
1452
- #: ../addons/buy-creds/gateways/bitpay.php:307 ../includes/mycred-network.php:157
1453
- #: ../includes/mycred-network.php:171
1454
- msgid "Yes"
1455
- msgstr ""
1456
 
1457
- #: ../addons/buy-creds/gateways/netbilling.php:216
1458
- msgid "Account ID"
1459
- msgstr "ID de la Cuenta"
1460
 
1461
- #: ../addons/buy-creds/gateways/netbilling.php:222
1462
- msgid "Site Tag"
1463
- msgstr "Etiqueta (tag) del Sitio"
1464
 
1465
- #: ../addons/buy-creds/gateways/netbilling.php:228
1466
- msgid "Order Integrity Key"
1467
- msgstr "Clave de Integridad del Pedido"
 
1468
 
1469
- #: ../addons/buy-creds/gateways/netbilling.php:232
1470
- msgid "Found under Step 12 on the Fraud Defense page."
1471
- msgstr "Se encuentra en Paso 12 de la página sobre Defensa contra Fraude."
 
1472
 
1473
- #: ../addons/buy-creds/gateways/netbilling.php:246
1474
- msgid "Postback CGI URL"
1475
- msgstr "Devolución de la URL CGI"
1476
 
1477
- #: ../addons/buy-creds/gateways/netbilling.php:250
1478
- msgid ""
1479
- "For this gateway to work, you must login to your NETbilling account and edit "
1480
- "your site. Under \"Default payment form settings\" make sure the Postback CGI "
1481
- "URL is set to the above address and \"Return method\" is set to POST."
1482
  msgstr ""
1483
- "Para que esta pasarela de pago funcione, deberia acceder a su cuenta "
1484
- "NETbilling y editar su sitio web. En \"Configuración de Formularios "
1485
- "Predefinido\" asegúrese de que la devolución de la URL CGI esta ajustada a la "
1486
- "dirección indicada arriba y \"Método de Retorno\" está ajustado a POST."
1487
 
1488
- #: ../addons/buy-creds/gateways/netbilling.php:298
1489
- msgid "Incorrect Credit Card number"
1490
- msgstr "Número de Tarjeta de Crédito Incorrecta"
 
 
 
1491
 
1492
- #: ../addons/buy-creds/gateways/netbilling.php:304
1493
- msgid "The credit card entered is past its expiration date."
1494
- msgstr "La tarjeta de crédito ha pasado su fecha de vencimiento."
1495
 
1496
- #: ../addons/buy-creds/gateways/netbilling.php:307
1497
- msgid "The CVV2 number entered is not valid."
1498
- msgstr "El numero CVV2 teclado no es valido."
 
1499
 
1500
- #: ../addons/buy-creds/gateways/netbilling.php:314
1501
- msgid "The bank routing number entered is not valid."
1502
- msgstr "El número de ruta bancaria introducido no es valido."
1503
 
1504
- #: ../addons/buy-creds/gateways/netbilling.php:318
1505
- msgid "The bank account number entered is not valid."
1506
- msgstr "La cuenta bancaria introducida no es valida."
 
1507
 
1508
- #: ../addons/buy-creds/gateways/paypal-standard.php:192 ../addons/buy-
1509
- #: creds/gateways/skrill.php:171
1510
- msgid "Success"
1511
- msgstr "Exito"
1512
 
1513
- #: ../addons/buy-creds/gateways/paypal-standard.php:193 ../addons/buy-
1514
- #: creds/gateways/skrill.php:172
1515
- msgid "Thank you for your purchase"
1516
- msgstr "Gracias por su compra"
1517
 
1518
- #: ../addons/buy-creds/gateways/paypal-standard.php:263
1519
  #, php-format
1520
- msgctxt "Return label. %s = Website name"
1521
- msgid "Return to %s"
1522
  msgstr ""
1523
 
1524
- #: ../addons/buy-creds/gateways/paypal-standard.php:292
1525
- msgid "Account Email"
1526
- msgstr "Cuenta de Correo Electrónico"
1527
 
1528
- #: ../addons/buy-creds/gateways/skrill.php:228
1529
- msgid "Return to "
1530
- msgstr "Volver a"
 
 
 
 
 
1531
 
1532
- #: ../addons/buy-creds/gateways/skrill.php:264
1533
- msgid "Product:"
1534
- msgstr "Producto:"
 
1535
 
1536
- #: ../addons/buy-creds/gateways/skrill.php:273
1537
- msgid "Gift to:"
1538
- msgstr "Regalar a:"
 
1539
 
1540
- #: ../addons/buy-creds/gateways/skrill.php:274
1541
- msgid "(author)"
1542
- msgstr "(autor)"
1543
 
1544
- #: ../addons/buy-creds/gateways/skrill.php:307
1545
- msgid "Merchant Account Email"
1546
- msgstr "Correo electrónico de la Cuenta Comerciante"
1547
 
1548
- #: ../addons/buy-creds/gateways/skrill.php:313
1549
- msgid "Secret Word"
1550
- msgstr "Palabra Secreta"
 
1551
 
1552
- #: ../addons/buy-creds/gateways/skrill.php:330
1553
- msgid "Confirmation Email"
1554
- msgstr "Correo electrónico de confirmación"
1555
 
1556
- #: ../addons/buy-creds/gateways/skrill.php:333
1557
- msgid "Ask Skrill to send me a confirmation email for each successful purchase."
1558
  msgstr ""
1559
- "Pide a Skrill que me mande un email de confirmación para cada compra "
1560
- "finalizada con éxito."
1561
-
1562
- #: ../addons/buy-creds/gateways/skrill.php:336
1563
- msgid "Checkout Page"
1564
- msgstr "Página de Pago"
1565
 
1566
- #: ../addons/buy-creds/gateways/skrill.php:339 ../addons/gateway/carts/mycred-
1567
- #: woocommerce.php:92 ../addons/ranks/myCRED-addon-ranks.php:1318 ..
1568
- #: addons/transfer/includes/mycred-transfer-widgets.php:118 ../includes/mycred-
1569
- #: widgets.php:196 ../includes/mycred-widgets.php:384 ../includes/mycred-widgets.
1570
- #: php:592 ../modules/mycred-module-hooks.php:3073
1571
- msgid "Title"
1572
- msgstr "Titulo"
1573
 
1574
- #: ../addons/buy-creds/gateways/skrill.php:341
1575
- msgid "If left empty, your account email is used as title on the Skill Payment Page."
1576
  msgstr ""
1577
- "Si se deja vacío, el correo electrónico de su cuenta sera utilizada como "
1578
- "título en la Página de Pagos Skrill. "
1579
 
1580
- #: ../addons/buy-creds/gateways/skrill.php:344 ../addons/buy-
1581
- #: creds/gateways/zombaio.php:283
1582
- msgid "Logo URL"
1583
- msgstr "URL del Logotipo"
1584
 
1585
- #: ../addons/buy-creds/gateways/skrill.php:346
1586
- msgid ""
1587
- "The URL to the image you want to use on the top of the gateway. For best "
1588
- "integration results we recommend you use logos with dimensions up to 200px "
1589
- "in width and 50px in height."
1590
  msgstr ""
1591
- "La URL de la imagen que quieres usar en la encima de la pasarela de pago. "
1592
- "Para obtener la mejor integración recomendamos que uses logotipos con "
1593
- "dimensiones de hasta 200 píxeles de ancho y 50 px de altura."
1594
 
1595
- #: ../addons/buy-creds/gateways/skrill.php:349
1596
- msgid "Confirmation Note"
1597
- msgstr "Nota de Confirmación"
1598
 
1599
- #: ../addons/buy-creds/gateways/skrill.php:351
1600
- msgid ""
1601
- "Optional text to show user once a transaction has been successfully "
1602
- "completed. This text is shown by Skrill."
1603
  msgstr ""
1604
- "Texto opcional a mostrar al usuario cuando la transacción haya sido "
1605
- "completado con éxito. Este texto sera mostrado por Skrill."
1606
 
1607
- #: ../addons/buy-creds/gateways/zombaio.php:154
1608
- #, php-format
1609
- msgid "Duplicate transaction. Received: %s"
1610
  msgstr ""
1611
 
1612
- #: ../addons/buy-creds/gateways/zombaio.php:160
1613
- #, php-format
1614
- msgid "Live transaction while debug mode is enabled! Received: %s"
1615
  msgstr ""
1616
 
1617
- #: ../addons/buy-creds/gateways/zombaio.php:265
1618
- msgid "Site ID"
1619
- msgstr "ID del Sitio de web"
1620
 
1621
- #. or "Contraseña de GW" not clear based on lack of context
1622
- #: ../addons/buy-creds/gateways/zombaio.php:271
1623
- msgid "GW Password"
1624
- msgstr "Contraseña GW"
1625
 
1626
- #: ../addons/buy-creds/gateways/zombaio.php:277
1627
- msgid "Pricing ID"
1628
- msgstr "ID de Precios"
 
 
 
1629
 
1630
- #: ../addons/buy-creds/gateways/zombaio.php:289
1631
- msgid "IP Verification"
1632
- msgstr "Verificación de IP"
1633
 
1634
- #: ../addons/buy-creds/gateways/zombaio.php:292
1635
- msgid "Do not verify that callbacks are coming from Zombaio."
1636
- msgstr "No verifique que las devoluciónes de llamadas proceden de Zombaio."
1637
 
1638
- #: ../addons/buy-creds/gateways/zombaio.php:295
1639
- msgid "Language"
1640
- msgstr "Lengua"
1641
 
1642
- #: ../addons/buy-creds/gateways/zombaio.php:302
1643
- msgid "Postback URL (ZScript)"
1644
- msgstr "Devolución de la URL (ZScript)"
1645
 
1646
- #: ../addons/buy-creds/gateways/zombaio.php:306
1647
- msgid ""
1648
- "For this gateway to work, login to ZOA and set the Postback URL to the above "
1649
- "address and click validate."
1650
  msgstr ""
1651
- "Para que esta puerta de enlace funcione, ingrese en ZOA y ajuste la "
1652
- "devolución de datos de la URL a la dirección que se encuentra arriba y haga "
1653
- "clic sobre validar."
1654
 
1655
- #: ../addons/coupons/myCRED-addon-coupons.php:86 ../addons/coupons/myCRED-addon-
1656
- #: coupons.php:92 ../addons/coupons/myCRED-addon-coupons.php:500 ..
1657
- #: includes/mycred-overview.php:188 ../includes/mycred-overview.php:195
1658
- msgid "Coupons"
1659
- msgstr "Cupones"
1660
 
1661
- #: ../addons/coupons/myCRED-addon-coupons.php:87 ..
1662
- #: addons/coupons/includes/mycred-coupon-shortcodes.php:69
1663
- msgid "Coupon"
1664
- msgstr "Cupón"
1665
 
1666
- #: ../addons/coupons/myCRED-addon-coupons.php:88
1667
- msgid "Create New"
1668
- msgstr "Create Nueva"
 
 
1669
 
1670
- #: ../addons/coupons/myCRED-addon-coupons.php:89
1671
- msgid "Create New Coupon"
1672
- msgstr "Crea Nueva Cupón"
 
1673
 
1674
- #: ../addons/coupons/myCRED-addon-coupons.php:90
1675
- msgid "Edit Coupon"
1676
- msgstr "Editar Cupón"
1677
 
1678
- #: ../addons/coupons/myCRED-addon-coupons.php:91
1679
- msgid "New Coupon"
1680
- msgstr "Nueva Cupón"
 
 
1681
 
1682
- #: ../addons/coupons/myCRED-addon-coupons.php:94
1683
- msgid "Search coupons"
1684
- msgstr "Busqueda de Cupones"
 
 
1685
 
1686
- #: ../addons/coupons/myCRED-addon-coupons.php:95
1687
- msgid "No coupons found"
1688
- msgstr "Ningun Cupón Encontrado"
1689
 
1690
- #: ../addons/coupons/myCRED-addon-coupons.php:96
1691
- msgid "No coupons found in Trash"
1692
- msgstr "Ningun Cupón Encontrado en Papelera"
 
 
1693
 
1694
- #: ../addons/coupons/myCRED-addon-coupons.php:98 ../addons/email-notices/myCRED-
1695
- #: addon-email-notices.php:165 ../addons/email-notices/myCRED-addon-email-notices.
1696
- #: php:171 ../addons/email-notices/myCRED-addon-email-notices.php:177 ..
1697
- #: addons/email-notices/myCRED-addon-email-notices.php:283
1698
- msgid "Email Notices"
1699
- msgstr "Avisos por Correo Electrónico"
1700
 
1701
- #: ../addons/coupons/myCRED-addon-coupons.php:119 ../addons/coupons/myCRED-addon-
1702
- #: coupons.php:120 ../addons/coupons/myCRED-addon-coupons.php:121 ..
1703
- #: addons/coupons/myCRED-addon-coupons.php:122
1704
- msgid "Coupon updated."
1705
- msgstr "Cupón Actualizado"
1706
 
1707
- #: ../addons/coupons/myCRED-addon-coupons.php:124
1708
- msgid "Coupon published."
1709
- msgstr "Cupón Publicado."
 
1710
 
1711
- #: ../addons/coupons/myCRED-addon-coupons.php:125
1712
- msgid "Coupon saved."
1713
- msgstr "Cupón Guardado"
 
1714
 
1715
- #: ../addons/coupons/myCRED-addon-coupons.php:128
1716
- msgid "Draft Coupon saved."
1717
- msgstr "Cupón Borrador Guardado."
1718
 
1719
- #: ../addons/coupons/myCRED-addon-coupons.php:142
1720
- msgid "Unique Coupon Code"
1721
- msgstr "Unico Código de Cupón"
 
1722
 
1723
- #: ../addons/coupons/myCRED-addon-coupons.php:158
1724
- msgid "Coupon Code"
1725
- msgstr "Código de Cupón"
1726
 
1727
- #: ../addons/coupons/myCRED-addon-coupons.php:159 ../addons/coupons/myCRED-addon-
1728
- #: coupons.php:347
1729
- msgid "Value"
1730
- msgstr "Valor"
1731
 
1732
- #: ../addons/coupons/myCRED-addon-coupons.php:160
1733
- msgid "Used"
1734
  msgstr ""
1735
 
1736
- #: ../addons/coupons/myCRED-addon-coupons.php:161 ../addons/transfer/myCRED-addon-
1737
- #: transfer.php:259 ../modules/mycred-module-hooks.php:1714 ../modules/mycred-
1738
- #: module-hooks.php:2032
1739
- msgid "Limits"
1740
- msgstr "imites"
1741
 
1742
- #: ../addons/coupons/myCRED-addon-coupons.php:162
1743
- msgid "Expires"
1744
- msgstr "Expire"
1745
 
1746
- #: ../addons/coupons/myCRED-addon-coupons.php:165 ../addons/coupons/myCRED-addon-
1747
- #: coupons.php:354 ../addons/email-notices/myCRED-addon-email-notices.php:814 ..
1748
- #: addons/email-notices/myCRED-addon-email-notices.php:1031 ..
1749
- #: addons/gateway/carts/mycred-marketpress.php:389 ..
1750
- #: addons/gateway/carts/mycred-woocommerce.php:120 ..
1751
- #: addons/gateway/carts/mycred-wpecommerce.php:354 ../addons/gateway/event-
1752
- #: booking/mycred-eventespresso3.php:437 ../addons/gateway/event-booking/mycred-
1753
- #: eventsmanager-pro.php:504 ../addons/gateway/event-booking/mycred-eventsmanager.
1754
- #: php:550 ../addons/ranks/myCRED-addon-ranks.php:1045 ../addons/ranks/myCRED-
1755
- #: addon-ranks.php:1200 ../addons/sell-content/myCRED-addon-sell-content.php:412 .
1756
- #: ./includes/mycred-widgets.php:203 ../includes/mycred-widgets.php:390 ..
1757
- #: includes/importers/mycred-cubepoints.php:365
1758
- msgid "Point Type"
1759
- msgstr "Tipo de Puntos"
1760
 
1761
- #: ../addons/coupons/myCRED-addon-coupons.php:193 ../addons/coupons/myCRED-addon-
1762
- #: coupons.php:461
1763
- msgid "not yet used"
1764
- msgstr "todavia no utilizado"
1765
 
1766
- #: ../addons/coupons/myCRED-addon-coupons.php:211 ../includes/mycred-admin.php:
1767
- #: 416 ../modules/mycred-module-hooks.php:2507
1768
- msgid "Total"
1769
- msgstr "Total"
1770
 
1771
- #: ../addons/coupons/myCRED-addon-coupons.php:211
1772
- msgid "Per User"
1773
- msgstr "Por Usuario"
1774
 
1775
- #: ../addons/coupons/myCRED-addon-coupons.php:219
1776
- msgid "Never"
1777
- msgstr "Nunca"
1778
-
1779
- #: ../addons/coupons/myCRED-addon-coupons.php:223
1780
- msgid "Expired"
1781
- msgstr "Caducado"
1782
 
1783
- #: ../addons/coupons/myCRED-addon-coupons.php:226
1784
  #, php-format
1785
- msgid "In %s time"
1786
- msgstr "En %s tiempo"
1787
-
1788
- #: ../addons/coupons/myCRED-addon-coupons.php:279
1789
- msgid "Coupon Setup"
1790
- msgstr "Configuración de Cupón"
1791
-
1792
- #: ../addons/coupons/myCRED-addon-coupons.php:288
1793
- msgid "Coupon Limits"
1794
- msgstr "Limites de Cupón"
1795
-
1796
- #: ../addons/coupons/myCRED-addon-coupons.php:297
1797
- msgid "Coupon Requirements"
1798
- msgstr "Requisitos de Cupón"
1799
-
1800
- #: ../addons/coupons/myCRED-addon-coupons.php:307
1801
- msgid "Usage"
1802
- msgstr "Utilización"
1803
 
1804
- #: ../addons/coupons/myCRED-addon-coupons.php:350
1805
- msgid "The amount of %plural% this coupon is worth."
1806
- msgstr "La cantidad de %plural% que vale este cupón."
 
 
1807
 
1808
- #: ../addons/coupons/myCRED-addon-coupons.php:359
1809
- msgid "Select the point type that this coupon is applied."
1810
- msgstr "Elige el tipo de puntos al cual este cupón se aplica."
 
 
 
 
 
1811
 
1812
- #: ../addons/coupons/myCRED-addon-coupons.php:369
1813
- msgid "Expire"
1814
- msgstr "Caducar"
 
 
1815
 
1816
- #: ../addons/coupons/myCRED-addon-coupons.php:372
1817
- msgid "Optional date when this coupon expires. Expired coupons will be trashed."
1818
  msgstr ""
1819
- "La fecha opcional cuando este cupón caduca. Cupones caducados seran "
1820
- "destrozado."
1821
 
1822
- #: ../addons/coupons/myCRED-addon-coupons.php:401
1823
- msgid "Global Maximum"
1824
- msgstr "Máximo Global"
1825
 
1826
- #: ../addons/coupons/myCRED-addon-coupons.php:404
1827
- msgid ""
1828
- "The maximum number of times this coupon can be used. Note that the coupon "
1829
- "will be automatically trashed once this maximum is reached!"
1830
  msgstr ""
1831
- "El número máximo de veces que este cupón se puede utilizar. Ten en cuenta "
1832
- "que el cupón será colocado en la papelera de forma automática una vez que se "
1833
- "alcanza este máximo!"
1834
 
1835
- #. not clear if this is referring to the maximum number of users or to the maximum "points" a user can have or accrue?
1836
- #: ../addons/coupons/myCRED-addon-coupons.php:408
1837
- msgid "User Maximum"
1838
- msgstr "Máximo Usuario"
1839
 
1840
- #: ../addons/coupons/myCRED-addon-coupons.php:411
1841
- msgid "The maximum number of times this coupon can be used by a user."
1842
- msgstr "El máximo numero de veces que se puede utilizadar este cupón por un usuario."
1843
 
1844
- #: ../addons/coupons/myCRED-addon-coupons.php:440
1845
- msgid ""
1846
- "Optional minimum balance a user must have in order to use this coupon. Use "
1847
- "zero to disable."
1848
  msgstr ""
1849
- "Mínimo saldo opcional que el usuario debe tener para utilizar este cupón. "
1850
- "Utilice cero para inhabilitar."
1851
 
1852
- #: ../addons/coupons/myCRED-addon-coupons.php:443
1853
- msgid "Maximum Balance"
1854
- msgstr "Saldo Máximo"
1855
 
1856
- #: ../addons/coupons/myCRED-addon-coupons.php:445
1857
- msgid ""
1858
- "Optional maximum balance a user can have in order to use this coupon. Use "
1859
- "zero to disable."
1860
  msgstr ""
1861
- "Saldo máximo opcional que un usuario puede tener para usar este cupón. Ponga "
1862
- "cero para desactivar."
1863
 
1864
- #: ../addons/coupons/myCRED-addon-coupons.php:506
1865
  #, php-format
1866
- msgid ""
1867
- "Log entry for successful coupon redemption. Use %coupon% to show the coupon "
1868
- "code."
1869
  msgstr ""
1870
- "Entrada del registro al exitoso canje del cupón. Utilice %coupon% para "
1871
- "mostrar el código del cupón."
1872
 
1873
- #: ../addons/coupons/myCRED-addon-coupons.php:509
1874
- msgid "Invalid Coupon Message"
1875
- msgstr "Mensaje Cupón Invalido"
 
 
 
 
1876
 
1877
- #: ../addons/coupons/myCRED-addon-coupons.php:513
1878
- msgid "Message to show when users try to use a coupon that does not exists."
1879
- msgstr "Mostrar mensaje cuando los usuarios intenten usar un cupón que no existe."
 
1880
 
1881
- #: ../addons/coupons/myCRED-addon-coupons.php:516
1882
- msgid "Expired Coupon Message"
1883
- msgstr "Mensaje de Cupón Caducado"
 
1884
 
1885
- #: ../addons/coupons/myCRED-addon-coupons.php:520
1886
- msgid "Message to show when users try to use that has expired."
1887
- msgstr "Mostrar mensaje cuando los usuarios intenten usar lo que ha caducado."
 
1888
 
1889
- #: ../addons/coupons/myCRED-addon-coupons.php:523
1890
- msgid "User Limit Message"
1891
- msgstr "Mensaje de Límite de Usuario"
1892
 
1893
- #: ../addons/coupons/myCRED-addon-coupons.php:527
1894
- msgid "Message to show when the user limit has been reached for the coupon."
1895
- msgstr "Mostrar mensaje cuando el cupón alcanza su límite de usuarios."
 
1896
 
1897
- #: ../addons/coupons/myCRED-addon-coupons.php:530
1898
- msgid "Minimum Balance Message"
1899
- msgstr "Mensaje de Saldo Mínimo"
1900
 
1901
- #: ../addons/coupons/myCRED-addon-coupons.php:534
1902
- msgid ""
1903
- "Message to show when a user does not meet the minimum balance requirement. "
1904
- "(if used)"
1905
  msgstr ""
1906
- "Mostrar mensaje cuando el usuario no cumple con el saldo mínimo requerido. "
1907
- "(si se utiliza)"
1908
 
1909
- #: ../addons/coupons/myCRED-addon-coupons.php:537
1910
- msgid "Maximum Balance Message"
1911
- msgstr "Mensaje Saldo Máximo"
1912
 
1913
- #: ../addons/coupons/myCRED-addon-coupons.php:541
1914
- msgid ""
1915
- "Message to show when a user does not meet the maximum balance requirement. "
1916
- "(if used)"
1917
  msgstr ""
1918
- "Mostrar mensaje cuando un usuario no alcanza el saldo máximo requerido. (si "
1919
- "se utiliza)"
1920
 
1921
- #: ../addons/coupons/myCRED-addon-coupons.php:544
1922
- msgid "Success Message"
1923
- msgstr "Mensaje de éxito"
1924
 
1925
- #: ../addons/coupons/myCRED-addon-coupons.php:548
1926
- msgid "Message to show when a coupon was successfully deposited to a users account."
1927
- msgstr "Monstrar mensaje cuando un cupón se deposita con éxito en una cuenta usuaria."
 
1928
 
1929
- #: ../addons/coupons/includes/mycred-coupon-shortcodes.php:72
1930
- msgid "Apply Coupon"
1931
- msgstr "Aplica el Cupón"
1932
 
1933
- #: ../addons/email-notices/myCRED-addon-email-notices.php:166 ../addons/email-
1934
- #: notices/myCRED-addon-email-notices.php:1270
1935
- msgid "Email Notice"
1936
- msgstr "Aviso por Correo Electrónico"
1937
 
1938
- #: ../addons/email-notices/myCRED-addon-email-notices.php:168
1939
- msgid "Add New Notice"
1940
- msgstr "Añade Nueva Notificación"
1941
 
1942
- #: ../addons/email-notices/myCRED-addon-email-notices.php:169
1943
- msgid "Edit Notice"
1944
- msgstr "Editar Aviso"
1945
 
1946
- #: ../addons/email-notices/myCRED-addon-email-notices.php:170
1947
- msgid "New Notice"
1948
- msgstr "Nuevo Aviso"
1949
 
1950
- #: ../addons/email-notices/myCRED-addon-email-notices.php:172
1951
- msgid "View Notice"
1952
- msgstr "Ver Aviso"
1953
 
1954
- #: ../addons/email-notices/myCRED-addon-email-notices.php:173
1955
- msgid "Search Email Notices"
1956
- msgstr "Búsqueda de Avisos por Correo Electrónico"
1957
 
1958
- #: ../addons/email-notices/myCRED-addon-email-notices.php:174
1959
- msgid "No email notices found"
1960
- msgstr "Ningun aviso por correo electrónico encontrado"
1961
 
1962
- #: ../addons/email-notices/myCRED-addon-email-notices.php:175
1963
- msgid "No email notices found in Trash"
1964
- msgstr "Ningun aviso por correo electrónico encontrado en la papelera"
1965
 
1966
- #: ../addons/email-notices/myCRED-addon-email-notices.php:200 ..
1967
- #: addons/gateway/carts/mycred-wpecommerce.php:341 ../includes/mycred-functions.
1968
- #: php:587
1969
- msgid "General"
1970
- msgstr "General"
1971
 
1972
- #. can also be users as in plural, I've assumed it is user singular with a missing apostrophe
1973
- #: ../addons/email-notices/myCRED-addon-email-notices.php:201
1974
- msgid "users balance changes"
1975
- msgstr "el saldo de usuario cambia"
1976
 
1977
- #: ../addons/email-notices/myCRED-addon-email-notices.php:202
1978
- msgid "user gains %_plural%"
1979
- msgstr "usuario gana %_plural%"
1980
 
1981
- #: ../addons/email-notices/myCRED-addon-email-notices.php:203
1982
- msgid "user lose %_plural%"
1983
- msgstr "usuario pierde %_plural%"
1984
 
1985
- #: ../addons/email-notices/myCRED-addon-email-notices.php:204
1986
- msgid "users balance reaches zero"
1987
- msgstr "saldo de usuario llega a cero"
1988
 
1989
- #. can also be users as in plural, I've assumed it is user singular with a missing apostrophe
1990
- #: ../addons/email-notices/myCRED-addon-email-notices.php:205
1991
- msgid "users balance goes minus"
1992
- msgstr "el saldo de usuario cae a negativo"
1993
 
1994
- #: ../addons/email-notices/myCRED-addon-email-notices.php:211
1995
- msgid "Badge Add-on"
1996
  msgstr ""
1997
 
1998
- #: ../addons/email-notices/myCRED-addon-email-notices.php:212
1999
- msgid "user gains a badge"
 
 
 
2000
  msgstr ""
2001
 
2002
- #: ../addons/email-notices/myCRED-addon-email-notices.php:219
2003
- msgid "Sell Content Add-on"
2004
- msgstr "Extensión para Vender Contenido"
2005
-
2006
- #: ../addons/email-notices/myCRED-addon-email-notices.php:220
2007
- msgid "user buys content"
2008
- msgstr "usuario compra contenido"
2009
-
2010
- #: ../addons/email-notices/myCRED-addon-email-notices.php:221
2011
- msgid "authors content gets sold"
2012
- msgstr "el contenido del autor sera vendido"
2013
-
2014
- #: ../addons/email-notices/myCRED-addon-email-notices.php:228
2015
- msgid "buyCREDs Add-on"
2016
- msgstr "Extensión de compraCREDs"
2017
 
2018
- #: ../addons/email-notices/myCRED-addon-email-notices.php:229
2019
- msgid "user buys %_plural%"
2020
- msgstr "usuario compra %_plural%"
 
 
 
2021
 
2022
- #: ../addons/email-notices/myCRED-addon-email-notices.php:236
2023
- msgid "Transfer Add-on"
2024
- msgstr "Extensión de Transferencias"
 
 
 
2025
 
2026
- #: ../addons/email-notices/myCRED-addon-email-notices.php:237
2027
- msgid "user sends %_plural%"
2028
- msgstr "usuario manda %_plural%"
 
 
2029
 
2030
- #: ../addons/email-notices/myCRED-addon-email-notices.php:238
2031
- msgid "user receives %_plural%"
2032
- msgstr "usuario recibe %_plural%"
 
2033
 
2034
- #: ../addons/email-notices/myCRED-addon-email-notices.php:245
2035
- msgid "Ranks Add-on"
2036
- msgstr "Extensión de Rangos"
 
2037
 
2038
- #: ../addons/email-notices/myCRED-addon-email-notices.php:246
2039
- msgid "user is demoted"
2040
- msgstr "se ha degrado al usuario"
 
 
2041
 
2042
- #: ../addons/email-notices/myCRED-addon-email-notices.php:247
2043
- msgid "user is promoted"
2044
- msgstr "se ha promovido al usuario"
2045
 
2046
- #: ../addons/email-notices/myCRED-addon-email-notices.php:285
2047
- msgid ""
2048
- "Settings that apply to all email notices and can not be overridden for "
2049
- "individual emails."
2050
- msgstr ""
2051
- "Ajustes que se aplica a todos los correos electrónicos y que no seran "
2052
- "anulados para correos electronicos especificos."
2053
 
2054
- #: ../addons/email-notices/myCRED-addon-email-notices.php:286
2055
- msgid "Email Format"
2056
- msgstr "Formato de Correo Electrónico"
2057
 
2058
- #: ../addons/email-notices/myCRED-addon-email-notices.php:290
2059
- msgid "Plain text emails only."
2060
- msgstr "Correo electrónico usando texto sin formato."
 
2061
 
2062
- #: ../addons/email-notices/myCRED-addon-email-notices.php:294
2063
- msgid "HTML or Plain text emails."
2064
- msgstr "Correo electrónico usando HTML o texto sin formato."
2065
 
2066
- #: ../addons/email-notices/myCRED-addon-email-notices.php:297
2067
- msgid "Filters"
2068
- msgstr "Filtros"
 
 
 
 
 
2069
 
2070
- #: ../addons/email-notices/myCRED-addon-email-notices.php:301
2071
  msgid ""
2072
- "Allow WordPress and Third Party Plugins to filter the email subject before "
2073
- "an email is sent."
2074
  msgstr ""
2075
- "Permite a Wordpress y a los Plugins de terceros a filtrar el asunto del "
2076
- "correo electrónico antes de enviarlo."
2077
 
2078
- #: ../addons/email-notices/myCRED-addon-email-notices.php:305
2079
  msgid ""
2080
- "Allow WordPress and Third Party Plugins to filter the email content before "
2081
- "an email is sent."
2082
  msgstr ""
2083
- "Permite a Wordpress y a los Plugins de terceros a filtrar el contenido del "
2084
- "correo electrónico antes de enviarlo."
2085
 
2086
- #: ../addons/email-notices/myCRED-addon-email-notices.php:310 ../addons/email-
2087
- #: notices/myCRED-addon-email-notices.php:316
2088
- msgid "Email Schedule"
2089
  msgstr ""
 
 
2090
 
2091
- #: ../addons/email-notices/myCRED-addon-email-notices.php:312
2092
- msgid "WordPress Cron is disabled. Emails will be sent immediately."
2093
- msgstr ""
2094
 
2095
- #: ../addons/email-notices/myCRED-addon-email-notices.php:320
2096
- msgid "Send emails immediately"
2097
- msgstr ""
2098
 
2099
- #: ../addons/email-notices/myCRED-addon-email-notices.php:324
2100
- msgid "Send emails once an hour"
2101
- msgstr ""
 
2102
 
2103
- #: ../addons/email-notices/myCRED-addon-email-notices.php:328
2104
- msgid "Send emails once a day"
2105
- msgstr ""
2106
 
2107
- #: ../addons/email-notices/myCRED-addon-email-notices.php:331
2108
- msgid "Subscriptions"
2109
- msgstr ""
2110
 
2111
- #: ../addons/email-notices/myCRED-addon-email-notices.php:333
2112
- #, php-format
2113
- msgid ""
2114
- "Use the %s shortcode to allow users to subscribe / unsubscribe to email "
2115
- "updates."
2116
  msgstr ""
 
 
2117
 
2118
- #: ../addons/email-notices/myCRED-addon-email-notices.php:338
2119
- msgid "SMTP Override"
2120
- msgstr ""
2121
 
2122
- #: ../addons/email-notices/myCRED-addon-email-notices.php:342
2123
- msgid ""
2124
- "SMTP Debug. Enable if you are experiencing issues with wp_mail() or if you "
2125
- "use a SMTP plugin for emails."
2126
- msgstr ""
2127
 
2128
- #: ../addons/email-notices/myCRED-addon-email-notices.php:345
 
 
 
 
 
 
 
2129
  msgid ""
2130
- "Default email settings. These settings can be individually overridden when "
2131
- "editing emails."
2132
  msgstr ""
2133
- "Configuraciones predeterminadas para correos electrónicos. Estos ajustes "
2134
- "pueden ser anulado individualmente cuando se edita correos electrónicos."
2135
 
2136
- #: ../addons/email-notices/myCRED-addon-email-notices.php:346 ../addons/email-
2137
- #: notices/myCRED-addon-email-notices.php:900
2138
- msgid "Email Settings"
2139
- msgstr "Configuracion de Correo Electrónico"
2140
 
2141
- #: ../addons/email-notices/myCRED-addon-email-notices.php:349 ../addons/email-
2142
- #: notices/myCRED-addon-email-notices.php:1053
2143
- msgid "Senders Name:"
2144
- msgstr "Nombre del Remitente"
 
2145
 
2146
- #: ../addons/email-notices/myCRED-addon-email-notices.php:353 ../addons/email-
2147
- #: notices/myCRED-addon-email-notices.php:1055
2148
- msgid "Senders Email:"
2149
- msgstr "Correo Electrónico del Remitente:"
2150
 
2151
- #: ../addons/email-notices/myCRED-addon-email-notices.php:357
2152
- msgid "Reply-To:"
2153
- msgstr "Responder-A:"
2154
 
2155
- #: ../addons/email-notices/myCRED-addon-email-notices.php:361
2156
- msgid "Default Email Content"
2157
- msgstr "Contenido de Correo Electrónico Predefinido"
2158
 
2159
- #: ../addons/email-notices/myCRED-addon-email-notices.php:365
2160
- msgid "Default email content."
2161
- msgstr "Contenido de correo electrónico predefinido."
 
 
 
 
 
 
2162
 
2163
- #: ../addons/email-notices/myCRED-addon-email-notices.php:368
2164
- msgid "Default Email Styling"
2165
- msgstr "Estilo de Correo Electrónico Predefinido"
 
2166
 
2167
- #: ../addons/email-notices/myCRED-addon-email-notices.php:372
2168
- msgid "Ignored if HTML is not allowed in emails."
2169
- msgstr "Sera ignorado si no se permite HTML en los correos electrónicos."
2170
 
2171
- #: ../addons/email-notices/myCRED-addon-email-notices.php:719
2172
- #, php-format
2173
- msgctxt "Badge Title - Level 1,2,3.."
2174
- msgid "%s - Level %d"
2175
- msgstr ""
2176
 
2177
- #: ../addons/email-notices/myCRED-addon-email-notices.php:809 ../addons/email-
2178
- #: notices/myCRED-addon-email-notices.php:949
2179
- msgid "Email Subject"
2180
- msgstr "Asunto del Correo Electrónico"
2181
 
2182
- #: ../addons/email-notices/myCRED-addon-email-notices.php:835
2183
- msgid "Not Active"
2184
- msgstr "No esta Activo"
 
2185
 
2186
- #: ../addons/email-notices/myCRED-addon-email-notices.php:838
2187
- #, php-format
2188
- msgid "Scheduled:<br /><strong>%1$s</strong>"
2189
- msgstr "Programada:<br /><strong>%1$s</strong>"
2190
 
2191
- #: ../addons/email-notices/myCRED-addon-email-notices.php:843
2192
- msgid "Active"
2193
- msgstr "Activo"
2194
 
2195
- #: ../addons/email-notices/myCRED-addon-email-notices.php:845
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
2196
  #, php-format
2197
- msgid "Active - Last run:<br /><strong>%1$s</strong>"
2198
- msgstr "Activo - Ultima ejecución:<br /><strong>%1$s</strong>"
2199
 
2200
- #: ../addons/email-notices/myCRED-addon-email-notices.php:855
2201
- msgid "Email is sent when"
2202
- msgstr "el Correo Electrónico se envia cuando"
2203
 
2204
- #: ../addons/email-notices/myCRED-addon-email-notices.php:857
2205
- msgid "Missing instance for this notice!"
2206
- msgstr "¡Falta una instancia para este aviso!"
2207
 
2208
- #: ../addons/email-notices/myCRED-addon-email-notices.php:866 ../addons/email-
2209
- #: notices/myCRED-addon-email-notices.php:868 ../addons/email-notices/myCRED-
2210
- #: addon-email-notices.php:870
2211
- msgid "Sent To"
2212
- msgstr "Enviado A:"
2213
 
2214
- #: ../addons/email-notices/myCRED-addon-email-notices.php:866 ../addons/email-
2215
- #: notices/myCRED-addon-email-notices.php:1019 ../includes/mycred-admin.php:799 ..
2216
- #: includes/mycred-log.php:755 ../modules/mycred-module-log.php:609
2217
- msgid "User"
2218
- msgstr "Usuario"
2219
 
2220
- #: ../addons/email-notices/myCRED-addon-email-notices.php:868 ../addons/email-
2221
- #: notices/myCRED-addon-email-notices.php:1020
2222
- msgid "Administrator"
2223
- msgstr "Administrador"
2224
 
2225
- #: ../addons/email-notices/myCRED-addon-email-notices.php:870
2226
- msgid "Both Administrator and User"
2227
- msgstr "Tanto Administrador como Usuario"
 
2228
 
2229
- #: ../addons/email-notices/myCRED-addon-email-notices.php:880 ../addons/email-
2230
- #: notices/myCRED-addon-email-notices.php:1037
2231
- msgid "All types"
 
2232
  msgstr ""
 
 
2233
 
2234
- #: ../addons/email-notices/myCRED-addon-email-notices.php:909
2235
- msgid "Available Template Tags"
2236
- msgstr "Etiquetas (tags) de Plantilla Disponibles"
2237
 
2238
- #: ../addons/email-notices/myCRED-addon-email-notices.php:920
2239
- msgid "Email Header"
2240
- msgstr "Encabezado del Correo Electrónico"
2241
 
2242
- #: ../addons/email-notices/myCRED-addon-email-notices.php:986
2243
- msgid "Send this email notice when..."
2244
- msgstr "Envia este aviso por correo electrónico cuando..."
2245
 
2246
- #: ../addons/email-notices/myCRED-addon-email-notices.php:1017
2247
- msgid "Recipient:"
2248
- msgstr "Destinatario:"
2249
 
2250
- #: ../addons/email-notices/myCRED-addon-email-notices.php:1021
2251
- msgid "Both"
2252
- msgstr "Ambos"
2253
 
2254
- #: ../addons/email-notices/myCRED-addon-email-notices.php:1025 ..
2255
- #: addons/gateway/carts/mycred-woocommerce.php:160 ../modules/mycred-module-
2256
- #: settings.php:674 ../modules/mycred-module-settings.php:695 ../modules/mycred-
2257
- #: module-settings.php:720
2258
- msgid "Label"
2259
- msgstr "Etiqueta"
2260
 
2261
- #: ../addons/email-notices/myCRED-addon-email-notices.php:1057
2262
- msgid "Reply-To Email:"
2263
- msgstr "Responder-A Correo Electrónico:"
2264
 
2265
- #: ../addons/email-notices/myCRED-addon-email-notices.php:1063
2266
- msgid "Save"
2267
- msgstr "Guardar"
 
 
2268
 
2269
- #: ../addons/email-notices/myCRED-addon-email-notices.php:1075
2270
- msgid "CSS Styling"
2271
- msgstr "Estilo CSS"
 
2272
 
2273
- #: ../addons/email-notices/myCRED-addon-email-notices.php:1091
2274
- msgid "Site Related"
2275
- msgstr "Relacionado al Sitio"
 
2276
 
2277
- #: ../addons/email-notices/myCRED-addon-email-notices.php:1092
2278
- msgid "Your websites title"
2279
- msgstr "Titulo de tu pagina web"
 
 
 
 
 
 
 
 
2280
 
2281
- #: ../addons/email-notices/myCRED-addon-email-notices.php:1093
2282
- msgid "Your websites address"
2283
- msgstr "Dirección de tu pagina web"
2284
 
2285
- #: ../addons/email-notices/myCRED-addon-email-notices.php:1094
2286
- msgid "Your websites tagline (description)"
2287
- msgstr "L
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: Mon Nov 23 2015 17:46:43 GMT+0100 (CET)\n"
7
+ "Last-Translator: Gabriel Merovingi <gabriel.s@merovingi.com>\n"
8
  "Language-Team: myCRED & All the awesome users helping out <support@mycred."
9
  "me>\n"
10
  "Language: Spanish (Venezuela)\n"
25
  "X-Poedit-SearchPath-1: .\n"
26
  "X-Loco-Target-Locale: es_VE"
27
 
28
+ #. URI of the plugin
29
+ msgid "http://mycred.me"
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
30
  msgstr ""
 
 
31
 
32
+ #. Description of the plugin
33
  msgid ""
34
+ "<strong>my</strong>CRED is an adaptive points management system for "
35
+ "WordPress powered websites, giving you full control on how points are gained,"
36
+ " used, traded, managed, logged or presented."
37
  msgstr ""
 
 
38
 
39
+ #. Author of the plugin
40
+ msgid "Gabriel S Merovingi"
41
  msgstr ""
 
 
 
 
 
 
 
 
 
 
42
 
43
+ #. Author URI of the plugin
44
+ msgid "http://www.merovingi.com"
45
+ msgstr ""
46
 
47
+ #: ../mycred.php:685
48
  msgid ""
49
  "In order to adjust the number of decimal places you want to use we must "
50
  "update your log. It is highly recommended that you backup your current log "
51
  "before continuing!"
52
  msgstr ""
53
 
54
+ #: ../abstracts/mycred-abstract-hook.php:284
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
55
  msgid "/ Day"
56
  msgstr ""
57
 
58
+ #: ../abstracts/mycred-abstract-hook.php:285
59
  msgid "/ Week"
60
  msgstr ""
61
 
62
+ #: ../abstracts/mycred-abstract-hook.php:286
63
  msgid "/ Month"
64
  msgstr ""
65
 
66
+ #: ../abstracts/mycred-abstract-hook.php:287
67
  msgid "in Total"
68
  msgstr ""
69
 
70
+ #: ../modules/mycred-module-settings.php:246
71
+ msgid "Invalid decimal value."
72
+ msgstr ""
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
73
 
74
+ #: ../modules/mycred-module-settings.php:293
75
+ msgid "Log Updated"
 
 
 
 
 
76
  msgstr ""
77
 
78
+ #: ../modules/mycred-module-settings.php:423
79
+ msgid "Update Database"
 
80
  msgstr ""
81
 
82
+ #: ../modules/mycred-module-settings.php:424
83
+ msgid "Zero for no decimals or maximum 20."
 
84
  msgstr ""
85
 
86
+ #: ../modules/mycred-module-settings.php:427
87
+ msgid ""
88
+ "As this is your main point type, the value you select here will be the "
89
+ "largest number of decimals your installation will support."
90
  msgstr ""
91
 
92
+ #: ../modules/mycred-module-settings.php:440 ../modules/mycred-module-settings.
93
+ #: php:453
94
+ msgid "No decimals"
95
  msgstr ""
96
 
97
+ #: ../modules/mycred-module-settings.php:465
98
  #, php-format
99
+ msgid "<a href=\"%s\">Click here</a> to change your default point types setup."
100
  msgstr ""
101
 
102
+ #: ../modules/mycred-module-settings.php:507
103
+ msgid "Adjust your core or add-on settings."
104
  msgstr ""
105
 
106
+ #: ../modules/mycred-module-settings.php:725
107
+ msgid ""
108
+ "The meta key must be lowercase and only contain letters or underscores. All "
109
+ "other characters will be deleted!"
110
+ msgstr ""
 
111
 
112
+ #: ../modules/mycred-module-addons.php:160
113
+ msgid "Give your users badges based on their interaction with your website."
114
  msgstr ""
115
 
116
+ #: ../modules/mycred-module-addons.php:260
117
+ msgid ""
118
+ "Gives you access to your myCRED Staticstics based on your users gains and "
119
+ "loses."
120
  msgstr ""
121
 
122
+ #: ../modules/mycred-module-addons.php:328
123
+ msgid "Add-ons Reloaded"
124
  msgstr ""
125
 
126
+ #: ../modules/mycred-module-addons.php:358
127
+ msgid "Reload Add-ons"
128
  msgstr ""
129
 
130
+ #: ../modules/mycred-module-log.php:422
131
+ msgid ""
132
+ "Warning. The required Mcrypt PHP Library is not installed on this server! "
133
+ "Certain hooks and shortcodes will not work correctly!"
134
  msgstr ""
135
 
136
+ #: ../modules/mycred-module-hooks.php:114
137
+ #, php-format
138
+ msgid "%plural% for daily visits"
139
  msgstr ""
140
 
141
+ #: ../modules/mycred-module-hooks.php:115
142
+ #, php-format
143
+ msgid "Award %_plural% for users visiting your website on a daily basis."
144
  msgstr ""
145
 
146
+ #: ../modules/mycred-module-hooks.php:121
147
+ #, php-format
148
+ msgid "%plural% for viewing content"
149
  msgstr ""
150
 
151
+ #: ../modules/mycred-module-hooks.php:122
152
+ #, php-format
153
+ msgid ""
154
+ "Award %_plural% to your users for viewing posts and / or %plural% to your "
155
+ "authors for members viewing their content."
156
  msgstr ""
157
 
158
+ #: ../modules/mycred-module-hooks.php:673
159
+ #, php-format
160
+ msgid "%plural% for viewing Posts"
161
  msgstr ""
162
 
163
+ #: ../modules/mycred-module-hooks.php:676 ../modules/mycred-module-hooks.php:693 .
164
+ #: ./modules/mycred-module-hooks.php:707 ../modules/mycred-module-hooks.php:724 ..
165
+ #: modules/mycred-module-hooks.php:784 ../modules/mycred-module-hooks.php:801
166
+ msgid "Member"
167
+ msgstr ""
168
 
169
+ #: ../modules/mycred-module-hooks.php:704
170
+ #, php-format
171
+ msgid "%plural% for viewing Pages"
172
  msgstr ""
173
 
174
+ #: ../modules/mycred-module-hooks.php:781
175
+ #, php-format
176
+ msgid "%plural% for viewing %s"
 
 
177
  msgstr ""
178
 
179
+ #: ../modules/mycred-module-hooks.php:2678
180
+ msgid "Visitors Referred"
181
  msgstr ""
182
 
183
+ #: ../modules/mycred-module-hooks.php:2682
184
+ msgid "Signups Referred"
185
  msgstr ""
186
 
187
+ #: ../modules/mycred-module-buddypress.php:418 ../addons/badges/myCRED-addon-
188
+ #: badges.php:971
189
+ msgid "Include in Profile Header"
190
  msgstr ""
191
 
192
+ #: ../modules/mycred-module-buddypress.php:420 ../addons/badges/myCRED-addon-
193
+ #: badges.php:973
194
+ msgid "Include under the \"Profile\" tab and Profile Header"
195
  msgstr ""
196
 
197
+ #: ../plugins/mycred-hook-wp-postratings.php:18
198
+ msgid "Post Ratings"
199
  msgstr ""
200
 
201
+ #: ../plugins/mycred-hook-wp-postratings.php:19
202
+ #, php-format
203
+ msgid ""
204
+ "Awards %_plural% for post ratings. Supports awarding %_plural% both to post "
205
+ "author and the user rating."
206
  msgstr ""
207
 
208
+ #: ../plugins/mycred-hook-wp-postratings.php:76
209
+ msgid "Based on rating"
210
  msgstr ""
211
 
212
+ #: ../plugins/mycred-hook-wp-postratings.php:150 ../includes/mycred-functions.php:
213
+ #: 2599
214
+ msgid "Adding a Rating"
 
215
  msgstr ""
216
 
217
+ #: ../plugins/mycred-hook-wp-postratings.php:160 ../plugins/mycred-hook-wp-
218
+ #: postratings.php:179
219
+ msgid "Use the Rating Value instead of the amount set here."
220
  msgstr ""
221
 
222
+ #: ../plugins/mycred-hook-wp-postratings.php:169 ../includes/mycred-functions.php:
223
+ #: 2600
224
+ msgid "Receiving a Rating"
225
  msgstr ""
226
 
227
+ #: ../plugins/mycred-hook-marketpress.php:63 ../plugins/mycred-hook-woocommerce.
228
+ #: php:80
229
+ #, php-format
230
+ msgid "Reward with %plural%"
231
  msgstr ""
232
 
233
+ #: ../plugins/mycred-hook-buddypress.php:519
234
+ #, php-format
235
+ msgid "%plural% for Removing Profile Update"
 
236
  msgstr ""
237
 
238
+ #: ../plugins/mycred-hook-buddypress.php:563
239
+ #, php-format
240
+ msgid ""
241
+ "Users with zero balance can not add friends. Requires that you deduct "
242
+ "%_plural% for adding a new friend."
243
  msgstr ""
244
 
245
+ #: ../plugins/mycred-hook-affiliatewp.php:18
246
+ msgid "AffiliateWP"
 
 
247
  msgstr ""
248
 
249
+ #: ../plugins/mycred-hook-affiliatewp.php:19
250
+ #, php-format
251
+ msgid ""
252
+ "Awards %_plural% for affiliate signups, referring visitors and store sale "
253
+ "referrals."
254
  msgstr ""
255
 
256
+ #: ../plugins/mycred-hook-affiliatewp.php:218
257
+ msgid "Affiliate Signup"
258
  msgstr ""
259
 
260
+ #: ../plugins/mycred-hook-affiliatewp.php:248
261
+ msgid "Referring Sales"
 
262
  msgstr ""
263
 
264
+ #: ../plugins/mycred-hook-affiliatewp.php:251
265
+ msgid "Pay a set amount for all referrals."
 
266
  msgstr ""
267
 
268
+ #: ../plugins/mycred-hook-affiliatewp.php:252
269
+ #, php-format
270
+ msgid "AffiliateWP will use %plural% as currency so pay the referral amount."
271
  msgstr ""
272
 
273
+ #: ../plugins/mycred-hook-affiliatewp.php:253
274
+ msgid "Apply an exchange rate against the referral amount."
 
275
  msgstr ""
276
 
277
+ #: ../plugins/mycred-hook-affiliatewp.php:261
278
+ msgid "Log template - Payout"
279
  msgstr ""
280
 
281
+ #: ../plugins/mycred-hook-affiliatewp.php:266
282
+ msgid "Log template - Refund"
283
+ msgstr ""
 
 
284
 
285
+ #: ../plugins/mycred-hook-sharethis.php:19
286
+ #, php-format
287
+ msgid "%plural% for Sharing"
288
  msgstr ""
289
 
290
+ #: ../plugins/mycred-hook-sharethis.php:20
291
+ #, php-format
292
+ msgid ""
293
+ "Awards %_plural% for users sharing / liking your website content to popular "
294
+ "social media sites."
295
+ msgstr ""
296
 
297
+ #: ../plugins/mycred-hook-sharethis.php:257
298
+ msgid "Your ShareThis public key is not set."
 
299
  msgstr ""
300
 
301
+ #: ../plugins/mycred-hook-sharethis.php:262
302
+ msgid "No ShareThis services detected. Please check your installation."
 
303
  msgstr ""
304
 
305
+ #: ../plugins/mycred-hook-wp-favorite-posts.php:225
306
+ msgid "Authors Content added to favorites"
 
307
  msgstr ""
308
 
309
+ #: ../plugins/mycred-hook-wp-favorite-posts.php:256
310
+ msgid "Removing Content from Favorites (Author)"
311
  msgstr ""
312
 
313
+ #: ../plugins/mycred-hook-bbPress.php:512
314
+ #, php-format
315
+ msgid "%plural% for Reply Deletion"
316
  msgstr ""
317
 
318
+ #: ../plugins/mycred-hook-woocommerce.php:210
319
+ msgid "WooCommerce Product Reviews"
320
  msgstr ""
321
 
322
+ #: ../plugins/mycred-hook-woocommerce.php:211
323
+ #, php-format
324
+ msgid "Awards %_plural% for users leaving reviews on your WooCommerce products."
 
325
  msgstr ""
326
 
327
+ #: ../includes/mycred-log.php:523
328
+ #, php-format
329
+ msgctxt "mycred"
330
+ msgid "%1$s of %2$s"
331
  msgstr ""
332
 
333
+ #: ../includes/mycred-log.php:628
334
+ msgid "User ID, Username, Email or Nicename"
 
335
  msgstr ""
336
 
337
+ #: ../includes/mycred-remote.php:555
338
+ msgid "16, 24 or 32 characters"
339
  msgstr ""
340
 
341
+ #: ../includes/mycred-shortcodes.php:941 ../includes/mycred-functions.php:2732
342
+ msgid "Point types not found."
343
  msgstr ""
344
 
345
+ #: ../includes/mycred-shortcodes.php:947 ../includes/mycred-shortcodes.php:955 ..
346
+ #: includes/mycred-functions.php:2744 ../includes/mycred-functions.php:2764
347
+ #, php-format
348
+ msgid "You are excluded from using %s."
349
+ msgstr ""
350
 
351
+ #: ../includes/mycred-shortcodes.php:951 ../includes/mycred-functions.php:2754
352
+ msgid "Your balance is too low to use this feature."
 
353
  msgstr ""
354
 
355
+ #: ../includes/mycred-shortcodes.php:973
356
  #, php-format
357
+ msgid "Convert <span>%s</span> to <span>%s</span>"
358
  msgstr ""
359
 
360
+ #: ../includes/mycred-shortcodes.php:982
361
  #, php-format
362
+ msgid "Your current %s balance"
 
363
  msgstr ""
364
 
365
+ #: ../includes/mycred-shortcodes.php:990
 
 
366
  #, php-format
367
+ msgid "Minimum %s"
368
+ msgstr ""
 
 
369
 
370
+ #: ../includes/mycred-shortcodes.php:994
371
  #, php-format
372
+ msgid "1 %s = <span class=\"rate\">%s</span> %s"
 
373
  msgstr ""
374
 
375
+ #: ../includes/mycred-shortcodes.php:1000
376
+ msgid "Exchange"
377
+ msgstr ""
 
378
 
379
+ #: ../includes/mycred-shortcodes.php:1065
380
+ msgid "No instances found for this point type"
381
  msgstr ""
382
 
383
+ #: ../includes/mycred-shortcodes.php:1069
384
+ msgid "Invalid point type"
 
 
 
 
385
  msgstr ""
386
 
387
+ #: ../includes/mycred-shortcodes.php:1130
388
+ msgid "Instance"
389
+ msgstr ""
 
390
 
391
+ #: ../includes/mycred-install.php:39
392
+ msgid "myCRED requires WordPress 3.8 or higher. Version detected:"
 
393
  msgstr ""
394
 
395
+ #: ../includes/mycred-install.php:54
396
+ msgid ""
397
+ "The mcrypt PHP library must be enabled in order to use this plugin! Please "
398
+ "check your PHP configuration or contact your host and ask them to enable it "
399
+ "for you!"
400
+ msgstr ""
401
 
402
+ #: ../includes/mycred-install.php:508
403
+ msgid "Use zero for no decimals or maximum 20."
404
  msgstr ""
405
 
406
+ #: ../includes/mycred-admin.php:195
407
+ msgid "A log entry is required in order to adjust this users balance"
408
+ msgstr ""
 
 
 
 
 
409
 
410
+ #: ../includes/mycred-admin.php:197
411
+ msgid "Users balance saved"
412
+ msgstr ""
 
413
 
414
+ #: ../includes/mycred-admin.php:205
415
+ msgid "Users excluded"
416
  msgstr ""
417
 
418
+ #: ../includes/mycred-admin.php:210
419
+ msgid ""
420
+ "All buyCRED Payment Gateways have been disabled! Please check your exchange "
421
+ "rate settings and update all premium payment gateways!"
422
+ msgstr ""
423
 
424
+ #: ../includes/mycred-admin.php:466 ../includes/mycred-admin.php:467
425
+ msgid "Edit Balance"
426
+ msgstr ""
427
 
428
+ #: ../includes/mycred-admin.php:487
429
+ msgid "Profile"
430
+ msgstr ""
 
431
 
432
+ #: ../includes/mycred-admin.php:494
433
+ msgid "Extended Profile"
434
+ msgstr ""
 
435
 
436
+ #: ../includes/mycred-admin.php:588
437
+ #, php-format
438
+ msgid "This user is excluded from using %s"
439
+ msgstr ""
440
 
441
+ #: ../includes/mycred-admin.php:612
442
+ msgid "Edit User"
443
+ msgstr ""
 
444
 
445
+ #: ../includes/mycred-admin.php:614
446
+ msgctxt "user"
447
+ msgid "Add New"
448
+ msgstr ""
449
 
450
+ #: ../includes/mycred-admin.php:616
451
+ msgctxt "user"
452
+ msgid "Add Existing"
453
+ msgstr ""
454
 
455
+ #: ../includes/mycred-admin.php:627
456
+ #, php-format
457
+ msgid "Total %s Accumulated"
458
+ msgstr ""
459
 
460
+ #: ../includes/mycred-admin.php:628
461
+ #, php-format
462
+ msgid "Total %s Spent"
463
+ msgstr ""
464
 
465
+ #: ../includes/mycred-admin.php:639
466
+ msgid "View History"
467
+ msgstr ""
468
 
469
+ #: ../includes/mycred-admin.php:640
470
+ msgid "Exclude User"
471
+ msgstr ""
472
 
473
+ #: ../includes/mycred-admin.php:644
474
+ msgid "Adjust Balance"
475
  msgstr ""
476
 
477
+ #: ../includes/mycred-admin.php:653
478
+ msgid ""
479
+ "Warning! Excluding this user will result in their balance being deleted "
480
+ "along with any entries currently in your log! This can not be undone!"
481
  msgstr ""
482
 
483
+ #: ../includes/mycred-widgets.php:399
484
+ msgid "Based On"
485
  msgstr ""
486
 
487
+ #: ../includes/mycred-widgets.php:401
488
+ msgid ""
489
+ "Use \"balance\" to base the leaderboard on your users current balances or use "
490
+ "a specific reference."
491
+ msgstr ""
492
 
493
+ #: ../includes/mycred-widgets.php:401
494
+ msgid "Reference Guide"
495
  msgstr ""
496
 
497
+ #: ../includes/mycred-functions.php:2518
498
+ msgid "Website Registration"
 
499
  msgstr ""
500
 
501
+ #: ../includes/mycred-functions.php:2519
502
+ msgid "Website Visit"
503
  msgstr ""
504
 
505
+ #: ../includes/mycred-functions.php:2520
506
+ msgid "Viewing Content (Member)"
 
 
507
  msgstr ""
508
 
509
+ #: ../includes/mycred-functions.php:2521
510
+ msgid "Viewing Content (Author)"
511
  msgstr ""
512
 
513
+ #: ../includes/mycred-functions.php:2522
514
+ msgid "Logging in"
 
515
  msgstr ""
516
 
517
+ #: ../includes/mycred-functions.php:2523
518
+ msgid "Publishing Content"
519
  msgstr ""
520
 
521
+ #: ../includes/mycred-functions.php:2525
522
+ msgid "Unapproved Comment"
523
  msgstr ""
524
 
525
+ #: ../includes/mycred-functions.php:2526
526
+ msgid "SPAM Comment"
527
  msgstr ""
528
 
529
+ #: ../includes/mycred-functions.php:2527
530
+ msgid "Deleted Comment"
531
  msgstr ""
532
 
533
+ #: ../includes/mycred-functions.php:2528
534
+ msgid "Link Click"
535
+ msgstr ""
 
536
 
537
+ #: ../includes/mycred-functions.php:2529
538
+ msgid "Watching Video"
539
  msgstr ""
540
 
541
+ #: ../includes/mycred-functions.php:2530
542
+ msgid "Visitor Referral"
543
+ msgstr ""
 
544
 
545
+ #: ../includes/mycred-functions.php:2531
546
+ msgid "Signup Referral"
547
+ msgstr ""
 
548
 
549
+ #: ../includes/mycred-functions.php:2535
550
+ msgid "New Profile Update"
551
+ msgstr ""
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
552
 
553
+ #: ../includes/mycred-functions.php:2536
554
+ msgid "Profile Update Removal"
555
+ msgstr ""
 
 
556
 
557
+ #: ../includes/mycred-functions.php:2537
558
+ msgid "Avatar Upload"
 
559
  msgstr ""
560
 
561
+ #: ../includes/mycred-functions.php:2538
562
+ msgid "New Friendship"
 
563
  msgstr ""
564
 
565
+ #: ../includes/mycred-functions.php:2539
566
+ msgid "Ended Friendship"
 
567
  msgstr ""
568
 
569
+ #: ../includes/mycred-functions.php:2540
570
+ msgid "New Profile Comment"
 
571
  msgstr ""
572
 
573
+ #: ../includes/mycred-functions.php:2541
574
+ msgid "Profile Comment Deletion"
575
  msgstr ""
576
 
577
+ #: ../includes/mycred-functions.php:2542
578
+ msgid "New Message"
579
  msgstr ""
580
 
581
+ #: ../includes/mycred-functions.php:2543
582
+ msgid "Sending Gift"
583
  msgstr ""
584
 
585
+ #: ../includes/mycred-functions.php:2544
586
+ msgid "New Group"
 
 
587
  msgstr ""
588
 
589
+ #: ../includes/mycred-functions.php:2545
590
+ msgid "Deleted Group"
591
  msgstr ""
592
 
593
+ #: ../includes/mycred-functions.php:2546
594
+ msgid "New Group Forum Topic"
595
  msgstr ""
596
 
597
+ #: ../includes/mycred-functions.php:2547
598
+ msgid "Edit Group Forum Topic"
599
  msgstr ""
600
 
601
+ #: ../includes/mycred-functions.php:2548
602
+ msgid "New Group Forum Post"
603
  msgstr ""
604
 
605
+ #: ../includes/mycred-functions.php:2549
606
+ msgid "Edit Group Forum Post"
607
  msgstr ""
608
 
609
+ #: ../includes/mycred-functions.php:2550
610
+ msgid "Joining Group"
611
+ msgstr ""
612
 
613
+ #: ../includes/mycred-functions.php:2551
614
+ msgid "Leaving Group"
615
+ msgstr ""
 
 
616
 
617
+ #: ../includes/mycred-functions.php:2552
618
+ msgid "New Group Avatar"
619
  msgstr ""
620
 
621
+ #: ../includes/mycred-functions.php:2553
622
+ msgid "New Group Comment"
623
  msgstr ""
624
 
625
+ #: ../includes/mycred-functions.php:2563
626
+ msgid "New Link"
627
+ msgstr ""
628
 
629
+ #: ../includes/mycred-functions.php:2564
630
+ msgid "Link Voting"
631
+ msgstr ""
 
 
 
 
 
 
632
 
633
+ #: ../includes/mycred-functions.php:2565
634
+ msgid "Link Update"
635
+ msgstr ""
 
636
 
637
+ #: ../includes/mycred-functions.php:2569
638
+ msgid "New Forum (bbPress)"
639
+ msgstr ""
640
 
641
+ #: ../includes/mycred-functions.php:2570
642
+ msgid "New Forum Topic (bbPress)"
643
+ msgstr ""
644
 
645
+ #: ../includes/mycred-functions.php:2571
646
+ msgid "Favorited Topic (bbPress)"
647
+ msgstr ""
648
 
649
+ #: ../includes/mycred-functions.php:2572
650
+ msgid "New Topic Reply (bbPress)"
 
 
 
651
  msgstr ""
 
 
 
 
652
 
653
+ #: ../includes/mycred-functions.php:2576
654
+ msgid "Form Submission (Contact Form 7)"
655
+ msgstr ""
 
656
 
657
+ #: ../includes/mycred-functions.php:2579
658
+ msgid "Form Submission (Gravity Form)"
 
659
  msgstr ""
660
 
661
+ #: ../includes/mycred-functions.php:2582
662
+ msgid "New Forum Topic (SimplePress)"
 
663
  msgstr ""
664
 
665
+ #: ../includes/mycred-functions.php:2583
666
+ msgid "New Forum Post (SimplePress)"
 
667
  msgstr ""
668
 
669
+ #: ../includes/mycred-functions.php:2592
670
+ msgid "Affiliate Signup (AffiliateWP)"
671
  msgstr ""
672
 
673
+ #: ../includes/mycred-functions.php:2593
674
+ msgid "Referred Visit (AffiliateWP)"
 
675
  msgstr ""
676
 
677
+ #: ../includes/mycred-functions.php:2594
678
+ msgid "Affiliate Referral (AffiliateWP)"
679
  msgstr ""
680
 
681
+ #: ../includes/mycred-functions.php:2595
682
+ msgid "Referral Refund (AffiliateWP)"
683
+ msgstr ""
 
684
 
685
+ #: ../includes/mycred-functions.php:2604
686
+ msgid "Poll Voting"
 
687
  msgstr ""
688
 
689
+ #: ../includes/mycred-functions.php:2607
690
+ msgid "Sending an Invite"
691
+ msgstr ""
 
 
692
 
693
+ #: ../includes/mycred-functions.php:2608
694
+ msgid "Accepting an Invite"
695
+ msgstr ""
 
 
696
 
697
+ #: ../includes/mycred-functions.php:2614
698
+ msgid "Banking Payout"
699
  msgstr ""
700
 
701
+ #: ../includes/mycred-functions.php:2617
702
+ msgid "buyCRED Purchase (PayPal Standard)"
703
  msgstr ""
704
 
705
+ #: ../includes/mycred-functions.php:2618
706
+ msgid "buyCRED Purchase (Skrill)"
707
+ msgstr ""
708
 
709
+ #: ../includes/mycred-functions.php:2619
710
+ msgid "buyCRED Purchase (Zombaio)"
711
+ msgstr ""
 
712
 
713
+ #: ../includes/mycred-functions.php:2620
714
+ msgid "buyCRED Purchase (NETBilling)"
715
+ msgstr ""
 
 
 
716
 
717
+ #: ../includes/mycred-functions.php:2621
718
+ msgid "buyCRED Purchase (BitPay)"
719
+ msgstr ""
720
 
721
+ #: ../includes/mycred-functions.php:2626
722
+ msgid "Coupon Purchase"
723
+ msgstr ""
 
724
 
725
+ #: ../includes/mycred-functions.php:2630
726
+ msgid "Store Purchase (WooCommerce)"
727
+ msgstr ""
 
728
 
729
+ #: ../includes/mycred-functions.php:2631
730
+ msgid "Store Reward (WooCommerce)"
731
  msgstr ""
 
 
732
 
733
+ #: ../includes/mycred-functions.php:2632
734
+ msgid "Product Review (WooCommerce)"
735
+ msgstr ""
 
 
736
 
737
+ #: ../includes/mycred-functions.php:2635
738
+ msgid "Store Purchase (MarketPress)"
739
  msgstr ""
740
 
741
+ #: ../includes/mycred-functions.php:2636
742
+ msgid "Store Reward (MarketPress)"
743
+ msgstr ""
744
 
745
+ #: ../includes/mycred-functions.php:2639
746
+ msgid "Store Purchase (WP E-Commerce)"
747
+ msgstr ""
748
 
749
+ #: ../includes/mycred-functions.php:2645
750
+ msgid "Event Payment (Event Espresso)"
751
+ msgstr ""
752
 
753
+ #: ../includes/mycred-functions.php:2646
754
+ msgid "Event Sale (Event Espresso)"
755
+ msgstr ""
 
756
 
757
+ #: ../includes/mycred-functions.php:2650
758
+ msgid "Event Payment (Events Manager)"
759
+ msgstr ""
 
760
 
761
+ #: ../includes/mycred-functions.php:2651
762
+ msgid "Event Sale (Events Manager)"
763
+ msgstr ""
764
 
765
+ #: ../includes/mycred-functions.php:2655
766
+ msgid "Content Purchase / Sale"
767
+ msgstr ""
768
 
769
+ #: ../includes/mycred-functions.php:2662
770
+ msgid "Manual Adjustment by Admin"
771
+ msgstr ""
772
 
773
+ #: ../includes/mycred-functions.php:2777
774
  #, php-format
775
+ msgid "You must exchange at least %s!"
776
+ msgstr ""
777
 
778
+ #: ../includes/mycred-functions.php:2786 ../addons/transfer/myCRED-addon-transfer.
779
+ #: php:161
780
+ msgid "Insufficient Funds. Please try a lower amount."
781
+ msgstr ""
782
+
783
+ #: ../includes/mycred-functions.php:2799
784
  #, php-format
785
+ msgid "Exchange from %s"
786
+ msgstr ""
787
 
788
+ #: ../includes/mycred-functions.php:2811
789
+ #, php-format
790
+ msgid "Exchange to %s"
791
+ msgstr ""
792
 
793
+ #: ../includes/mycred-functions.php:2819
794
  #, php-format
795
+ msgid "You have successfully exchanged %s into %s."
796
  msgstr ""
797
 
798
+ #: ../includes/mycred-functions.php:2851
799
+ msgid "per day"
800
  msgstr ""
801
 
802
+ #: ../includes/mycred-functions.php:2853
803
+ msgid "per week"
804
  msgstr ""
805
 
806
+ #: ../includes/mycred-functions.php:2855
807
+ msgid "per month"
808
  msgstr ""
809
 
810
+ #: ../includes/mycred-functions.php:2857
811
+ msgid "in total"
812
+ msgstr ""
813
+
814
+ #: ../includes/mycred-functions.php:2859 ../includes/mycred-functions.php:2863
815
  #, php-format
816
+ msgid "Maximum once"
817
+ msgid_plural "Maximum %d times"
818
+ msgstr[0] ""
819
+ msgstr[1] ""
820
 
821
+ #: ../addons/banking/myCRED-addon-banking.php:158
822
+ msgid "Central Banking"
823
+ msgstr ""
 
824
 
825
+ #: ../addons/banking/myCRED-addon-banking.php:159
826
+ #, php-format
827
+ msgid ""
828
+ "Instead of creating %_plural% out of thin-air, all payouts are made from a "
829
+ "nominated \"Central Bank\" account. Any %_plural% a user spends or loses are "
830
+ "deposited back into this account."
831
+ msgstr ""
832
 
833
+ #: ../addons/banking/myCRED-addon-banking.php:166
834
+ #, php-format
835
+ msgid "Apply a positive or negative interest rate on your users %_plural% balances."
836
+ msgstr ""
837
 
838
+ #: ../addons/banking/myCRED-addon-banking.php:173
839
+ #, php-format
840
+ msgid "Setup mass %_singular% payouts for your users."
841
+ msgstr ""
842
 
843
+ #: ../addons/banking/myCRED-addon-banking.php:228
844
+ #, php-format
845
+ msgid "Your banking setup for %plural%."
846
+ msgstr ""
847
 
848
+ #: ../addons/banking/services/mycred-bank-service-payouts.php:250 ..
849
+ #: addons/banking/services/mycred-bank-service-interest.php:392 ..
850
+ #: addons/banking/services/mycred-bank-service-interest.php:409
851
+ msgid "Run Count"
852
+ msgstr ""
853
 
854
+ #: ../addons/banking/services/mycred-bank-service-payouts.php:255
855
+ msgid "Last Run"
856
+ msgstr ""
 
857
 
858
+ #: ../addons/banking/services/mycred-bank-service-payouts.php:259
859
+ msgid "Total Payouts"
860
  msgstr ""
861
 
862
+ #: ../addons/banking/services/mycred-bank-service-payouts.php:294 ..
863
+ #: addons/banking/services/mycred-bank-service-interest.php:446
864
+ msgid "Optional minimum balance requirement."
865
+ msgstr ""
866
 
867
+ #: ../addons/banking/services/mycred-bank-service-payouts.php:297 ..
868
+ #: addons/banking/services/mycred-bank-service-interest.php:449
869
+ msgid "Exclude"
870
+ msgstr ""
871
 
872
+ #: ../addons/banking/services/mycred-bank-service-payouts.php:300 ..
873
+ #: addons/banking/services/mycred-bank-service-interest.php:452
874
+ msgid "Comma separated list of user IDs"
875
+ msgstr ""
876
 
877
+ #: ../addons/banking/services/mycred-bank-service-payouts.php:304 ..
878
+ #: addons/banking/services/mycred-bank-service-interest.php:456
879
+ msgid "Roles"
880
+ msgstr ""
881
 
882
+ #: ../addons/banking/services/mycred-bank-service-central.php:105
883
+ msgid "Bank User"
884
+ msgstr ""
 
885
 
886
+ #: ../addons/banking/services/mycred-bank-service-central.php:109
887
+ msgid "The user ID of the central bank account. This user can not be excluded!"
 
888
  msgstr ""
 
 
889
 
890
+ #: ../addons/banking/services/mycred-bank-service-central.php:112
891
+ msgid "Ignore Manual Adjustments"
892
+ msgstr ""
 
893
 
894
+ #: ../addons/banking/services/mycred-bank-service-interest.php:379
895
+ msgid "Compounding Interest"
896
+ msgstr ""
 
897
 
898
+ #: ../addons/banking/services/mycred-bank-service-interest.php:379
899
+ #, php-format
900
+ msgid "%d Users are left to process."
901
+ msgstr ""
902
 
903
+ #: ../addons/banking/services/mycred-bank-service-interest.php:388
904
+ msgid "Payout History"
905
+ msgstr ""
906
 
907
+ #: ../addons/banking/services/mycred-bank-service-interest.php:397
908
+ msgid "Last Payout"
909
+ msgstr ""
910
 
911
+ #: ../addons/banking/services/mycred-bank-service-interest.php:397 ..
912
+ #: addons/banking/services/mycred-bank-service-interest.php:414
913
+ msgid "Activated"
914
+ msgstr ""
915
 
916
+ #: ../addons/banking/services/mycred-bank-service-interest.php:401
917
+ msgid "Total Payed Interest"
918
+ msgstr ""
 
919
 
920
+ #: ../addons/banking/services/mycred-bank-service-interest.php:405
921
+ msgid "Compound History"
922
+ msgstr ""
923
 
924
+ #: ../addons/banking/services/mycred-bank-service-interest.php:414
925
+ msgid "Last Interest Compound"
926
+ msgstr ""
927
 
928
+ #: ../addons/banking/services/mycred-bank-service-interest.php:418
929
+ msgid "Total Compounded Interest"
930
+ msgstr ""
931
 
932
+ #: ../addons/banking/services/mycred-bank-service-interest.php:425
933
+ msgid "Default Rate"
934
+ msgstr ""
935
 
936
+ #: ../addons/banking/services/mycred-bank-service-interest.php:522
937
+ msgid "This user is excluded from receiving interest on this balance."
938
+ msgstr ""
939
 
940
+ #: ../addons/banking/services/mycred-bank-service-interest.php:525
941
+ msgid "Remove from Excluded List"
942
+ msgstr ""
 
 
 
943
 
944
+ #: ../addons/banking/services/mycred-bank-service-interest.php:537
945
+ msgid "This user role is excluded from receiving interest on this balance."
946
+ msgstr ""
 
947
 
948
+ #: ../addons/banking/services/mycred-bank-service-interest.php:552 ../addons/sell-
949
+ #: content/myCRED-addon-sell-content.php:114 ../addons/buy-creds/myCRED-addon-buy-
950
+ #: creds.php:837
951
+ msgid "Leave empty to use the default value."
952
+ msgstr ""
953
 
954
+ #: ../addons/banking/services/mycred-bank-service-interest.php:558
955
+ msgid "Save Interest Rate"
956
+ msgstr ""
957
 
958
+ #: ../addons/banking/services/mycred-bank-service-interest.php:559
959
+ msgid "Exclude from receiving interest"
960
+ msgstr ""
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
961
 
962
+ #: ../addons/banking/services/mycred-bank-service-interest.php:673
963
+ msgid "Compound interest rate saved."
964
+ msgstr ""
 
965
 
966
+ #: ../addons/banking/services/mycred-bank-service-interest.php:675
967
+ msgid "User excluded from receiving interest."
968
+ msgstr ""
 
969
 
970
+ #: ../addons/banking/services/mycred-bank-service-interest.php:677
971
+ msgid "User included in receiving interest."
972
+ msgstr ""
973
 
974
+ #. Description of the plugin
975
+ msgid ""
976
+ "Let your users pay using their <strong>my</strong>CRED points balance. "
977
+ "Supported Carts: WooCommerce, MarketPress and WP E-Commerce. Supported Event "
978
+ "Bookings: Event Espresso, Events Manager."
979
+ msgstr ""
980
 
981
+ #: ../addons/gateway/event-booking/mycred-eventsmanager-pro.php:41
982
+ #, php-format
983
+ msgid "%plural% Cost"
984
+ msgstr ""
985
 
986
+ #: ../addons/gateway/event-booking/mycred-eventsmanager-pro.php:193
987
+ msgid "Your Balance"
988
+ msgstr ""
989
 
990
+ #: ../addons/gateway/event-booking/mycred-eventsmanager-pro.php:600
991
+ msgid "Cart & Checkout Cost"
992
+ msgstr ""
993
 
994
+ #: ../addons/gateway/event-booking/mycred-eventsmanager-pro.php:603
995
+ #, php-format
996
+ msgid "Label for cost in %plural%"
997
+ msgstr ""
998
 
999
+ #: ../addons/gateway/carts/mycred-woocommerce.php:110 ..
1000
+ #: addons/gateway/carts/mycred-woocommerce.php:182
1001
+ msgid "Refund Log Template"
1002
+ msgstr ""
1003
 
1004
+ #: ../addons/gateway/carts/mycred-woocommerce.php:184
1005
+ msgid "Log entry template for refunds of profit shares."
1006
+ msgstr ""
1007
 
1008
+ #: ../addons/gateway/carts/mycred-woocommerce.php:263 ..
1009
+ #: addons/gateway/carts/mycred-marketpress.php:365
1010
+ msgid "Insufficient funds."
1011
+ msgstr ""
1012
 
1013
+ #: ../addons/gateway/carts/mycred-woocommerce.php:360
1014
  #, php-format
1015
+ msgctxt "%s = Point amount formatted"
1016
+ msgid "Refunded %s"
1017
+ msgstr ""
 
 
 
 
1018
 
1019
+ #: ../addons/transfer/myCRED-addon-transfer.php:276
1020
+ msgid "Limit Amount"
1021
+ msgstr ""
1022
 
1023
+ #. Description of the plugin
1024
  msgid ""
1025
+ "Award your users rank based on their current or total balance. Supports "
1026
+ "multiple point types."
 
 
1027
  msgstr ""
 
 
 
 
 
1028
 
1029
+ #: ../addons/ranks/myCRED-addon-ranks.php:441
1030
+ #, php-format
1031
+ msgid "Ranks for %s"
1032
+ msgstr ""
1033
 
1034
+ #: ../addons/ranks/myCRED-addon-ranks.php:978 ../addons/ranks/myCRED-addon-ranks.
1035
+ #: php:979 ../addons/ranks/myCRED-addon-ranks.php:980 ../addons/ranks/myCRED-
1036
+ #: addon-ranks.php:981 ../addons/ranks/myCRED-addon-ranks.php:982 ..
1037
+ #: addons/ranks/myCRED-addon-ranks.php:983 ../addons/ranks/myCRED-addon-ranks.
1038
+ #: php:986 ../addons/ranks/myCRED-addon-ranks.php:987
1039
+ msgid "Rank Updated."
1040
+ msgstr ""
1041
 
1042
+ #: ../addons/ranks/myCRED-addon-ranks.php:984
1043
+ msgid "Rank Enabled"
1044
+ msgstr ""
1045
 
1046
+ #: ../addons/ranks/myCRED-addon-ranks.php:1024
1047
+ #, php-format
1048
+ msgid "<strong>Rank:</strong> %s"
1049
+ msgstr ""
1050
 
1051
+ #: ../addons/ranks/myCRED-addon-ranks.php:1388
1052
+ msgid ""
1053
+ "Use this button to calculate or recalculate your users totals. If not used, "
1054
+ "the users current balance will be used as a starting point."
1055
+ msgstr ""
1056
 
1057
+ #: ../addons/ranks/myCRED-addon-ranks.php:1430 ../addons/ranks/myCRED-addon-ranks.
1058
+ #: php:1475
1059
  #, php-format
1060
+ msgid ""
1061
+ "Template to use when showing a users Rank in BuddyPress. Use %rank_title% "
1062
+ "for the title and %rank_logo% to show the rank logo. HTML is allowed."
1063
+ msgstr ""
1064
 
1065
+ #: ../addons/ranks/myCRED-addon-ranks.php:1452
1066
+ msgid "Include in Topic Replies"
1067
+ msgstr ""
 
1068
 
1069
+ #: ../addons/ranks/myCRED-addon-ranks.php:1453 ../addons/badges/myCRED-addon-
1070
+ #: badges.php:1002
1071
+ msgid "Include in Profile"
1072
+ msgstr ""
1073
 
1074
+ #: ../addons/ranks/myCRED-addon-ranks.php:1454
1075
+ msgid "Include in Topic Replies and Profile"
1076
+ msgstr ""
1077
 
1078
+ #: ../addons/ranks/myCRED-addon-ranks.php:1458
1079
+ msgid "Rank in bbPress"
1080
  msgstr ""
1081
 
1082
+ #: ../addons/ranks/includes/mycred-rank-shortcodes.php:145
1083
+ msgid "Rank not found. Please check the id and try again."
1084
  msgstr ""
1085
 
1086
+ #. Description of the plugin
1087
+ msgid "Notify your users when their balances changes."
1088
  msgstr ""
1089
 
1090
+ #: ../addons/notifications/myCRED-addon-notifications.php:205
1091
+ msgid "Restore to default"
1092
  msgstr ""
1093
 
1094
+ #: ../addons/notifications/myCRED-addon-notifications.php:219
1095
+ msgid ""
1096
+ "Number of seconds before a notice is automatically removed after being shown "
1097
+ "to user. Use zero to disable."
1098
  msgstr ""
1099
 
1100
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:211
1101
+ msgid "Badge Add-on"
1102
  msgstr ""
1103
 
1104
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:212
1105
+ msgid "user gains a badge"
1106
  msgstr ""
1107
 
1108
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:310 ../addons/email-
1109
+ #: notices/myCRED-addon-email-notices.php:316
1110
+ msgid "Email Schedule"
1111
  msgstr ""
1112
 
1113
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:312
1114
+ msgid "WordPress Cron is disabled. Emails will be sent immediately."
1115
  msgstr ""
1116
 
1117
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:320
1118
+ msgid "Send emails immediately"
1119
  msgstr ""
1120
 
1121
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:324
1122
+ msgid "Send emails once an hour"
1123
  msgstr ""
1124
 
1125
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:328
1126
+ msgid "Send emails once a day"
1127
  msgstr ""
1128
 
1129
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:331
1130
+ msgid "Subscriptions"
 
 
 
1131
  msgstr ""
1132
 
1133
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:333
 
1134
  #, php-format
1135
+ msgid ""
1136
+ "Use the %s shortcode to allow users to subscribe / unsubscribe to email "
1137
+ "updates."
1138
  msgstr ""
1139
 
1140
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:338
1141
+ msgid "SMTP Override"
 
 
 
1142
  msgstr ""
1143
 
1144
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:342
1145
+ msgid ""
1146
+ "SMTP Debug. Enable if you are experiencing issues with wp_mail() or if you "
1147
+ "use a SMTP plugin for emails."
 
1148
  msgstr ""
1149
 
1150
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:719
1151
+ #, php-format
1152
+ msgctxt "Badge Title - Level 1,2,3.."
1153
+ msgid "%s - Level %d"
 
1154
  msgstr ""
 
 
1155
 
1156
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:880 ../addons/email-
1157
+ #: notices/myCRED-addon-email-notices.php:1037
1158
+ msgid "All types"
1159
+ msgstr ""
 
 
1160
 
1161
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:1100
1162
+ msgid "The users new balance"
1163
  msgstr ""
 
 
1164
 
1165
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:1101
1166
+ msgid "The users old balance"
1167
+ msgstr ""
1168
 
1169
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:1102
1170
+ msgid "The amount of points gained or lost in this instance"
1171
+ msgstr ""
1172
 
1173
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:1103
1174
+ msgid "The log entry"
1175
+ msgstr ""
 
 
1176
 
1177
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:1178 ../addons/email-
1178
+ #: notices/myCRED-addon-email-notices.php:1181 ../addons/email-notices/myCRED-
1179
+ #: addon-email-notices.php:1187
1180
+ msgid "Email Notice Updated."
1181
+ msgstr ""
1182
 
1183
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:1218
1184
+ msgid "Settings saved."
1185
+ msgstr ""
 
 
1186
 
1187
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:1269
1188
+ msgid "Unsubscribe"
1189
+ msgstr ""
 
 
1190
 
1191
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:1290
1192
+ msgid "There are no email notifications yet."
 
 
1193
  msgstr ""
1194
 
1195
+ #: ../addons/email-notices/myCRED-addon-email-notices.php:1296 ..
1196
+ #: addons/badges/myCRED-addon-badges.php:1182
1197
+ msgid "Save Changes"
1198
+ msgstr ""
1199
 
1200
+ #: ../addons/stats/myCRED-addon-stats.php:54
1201
+ msgid "Statistics"
1202
+ msgstr ""
1203
 
1204
+ #: ../addons/stats/myCRED-addon-stats.php:126
1205
+ msgid "Overview"
1206
+ msgstr ""
1207
 
1208
+ #: ../addons/stats/myCRED-addon-stats.php:192
1209
+ msgid "Refresh"
1210
+ msgstr ""
1211
 
1212
+ #: ../addons/stats/myCRED-addon-stats.php:248
1213
+ msgid "Your log is empty. No statistics can be shown."
1214
+ msgstr ""
1215
 
1216
+ #: ../addons/stats/widgets/mycred-stats-widget-circulation.php:44
1217
+ #, php-format
1218
+ msgid "Total %s:"
1219
+ msgstr ""
1220
 
1221
+ #: ../addons/stats/widgets/mycred-stats-widget-circulation.php:138
1222
+ #, php-format
1223
+ msgid "Total amount of %s in circulation"
1224
+ msgstr ""
1225
 
1226
+ #: ../addons/stats/widgets/mycred-stats-widget-circulation.php:170
1227
+ msgid "Total gains (%)"
1228
+ msgstr ""
1229
 
1230
+ #: ../addons/stats/widgets/mycred-stats-widget-circulation.php:174
1231
+ msgid "Total loses (%)"
1232
+ msgstr ""
1233
 
1234
+ #: ../addons/stats/widgets/mycred-stats-widget-circulation.php:178
1235
+ #, php-format
1236
+ msgid "Total Gained: %s"
1237
+ msgstr ""
1238
 
1239
+ #: ../addons/stats/widgets/mycred-stats-widget-circulation.php:178
1240
+ #, php-format
1241
+ msgid "Total Spent: %s"
1242
+ msgstr ""
1243
 
1244
+ #: ../addons/stats/widgets/mycred-stats-widget-circulation.php:192
1245
+ msgid "This Year"
1246
+ msgstr ""
1247
 
1248
+ #: ../addons/stats/widgets/mycred-stats-widget-circulation.php:196 ..
1249
+ #: addons/stats/widgets/mycred-stats-widget-circulation.php:198 ..
1250
+ #: addons/stats/widgets/mycred-stats-widget-circulation.php:200 ..
1251
+ #: addons/stats/widgets/mycred-stats-widget-circulation.php:202
1252
+ msgid "Gained"
1253
  msgstr ""
 
 
 
 
1254
 
1255
+ #: ../addons/stats/widgets/mycred-stats-widget-circulation.php:197 ..
1256
+ #: addons/stats/widgets/mycred-stats-widget-circulation.php:199 ..
1257
+ #: addons/stats/widgets/mycred-stats-widget-circulation.php:201 ..
1258
+ #: addons/stats/widgets/mycred-stats-widget-circulation.php:203
1259
+ msgid "Lost"
1260
+ msgstr ""
1261
 
1262
+ #: ../addons/stats/widgets/mycred-stats-widget-daily-loses.php:118
1263
+ msgid "Most common ways your users have lost or spent points during this period."
1264
+ msgstr ""
1265
 
1266
+ #: ../addons/stats/widgets/mycred-stats-widget-daily-loses.php:120
1267
+ #, php-format
1268
+ msgid "Most common ways your users have lost or spent %_plural% during this period."
1269
+ msgstr ""
1270
 
1271
+ #: ../addons/stats/widgets/mycred-stats-widget-daily-loses.php:127
1272
+ msgid "Loses in the last 10 days"
1273
+ msgstr ""
1274
 
1275
+ #: ../addons/stats/widgets/mycred-stats-widget-daily-loses.php:151 ..
1276
+ #: addons/stats/widgets/mycred-stats-widget-daily-gains.php:151
1277
+ msgid "View"
1278
+ msgstr ""
1279
 
1280
+ #: ../addons/stats/widgets/mycred-stats-widget-daily-loses.php:166 ..
1281
+ #: addons/stats/widgets/mycred-stats-widget-daily-gains.php:166
1282
+ msgid "No data found"
1283
+ msgstr ""
1284
 
1285
+ #: ../addons/stats/widgets/mycred-stats-widget-daily-gains.php:118
1286
+ msgid "Most common ways your users have gained points during this period."
1287
+ msgstr ""
 
1288
 
1289
+ #: ../addons/stats/widgets/mycred-stats-widget-daily-gains.php:120
1290
  #, php-format
1291
+ msgid "Most common ways your users have gained %_plural% during this period."
 
1292
  msgstr ""
1293
 
1294
+ #: ../addons/stats/widgets/mycred-stats-widget-daily-gains.php:127
1295
+ msgid "Gains in the last 10 days"
1296
+ msgstr ""
1297
 
1298
+ #: ../addons/badges/myCRED-addon-badges.php:48 ../addons/badges/myCRED-addon-
1299
+ #: badges.php:49 ../addons/badges/myCRED-addon-badges.php:50 ..
1300
+ #: addons/badges/myCRED-addon-badges.php:144 ../addons/badges/myCRED-addon-
1301
+ #: badges.php:145 ../addons/badges/myCRED-addon-badges.php:383 ..
1302
+ #: addons/badges/myCRED-addon-badges.php:389 ../addons/badges/myCRED-addon-
1303
+ #: badges.php:395
1304
+ msgid "Badges"
1305
+ msgstr ""
1306
 
1307
+ #: ../addons/badges/myCRED-addon-badges.php:169
1308
+ #, php-format
1309
+ msgid "Badges (%d)"
1310
+ msgstr ""
1311
 
1312
+ #: ../addons/badges/myCRED-addon-badges.php:260
1313
+ #, php-format
1314
+ msgid "%d Users earned this badge."
1315
+ msgstr ""
1316
 
1317
+ #: ../addons/badges/myCRED-addon-badges.php:264
1318
+ msgid "No users has yet earned this badge."
1319
+ msgstr ""
1320
 
1321
+ #: ../addons/badges/myCRED-addon-badges.php:287
1322
+ msgid "No connections where removed."
1323
+ msgstr ""
1324
 
1325
+ #: ../addons/badges/myCRED-addon-badges.php:289
1326
+ #, php-format
1327
+ msgid "%s connections where removed."
1328
+ msgstr ""
1329
 
1330
+ #: ../addons/badges/myCRED-addon-badges.php:384
1331
+ msgid "Badge"
1332
+ msgstr ""
1333
 
1334
+ #: ../addons/badges/myCRED-addon-badges.php:386
1335
+ msgid "Add New Badge"
1336
  msgstr ""
 
 
 
 
 
 
1337
 
1338
+ #: ../addons/badges/myCRED-addon-badges.php:387
1339
+ msgid "Edit Badge"
1340
+ msgstr ""
 
 
 
 
1341
 
1342
+ #: ../addons/badges/myCRED-addon-badges.php:388
1343
+ msgid "New Badge"
1344
  msgstr ""
 
 
1345
 
1346
+ #: ../addons/badges/myCRED-addon-badges.php:390
1347
+ msgid "View Badge"
1348
+ msgstr ""
 
1349
 
1350
+ #: ../addons/badges/myCRED-addon-badges.php:391
1351
+ msgid "Search Badge"
 
 
 
1352
  msgstr ""
 
 
 
1353
 
1354
+ #: ../addons/badges/myCRED-addon-badges.php:392
1355
+ msgid "No badges found"
1356
+ msgstr ""
1357
 
1358
+ #: ../addons/badges/myCRED-addon-badges.php:393
1359
+ msgid "No badges found in Trash"
 
 
1360
  msgstr ""
 
 
1361
 
1362
+ #: ../addons/badges/myCRED-addon-badges.php:439 ../addons/badges/myCRED-addon-
1363
+ #: badges.php:541
1364
+ msgid "Badge Name"
1365
  msgstr ""
1366
 
1367
+ #: ../addons/badges/myCRED-addon-badges.php:440
1368
+ msgid "Badge Images"
 
1369
  msgstr ""
1370
 
1371
+ #: ../addons/badges/myCRED-addon-badges.php:441
1372
+ msgid "Requirements"
1373
+ msgstr ""
1374
 
1375
+ #: ../addons/badges/myCRED-addon-badges.php:481
1376
+ msgid "A user must have gained or lost:"
1377
+ msgstr ""
 
1378
 
1379
+ #: ../addons/badges/myCRED-addon-badges.php:517 ../addons/badges/myCRED-addon-
1380
+ #: badges.php:520 ../addons/badges/myCRED-addon-badges.php:524 ..
1381
+ #: addons/badges/myCRED-addon-badges.php:525 ../addons/badges/myCRED-addon-
1382
+ #: badges.php:526
1383
+ msgid "Badge Updated."
1384
+ msgstr ""
1385
 
1386
+ #: ../addons/badges/myCRED-addon-badges.php:522
1387
+ msgid "Badge Enabled"
1388
+ msgstr ""
1389
 
1390
+ #: ../addons/badges/myCRED-addon-badges.php:523
1391
+ msgid "Badge Saved"
1392
+ msgstr ""
1393
 
1394
+ #: ../addons/badges/myCRED-addon-badges.php:555
1395
+ msgid "Badge Setup"
1396
+ msgstr ""
1397
 
1398
+ #: ../addons/badges/myCRED-addon-badges.php:582
1399
+ msgid "Assign Badge"
1400
+ msgstr ""
1401
 
1402
+ #: ../addons/badges/myCRED-addon-badges.php:583
1403
+ msgid "Remove Connections"
 
 
1404
  msgstr ""
 
 
 
1405
 
1406
+ #: ../addons/badges/myCRED-addon-badges.php:638
1407
+ msgid "Time(s)"
1408
+ msgstr ""
 
 
1409
 
1410
+ #: ../addons/badges/myCRED-addon-badges.php:639
1411
+ msgid "In total"
1412
+ msgstr ""
 
1413
 
1414
+ #: ../addons/badges/myCRED-addon-badges.php:671 ../addons/badges/myCRED-addon-
1415
+ #: badges.php:771 ../addons/badges/myCRED-addon-badges.php:831 ..
1416
+ #: addons/badges/myCRED-addon-badges.php:846
1417
+ msgid "Badge Image"
1418
+ msgstr ""
1419
 
1420
+ #: ../addons/badges/myCRED-addon-badges.php:672 ../addons/badges/myCRED-addon-
1421
+ #: badges.php:672
1422
+ msgid "Set badge image"
1423
+ msgstr ""
1424
 
1425
+ #: ../addons/badges/myCRED-addon-badges.php:682
1426
+ msgid "Default Image"
1427
+ msgstr ""
1428
 
1429
+ #: ../addons/badges/myCRED-addon-badges.php:683 ../addons/badges/myCRED-addon-
1430
+ #: badges.php:741 ../addons/badges/myCRED-addon-badges.php:772 ..
1431
+ #: addons/badges/myCRED-addon-badges.php:831
1432
+ msgid "image url"
1433
+ msgstr ""
1434
 
1435
+ #: ../addons/badges/myCRED-addon-badges.php:684 ../addons/badges/myCRED-addon-
1436
+ #: badges.php:742 ../addons/badges/myCRED-addon-badges.php:773 ..
1437
+ #: addons/badges/myCRED-addon-badges.php:831
1438
+ msgid "Add Image"
1439
+ msgstr ""
1440
 
1441
+ #: ../addons/badges/myCRED-addon-badges.php:685
1442
+ msgid "Optional image to show when a user has not yet earned this badge."
1443
+ msgstr ""
1444
 
1445
+ #: ../addons/badges/myCRED-addon-badges.php:704 ../addons/badges/myCRED-addon-
1446
+ #: badges.php:756
1447
+ #, php-format
1448
+ msgid "Level %d"
1449
+ msgstr ""
1450
 
1451
+ #: ../addons/badges/myCRED-addon-badges.php:709 ../addons/badges/myCRED-addon-
1452
+ #: badges.php:761 ../addons/badges/myCRED-addon-badges.php:831
1453
+ msgid "for"
1454
+ msgstr ""
 
 
1455
 
1456
+ #: ../addons/badges/myCRED-addon-badges.php:740
1457
+ msgid "Main Image"
1458
+ msgstr ""
 
 
1459
 
1460
+ #: ../addons/badges/myCRED-addon-badges.php:774 ../addons/badges/myCRED-addon-
1461
+ #: badges.php:831
1462
+ msgid "Leave empty if you do not want to assign a custom image for this level."
1463
+ msgstr ""
1464
 
1465
+ #: ../addons/badges/myCRED-addon-badges.php:774 ../addons/badges/myCRED-addon-
1466
+ #: badges.php:831
1467
+ msgid "Remove this level"
1468
+ msgstr ""
1469
 
1470
+ #: ../addons/badges/myCRED-addon-badges.php:788
1471
+ msgid "Add Level"
1472
+ msgstr ""
1473
 
1474
+ #: ../addons/badges/myCRED-addon-badges.php:831 ../addons/badges/myCRED-addon-
1475
+ #: badges.php:1154
1476
+ msgid "Level"
1477
+ msgstr ""
1478
 
1479
+ #: ../addons/badges/myCRED-addon-badges.php:848
1480
+ msgid "Use as Badge"
1481
+ msgstr ""
1482
 
1483
+ #: ../addons/badges/myCRED-addon-badges.php:986 ../addons/badges/myCRED-addon-
1484
+ #: badges.php:1017
1485
+ msgid "Show all badges, including badges users have not yet earned."
1486
+ msgstr ""
1487
 
1488
+ #: ../addons/badges/myCRED-addon-badges.php:1003
1489
+ msgid "Include in Forum Replies"
1490
  msgstr ""
1491
 
1492
+ #: ../addons/badges/myCRED-addon-badges.php:1004
1493
+ msgid "Include in Profile and Forum Replies"
1494
+ msgstr ""
 
 
1495
 
1496
+ #: ../addons/badges/myCRED-addon-badges.php:1111
1497
+ msgid "User Badges"
1498
+ msgstr ""
1499
 
1500
+ #: ../addons/badges/myCRED-addon-badges.php:1116
1501
+ msgid ""
1502
+ "Here you can view the badges this user has earned and if needed, manually "
1503
+ "give or take away a badge from a user."
1504
+ msgstr ""
 
 
 
 
 
 
 
 
 
1505
 
1506
+ #: ../addons/badges/myCRED-addon-badges.php:1125
1507
+ msgid "Not earned"
1508
+ msgstr ""
 
1509
 
1510
+ #: ../addons/badges/myCRED-addon-badges.php:1131 ../addons/badges/myCRED-addon-
1511
+ #: badges.php:1168
1512
+ msgid "Earned"
1513
+ msgstr ""
1514
 
1515
+ #: ../addons/badges/myCRED-addon-badges.php:1143
1516
+ msgid "No image"
1517
+ msgstr ""
1518
 
1519
+ #: ../addons/badges/myCRED-addon-badges.php:1150
1520
+ msgid "Select a level"
1521
+ msgstr ""
 
 
 
 
1522
 
1523
+ #: ../addons/badges/includes/mycred-badge-functions.php:68
1524
  #, php-format
1525
+ msgid "Level %s"
1526
+ msgstr ""
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1527
 
1528
+ #: ../addons/badges/includes/mycred-badge-functions.php:71
1529
+ #, php-format
1530
+ msgctxt "\"Points\" for \"reference\" \"x time(s)\" - Level"
1531
+ msgid "%s for %s %s - %s"
1532
+ msgstr ""
1533
 
1534
+ #: ../addons/badges/includes/mycred-badge-functions.php:71 ..
1535
+ #: addons/coupons/myCRED-addon-coupons.php:221 ../addons/coupons/myCRED-addon-
1536
+ #: coupons.php:516
1537
+ #, php-format
1538
+ msgid "1 time"
1539
+ msgid_plural "%d times"
1540
+ msgstr[0] ""
1541
+ msgstr[1] ""
1542
 
1543
+ #: ../addons/badges/includes/mycred-badge-functions.php:73
1544
+ #, php-format
1545
+ msgctxt "\"x points\" for \"reference\" in total"
1546
+ msgid "%s for %s in total"
1547
+ msgstr ""
1548
 
1549
+ #. Description of the plugin
1550
+ msgid "Create coupons that your users can use to add points to their accounts."
1551
  msgstr ""
 
 
1552
 
1553
+ #: ../addons/coupons/myCRED-addon-coupons.php:174
1554
+ msgid "Used"
1555
+ msgstr ""
1556
 
1557
+ #: ../addons/sell-content/myCRED-addon-sell-content.php:111
1558
+ msgid "Profit Share"
 
 
1559
  msgstr ""
 
 
 
1560
 
1561
+ #: ../addons/sell-content/myCRED-addon-sell-content.php:119
1562
+ msgid "Save Profit Share"
1563
+ msgstr ""
 
1564
 
1565
+ #: ../addons/sell-content/myCRED-addon-sell-content.php:165
1566
+ msgid "Profit Share override saved"
1567
+ msgstr ""
1568
 
1569
+ #: ../addons/sell-content/myCRED-addon-sell-content.php:476
1570
+ msgid "For Visitors"
 
 
1571
  msgstr ""
 
 
1572
 
1573
+ #: ../addons/sell-content/myCRED-addon-sell-content.php:491
1574
+ msgid "For Members"
1575
+ msgstr ""
1576
 
1577
+ #: ../addons/sell-content/myCRED-addon-sell-content.php:506
1578
+ msgid "For members that can not afford to buy"
 
 
1579
  msgstr ""
 
 
1580
 
1581
+ #: ../addons/sell-content/myCRED-addon-sell-content.php:676
1582
  #, php-format
1583
+ msgid "Enable sale of this %s"
 
 
1584
  msgstr ""
 
 
1585
 
1586
+ #. Description of the plugin
1587
+ msgid ""
1588
+ "The <strong>buy</strong>CRED Add-on allows your users to buy points using "
1589
+ "PayPal, Skrill (Moneybookers), Zombaio or NETbilling. "
1590
+ "<strong>buy</strong>CRED can also let your users buy points for other "
1591
+ "members."
1592
+ msgstr ""
1593
 
1594
+ #: ../addons/buy-creds/myCRED-addon-buy-creds.php:273
1595
+ msgctxt "Post Type General Name"
1596
+ msgid "Pending Payments"
1597
+ msgstr ""
1598
 
1599
+ #: ../addons/buy-creds/myCRED-addon-buy-creds.php:274
1600
+ msgctxt "Post Type Singular Name"
1601
+ msgid "Pending Payment"
1602
+ msgstr ""
1603
 
1604
+ #: ../addons/buy-creds/myCRED-addon-buy-creds.php:275 ../addons/buy-creds/myCRED-
1605
+ #: addon-buy-creds.php:277
1606
+ msgid "Pending Payments"
1607
+ msgstr ""
1608
 
1609
+ #: ../addons/buy-creds/myCRED-addon-buy-creds.php:281
1610
+ msgid "Edit Pending Payment"
1611
+ msgstr ""
1612
 
1613
+ #: ../addons/buy-creds/myCRED-addon-buy-creds.php:284 ../addons/buy-creds/myCRED-
1614
+ #: addon-buy-creds.php:1752
1615
+ msgid "No pending payments found"
1616
+ msgstr ""
1617
 
1618
+ #: ../addons/buy-creds/myCRED-addon-buy-creds.php:285
1619
+ msgid "Not found in Trash"
1620
+ msgstr ""
1621
 
1622
+ #: ../addons/buy-creds/myCRED-addon-buy-creds.php:343 ../addons/buy-creds/myCRED-
1623
+ #: addon-buy-creds.php:1074
1624
+ msgid "Buyer"
 
1625
  msgstr ""
 
 
1626
 
1627
+ #: ../addons/buy-creds/myCRED-addon-buy-creds.php:347
1628
+ msgid "Type"
1629
+ msgstr ""
1630
 
1631
+ #: ../addons/buy-creds/myCRED-addon-buy-creds.php:440
1632
+ msgid "Pay Out"
 
 
1633
  msgstr ""
 
 
1634
 
1635
+ #: ../addons/buy-creds/myCRED-addon-buy-creds.php:655
1636
+ msgid "Select the point types that users can buy. You must select at least one!"
1637
+ msgstr ""
1638
 
1639
+ #: ../addons/buy-creds/myCRED-addon-buy-creds.php:831
1640
+ #, php-format
1641
+ msgid "%s Exchange Rate"
1642
+ msgstr ""
1643
 
1644
+ #: ../addons/buy-creds/myCRED-addon-buy-creds.php:845
1645
+ msgid "Save Exchange Rates"
1646
+ msgstr ""
1647
 
1648
+ #: ../addons/buy-creds/myCRED-addon-buy-creds.php:900
1649
+ msgid "Exchange rate override saved"
1650
+ msgstr ""
 
1651
 
1652
+ #: ../addons/buy-creds/myCRED-addon-buy-creds.php:903
1653
+ msgid "Payment completed"
1654
+ msgstr ""
1655
 
1656
+ #: ../addons/buy-creds/myCRED-addon-buy-creds.php:987
1657
+ msgid "More Gateways"
1658
+ msgstr ""
1659
 
1660
+ #: ../addons/buy-creds/abstracts/mycred-abstract-payment-gateway.php:1390
1661
+ msgid "January"
1662
+ msgstr ""
1663
 
1664
+ #: ../addons/buy-creds/abstracts/mycred-abstract-payment-gateway.php:1391
1665
+ msgid "February"
1666
+ msgstr ""
1667
 
1668
+ #: ../addons/buy-creds/abstracts/mycred-abstract-payment-gateway.php:1392
1669
+ msgid "March"
1670
+ msgstr ""
1671
 
1672
+ #: ../addons/buy-creds/abstracts/mycred-abstract-payment-gateway.php:1393
1673
+ msgid "April"
1674
+ msgstr ""
1675
 
1676
+ #: ../addons/buy-creds/abstracts/mycred-abstract-payment-gateway.php:1394
1677
+ msgid "May"
1678
+ msgstr ""
1679
 
1680
+ #: ../addons/buy-creds/abstracts/mycred-abstract-payment-gateway.php:1395
1681
+ msgid "June"
1682
+ msgstr ""
 
 
1683
 
1684
+ #: ../addons/buy-creds/abstracts/mycred-abstract-payment-gateway.php:1396
1685
+ msgid "July"
1686
+ msgstr ""
 
1687
 
1688
+ #: ../addons/buy-creds/abstracts/mycred-abstract-payment-gateway.php:1397
1689
+ msgid "August"
1690
+ msgstr ""
1691
 
1692
+ #: ../addons/buy-creds/abstracts/mycred-abstract-payment-gateway.php:1398
1693
+ msgid "September"
1694
+ msgstr ""
1695
 
1696
+ #: ../addons/buy-creds/abstracts/mycred-abstract-payment-gateway.php:1399
1697
+ msgid "October"
1698
+ msgstr ""
1699
 
1700
+ #: ../addons/buy-creds/abstracts/mycred-abstract-payment-gateway.php:1400
1701
+ msgid "November"
1702
+ msgstr ""
 
1703
 
1704
+ #: ../addons/buy-creds/abstracts/mycred-abstract-payment-gateway.php:1401
1705
+ msgid "December"
1706
  msgstr ""
1707
 
1708
+ #: ../addons/buy-creds/gateways/bitpay.php:62 ../addons/buy-
1709
+ #: creds/gateways/netbilling.php:92 ../addons/buy-creds/gateways/paypal-standard.
1710
+ #: php:145 ../addons/buy-creds/gateways/skrill.php:124
1711
+ #, php-format
1712
+ msgid "Price mismatch. Expected: %s Received: %s"
1713
  msgstr ""
1714
 
1715
+ #: ../addons/buy-creds/gateways/bitpay.php:68 ../addons/buy-creds/gateways/paypal-
1716
+ #: standard.php:151 ../addons/buy-creds/gateways/skrill.php:130
1717
+ #, php-format
1718
+ msgid "Currency mismatch. Expected: %s Received: %s"
1719
+ msgstr ""
 
 
 
 
 
 
 
 
 
 
1720
 
1721
+ #: ../addons/buy-creds/gateways/bitpay.php:74 ../addons/buy-
1722
+ #: creds/gateways/netbilling.php:98 ../addons/buy-creds/gateways/paypal-standard.
1723
+ #: php:157 ../addons/buy-creds/gateways/skrill.php:136
1724
+ #, php-format
1725
+ msgid "Payment not completed. Received: %s"
1726
+ msgstr ""
1727
 
1728
+ #: ../addons/buy-creds/gateways/bitpay.php:85 ../addons/buy-
1729
+ #: creds/gateways/netbilling.php:109 ../addons/buy-creds/gateways/zombaio.php:185
1730
+ #: ../addons/buy-creds/gateways/paypal-standard.php:168 ../addons/buy-
1731
+ #: creds/gateways/skrill.php:147
1732
+ msgid "Failed to credit users account."
1733
+ msgstr ""
1734
 
1735
+ #: ../addons/buy-creds/gateways/bitpay.php:273 ../addons/buy-
1736
+ #: creds/gateways/netbilling.php:242 ../addons/buy-creds/gateways/paypal-standard.
1737
+ #: php:305 ../addons/buy-creds/gateways/skrill.php:326
1738
+ msgid "Exchange Rates"
1739
+ msgstr ""
1740
 
1741
+ #: ../addons/buy-creds/gateways/zombaio.php:154
1742
+ #, php-format
1743
+ msgid "Duplicate transaction. Received: %s"
1744
+ msgstr ""
1745
 
1746
+ #: ../addons/buy-creds/gateways/zombaio.php:160
1747
+ #, php-format
1748
+ msgid "Live transaction while debug mode is enabled! Received: %s"
1749
+ msgstr ""
1750
 
1751
+ #: ../addons/buy-creds/gateways/paypal-standard.php:263
1752
+ #, php-format
1753
+ msgctxt "Return label. %s = Website name"
1754
+ msgid "Return to %s"
1755
+ msgstr ""
1756
 
1757
+ msgid "myCRED"
1758
+ msgstr "myCRED"
 
1759
 
1760
+ #: ../mycred.php:462
1761
+ msgid "Balance"
1762
+ msgstr "Saldo"
 
 
 
 
1763
 
1764
+ #: ../mycred.php:487
1765
+ msgid "%label% History"
1766
+ msgstr "%lavel% Historial"
1767
 
1768
+ #: ../mycred.php:581
1769
+ #, php-format
1770
+ msgid "About %s"
1771
+ msgstr "Sobre"
1772
 
1773
+ #: ../mycred.php:590
1774
+ msgid "Awesome People"
1775
+ msgstr "Gente genial"
1776
 
1777
+ #: ../mycred.php:678 ../mycred.php:703 ../mycred.php:721 ../includes/mycred-
1778
+ #: shortcodes.php:640 ../addons/gateway/event-booking/mycred-eventsmanager.php:
1779
+ #: 478 ../addons/transfer/myCRED-addon-transfer.php:146 ../addons/ranks/myCRED-
1780
+ #: addon-ranks.php:423 ../addons/ranks/myCRED-addon-ranks.php:1523 ..
1781
+ #: addons/badges/myCRED-addon-badges.php:605 ../addons/sell-content/myCRED-addon-
1782
+ #: sell-content.php:371
1783
+ msgid "Processing..."
1784
+ msgstr "Procesando..."
1785
 
1786
+ #: ../mycred.php:679
1787
  msgid ""
1788
+ "Warning! All entries in your log will be permanently removed! This can not "
1789
+ "be undone!"
1790
  msgstr ""
1791
+ "¡Aviso! Todas las entradas en su registro seran permanentemente borrado! "
1792
+ "¡Esto no se puede deshacer!"
1793
 
1794
+ #: ../mycred.php:680
1795
  msgid ""
1796
+ "All log entries belonging to deleted users will be permanently deleted! This "
1797
+ "can not be undone!"
1798
  msgstr ""
1799
+ "¡Todas las entradas de registro perteneciendo al usuario seran "
1800
+ "permanentemente borradas! ¡Esto no se puede deshacer!"
1801
 
1802
+ #: ../mycred.php:681
1803
+ msgid "Warning! All user balances will be set to zero! This can not be undone!"
 
1804
  msgstr ""
1805
+ "¡Aviso! ¡Todo los saldos del usuario seran puesto a cero! ¡Esto no se puede "
1806
+ "deshacer!"
1807
 
1808
+ #: ../mycred.php:682
1809
+ msgid "Done!"
1810
+ msgstr "¡Realizado!"
1811
 
1812
+ #: ../mycred.php:683 ../mycred.php:702 ../mycred.php:720
1813
+ msgid "Close"
1814
+ msgstr "Cerrar"
1815
 
1816
+ #: ../mycred.php:684
1817
+ #, php-format
1818
+ msgid "Export users %plural%"
1819
+ msgstr "Exportar usuarios %plural%"
1820
 
1821
+ #: ../mycred.php:701
1822
+ msgid "Edit Users Balance"
1823
+ msgstr "Editar saldo del usuario"
1824
 
1825
+ #: ../mycred.php:719
1826
+ msgid "Edit Log Entry"
1827
+ msgstr "Edidar entrada de registro"
1828
 
1829
+ #: ../mycred.php:723
1830
+ msgid "Are you sure you want to delete this log entry? This can not be undone!"
 
 
 
1831
  msgstr ""
1832
+ "¿Esta seguro que quiere borrar esta entrada de registro? ¡Esto no se puede "
1833
+ "deshacer!"
1834
 
1835
+ #: ../mycred.php:724
1836
+ msgid "Log entry updated"
1837
+ msgstr "Entrada de registro actualizado"
1838
 
1839
+ #: ../mycred.php:781 ../mycred.php:803 ../addons/gateway/event-booking/mycred-
1840
+ #: eventsmanager.php:537 ../addons/gateway/event-booking/mycred-eventsmanager-pro.
1841
+ #: php:499 ../addons/email-notices/myCRED-addon-email-notices.php:811
1842
+ msgid "Setup"
1843
+ msgstr "Configurar"
1844
 
1845
+ #: ../mycred.php:783 ../modules/mycred-module-settings.php:21 ../modules/mycred-
1846
+ #: module-settings.php:22 ../modules/mycred-module-settings.php:23 ..
1847
+ #: includes/mycred-network.php:170 ../addons/gateway/carts/mycred-marketpress.
1848
+ #: php:371 ../addons/stats/abstracts/mycred-abstract-stat-widget.php:108
1849
+ msgid "Settings"
1850
+ msgstr "Configuraciones"
1851
+
1852
+ #: ../mycred.php:826
1853
  msgid ""
1854
+ "Make sure to backup your database and files before updating, in case "
1855
+ "anything goes wrong!"
1856
  msgstr ""
1857
+ "Antes de actualizar, asegura crear copias de seguridad de su base de datos y "
1858
+ "archivo, por si acaso!"
1859
 
1860
+ #: ../abstracts/mycred-abstract-hook.php:90
1861
+ msgid "This Hook has no settings"
1862
+ msgstr "Este gancho no ha sido configurado"
 
1863
 
1864
+ #: ../abstracts/mycred-abstract-hook.php:283 ../abstracts/mycred-abstract-hook.
1865
+ #: php:354 ../modules/mycred-module-hooks.php:1816 ../includes/mycred-functions.
1866
+ #: php:2845
1867
+ msgid "No limit"
1868
+ msgstr "Sin Limite"
1869
 
1870
+ #: ../abstracts/mycred-abstract-hook.php:355
1871
+ msgid "Once every 24 hours"
1872
+ msgstr "Una vez cada 24 horas"
 
1873
 
1874
+ #: ../abstracts/mycred-abstract-hook.php:356
1875
+ msgid "Once every 7 days"
1876
+ msgstr "Una vez cada 7 dias"
1877
 
1878
+ #: ../abstracts/mycred-abstract-hook.php:357
1879
+ msgid "Once per day (reset at midnight)"
1880
+ msgstr "Una vez al dia (reinicializado al medianoche)"
1881
 
1882
+ #: ../abstracts/mycred-abstract-hook.php:364 ../addons/banking/abstracts/mycred-
1883
+ #: abstract-service.php:498 ../addons/email-notices/myCRED-addon-email-notices.
1884
+ #: php:198 ../addons/email-notices/myCRED-addon-email-notices.php:992 ..
1885
+ #: addons/buy-creds/myCRED-addon-buy-creds.php:696 ../addons/buy-creds/myCRED-
1886
+ #: addon-buy-creds.php:719 ../addons/buy-creds/abstracts/mycred-abstract-payment-
1887
+ #: gateway.php:1023 ../addons/buy-creds/abstracts/mycred-abstract-payment-gateway.
1888
+ #: php:1046 ../addons/buy-creds/gateways/zombaio.php:356
1889
+ msgid "Select"
1890
+ msgstr "Seleccionar"
1891
 
1892
+ #: ../abstracts/mycred-abstract-module.php:400 ../abstracts/mycred-abstract-
1893
+ #: module.php:410
1894
+ msgid "Surprise"
1895
+ msgstr "Sorpresa"
1896
 
1897
+ #: ../abstracts/mycred-abstract-module.php:511 ../includes/mycred-network.php:93
1898
+ msgid "click to close"
1899
+ msgstr "haga clic para cerrar"
1900
 
1901
+ #: ../abstracts/mycred-abstract-module.php:512 ../includes/mycred-network.php:94
1902
+ msgid "click to open"
1903
+ msgstr "haga clic para abrir"
 
 
1904
 
1905
+ #: ../abstracts/mycred-abstract-module.php:545 ../addons/buy-creds/myCRED-addon-
1906
+ #: buy-creds.php:927
1907
+ msgid "Settings Updated"
1908
+ msgstr "Configuraciones Actualizadas"
1909
 
1910
+ #: ../modules/mycred-module-settings.php:66 ../modules/mycred-module-settings.php:
1911
+ #: 109 ../modules/mycred-module-log.php:207 ../modules/mycred-module-log.php:230
1912
+ msgid "Access denied for this action"
1913
+ msgstr "Acceso denegado para esta acción"
1914
 
1915
+ #: ../modules/mycred-module-settings.php:70 ../modules/mycred-module-settings.php:
1916
+ #: 113 ../modules/mycred-module-settings.php:166
1917
+ msgid "Missing point type"
1918
+ msgstr "Falta el tipo de punto"
1919
 
1920
+ #: ../modules/mycred-module-settings.php:144
1921
+ msgid "Accounts successfully reset"
1922
+ msgstr "Las cuentas fueron reiniciadas con éxito."
1923
 
1924
+ #: ../modules/mycred-module-settings.php:196
1925
+ msgid "No users found to export"
1926
+ msgstr "No se encontro usuarios para exportar"
1927
+
1928
+ #: ../modules/mycred-module-settings.php:427 ../modules/mycred-module-settings.
1929
+ #: php:528
1930
+ msgid "Tip"
1931
+ msgstr "Pista"
1932
+
1933
+ #: ../modules/mycred-module-settings.php:484 ../modules/mycred-module-addons.php:
1934
+ #: 303 ../modules/mycred-module-log.php:358 ../modules/mycred-module-log.php:647 .
1935
+ #: ./modules/mycred-module-hooks.php:193 ../includes/mycred-network.php:141 ..
1936
+ #: includes/mycred-admin.php:584 ../addons/banking/myCRED-addon-banking.php:219 .
1937
+ #: ./addons/stats/myCRED-addon-stats.php:182 ../addons/buy-creds/myCRED-addon-buy-
1938
+ #: creds.php:916 ../addons/buy-creds/myCRED-addon-buy-creds.php:1022
1939
+ msgid "Access Denied"
1940
+ msgstr "Acceso Denegado"
1941
+
1942
+ #: ../modules/mycred-module-settings.php:503
1943
  #, php-format
1944
+ msgid "%s Settings"
1945
+ msgstr "Configuración de %s"
1946
 
1947
+ #: ../modules/mycred-module-settings.php:513
1948
+ msgid "Core Settings"
1949
+ msgstr "Ajustes Basicos"
1950
 
1951
+ #: ../modules/mycred-module-settings.php:515
1952
+ msgid "Name"
1953
+ msgstr "Nombre"
1954
 
1955
+ #: ../modules/mycred-module-settings.php:518 ../includes/mycred-install.php:514
1956
+ msgid "Name (Singular)"
1957
+ msgstr "Nombre (singular)"
 
 
1958
 
1959
+ #: ../modules/mycred-module-settings.php:520
1960
+ #, php-format
1961
+ msgid "Accessible though the %singular% template tag."
1962
+ msgstr "Acesible a través de la etiqueta de la plantilla del %singular%."
 
1963
 
1964
+ #: ../modules/mycred-module-settings.php:523 ../includes/mycred-install.php:518
1965
+ msgid "Name (Plural)"
1966
+ msgstr "Nombre (plural)"
 
1967
 
1968
+ #: ../modules/mycred-module-settings.php:525
1969
+ #, php-format
1970
+ msgid "Accessible though the %plural% template tag."
1971
+ msgstr "Acesible a través de la etiqueta de la plantilla del %singular%."
1972
 
1973
+ #: ../modules/mycred-module-settings.php:528
1974
+ msgid ""
1975
+ "Adding an underscore at the beginning of template tag for names will return "
1976
+ "them in lowercase. i.e. %_singular%"
1977
  msgstr ""
1978
+ "Añadiendo un guión bajo al principio de la etiqueta de la plantilla para "
1979
+ "nombres los cnovertira en minúsculas. Por ejemplo %_singular%"
1980
 
1981
+ #: ../modules/mycred-module-settings.php:531 ../includes/mycred-install.php:506
1982
+ msgid "Decimals"
1983
+ msgstr "Decimales"
1984
 
1985
+ #: ../modules/mycred-module-settings.php:537 ../includes/mycred-install.php:511
1986
+ msgid "Presentation"
1987
+ msgstr "Presentación"
1988
 
1989
+ #: ../modules/mycred-module-settings.php:540 ../includes/mycred-install.php:524
1990
+ msgid "Prefix"
1991
+ msgstr "Prefijo"
1992
 
1993
+ #: ../modules/mycred-module-settings.php:548 ../includes/mycred-install.php:532
1994
+ msgid "Suffix"
1995
+ msgstr "Sufijo"
1996
 
1997
+ #: ../modules/mycred-module-settings.php:552
1998
+ msgid "Separator"
1999
+ msgstr "Separador"
2000
 
2001
+ #: ../modules/mycred-module-settings.php:556 ../includes/mycred-install.php:568
2002
+ msgid "Security"
2003
+ msgstr "Seguridad"
 
 
 
2004
 
2005
+ #: ../modules/mycred-module-settings.php:559
2006
+ msgid "Edit Settings"
2007
+ msgstr "Editar las Configuraciones"
2008
 
2009
+ #. or "Verificar la capacidad de"
2010
+ #: ../modules/mycred-module-settings.php:561 ../modules/mycred-module-settings.
2011
+ #: php:566
2012
+ msgid "Capability to check for."
2013
+ msgstr "La capacidad que se va a verificar."
2014
 
2015
+ #: ../modules/mycred-module-settings.php:564
2016
+ #, php-format
2017
+ msgid "Edit Users %plural%"
2018
+ msgstr "Edita %plural% de Usuarios"
2019
 
2020
+ #: ../modules/mycred-module-settings.php:569 ../includes/mycred-install.php:579
2021
+ #, php-format
2022
+ msgid "Maximum %plural% payouts"
2023
+ msgstr "Desembolso %plural% Máximo"
2024
 
2025
+ #: ../modules/mycred-module-settings.php:571 ../includes/mycred-install.php:581
2026
+ msgid ""
2027
+ "As an added security, you can set the maximum amount a user can gain or "
2028
+ "loose in a single instance. If used, make sure this is the maximum amount a "
2029
+ "user would be able to transfer, buy, or spend in your store. Use zero to "
2030
+ "disable."
2031
+ msgstr ""
2032
+ "Como mayor seguridad, puedes configurar la cantidad máxima que un usuario "
2033
+ "puede ganar o perder en una sola instancia. Si se utiliza esto, asegurate "
2034
+ "que es tambien la máxima cantidad que el usuario puede transferir, comprar, "
2035
+ "o gastar en tu tienda. Ponga zero para desactivar."
2036
 
2037
+ #: ../modules/mycred-module-settings.php:574 ../includes/mycred-install.php:584
2038
+ msgid "Excludes"
2039
+ msgstr "Excluye"
2040