myCRED - Version 1.7.4

Version Description

Bug fixes and improvements.

=

Download this release

Release Info

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

Code changes from version 1.7.3 to 1.7.4

Files changed (37) hide show
  1. abstracts/mycred-abstract-module.php +4 -4
  2. addons/badges/myCRED-addon-badges.php +2 -2
  3. addons/buy-creds/gateways/zombaio.php +55 -17
  4. addons/buy-creds/modules/buycred-module-core.php +8 -10
  5. addons/buy-creds/modules/buycred-module-pending.php +30 -7
  6. addons/coupons/includes/mycred-coupon-functions.php +7 -6
  7. addons/coupons/includes/mycred-coupon-shortcodes.php +3 -3
  8. addons/coupons/myCRED-addon-coupons.php +5 -5
  9. addons/email-notices/myCRED-addon-email-notices.php +20 -22
  10. addons/notifications/myCRED-addon-notifications.php +2 -2
  11. addons/ranks/includes/mycred-rank-functions.php +30 -8
  12. addons/ranks/includes/mycred-rank-shortcodes.php +27 -30
  13. addons/ranks/myCRED-addon-ranks.php +10 -10
  14. addons/sell-content/includes/mycred-sell-functions.php +6 -5
  15. addons/sell-content/includes/mycred-sell-shortcodes.php +2 -2
  16. addons/sell-content/myCRED-addon-sell-content.php +2 -2
  17. addons/stats/myCRED-addon-stats.php +20 -12
  18. addons/transfer/includes/mycred-transfer-shortcodes.php +4 -4
  19. addons/transfer/includes/mycred-transfer-widgets.php +13 -18
  20. addons/transfer/myCRED-addon-transfer.php +2 -3
  21. assets/images/badges-addon.png +0 -0
  22. assets/screenshot-1.png +0 -0
  23. assets/screenshot-2.png +0 -0
  24. assets/screenshot-3.png +0 -0
  25. assets/screenshot-4.png +0 -0
  26. assets/screenshot-5.png +0 -0
  27. includes/classes/class.query-log.php +9 -6
  28. includes/mycred-functions.php +106 -50
  29. includes/mycred-widgets.php +119 -132
  30. includes/shortcodes/mycred_history.php +12 -6
  31. includes/shortcodes/mycred_leaderboard.php +11 -5
  32. lang/mycred-en_US.mo +0 -0
  33. lang/mycred-en_US.po +6287 -6961
  34. lang/mycred-es_ES.mo +0 -0
  35. lang/mycred-es_ES.po +6517 -7224
  36. lang/mycred-es_VE.mo +0 -0
  37. lang/mycred-es_VE.po +0 -3782
abstracts/mycred-abstract-module.php CHANGED
@@ -222,7 +222,7 @@ if ( ! class_exists( 'myCRED_Module' ) ) :
222
  /**
223
  * Load
224
  * @since 0.1
225
- * @version 1.0
226
  */
227
  function load() {
228
 
@@ -232,7 +232,7 @@ if ( ! class_exists( 'myCRED_Module' ) ) :
232
  }
233
 
234
  if ( $this->register === true && ! empty( $this->option_id ) )
235
- add_action( 'mycred_admin_init', array( $this, 'register_settings' ) );
236
 
237
  if ( $this->add_to_core === true ) {
238
  add_action( 'mycred_after_core_prefs', array( $this, 'after_general_settings' ) );
@@ -241,9 +241,9 @@ if ( ! class_exists( 'myCRED_Module' ) ) :
241
 
242
  add_action( 'mycred_pre_init', array( $this, 'module_pre_init' ) );
243
  add_action( 'mycred_init', array( $this, 'module_init' ) );
244
- add_action( 'mycred_admin_init', array( $this, 'module_admin_init' ) );
245
  add_action( 'mycred_widgets_init', array( $this, 'module_widgets_init' ) );
246
- add_action( 'mycred_admin_enqueue', array( $this, 'scripts_and_styles' ) );
247
 
248
  }
249
 
222
  /**
223
  * Load
224
  * @since 0.1
225
+ * @version 1.0.1
226
  */
227
  function load() {
228
 
232
  }
233
 
234
  if ( $this->register === true && ! empty( $this->option_id ) )
235
+ add_action( 'mycred_admin_init', array( $this, 'register_settings' ), $this->menu_pos );
236
 
237
  if ( $this->add_to_core === true ) {
238
  add_action( 'mycred_after_core_prefs', array( $this, 'after_general_settings' ) );
241
 
242
  add_action( 'mycred_pre_init', array( $this, 'module_pre_init' ) );
243
  add_action( 'mycred_init', array( $this, 'module_init' ) );
244
+ add_action( 'mycred_admin_init', array( $this, 'module_admin_init' ), $this->menu_pos+1 );
245
  add_action( 'mycred_widgets_init', array( $this, 'module_widgets_init' ) );
246
+ add_action( 'mycred_admin_enqueue', array( $this, 'scripts_and_styles' ), $this->menu_pos );
247
 
248
  }
249
 
addons/badges/myCRED-addon-badges.php CHANGED
@@ -106,13 +106,13 @@ if ( ! class_exists( 'myCRED_Badge_Module' ) ) :
106
  /**
107
  * Module Admin Init
108
  * @since 1.0
109
- * @version 1.0
110
  */
111
  public function module_admin_init() {
112
 
113
  add_filter( 'parent_file', array( $this, 'parent_file' ) );
114
  add_filter( 'submenu_file', array( $this, 'subparent_file' ), 10, 2 );
115
- add_action( 'mycred_admin_enqueue', array( $this, 'enqueue_scripts' ) );
116
 
117
  add_filter( 'manage_mycred_badge_posts_columns', array( $this, 'adjust_column_headers' ) );
118
  add_action( 'manage_mycred_badge_posts_custom_column', array( $this, 'adjust_column_content' ), 10, 2 );
106
  /**
107
  * Module Admin Init
108
  * @since 1.0
109
+ * @version 1.0.1
110
  */
111
  public function module_admin_init() {
112
 
113
  add_filter( 'parent_file', array( $this, 'parent_file' ) );
114
  add_filter( 'submenu_file', array( $this, 'subparent_file' ), 10, 2 );
115
+ add_action( 'mycred_admin_enqueue', array( $this, 'enqueue_scripts' ), $this->menu_pos );
116
 
117
  add_filter( 'manage_mycred_badge_posts_columns', array( $this, 'adjust_column_headers' ) );
118
  add_action( 'manage_mycred_badge_posts_custom_column', array( $this, 'adjust_column_content' ), 10, 2 );
addons/buy-creds/gateways/zombaio.php CHANGED
@@ -5,7 +5,7 @@ if ( ! defined( 'myCRED_VERSION' ) ) exit;
5
  * myCRED_Zombaio class
6
  * Zombaio Payment Gateway
7
  * @since 1.1
8
- * @version 1.1.2
9
  */
10
  if ( ! class_exists( 'myCRED_Zombaio' ) ) :
11
  class myCRED_Zombaio extends myCRED_Payment_Gateway {
@@ -40,18 +40,22 @@ if ( ! class_exists( 'myCRED_Zombaio' ) ) :
40
  public function process() {
41
 
42
  if ( isset( $_GET['wp_zombaio_ips'] ) && $_GET['wp_zombaio_ips'] == 1 ) {
43
- $ips = $this->load_ipn_ips();
44
  if ( isset( $_GET['csv'] ) && $_GET['csv'] == 1 ) {
45
- echo '<textarea style="width: 270px;" rows="10" readonly="readonly">' . implode( ',', $ips ) . '</textarea>';
46
  exit;
47
  }
 
48
  echo '<ul>';
49
  foreach ( $ips as $ip ) {
50
  echo '<li><input type="text" readonly="readonly" value="' . $ip . '" size="15" /></li>';
51
  }
52
  echo '</ul>';
 
53
  exit;
 
54
  }
 
55
  $this->handle_call();
56
 
57
  }
@@ -59,25 +63,34 @@ if ( ! class_exists( 'myCRED_Zombaio' ) ) :
59
  /**
60
  * First Comment
61
  * @since 1.7.3
62
- * @version 1.0
63
  */
64
  public function first_comment( $comment ) {
65
 
66
- return 'New Zombaio purchase request.';
67
 
68
  }
69
 
70
  /**
71
  * Verify IPN IP
72
  * @since 1.1
73
- * @version 1.0
74
  */
75
- public function verify_ipn_ip() {
76
 
77
  if ( $this->prefs['bypass_ipn'] ) return true;
78
 
79
- $ips = $this->load_ipn_ips();
80
- if ( $ips && in_array( $_SERVER['REMOTE_ADDR'], $ips ) ) return true;
 
 
 
 
 
 
 
 
 
81
 
82
  return false;
83
 
@@ -86,14 +99,23 @@ if ( ! class_exists( 'myCRED_Zombaio' ) ) :
86
  /**
87
  * Load IPN IP List
88
  * @since 1.1
89
- * @version 1.0
90
  */
91
- public function load_ipn_ips() {
92
 
93
  $request = new WP_Http();
94
- $data = $request->request( 'http://www.zombaio.com/ip_list.txt' );
95
- $data = explode( '|', $data['body'] );
96
- return $data;
 
 
 
 
 
 
 
 
 
97
 
98
  }
99
 
@@ -112,11 +134,27 @@ if ( ! class_exists( 'myCRED_Zombaio' ) ) :
112
  $result = false;
113
 
114
  // Check IPN
115
- if ( $result === true && ! $this->verify_ipn_ip() )
116
- $result = false;
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
117
 
118
  // Check Site ID
119
- if ( $_GET['SiteID'] != $this->prefs['site_id'] )
120
  $result = false;
121
 
122
  return $result;
5
  * myCRED_Zombaio class
6
  * Zombaio Payment Gateway
7
  * @since 1.1
8
+ * @version 1.1.3
9
  */
10
  if ( ! class_exists( 'myCRED_Zombaio' ) ) :
11
  class myCRED_Zombaio extends myCRED_Payment_Gateway {
40
  public function process() {
41
 
42
  if ( isset( $_GET['wp_zombaio_ips'] ) && $_GET['wp_zombaio_ips'] == 1 ) {
43
+
44
  if ( isset( $_GET['csv'] ) && $_GET['csv'] == 1 ) {
45
+ echo '<textarea style="width: 270px;" rows="10" readonly="readonly">' . implode( ',', $this->get_zombaio_ips() ) . '</textarea>';
46
  exit;
47
  }
48
+
49
  echo '<ul>';
50
  foreach ( $ips as $ip ) {
51
  echo '<li><input type="text" readonly="readonly" value="' . $ip . '" size="15" /></li>';
52
  }
53
  echo '</ul>';
54
+
55
  exit;
56
+
57
  }
58
+
59
  $this->handle_call();
60
 
61
  }
63
  /**
64
  * First Comment
65
  * @since 1.7.3
66
+ * @version 1.0.1
67
  */
68
  public function first_comment( $comment ) {
69
 
70
+ return 'New Zombaio purchase confirmation.';
71
 
72
  }
73
 
74
  /**
75
  * Verify IPN IP
76
  * @since 1.1
77
+ * @version 1.1
78
  */
79
+ public function verify_zombaio_call() {
80
 
81
  if ( $this->prefs['bypass_ipn'] ) return true;
82
 
83
+ $zombaio_ips = $this->get_zombaio_ips();
84
+ if ( empty( $zombaio_ips ) ) return true;
85
+
86
+ if ( $_SERVER['REMOTE_ADDR'] != '' ) {
87
+
88
+ $remote_addr = explode( '.', $_SERVER['REMOTE_ADDR'] );
89
+ $remote_addr = $remote_addr[0] . '.' . $remote_addr[1] . '.' . $remote_addr[2] . '.';
90
+
91
+ if ( in_array( $remote_addr, $zombaio_ips ) ) return true;
92
+
93
+ }
94
 
95
  return false;
96
 
99
  /**
100
  * Load IPN IP List
101
  * @since 1.1
102
+ * @version 1.1
103
  */
104
+ public function get_zombaio_ips() {
105
 
106
  $request = new WP_Http();
107
+ $data = $request->request( 'http://www.zombaio.com/ip_list.txt' );
108
+ $data = explode( '|', $data['body'] );
109
+
110
+ $zombaio_ips = array();
111
+ if ( ! empty( $data ) ) {
112
+ foreach ( $data as $ip_range ) {
113
+ if ( $ip_range != '' )
114
+ $zombaio_ips[] = $ip_range;
115
+ }
116
+ }
117
+
118
+ return $zombaio_ips;
119
 
120
  }
121
 
134
  $result = false;
135
 
136
  // Check IPN
137
+ if ( $result === true && $this->prefs['bypass_ipn'] == 0 ) {
138
+
139
+ $zombaio_ips = $this->get_zombaio_ips();
140
+ if ( ! empty( $zombaio_ips ) ) {
141
+
142
+ if ( $_SERVER['REMOTE_ADDR'] != '' ) {
143
+
144
+ $remote_addr = explode( '.', $_SERVER['REMOTE_ADDR'] );
145
+ $remote_addr = $remote_addr[0] . '.' . $remote_addr[1] . '.' . $remote_addr[2] . '.';
146
+
147
+ if ( ! in_array( $remote_addr, $zombaio_ips ) )
148
+ $result = false;
149
+
150
+ }
151
+
152
+ }
153
+
154
+ }
155
 
156
  // Check Site ID
157
+ if ( $result === true && $_GET['SiteID'] != $this->prefs['site_id'] )
158
  $result = false;
159
 
160
  return $result;
addons/buy-creds/modules/buycred-module-core.php CHANGED
@@ -44,17 +44,17 @@ if ( ! class_exists( 'myCRED_buyCRED_Module' ) ) :
44
 
45
  /**
46
  * Load
47
- * @version 1.0.1
48
  */
49
  public function load() {
50
 
51
  add_filter( 'mycred_parse_log_entry', array( $this, 'render_gift_tags' ), 10, 2 );
52
 
53
- add_action( 'mycred_init', array( $this, 'module_init' ) );
54
  add_action( 'wp_loaded', array( $this, 'module_run' ) );
55
- add_action( 'mycred_admin_init', array( $this, 'module_admin_init' ) );
56
 
57
- add_action( 'mycred_admin_init', array( $this, 'register_settings' ) );
58
  add_action( 'mycred_add_menu', array( $this, 'add_menu' ), $this->menu_pos );
59
  add_action( 'mycred_add_menu', array( $this, 'add_to_menu' ), $this->menu_pos+1 );
60
  add_action( 'mycred_after_core_prefs', array( $this, 'after_general_settings' ) );
@@ -486,15 +486,12 @@ if ( ! class_exists( 'myCRED_buyCRED_Module' ) ) :
486
  /**
487
  * Add Admin Menu Item
488
  * @since 0.1
489
- * @version 1.1
490
  */
491
  public function add_to_menu() {
492
 
493
  if ( isset( $this->core->buy_creds['custom_log'] ) && $this->core->buy_creds['custom_log'] ) {
494
 
495
- // Menu Slug
496
- $menu_slug = 'mycred';
497
-
498
  $types = array( MYCRED_DEFAULT_TYPE_KEY );
499
  if ( isset( $this->core->buy_creds['types'] ) )
500
  $types = $this->core->buy_creds['types'];
@@ -502,10 +499,11 @@ if ( ! class_exists( 'myCRED_buyCRED_Module' ) ) :
502
  $pages = array();
503
  foreach ( $types as $type ) {
504
 
505
- $mycred = mycred( $type );
 
506
 
507
  if ( $type != MYCRED_DEFAULT_TYPE_KEY )
508
- $menu_slug .= '_' . $type;
509
 
510
  $pages[] = add_submenu_page(
511
  $menu_slug,
44
 
45
  /**
46
  * Load
47
+ * @version 1.0.2
48
  */
49
  public function load() {
50
 
51
  add_filter( 'mycred_parse_log_entry', array( $this, 'render_gift_tags' ), 10, 2 );
52
 
53
+ add_action( 'mycred_init', array( $this, 'module_init' ), $this->menu_pos );
54
  add_action( 'wp_loaded', array( $this, 'module_run' ) );
55
+ add_action( 'mycred_admin_init', array( $this, 'module_admin_init' ), $this->menu_pos );
56
 
57
+ add_action( 'mycred_admin_init', array( $this, 'register_settings' ), $this->menu_pos+1 );
58
  add_action( 'mycred_add_menu', array( $this, 'add_menu' ), $this->menu_pos );
59
  add_action( 'mycred_add_menu', array( $this, 'add_to_menu' ), $this->menu_pos+1 );
60
  add_action( 'mycred_after_core_prefs', array( $this, 'after_general_settings' ) );
486
  /**
487
  * Add Admin Menu Item
488
  * @since 0.1
489
+ * @version 1.1.1
490
  */
491
  public function add_to_menu() {
492
 
493
  if ( isset( $this->core->buy_creds['custom_log'] ) && $this->core->buy_creds['custom_log'] ) {
494
 
 
 
 
495
  $types = array( MYCRED_DEFAULT_TYPE_KEY );
496
  if ( isset( $this->core->buy_creds['types'] ) )
497
  $types = $this->core->buy_creds['types'];
499
  $pages = array();
500
  foreach ( $types as $type ) {
501
 
502
+ $mycred = mycred( $type );
503
+ $menu_slug = MYCRED_SLUG;
504
 
505
  if ( $type != MYCRED_DEFAULT_TYPE_KEY )
506
+ $menu_slug = MYCRED_SLUG . '_' . trim( $type );
507
 
508
  $pages[] = add_submenu_page(
509
  $menu_slug,
addons/buy-creds/modules/buycred-module-pending.php CHANGED
@@ -4,7 +4,7 @@ if ( ! defined( 'MYCRED_PURCHASE' ) ) exit;
4
  /**
5
  * buyCRED_Pending_Payments class
6
  * @since 1.7
7
- * @version 1.0
8
  */
9
  if ( ! class_exists( 'buyCRED_Pending_Payments' ) ) :
10
  class buyCRED_Pending_Payments extends myCRED_Module {
@@ -28,19 +28,19 @@ if ( ! class_exists( 'buyCRED_Pending_Payments' ) ) :
28
 
29
  /**
30
  * Load
31
- * @version 1.0
32
  */
33
  public function load() {
34
 
35
- add_action( 'mycred_init', array( $this, 'module_init' ) );
36
- add_action( 'mycred_admin_init', array( $this, 'module_admin_init' ) );
37
 
38
  }
39
 
40
  /**
41
  * Module Init
42
  * @since 1.7
43
- * @version 1.0
44
  */
45
  public function module_init() {
46
 
@@ -48,8 +48,31 @@ if ( ! class_exists( 'buyCRED_Pending_Payments' ) ) :
48
 
49
  add_shortcode( 'mycred_buy_pending', array( $this, 'render_shortcode_pending' ) );
50
 
51
- add_action( 'mycred_add_menu', array( $this, 'add_to_menu' ), $this->menu_pos );
52
- add_action( 'template_redirect', array( $this, 'intercept_cancellations' ) );
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
53
 
54
  }
55
 
4
  /**
5
  * buyCRED_Pending_Payments class
6
  * @since 1.7
7
+ * @version 1.0.1
8
  */
9
  if ( ! class_exists( 'buyCRED_Pending_Payments' ) ) :
10
  class buyCRED_Pending_Payments extends myCRED_Module {
28
 
29
  /**
30
  * Load
31
+ * @version 1.0.1
32
  */
33
  public function load() {
34
 
35
+ add_action( 'mycred_init', array( $this, 'module_init' ), $this->menu_pos );
36
+ add_action( 'mycred_admin_init', array( $this, 'module_admin_init' ), $this->menu_pos );
37
 
38
  }
39
 
40
  /**
41
  * Module Init
42
  * @since 1.7
43
+ * @version 1.0.1
44
  */
45
  public function module_init() {
46
 
48
 
49
  add_shortcode( 'mycred_buy_pending', array( $this, 'render_shortcode_pending' ) );
50
 
51
+ add_action( 'mycred_add_menu', array( $this, 'add_to_menu' ), $this->menu_pos );
52
+ add_action( 'template_redirect', array( $this, 'intercept_cancellations' ) );
53
+ add_action( 'parse_comment_query', array( $this, 'remove_frontend_updates' ), 90 );
54
+
55
+ }
56
+
57
+ /**
58
+ * Remove Front End Updates
59
+ * Make sure comments are not shown on the front end when it comes to buyCRED.
60
+ * @since 1.7.4
61
+ * @version 1.0
62
+ */
63
+ public function remove_frontend_updates( $query ) {
64
+
65
+ $show_updates = true;
66
+ if ( ! function_exists( 'is_admin' ) || ! is_admin() )
67
+ $show_updates = false;
68
+
69
+ if ( apply_filters( 'mycred_buycred_show_updates', $show_updates, $this ) === true ) return;
70
+
71
+ if ( ! empty( $query->query_vars['author__not_in'] ) )
72
+ $query->query_vars['author__not_in'][] = 'buycred';
73
+
74
+ elseif ( empty( $query->query_vars['author__not_in'] ) )
75
+ $query->query_vars['author__not_in'] = array( 'buycred' );
76
 
77
  }
78
 
addons/coupons/includes/mycred-coupon-functions.php CHANGED
@@ -5,7 +5,7 @@ if ( ! defined( 'myCRED_VERSION' ) ) exit;
5
  * Get Coupon
6
  * Returns a coupon object based on the post ID.
7
  * @since 1.7
8
- * @version 1.0
9
  */
10
  if ( ! function_exists( 'mycred_get_coupon' ) ) :
11
  function mycred_get_coupon( $coupon_post_id = NULL ) {
@@ -20,9 +20,9 @@ if ( ! function_exists( 'mycred_get_coupon' ) ) :
20
  $coupon->max_global = mycred_get_coupon_global_max( $coupon_post_id );
21
  $coupon->max_user = mycred_get_coupon_user_max( $coupon_post_id );
22
  $coupon->requires_min = mycred_get_coupon_min_balance( $coupon_post_id );
23
- $coupon->requires_min_type = get_post_meta( $coupon_post_id, 'min_balance_type', true );
24
  $coupon->requires_max = mycred_get_coupon_max_balance( $coupon_post_id );
25
- $coupon->requires_max_type = get_post_meta( $coupon_post_id, 'max_balance_type', true );
26
  $coupon->expires = mycred_get_coupon_expire_date( $coupon_post_id );
27
  $coupon->used = mycred_get_global_coupon_count( $coupon_post_id );
28
 
@@ -110,7 +110,7 @@ endif;
110
  * @returns false if data is missing, post ID on success or wp_error / 0 if
111
  * post creation failed.
112
  * @since 1.4
113
- * @version 1.1
114
  */
115
  if ( ! function_exists( 'mycred_create_new_coupon' ) ) :
116
  function mycred_create_new_coupon( $data = array() ) {
@@ -145,12 +145,13 @@ if ( ! function_exists( 'mycred_create_new_coupon' ) ) :
145
  if ( $post_id !== 0 && ! is_wp_error( $post_id ) ) {
146
 
147
  // Save Coupon Details
 
148
  add_post_meta( $post_id, 'value', $value, true );
149
  add_post_meta( $post_id, 'global', $global_max, true );
150
  add_post_meta( $post_id, 'user', $user_max, true );
151
- add_post_meta( $post_id, 'min', $min_balance, true );
152
  add_post_meta( $post_id, 'min_balance_type', $min_balance_type, true );
153
- add_post_meta( $post_id, 'max', $max_balance, true );
154
  add_post_meta( $post_id, 'max_balance_type', $max_balance_type, true );
155
 
156
  if ( ! empty( $expires ) )
5
  * Get Coupon
6
  * Returns a coupon object based on the post ID.
7
  * @since 1.7
8
+ * @version 1.0.1
9
  */
10
  if ( ! function_exists( 'mycred_get_coupon' ) ) :
11
  function mycred_get_coupon( $coupon_post_id = NULL ) {
20
  $coupon->max_global = mycred_get_coupon_global_max( $coupon_post_id );
21
  $coupon->max_user = mycred_get_coupon_user_max( $coupon_post_id );
22
  $coupon->requires_min = mycred_get_coupon_min_balance( $coupon_post_id );
23
+ $coupon->requires_min_type = $coupon->requires_min['type'];
24
  $coupon->requires_max = mycred_get_coupon_max_balance( $coupon_post_id );
25
+ $coupon->requires_max_type = $coupon->requires_max['type'];
26
  $coupon->expires = mycred_get_coupon_expire_date( $coupon_post_id );
27
  $coupon->used = mycred_get_global_coupon_count( $coupon_post_id );
28
 
110
  * @returns false if data is missing, post ID on success or wp_error / 0 if
111
  * post creation failed.
112
  * @since 1.4
113
+ * @version 1.1.1
114
  */
115
  if ( ! function_exists( 'mycred_create_new_coupon' ) ) :
116
  function mycred_create_new_coupon( $data = array() ) {
145
  if ( $post_id !== 0 && ! is_wp_error( $post_id ) ) {
146
 
147
  // Save Coupon Details
148
+ add_post_meta( $post_id, 'type', $type, true );
149
  add_post_meta( $post_id, 'value', $value, true );
150
  add_post_meta( $post_id, 'global', $global_max, true );
151
  add_post_meta( $post_id, 'user', $user_max, true );
152
+ add_post_meta( $post_id, 'min_balance', $min_balance, true );
153
  add_post_meta( $post_id, 'min_balance_type', $min_balance_type, true );
154
+ add_post_meta( $post_id, 'max_balance', $max_balance, true );
155
  add_post_meta( $post_id, 'max_balance_type', $max_balance_type, true );
156
 
157
  if ( ! empty( $expires ) )
addons/coupons/includes/mycred-coupon-shortcodes.php CHANGED
@@ -6,7 +6,7 @@ if ( ! defined( 'myCRED_VERSION' ) ) exit;
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 ) {
@@ -52,14 +52,14 @@ if ( ! function_exists( 'mycred_render_shortcode_load_coupon' ) ) :
52
 
53
  // Failed minimum balance requirement
54
  elseif ( $load === 'min_balance' ) {
55
- $min = get_post_meta( $coupon->ID, 'min', true );
56
  $template = str_replace( '%min%', $min, $mycred->coupons['min'] );
57
  $output .= '<div class="alert alert-danger">' . $template . '</div>';
58
  }
59
 
60
  // Failed maximum balance requirement
61
  elseif ( $load === 'max_balance' ) {
62
- $max = get_post_meta( $coupon->ID, 'max', true );
63
  $template = str_replace( '%max%', $max, $mycred->coupons['max'] );
64
  $output .= '<div class="alert alert-danger">' . $template . '</div>';
65
  }
6
  * @filter mycred_get_coupon_by_code
7
  * @filter mycred_load_coupon
8
  * @since 1.4
9
+ * @version 1.1.1
10
  */
11
  if ( ! function_exists( 'mycred_render_shortcode_load_coupon' ) ) :
12
  function mycred_render_shortcode_load_coupon( $atts, $content = NULL ) {
52
 
53
  // Failed minimum balance requirement
54
  elseif ( $load === 'min_balance' ) {
55
+ $min = get_post_meta( $coupon->ID, 'min_balance', true );
56
  $template = str_replace( '%min%', $min, $mycred->coupons['min'] );
57
  $output .= '<div class="alert alert-danger">' . $template . '</div>';
58
  }
59
 
60
  // Failed maximum balance requirement
61
  elseif ( $load === 'max_balance' ) {
62
+ $max = get_post_meta( $coupon->ID, 'max_balance', true );
63
  $template = str_replace( '%max%', $max, $mycred->coupons['max'] );
64
  $output .= '<div class="alert alert-danger">' . $template . '</div>';
65
  }
addons/coupons/myCRED-addon-coupons.php CHANGED
@@ -159,12 +159,12 @@ if ( ! class_exists( 'myCRED_Coupons_Module' ) ) :
159
  /**
160
  * Add Admin Menu Item
161
  * @since 1.7
162
- * @version 1.0
163
  */
164
  public function add_to_menu() {
165
 
166
  add_submenu_page(
167
- 'mycred',
168
  __( 'Coupons', 'mycred' ),
169
  __( 'Coupons', 'mycred' ),
170
  $this->core->edit_creds_cap(),
@@ -552,7 +552,7 @@ if ( ! class_exists( 'myCRED_Coupons_Module' ) ) :
552
  /**
553
  * Metabox: Coupon Requirements
554
  * @since 1.4
555
- * @version 1.1
556
  */
557
  public function mycred_coupon_requirements( $post ) {
558
 
@@ -573,7 +573,7 @@ if ( ! class_exists( 'myCRED_Coupons_Module' ) ) :
573
  <div class="form-group">
574
  <label for="mycred-coupon-min_balance"><?php _e( 'Minimum Balance', 'mycred' ); ?></label>
575
  <div>
576
- <input type="text" name="mycred_coupon[min_balance]" <?php if ( count( $this->point_types ) > 1 ) echo 'size="8"'; else echo ' style="width: 99%;"'; ?> id="mycred-coupon-min_balance" value="<?php echo $mycred->number( $coupon->requires_min ); ?>" />
577
  <?php echo $min_balance_type; ?>
578
  </div>
579
  <span class="description"><?php _e( 'Optional minimum balance a user must have in order to use this coupon. Use zero to disable.', 'mycred' ); ?></span>
@@ -585,7 +585,7 @@ if ( ! class_exists( 'myCRED_Coupons_Module' ) ) :
585
  <div class="form-group">
586
  <label for="mycred-coupon-max_balance"><?php _e( 'Maximum Balance', 'mycred' ); ?></label>
587
  <div>
588
- <input type="text" name="mycred_coupon[max_balance]" <?php if ( count( $this->point_types ) > 1 ) echo 'size="8"'; else echo ' style="width: 99%;"'; ?> id="mycred-coupon-max_balance" value="<?php echo $mycred->number( $coupon->requires_max ); ?>" />
589
  <?php echo $max_balance_type; ?>
590
  </div>
591
  <span class="description"><?php _e( 'Optional maximum balance a user can have in order to use this coupon. Use zero to disable.', 'mycred' ); ?></span>
159
  /**
160
  * Add Admin Menu Item
161
  * @since 1.7
162
+ * @version 1.0.1
163
  */
164
  public function add_to_menu() {
165
 
166
  add_submenu_page(
167
+ MYCRED_SLUG,
168
  __( 'Coupons', 'mycred' ),
169
  __( 'Coupons', 'mycred' ),
170
  $this->core->edit_creds_cap(),
552
  /**
553
  * Metabox: Coupon Requirements
554
  * @since 1.4
555
+ * @version 1.1.1
556
  */
557
  public function mycred_coupon_requirements( $post ) {
558
 
573
  <div class="form-group">
574
  <label for="mycred-coupon-min_balance"><?php _e( 'Minimum Balance', 'mycred' ); ?></label>
575
  <div>
576
+ <input type="text" name="mycred_coupon[min_balance]" <?php if ( count( $this->point_types ) > 1 ) echo 'size="8"'; else echo ' style="width: 99%;"'; ?> id="mycred-coupon-min_balance" value="<?php echo $mycred->number( $coupon->requires_min['value'] ); ?>" />
577
  <?php echo $min_balance_type; ?>
578
  </div>
579
  <span class="description"><?php _e( 'Optional minimum balance a user must have in order to use this coupon. Use zero to disable.', 'mycred' ); ?></span>
585
  <div class="form-group">
586
  <label for="mycred-coupon-max_balance"><?php _e( 'Maximum Balance', 'mycred' ); ?></label>
587
  <div>
588
+ <input type="text" name="mycred_coupon[max_balance]" <?php if ( count( $this->point_types ) > 1 ) echo 'size="8"'; else echo ' style="width: 99%;"'; ?> id="mycred-coupon-max_balance" value="<?php echo $mycred->number( $coupon->requires_max['value'] ); ?>" />
589
  <?php echo $max_balance_type; ?>
590
  </div>
591
  <span class="description"><?php _e( 'Optional maximum balance a user can have in order to use this coupon. Use zero to disable.', 'mycred' ); ?></span>
addons/email-notices/myCRED-addon-email-notices.php CHANGED
@@ -53,14 +53,14 @@ if ( ! class_exists( 'myCRED_Email_Notice_Module' ) ) :
53
  /**
54
  * Hook into Init
55
  * @since 1.1
56
- * @version 1.2.1
57
  */
58
  public function module_init() {
59
 
60
  $this->register_email_notices();
61
  $this->setup_instances();
62
 
63
- add_action( 'mycred_admin_enqueue', array( $this, 'enqueue_scripts' ) );
64
  add_filter( 'mycred_add_finished', array( $this, 'email_check' ), 80, 3 );
65
  add_action( 'mycred_badge_level_reached', array( $this, 'badge_check' ), 10, 3 );
66
  add_action( 'mycred_send_email_notices', 'mycred_email_notice_cron_job' );
@@ -183,12 +183,12 @@ if ( ! class_exists( 'myCRED_Email_Notice_Module' ) ) :
183
  /**
184
  * Add Admin Menu Item
185
  * @since 1.7
186
- * @version 1.0
187
  */
188
  public function add_to_menu() {
189
 
190
  add_submenu_page(
191
- 'mycred',
192
  __( 'Email Notifications', 'mycred' ),
193
  __( 'Email Notifications', 'mycred' ),
194
  $this->core->edit_creds_cap(),
@@ -444,13 +444,13 @@ if ( ! class_exists( 'myCRED_Email_Notice_Module' ) ) :
444
  /**
445
  * Disable WYSIWYG Editor
446
  * @since 1.1
447
- * @version 1.0
448
  */
449
  public function disable_richedit( $default ) {
450
 
451
  global $post;
452
 
453
- if ( $post->post_type == 'mycred_email_notice' )
454
  return false;
455
 
456
  return $default;
@@ -1022,7 +1022,7 @@ if ( ! class_exists( 'myCRED_Email_Notice_Module' ) ) :
1022
  /**
1023
  * Badge Check
1024
  * @since 1.7
1025
- * @version 1.0
1026
  */
1027
  public function badge_check( $user_id, $badge_id, $level_reached ) {
1028
 
@@ -1030,10 +1030,11 @@ if ( ! class_exists( 'myCRED_Email_Notice_Module' ) ) :
1030
 
1031
  $events = array( 'badges|positive' );
1032
  $request = array(
 
1033
  'user_id' => $user_id,
1034
- 'creds' => 0,
1035
  'entry' => 'New Badge',
1036
- 'ctype' => MYCRED_DEFAULT_TYPE_KEY,
1037
  'time' => current_time( 'timestamp' ),
1038
  'ref_id' => $badge_id,
1039
  'data' => array( 'ref_type' => 'post' )
@@ -1174,7 +1175,7 @@ if ( ! class_exists( 'myCRED_Email_Notice_Module' ) ) :
1174
  /**
1175
  * WP Mail
1176
  * @since 1.1
1177
- * @version 1.3.3
1178
  */
1179
  public function wp_mail( $to, $subject, $message, $headers, $attachments, $request, $email_id ) {
1180
 
@@ -1199,7 +1200,9 @@ if ( ! class_exists( 'myCRED_Email_Notice_Module' ) ) :
1199
  $message = $mycred->parse_template_tags( $message, $entry );
1200
 
1201
  if ( $this->emailnotices['use_html'] === true )
1202
- $message = wptexturize( $message );
 
 
1203
 
1204
  $subject = apply_filters( 'mycred_email_subject_body', $subject, $filtered, $this );
1205
  $message = apply_filters( 'mycred_email_message_body', $message, $filtered, $this );
@@ -1337,12 +1340,10 @@ if ( ! class_exists( 'myCRED_Email_Notice_Module' ) ) :
1337
  <label class="subheader" for="<?php echo $this->field_id( array( 'use_html' => 'no' ) ); ?>"><?php _e( 'Email Format', 'mycred' ); ?></label>
1338
  <ol id="myCRED-email-notice-use-html">
1339
  <li>
1340
- <input type="radio" name="<?php echo $this->field_name( 'use_html' ); ?>" id="<?php echo $this->field_id( array( 'use_html' => 'no' ) ); ?>" <?php checked( $this->emailnotices['use_html'], 0 ); ?> value="0" />
1341
- <label for="<?php echo $this->field_id( array( 'use_html' => 'no' ) ); ?>"><?php _e( 'Plain text emails only.', 'mycred' ); ?></label>
1342
  </li>
1343
  <li>
1344
- <input type="radio" name="<?php echo $this->field_name( 'use_html' ); ?>" id="<?php echo $this->field_id( array( 'use_html' => 'yes' ) ); ?>" <?php checked( $this->emailnotices['use_html'], 1 ); ?> value="1" />
1345
- <label for="<?php echo $this->field_id( array( 'use_html' => 'yes' ) ); ?>"><?php _e( 'HTML or Plain text emails.', 'mycred' ); ?></label>
1346
  </li>
1347
  </ol>
1348
  <label class="subheader" for="<?php echo $this->field_id( array( 'filter' => 'subject' ) ); ?>"><?php _e( 'Filters', 'mycred' ); ?></label>
@@ -1437,13 +1438,10 @@ if ( ! class_exists( 'myCRED_Email_Notice_Module' ) ) :
1437
  */
1438
  public function sanitize_extra_settings( $new_data, $data, $core ) {
1439
 
1440
- if ( ! isset( $data['emailnotices']['use_html'] ) )
1441
- $data['emailnotices']['use_html'] = 0;
1442
-
1443
- $new_data['emailnotices']['use_html'] = ( $data['emailnotices']['use_html'] == 1 ) ? true : false;
1444
 
1445
- $new_data['emailnotices']['filter']['subject'] = ( isset( $data['emailnotices']['filter']['subject'] ) ) ? true : false;
1446
- $new_data['emailnotices']['filter']['content'] = ( isset( $data['emailnotices']['filter']['content'] ) ) ? true : false;
1447
 
1448
  $new_data['emailnotices']['from']['name'] = sanitize_text_field( $data['emailnotices']['from']['name'] );
1449
  $new_data['emailnotices']['from']['email'] = sanitize_text_field( $data['emailnotices']['from']['email'] );
@@ -1457,7 +1455,7 @@ if ( ! class_exists( 'myCRED_Email_Notice_Module' ) ) :
1457
  if ( ! isset( $data['emailnotices']['override'] ) )
1458
  $data['emailnotices']['override'] = 0;
1459
 
1460
- $new_data['emailnotices']['override'] = ( $data['emailnotices']['override'] == 1 ) ? true : false;
1461
 
1462
  return $new_data;
1463
 
53
  /**
54
  * Hook into Init
55
  * @since 1.1
56
+ * @version 1.2.2
57
  */
58
  public function module_init() {
59
 
60
  $this->register_email_notices();
61
  $this->setup_instances();
62
 
63
+ add_action( 'mycred_admin_enqueue', array( $this, 'enqueue_scripts' ), $this->menu_pos );
64
  add_filter( 'mycred_add_finished', array( $this, 'email_check' ), 80, 3 );
65
  add_action( 'mycred_badge_level_reached', array( $this, 'badge_check' ), 10, 3 );
66
  add_action( 'mycred_send_email_notices', 'mycred_email_notice_cron_job' );
183
  /**
184
  * Add Admin Menu Item
185
  * @since 1.7
186
+ * @version 1.0.1
187
  */
188
  public function add_to_menu() {
189
 
190
  add_submenu_page(
191
+ MYCRED_SLUG,
192
  __( 'Email Notifications', 'mycred' ),
193
  __( 'Email Notifications', 'mycred' ),
194
  $this->core->edit_creds_cap(),
444
  /**
445
  * Disable WYSIWYG Editor
446
  * @since 1.1
447
+ * @version 1.0.1
448
  */
449
  public function disable_richedit( $default ) {
450
 
451
  global $post;
452
 
453
+ if ( isset( $post->post_type ) && $post->post_type == 'mycred_email_notice' )
454
  return false;
455
 
456
  return $default;
1022
  /**
1023
  * Badge Check
1024
  * @since 1.7
1025
+ * @version 1.0.1
1026
  */
1027
  public function badge_check( $user_id, $badge_id, $level_reached ) {
1028
 
1030
 
1031
  $events = array( 'badges|positive' );
1032
  $request = array(
1033
+ 'ref' => 'badge',
1034
  'user_id' => $user_id,
1035
+ 'amount' => 0,
1036
  'entry' => 'New Badge',
1037
+ 'type' => MYCRED_DEFAULT_TYPE_KEY,
1038
  'time' => current_time( 'timestamp' ),
1039
  'ref_id' => $badge_id,
1040
  'data' => array( 'ref_type' => 'post' )
1175
  /**
1176
  * WP Mail
1177
  * @since 1.1
1178
+ * @version 1.3.4
1179
  */
1180
  public function wp_mail( $to, $subject, $message, $headers, $attachments, $request, $email_id ) {
1181
 
1200
  $message = $mycred->parse_template_tags( $message, $entry );
1201
 
1202
  if ( $this->emailnotices['use_html'] === true )
1203
+ $message = wpautop( $message );
1204
+
1205
+ $message = wptexturize( $message );
1206
 
1207
  $subject = apply_filters( 'mycred_email_subject_body', $subject, $filtered, $this );
1208
  $message = apply_filters( 'mycred_email_message_body', $message, $filtered, $this );
1340
  <label class="subheader" for="<?php echo $this->field_id( array( 'use_html' => 'no' ) ); ?>"><?php _e( 'Email Format', 'mycred' ); ?></label>
1341
  <ol id="myCRED-email-notice-use-html">
1342
  <li>
1343
+ <label for="<?php echo $this->field_id( array( 'use_html' => 'no' ) ); ?>"><input type="radio" name="<?php echo $this->field_name( 'use_html' ); ?>" id="<?php echo $this->field_id( array( 'use_html' => 'no' ) ); ?>" <?php checked( $this->emailnotices['use_html'], 0 ); ?> value="0" /> <?php _e( 'Plain text emails only.', 'mycred' ); ?></label>
 
1344
  </li>
1345
  <li>
1346
+ <label for="<?php echo $this->field_id( array( 'use_html' => 'yes' ) ); ?>"><input type="radio" name="<?php echo $this->field_name( 'use_html' ); ?>" id="<?php echo $this->field_id( array( 'use_html' => 'yes' ) ); ?>" <?php checked( $this->emailnotices['use_html'], 1 ); ?> value="1" /> <?php _e( 'HTML or Plain text emails.', 'mycred' ); ?></label>
 
1347
  </li>
1348
  </ol>
1349
  <label class="subheader" for="<?php echo $this->field_id( array( 'filter' => 'subject' ) ); ?>"><?php _e( 'Filters', 'mycred' ); ?></label>
1438
  */
1439
  public function sanitize_extra_settings( $new_data, $data, $core ) {
1440
 
1441
+ $new_data['emailnotices']['use_html'] = ( isset( $data['emailnotices']['use_html'] ) ) ? absint( $data['emailnotices']['use_html'] ) : 0;
 
 
 
1442
 
1443
+ $new_data['emailnotices']['filter']['subject'] = ( isset( $data['emailnotices']['filter']['subject'] ) ) ? 1 : 0;
1444
+ $new_data['emailnotices']['filter']['content'] = ( isset( $data['emailnotices']['filter']['content'] ) ) ? 1 : 0;
1445
 
1446
  $new_data['emailnotices']['from']['name'] = sanitize_text_field( $data['emailnotices']['from']['name'] );
1447
  $new_data['emailnotices']['from']['email'] = sanitize_text_field( $data['emailnotices']['from']['email'] );
1455
  if ( ! isset( $data['emailnotices']['override'] ) )
1456
  $data['emailnotices']['override'] = 0;
1457
 
1458
+ $new_data['emailnotices']['override'] = ( $data['emailnotices']['override'] == 1 ) ? 1 : 0;
1459
 
1460
  return $new_data;
1461
 
addons/notifications/myCRED-addon-notifications.php CHANGED
@@ -41,13 +41,13 @@ if ( ! class_exists( 'myCRED_Notifications_Module' ) ) :
41
  /**
42
  * Module Init
43
  * @since 1.2.3
44
- * @version 1.0
45
  */
46
  public function module_init() {
47
 
48
  if ( ! is_user_logged_in() ) return;
49
 
50
- add_action( 'mycred_front_enqueue', array( $this, 'register_assets' ) );
51
  add_action( 'wp_footer', array( $this, 'get_notices' ), 1 );
52
  add_action( 'wp_footer', array( $this, 'wp_footer' ), 999 );
53
 
41
  /**
42
  * Module Init
43
  * @since 1.2.3
44
+ * @version 1.0.1
45
  */
46
  public function module_init() {
47
 
48
  if ( ! is_user_logged_in() ) return;
49
 
50
+ add_action( 'mycred_front_enqueue', array( $this, 'register_assets' ), 20 );
51
  add_action( 'wp_footer', array( $this, 'get_notices' ), 1 );
52
  add_action( 'wp_footer', array( $this, 'wp_footer' ), 999 );
53
 
addons/ranks/includes/mycred-rank-functions.php CHANGED
@@ -268,23 +268,23 @@ endif;
268
  * Get Users Rank ID
269
  * Returns the rank post ID for the given point type.
270
  * @since 1.6
271
- * @version 1.0
272
  */
273
  if ( ! function_exists( 'mycred_get_users_rank_id' ) ) :
274
- function mycred_get_users_rank_id( $user_id = NULL, $type = MYCRED_DEFAULT_TYPE_KEY ) {
275
 
276
  $end = '';
277
- if ( $type != MYCRED_DEFAULT_TYPE_KEY )
278
- $end = $type;
279
 
280
  $rank_id = mycred_get_user_meta( $user_id, 'mycred_rank', $end, true );
281
  if ( $rank_id == '' ) {
282
 
283
- $rank = mycred_find_users_rank( $user_id, $type );
284
 
285
  // Found a rank, save it
286
  if ( $rank !== false ) {
287
- mycred_update_user_meta( $user_id, 'mycred_rank', $end, $rank->rank_id );
288
  $rank_id = $rank->rank_id;
289
  }
290
 
@@ -295,6 +295,28 @@ if ( ! function_exists( 'mycred_get_users_rank_id' ) ) :
295
  }
296
  endif;
297
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
298
  /**
299
  * Get My Rank
300
  * Returns the current users rank
@@ -316,7 +338,7 @@ endif;
316
  * Retreaves the users current saved rank or if rank is missing
317
  * finds the appropriate rank and saves it.
318
  * @since 1.1
319
- * @version 1.5
320
  */
321
  if ( ! function_exists( 'mycred_get_users_rank' ) ) :
322
  function mycred_get_users_rank( $user_id = NULL, $type = MYCRED_DEFAULT_TYPE_KEY ) {
@@ -338,7 +360,7 @@ if ( ! function_exists( 'mycred_get_users_rank' ) ) :
338
 
339
  // Found a rank, save it
340
  if ( $rank !== false ) {
341
- mycred_update_user_meta( $user_id, 'mycred_rank', $end, $rank->rank_id );
342
  $rank_id = $rank->rank_id;
343
  }
344
 
268
  * Get Users Rank ID
269
  * Returns the rank post ID for the given point type.
270
  * @since 1.6
271
+ * @version 1.0.1
272
  */
273
  if ( ! function_exists( 'mycred_get_users_rank_id' ) ) :
274
+ function mycred_get_users_rank_id( $user_id = NULL, $point_type = MYCRED_DEFAULT_TYPE_KEY ) {
275
 
276
  $end = '';
277
+ if ( $point_type != MYCRED_DEFAULT_TYPE_KEY )
278
+ $end = $point_type;
279
 
280
  $rank_id = mycred_get_user_meta( $user_id, 'mycred_rank', $end, true );
281
  if ( $rank_id == '' ) {
282
 
283
+ $rank = mycred_find_users_rank( $user_id, $point_type );
284
 
285
  // Found a rank, save it
286
  if ( $rank !== false ) {
287
+ mycred_save_users_rank( $user_id, $rank->rank_id, $point_type );
288
  $rank_id = $rank->rank_id;
289
  }
290
 
295
  }
296
  endif;
297
 
298
+ /**
299
+ * Save Users Rank
300
+ * Saves a given rank for a user.
301
+ * @since 1.7.4
302
+ * @version 1.0
303
+ */
304
+ if ( ! function_exists( 'mycred_save_users_rank' ) ) :
305
+ function mycred_save_users_rank( $user_id = NULL, $rank_id = NULL, $point_type = MYCRED_DEFAULT_TYPE_KEY ) {
306
+
307
+ if ( $user_id === NULL || $rank_id === NULL ) return false;
308
+
309
+ $end = '';
310
+ if ( $point_type != MYCRED_DEFAULT_TYPE_KEY )
311
+ $end = $point_type;
312
+
313
+ mycred_update_user_meta( $user_id, 'mycred_rank', $end, $rank_id );
314
+
315
+ return true;
316
+
317
+ }
318
+ endif;
319
+
320
  /**
321
  * Get My Rank
322
  * Returns the current users rank
338
  * Retreaves the users current saved rank or if rank is missing
339
  * finds the appropriate rank and saves it.
340
  * @since 1.1
341
+ * @version 1.5.1
342
  */
343
  if ( ! function_exists( 'mycred_get_users_rank' ) ) :
344
  function mycred_get_users_rank( $user_id = NULL, $type = MYCRED_DEFAULT_TYPE_KEY ) {
360
 
361
  // Found a rank, save it
362
  if ( $rank !== false ) {
363
+ mycred_save_users_rank( $user_id, $rank->rank_id, $type );
364
  $rank_id = $rank->rank_id;
365
  }
366
 
addons/ranks/includes/mycred-rank-shortcodes.php CHANGED
@@ -196,7 +196,7 @@ endif;
196
  * Returns all users fore every registered rank in order.
197
  * @see http://mycred.me/shortcodes/mycred_users_of_all_ranks/
198
  * @since 1.1
199
- * @version 1.2
200
  */
201
  if ( ! function_exists( 'mycred_render_users_of_all_ranks' ) ) :
202
  function mycred_render_users_of_all_ranks( $atts, $row_template = NULL ) {
@@ -218,13 +218,6 @@ if ( ! function_exists( 'mycred_render_users_of_all_ranks' ) ) :
218
  if ( ! is_user_logged_in() && $login != '' )
219
  return $mycred->template_tags_general( $login );
220
 
221
- // Default template
222
- if ( $row_template === NULL || empty( $row_template ) )
223
- $row_template = '<p class="mycred-rank-user-row">%user_profile_link% with %balance% %_plural%</p>';
224
-
225
- // Let others play
226
- $row_template = apply_filters( 'mycred_users_of_all_ranks', $row_template, $atts, $mycred );
227
-
228
  $output = '';
229
  $all_ranks = mycred_get_ranks( 'publish', '-1', 'DESC', $ctype );
230
  // If we have ranks
@@ -236,7 +229,7 @@ if ( ! function_exists( 'mycred_render_users_of_all_ranks' ) ) :
236
  foreach ( $all_ranks as $rank ) {
237
 
238
  // Prep Slug
239
- $slug = str_replace( ' ', '-', strtolower( $rank->title ) );
240
 
241
  // Rank wrapper
242
  $output .= '<div class="mycred-rank rank-' . $slug . ' rank-' . $rank->post_id . '"><h2>';
@@ -248,7 +241,7 @@ if ( ! function_exists( 'mycred_render_users_of_all_ranks' ) ) :
248
  // Rank title
249
  $output .= $rank->title . '</h2>' . "\n";
250
 
251
- $attr = array(
252
  'rank_id' => $rank->post_id,
253
  'number' => $number,
254
  'nothing' => $nothing,
@@ -275,45 +268,49 @@ endif;
275
  * Returns a list of ranks with minimum and maximum point requirements.
276
  * @see http://mycred.me/shortcodes/mycred_list_ranks/
277
  * @since 1.1.1
278
- * @version 1.2
279
  */
280
  if ( ! function_exists( 'mycred_render_rank_list' ) ) :
281
- function mycred_render_rank_list( $atts, $content = NULL ) {
282
 
283
- extract( shortcode_atts( array(
284
- 'order' => 'DESC',
285
- 'ctype' => MYCRED_DEFAULT_TYPE_KEY,
286
- 'wrap' => 'div'
287
- ), $atts ) );
288
 
289
- if ( $content === NULL || empty( $content ) )
290
- $content = '<p>%rank% <span class="min">%min%</span> - <span class="max">%max%</span></p>';
291
 
292
  $output = '';
293
  $all_ranks = mycred_get_ranks( 'publish', '-1', $order, $ctype );
294
 
295
  if ( ! empty( $all_ranks ) ) {
296
 
297
- $output .= '<' . $wrap . ' class="mycred-rank-list">';
298
- $content = apply_filters( 'mycred_rank_list', $content, $atts, $mycred );
 
 
 
299
 
300
  foreach ( $all_ranks as $rank ) {
301
 
302
- $mycred = mycred( $rank->point_type );
 
303
 
304
- $row = str_replace( '%rank%', $rank->title, $content );
305
- $row = str_replace( '%rank_logo%', mycred_get_rank_logo( $rank_id ), $row );
306
- $row = str_replace( '%min%', $mycred->format_creds( $rank->minimum ), $row );
307
- $row = str_replace( '%max%', $mycred->format_creds( $rank->maximum ), $row );
308
- $row = str_replace( '%count%', $rank->count, $row );
309
 
310
- $row = $mycred->template_tags_general( $row );
311
 
312
- $output .= $row . "\n";
313
 
314
  }
315
 
316
- $output .= '</' . $wrap . '>';
 
317
 
318
  }
319
 
196
  * Returns all users fore every registered rank in order.
197
  * @see http://mycred.me/shortcodes/mycred_users_of_all_ranks/
198
  * @since 1.1
199
+ * @version 1.2.1
200
  */
201
  if ( ! function_exists( 'mycred_render_users_of_all_ranks' ) ) :
202
  function mycred_render_users_of_all_ranks( $atts, $row_template = NULL ) {
218
  if ( ! is_user_logged_in() && $login != '' )
219
  return $mycred->template_tags_general( $login );
220
 
 
 
 
 
 
 
 
221
  $output = '';
222
  $all_ranks = mycred_get_ranks( 'publish', '-1', 'DESC', $ctype );
223
  // If we have ranks
229
  foreach ( $all_ranks as $rank ) {
230
 
231
  // Prep Slug
232
+ $slug = str_replace( ' ', '-', strtolower( $rank->title ) );
233
 
234
  // Rank wrapper
235
  $output .= '<div class="mycred-rank rank-' . $slug . ' rank-' . $rank->post_id . '"><h2>';
241
  // Rank title
242
  $output .= $rank->title . '</h2>' . "\n";
243
 
244
+ $attr = array(
245
  'rank_id' => $rank->post_id,
246
  'number' => $number,
247
  'nothing' => $nothing,
268
  * Returns a list of ranks with minimum and maximum point requirements.
269
  * @see http://mycred.me/shortcodes/mycred_list_ranks/
270
  * @since 1.1.1
271
+ * @version 1.3
272
  */
273
  if ( ! function_exists( 'mycred_render_rank_list' ) ) :
274
+ function mycred_render_rank_list( $atts, $row_template = NULL ) {
275
 
276
+ $atts = shortcode_atts( array(
277
+ 'order' => 'DESC',
278
+ 'ctype' => MYCRED_DEFAULT_TYPE_KEY,
279
+ 'wrap' => 'div'
280
+ ), $atts );
281
 
282
+ extract( $atts );
 
283
 
284
  $output = '';
285
  $all_ranks = mycred_get_ranks( 'publish', '-1', $order, $ctype );
286
 
287
  if ( ! empty( $all_ranks ) ) {
288
 
289
+ if ( $wrap != '' )
290
+ $output .= '<' . $wrap . ' class="mycred-rank-list">';
291
+
292
+ if ( $row_template === NULL || empty( $row_template ) )
293
+ $row_template = '<p>%rank% <span class="min">%min%</span> - <span class="max">%max%</span></p>';
294
 
295
  foreach ( $all_ranks as $rank ) {
296
 
297
+ $mycred = mycred( $rank->point_type );
298
+ $row = apply_filters( 'mycred_rank_list', $row_template, $atts, $mycred );
299
 
300
+ $row = str_replace( '%rank%', $rank->title, $row );
301
+ $row = str_replace( '%rank_logo%', mycred_get_rank_logo( $rank->post_id ), $row );
302
+ $row = str_replace( '%min%', $mycred->format_creds( $rank->minimum ), $row );
303
+ $row = str_replace( '%max%', $mycred->format_creds( $rank->maximum ), $row );
304
+ $row = str_replace( '%count%', $rank->count, $row );
305
 
306
+ $row = $mycred->template_tags_general( $row );
307
 
308
+ $output .= $row;
309
 
310
  }
311
 
312
+ if ( $wrap != '' )
313
+ $output .= '</' . $wrap . '>';
314
 
315
  }
316
 
addons/ranks/myCRED-addon-ranks.php CHANGED
@@ -86,7 +86,7 @@ if ( ! class_exists( 'myCRED_Ranks_Module' ) ) :
86
 
87
  add_action( 'mycred_pre_init', array( $this, 'module_pre_init' ) );
88
  add_action( 'mycred_init', array( $this, 'module_init' ) );
89
- add_action( 'mycred_admin_init', array( $this, 'module_admin_init' ) );
90
 
91
  }
92
 
@@ -117,7 +117,7 @@ if ( ! class_exists( 'myCRED_Ranks_Module' ) ) :
117
  $this->add_multiple_point_types_support();
118
 
119
  add_action( 'pre_get_posts', array( $this, 'adjust_wp_query' ), 20 );
120
- add_action( 'mycred_admin_enqueue', array( $this, 'enqueue_scripts' ) );
121
 
122
  // Instances to update ranks
123
  add_action( 'transition_post_status', array( $this, 'post_status_change' ), 99, 3 );
@@ -322,7 +322,7 @@ if ( ! class_exists( 'myCRED_Ranks_Module' ) ) :
322
  /**
323
  * Add Admin Menu Item
324
  * @since 1.6
325
- * @version 1.0
326
  */
327
  public function add_menus() {
328
 
@@ -330,8 +330,12 @@ if ( ! class_exists( 'myCRED_Ranks_Module' ) ) :
330
 
331
  foreach ( $this->point_types as $type_id => $label ) {
332
 
 
 
 
 
333
  add_submenu_page(
334
- ( $type_id == MYCRED_DEFAULT_TYPE_KEY ) ? 'mycred' : 'mycred_' . $type_id,
335
  __( 'Ranks', 'mycred' ),
336
  __( 'Ranks', 'mycred' ),
337
  $cap,
@@ -482,7 +486,7 @@ if ( ! class_exists( 'myCRED_Ranks_Module' ) ) :
482
  * Balance Adjustment
483
  * Check if users rank should change.
484
  * @since 1.1
485
- * @version 1.5
486
  */
487
  public function balance_adjustment( $result, $request, $mycred ) {
488
 
@@ -495,16 +499,12 @@ if ( ! class_exists( 'myCRED_Ranks_Module' ) ) :
495
  if ( mycred_rank_based_on_total( $type ) && $amount < 0 && $ref != 'manual' )
496
  return $result;
497
 
498
- $end = '';
499
- if ( $type != MYCRED_DEFAULT_TYPE_KEY )
500
- $end = $type;
501
-
502
  // Find users rank
503
  $rank = mycred_find_users_rank( $user_id, $type );
504
 
505
  // If users rank changed, save it now.
506
  if ( isset( $rank->rank_id ) && $rank->rank_id !== $rank->current_id )
507
- mycred_update_user_meta( $user_id, 'mycred_rank', $end, $rank->rank_id );
508
 
509
  return $result;
510
 
86
 
87
  add_action( 'mycred_pre_init', array( $this, 'module_pre_init' ) );
88
  add_action( 'mycred_init', array( $this, 'module_init' ) );
89
+ add_action( 'mycred_admin_init', array( $this, 'module_admin_init' ), $this->menu_pos );
90
 
91
  }
92
 
117
  $this->add_multiple_point_types_support();
118
 
119
  add_action( 'pre_get_posts', array( $this, 'adjust_wp_query' ), 20 );
120
+ add_action( 'mycred_admin_enqueue', array( $this, 'enqueue_scripts' ), $this->menu_pos );
121
 
122
  // Instances to update ranks
123
  add_action( 'transition_post_status', array( $this, 'post_status_change' ), 99, 3 );
322
  /**
323
  * Add Admin Menu Item
324
  * @since 1.6
325
+ * @version 1.0.1
326
  */
327
  public function add_menus() {
328
 
330
 
331
  foreach ( $this->point_types as $type_id => $label ) {
332
 
333
+ $menu_slug = MYCRED_SLUG;
334
+ if ( $type_id != MYCRED_DEFAULT_TYPE_KEY )
335
+ $menu_slug = MYCRED_SLUG . '_' . $type_id;
336
+
337
  add_submenu_page(
338
+ $menu_slug,
339
  __( 'Ranks', 'mycred' ),
340
  __( 'Ranks', 'mycred' ),
341
  $cap,
486
  * Balance Adjustment
487
  * Check if users rank should change.
488
  * @since 1.1
489
+ * @version 1.5.1
490
  */
491
  public function balance_adjustment( $result, $request, $mycred ) {
492
 
499
  if ( mycred_rank_based_on_total( $type ) && $amount < 0 && $ref != 'manual' )
500
  return $result;
501
 
 
 
 
 
502
  // Find users rank
503
  $rank = mycred_find_users_rank( $user_id, $type );
504
 
505
  // If users rank changed, save it now.
506
  if ( isset( $rank->rank_id ) && $rank->rank_id !== $rank->current_id )
507
+ mycred_save_users_rank( $user_id, $rank->rank_id, $type );
508
 
509
  return $result;
510
 
addons/sell-content/includes/mycred-sell-functions.php CHANGED
@@ -32,7 +32,7 @@ endif;
32
  * Returns an array of sellable post types. In order for a post type to be
33
  * considered "usable", it must be public.
34
  * @since 1.7
35
- * @version 1.0
36
  */
37
  if ( ! function_exists( 'mycred_sell_content_post_types' ) ) :
38
  function mycred_sell_content_post_types() {
@@ -52,7 +52,7 @@ if ( ! function_exists( 'mycred_sell_content_post_types' ) ) :
52
 
53
  if ( $setup->public != 1 ) continue;
54
 
55
- if ( in_array( $post_type, $mycred_post_types ) ) continue;
56
 
57
  $eligeble_types[ $post_type ] = $setup->labels->name;
58
 
@@ -329,7 +329,7 @@ endif;
329
  * Checks if a given purchase has expired. Left this in place from the old version
330
  * for backwards comp.
331
  * @since 1.7
332
- * @version 1.0
333
  */
334
  if ( ! function_exists( 'mycred_content_purchase_has_expired' ) ) :
335
  function mycred_content_purchase_has_expired( $payment = NULL ) {
@@ -372,14 +372,15 @@ if ( ! function_exists( 'mycred_content_purchase_has_expired' ) ) :
372
  // If expiration is set
373
  if ( $length > 0 ) {
374
 
375
- $expiration = apply_filters( 'mycred_sell_expire_calc', absint( $length * 3600 ), $length, $user_id, $post->ID ) + $payment->time;
 
376
 
377
  if ( $expiration <= current_time( 'timestamp' ) )
378
  $has_expired = true;
379
 
380
  }
381
 
382
- return apply_filters( 'mycred_sell_content_sale_expired', $has_expired, $user_id, $post->ID, $payment->time, $length );
383
 
384
  }
385
  endif;
32
  * Returns an array of sellable post types. In order for a post type to be
33
  * considered "usable", it must be public.
34
  * @since 1.7
35
+ * @version 1.0.1
36
  */
37
  if ( ! function_exists( 'mycred_sell_content_post_types' ) ) :
38
  function mycred_sell_content_post_types() {
52
 
53
  if ( $setup->public != 1 ) continue;
54
 
55
+ if ( in_array( $post_type, $mycred_post_types ) || $post_type == 'attachment' ) continue;
56
 
57
  $eligeble_types[ $post_type ] = $setup->labels->name;
58
 
329
  * Checks if a given purchase has expired. Left this in place from the old version
330
  * for backwards comp.
331
  * @since 1.7
332
+ * @version 1.0.2
333
  */
334
  if ( ! function_exists( 'mycred_content_purchase_has_expired' ) ) :
335
  function mycred_content_purchase_has_expired( $payment = NULL ) {
372
  // If expiration is set
373
  if ( $length > 0 ) {
374
 
375
+ $expiration = apply_filters( 'mycred_sell_expire_calc', absint( $length * HOUR_IN_SECONDS ), $length, $payment->user_id, $post->ID );
376
+ $expiration = $expiration + $payment->time;
377
 
378
  if ( $expiration <= current_time( 'timestamp' ) )
379
  $has_expired = true;
380
 
381
  }
382
 
383
+ return apply_filters( 'mycred_sell_content_sale_expired', $has_expired, $payment->user_id, $post->ID, $payment->time, $length );
384
 
385
  }
386
  endif;
addons/sell-content/includes/mycred-sell-shortcodes.php CHANGED
@@ -6,7 +6,7 @@ if ( ! defined( 'myCRED_VERSION' ) ) exit;
6
  * This shortcode is intended to be used when selling parts of a content.
7
  * Can only be used once per content.
8
  * @since 1.7
9
- * @version 1.0.1
10
  */
11
  if ( ! function_exists( 'mycred_render_sell_this' ) ) :
12
  function mycred_render_sell_this( $atts, $content = '' ) {
@@ -64,7 +64,7 @@ if ( ! function_exists( 'mycred_render_sell_this' ) ) :
64
 
65
  }
66
 
67
- return $content;
68
 
69
  }
70
  endif;
6
  * This shortcode is intended to be used when selling parts of a content.
7
  * Can only be used once per content.
8
  * @since 1.7
9
+ * @version 1.0.2
10
  */
11
  if ( ! function_exists( 'mycred_render_sell_this' ) ) :
12
  function mycred_render_sell_this( $atts, $content = '' ) {
64
 
65
  }
66
 
67
+ return do_shortcode( $content );
68
 
69
  }
70
  endif;
addons/sell-content/myCRED-addon-sell-content.php CHANGED
@@ -999,7 +999,7 @@ if ( ! class_exists( 'myCRED_Sell_Content_Module' ) ) :
999
  * Handles content sales by replacing the posts content with the appropriate template
1000
  * for those who have not paid. Admins and authors are excluded.
1001
  * @since 0.1
1002
- * @version 1.2
1003
  */
1004
  public function the_content( $content ) {
1005
 
@@ -1067,7 +1067,7 @@ if ( ! class_exists( 'myCRED_Sell_Content_Module' ) ) :
1067
 
1068
  }
1069
 
1070
- return $content;
1071
 
1072
  }
1073
 
999
  * Handles content sales by replacing the posts content with the appropriate template
1000
  * for those who have not paid. Admins and authors are excluded.
1001
  * @since 0.1
1002
+ * @version 1.2.1
1003
  */
1004
  public function the_content( $content ) {
1005
 
1067
 
1068
  }
1069
 
1070
+ return do_shortcode( $content );
1071
 
1072
  }
1073
 
addons/stats/myCRED-addon-stats.php CHANGED
@@ -63,7 +63,7 @@ if ( ! class_exists( 'myCRED_Stats_Module' ) ) :
63
  /**
64
  * Init
65
  * @since 1.6
66
- * @version 1.0
67
  */
68
  public function module_init() {
69
 
@@ -72,7 +72,7 @@ if ( ! class_exists( 'myCRED_Stats_Module' ) ) :
72
  $mycred_load_stats = false;
73
 
74
  // Scripts & Styles
75
- add_action( 'mycred_front_enqueue', array( $this, 'register_scripts' ) );
76
  add_action( 'admin_enqueue_scripts', array( $this, 'register_scripts' ) );
77
  add_action( 'wp_footer', array( $this, 'load_front_scripts' ), 5 );
78
 
@@ -80,12 +80,16 @@ if ( ! class_exists( 'myCRED_Stats_Module' ) ) :
80
  add_shortcode( 'mycred_statistics', 'mycred_statistics_shortcode_render' );
81
 
82
  // Add color options to each point type
83
- add_action( 'mycred_core_prefs', array( $this, 'color_settings' ) );
 
84
  foreach ( $mycred_types as $type_id => $type ) {
 
85
  if ( $type_id === MYCRED_DEFAULT_TYPE_KEY ) continue;
86
- add_action( 'mycred_core_prefs' . $type_id, array( $this, 'color_settings' ) );
 
 
 
87
  }
88
- add_filter( 'mycred_save_core_prefs', array( $this, 'sanitize_extra_settings' ), 80, 3 );
89
 
90
  // Add admin screen
91
  add_action( 'admin_menu', array( $this, 'add_menu' ) );
@@ -195,18 +199,22 @@ jQuery(document).ready(function($){
195
  /**
196
  * Sanitize & Save Settings
197
  * @since 1.7
198
- * @version 1.0
199
  */
200
  public function sanitize_extra_settings( $new_data, $data, $general ) {
201
 
202
- $colors = array();
203
- $colors['positive'] = sanitize_text_field( $data['colors']['positive'] );
204
- $colors['negative'] = sanitize_text_field( $data['colors']['negative'] );
 
 
205
 
206
- $saved = mycred_get_type_color();
207
- $saved[ $this->mycred_type ] = $colors;
208
 
209
- mycred_update_option( 'mycred-point-colors', $saved );
 
 
210
 
211
  if ( array_key_exists( 'colors', $new_data ) )
212
  unset( $new_data['colors'] );
63
  /**
64
  * Init
65
  * @since 1.6
66
+ * @version 1.0.1
67
  */
68
  public function module_init() {
69
 
72
  $mycred_load_stats = false;
73
 
74
  // Scripts & Styles
75
+ add_action( 'mycred_front_enqueue', array( $this, 'register_scripts' ), 30 );
76
  add_action( 'admin_enqueue_scripts', array( $this, 'register_scripts' ) );
77
  add_action( 'wp_footer', array( $this, 'load_front_scripts' ), 5 );
78
 
80
  add_shortcode( 'mycred_statistics', 'mycred_statistics_shortcode_render' );
81
 
82
  // Add color options to each point type
83
+ add_action( 'mycred_core_prefs', array( $this, 'color_settings' ) );
84
+ add_filter( 'mycred_save_core_prefs', array( $this, 'sanitize_extra_settings' ), 10, 3 );
85
  foreach ( $mycred_types as $type_id => $type ) {
86
+
87
  if ( $type_id === MYCRED_DEFAULT_TYPE_KEY ) continue;
88
+
89
+ add_action( 'mycred_core_prefs' . $type_id, array( $this, 'color_settings' ) );
90
+ add_filter( 'mycred_save_core_prefs' . $type_id, array( $this, 'sanitize_extra_settings' ), 10, 3 );
91
+
92
  }
 
93
 
94
  // Add admin screen
95
  add_action( 'admin_menu', array( $this, 'add_menu' ) );
199
  /**
200
  * Sanitize & Save Settings
201
  * @since 1.7
202
+ * @version 1.0.1
203
  */
204
  public function sanitize_extra_settings( $new_data, $data, $general ) {
205
 
206
+ if ( array_key_exists( 'colors', $data ) ) {
207
+
208
+ $colors = array();
209
+ $colors['positive'] = sanitize_text_field( $data['colors']['positive'] );
210
+ $colors['negative'] = sanitize_text_field( $data['colors']['negative'] );
211
 
212
+ $saved = mycred_get_type_color();
213
+ $saved[ $general->mycred_type ] = $colors;
214
 
215
+ mycred_update_option( 'mycred-point-colors', $saved );
216
+
217
+ }
218
 
219
  if ( array_key_exists( 'colors', $new_data ) )
220
  unset( $new_data['colors'] );
addons/transfer/includes/mycred-transfer-shortcodes.php CHANGED
@@ -6,7 +6,7 @@ if ( ! defined( 'myCRED_VERSION' ) ) exit;
6
  * Renders a transfer form that allows users to send points to other users.
7
  * @see http://mycred.me/functions/mycred_transfer_render/
8
  * @since 0.1
9
- * @version 1.6.2
10
  */
11
  if ( ! function_exists( 'mycred_transfer_render' ) ) :
12
  function mycred_transfer_render( $atts, $content = NULL ) {
@@ -79,7 +79,7 @@ if ( ! function_exists( 'mycred_transfer_render' ) ) :
79
  if ( $mycred->exclude_user( $charge_from ) ) return '<div class="row"><div class="col-lg-12 col-md-12 col-sm-12 col-xs-12"><p>' . $excluded . '</p></div></div>';
80
 
81
  // See if we can send the lowest value
82
- $status = mycred_user_can_transfer( $charge_from, $mycred->get_lowest_value(), MYCRED_DEFAULT_TYPE_KEY, $ref );
83
  $balance = $mycred->get_users_balance( $charge_from );
84
 
85
  // Error. Not enough creds
@@ -236,7 +236,7 @@ if ( ! function_exists( 'mycred_transfer_render' ) ) :
236
  <div class="form-group select-amount-wrapper">
237
  <?php if ( $amount_label != '' ) : ?><label><?php echo $amount_label; ?>:</label><?php endif; ?>
238
  <?php if ( $amount == '' ) : ?>
239
- <input type="text" name="mycred_new_transfer[amount]" placeholder="<?php echo $mycred->zero(); ?>" class="form-control" value="" />
240
  <?php else : ?>
241
  <input type="hidden" name="mycred_new_transfer[amount]" value="<?php echo $amount; ?>" />
242
  <p class="form-control-static"><?php echo $mycred->format_creds( $amount ); ?></p>
@@ -256,7 +256,7 @@ if ( ! function_exists( 'mycred_transfer_render' ) ) :
256
  <div class="form-group select-amount-wrapper">
257
  <?php if ( $amount_label != '' ) : ?><label><?php echo $amount_label; ?>:</label><?php endif; ?>
258
  <?php if ( $amount == '' ) : ?>
259
- <input type="text" name="mycred_new_transfer[amount]" placeholder="<?php echo $mycred->zero(); ?>" class="form-control" value="" />
260
  <?php else : ?>
261
  <input type="hidden" name="mycred_new_transfer[amount]" value="<?php echo $amount; ?>" />
262
  <p class="form-control-static"><?php echo $mycred->format_creds( $amount ); ?></p>
6
  * Renders a transfer form that allows users to send points to other users.
7
  * @see http://mycred.me/functions/mycred_transfer_render/
8
  * @since 0.1
9
+ * @version 1.6.3
10
  */
11
  if ( ! function_exists( 'mycred_transfer_render' ) ) :
12
  function mycred_transfer_render( $atts, $content = NULL ) {
79
  if ( $mycred->exclude_user( $charge_from ) ) return '<div class="row"><div class="col-lg-12 col-md-12 col-sm-12 col-xs-12"><p>' . $excluded . '</p></div></div>';
80
 
81
  // See if we can send the lowest value
82
+ $status = mycred_user_can_transfer( $charge_from, $mycred->get_lowest_value(), $point_type, $ref );
83
  $balance = $mycred->get_users_balance( $charge_from );
84
 
85
  // Error. Not enough creds
236
  <div class="form-group select-amount-wrapper">
237
  <?php if ( $amount_label != '' ) : ?><label><?php echo $amount_label; ?>:</label><?php endif; ?>
238
  <?php if ( $amount == '' ) : ?>
239
+ <input type="text" name="mycred_new_transfer[amount]" placeholder="<?php echo $mycred->get_lowest_value(); ?>" class="form-control" value="" />
240
  <?php else : ?>
241
  <input type="hidden" name="mycred_new_transfer[amount]" value="<?php echo $amount; ?>" />
242
  <p class="form-control-static"><?php echo $mycred->format_creds( $amount ); ?></p>
256
  <div class="form-group select-amount-wrapper">
257
  <?php if ( $amount_label != '' ) : ?><label><?php echo $amount_label; ?>:</label><?php endif; ?>
258
  <?php if ( $amount == '' ) : ?>
259
+ <input type="text" name="mycred_new_transfer[amount]" placeholder="<?php echo $mycred->get_lowest_value(); ?>" class="form-control" value="" />
260
  <?php else : ?>
261
  <input type="hidden" name="mycred_new_transfer[amount]" value="<?php echo $amount; ?>" />
262
  <p class="form-control-static"><?php echo $mycred->format_creds( $amount ); ?></p>
addons/transfer/includes/mycred-transfer-widgets.php CHANGED
@@ -14,11 +14,9 @@ if ( ! class_exists( 'myCRED_Widget_Transfer' ) ) :
14
  */
15
  public function __construct() {
16
 
17
- $name = mycred_label( true );
18
-
19
  parent::__construct(
20
  'mycred_widget_transfer',
21
- sprintf( __( '(%s) Transfer', 'mycred' ), $name ),
22
  array(
23
  'classname' => 'widget-my-cred-transfer',
24
  'description' => __( 'Allow transfers between users.', 'mycred' )
@@ -37,11 +35,8 @@ if ( ! class_exists( 'myCRED_Widget_Transfer' ) ) :
37
  echo $before_widget;
38
 
39
  // Title
40
- if ( ! empty( $instance['title'] ) ) {
41
- echo $before_title;
42
- echo $instance['title'];
43
- echo $after_title;
44
- }
45
 
46
  // Let the shortcode to the job
47
  echo mycred_transfer_render( array(
@@ -66,16 +61,16 @@ if ( ! class_exists( 'myCRED_Widget_Transfer' ) ) :
66
  public function form( $instance ) {
67
 
68
  // Defaults
69
- $title = isset( $instance['title'] ) ? esc_attr( $instance['title'] ) : 'Transfer';
70
  $show_balance = isset( $instance['show_balance'] ) ? $instance['show_balance'] : 0;
71
  $show_limit = isset( $instance['show_limit'] ) ? $instance['show_balance'] : 0;
72
- $button = isset( $instance['button'] ) ? esc_attr( $instance['button'] ) : 'Transfer';
73
- $amount = isset( $instance['amount'] ) ? esc_attr( $instance['amount'] ) : '';
74
- $reference = isset( $instance['reference'] ) ? esc_attr( $instance['reference'] ) : 'transfer';
75
- $recipient = isset( $instance['pay_to'] ) ? esc_attr( $instance['pay_to'] ) : '';
76
- $point_types = isset( $instance['types'] ) ? esc_attr( $instance['types'] ) : MYCRED_DEFAULT_TYPE_KEY;
77
- $excluded = isset( $instance['excluded'] ) ? esc_attr( $instance['excluded'] ) : '';
78
- $placeholder = isset( $instance['placeholder'] ) ? esc_attr( $instance['placeholder'] ) : '';
79
 
80
  ?>
81
  <!-- Widget Options -->
@@ -129,8 +124,8 @@ if ( ! class_exists( 'myCRED_Widget_Transfer' ) ) :
129
  $instance = $old_instance;
130
 
131
  $instance['title'] = wp_kses_post( $new_instance['title'] );
132
- $instance['show_balance'] = ( isset( $new_instance['show_balance'] ) ) ? absint( $new_instance['show_balance'] ) : 0;
133
- $instance['show_limit'] = ( isset( $new_instance['show_limit'] ) ) ? absint( $new_instance['show_limit'] ) : 0;
134
  $instance['button'] = sanitize_text_field( $new_instance['button'] );
135
  $instance['amount'] = sanitize_text_field( $new_instance['amount'] );
136
  $instance['reference'] = sanitize_key( $new_instance['reference'] );
14
  */
15
  public function __construct() {
16
 
 
 
17
  parent::__construct(
18
  'mycred_widget_transfer',
19
+ sprintf( __( '(%s) Transfer', 'mycred' ), mycred_label( true ) ),
20
  array(
21
  'classname' => 'widget-my-cred-transfer',
22
  'description' => __( 'Allow transfers between users.', 'mycred' )
35
  echo $before_widget;
36
 
37
  // Title
38
+ if ( ! empty( $instance['title'] ) )
39
+ echo $before_title . $instance['title'] . $after_title;
 
 
 
40
 
41
  // Let the shortcode to the job
42
  echo mycred_transfer_render( array(
61
  public function form( $instance ) {
62
 
63
  // Defaults
64
+ $title = isset( $instance['title'] ) ? $instance['title'] : 'Transfer';
65
  $show_balance = isset( $instance['show_balance'] ) ? $instance['show_balance'] : 0;
66
  $show_limit = isset( $instance['show_limit'] ) ? $instance['show_balance'] : 0;
67
+ $button = isset( $instance['button'] ) ? $instance['button'] : 'Transfer';
68
+ $amount = isset( $instance['amount'] ) ? $instance['amount'] : '';
69
+ $reference = isset( $instance['reference'] ) ? $instance['reference'] : 'transfer';
70
+ $recipient = isset( $instance['pay_to'] ) ? $instance['pay_to'] : '';
71
+ $point_types = isset( $instance['types'] ) ? $instance['types'] : MYCRED_DEFAULT_TYPE_KEY;
72
+ $excluded = isset( $instance['excluded'] ) ? $instance['excluded'] : '';
73
+ $placeholder = isset( $instance['placeholder'] ) ? $instance['placeholder'] : '';
74
 
75
  ?>
76
  <!-- Widget Options -->
124
  $instance = $old_instance;
125
 
126
  $instance['title'] = wp_kses_post( $new_instance['title'] );
127
+ $instance['show_balance'] = ( isset( $new_instance['show_balance'] ) ) ? 1 : 0;
128
+ $instance['show_limit'] = ( isset( $new_instance['show_limit'] ) ) ? 1 : 0;
129
  $instance['button'] = sanitize_text_field( $new_instance['button'] );
130
  $instance['amount'] = sanitize_text_field( $new_instance['amount'] );
131
  $instance['reference'] = sanitize_key( $new_instance['reference'] );
addons/transfer/myCRED-addon-transfer.php CHANGED
@@ -63,7 +63,7 @@ if ( ! class_exists( 'myCRED_Transfer_Module' ) ) :
63
  /**
64
  * Init
65
  * @since 0.1
66
- * @version 1.0
67
  */
68
  public function module_init() {
69
 
@@ -71,7 +71,7 @@ if ( ! class_exists( 'myCRED_Transfer_Module' ) ) :
71
  add_filter( 'mycred_email_before_send', array( $this, 'email_notices' ), 50, 2 );
72
 
73
  // Register Scripts & Styles
74
- add_action( 'mycred_front_enqueue', array( $this, 'register_script' ) );
75
 
76
  // Register Shortcode
77
  add_shortcode( 'mycred_transfer', 'mycred_transfer_render' );
@@ -98,7 +98,6 @@ if ( ! class_exists( 'myCRED_Transfer_Module' ) ) :
98
 
99
  /**
100
  * Enqueue Front
101
- * @filter 'mycred_remove_transfer_css'
102
  * @since 0.1
103
  * @version 1.1
104
  */
63
  /**
64
  * Init
65
  * @since 0.1
66
+ * @version 1.0.1
67
  */
68
  public function module_init() {
69
 
71
  add_filter( 'mycred_email_before_send', array( $this, 'email_notices' ), 50, 2 );
72
 
73
  // Register Scripts & Styles
74
+ add_action( 'mycred_front_enqueue', array( $this, 'register_script' ), 30 );
75
 
76
  // Register Shortcode
77
  add_shortcode( 'mycred_transfer', 'mycred_transfer_render' );
98
 
99
  /**
100
  * Enqueue Front
 
101
  * @since 0.1
102
  * @version 1.1
103
  */
assets/images/badges-addon.png CHANGED
Binary file
assets/screenshot-1.png CHANGED
Binary file
assets/screenshot-2.png CHANGED
Binary file
assets/screenshot-3.png CHANGED
Binary file
assets/screenshot-4.png CHANGED
Binary file
assets/screenshot-5.png DELETED
Binary file
includes/classes/class.query-log.php CHANGED
@@ -96,7 +96,7 @@ if ( ! class_exists( 'myCRED_Query_Log' ) ) :
96
  if ( $this->args['ref'] !== NULL ) {
97
 
98
  $_clean_refs = array();
99
- $references = ( ( ! is_array( $this->args['ref'] ) ) ? explode( ',', $this->args['ref'] ) : $this->args['ref'] );
100
 
101
  if ( ! empty( $references ) ) {
102
  foreach ( $references as $reference ) {
@@ -356,7 +356,7 @@ $this->timestamps = $timestamps;
356
  * Returns all table column headers.
357
  * @filter mycred_log_column_headers
358
  * @since 0.1
359
- * @version 1.1.1
360
  */
361
  public function table_headers() {
362
 
@@ -372,6 +372,9 @@ $this->timestamps = $timestamps;
372
  'entry' => __( 'Entry', 'mycred' )
373
  );
374
 
 
 
 
375
  if ( $this->is_admin )
376
  $columns = array(
377
  'cb' => '',
@@ -428,14 +431,14 @@ $this->timestamps = $timestamps;
428
  /**
429
  * Get Page Number
430
  * @since 1.4
431
- * @version 1.0.1
432
  */
433
  public function get_pagenum() {
434
 
435
- global $paged;
436
 
437
- if ( $paged > 0 )
438
- $pagenum = absint( $paged );
439
 
440
  elseif ( isset( $_REQUEST['paged'] ) )
441
  $pagenum = absint( $_REQUEST['paged'] );
96
  if ( $this->args['ref'] !== NULL ) {
97
 
98
  $_clean_refs = array();
99
+ $references = ( ( ! is_array( $this->args['ref'] ) ) ? explode( ',', urldecode( $this->args['ref'] ) ) : $this->args['ref'] );
100
 
101
  if ( ! empty( $references ) ) {
102
  foreach ( $references as $reference ) {
356
  * Returns all table column headers.
357
  * @filter mycred_log_column_headers
358
  * @since 0.1
359
+ * @version 1.1.2
360
  */
361
  public function table_headers() {
362
 
372
  'entry' => __( 'Entry', 'mycred' )
373
  );
374
 
375
+ if ( $this->args['user_id'] !== NULL )
376
+ unset( $columns['username'] );
377
+
378
  if ( $this->is_admin )
379
  $columns = array(
380
  'cb' => '',
431
  /**
432
  * Get Page Number
433
  * @since 1.4
434
+ * @version 1.0.2
435
  */
436
  public function get_pagenum() {
437
 
438
+ global $wp;
439
 
440
+ if ( isset( $wp->query_vars['page'] ) && $wp->query_vars['page'] != '' )
441
+ $pagenum = absint( $wp->query_vars['page'] );
442
 
443
  elseif ( isset( $_REQUEST['paged'] ) )
444
  $pagenum = absint( $_REQUEST['paged'] );
includes/mycred-functions.php CHANGED
@@ -295,15 +295,15 @@ if ( ! class_exists( 'myCRED_Settings' ) ) :
295
  * Returns the lowest point value available based on the number of decimal places
296
  * we use. So with 1 decimal = 0.1, 2 decimals 0.01 etc. Defaults to 1.
297
  * @since 1.7
298
- * @version 1.0
299
  */
300
  public function get_lowest_value() {
301
 
302
  $lowest = 1;
303
  if ( $this->format['decimals'] > 0 )
304
- $lowest = (float) '0.' . zeroise( 1, ( $this->format['decimals'] - 1 ) );
305
 
306
- return $this->number( $lowest );
307
 
308
  }
309
 
@@ -504,7 +504,7 @@ if ( ! class_exists( 'myCRED_Settings' ) ) :
504
  * @param $data (object) Log entry data object
505
  * @return (string) parsed string
506
  * @since 0.1
507
- * @version 1.3
508
  */
509
  public function template_tags_user( $content = '', $ref_id = NULL, $data = '' ) {
510
 
@@ -540,36 +540,30 @@ if ( ! class_exists( 'myCRED_Settings' ) ) :
540
  else return $content;
541
 
542
  // Let others play first
543
- $content = apply_filters( 'mycred_parse_tags_user', $content, $user, $data );
544
 
545
  if ( ! isset( $user->ID ) ) return $content;
546
 
547
  // Replace template tags
548
- $content = str_replace( '%user_id%', $user->ID, $content );
549
- $content = str_replace( '%user_name%', $user->user_login, $content );
550
- $content = str_replace( '%user_name_en%', urlencode( $user->user_login ), $content );
551
 
552
- // Get Profile URL
553
- if ( function_exists( 'bp_core_get_user_domain' ) )
554
- $url = bp_core_get_user_domain( $user->ID );
555
- else {
556
- global $wp_rewrite;
557
- $url = get_bloginfo( 'url' ) . '/' . $wp_rewrite->author_base . '/' . urlencode( $user->user_login ) . '/';
558
- }
559
- $url = apply_filters( 'mycred_users_profile_url', $url, $user );
560
 
561
- $content = str_replace( '%display_name%', $user->display_name, $content );
562
- $content = str_replace( '%user_profile_url%', $url, $content );
563
- $content = str_replace( '%user_profile_link%', '<a href="' . $url . '">' . $user->display_name . '</a>', $content );
564
 
565
- $content = str_replace( '%user_nicename%', ( isset( $user->user_nicename ) ) ? $user->user_nicename : '', $content );
566
- $content = str_replace( '%user_email%', ( isset( $user->user_email ) ) ? $user->user_email : '', $content );
567
- $content = str_replace( '%user_url%', ( isset( $user->user_url ) ) ? $user->user_url : '', $content );
568
 
569
- // Account Related
570
- $balance = $this->get_users_balance( $user->ID );
571
- $content = str_replace( '%balance%', $balance, $content );
572
- $content = str_replace( '%balance_f%', $this->format_creds( $balance ), $content );
573
 
574
  return $content;
575
 
@@ -1086,7 +1080,7 @@ if ( ! class_exists( 'myCRED_Settings' ) ) :
1086
  * @param $new_balance (int|float), amount to add/deduct from users balance. This value must be pre-formated.
1087
  * @returns (bool) true on success or false on fail.
1088
  * @since 1.7.3
1089
- * @version 1.0
1090
  */
1091
  public function set_users_balance( $user_id = NULL, $new_balance = NULL ) {
1092
 
@@ -1095,6 +1089,7 @@ if ( ! class_exists( 'myCRED_Settings' ) ) :
1095
 
1096
  $type = $this->get_cred_id();
1097
  $new_balance = $this->number( $new_balance );
 
1098
 
1099
  // Update balance
1100
  mycred_update_user_meta( $user_id, $type, '', $new_balance );
@@ -1103,7 +1098,7 @@ if ( ! class_exists( 'myCRED_Settings' ) ) :
1103
  mycred_delete_option( 'mycred-cache-total-' . $type );
1104
 
1105
  // Let others play
1106
- do_action( 'mycred_set_user_balance', $user_id, $new_balance, $this );
1107
 
1108
  return true;
1109
 
@@ -1198,7 +1193,7 @@ if ( ! class_exists( 'myCRED_Settings' ) ) :
1198
  * @param $data (object|array|string|int), optional extra data to save in the log. Note that arrays gets serialized!
1199
  * @returns false if requirements are not set or db insert id if successful.
1200
  * @since 0.1
1201
- * @version 1.3
1202
  */
1203
  public function add_to_log( $ref = '', $user_id = '', $amount = '', $entry = '', $ref_id = '', $data = '', $type = MYCRED_DEFAULT_TYPE_KEY ) {
1204
 
@@ -1226,16 +1221,6 @@ if ( ! class_exists( 'myCRED_Settings' ) ) :
1226
  $point_types = mycred_get_types();
1227
  if ( ! array_key_exists( $type, $point_types ) ) $type = $this->get_cred_id();
1228
 
1229
- // Creds format
1230
- if ( $this->format['decimals'] > 0 )
1231
- $format = '%f';
1232
-
1233
- elseif ( $this->format['decimals'] == 0 )
1234
- $format = '%d';
1235
-
1236
- else
1237
- $format = '%s';
1238
-
1239
  $time = apply_filters( 'mycred_log_time', current_time( 'timestamp' ), $ref, $user_id, $amount, $entry, $ref_id, $data, $type );
1240
  $insert = array(
1241
  'ref' => $ref,
@@ -1252,7 +1237,7 @@ if ( ! class_exists( 'myCRED_Settings' ) ) :
1252
  $wpdb->insert(
1253
  $this->log_table,
1254
  $insert,
1255
- array( '%s', '%d', '%d', $format, '%s', '%d', '%s', ( is_numeric( $data ) ) ? '%d' : '%s' )
1256
  );
1257
 
1258
  $insert_id = $wpdb->insert_id;
@@ -1523,6 +1508,41 @@ if ( ! function_exists( 'mycred_get_user_id' ) ) :
1523
  }
1524
  endif;
1525
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1526
  /**
1527
  * Get Users Account
1528
  * Returns either the current users or the given users account object.
@@ -2068,7 +2088,7 @@ endif;
2068
  * @see http://codex.mycred.me/functions/mycred_exclude_user/
2069
  * @param $user_id (int), optional user to check, defaults to current user
2070
  * @since 0.1
2071
- * @version 1.1.1
2072
  */
2073
  if ( ! function_exists( 'mycred_exclude_user' ) ) :
2074
  function mycred_exclude_user( $user_id = NULL, $type = MYCRED_DEFAULT_TYPE_KEY ) {
@@ -2076,7 +2096,7 @@ if ( ! function_exists( 'mycred_exclude_user' ) ) :
2076
  if ( $user_id === NULL )
2077
  $user_id = get_current_user_id();
2078
 
2079
- if ( $user_id === 0 ) return false;
2080
 
2081
  $mycred = mycred( $type );
2082
 
@@ -2092,23 +2112,39 @@ endif;
2092
  * @param $user_id (int) user id
2093
  * @return users balance (int|float)
2094
  * @since 0.1
2095
- * @version 1.1.1
2096
- */
2097
  if ( ! function_exists( 'mycred_get_users_cred' ) ) :
2098
  function mycred_get_users_cred( $user_id = NULL, $type = MYCRED_DEFAULT_TYPE_KEY ) {
2099
 
2100
  if ( $user_id === NULL )
2101
  $user_id = get_current_user_id();
2102
 
2103
- if ( $user_id === 0 ) return 0;
2104
 
2105
  $mycred = mycred( $type );
2106
 
 
 
2107
  return $mycred->get_users_balance( $user_id, $type );
2108
 
2109
  }
2110
  endif;
2111
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
2112
  /**
2113
  * Get Users Creds Formated
2114
  * Returns the given users current cred balance formated. If no user id is given
@@ -2116,17 +2152,37 @@ endif;
2116
  * @param $user_id (int), required user id
2117
  * @return users balance (string) or false if no user id is given
2118
  * @since 0.1
2119
- * @version 1.1.1
2120
  */
2121
  if ( ! function_exists( 'mycred_get_users_fcred' ) ) :
2122
  function mycred_get_users_fcred( $user_id = NULL, $type = MYCRED_DEFAULT_TYPE_KEY ) {
2123
 
2124
- if ( $user_id === NULL ) return false;
 
2125
 
2126
- $mycred = mycred( $type );
2127
- $cred = $mycred->get_users_balance( $user_id, $type );
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
2128
 
2129
- return $mycred->format_creds( $cred );
2130
 
2131
  }
2132
  endif;
295
  * Returns the lowest point value available based on the number of decimal places
296
  * we use. So with 1 decimal = 0.1, 2 decimals 0.01 etc. Defaults to 1.
297
  * @since 1.7
298
+ * @version 1.0.1
299
  */
300
  public function get_lowest_value() {
301
 
302
  $lowest = 1;
303
  if ( $this->format['decimals'] > 0 )
304
+ $lowest = number_format( '0.' . zeroise( 1, $this->format['decimals'] ), $this->format['decimals'], '.', '' );
305
 
306
+ return $lowest;
307
 
308
  }
309
 
504
  * @param $data (object) Log entry data object
505
  * @return (string) parsed string
506
  * @since 0.1
507
+ * @version 1.3.1
508
  */
509
  public function template_tags_user( $content = '', $ref_id = NULL, $data = '' ) {
510
 
540
  else return $content;
541
 
542
  // Let others play first
543
+ $content = apply_filters( 'mycred_parse_tags_user', $content, $user, $data );
544
 
545
  if ( ! isset( $user->ID ) ) return $content;
546
 
547
  // Replace template tags
548
+ $content = str_replace( '%user_id%', $user->ID, $content );
549
+ $content = str_replace( '%user_name%', $user->user_login, $content );
550
+ $content = str_replace( '%user_name_en%', urlencode( $user->user_login ), $content );
551
 
552
+ $profile_url = mycred_get_users_profile_url( $user->ID );
553
+
554
+ $content = str_replace( '%display_name%', $user->display_name, $content );
555
+ $content = str_replace( '%user_profile_url%', $profile_url, $content );
556
+ $content = str_replace( '%user_profile_link%', '<a href="' . $profile_url . '">' . $user->display_name . '</a>', $content );
 
 
 
557
 
558
+ $content = str_replace( '%user_nicename%', ( isset( $user->user_nicename ) ) ? $user->user_nicename : '', $content );
559
+ $content = str_replace( '%user_email%', ( isset( $user->user_email ) ) ? $user->user_email : '', $content );
560
+ $content = str_replace( '%user_url%', ( isset( $user->user_url ) ) ? $user->user_url : '', $content );
561
 
562
+ // Balance Related
563
+ $balance = $this->get_users_balance( $user->ID );
 
564
 
565
+ $content = str_replace( '%balance%', $balance, $content );
566
+ $content = str_replace( '%balance_f%', $this->format_creds( $balance ), $content );
 
 
567
 
568
  return $content;
569
 
1080
  * @param $new_balance (int|float), amount to add/deduct from users balance. This value must be pre-formated.
1081
  * @returns (bool) true on success or false on fail.
1082
  * @since 1.7.3
1083
+ * @version 1.0.1
1084
  */
1085
  public function set_users_balance( $user_id = NULL, $new_balance = NULL ) {
1086
 
1089
 
1090
  $type = $this->get_cred_id();
1091
  $new_balance = $this->number( $new_balance );
1092
+ $old_balance = $this->get_users_balance( $user_id, $type );
1093
 
1094
  // Update balance
1095
  mycred_update_user_meta( $user_id, $type, '', $new_balance );
1098
  mycred_delete_option( 'mycred-cache-total-' . $type );
1099
 
1100
  // Let others play
1101
+ do_action( 'mycred_set_user_balance', $user_id, $new_balance, $old_balance, $this );
1102
 
1103
  return true;
1104
 
1193
  * @param $data (object|array|string|int), optional extra data to save in the log. Note that arrays gets serialized!
1194
  * @returns false if requirements are not set or db insert id if successful.
1195
  * @since 0.1
1196
+ * @version 1.3.1
1197
  */
1198
  public function add_to_log( $ref = '', $user_id = '', $amount = '', $entry = '', $ref_id = '', $data = '', $type = MYCRED_DEFAULT_TYPE_KEY ) {
1199
 
1221
  $point_types = mycred_get_types();
1222
  if ( ! array_key_exists( $type, $point_types ) ) $type = $this->get_cred_id();
1223
 
 
 
 
 
 
 
 
 
 
 
1224
  $time = apply_filters( 'mycred_log_time', current_time( 'timestamp' ), $ref, $user_id, $amount, $entry, $ref_id, $data, $type );
1225
  $insert = array(
1226
  'ref' => $ref,
1237
  $wpdb->insert(
1238
  $this->log_table,
1239
  $insert,
1240
+ array( '%s', '%d', '%d', '%s', '%s', '%d', '%s', ( is_numeric( $data ) ) ? '%d' : '%s' )
1241
  );
1242
 
1243
  $insert_id = $wpdb->insert_id;
1508
  }
1509
  endif;
1510
 
1511
+ /**
1512
+ * Get Users Profile URL
1513
+ * Returns a given users profile URL.
1514
+ * @since 1.7.4
1515
+ * @version 1.0.1
1516
+ */
1517
+ if ( ! function_exists( 'mycred_get_users_profile_url' ) ) :
1518
+ function mycred_get_users_profile_url( $user_id = NULL ) {
1519
+
1520
+ $profile_url = '';
1521
+ if ( $user_id === NULL || absint( $user_id ) === 0 ) return $profile_url;
1522
+
1523
+ $user = get_userdata( $user_id );
1524
+
1525
+ // BuddyPress option
1526
+ if ( function_exists( 'bp_core_get_user_domain' ) )
1527
+ $profile_url = bp_core_get_user_domain( $user_id );
1528
+
1529
+ // bbPress option
1530
+ elseif ( function_exists( 'bbp_get_user_profile_url' ) )
1531
+ $profile_url = bbp_get_user_profile_url( $user_id );
1532
+
1533
+ else {
1534
+
1535
+ global $wp_rewrite;
1536
+
1537
+ $profile_url = get_bloginfo( 'url' ) . '/' . $wp_rewrite->author_base . '/' . urlencode( $user->user_login ) . '/';
1538
+
1539
+ }
1540
+
1541
+ return apply_filters( 'mycred_users_profile_url', $profile_url, $user );
1542
+
1543
+ }
1544
+ endif;
1545
+
1546
  /**
1547
  * Get Users Account
1548
  * Returns either the current users or the given users account object.
2088
  * @see http://codex.mycred.me/functions/mycred_exclude_user/
2089
  * @param $user_id (int), optional user to check, defaults to current user
2090
  * @since 0.1
2091
+ * @version 1.1.2
2092
  */
2093
  if ( ! function_exists( 'mycred_exclude_user' ) ) :
2094
  function mycred_exclude_user( $user_id = NULL, $type = MYCRED_DEFAULT_TYPE_KEY ) {
2096
  if ( $user_id === NULL )
2097
  $user_id = get_current_user_id();
2098
 
2099
+ if ( (int) $user_id === 0 ) return false;
2100
 
2101
  $mycred = mycred( $type );
2102
 
2112
  * @param $user_id (int) user id
2113
  * @return users balance (int|float)
2114
  * @since 0.1
2115
+ * @version 1.2
2116
+ */
2117
  if ( ! function_exists( 'mycred_get_users_cred' ) ) :
2118
  function mycred_get_users_cred( $user_id = NULL, $type = MYCRED_DEFAULT_TYPE_KEY ) {
2119
 
2120
  if ( $user_id === NULL )
2121
  $user_id = get_current_user_id();
2122
 
2123
+ if ( (int) $user_id === 0 ) return false;
2124
 
2125
  $mycred = mycred( $type );
2126
 
2127
+ if ( $mycred->exclude_user( $user_id ) ) return false;
2128
+
2129
  return $mycred->get_users_balance( $user_id, $type );
2130
 
2131
  }
2132
  endif;
2133
 
2134
+ /**
2135
+ * Get Users Balance (pseudo)
2136
+ * Pseudo function for mycred_get_users_cred.
2137
+ * @since 1.7.4
2138
+ * @version 1.0
2139
+ */
2140
+ if ( ! function_exists( 'mycred_get_users_balance' ) ) :
2141
+ function mycred_get_users_balance( $user_id = NULL, $point_type = MYCRED_DEFAULT_TYPE_KEY ) {
2142
+
2143
+ return mycred_get_users_cred( $user_id, $point_type );
2144
+
2145
+ }
2146
+ endif;
2147
+
2148
  /**
2149
  * Get Users Creds Formated
2150
  * Returns the given users current cred balance formated. If no user id is given
2152
  * @param $user_id (int), required user id
2153
  * @return users balance (string) or false if no user id is given
2154
  * @since 0.1
2155
+ * @version 1.2
2156
  */
2157
  if ( ! function_exists( 'mycred_get_users_fcred' ) ) :
2158
  function mycred_get_users_fcred( $user_id = NULL, $type = MYCRED_DEFAULT_TYPE_KEY ) {
2159
 
2160
+ if ( $user_id === NULL )
2161
+ $user_id = get_current_user_id();
2162
 
2163
+ if ( (int) $user_id === 0 ) return false;
2164
+
2165
+ $mycred = mycred( $type );
2166
+
2167
+ if ( $mycred->exclude_user( $user_id ) ) return false;
2168
+
2169
+ $balance = $mycred->get_users_balance( $user_id, $type );
2170
+
2171
+ return $mycred->format_creds( $balance );
2172
+
2173
+ }
2174
+ endif;
2175
+
2176
+ /**
2177
+ * Display Users Balance
2178
+ * Pseudo function for mycred_get_users_fcred.
2179
+ * @since 1.7.4
2180
+ * @version 1.0
2181
+ */
2182
+ if ( ! function_exists( 'mycred_display_users_balance' ) ) :
2183
+ function mycred_display_users_balance( $user_id = NULL, $point_type = MYCRED_DEFAULT_TYPE_KEY ) {
2184
 
2185
+ return mycred_get_users_fcred( $user_id, $point_type );
2186
 
2187
  }
2188
  endif;
includes/mycred-widgets.php CHANGED
@@ -4,7 +4,7 @@ if ( ! defined( 'myCRED_VERSION' ) ) exit;
4
  /**
5
  * Widget: myCRED Balance
6
  * @since 0.1
7
- * @version 1.4.2
8
  */
9
  if ( ! class_exists( 'myCRED_Widget_Balance' ) ) :
10
  class myCRED_Widget_Balance extends WP_Widget {
@@ -14,14 +14,12 @@ if ( ! class_exists( 'myCRED_Widget_Balance' ) ) :
14
  */
15
  public function __construct() {
16
 
17
- $name = mycred_label( true );
18
-
19
  parent::__construct(
20
  'mycred_widget_balance',
21
- sprintf( __( '(%s) My Balance', 'mycred' ), $name ),
22
  array(
23
  'classname' => 'widget-my-cred',
24
- 'description' => sprintf( __( 'Show the current users %s balance', 'mycred' ), $name )
25
  )
26
  );
27
 
@@ -62,7 +60,7 @@ if ( ! class_exists( 'myCRED_Widget_Balance' ) ) :
62
  $layout = $mycred->template_tags_amount( $instance['cred_format'], $balance->current );
63
  $layout = $mycred->template_tags_user( $layout, false, wp_get_current_user() );
64
 
65
- echo '<div class="myCRED-balance ' . esc_attr( $instance['type'] ) . '">' . $layout . '</div>';
66
 
67
  // If we want to include history
68
  if ( $instance['show_history'] ) {
@@ -80,23 +78,21 @@ if ( ! class_exists( 'myCRED_Widget_Balance' ) ) :
80
  if ( $log->have_entries() ) {
81
 
82
  // Title
83
- if ( ! empty( $instance['history_title'] ) ) {
84
- $history_title = $instance['history_title'];
85
- echo $before_title . $mycred->template_tags_general( $history_title ) . $after_title;
86
- }
87
 
88
  // Organized List
89
  echo '<ol class="myCRED-history">';
90
- $alt = 0;
91
  $date_format = get_option( 'date_format' );
92
  foreach ( $log->results as $entry ) {
93
 
94
  // Row Layout
95
  $layout = $instance['history_format'];
 
96
  $layout = str_replace( '%date%', '<span class="date">' . date( $date_format, $entry->time ) . '</span>', $layout );
97
  $layout = str_replace( '%entry%', $mycred->parse_template_tags( $entry->entry, $entry ), $layout );
98
 
99
- $layout = $mycred->allowed_tags( $layout );
100
  $layout = $mycred->template_tags_amount( $layout, $entry->creds );
101
 
102
  // Alternating rows
@@ -155,33 +151,24 @@ if ( ! class_exists( 'myCRED_Widget_Balance' ) ) :
155
  public function form( $instance ) {
156
 
157
  // Defaults
158
- $title = isset( $instance['title'] ) ? esc_attr( $instance['title'] ) : 'My Balance';
159
- $type = isset( $instance['type'] ) ? $instance['type'] : MYCRED_DEFAULT_TYPE_KEY;
160
- $cred_format = isset( $instance['cred_format'] ) ? esc_attr( $instance['cred_format'] ) : '%cred_f%';
161
- $show_history = isset( $instance['show_history'] ) ? $instance['show_history'] : 0;
162
- $history_title = isset( $instance['history_title'] ) ? $instance['history_title'] : '%plural% History';
163
- $history_entry = isset( $instance['history_format'] ) ? esc_attr( $instance['history_format'] ) : '%entry% <span class="creds">%cred_f%</span>';
164
- $history_length = isset( $instance['number'] ) ? abs( $instance['number'] ) : 5;
165
- $show_visitors = isset( $instance['show_visitors'] ) ? $instance['show_visitors'] : 0;
166
- $message = isset( $instance['message'] ) ? esc_attr( $instance['message'] ) : '<a href="%login_url_here%">Login</a> to view your balance.';
167
-
168
- $mycred = mycred( $type );
169
- $mycred_types = mycred_get_types();
170
-
171
- // CSS to help with show/hide
172
- $history_option_class = $visitor_option_class = '';
173
- if ( $show_history )
174
- $history_option_class = ' ex-field';
175
-
176
- if ( $show_visitors )
177
- $visitor_option_class = ' ex-field';
178
 
179
  ?>
180
  <!-- Widget Admin Styling -->
181
  <style type="text/css">
182
- p.myCRED-widget-field span { display: none; }
183
- p.myCRED-widget-field span.ex-field { display: block; padding: 6px 0; }
184
- p.myCRED-widget-field span textarea { width: 98%; min-height: 80px; }
185
  </style>
186
 
187
  <!-- Widget Options -->
@@ -202,49 +189,49 @@ if ( ! class_exists( 'myCRED_Widget_Balance' ) ) :
202
 
203
  <!-- Balance layout -->
204
  <p class="myCRED-widget-field">
205
- <label for="<?php echo esc_attr( $this->get_field_id( 'cred_format' ) ); ?>"><?php _e( 'Layout', 'mycred' ); ?>:</label>
206
- <input id="<?php echo esc_attr( $this->get_field_id( 'cred_format' ) ); ?>" name="<?php echo esc_attr( $this->get_field_name( 'cred_format' ) ); ?>" type="text" value="<?php echo esc_attr( $cred_format ); ?>" class="widefat" /><br />
207
  <small><?php echo $mycred->available_template_tags( array( 'general', 'amount', 'user' ) ); ?></small>
208
  </p>
209
 
210
  <!-- History -->
211
  <p class="myCRED-widget-field">
212
- <input type="checkbox" name="<?php echo esc_attr( $this->get_field_name( 'show_history' ) ); ?>" id="<?php echo esc_attr( $this->get_field_id( 'show_history' ) ); ?>" value="1"<?php checked( $show_history, 1 ); ?> class="checkbox" />
213
- <label for="<?php echo esc_attr( $this->get_field_id( 'show_history' ) ); ?>"><?php _e( 'Include history', 'mycred' ); ?></label><br />
214
- <span class="mycred-hidden<?php echo $history_option_class; ?>">
 
215
  <label for="<?php echo esc_attr( $this->get_field_id( 'history_title' ) ); ?>"><?php _e( 'History Title', 'mycred' ); ?>:</label>
216
  <input id="<?php echo esc_attr( $this->get_field_id( 'history_title' ) ); ?>" name="<?php echo esc_attr( $this->get_field_name( 'history_title' ) ); ?>" type="text" value="<?php echo esc_attr( $history_title ); ?>" class="widefat" />
 
 
217
  <label for="<?php echo esc_attr( $this->get_field_id( 'number' ) ); ?>"><?php _e( 'Number of entires', 'mycred' ); ?>:</label>
218
- <input id="<?php echo esc_attr( $this->get_field_id( 'number' ) ); ?>" name="<?php echo esc_attr( $this->get_field_name( 'number' ) ); ?>" type="text" value="<?php echo $history_length; ?>" size="3" class="align-right" /><br />
 
 
219
  <label for="<?php echo esc_attr( $this->get_field_id( 'history_format' ) ); ?>"><?php _e( 'Row layout', 'mycred' ); ?>:</label>
220
- <textarea name="<?php echo esc_attr( $this->get_field_name( 'history_format' ) ); ?>" id="<?php echo esc_attr( $this->get_field_id( 'history_format' ) ); ?>" rows="3"><?php echo esc_attr( $history_entry ); ?></textarea>
221
  <small><?php echo $mycred->available_template_tags( array( 'general', 'widget' ) ); ?></small>
222
- </span>
223
- </p>
224
  <!-- Show to Visitors -->
225
  <p class="myCRED-widget-field">
226
- <input type="checkbox" name="<?php echo esc_attr( $this->get_field_name( 'show_visitors' ) ); ?>" id="<?php echo esc_attr( $this->get_field_id( 'show_visitors' ) ); ?>" value="1"<?php checked( $show_visitors, 1 ); ?> class="checkbox" />
227
- <label for="<?php echo esc_attr( $this->get_field_id( 'show_visitors' ) ); ?>"><?php _e( 'Show message when not logged in', 'mycred' ); ?></label><br />
228
- <span class="mycred-hidden<?php echo $visitor_option_class; ?>">
229
- <label for="<?php echo esc_attr( $this->get_field_id( 'message' ) ); ?>"><?php _e( 'Message', 'mycred' ); ?>:</label><br />
230
- <textarea class="widefat" id="<?php echo esc_attr( $this->get_field_id( 'message' ) ); ?>" name="<?php echo esc_attr( $this->get_field_name( 'message' ) ); ?>"><?php echo $message; ?></textarea><br />
231
- <small><?php echo $mycred->available_template_tags( array( 'general', 'amount' ) ); ?></small>
232
- </span>
233
  </p>
 
 
 
 
 
 
 
234
  <!-- Widget Admin Scripting -->
235
  <script type="text/javascript">//<![CDATA[
236
  jQuery(function($) {
237
- $(document).ready(function(){
238
-
239
- $( '#<?php echo esc_attr( $this->get_field_id( 'show_history' ) ); ?>' ).click(function(){
240
- $(this).next().next().next().toggleClass( 'ex-field' );
241
- });
242
-
243
- $( '#<?php echo esc_attr( $this->get_field_id( 'show_visitors' ) ); ?>' ).click(function(){
244
- $(this).next().next().next().toggleClass( 'ex-field' );
245
- });
246
 
 
 
247
  });
 
248
  });//]]>
249
  </script>
250
  <?php
@@ -256,22 +243,20 @@ jQuery(function($) {
256
  */
257
  public function update( $new_instance, $old_instance ) {
258
 
259
- global $mycred;
260
-
261
- $instance = $old_instance;
262
- $allowed = $mycred->allowed_html_tags();
263
 
264
- $instance['title'] = wp_kses( $new_instance['title'], $allowed );
265
  $instance['type'] = sanitize_text_field( $new_instance['type'] );
266
- $instance['cred_format'] = wp_kses( $new_instance['cred_format'], $allowed );
267
  $instance['show_history'] = ( isset( $new_instance['show_history'] ) ) ? 1 : 0;
268
- $instance['history_title'] = wp_kses( $new_instance['history_title'], $allowed );
269
- $instance['history_format'] = wp_kses( $new_instance['history_format'], $allowed );
270
  $instance['number'] = absint( $new_instance['number'] );
271
  $instance['show_visitors'] = ( isset( $new_instance['show_visitors'] ) ) ? 1 : 0;
272
- $instance['message'] = wp_kses( $new_instance['message'], $allowed );
273
 
274
  mycred_flush_widget_cache( 'mycred_widget_balance' );
 
275
  return $instance;
276
 
277
  }
@@ -282,7 +267,7 @@ endif;
282
  /**
283
  * Widget: Leaderboard
284
  * @since 0.1
285
- * @version 1.3.1
286
  */
287
  if ( ! class_exists( 'myCRED_Widget_Leaderboard' ) ) :
288
  class myCRED_Widget_Leaderboard extends WP_Widget {
@@ -292,14 +277,12 @@ if ( ! class_exists( 'myCRED_Widget_Leaderboard' ) ) :
292
  */
293
  public function __construct() {
294
 
295
- $name = mycred_label( true );
296
-
297
  parent::__construct(
298
  'mycred_widget_list',
299
- sprintf( __( '(%s) Leaderboard', 'mycred' ), $name ),
300
  array(
301
  'classname' => 'widget-mycred-list',
302
- 'description' => sprintf( __( 'Show a list of users sorted by their %s balance', 'mycred' ), $name )
303
  )
304
  );
305
 
@@ -340,11 +323,8 @@ if ( ! class_exists( 'myCRED_Widget_Leaderboard' ) ) :
340
  echo $before_widget;
341
 
342
  // Title
343
- if ( ! empty( $instance['title'] ) ) {
344
- echo $before_title;
345
- echo $mycred->template_tags_general( $instance['title'] );
346
- echo $after_title;
347
- }
348
 
349
  echo mycred_render_shortcode_leaderboard( $args );
350
 
@@ -359,25 +339,25 @@ if ( ! class_exists( 'myCRED_Widget_Leaderboard' ) ) :
359
  public function form( $instance ) {
360
 
361
  // Defaults
362
- $title = isset( $instance['title'] ) ? esc_attr( $instance['title'] ) : 'Leaderboard';
363
- $type = isset( $instance['type'] ) ? $instance['type'] : MYCRED_DEFAULT_TYPE_KEY;
364
- $based_on = isset( $instance['based_on'] ) ? esc_attr( $instance['based_on'] ) : 'balance';
365
 
366
- $number = isset( $instance['number'] ) ? absint( $instance['number'] ) : 5;
367
  $show_visitors = isset( $instance['show_visitors'] ) ? $instance['show_visitors'] : 0;
368
- $text = isset( $instance['text'] ) ? esc_attr( $instance['text'] ) : '#%position% %user_profile_link% %cred_f%';
369
- $offset = isset( $instance['offset'] ) ? esc_attr( $instance['offset'] ) : 0;
370
- $order = isset( $instance['order'] ) ? esc_attr( $instance['order'] ) : 'DESC';
371
- $current = isset( $instance['current'] ) ? absint( $instance['current'] ) : 0;
372
- $timeframe = isset( $instance['timeframe'] ) ? esc_attr( $instance['timeframe'] ) : '';
373
 
374
- $mycred = mycred( $type );
375
- $mycred_types = mycred_get_types();
376
 
377
  ?>
378
  <p class="myCRED-widget-field">
379
  <label for="<?php echo esc_attr( $this->get_field_id( 'title' ) ); ?>"><?php _e( 'Title', 'mycred' ); ?>:</label>
380
- <input class="widefat" id="<?php echo esc_attr( $this->get_field_id( 'title' ) ); ?>" name="<?php echo esc_attr( $this->get_field_name( 'title' ) ); ?>" type="text" value="<?php echo esc_attr( $title ); ?>" />
381
  </p>
382
 
383
  <?php if ( count( $mycred_types ) > 1 ) : ?>
@@ -391,25 +371,25 @@ if ( ! class_exists( 'myCRED_Widget_Leaderboard' ) ) :
391
 
392
  <p class="myCRED-widget-field">
393
  <label for="<?php echo esc_attr( $this->get_field_id( 'based_on' ) ); ?>"><?php _e( 'Based On', 'mycred' ); ?>:</label>
394
- <input class="widefat" id="<?php echo esc_attr( $this->get_field_id( 'based_on' ) ); ?>" name="<?php echo esc_attr( $this->get_field_name( 'based_on' ) ); ?>" type="text" value="<?php echo esc_attr( $based_on ); ?>" />
395
- <small><?php _e( 'Use "balance" to base the leaderboard on your users current balances or use a specific reference.', 'mycred' ); ?> <a href="http://codex.mycred.me/reference-guide/log-references/" target="_blank"><?php _e( 'Reference Guide', 'mycred' ); ?></a></small>
396
  </p>
397
 
398
  <p class="myCRED-widget-field">
399
- <input type="checkbox" name="<?php echo esc_attr( $this->get_field_name( 'show_visitors' ) ); ?>" id="<?php echo esc_attr( $this->get_field_id( 'show_visitors' ) ); ?>" value="1"<?php checked( $show_visitors, 1 ); ?> class="checkbox" />
400
- <label for="<?php echo esc_attr( $this->get_field_id( 'show_visitors' ) ); ?>"><?php _e( 'Visible to non-members', 'mycred' ); ?></label> </p>
401
  <p class="myCRED-widget-field">
402
  <label for="<?php echo esc_attr( $this->get_field_id( 'number' ) ); ?>"><?php _e( 'Number of users', 'mycred' ); ?>:</label>
403
- <input id="<?php echo esc_attr( $this->get_field_id( 'number' ) ); ?>" name="<?php echo esc_attr( $this->get_field_name( 'number' ) ); ?>" type="text" value="<?php echo $number; ?>" size="3" class="align-right" />
404
  </p>
405
  <p class="myCRED-widget-field">
406
  <label for="<?php echo esc_attr( $this->get_field_id( 'text' ) ); ?>"><?php _e( 'Row layout', 'mycred' ); ?>:</label>
407
- <textarea class="widefat" name="<?php echo esc_attr( $this->get_field_name( 'text' ) ); ?>" id="<?php echo esc_attr( $this->get_field_id( 'text' ) ); ?>" rows="3"><?php echo esc_attr( $text ); ?></textarea>
408
  <small><?php echo $mycred->available_template_tags( array( 'general', 'balance' ) ); ?></small>
409
  </p>
410
  <p class="myCRED-widget-field">
411
  <label for="<?php echo esc_attr( $this->get_field_id( 'offset' ) ); ?>"><?php _e( 'Offset', 'mycred' ); ?>:</label>
412
- <input id="<?php echo esc_attr( $this->get_field_id( 'offset' ) ); ?>" name="<?php echo esc_attr( $this->get_field_name( 'offset' ) ); ?>" type="text" value="<?php echo $offset; ?>" size="3" class="align-right" /><br />
413
  <small><?php _e( 'Optional offset of order. Use zero to return the first in the list.', 'mycred' ); ?></small>
414
  </p>
415
  <p class="myCRED-widget-field">
@@ -418,7 +398,7 @@ if ( ! class_exists( 'myCRED_Widget_Leaderboard' ) ) :
418
  <?php
419
 
420
  $options = array(
421
- 'ASC' => __( 'Ascending', 'mycred' ),
422
  'DESC' => __( 'Descending', 'mycred' )
423
  );
424
 
@@ -432,13 +412,12 @@ if ( ! class_exists( 'myCRED_Widget_Leaderboard' ) ) :
432
  </select>
433
  </p>
434
  <p class="myCRED-widget-field">
435
- <input type="checkbox" name="<?php echo esc_attr( $this->get_field_name( 'current' ) ); ?>" id="<?php echo esc_attr( $this->get_field_id( 'current' ) ); ?>" value="1"<?php checked( $current, 1 ); ?> class="checkbox" />
436
- <label for="<?php echo esc_attr( $this->get_field_id( 'current' ) ); ?>"><?php _e( 'Append current users position', 'mycred' ); ?></label><br />
437
  <small><?php _e( 'If the current user is not in this leaderboard, you can select to append them at the end with their current position.', 'mycred' ); ?></small>
438
  </p>
439
  <p class="myCRED-widget-field">
440
  <label for="<?php echo esc_attr( $this->get_field_id( 'timeframe' ) ); ?>"><?php _e( 'Timeframe', 'mycred' ); ?>:</label>
441
- <input id="<?php echo esc_attr( $this->get_field_id( 'timeframe' ) ); ?>" name="<?php echo esc_attr( $this->get_field_name( 'timeframe' ) ); ?>" type="text" value="<?php echo $timeframe; ?>" size="3" class="align-right" /><br />
442
  <small><?php _e( 'Option to limit the leaderboard based on a specific timeframe. Leave empty if not used.', 'mycred' ); ?></small>
443
  </p>
444
  <?php
@@ -450,17 +429,17 @@ if ( ! class_exists( 'myCRED_Widget_Leaderboard' ) ) :
450
  */
451
  public function update( $new_instance, $old_instance ) {
452
 
453
- $instance = $old_instance;
454
 
455
  $instance['number'] = absint( $new_instance['number'] );
456
  $instance['title'] = wp_kses_post( $new_instance['title'] );
457
  $instance['type'] = sanitize_key( $new_instance['type'] );
458
  $instance['based_on'] = sanitize_key( $new_instance['based_on'] );
459
- $instance['show_visitors'] = ( isset( $new_instance['show_visitors'] ) ) ? $new_instance['show_visitors'] : 0;
460
  $instance['text'] = wp_kses_post( $new_instance['text'] );
461
  $instance['offset'] = sanitize_text_field( $new_instance['offset'] );
462
  $instance['order'] = sanitize_text_field( $new_instance['order'] );
463
- $instance['current'] = ( isset( $new_instance['current'] ) ) ? absint( $new_instance['current'] ) : 0;
464
  $instance['timeframe'] = sanitize_text_field( $new_instance['timeframe'] );
465
 
466
  mycred_flush_widget_cache( 'mycred_widget_list' );
@@ -475,7 +454,7 @@ endif;
475
  /**
476
  * Widget: myCRED Wallet
477
  * @since 1.4
478
- * @version 1.1.1
479
  */
480
  if ( ! class_exists( 'myCRED_Widget_Wallet' ) ) :
481
  class myCRED_Widget_Wallet extends WP_Widget {
@@ -485,14 +464,12 @@ if ( ! class_exists( 'myCRED_Widget_Wallet' ) ) :
485
  */
486
  public function __construct() {
487
 
488
- $name = mycred_label( true );
489
-
490
  parent::__construct(
491
  'mycred_widget_wallet',
492
- sprintf( __( '(%s) Wallet', 'mycred' ), $name ),
493
  array(
494
  'classname' => 'widget-my-wallet',
495
- 'description' => __( 'Shows the current users balances for each point type.', 'mycred' )
496
  )
497
  );
498
 
@@ -520,8 +497,6 @@ if ( ! class_exists( 'myCRED_Widget_Wallet' ) ) :
520
  // Excluded users have no balance(s)
521
  if ( empty( $account->balance ) || empty( $instance['types'] ) ) return;
522
 
523
- $current_user = wp_get_current_user();
524
-
525
  // Start
526
  echo $before_widget;
527
 
@@ -529,6 +504,8 @@ if ( ! class_exists( 'myCRED_Widget_Wallet' ) ) :
529
  if ( ! empty( $instance['title'] ) )
530
  echo $before_title . $instance['title'] . $after_title;
531
 
 
 
532
  // Loop through balances
533
  foreach ( $account->balance as $point_type_id => $balance ) {
534
 
@@ -541,7 +518,7 @@ if ( ! class_exists( 'myCRED_Widget_Wallet' ) ) :
541
  $layout = $point_type->template_tags_user( $layout, false, $current_user );
542
  $layout = str_replace( '%label%', $account->point_types[ $point_type_id ], $layout );
543
 
544
- echo '<div class="myCRED-balance ' . esc_attr( $point_type_id ) . '">' . $layout . '</div>';
545
 
546
  }
547
 
@@ -562,7 +539,7 @@ if ( ! class_exists( 'myCRED_Widget_Wallet' ) ) :
562
  $message = $instance['message'];
563
  $message = $mycred->template_tags_general( $message );
564
 
565
- echo '<div class="myCRED-wallet-message"><p>' . nl2br( $message ) . '</p></div>';
566
 
567
  echo $after_widget;
568
 
@@ -575,14 +552,14 @@ if ( ! class_exists( 'myCRED_Widget_Wallet' ) ) :
575
  */
576
  public function form( $instance ) {
577
 
578
- $mycred = mycred();
579
 
580
  // Defaults
581
- $title = isset( $instance['title'] ) ? esc_attr( $instance['title'] ) : 'My Wallet';
582
- $types = isset( $instance['types'] ) ? $instance['types'] : array();
583
- $row_template = isset( $instance['row'] ) ? $instance['row'] : '%label%: %cred_f%';
584
  $show_visitors = isset( $instance['show_visitors'] ) ? $instance['show_visitors'] : 0;
585
- $message = isset( $instance['message'] ) ? esc_attr( $instance['message'] ) : '<a href="%login_url_here%">Login</a> to view your balance.';
586
 
587
  ?>
588
  <!-- Widget Options -->
@@ -600,18 +577,31 @@ if ( ! class_exists( 'myCRED_Widget_Wallet' ) ) :
600
  <!-- Row layout -->
601
  <p class="myCRED-widget-field">
602
  <label for="<?php echo esc_attr( $this->get_field_id( 'row' ) ); ?>"><?php _e( 'Row Layout', 'mycred' ); ?>:</label>
603
- <input id="<?php echo esc_attr( $this->get_field_id( 'row' ) ); ?>" name="<?php echo esc_attr( $this->get_field_name( 'row' ) ); ?>" type="text" value="<?php echo esc_attr( $row_template ); ?>" class="widefat" /><br />
604
  <small><?php echo $mycred->available_template_tags( array( 'general', 'amount' ) ); ?></small>
605
  </p>
606
 
607
  <!-- Show to Visitors -->
608
  <p class="myCRED-widget-field">
609
- <input type="checkbox" name="<?php echo esc_attr( $this->get_field_name( 'show_visitors' ) ); ?>" id="<?php echo esc_attr( $this->get_field_id( 'show_visitors' ) ); ?>" value="1"<?php checked( $show_visitors, 1 ); ?> class="checkbox" />
610
- <label for="<?php echo esc_attr( $this->get_field_id( 'show_visitors' ) ); ?>"><?php _e( 'Show message when not logged in', 'mycred' ); ?></label><br />
611
- <label for="<?php echo esc_attr( $this->get_field_id( 'message' ) ); ?>"><?php _e( 'Message', 'mycred' ); ?>:</label><br />
612
- <textarea class="widefat" id="<?php echo esc_attr( $this->get_field_id( 'message' ) ); ?>" name="<?php echo esc_attr( $this->get_field_name( 'message' ) ); ?>"><?php echo $message; ?></textarea><br />
613
- <small><?php echo $mycred->available_template_tags( array( 'general', 'amount' ) ); ?></small>
614
  </p>
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
615
  <?php
616
 
617
  }
@@ -621,16 +611,13 @@ if ( ! class_exists( 'myCRED_Widget_Wallet' ) ) :
621
  */
622
  public function update( $new_instance, $old_instance ) {
623
 
624
- global $mycred;
625
 
626
- $instance = $old_instance;
627
- $allowed = $mycred->allowed_html_tags();
628
-
629
- $instance['title'] = wp_kses( $new_instance['title'], $allowed );
630
  $instance['types'] = (array) $new_instance['types'];
631
- $instance['row'] = wp_kses( $new_instance['row'], $allowed );
632
  $instance['show_visitors'] = ( isset( $new_instance['show_visitors'] ) ) ? 1 : 0;
633
- $instance['message'] = wp_kses( $new_instance['message'], $allowed );
634
 
635
  mycred_flush_widget_cache( 'mycred_widget_wallet' );
636
 
4
  /**
5
  * Widget: myCRED Balance
6
  * @since 0.1
7
+ * @version 1.4.3
8
  */
9
  if ( ! class_exists( 'myCRED_Widget_Balance' ) ) :
10
  class myCRED_Widget_Balance extends WP_Widget {
14
  */
15
  public function __construct() {
16
 
 
 
17
  parent::__construct(
18
  'mycred_widget_balance',
19
+ sprintf( __( '(%s) My Balance', 'mycred' ), mycred_label( true ) ),
20
  array(
21
  'classname' => 'widget-my-cred',
22
+ 'description' => __( 'Show the current users balance and history.', 'mycred' )
23
  )
24
  );
25
 
60
  $layout = $mycred->template_tags_amount( $instance['cred_format'], $balance->current );
61
  $layout = $mycred->template_tags_user( $layout, false, wp_get_current_user() );
62
 
63
+ echo '<div class="myCRED-balance ' . esc_attr( $instance['type'] ) . '">' . do_shortcode( $layout ) . '</div>';
64
 
65
  // If we want to include history
66
  if ( $instance['show_history'] ) {
78
  if ( $log->have_entries() ) {
79
 
80
  // Title
81
+ if ( ! empty( $instance['history_title'] ) )
82
+ echo $before_title . $mycred->template_tags_general( $instance['history_title'] ) . $after_title;
 
 
83
 
84
  // Organized List
85
  echo '<ol class="myCRED-history">';
86
+ $alt = 0;
87
  $date_format = get_option( 'date_format' );
88
  foreach ( $log->results as $entry ) {
89
 
90
  // Row Layout
91
  $layout = $instance['history_format'];
92
+
93
  $layout = str_replace( '%date%', '<span class="date">' . date( $date_format, $entry->time ) . '</span>', $layout );
94
  $layout = str_replace( '%entry%', $mycred->parse_template_tags( $entry->entry, $entry ), $layout );
95
 
 
96
  $layout = $mycred->template_tags_amount( $layout, $entry->creds );
97
 
98
  // Alternating rows
151
  public function form( $instance ) {
152
 
153
  // Defaults
154
+ $title = isset( $instance['title'] ) ? $instance['title'] : 'My Balance';
155
+ $type = isset( $instance['type'] ) ? $instance['type'] : MYCRED_DEFAULT_TYPE_KEY;
156
+ $cred_format = isset( $instance['cred_format'] ) ? $instance['cred_format'] : '%cred_f%';
157
+ $show_history = isset( $instance['show_history'] ) ? $instance['show_history'] : 0;
158
+ $history_title = isset( $instance['history_title'] ) ? $instance['history_title'] : '%plural% History';
159
+ $history_entry = isset( $instance['history_format'] ) ? $instance['history_format'] : '%entry% <span class="creds">%cred_f%</span>';
160
+ $history_length = isset( $instance['number'] ) ? $instance['number'] : 5;
161
+ $show_visitors = isset( $instance['show_visitors'] ) ? $instance['show_visitors'] : 0;
162
+ $message = isset( $instance['message'] ) ? $instance['message'] : '<a href="%login_url_here%">Login</a> to view your balance.';
163
+
164
+ $mycred = mycred( $type );
165
+ $mycred_types = mycred_get_types();
 
 
 
 
 
 
 
 
166
 
167
  ?>
168
  <!-- Widget Admin Styling -->
169
  <style type="text/css">
170
+ div.mycred-hidden { display: none; }
171
+ div.mycred-hidden.ex-field { display: block; }
 
172
  </style>
173
 
174
  <!-- Widget Options -->
189
 
190
  <!-- Balance layout -->
191
  <p class="myCRED-widget-field">
192
+ <label for="<?php echo esc_attr( $this->get_field_id( 'cred_format' ) ); ?>"><?php _e( 'Balance Layout', 'mycred' ); ?>:</label>
193
+ <textarea name="<?php echo esc_attr( $this->get_field_name( 'cred_format' ) ); ?>" id="<?php echo esc_attr( $this->get_field_id( 'cred_format' ) ); ?>" rows="3" cols="20" class="widefat"><?php echo esc_attr( $cred_format ); ?></textarea>
194
  <small><?php echo $mycred->available_template_tags( array( 'general', 'amount', 'user' ) ); ?></small>
195
  </p>
196
 
197
  <!-- History -->
198
  <p class="myCRED-widget-field">
199
+ <label for="<?php echo esc_attr( $this->get_field_id( 'show_history' ) ); ?>"><input type="checkbox" name="<?php echo esc_attr( $this->get_field_name( 'show_history' ) ); ?>" id="<?php echo esc_attr( $this->get_field_id( 'show_history' ) ); ?>" value="1"<?php checked( $show_history, 1 ); ?> class="checkbox" /> <?php _e( 'Include history', 'mycred' ); ?></label>
200
+ </p>
201
+ <div id="<?php echo esc_attr( $this->get_field_id( 'show_history' ) ); ?>-details" class="mycred-hidden<?php if ( $show_history == 1 ) echo ' ex-field'; ?>">
202
+ <p class="myCRED-widget-field">
203
  <label for="<?php echo esc_attr( $this->get_field_id( 'history_title' ) ); ?>"><?php _e( 'History Title', 'mycred' ); ?>:</label>
204
  <input id="<?php echo esc_attr( $this->get_field_id( 'history_title' ) ); ?>" name="<?php echo esc_attr( $this->get_field_name( 'history_title' ) ); ?>" type="text" value="<?php echo esc_attr( $history_title ); ?>" class="widefat" />
205
+ </p>
206
+ <p class="myCRED-widget-field">
207
  <label for="<?php echo esc_attr( $this->get_field_id( 'number' ) ); ?>"><?php _e( 'Number of entires', 'mycred' ); ?>:</label>
208
+ <input id="<?php echo esc_attr( $this->get_field_id( 'number' ) ); ?>" name="<?php echo esc_attr( $this->get_field_name( 'number' ) ); ?>" type="text" value="<?php echo absint( $history_length ); ?>" size="3" class="widefat" /><br />
209
+ </p>
210
+ <p class="myCRED-widget-field">
211
  <label for="<?php echo esc_attr( $this->get_field_id( 'history_format' ) ); ?>"><?php _e( 'Row layout', 'mycred' ); ?>:</label>
212
+ <textarea name="<?php echo esc_attr( $this->get_field_name( 'history_format' ) ); ?>" id="<?php echo esc_attr( $this->get_field_id( 'history_format' ) ); ?>" rows="3" cols="20" class="widefat"><?php echo esc_attr( $history_entry ); ?></textarea>
213
  <small><?php echo $mycred->available_template_tags( array( 'general', 'widget' ) ); ?></small>
214
+ </p>
215
+ </div>
216
  <!-- Show to Visitors -->
217
  <p class="myCRED-widget-field">
218
+ <label for="<?php echo esc_attr( $this->get_field_id( 'show_visitors' ) ); ?>"><input type="checkbox" name="<?php echo esc_attr( $this->get_field_name( 'show_visitors' ) ); ?>" id="<?php echo esc_attr( $this->get_field_id( 'show_visitors' ) ); ?>" value="1"<?php checked( $show_visitors, 1 ); ?> class="checkbox" /> <?php _e( 'Show message when not logged in', 'mycred' ); ?></label>
 
 
 
 
 
 
219
  </p>
220
+ <div id="<?php echo esc_attr( $this->get_field_id( 'show_visitors' ) ); ?>-details" class="mycred-hidden<?php if ( $show_visitors == 1 ) echo ' ex-field'; ?>">
221
+ <p class="myCRED-widget-field">
222
+ <label for="<?php echo esc_attr( $this->get_field_id( 'message' ) ); ?>"><?php _e( 'Message', 'mycred' ); ?>:</label>
223
+ <textarea name="<?php echo esc_attr( $this->get_field_name( 'message' ) ); ?>" id="<?php echo esc_attr( $this->get_field_id( 'message' ) ); ?>" rows="3" cols="20" class="widefat"><?php echo esc_attr( $message ); ?></textarea>
224
+ <small><?php echo $mycred->available_template_tags( array( 'general', 'amount' ) ); ?></small>
225
+ </p>
226
+ </div>
227
  <!-- Widget Admin Scripting -->
228
  <script type="text/javascript">//<![CDATA[
229
  jQuery(function($) {
 
 
 
 
 
 
 
 
 
230
 
231
+ $( '#<?php echo esc_attr( $this->get_field_id( 'show_history' ) ); ?>, #<?php echo esc_attr( $this->get_field_id( 'show_visitors' ) ); ?>' ).change(function(){
232
+ $( '#' + $(this).attr( 'id' ) + '-details' ).toggleClass( 'ex-field' );
233
  });
234
+
235
  });//]]>
236
  </script>
237
  <?php
243
  */
244
  public function update( $new_instance, $old_instance ) {
245
 
246
+ $instance = $old_instance;
 
 
 
247
 
248
+ $instance['title'] = wp_kses_post( $new_instance['title'] );
249
  $instance['type'] = sanitize_text_field( $new_instance['type'] );
250
+ $instance['cred_format'] = wp_kses_post( $new_instance['cred_format'] );
251
  $instance['show_history'] = ( isset( $new_instance['show_history'] ) ) ? 1 : 0;
252
+ $instance['history_title'] = wp_kses_post( $new_instance['history_title'] );
253
+ $instance['history_format'] = wp_kses_post( $new_instance['history_format'] );
254
  $instance['number'] = absint( $new_instance['number'] );
255
  $instance['show_visitors'] = ( isset( $new_instance['show_visitors'] ) ) ? 1 : 0;
256
+ $instance['message'] = wp_kses_post( $new_instance['message'] );
257
 
258
  mycred_flush_widget_cache( 'mycred_widget_balance' );
259
+
260
  return $instance;
261
 
262
  }
267
  /**
268
  * Widget: Leaderboard
269
  * @since 0.1
270
+ * @version 1.3.2
271
  */
272
  if ( ! class_exists( 'myCRED_Widget_Leaderboard' ) ) :
273
  class myCRED_Widget_Leaderboard extends WP_Widget {
277
  */
278
  public function __construct() {
279
 
 
 
280
  parent::__construct(
281
  'mycred_widget_list',
282
+ sprintf( __( '(%s) Leaderboard', 'mycred' ), mycred_label( true ) ),
283
  array(
284
  'classname' => 'widget-mycred-list',
285
+ 'description' => __( 'Leaderboard based on instances or balances.', 'mycred' )
286
  )
287
  );
288
 
323
  echo $before_widget;
324
 
325
  // Title
326
+ if ( ! empty( $instance['title'] ) )
327
+ echo $before_title . $mycred->template_tags_general( $instance['title'] ) . $after_title;
 
 
 
328
 
329
  echo mycred_render_shortcode_leaderboard( $args );
330
 
339
  public function form( $instance ) {
340
 
341
  // Defaults
342
+ $title = isset( $instance['title'] ) ? $instance['title'] : 'Leaderboard';
343
+ $type = isset( $instance['type'] ) ? $instance['type'] : MYCRED_DEFAULT_TYPE_KEY;
344
+ $based_on = isset( $instance['based_on'] ) ? $instance['based_on'] : 'balance';
345
 
346
+ $number = isset( $instance['number'] ) ? $instance['number'] : 5;
347
  $show_visitors = isset( $instance['show_visitors'] ) ? $instance['show_visitors'] : 0;
348
+ $text = isset( $instance['text'] ) ? $instance['text'] : '#%position% %user_profile_link% %cred_f%';
349
+ $offset = isset( $instance['offset'] ) ? $instance['offset'] : 0;
350
+ $order = isset( $instance['order'] ) ? $instance['order'] : 'DESC';
351
+ $current = isset( $instance['current'] ) ? $instance['current'] : 0;
352
+ $timeframe = isset( $instance['timeframe'] ) ? $instance['timeframe'] : '';
353
 
354
+ $mycred = mycred( $type );
355
+ $mycred_types = mycred_get_types();
356
 
357
  ?>
358
  <p class="myCRED-widget-field">
359
  <label for="<?php echo esc_attr( $this->get_field_id( 'title' ) ); ?>"><?php _e( 'Title', 'mycred' ); ?>:</label>
360
+ <input id="<?php echo esc_attr( $this->get_field_id( 'title' ) ); ?>" name="<?php echo esc_attr( $this->get_field_name( 'title' ) ); ?>" type="text" value="<?php echo esc_attr( $title ); ?>" class="widefat" />
361
  </p>
362
 
363
  <?php if ( count( $mycred_types ) > 1 ) : ?>
371
 
372
  <p class="myCRED-widget-field">
373
  <label for="<?php echo esc_attr( $this->get_field_id( 'based_on' ) ); ?>"><?php _e( 'Based On', 'mycred' ); ?>:</label>
374
+ <input id="<?php echo esc_attr( $this->get_field_id( 'based_on' ) ); ?>" name="<?php echo esc_attr( $this->get_field_name( 'based_on' ) ); ?>" type="text" value="<?php echo esc_attr( $based_on ); ?>" class="widefat" />
375
+ <small><?php _e( 'Use "balance" to base the leaderboard on your users current balances or use a specific reference.', 'mycred' ); ?> <a href="http://codex.mycred.me/chapter-vi/log-references/" target="_blank"><?php _e( 'Reference Guide', 'mycred' ); ?></a></small>
376
  </p>
377
 
378
  <p class="myCRED-widget-field">
379
+ <label for="<?php echo esc_attr( $this->get_field_id( 'show_visitors' ) ); ?>"><input type="checkbox" name="<?php echo esc_attr( $this->get_field_name( 'show_visitors' ) ); ?>" id="<?php echo esc_attr( $this->get_field_id( 'show_visitors' ) ); ?>" value="1"<?php checked( $show_visitors, 1 ); ?> class="checkbox" /> <?php _e( 'Visible to non-members', 'mycred' ); ?></label>
380
+ </p>
381
  <p class="myCRED-widget-field">
382
  <label for="<?php echo esc_attr( $this->get_field_id( 'number' ) ); ?>"><?php _e( 'Number of users', 'mycred' ); ?>:</label>
383
+ <input id="<?php echo esc_attr( $this->get_field_id( 'number' ) ); ?>" name="<?php echo esc_attr( $this->get_field_name( 'number' ) ); ?>" type="text" value="<?php echo absint( $number ); ?>" size="3" class="widefat" />
384
  </p>
385
  <p class="myCRED-widget-field">
386
  <label for="<?php echo esc_attr( $this->get_field_id( 'text' ) ); ?>"><?php _e( 'Row layout', 'mycred' ); ?>:</label>
387
+ <textarea name="<?php echo esc_attr( $this->get_field_name( 'text' ) ); ?>" id="<?php echo esc_attr( $this->get_field_id( 'text' ) ); ?>" rows="3" cols="20" class="widefat"><?php echo esc_attr( $text ); ?></textarea>
388
  <small><?php echo $mycred->available_template_tags( array( 'general', 'balance' ) ); ?></small>
389
  </p>
390
  <p class="myCRED-widget-field">
391
  <label for="<?php echo esc_attr( $this->get_field_id( 'offset' ) ); ?>"><?php _e( 'Offset', 'mycred' ); ?>:</label>
392
+ <input id="<?php echo esc_attr( $this->get_field_id( 'offset' ) ); ?>" name="<?php echo esc_attr( $this->get_field_name( 'offset' ) ); ?>" type="text" value="<?php echo absint( $offset ); ?>" size="3" class="widefat" />
393
  <small><?php _e( 'Optional offset of order. Use zero to return the first in the list.', 'mycred' ); ?></small>
394
  </p>
395
  <p class="myCRED-widget-field">
398
  <?php
399
 
400
  $options = array(
401
+ 'ASC' => __( 'Ascending', 'mycred' ),
402
  'DESC' => __( 'Descending', 'mycred' )
403
  );
404
 
412
  </select>
413
  </p>
414
  <p class="myCRED-widget-field">
415
+ <label for="<?php echo esc_attr( $this->get_field_id( 'current' ) ); ?>"><input type="checkbox" name="<?php echo esc_attr( $this->get_field_name( 'current' ) ); ?>" id="<?php echo esc_attr( $this->get_field_id( 'current' ) ); ?>" value="1"<?php checked( $current, 1 ); ?> class="checkbox" /> <?php _e( 'Append current users position', 'mycred' ); ?></label><br />
 
416
  <small><?php _e( 'If the current user is not in this leaderboard, you can select to append them at the end with their current position.', 'mycred' ); ?></small>
417
  </p>
418
  <p class="myCRED-widget-field">
419
  <label for="<?php echo esc_attr( $this->get_field_id( 'timeframe' ) ); ?>"><?php _e( 'Timeframe', 'mycred' ); ?>:</label>
420
+ <input id="<?php echo esc_attr( $this->get_field_id( 'timeframe' ) ); ?>" name="<?php echo esc_attr( $this->get_field_name( 'timeframe' ) ); ?>" type="text" value="<?php echo $timeframe; ?>" size="3" class="widefat" />
421
  <small><?php _e( 'Option to limit the leaderboard based on a specific timeframe. Leave empty if not used.', 'mycred' ); ?></small>
422
  </p>
423
  <?php
429
  */
430
  public function update( $new_instance, $old_instance ) {
431
 
432
+ $instance = $old_instance;
433
 
434
  $instance['number'] = absint( $new_instance['number'] );
435
  $instance['title'] = wp_kses_post( $new_instance['title'] );
436
  $instance['type'] = sanitize_key( $new_instance['type'] );
437
  $instance['based_on'] = sanitize_key( $new_instance['based_on'] );
438
+ $instance['show_visitors'] = ( isset( $new_instance['show_visitors'] ) ) ? 1 : 0;
439
  $instance['text'] = wp_kses_post( $new_instance['text'] );
440
  $instance['offset'] = sanitize_text_field( $new_instance['offset'] );
441
  $instance['order'] = sanitize_text_field( $new_instance['order'] );
442
+ $instance['current'] = ( isset( $new_instance['current'] ) ) ? 1 : 0;
443
  $instance['timeframe'] = sanitize_text_field( $new_instance['timeframe'] );
444
 
445
  mycred_flush_widget_cache( 'mycred_widget_list' );
454
  /**
455
  * Widget: myCRED Wallet
456
  * @since 1.4
457
+ * @version 1.2
458
  */
459
  if ( ! class_exists( 'myCRED_Widget_Wallet' ) ) :
460
  class myCRED_Widget_Wallet extends WP_Widget {
464
  */
465
  public function __construct() {
466
 
 
 
467
  parent::__construct(
468
  'mycred_widget_wallet',
469
+ sprintf( __( '(%s) Wallet', 'mycred' ), mycred_label( true ) ),
470
  array(
471
  'classname' => 'widget-my-wallet',
472
+ 'description' => __( 'Shows multiple balances.', 'mycred' )
473
  )
474
  );
475
 
497
  // Excluded users have no balance(s)
498
  if ( empty( $account->balance ) || empty( $instance['types'] ) ) return;
499
 
 
 
500
  // Start
501
  echo $before_widget;
502
 
504
  if ( ! empty( $instance['title'] ) )
505
  echo $before_title . $instance['title'] . $after_title;
506
 
507
+ $current_user = wp_get_current_user();
508
+
509
  // Loop through balances
510
  foreach ( $account->balance as $point_type_id => $balance ) {
511
 
518
  $layout = $point_type->template_tags_user( $layout, false, $current_user );
519
  $layout = str_replace( '%label%', $account->point_types[ $point_type_id ], $layout );
520
 
521
+ echo '<div class="myCRED-balance mycred-balance-' . esc_attr( $point_type_id ) . '">' . do_shortcode( $layout ) . '</div>';
522
 
523
  }
524
 
539
  $message = $instance['message'];
540
  $message = $mycred->template_tags_general( $message );
541
 
542
+ echo '<div class="myCRED-wallet-message"><p>' . wptexturize( $message ) . '</p></div>';
543
 
544
  echo $after_widget;
545
 
552
  */
553
  public function form( $instance ) {
554
 
555
+ $mycred = mycred();
556
 
557
  // Defaults
558
+ $title = isset( $instance['title'] ) ? $instance['title'] : 'My Wallet';
559
+ $types = isset( $instance['types'] ) ? $instance['types'] : array();
560
+ $row_template = isset( $instance['row'] ) ? $instance['row'] : '%label%: %cred_f%';
561
  $show_visitors = isset( $instance['show_visitors'] ) ? $instance['show_visitors'] : 0;
562
+ $message = isset( $instance['message'] ) ? $instance['message'] : '<a href="%login_url_here%">Login</a> to view your balance.';
563
 
564
  ?>
565
  <!-- Widget Options -->
577
  <!-- Row layout -->
578
  <p class="myCRED-widget-field">
579
  <label for="<?php echo esc_attr( $this->get_field_id( 'row' ) ); ?>"><?php _e( 'Row Layout', 'mycred' ); ?>:</label>
580
+ <textarea name="<?php echo esc_attr( $this->get_field_name( 'row' ) ); ?>" id="<?php echo esc_attr( $this->get_field_id( 'row' ) ); ?>" rows="3" cols="20" class="widefat"><?php echo esc_attr( $row_template ); ?></textarea>
581
  <small><?php echo $mycred->available_template_tags( array( 'general', 'amount' ) ); ?></small>
582
  </p>
583
 
584
  <!-- Show to Visitors -->
585
  <p class="myCRED-widget-field">
586
+ <label for="<?php echo esc_attr( $this->get_field_id( 'show_visitors' ) ); ?>"><input type="checkbox" name="<?php echo esc_attr( $this->get_field_name( 'show_visitors' ) ); ?>" id="<?php echo esc_attr( $this->get_field_id( 'show_visitors' ) ); ?>" value="1"<?php checked( $show_visitors, 1 ); ?> class="checkbox" /> <?php _e( 'Show message when not logged in', 'mycred' ); ?></label>
 
 
 
 
587
  </p>
588
+ <div id="<?php echo esc_attr( $this->get_field_id( 'show_visitors' ) ); ?>-details" class="mycred-hidden<?php if ( $show_visitors == 1 ) echo ' ex-field'; ?>">
589
+ <p class="myCRED-widget-field">
590
+ <label for="<?php echo esc_attr( $this->get_field_id( 'message' ) ); ?>"><?php _e( 'Message', 'mycred' ); ?>:</label>
591
+ <textarea name="<?php echo esc_attr( $this->get_field_name( 'message' ) ); ?>" id="<?php echo esc_attr( $this->get_field_id( 'message' ) ); ?>" rows="3" cols="20" class="widefat"><?php echo esc_attr( $message ); ?></textarea>
592
+ <small><?php echo $mycred->available_template_tags( array( 'general', 'amount' ) ); ?></small>
593
+ </p>
594
+ </div>
595
+ <!-- Widget Admin Scripting -->
596
+ <script type="text/javascript">//<![CDATA[
597
+ jQuery(function($) {
598
+
599
+ $( '#<?php echo esc_attr( $this->get_field_id( 'show_visitors' ) ); ?>' ).change(function(){
600
+ $( '#' + $(this).attr( 'id' ) + '-details' ).toggleClass( 'ex-field' );
601
+ });
602
+
603
+ });//]]>
604
+ </script>
605
  <?php
606
 
607
  }
611
  */
612
  public function update( $new_instance, $old_instance ) {
613
 
614
+ $instance = $old_instance;
615
 
616
+ $instance['title'] = wp_kses_post( $new_instance['title'] );
 
 
 
617
  $instance['types'] = (array) $new_instance['types'];
618
+ $instance['row'] = wp_kses_post( $new_instance['row'] );
619
  $instance['show_visitors'] = ( isset( $new_instance['show_visitors'] ) ) ? 1 : 0;
620
+ $instance['message'] = wp_kses_post( $new_instance['message'] );
621
 
622
  mycred_flush_widget_cache( 'mycred_widget_wallet' );
623
 
includes/shortcodes/mycred_history.php CHANGED
@@ -6,7 +6,7 @@ if ( ! defined( 'myCRED_VERSION' ) ) exit;
6
  * Returns the points history.
7
  * @see http://codex.mycred.me/shortcodes/mycred_history/
8
  * @since 1.0.9
9
- * @version 1.3
10
  */
11
  if ( ! function_exists( 'mycred_render_shortcode_history' ) ) :
12
  function mycred_render_shortcode_history( $atts, $content = '' ) {
@@ -52,13 +52,19 @@ if ( ! function_exists( 'mycred_render_shortcode_history' ) ) :
52
  if ( $order != '' )
53
  $args['order'] = $order;
54
 
55
- if ( isset( $_GET['paged'] ) && $_GET['paged'] != '' )
56
- $args['paged'] = absint( $_GET['paged'] );
57
 
58
- elseif ( isset( $_GET['page'] ) && $_GET['page'] != '' )
59
- $args['paged'] = absint( $_GET['page'] );
 
 
 
 
60
 
61
- $log = new myCRED_Query_Log( apply_filters( 'mycred_front_history_args', $args, $atts ) );
 
 
 
62
 
63
  ob_start();
64
 
6
  * Returns the points history.
7
  * @see http://codex.mycred.me/shortcodes/mycred_history/
8
  * @since 1.0.9
9
+ * @version 1.3.2
10
  */
11
  if ( ! function_exists( 'mycred_render_shortcode_history' ) ) :
12
  function mycred_render_shortcode_history( $atts, $content = '' ) {
52
  if ( $order != '' )
53
  $args['order'] = $order;
54
 
55
+ $log = new myCRED_Query_Log( apply_filters( 'mycred_front_history_args', $args, $atts ) );
 
56
 
57
+ $columns = array(
58
+ 'username' => __( 'User', 'mycred' ),
59
+ 'time' => __( 'Date', 'mycred' ),
60
+ 'creds' => $log->core->plural(),
61
+ 'entry' => __( 'Entry', 'mycred' )
62
+ );
63
 
64
+ if ( $show_user == 0 )
65
+ unset( $columns['username'] );
66
+
67
+ $log->headers = $columns;
68
 
69
  ob_start();
70
 
includes/shortcodes/mycred_leaderboard.php CHANGED
@@ -5,7 +5,7 @@ if ( ! defined( 'myCRED_VERSION' ) ) exit;
5
  * myCRED Shortcode: mycred_leaderboard
6
  * @see http://codex.mycred.me/shortcodes/mycred_leaderboard/
7
  * @since 0.1
8
- * @version 1.5
9
  */
10
  if ( ! function_exists( 'mycred_render_shortcode_leaderboard' ) ) :
11
  function mycred_render_shortcode_leaderboard( $atts, $content = '' ) {
@@ -179,11 +179,12 @@ if ( ! function_exists( 'mycred_render_shortcode_leaderboard' ) ) :
179
  if ( $position % 2 != 0 )
180
  $class[] = 'alt';
181
 
 
182
  if ( ! empty( $content ) )
183
- $template = $content;
184
 
185
  // Template Tags
186
- $layout = str_replace( array( '%ranking%', '%position%' ), $position+1, $template );
187
 
188
  $layout = $mycred->template_tags_amount( $layout, $user['cred'] );
189
  $layout = $mycred->template_tags_user( $layout, $user['ID'] );
@@ -208,11 +209,16 @@ if ( ! function_exists( 'mycred_render_shortcode_leaderboard' ) ) :
208
  $current_position = mycred_render_shortcode_leaderbaord_position( array(
209
  'based_on' => $based_on,
210
  'user_id' => 'current',
211
- 'timeframe' => $timeframe
 
212
  ), $content );
213
 
 
 
 
 
214
  // Template Tags
215
- $layout = str_replace( array( '%ranking%', '%position%' ), $current_position, $template );
216
 
217
  $layout = $mycred->template_tags_amount( $layout, $mycred->get_users_balance( $current_user->ID, $type ) );
218
  $layout = $mycred->template_tags_user( $layout, false, $current_user );
5
  * myCRED Shortcode: mycred_leaderboard
6
  * @see http://codex.mycred.me/shortcodes/mycred_leaderboard/
7
  * @since 0.1
8
+ * @version 1.5.1
9
  */
10
  if ( ! function_exists( 'mycred_render_shortcode_leaderboard' ) ) :
11
  function mycred_render_shortcode_leaderboard( $atts, $content = '' ) {
179
  if ( $position % 2 != 0 )
180
  $class[] = 'alt';
181
 
182
+ $row_template = $template;
183
  if ( ! empty( $content ) )
184
+ $row_template = $content;
185
 
186
  // Template Tags
187
+ $layout = str_replace( array( '%ranking%', '%position%' ), $position+1, $row_template );
188
 
189
  $layout = $mycred->template_tags_amount( $layout, $user['cred'] );
190
  $layout = $mycred->template_tags_user( $layout, $user['ID'] );
209
  $current_position = mycred_render_shortcode_leaderbaord_position( array(
210
  'based_on' => $based_on,
211
  'user_id' => 'current',
212
+ 'timeframe' => $timeframe,
213
+ 'ctype' => $type
214
  ), $content );
215
 
216
+ $row_template = $template;
217
+ if ( ! empty( $content ) )
218
+ $row_template = $content;
219
+
220
  // Template Tags
221
+ $layout = str_replace( array( '%ranking%', '%position%' ), $current_position, $row_template );
222
 
223
  $layout = $mycred->template_tags_amount( $layout, $mycred->get_users_balance( $current_user->ID, $type ) );
224
  $layout = $mycred->template_tags_user( $layout, false, $current_user );
lang/mycred-en_US.mo CHANGED
Binary file
lang/mycred-en_US.po CHANGED
@@ -1,6961 +1,6287 @@
1
- msgid ""
2
- msgstr ""
3
- "Project-Id-Version: myCRED\n"
4
- "Report-Msgid-Bugs-To: http://mycred.me\n"
5
- "POT-Creation-Date: 2014-03-20 14:26+0100\n"
6
- "PO-Revision-Date: Fri Aug 12 2016 19:23:22 GMT+0200 (CEST)\n"
7
- "Last-Translator: mycreddemo <gabriel.s@merovingi.com>\n"
8
- "Language-Team: myCRED & All the awesome users helping out <support@mycred."
9
- "me>\n"
10
- "Language: English\n"
11
- "Plural-Forms: nplurals=2; plural=n != 1\n"
12
- "MIME-Version: 1.0\n"
13
- "Content-Type: text/plain; charset=UTF-8\n"
14
- "Content-Transfer-Encoding: 8bit\n"
15
- "X-Poedit-SourceCharset: UTF-8\n"
16
- "X-Generator: Loco - https://localise.biz/\n"
17
- "X-Poedit-Basepath: .\n"
18
- "X-Poedit-KeywordsList: _:1;gettext:1;dgettext:2;ngettext:1,2;dngettext:2,3;"
19
- "__:1;_e:1;_c:1;_n:1,2;_n_noop:1,2;_nc:1,2;__ngettext:1,2;__ngettext_noop:1,2;"
20
- "_x:1,2c;_ex:1,2c;_nx:1,2,4c;_nx_noop:1,2,3c;_n_js:1,2;_nx_js:1,2,3c;"
21
- "esc_attr__:1;esc_html__:1;esc_attr_e:1;esc_html_e:1;esc_attr_x:1,2c;"
22
- "esc_html_x:1,2c;comments_number_link:2,3;t:1;st:1;trans:1;transChoice:1,2\n"
23
- "X-Poedit-SearchPath-0: /Users/gabriel/Sites/paypana/wp-"
24
- "content/plugins/mycred\n"
25
- "X-Poedit-SearchPath-1: .\n"
26
- "X-Loco-Target-Locale: en_US"
27
-
28
- #: ../abstracts/mycred-abstract-hook.php:90
29
- msgid "This Hook has no settings"
30
- msgstr ""
31
-
32
- #: ../abstracts/mycred-abstract-hook.php:283 ../abstracts/mycred-abstract-hook.
33
- #: php:354 ../modules/mycred-module-hooks.php:2401 ../includes/mycred-functions.
34
- #: php:2563
35
- msgid "No limit"
36
- msgstr ""
37
-
38
- #: ../abstracts/mycred-abstract-hook.php:284
39
- msgid "/ Day"
40
- msgstr ""
41
-
42
- #: ../abstracts/mycred-abstract-hook.php:285
43
- msgid "/ Week"
44
- msgstr ""
45
-
46
- #: ../abstracts/mycred-abstract-hook.php:286
47
- msgid "/ Month"
48
- msgstr ""
49
-
50
- #: ../abstracts/mycred-abstract-hook.php:287
51
- msgid "in Total"
52
- msgstr ""
53
-
54
- #: ../abstracts/mycred-abstract-hook.php:355
55
- msgid "Once every 24 hours"
56
- msgstr ""
57
-
58
- #: ../abstracts/mycred-abstract-hook.php:356
59
- msgid "Once every 7 days"
60
- msgstr ""
61
-
62
- #: ../abstracts/mycred-abstract-hook.php:357
63
- msgid "Once per day (reset at midnight)"
64
- msgstr ""
65
-
66
- #: ../abstracts/mycred-abstract-hook.php:364 ../addons/banking/abstracts/mycred-
67
- #: abstract-service.php:351 ../addons/email-notices/myCRED-addon-email-notices.
68
- #: php:527 ../addons/email-notices/myCRED-addon-email-notices.php:859 ..
69
- #: addons/badges/myCRED-addon-badges.php:880 ../addons/buy-
70
- #: creds/abstracts/mycred-abstract-payment-gateway.php:1102 ../addons/buy-
71
- #: creds/abstracts/mycred-abstract-payment-gateway.php:1127 ../addons/buy-
72
- #: creds/modules/buycred-module-core.php:356 ../addons/buy-creds/modules/buycred-
73
- #: module-core.php:379 ../addons/buy-creds/gateways/zombaio.php:358
74
- msgid "Select"
75
- msgstr ""
76
-
77
- #: ../abstracts/mycred-abstract-module.php:400 ../abstracts/mycred-abstract-
78
- #: module.php:410
79
- msgid "Surprise"
80
- msgstr ""
81
-
82
- #: ../abstracts/mycred-abstract-module.php:528 ../modules/mycred-module-network.
83
- #: php:98
84
- msgid "click to close"
85
- msgstr ""
86
-
87
- #: ../abstracts/mycred-abstract-module.php:529 ../modules/mycred-module-network.
88
- #: php:99
89
- msgid "click to open"
90
- msgstr ""
91
-
92
- #: ../abstracts/mycred-abstract-module.php:562 ../modules/mycred-module-network.
93
- #: php:155 ../addons/gateway/event-booking/mycred-eventespresso3.php:451 ..
94
- #: addons/email-notices/myCRED-addon-email-notices.php:1469 ../addons/buy-
95
- #: creds/modules/buycred-module-core.php:538
96
- msgid "Settings Updated"
97
- msgstr ""
98
-
99
- #: ../modules/mycred-module-management.php:99
100
- msgid "Update Balance"
101
- msgstr ""
102
-
103
- #: ../modules/mycred-module-management.php:112
104
- msgid "User is excluded"
105
- msgstr ""
106
-
107
- #: ../modules/mycred-module-management.php:120
108
- msgid "Log Entry can not be empty"
109
- msgstr ""
110
-
111
- #: ../modules/mycred-module-management.php:128 ../modules/mycred-module-log.php:225
112
- msgid "Amount can not be zero"
113
- msgstr ""
114
-
115
- #: ../modules/mycred-module-management.php:182
116
- msgid "Balance successfully updated"
117
- msgstr ""
118
-
119
- #: ../modules/mycred-module-management.php:187
120
- msgid "Request declined"
121
- msgstr ""
122
-
123
- #: ../modules/mycred-module-management.php:222
124
- msgid "No recent activity found."
125
- msgstr ""
126
-
127
- #: ../modules/mycred-module-management.php:233 ../modules/mycred-module-log.php:
128
- #: 94 ../modules/mycred-module-log.php:910 ../includes/classes/class.query-export.
129
- #: php:263 ../includes/classes/class.query-export.php:399 ..
130
- #: includes/classes/class.query-log.php:370 ../includes/classes/class.query-log.
131
- #: php:380 ../addons/banking/services/mycred-service-payouts.php:738 ..
132
- #: addons/sell-content/includes/mycred-sell-shortcodes.php:185 ../addons/buy-
133
- #: creds/modules/buycred-module-core.php:730
134
- msgid "Date"
135
- msgstr ""
136
-
137
- #: ../modules/mycred-module-management.php:234 ../addons/banking/services/mycred-
138
- #: service-interest.php:435 ../addons/banking/services/mycred-service-interest.
139
- #: php:460 ../addons/banking/services/mycred-service-payouts.php:744
140
- msgid "Time"
141
- msgstr ""
142
-
143
- #: ../modules/mycred-module-management.php:235 ../modules/mycred-module-
144
- #: management.php:651 ../modules/mycred-module-log.php:93 ../modules/mycred-
145
- #: module-log.php:918 ../includes/classes/class.query-export.php:263 ..
146
- #: includes/classes/class.query-export.php:360 ../includes/classes/class.query-
147
- #: log.php:379 ../addons/transfer/includes/mycred-transfer-widgets.php:101
148
- msgid "Reference"
149
- msgstr ""
150
-
151
- #: ../modules/mycred-module-management.php:236 ../modules/mycred-module-log.php:
152
- #: 96 ../includes/classes/class.query-export.php:263 ../includes/classes/class.
153
- #: query-export.php:406 ../includes/classes/class.query-log.php:372 ..
154
- #: includes/classes/class.query-log.php:382
155
- msgid "Entry"
156
- msgstr ""
157
-
158
- #: ../modules/mycred-module-management.php:278
159
- msgid "View complete history"
160
- msgstr ""
161
-
162
- #: ../modules/mycred-module-management.php:310
163
- msgid "Edit Users Balance"
164
- msgstr ""
165
-
166
- #: ../modules/mycred-module-management.php:311 ../modules/mycred-module-settings.
167
- #: php:431 ../modules/mycred-module-log.php:465 ../modules/mycred-module-hooks.
168
- #: php:306 ../modules/mycred-module-hooks.php:420 ../addons/banking/myCRED-addon-
169
- #: banking.php:204
170
- msgid "Close"
171
- msgstr ""
172
-
173
- #: ../modules/mycred-module-management.php:312 ../modules/mycred-module-settings.
174
- #: php:426 ../modules/mycred-module-log.php:466 ../mycred.php:632 ..
175
- #: addons/gateway/event-booking/mycred-eventsmanager.php:478 ..
176
- #: addons/transfer/myCRED-addon-transfer.php:140 ../addons/ranks/myCRED-addon-
177
- #: ranks.php:955 ../addons/ranks/myCRED-addon-ranks.php:1535 ..
178
- #: addons/badges/myCRED-addon-badges.php:702
179
- msgid "Processing..."
180
- msgstr ""
181
-
182
- #: ../modules/mycred-module-management.php:449
183
- msgid "Excluded"
184
- msgstr ""
185
-
186
- #: ../modules/mycred-module-management.php:459 ../modules/mycred-module-hooks.php:
187
- #: 3129 ../addons/coupons/myCRED-addon-coupons.php:307
188
- msgid "Total"
189
- msgstr ""
190
-
191
- #: ../modules/mycred-module-management.php:469 ../modules/mycred-module-log.php:
192
- #: 282 ../modules/mycred-module-log.php:283 ../mycred.php:931 ../addons/buy-
193
- #: creds/modules/buycred-module-pending.php:437
194
- msgid "History"
195
- msgstr ""
196
-
197
- #: ../modules/mycred-module-management.php:470
198
- msgid "Adjust"
199
- msgstr ""
200
-
201
- #: ../modules/mycred-module-management.php:535 ../modules/mycred-module-
202
- #: management.php:538 ../mycred.php:864 ../addons/transfer/myCRED-addon-transfer.
203
- #: php:495 ../addons/transfer/includes/mycred-transfer-shortcodes.php:33
204
- msgid "Balance"
205
- msgstr ""
206
-
207
- #: ../modules/mycred-module-management.php:617 ../addons/banking/services/mycred-
208
- #: service-payouts.php:551
209
- msgid "ID"
210
- msgstr ""
211
-
212
- #: ../modules/mycred-module-management.php:623 ../modules/mycred-module-export.
213
- #: php:400 ../modules/mycred-module-export.php:448 ../addons/buy-
214
- #: creds/modules/buycred-module-core.php:1271
215
- msgid "Username"
216
- msgstr ""
217
-
218
- #: ../modules/mycred-module-management.php:629 ../addons/gateway/event-
219
- #: booking/mycred-eventespresso3.php:307 ../addons/gateway/event-booking/mycred-
220
- #: eventespresso3.php:332 ../addons/gateway/event-booking/mycred-eventsmanager.
221
- #: php:412 ../addons/gateway/carts/mycred-marketpress.php:158
222
- msgid "Current Balance"
223
- msgstr ""
224
-
225
- #: ../modules/mycred-module-management.php:635
226
- msgid "Total Balance"
227
- msgstr ""
228
-
229
- #: ../modules/mycred-module-management.php:644 ../plugins/mycred-hook-affiliatewp.
230
- #: php:260 ../includes/shortcodes/mycred_exchange.php:69 ..
231
- #: includes/shortcodes/mycred_hook_table.php:80 ../includes/classes/class.query-
232
- #: export.php:263 ../includes/classes/class.query-export.php:383 ..
233
- #: addons/transfer/includes/mycred-transfer-widgets.php:97 ..
234
- #: addons/transfer/includes/mycred-transfer-shortcodes.php:32 ../addons/buy-
235
- #: creds/abstracts/mycred-abstract-payment-gateway.php:668 ../addons/buy-
236
- #: creds/modules/buycred-module-pending.php:266 ../addons/buy-
237
- #: creds/modules/buycred-module-pending.php:608 ../addons/buy-
238
- #: creds/modules/buycred-module-pending.php:726
239
- msgid "Amount"
240
- msgstr ""
241
-
242
- #: ../modules/mycred-module-management.php:646
243
- msgid "A positive or negative value"
244
- msgstr ""
245
-
246
- #: ../modules/mycred-module-management.php:661
247
- msgid "Log under a custom reference"
248
- msgstr ""
249
-
250
- #: ../modules/mycred-module-management.php:667
251
- msgid "lowercase without empty spaces"
252
- msgstr ""
253
-
254
- #: ../modules/mycred-module-management.php:672 ../modules/mycred-module-log.php:
255
- #: 929 ../addons/gateway/event-booking/mycred-eventespresso3.php:518
256
- msgid "Log Entry"
257
- msgstr ""
258
-
259
- #: ../modules/mycred-module-management.php:673
260
- msgid "optional"
261
- msgstr ""
262
-
263
- #: ../modules/mycred-module-management.php:680
264
- msgid "Update"
265
- msgstr ""
266
-
267
- #: ../modules/mycred-module-management.php:683
268
- msgid "Recent Activity"
269
- msgstr ""
270
-
271
- #: ../modules/mycred-module-settings.php:21 ../modules/mycred-module-settings.php:
272
- #: 22 ../modules/mycred-module-settings.php:23 ../modules/mycred-module-network.
273
- #: php:164 ../mycred.php:989 ../addons/gateway/carts/mycred-marketpress.php:409 ..
274
- #: addons/stats/abstracts/mycred-abstract-stat-widget.php:106 ../addons/buy-
275
- #: creds/modules/buycred-module-core.php:533
276
- msgid "Settings"
277
- msgstr ""
278
-
279
- #: ../modules/mycred-module-settings.php:138
280
- msgid "Accounts successfully reset"
281
- msgstr ""
282
-
283
- #: ../modules/mycred-module-settings.php:190
284
- msgid "No users found to export"
285
- msgstr ""
286
-
287
- #: ../modules/mycred-module-settings.php:240
288
- msgid "Invalid decimal value."
289
- msgstr ""
290
-
291
- #: ../modules/mycred-module-settings.php:290
292
- msgid "Log Updated"
293
- msgstr ""
294
-
295
- #: ../modules/mycred-module-settings.php:427
296
- msgid ""
297
- "Warning! All entries in your log will be permanently removed! This can not "
298
- "be undone!"
299
- msgstr ""
300
-
301
- #: ../modules/mycred-module-settings.php:428
302
- msgid ""
303
- "All log entries belonging to deleted users will be permanently deleted! This "
304
- "can not be undone!"
305
- msgstr ""
306
-
307
- #: ../modules/mycred-module-settings.php:429
308
- msgid "Warning! All user balances will be set to zero! This can not be undone!"
309
- msgstr ""
310
-
311
- #: ../modules/mycred-module-settings.php:430
312
- msgid "Done!"
313
- msgstr ""
314
-
315
- #: ../modules/mycred-module-settings.php:432
316
- #, php-format
317
- msgid "Export users %plural%"
318
- msgstr ""
319
-
320
- #: ../modules/mycred-module-settings.php:433
321
- msgid ""
322
- "In order to adjust the number of decimal places you want to use we must "
323
- "update your log. It is highly recommended that you backup your current log "
324
- "before continuing!"
325
- msgstr ""
326
-
327
- #: ../modules/mycred-module-settings.php:458
328
- msgid "Update Database"
329
- msgstr ""
330
-
331
- #: ../modules/mycred-module-settings.php:469 ../modules/mycred-module-settings.
332
- #: php:481
333
- msgid "No decimals"
334
- msgstr ""
335
-
336
- #: ../modules/mycred-module-settings.php:493
337
- #, php-format
338
- msgid "<a href=\"%s\">Click here</a> to change your default point types setup."
339
- msgstr ""
340
-
341
- #: ../modules/mycred-module-settings.php:529
342
- #, php-format
343
- msgid "%s Settings"
344
- msgstr ""
345
-
346
- #: ../modules/mycred-module-settings.php:529 ../modules/mycred-module-addons.php:
347
- #: 369
348
- msgid "Documentation"
349
- msgstr ""
350
-
351
- #: ../modules/mycred-module-settings.php:538
352
- msgid "Core Settings"
353
- msgstr ""
354
-
355
- #: ../modules/mycred-module-settings.php:543 ../includes/mycred-setup.php:275 ..
356
- #: addons/gateway/event-booking/mycred-eventespresso3.php:460 ..
357
- #: addons/gateway/event-booking/mycred-eventsmanager.php:602 ..
358
- #: addons/gateway/event-booking/mycred-eventsmanager-pro.php:686
359
- msgid "Labels"
360
- msgstr ""
361
-
362
- #: ../modules/mycred-module-settings.php:547 ../includes/mycred-setup.php:279
363
- msgid "Singular"
364
- msgstr ""
365
-
366
- #: ../modules/mycred-module-settings.php:548 ../modules/mycred-module-settings.
367
- #: php:554 ../modules/mycred-module-settings.php:604 ../modules/mycred-module-
368
- #: settings.php:611 ../modules/mycred-module-settings.php:798 ../modules/mycred-
369
- #: module-settings.php:804 ../includes/mycred-setup.php:280 ../includes/mycred-
370
- #: setup.php:286 ../includes/mycred-setup.php:333 ../includes/mycred-setup.php:
371
- #: 340 ../addons/banking/services/mycred-service-central.php:111 ..
372
- #: addons/banking/services/mycred-service-interest.php:482 ..
373
- #: addons/banking/services/mycred-service-interest.php:500
374
- msgid "Required"
375
- msgstr ""
376
-
377
- #: ../modules/mycred-module-settings.php:553 ../includes/mycred-setup.php:285
378
- msgid "Plural"
379
- msgstr ""
380
-
381
- #: ../modules/mycred-module-settings.php:558 ../includes/mycred-setup.php:290
382
- msgid ""
383
- "These labels are used throughout the admin area and when presenting points "
384
- "to your users."
385
- msgstr ""
386
-
387
- #: ../modules/mycred-module-settings.php:561 ../includes/mycred-setup.php:293
388
- msgid "Format"
389
- msgstr ""
390
-
391
- #: ../modules/mycred-module-settings.php:565 ../includes/mycred-setup.php:297
392
- msgid "Prefix"
393
- msgstr ""
394
-
395
- #: ../modules/mycred-module-settings.php:571 ../includes/mycred-setup.php:303
396
- msgid "Separators"
397
- msgstr ""
398
-
399
- #: ../modules/mycred-module-settings.php:579 ../includes/mycred-setup.php:311
400
- msgid "Decimals"
401
- msgstr ""
402
-
403
- #: ../modules/mycred-module-settings.php:585 ../includes/mycred-setup.php:317
404
- msgid "Suffix"
405
- msgstr ""
406
-
407
- #: ../modules/mycred-module-settings.php:590
408
- msgid "Set decimals to zero if you prefer to use whole numbers."
409
- msgstr ""
410
-
411
- #: ../modules/mycred-module-settings.php:592
412
- msgid "Tip"
413
- msgstr ""
414
-
415
- #: ../modules/mycred-module-settings.php:592
416
- msgid ""
417
- "As this is your main point type, the value you select here will be the "
418
- "largest number of decimals your installation will support."
419
- msgstr ""
420
-
421
- #: ../modules/mycred-module-settings.php:599 ../includes/mycred-setup.php:328
422
- msgid "Security"
423
- msgstr ""
424
-
425
- #: ../modules/mycred-module-settings.php:603 ../includes/mycred-setup.php:332
426
- msgid "Point Editors"
427
- msgstr ""
428
-
429
- #: ../modules/mycred-module-settings.php:605 ../includes/mycred-setup.php:334
430
- msgid "The capability of users who can edit balances."
431
- msgstr ""
432
-
433
- #: ../modules/mycred-module-settings.php:610 ../includes/mycred-setup.php:339
434
- msgid "Point Administrators"
435
- msgstr ""
436
-
437
- #: ../modules/mycred-module-settings.php:612 ../includes/mycred-setup.php:341
438
- msgid "The capability of users who can edit settings."
439
- msgstr ""
440
-
441
- #: ../modules/mycred-module-settings.php:618 ../includes/mycred-setup.php:346
442
- msgid "Max. Amount"
443
- msgstr ""
444
-
445
- #: ../modules/mycred-module-settings.php:620 ../includes/mycred-setup.php:348
446
- msgid "The maximum amount allowed to be paid out in a single instance."
447
- msgstr ""
448
-
449
- #: ../modules/mycred-module-settings.php:625 ../includes/mycred-setup.php:353
450
- msgid "Exclude by User ID"
451
- msgstr ""
452
-
453
- #: ../modules/mycred-module-settings.php:626 ../includes/mycred-setup.php:354
454
- msgid "Optional"
455
- msgstr ""
456
-
457
- #: ../modules/mycred-module-settings.php:627 ../includes/mycred-setup.php:355
458
- msgid "Comma separated list of user IDs to exclude from using this point type."
459
- msgstr ""
460
-
461
- #: ../modules/mycred-module-settings.php:631 ../includes/mycred-setup.php:359
462
- msgid "Exclude point editors"
463
- msgstr ""
464
-
465
- #: ../modules/mycred-module-settings.php:634 ../includes/mycred-setup.php:362
466
- msgid "Exclude point administrators"
467
- msgstr ""
468
-
469
- #: ../modules/mycred-module-settings.php:644
470
- msgid "Other Settings"
471
- msgstr ""
472
-
473
- #: ../modules/mycred-module-settings.php:646
474
- msgid "Delete log entries when user is deleted."
475
- msgstr ""
476
-
477
- #: ../modules/mycred-module-settings.php:665
478
- msgid "Management"
479
- msgstr ""
480
-
481
- #: ../modules/mycred-module-settings.php:677 ../modules/mycred-module-log.php:433
482
- msgid "Entries"
483
- msgstr ""
484
-
485
- #: ../modules/mycred-module-settings.php:683 ../modules/mycred-module-settings.
486
- #: php:708 ../addons/ranks/myCRED-addon-ranks.php:1624 ../addons/buy-
487
- #: creds/modules/buycred-module-pending.php:443 ../addons/buy-
488
- #: creds/modules/buycred-module-pending.php:729
489
- msgid "Actions"
490
- msgstr ""
491
-
492
- #: ../modules/mycred-module-settings.php:686
493
- msgid "Empty Log"
494
- msgstr ""
495
-
496
- #: ../modules/mycred-module-settings.php:696
497
- msgid "Balance Meta Key"
498
- msgstr ""
499
-
500
- #: ../modules/mycred-module-settings.php:702 ../addons/ranks/myCRED-addon-ranks.
501
- #: php:1045 ../addons/badges/myCRED-addon-badges.php:400
502
- msgid "Users"
503
- msgstr ""
504
-
505
- #: ../modules/mycred-module-settings.php:710
506
- msgid "Set all to zero"
507
- msgstr ""
508
-
509
- #: ../modules/mycred-module-settings.php:727 ../includes/mycred-widgets.php:592 ..
510
- #: addons/transfer/myCRED-addon-transfer.php:383 ..
511
- #: addons/transfer/includes/mycred-transfer-widgets.php:109 ../addons/sell-
512
- #: content/myCRED-addon-sell-content.php:365 ../addons/buy-creds/modules/buycred-
513
- #: module-core.php:312
514
- msgid "Point Types"
515
- msgstr ""
516
-
517
- #: ../modules/mycred-module-settings.php:741 ../modules/mycred-module-settings.
518
- #: php:767 ../modules/mycred-module-settings.php:797
519
- msgid "Meta Key"
520
- msgstr ""
521
-
522
- #: ../modules/mycred-module-settings.php:747 ../modules/mycred-module-settings.
523
- #: php:773 ../modules/mycred-module-settings.php:803 ..
524
- #: addons/gateway/carts/mycred-woocommerce.php:159 ../addons/email-
525
- #: notices/myCRED-addon-email-notices.php:575
526
- msgid "Label"
527
- msgstr ""
528
-
529
- #: ../modules/mycred-module-settings.php:754 ../modules/mycred-module-settings.
530
- #: php:780 ../modules/mycred-module-hooks.php:306 ../modules/mycred-module-hooks.
531
- #: php:420 ../includes/classes/class.query-log.php:492 ../includes/classes/class.
532
- #: query-log.php:1076 ../addons/banking/services/mycred-service-payouts.php:470 ..
533
- #: addons/gateway/event-booking/mycred-eventsmanager-pro.php:496
534
- msgid "Delete"
535
- msgstr ""
536
-
537
- #: ../modules/mycred-module-settings.php:793
538
- msgid "Add New Type"
539
- msgstr ""
540
-
541
- #: ../modules/mycred-module-settings.php:809
542
- msgid ""
543
- "The meta key must be lowercase and only contain letters or underscores. All "
544
- "other characters will be deleted!"
545
- msgstr ""
546
-
547
- #: ../modules/mycred-module-settings.php:821 ../addons/gateway/event-
548
- #: booking/mycred-eventespresso3.php:551 ../addons/buy-creds/modules/buycred-
549
- #: module-core.php:591
550
- msgid "Update Settings"
551
- msgstr ""
552
-
553
- #: ../modules/mycred-module-settings.php:830
554
- msgid "Identify users by"
555
- msgstr ""
556
-
557
- #: ../modules/mycred-module-settings.php:836
558
- msgid "User ID"
559
- msgstr ""
560
-
561
- #: ../modules/mycred-module-settings.php:837
562
- msgid "User Email"
563
- msgstr ""
564
-
565
- #: ../modules/mycred-module-settings.php:838
566
- msgid "User Login"
567
- msgstr ""
568
-
569
- #: ../modules/mycred-module-settings.php:846
570
- msgid ""
571
- "Use ID if you intend to use this export as a backup of your current site "
572
- "while Email is recommended if you want to export to a different site."
573
- msgstr ""
574
-
575
- #: ../modules/mycred-module-settings.php:849
576
- msgid "Import Log Entry"
577
- msgstr ""
578
-
579
- #: ../modules/mycred-module-settings.php:851
580
- #, php-format
581
- msgid ""
582
- "Optional log entry to use if you intend to import this file in a different "
583
- "%s installation."
584
- msgstr ""
585
-
586
- #: ../modules/mycred-module-settings.php:854 ../modules/mycred-module-export.php:
587
- #: 236 ../modules/mycred-module-export.php:263 ../modules/mycred-module-export.
588
- #: php:313
589
- msgid "Export"
590
- msgstr ""
591
-
592
- #: ../modules/mycred-module-addons.php:25 ../modules/mycred-module-addons.php:26 .
593
- #: ./includes/mycred-setup.php:171
594
- msgid "Add-ons"
595
- msgstr ""
596
-
597
- #: ../modules/mycred-module-addons.php:173
598
- msgid "Give your users badges based on their interaction with your website."
599
- msgstr ""
600
-
601
- #: ../modules/mycred-module-addons.php:184
602
- msgid "Setup recurring payouts or offer / charge interest on user account balances."
603
- msgstr ""
604
-
605
- #: ../modules/mycred-module-addons.php:195
606
- msgid ""
607
- "The <strong>buy</strong>CRED Add-on allows your users to buy points using "
608
- "PayPal, Skrill (Moneybookers) or NETbilling. <strong>buy</strong>CRED can "
609
- "also let your users buy points for other members."
610
- msgstr ""
611
-
612
- #: ../modules/mycred-module-addons.php:206
613
- msgid ""
614
- "The coupons add-on allows you to create coupons that users can use to add "
615
- "points to their accounts."
616
- msgstr ""
617
-
618
- #: ../modules/mycred-module-addons.php:217
619
- msgid "Create email notices for any type of myCRED instance."
620
- msgstr ""
621
-
622
- #: ../modules/mycred-module-addons.php:228
623
- msgid ""
624
- "Let your users pay using their <strong>my</strong>CRED points balance. "
625
- "Supported Carts: WooCommerce, MarketPress and WP E-Commerce. Supported Event "
626
- "Bookings: Event Espresso and Events Manager (free & pro)."
627
- msgstr ""
628
-
629
- #: ../modules/mycred-module-addons.php:239
630
- msgid "Create pop-up notifications for when users gain or loose points."
631
- msgstr ""
632
-
633
- #: ../modules/mycred-module-addons.php:251
634
- msgid ""
635
- "Create ranks for users reaching a certain number of %_plural% with the "
636
- "option to add logos for each rank."
637
- msgstr ""
638
-
639
- #: ../modules/mycred-module-addons.php:262
640
- msgid ""
641
- "This add-on allows you to sell posts, pages or any public post types on your "
642
- "website. You can either sell the entire content or using our shortcode, sell "
643
- "parts of your content allowing you to offer \"teasers\"."
644
- msgstr ""
645
-
646
- #: ../modules/mycred-module-addons.php:273
647
- msgid ""
648
- "Gives you access to your myCRED Staticstics based on your users gains and "
649
- "loses."
650
- msgstr ""
651
-
652
- #: ../modules/mycred-module-addons.php:284
653
- msgid ""
654
- "Allow your users to send or \"donate\" points to other members by either using "
655
- "the mycred_transfer shortcode or the myCRED Transfer widget."
656
- msgstr ""
657
-
658
- #: ../modules/mycred-module-addons.php:328
659
- #, php-format
660
- msgid "%s Add-ons"
661
- msgstr ""
662
-
663
- #: ../modules/mycred-module-addons.php:328
664
- msgid "Get More Add-ons"
665
- msgstr ""
666
-
667
- #: ../modules/mycred-module-addons.php:335
668
- msgid "Add-on Activated"
669
- msgstr ""
670
-
671
- #: ../modules/mycred-module-addons.php:338
672
- msgid "Add-on Deactivated"
673
- msgstr ""
674
-
675
- #: ../modules/mycred-module-addons.php:343
676
- msgid "Add-ons Reloaded"
677
- msgstr ""
678
-
679
- #: ../modules/mycred-module-addons.php:406
680
- msgid "Activate Add-on"
681
- msgstr ""
682
-
683
- #: ../modules/mycred-module-addons.php:407
684
- msgid "Activate"
685
- msgstr ""
686
-
687
- #: ../modules/mycred-module-addons.php:413
688
- msgid "Deactivate Add-on"
689
- msgstr ""
690
-
691
- #: ../modules/mycred-module-addons.php:414
692
- msgid "Deactivate"
693
- msgstr ""
694
-
695
- #: ../modules/mycred-module-log.php:24 ../modules/mycred-module-log.php:25 ..
696
- #: addons/gateway/event-booking/mycred-eventespresso3.php:515
697
- msgid "Log"
698
- msgstr ""
699
-
700
- #: ../modules/mycred-module-log.php:92 ../modules/mycred-module-log.php:906 ..
701
- #: includes/classes/class.query-export.php:263 ../includes/classes/class.query-
702
- #: export.php:371 ../includes/classes/class.query-log.php:369 ..
703
- #: includes/classes/class.query-log.php:378 ../addons/email-notices/myCRED-addon-
704
- #: email-notices.php:332 ../addons/email-notices/myCRED-addon-email-notices.php:565
705
- msgid "User"
706
- msgstr ""
707
-
708
- #: ../modules/mycred-module-log.php:173
709
- msgid "Row Deleted"
710
- msgstr ""
711
-
712
- #: ../modules/mycred-module-log.php:215
713
- msgid "Invalid or empty reference"
714
- msgstr ""
715
-
716
- #: ../modules/mycred-module-log.php:220
717
- msgid "Log Entry cannot be empty"
718
- msgstr ""
719
-
720
- #: ../modules/mycred-module-log.php:232
721
- msgid "Log entry not found"
722
- msgstr ""
723
-
724
- #: ../modules/mycred-module-log.php:241
725
- msgid "Could not save the new log entry"
726
- msgstr ""
727
-
728
- #: ../modules/mycred-module-log.php:262
729
- msgid "Log entry successfully updated"
730
- msgstr ""
731
-
732
- #: ../modules/mycred-module-log.php:307
733
- #, php-format
734
- msgid "1 Entry Deleted"
735
- msgid_plural "%d Entries Deleted"
736
- msgstr[0] ""
737
- msgstr[1] ""
738
-
739
- #: ../modules/mycred-module-log.php:464
740
- msgid "Edit Log Entry"
741
- msgstr ""
742
-
743
- #: ../modules/mycred-module-log.php:468
744
- msgid "Are you sure you want to delete this log entry? This can not be undone!"
745
- msgstr ""
746
-
747
- #: ../modules/mycred-module-log.php:469
748
- msgid "The log entry was successfully updated."
749
- msgstr ""
750
-
751
- #: ../modules/mycred-module-log.php:470
752
- msgid "The selected log entry could not be deleted."
753
- msgstr ""
754
-
755
- #: ../modules/mycred-module-log.php:502
756
- msgid "Search results for"
757
- msgstr ""
758
-
759
- #: ../modules/mycred-module-log.php:507
760
- #, php-format
761
- msgctxt "e.g. Log entries from April 12th 2016"
762
- msgid "Log entries from %s"
763
- msgstr ""
764
-
765
- #: ../modules/mycred-module-log.php:554
766
- #, php-format
767
- msgid "%s Log"
768
- msgstr ""
769
-
770
- #: ../modules/mycred-module-log.php:565
771
- msgid ""
772
- "Warning. The required Mcrypt PHP Library is not installed on this server! "
773
- "Certain hooks and shortcodes will not work correctly!"
774
- msgstr ""
775
-
776
- #: ../modules/mycred-module-log.php:666
777
- #, php-format
778
- msgid "My %s History"
779
- msgstr ""
780
-
781
- #: ../modules/mycred-module-log.php:925
782
- msgid "Original Entry"
783
- msgstr ""
784
-
785
- #: ../modules/mycred-module-log.php:937
786
- msgid "Delete Entry"
787
- msgstr ""
788
-
789
- #: ../modules/mycred-module-log.php:942
790
- msgid "Update Entry"
791
- msgstr ""
792
-
793
- #: ../modules/mycred-module-network.php:71 ../modules/mycred-module-network.php:72
794
- msgid "Network Settings"
795
- msgstr ""
796
-
797
- #: ../modules/mycred-module-network.php:135
798
- #, php-format
799
- msgid "%s Network"
800
- msgstr ""
801
-
802
- #: ../modules/mycred-module-network.php:141
803
- msgid "I am sorry but your network is too big to use these features."
804
- msgstr ""
805
-
806
- #: ../modules/mycred-module-network.php:151
807
- #, php-format
808
- msgid "Note! %s has not yet been setup."
809
- msgstr ""
810
-
811
- #: ../modules/mycred-module-network.php:158
812
- #, php-format
813
- msgid "Configure network settings for %s."
814
- msgstr ""
815
-
816
- #: ../modules/mycred-module-network.php:166
817
- msgid "Master Template"
818
- msgstr ""
819
-
820
- #: ../modules/mycred-module-network.php:170 ../modules/mycred-module-network.php:
821
- #: 184 ../addons/buy-creds/gateways/bitpay.php:299
822
- msgid "Yes"
823
- msgstr ""
824
-
825
- #: ../modules/mycred-module-network.php:174 ../modules/mycred-module-network.php:
826
- #: 188 ../addons/buy-creds/gateways/bitpay.php:298
827
- msgid "No"
828
- msgstr ""
829
-
830
- #: ../modules/mycred-module-network.php:177
831
- #, php-format
832
- msgid ""
833
- "If enabled, %s will use your main site's settings for all other sites in "
834
- "your network."
835
- msgstr ""
836
-
837
- #: ../modules/mycred-module-network.php:180
838
- msgid "Central Logging"
839
- msgstr ""
840
-
841
- #: ../modules/mycred-module-network.php:191
842
- #, php-format
843
- msgid "If enabled, %s will log all site actions in your main site's log."
844
- msgstr ""
845
-
846
- #: ../modules/mycred-module-network.php:194
847
- msgid "Site Block"
848
- msgstr ""
849
-
850
- #: ../modules/mycred-module-network.php:198
851
- #, php-format
852
- msgid "Comma separated list of blog ids where %s is to be disabled."
853
- msgstr ""
854
-
855
- #: ../modules/mycred-module-network.php:210
856
- msgid "Save Network Settings"
857
- msgstr ""
858
-
859
- #: ../modules/mycred-module-export.php:285 ../modules/mycred-module-export.php:
860
- #: 332 ../includes/classes/class.query-log.php:1141
861
- msgid ""
862
- "Log entries are exported to a CSV file and depending on the number of "
863
- "entries selected, the process may take a few seconds."
864
- msgstr ""
865
-
866
- #: ../modules/mycred-module-export.php:353 ../addons/sell-content/myCRED-addon-
867
- #: sell-content.php:265
868
- msgid "Disabled"
869
- msgstr ""
870
-
871
- #: ../modules/mycred-module-export.php:354 ../addons/sell-content/myCRED-addon-
872
- #: sell-content.php:266
873
- msgid "Enabled"
874
- msgstr ""
875
-
876
- #: ../modules/mycred-module-export.php:358
877
- msgid "Make both format options available."
878
- msgstr ""
879
-
880
- #: ../modules/mycred-module-export.php:360
881
- msgid "Exports"
882
- msgstr ""
883
-
884
- #: ../modules/mycred-module-export.php:366
885
- msgid "Front End Exports"
886
- msgstr ""
887
-
888
- #: ../modules/mycred-module-export.php:382 ../modules/mycred-module-export.php:430
889
- msgid "Export Format"
890
- msgstr ""
891
-
892
- #: ../modules/mycred-module-export.php:398 ../modules/mycred-module-export.php:446
893
- msgid "File Name"
894
- msgstr ""
895
-
896
- #: ../modules/mycred-module-export.php:400 ../modules/mycred-module-export.php:
897
- #: 448 ../includes/importers/mycred-cubepoints.php:401 ../includes/classes/class.
898
- #: query-export.php:263 ../includes/classes/class.query-export.php:391 ..
899
- #: includes/mycred-widgets.php:195 ../includes/mycred-widgets.php:384 ..
900
- #: addons/gateway/event-booking/mycred-eventespresso3.php:483 ..
901
- #: addons/gateway/event-booking/mycred-eventsmanager.php:550 ..
902
- #: addons/gateway/event-booking/mycred-eventsmanager-pro.php:611 ..
903
- #: addons/gateway/carts/mycred-wpecommerce.php:383 ..
904
- #: addons/gateway/carts/mycred-woocommerce.php:119 ..
905
- #: addons/gateway/carts/mycred-marketpress.php:427 ../addons/ranks/myCRED-addon-
906
- #: ranks.php:1048 ../addons/ranks/myCRED-addon-ranks.php:1218 ../addons/email-
907
- #: notices/myCRED-addon-email-notices.php:276 ../addons/email-notices/myCRED-
908
- #: addon-email-notices.php:582 ../addons/coupons/myCRED-addon-coupons.php:254 ..
909
- #: addons/coupons/myCRED-addon-coupons.php:488 ../addons/buy-
910
- #: creds/modules/buycred-module-pending.php:550 ../addons/buy-
911
- #: creds/modules/buycred-module-pending.php:728
912
- msgid "Point Type"
913
- msgstr ""
914
-
915
- #: ../modules/mycred-module-export.php:407
916
- msgid ""
917
- "If enabled, users will only be able to export their own log entries! Export "
918
- "tools becomes available wherever you are using the mycred_history shortcode "
919
- "or in the users profile."
920
- msgstr ""
921
-
922
- #: ../modules/mycred-module-export.php:414
923
- msgid "Back End Exports"
924
- msgstr ""
925
-
926
- #: ../modules/mycred-module-export.php:455
927
- msgid ""
928
- "Raw format should be used when you intend to use the export tool to backup "
929
- "or import entries in another installation. Formatted exports reflect what "
930
- "users see in their history archive."
931
- msgstr ""
932
-
933
- #: ../modules/mycred-module-hooks.php:28 ../modules/mycred-module-hooks.php:29 ..
934
- #: modules/mycred-module-hooks.php:30 ../addons/stats/abstracts/mycred-abstract-
935
- #: stat-widget.php:103
936
- msgid "Hooks"
937
- msgstr ""
938
-
939
- #: ../modules/mycred-module-hooks.php:76
940
- #, php-format
941
- msgid "%plural% for registrations"
942
- msgstr ""
943
-
944
- #: ../modules/mycred-module-hooks.php:77
945
- #, php-format
946
- msgid "Award %_plural% for users joining your website."
947
- msgstr ""
948
-
949
- #: ../modules/mycred-module-hooks.php:83
950
- #, php-format
951
- msgid "%plural% for daily visits"
952
- msgstr ""
953
-
954
- #: ../modules/mycred-module-hooks.php:84
955
- #, php-format
956
- msgid "Award %_plural% for visiting your website on a daily basis."
957
- msgstr ""
958
-
959
- #: ../modules/mycred-module-hooks.php:90
960
- #, php-format
961
- msgid "%plural% for viewing content"
962
- msgstr ""
963
-
964
- #: ../modules/mycred-module-hooks.php:91
965
- #, php-format
966
- msgid "Award %_plural% for viewing content."
967
- msgstr ""
968
-
969
- #: ../modules/mycred-module-hooks.php:97
970
- #, php-format
971
- msgid "%plural% for logins"
972
- msgstr ""
973
-
974
- #: ../modules/mycred-module-hooks.php:98
975
- #, php-format
976
- msgid "Award %_plural% for logging in."
977
- msgstr ""
978
-
979
- #: ../modules/mycred-module-hooks.php:104
980
- #, php-format
981
- msgid "%plural% for publishing content"
982
- msgstr ""
983
-
984
- #: ../modules/mycred-module-hooks.php:105
985
- #, php-format
986
- msgid "Award %_plural% for publishing content."
987
- msgstr ""
988
-
989
- #: ../modules/mycred-module-hooks.php:111
990
- #, php-format
991
- msgid "%plural% for trashed content"
992
- msgstr ""
993
-
994
- #: ../modules/mycred-module-hooks.php:112
995
- msgid "Award or Deduct %_plural% when content gets trashed."
996
- msgstr ""
997
-
998
- #: ../modules/mycred-module-hooks.php:118
999
- #, php-format
1000
- msgid "%plural% for comments"
1001
- msgstr ""
1002
-
1003
- #: ../modules/mycred-module-hooks.php:118
1004
- #, php-format
1005
- msgid "%plural% for Disqus comments"
1006
- msgstr ""
1007
-
1008
- #: ../modules/mycred-module-hooks.php:119
1009
- #, php-format
1010
- msgid "Award %_plural% for making comments."
1011
- msgstr ""
1012
-
1013
- #: ../modules/mycred-module-hooks.php:125
1014
- #, php-format
1015
- msgid "%plural% for clicking on links"
1016
- msgstr ""
1017
-
1018
- #: ../modules/mycred-module-hooks.php:126
1019
- #, php-format
1020
- msgid "Award %_plural% for clicks on links generated by the %shortcode% shortcode."
1021
- msgstr ""
1022
-
1023
- #: ../modules/mycred-module-hooks.php:132
1024
- #, php-format
1025
- msgid "%plural% for viewing Videos"
1026
- msgstr ""
1027
-
1028
- #: ../modules/mycred-module-hooks.php:133
1029
- #, php-format
1030
- msgid "Award %_plural% for watches videos embedded using the %shortcode% shortcode."
1031
- msgstr ""
1032
-
1033
- #: ../modules/mycred-module-hooks.php:139
1034
- #, php-format
1035
- msgid "%plural% for referrals"
1036
- msgstr ""
1037
-
1038
- #: ../modules/mycred-module-hooks.php:140
1039
- #, php-format
1040
- msgid "Award %_plural% for signup or visitor referrals."
1041
- msgstr ""
1042
-
1043
- #: ../modules/mycred-module-hooks.php:264
1044
- #, php-format
1045
- msgid "%s Hooks %s"
1046
- msgstr ""
1047
-
1048
- #: ../modules/mycred-module-hooks.php:270
1049
- msgid "Available Hooks"
1050
- msgstr ""
1051
-
1052
- #: ../modules/mycred-module-hooks.php:270
1053
- msgctxt "removing-widget"
1054
- msgid "Deactivate"
1055
- msgstr ""
1056
-
1057
- #: ../modules/mycred-module-hooks.php:274
1058
- msgid ""
1059
- "To activate a hook drag it to a sidebar or click on it. To deactivate a hook "
1060
- "and delete its settings, drag it back."
1061
- msgstr ""
1062
-
1063
- #: ../modules/mycred-module-hooks.php:309 ../modules/mycred-module-hooks.php:423 .
1064
- #: ./addons/buy-creds/modules/buycred-module-pending.php:466
1065
- msgid "Save"
1066
- msgstr ""
1067
-
1068
- #: ../modules/mycred-module-hooks.php:344 ../addons/buy-creds/abstracts/mycred-
1069
- #: abstract-payment-gateway.php:455 ../addons/buy-creds/modules/buycred-module-
1070
- #: pending.php:711
1071
- msgid "Cancel"
1072
- msgstr ""
1073
-
1074
- #: ../modules/mycred-module-hooks.php:345
1075
- msgid "Add Hook"
1076
- msgstr ""
1077
-
1078
- #: ../modules/mycred-module-hooks.php:384
1079
- msgid "Active Hooks"
1080
- msgstr ""
1081
-
1082
- #: ../modules/mycred-module-hooks.php:387
1083
- msgid "The following hooks are used for all users."
1084
- msgstr ""
1085
-
1086
- #: ../modules/mycred-module-hooks.php:474
1087
- #, php-format
1088
- msgid "The following hooks are used for %s."
1089
- msgstr ""
1090
-
1091
- #: ../modules/mycred-module-hooks.php:751 ../modules/mycred-module-hooks.php:858 .
1092
- #: ./modules/mycred-module-hooks.php:1028 ../modules/mycred-module-hooks.php:1059
1093
- #: ../modules/mycred-module-hooks.php:1136 ../modules/mycred-module-hooks.php:
1094
- #: 1500 ../modules/mycred-module-hooks.php:1517 ../modules/mycred-module-hooks.
1095
- #: php:1566 ../modules/mycred-module-hooks.php:1755 ../modules/mycred-module-
1096
- #: hooks.php:1772 ../modules/mycred-module-hooks.php:1821 ../modules/mycred-
1097
- #: module-hooks.php:2273 ../modules/mycred-module-hooks.php:2290 ..
1098
- #: modules/mycred-module-hooks.php:2307 ../modules/mycred-module-hooks.php:3644 .
1099
- #: ./modules/mycred-module-hooks.php:3659 ../plugins/mycred-hook-invite-anyone.
1100
- #: php:211 ../plugins/mycred-hook-invite-anyone.php:232 ../plugins/mycred-hook-wp-
1101
- #: postratings.php:173 ../plugins/mycred-hook-wp-postratings.php:192 ..
1102
- #: plugins/mycred-hook-gravityforms.php:165 ../plugins/mycred-hook-simplepress.
1103
- #: php:309 ../plugins/mycred-hook-simplepress.php:322 ../plugins/mycred-hook-
1104
- #: simplepress.php:339 ../plugins/mycred-hook-simplepress.php:357 ..
1105
- #: plugins/mycred-hook-buddypress-gallery.php:116 ../plugins/mycred-hook-
1106
- #: buddypress.php:621 ../plugins/mycred-hook-buddypress.php:638 ../plugins/mycred-
1107
- #: hook-buddypress.php:655 ../plugins/mycred-hook-buddypress.php:672 ..
1108
- #: plugins/mycred-hook-buddypress.php:692 ../plugins/mycred-hook-buddypress.php:
1109
- #: 705 ../plugins/mycred-hook-buddypress.php:722 ../plugins/mycred-hook-
1110
- #: buddypress.php:735 ../plugins/mycred-hook-buddypress.php:752 ../plugins/mycred-
1111
- #: hook-buddypress.php:765 ../plugins/mycred-hook-buddypress.php:782 ..
1112
- #: plugins/mycred-hook-buddypress.php:799 ../plugins/mycred-hook-buddypress.php:
1113
- #: 1429 ../plugins/mycred-hook-buddypress.php:1442 ../plugins/mycred-hook-
1114
- #: buddypress.php:1459 ../plugins/mycred-hook-buddypress.php:1476 ..
1115
- #: plugins/mycred-hook-buddypress.php:1493 ../plugins/mycred-hook-buddypress.php:
1116
- #: 1510 ../plugins/mycred-hook-buddypress.php:1528 ../plugins/mycred-hook-
1117
- #: buddypress.php:1541 ../plugins/mycred-hook-buddypress.php:1558 ..
1118
- #: plugins/mycred-hook-buddypress.php:1575 ../plugins/mycred-hook-buddypress.php:
1119
- #: 1592 ../plugins/mycred-hook-buddypress-links.php:271 ../plugins/mycred-hook-
1120
- #: buddypress-links.php:288 ../plugins/mycred-hook-buddypress-links.php:305 ..
1121
- #: plugins/mycred-hook-buddypress-links.php:324 ../plugins/mycred-hook-
1122
- #: buddypress-links.php:341 ../plugins/mycred-hook-buddypress-links.php:354 ..
1123
- #: plugins/mycred-hook-affiliatewp.php:229 ../plugins/mycred-hook-affiliatewp.
1124
- #: php:246 ../plugins/mycred-hook-sharethis.php:307 ../plugins/mycred-hook-
1125
- #: buddypress-media.php:316 ../plugins/mycred-hook-buddypress-media.php:330 ..
1126
- #: plugins/mycred-hook-buddypress-media.php:344 ../plugins/mycred-hook-
1127
- #: buddypress-media.php:357 ../plugins/mycred-hook-buddypress-media.php:367 ..
1128
- #: plugins/mycred-hook-buddypress-media.php:377 ../plugins/mycred-hook-contact-
1129
- #: form7.php:168 ../plugins/mycred-hook-jetpack.php:545 ../plugins/mycred-hook-
1130
- #: jetpack.php:558 ../plugins/mycred-hook-bbPress.php:443 ../plugins/mycred-hook-
1131
- #: bbPress.php:456 ../plugins/mycred-hook-bbPress.php:473 ../plugins/mycred-hook-
1132
- #: bbPress.php:491 ../plugins/mycred-hook-bbPress.php:508 ../plugins/mycred-hook-
1133
- #: bbPress.php:525 ../plugins/mycred-hook-bbPress.php:551 ../plugins/mycred-hook-
1134
- #: badgeOS.php:336 ../addons/badges/myCRED-addon-badges.php:949
1135
- msgid "Log template"
1136
- msgstr ""
1137
-
1138
- #: ../modules/mycred-module-hooks.php:1011
1139
- #, php-format
1140
- msgid "%plural% for viewing Posts"
1141
- msgstr ""
1142
-
1143
- #: ../modules/mycred-module-hooks.php:1014 ../modules/mycred-module-hooks.php:
1144
- #: 1031 ../modules/mycred-module-hooks.php:1045 ../modules/mycred-module-hooks.
1145
- #: php:1062 ../modules/mycred-module-hooks.php:1122 ../modules/mycred-module-
1146
- #: hooks.php:1139
1147
- msgid "Member"
1148
- msgstr ""
1149
-
1150
- #: ../modules/mycred-module-hooks.php:1017 ../modules/mycred-module-hooks.php:
1151
- #: 1024 ../modules/mycred-module-hooks.php:1048 ../modules/mycred-module-hooks.
1152
- #: php:1055 ../modules/mycred-module-hooks.php:1125 ../modules/mycred-module-
1153
- #: hooks.php:1132 ../modules/mycred-module-hooks.php:1356 ../modules/mycred-
1154
- #: module-hooks.php:1496 ../modules/mycred-module-hooks.php:1513 ..
1155
- #: modules/mycred-module-hooks.php:1562 ../modules/mycred-module-hooks.php:1751 .
1156
- #: ./modules/mycred-module-hooks.php:1768 ../modules/mycred-module-hooks.php:1817
1157
- #: ../modules/mycred-module-hooks.php:3638 ../modules/mycred-module-hooks.php:
1158
- #: 3667 ../plugins/mycred-hook-invite-anyone.php:216 ../plugins/mycred-hook-
1159
- #: invite-anyone.php:219 ../plugins/mycred-hook-invite-anyone.php:237 ..
1160
- #: plugins/mycred-hook-invite-anyone.php:240 ../plugins/mycred-hook-wp-
1161
- #: postratings.php:165 ../plugins/mycred-hook-wp-postratings.php:184 ..
1162
- #: plugins/mycred-hook-gravityforms.php:160 ../plugins/mycred-hook-simplepress.
1163
- #: php:304 ../plugins/mycred-hook-simplepress.php:334 ../plugins/mycred-hook-
1164
- #: buddypress-gallery.php:111 ../plugins/mycred-hook-buddypress.php:616 ..
1165
- #: plugins/mycred-hook-buddypress.php:633 ../plugins/mycred-hook-buddypress.php:
1166
- #: 650 ../plugins/mycred-hook-buddypress.php:667 ../plugins/mycred-hook-
1167
- #: buddypress.php:684 ../plugins/mycred-hook-buddypress.php:717 ../plugins/mycred-
1168
- #: hook-buddypress.php:747 ../plugins/mycred-hook-buddypress.php:777 ..
1169
- #: plugins/mycred-hook-buddypress.php:794 ../plugins/mycred-hook-buddypress.php:
1170
- #: 1454 ../plugins/mycred-hook-buddypress.php:1471 ../plugins/mycred-hook-
1171
- #: buddypress.php:1488 ../plugins/mycred-hook-buddypress.php:1505 ..
1172
- #: plugins/mycred-hook-buddypress.php:1523 ../plugins/mycred-hook-buddypress.php:
1173
- #: 1553 ../plugins/mycred-hook-buddypress.php:1570 ../plugins/mycred-hook-
1174
- #: buddypress.php:1587 ../plugins/mycred-hook-buddypress-links.php:266 ..
1175
- #: plugins/mycred-hook-buddypress-links.php:283 ../plugins/mycred-hook-
1176
- #: buddypress-links.php:300 ../plugins/mycred-hook-buddypress-links.php:310 ..
1177
- #: plugins/mycred-hook-buddypress-links.php:319 ../plugins/mycred-hook-
1178
- #: buddypress-links.php:336 ../plugins/mycred-hook-affiliatewp.php:241 ..
1179
- #: plugins/mycred-hook-events-manager-light.php:205 ../plugins/mycred-hook-
1180
- #: sharethis.php:302 ../plugins/mycred-hook-buddypress-media.php:312 ..
1181
- #: plugins/mycred-hook-buddypress-media.php:326 ../plugins/mycred-hook-
1182
- #: buddypress-media.php:340 ../plugins/mycred-hook-wp-favorite-posts.php:222 ..
1183
- #: plugins/mycred-hook-wp-favorite-posts.php:240 ../plugins/mycred-hook-contact-
1184
- #: form7.php:163 ../plugins/mycred-hook-bbPress.php:438 ../plugins/mycred-hook-
1185
- #: bbPress.php:468 ../plugins/mycred-hook-bbPress.php:503 ../plugins/mycred-hook-
1186
- #: bbPress.php:520 ../plugins/mycred-hook-woocommerce.php:336 ..
1187
- #: includes/shortcodes/mycred_hook_table.php:81 ../addons/transfer/myCRED-addon-
1188
- #: transfer.php:478
1189
- msgid "Limit"
1190
- msgstr ""
1191
-
1192
- #: ../modules/mycred-module-hooks.php:1021 ../modules/mycred-module-hooks.php:
1193
- #: 1037 ../modules/mycred-module-hooks.php:1052 ../modules/mycred-module-hooks.
1194
- #: php:1068 ../modules/mycred-module-hooks.php:1129 ../modules/mycred-module-
1195
- #: hooks.php:1145 ../modules/mycred-module-hooks.php:2268 ../modules/mycred-
1196
- #: module-hooks.php:2285 ../modules/mycred-module-hooks.php:2302
1197
- msgid "Content Author"
1198
- msgstr ""
1199
-
1200
- #: ../modules/mycred-module-hooks.php:1042
1201
- #, php-format
1202
- msgid "%plural% for viewing Pages"
1203
- msgstr ""
1204
-
1205
- #: ../modules/mycred-module-hooks.php:1119
1206
- #, php-format
1207
- msgid "%plural% for viewing %s"
1208
- msgstr ""
1209
-
1210
- #: ../modules/mycred-module-hooks.php:1349 ../modules/mycred-module-hooks.php:
1211
- #: 2624 ../modules/mycred-module-hooks.php:3015 ../plugins/mycred-hook-wp-polls.
1212
- #: php:154 ../plugins/mycred-hook-gd-star-rating.php:121 ../plugins/mycred-hook-
1213
- #: gd-star-rating.php:134 ../plugins/mycred-hook-events-manager-light.php:209 ..
1214
- #: plugins/mycred-hook-events-manager-light.php:222 ../plugins/mycred-hook-wp-
1215
- #: favorite-posts.php:226 ../plugins/mycred-hook-wp-favorite-posts.php:244 ..
1216
- #: plugins/mycred-hook-wp-favorite-posts.php:258 ../plugins/mycred-hook-wp-
1217
- #: favorite-posts.php:271 ../plugins/mycred-hook-woocommerce.php:340 ..
1218
- #: plugins/mycred-hook-badgeOS.php:143 ../plugins/mycred-hook-badgeOS.php:145 ..
1219
- #: plugins/mycred-hook-badgeOS.php:156 ../addons/banking/services/mycred-service-
1220
- #: interest.php:510 ../addons/banking/services/mycred-service-payouts.php:708 ..
1221
- #: addons/gateway/carts/mycred-wpecommerce.php:400 ..
1222
- #: addons/gateway/carts/mycred-woocommerce.php:103 ..
1223
- #: addons/gateway/carts/mycred-woocommerce.php:175 ..
1224
- #: addons/gateway/carts/mycred-marketpress.php:433 ..
1225
- #: addons/gateway/carts/mycred-marketpress.php:472 ../addons/coupons/myCRED-
1226
- #: addon-coupons.php:661 ../addons/buy-creds/modules/buycred-module-core.php:333 .
1227
- #: ./addons/buy-creds/modules/buycred-module-core.php:396
1228
- msgid "Log Template"
1229
- msgstr ""
1230
-
1231
- #: ../modules/mycred-module-hooks.php:1490 ../modules/mycred-module-hooks.php:1745
1232
- #, php-format
1233
- msgid "%plural% for Posts"
1234
- msgstr ""
1235
-
1236
- #: ../modules/mycred-module-hooks.php:1507 ../modules/mycred-module-hooks.php:1762
1237
- #, php-format
1238
- msgid "%plural% for Pages"
1239
- msgstr ""
1240
-
1241
- #: ../modules/mycred-module-hooks.php:1556 ../modules/mycred-module-hooks.php:1811
1242
- #, php-format
1243
- msgid "%plural% for %s"
1244
- msgstr ""
1245
-
1246
- #: ../modules/mycred-module-hooks.php:2258
1247
- #, php-format
1248
- msgid ""
1249
- "%plural% are only awarded when your website has been synced with the Disqus "
1250
- "server!"
1251
- msgstr ""
1252
-
1253
- #: ../modules/mycred-module-hooks.php:2261 ../includes/classes/class.query-log.
1254
- #: php:1550
1255
- msgid "Approved Comment"
1256
- msgstr ""
1257
-
1258
- #: ../modules/mycred-module-hooks.php:2264 ../modules/mycred-module-hooks.php:
1259
- #: 2281 ../modules/mycred-module-hooks.php:2298
1260
- msgid "Comment Author"
1261
- msgstr ""
1262
-
1263
- #: ../modules/mycred-module-hooks.php:2278
1264
- msgid "Comment Marked SPAM"
1265
- msgstr ""
1266
-
1267
- #: ../modules/mycred-module-hooks.php:2295
1268
- msgid "Trashed / Unapproved Comments"
1269
- msgstr ""
1270
-
1271
- #: ../modules/mycred-module-hooks.php:2312 ../modules/mycred-module-hooks.php:
1272
- #: 2631 ../addons/banking/services/mycred-service-payouts.php:597 ..
1273
- #: addons/banking/services/mycred-service-payouts.php:758 ..
1274
- #: addons/transfer/myCRED-addon-transfer.php:435 ../addons/coupons/myCRED-addon-
1275
- #: coupons.php:250
1276
- msgid "Limits"
1277
- msgstr ""
1278
-
1279
- #: ../modules/mycred-module-hooks.php:2315
1280
- msgid "Limit per post"
1281
- msgstr ""
1282
-
1283
- #: ../modules/mycred-module-hooks.php:2317
1284
- msgid ""
1285
- "The number of comments per post that grants %_plural% to the comment author. "
1286
- "Use zero for unlimited."
1287
- msgstr ""
1288
-
1289
- #: ../modules/mycred-module-hooks.php:2321
1290
- msgid "Limit per day"
1291
- msgstr ""
1292
-
1293
- #: ../modules/mycred-module-hooks.php:2323
1294
- msgid "Number of comments per day that grants %_plural%. Use zero for unlimited."
1295
- msgstr ""
1296
-
1297
- #: ../modules/mycred-module-hooks.php:2328
1298
- #, php-format
1299
- msgid ""
1300
- "%plural% is to be awarded even when comment authors reply to their own "
1301
- "comment."
1302
- msgstr ""
1303
-
1304
- #: ../modules/mycred-module-hooks.php:2402
1305
- msgid "Once for each unique URL"
1306
- msgstr ""
1307
-
1308
- #: ../modules/mycred-module-hooks.php:2403
1309
- msgid "Once for each unique link id"
1310
- msgstr ""
1311
-
1312
- #: ../modules/mycred-module-hooks.php:2621
1313
- msgid ""
1314
- "The default amount to award for clicking on links. You can override this in "
1315
- "the shortcode."
1316
- msgstr ""
1317
-
1318
- #: ../modules/mycred-module-hooks.php:2628
1319
- #, php-format
1320
- msgid "Custom tags: %url%, %title% or %id%."
1321
- msgstr ""
1322
-
1323
- #: ../modules/mycred-module-hooks.php:2642 ../modules/mycred-module-hooks.php:3050
1324
- msgid "Available Shortcode"
1325
- msgstr ""
1326
-
1327
- #: ../modules/mycred-module-hooks.php:3012
1328
- msgid "Amount to award for viewing videos."
1329
- msgstr ""
1330
-
1331
- #: ../modules/mycred-module-hooks.php:3022
1332
- msgid "Award Logic"
1333
- msgstr ""
1334
-
1335
- #: ../modules/mycred-module-hooks.php:3024
1336
- #, php-format
1337
- msgid "Select when %_plural% should be awarded or deducted."
1338
- msgstr ""
1339
-
1340
- #: ../modules/mycred-module-hooks.php:3026
1341
- msgid "Play - As soon as video starts playing."
1342
- msgstr ""
1343
-
1344
- #: ../modules/mycred-module-hooks.php:3027
1345
- msgid "Full - First when the entire video has played."
1346
- msgstr ""
1347
-
1348
- #: ../modules/mycred-module-hooks.php:3028
1349
- msgid "Interval - For each x number of seconds watched."
1350
- msgstr ""
1351
-
1352
- #: ../modules/mycred-module-hooks.php:3032
1353
- msgid "Interval"
1354
- msgstr ""
1355
-
1356
- #: ../modules/mycred-module-hooks.php:3034
1357
- msgid "Number of seconds"
1358
- msgstr ""
1359
-
1360
- #: ../modules/mycred-module-hooks.php:3041
1361
- msgid "Leniency"
1362
- msgstr ""
1363
-
1364
- #: ../modules/mycred-module-hooks.php:3043
1365
- msgid ""
1366
- "The maximum percentage a users view of a movie can differ from the actual "
1367
- "length."
1368
- msgstr ""
1369
-
1370
- #: ../modules/mycred-module-hooks.php:3046
1371
- msgid ""
1372
- "Do not set this value to zero! A lot of thing can happen while a user "
1373
- "watches a movie and sometimes a few seconds can drop of the counter due to "
1374
- "buffering or play back errors."
1375
- msgstr ""
1376
-
1377
- #: ../modules/mycred-module-hooks.php:3121
1378
- msgid "Affiliate Program"
1379
- msgstr ""
1380
-
1381
- #: ../modules/mycred-module-hooks.php:3130
1382
- msgid "Per Day"
1383
- msgstr ""
1384
-
1385
- #: ../modules/mycred-module-hooks.php:3289
1386
- msgid "Link"
1387
- msgstr ""
1388
-
1389
- #: ../modules/mycred-module-hooks.php:3293
1390
- msgid "Visitors Referred"
1391
- msgstr ""
1392
-
1393
- #: ../modules/mycred-module-hooks.php:3297
1394
- msgid "Signups Referred"
1395
- msgstr ""
1396
-
1397
- #: ../modules/mycred-module-hooks.php:3632 ../plugins/mycred-hook-affiliatewp.php:
1398
- #: 235
1399
- msgid "Referring Visitors"
1400
- msgstr ""
1401
-
1402
- #: ../modules/mycred-module-hooks.php:3652 ../modules/mycred-module-hooks.php:3672
1403
- msgid "Referring Signups"
1404
- msgstr ""
1405
-
1406
- #: ../modules/mycred-module-hooks.php:3656
1407
- msgid "Visitors who have Cookies disabled will not award %_plural%."
1408
- msgstr ""
1409
-
1410
- #: ../modules/mycred-module-hooks.php:3674
1411
- msgid "Registrations are disabled."
1412
- msgstr ""
1413
-
1414
- #: ../modules/mycred-module-hooks.php:3682
1415
- msgid "Referral Links"
1416
- msgstr ""
1417
-
1418
- #: ../modules/mycred-module-hooks.php:3685
1419
- msgid "Assign numeric referral IDs to each user."
1420
- msgstr ""
1421
-
1422
- #: ../modules/mycred-module-hooks.php:3686 ../modules/mycred-module-hooks.php:3690
1423
- msgid "Example"
1424
- msgstr ""
1425
-
1426
- #: ../modules/mycred-module-hooks.php:3689
1427
- msgid "Assign usernames as IDs for each user."
1428
- msgstr ""
1429
-
1430
- #: ../modules/mycred-module-hooks.php:3693
1431
- msgid "IP Limit"
1432
- msgstr ""
1433
-
1434
- #: ../modules/mycred-module-hooks.php:3697
1435
- msgid "The number of times each IP address grants %_plural%. Use zero for unlimited."
1436
- msgstr ""
1437
-
1438
- #: ../modules/mycred-module-hooks.php:3701
1439
- msgid "BuddyPress Profile"
1440
- msgstr ""
1441
-
1442
- #: ../modules/mycred-module-hooks.php:3704
1443
- msgid "Insert Link in users Profile"
1444
- msgstr ""
1445
-
1446
- #: ../modules/mycred-module-hooks.php:3705
1447
- msgid ""
1448
- "Option to inser the referral link in users profiles. Links will only be "
1449
- "visible to users viewing their own profiles or administrators."
1450
- msgstr ""
1451
-
1452
- #: ../modules/mycred-module-hooks.php:3709 ../includes/mycred-widgets.php:188 ..
1453
- #: includes/mycred-widgets.php:378 ../includes/mycred-widgets.php:586 ..
1454
- #: addons/gateway/carts/mycred-woocommerce.php:91 ..
1455
- #: addons/transfer/includes/mycred-transfer-widgets.php:83 ..
1456
- #: addons/ranks/myCRED-addon-ranks.php:1331 ../addons/sell-
1457
- #: content/includes/mycred-sell-shortcodes.php:186 ../addons/buy-
1458
- #: creds/gateways/bank-transfer.php:161 ../addons/buy-creds/gateways/skrill.php:333
1459
- msgid "Title"
1460
- msgstr ""
1461
-
1462
- #: ../modules/mycred-module-hooks.php:3711
1463
- msgid "Leave empty to hide."
1464
- msgstr ""
1465
-
1466
- #: ../modules/mycred-module-hooks.php:3714
1467
- msgid "Description"
1468
- msgstr ""
1469
-
1470
- #: ../modules/mycred-module-hooks.php:3715
1471
- msgid "Optional description to insert under the link."
1472
- msgstr ""
1473
-
1474
- #: ../modules/mycred-module-hooks.php:3729
1475
- msgid "Profile Positioning"
1476
- msgstr ""
1477
-
1478
- #: ../modules/mycred-module-hooks.php:3731
1479
- msgid ""
1480
- "You can move around the referral link on your users profile by changing the "
1481
- "position. Increase to move up, decrease to move down."
1482
- msgstr ""
1483
-
1484
- #: ../modules/mycred-module-hooks.php:3732
1485
- msgid "Note!"
1486
- msgstr ""
1487
-
1488
- #: ../modules/mycred-module-hooks.php:3732
1489
- msgid "You can not move the referral link above the users \"Base\" profile details!"
1490
- msgstr ""
1491
-
1492
- #: ../modules/mycred-module-hooks.php:3741 ../addons/buy-creds/modules/buycred-
1493
- #: module-core.php:401
1494
- msgid "Available Shortcodes"
1495
- msgstr ""
1496
-
1497
- #: ../modules/mycred-module-buddypress.php:31
1498
- msgid "My History"
1499
- msgstr ""
1500
-
1501
- #: ../modules/mycred-module-buddypress.php:32
1502
- #, php-format
1503
- msgid "%s's History"
1504
- msgstr ""
1505
-
1506
- #: ../modules/mycred-module-buddypress.php:131
1507
- msgid "Current balance"
1508
- msgstr ""
1509
-
1510
- #: ../modules/mycred-module-buddypress.php:236 ../modules/mycred-module-
1511
- #: buddypress.php:249 ../includes/classes/class.query-log.php:1195
1512
- msgid "All"
1513
- msgstr ""
1514
-
1515
- #: ../modules/mycred-module-buddypress.php:237 ../includes/classes/class.query-
1516
- #: log.php:1196 ../addons/stats/widgets/mycred-stats-widget-circulation.php:190 ..
1517
- #: addons/stats/widgets/mycred-stats-widget-circulation.php:320
1518
- msgid "Today"
1519
- msgstr ""
1520
-
1521
- #: ../modules/mycred-module-buddypress.php:238 ../includes/classes/class.query-
1522
- #: log.php:1197
1523
- msgid "Yesterday"
1524
- msgstr ""
1525
-
1526
- #: ../modules/mycred-module-buddypress.php:239 ../includes/classes/class.query-
1527
- #: log.php:1198 ../addons/stats/widgets/mycred-stats-widget-circulation.php:191 ..
1528
- #: addons/stats/widgets/mycred-stats-widget-circulation.php:321
1529
- msgid "This Week"
1530
- msgstr ""
1531
-
1532
- #: ../modules/mycred-module-buddypress.php:240 ../includes/classes/class.query-
1533
- #: log.php:1199 ../addons/stats/widgets/mycred-stats-widget-circulation.php:192 ..
1534
- #: addons/stats/widgets/mycred-stats-widget-circulation.php:322
1535
- msgid "This Month"
1536
- msgstr ""
1537
-
1538
- #: ../modules/mycred-module-buddypress.php:362
1539
- msgid "Go"
1540
- msgstr ""
1541
-
1542
- #: ../modules/mycred-module-buddypress.php:414 ../addons/gateway/carts/mycred-
1543
- #: woocommerce.php:151 ../addons/badges/myCRED-addon-badges.php:1146 ..
1544
- #: addons/badges/myCRED-addon-badges.php:1182
1545
- msgid "Do not show"
1546
- msgstr ""
1547
-
1548
- #: ../modules/mycred-module-buddypress.php:415 ../addons/badges/myCRED-addon-
1549
- #: badges.php:1147
1550
- msgid "Include in Profile Header"
1551
- msgstr ""
1552
-
1553
- #: ../modules/mycred-module-buddypress.php:416 ../addons/ranks/myCRED-addon-ranks.
1554
- #: php:1420 ../addons/badges/myCRED-addon-badges.php:1148
1555
- msgid "Include under the \"Profile\" tab"
1556
- msgstr ""
1557
-
1558
- #: ../modules/mycred-module-buddypress.php:417 ../addons/badges/myCRED-addon-
1559
- #: badges.php:1149
1560
- msgid "Include under the \"Profile\" tab and Profile Header"
1561
- msgstr ""
1562
-
1563
- #: ../modules/mycred-module-buddypress.php:421 ../addons/ranks/myCRED-addon-ranks.
1564
- #: php:1418 ../addons/ranks/myCRED-addon-ranks.php:1463
1565
- msgid "Do not show."
1566
- msgstr ""
1567
-
1568
- #: ../modules/mycred-module-buddypress.php:422
1569
- msgid "Show in Profile"
1570
- msgstr ""
1571
-
1572
- #: ../modules/mycred-module-buddypress.php:439
1573
- #, php-format
1574
- msgid "%singular% Balance"
1575
- msgstr ""
1576
-
1577
- #: ../modules/mycred-module-buddypress.php:456
1578
- #, php-format
1579
- msgid "Members and visitors can view other members %_singular% balance."
1580
- msgstr ""
1581
-
1582
- #: ../modules/mycred-module-buddypress.php:461 ../addons/ranks/myCRED-addon-ranks.
1583
- #: php:1440 ../addons/ranks/myCRED-addon-ranks.php:1485 ..
1584
- #: addons/notifications/myCRED-addon-notifications.php:199
1585
- msgid "Template"
1586
- msgstr ""
1587
-
1588
- #: ../modules/mycred-module-buddypress.php:466
1589
- #, php-format
1590
- msgid "%plural% History"
1591
- msgstr ""
1592
-
1593
- #: ../modules/mycred-module-buddypress.php:483
1594
- msgid "Members can view each others %_plural% history."
1595
- msgstr ""
1596
-
1597
- #: ../modules/mycred-module-buddypress.php:488
1598
- msgid "Menu Title"
1599
- msgstr ""
1600
-
1601
- #: ../modules/mycred-module-buddypress.php:490
1602
- msgid "Title shown to me"
1603
- msgstr ""
1604
-
1605
- #: ../modules/mycred-module-buddypress.php:495
1606
- #, php-format
1607
- msgid "Title shown to others. Use %s to show the first name."
1608
- msgstr ""
1609
-
1610
- #: ../modules/mycred-module-buddypress.php:500
1611
- msgid "Menu Position"
1612
- msgstr ""
1613
-
1614
- #: ../modules/mycred-module-buddypress.php:502
1615
- msgid "Current menu positions:"
1616
- msgstr ""
1617
-
1618
- #: ../modules/mycred-module-buddypress.php:507
1619
- msgid "History URL slug"
1620
- msgstr ""
1621
-
1622
- #: ../modules/mycred-module-buddypress.php:509
1623
- msgid "Do not use empty spaces!"
1624
- msgstr ""
1625
-
1626
- #: ../modules/mycred-module-buddypress.php:514
1627
- msgid "Number of history entries to show"
1628
- msgstr ""
1629
-
1630
- #: ../plugins/mycred-hook-invite-anyone.php:15
1631
- msgid "Invite Anyone Plugin"
1632
- msgstr ""
1633
-
1634
- #: ../plugins/mycred-hook-invite-anyone.php:16
1635
- #, php-format
1636
- msgid ""
1637
- "Awards %_plural% for sending invitations and/or %_plural% if the invite is "
1638
- "accepted."
1639
- msgstr ""
1640
-
1641
- #: ../plugins/mycred-hook-invite-anyone.php:204
1642
- #, php-format
1643
- msgid "%plural% for Sending An Invite"
1644
- msgstr ""
1645
-
1646
- #: ../plugins/mycred-hook-invite-anyone.php:224
1647
- #, php-format
1648
- msgid "%plural% for Accepting An Invite"
1649
- msgstr ""
1650
-
1651
- #: ../plugins/mycred-hook-invite-anyone.php:228
1652
- #, php-format
1653
- msgid "%plural% for each invited user that accepts an invitation."
1654
- msgstr ""
1655
-
1656
- #: ../plugins/mycred-hook-wp-polls.php:15
1657
- msgid "WP-Polls"
1658
- msgstr ""
1659
-
1660
- #: ../plugins/mycred-hook-wp-polls.php:16
1661
- #, php-format
1662
- msgid "Awards %_plural% for users voting in polls."
1663
- msgstr ""
1664
-
1665
- #: ../plugins/mycred-hook-wp-postratings.php:15
1666
- msgid "Post Ratings"
1667
- msgstr ""
1668
-
1669
- #: ../plugins/mycred-hook-wp-postratings.php:16
1670
- #, php-format
1671
- msgid ""
1672
- "Awards %_plural% for post ratings. Supports awarding %_plural% both to post "
1673
- "author and the user rating."
1674
- msgstr ""
1675
-
1676
- #: ../plugins/mycred-hook-wp-postratings.php:84
1677
- msgid "Based on rating"
1678
- msgstr ""
1679
-
1680
- #: ../plugins/mycred-hook-wp-postratings.php:159 ../includes/classes/class.query-
1681
- #: log.php:1629
1682
- msgid "Adding a Rating"
1683
- msgstr ""
1684
-
1685
- #: ../plugins/mycred-hook-wp-postratings.php:169 ../plugins/mycred-hook-wp-
1686
- #: postratings.php:188
1687
- msgid "Use the Rating Value instead of the amount set here."
1688
- msgstr ""
1689
-
1690
- #: ../plugins/mycred-hook-wp-postratings.php:178 ../includes/classes/class.query-
1691
- #: log.php:1630
1692
- msgid "Receiving a Rating"
1693
- msgstr ""
1694
-
1695
- #: ../plugins/mycred-hook-gravityforms.php:15
1696
- msgid "Gravityform Submissions"
1697
- msgstr ""
1698
-
1699
- #: ../plugins/mycred-hook-gravityforms.php:16
1700
- #, php-format
1701
- msgid "Awards %_plural% for successful form submissions."
1702
- msgstr ""
1703
-
1704
- #: ../plugins/mycred-hook-gravityforms.php:129 ../plugins/mycred-hook-contact-
1705
- #: form7.php:130
1706
- msgid "No forms found."
1707
- msgstr ""
1708
-
1709
- #: ../plugins/mycred-hook-gd-star-rating.php:15
1710
- msgid "GD Star Rating"
1711
- msgstr ""
1712
-
1713
- #: ../plugins/mycred-hook-gd-star-rating.php:16
1714
- #, php-format
1715
- msgid "Awards %_plural% for users rate items using the GD Star Rating plugin."
1716
- msgstr ""
1717
-
1718
- #: ../plugins/mycred-hook-gd-star-rating.php:115
1719
- msgid "Rating"
1720
- msgstr ""
1721
-
1722
- #: ../plugins/mycred-hook-gd-star-rating.php:128
1723
- msgid "Up / Down Vote"
1724
- msgstr ""
1725
-
1726
- #: ../plugins/mycred-hook-simplepress.php:16
1727
- #, php-format
1728
- msgid "Awards %_plural% for Simple:Press actions."
1729
- msgstr ""
1730
-
1731
- #: ../plugins/mycred-hook-simplepress.php:298 ../plugins/mycred-hook-bbPress.php:
1732
- #: 462
1733
- #, php-format
1734
- msgid "%plural% for New Topic"
1735
- msgstr ""
1736
-
1737
- #: ../plugins/mycred-hook-simplepress.php:315 ../plugins/mycred-hook-bbPress.php:
1738
- #: 484
1739
- #, php-format
1740
- msgid "%plural% for Topic Deletion"
1741
- msgstr ""
1742
-
1743
- #: ../plugins/mycred-hook-simplepress.php:328
1744
- #, php-format
1745
- msgid "%plural% for New Topic Post"
1746
- msgstr ""
1747
-
1748
- #: ../plugins/mycred-hook-simplepress.php:346
1749
- #, php-format
1750
- msgid "Topic authors can receive %_plural% for posting on their own Topic"
1751
- msgstr ""
1752
-
1753
- #: ../plugins/mycred-hook-simplepress.php:350
1754
- #, php-format
1755
- msgid "%plural% for Topic Post Deletion"
1756
- msgstr ""
1757
-
1758
- #: ../plugins/mycred-hook-marketpress.php:70 ../plugins/mycred-hook-woocommerce.
1759
- #: php:87
1760
- #, php-format
1761
- msgid "Reward with %plural%"
1762
- msgstr ""
1763
-
1764
- #: ../plugins/mycred-hook-buddypress-gallery.php:15
1765
- msgid "BuddyPress: Gallery Actions"
1766
- msgstr ""
1767
-
1768
- #: ../plugins/mycred-hook-buddypress-gallery.php:16
1769
- #, php-format
1770
- msgid ""
1771
- "Awards %_plural% for creating a new gallery either using BP Album+ or BP "
1772
- "Gallery."
1773
- msgstr ""
1774
-
1775
- #: ../plugins/mycred-hook-buddypress-gallery.php:105
1776
- #, php-format
1777
- msgid "%plural% for New Gallery"
1778
- msgstr ""
1779
-
1780
- #: ../plugins/mycred-hook-buddypress.php:16
1781
- msgid "BuddyPress: Members"
1782
- msgstr ""
1783
-
1784
- #: ../plugins/mycred-hook-buddypress.php:17
1785
- #, php-format
1786
- msgid "Awards %_plural% for profile related actions."
1787
- msgstr ""
1788
-
1789
- #: ../plugins/mycred-hook-buddypress.php:24
1790
- msgid "BuddyPress: Groups"
1791
- msgstr ""
1792
-
1793
- #: ../plugins/mycred-hook-buddypress.php:25
1794
- #, php-format
1795
- msgid ""
1796
- "Awards %_plural% for group related actions. Use minus to deduct %_plural% or "
1797
- "zero to disable a specific hook."
1798
- msgstr ""
1799
-
1800
- #: ../plugins/mycred-hook-buddypress.php:307 ../addons/gateway/event-
1801
- #: booking/mycred-eventsmanager.php:636 ../addons/gateway/event-booking/mycred-
1802
- #: eventsmanager-pro.php:727 ../addons/gateway/carts/mycred-wpecommerce.php:415 ..
1803
- #: addons/gateway/carts/mycred-marketpress.php:482 ../addons/sell-content/myCRED-
1804
- #: addon-sell-content.php:519
1805
- msgid "Insufficient Funds"
1806
- msgstr ""
1807
-
1808
- #: ../plugins/mycred-hook-buddypress.php:610
1809
- msgid "New Profile Activity"
1810
- msgstr ""
1811
-
1812
- #: ../plugins/mycred-hook-buddypress.php:627
1813
- msgid "Deleted Profile Activity"
1814
- msgstr ""
1815
-
1816
- #: ../plugins/mycred-hook-buddypress.php:644
1817
- msgid "New Profile Avatar"
1818
- msgstr ""
1819
-
1820
- #: ../plugins/mycred-hook-buddypress.php:661
1821
- msgid "New Profile Cover Image"
1822
- msgstr ""
1823
-
1824
- #: ../plugins/mycred-hook-buddypress.php:678 ../includes/classes/class.query-log.
1825
- #: php:1565
1826
- msgid "New Friendship"
1827
- msgstr ""
1828
-
1829
- #: ../plugins/mycred-hook-buddypress.php:688
1830
- #, php-format
1831
- msgid ""
1832
- "Users with zero balance can not add friends. Requires that you deduct "
1833
- "%_plural% for adding a new friend."
1834
- msgstr ""
1835
-
1836
- #: ../plugins/mycred-hook-buddypress.php:698
1837
- msgid "Ending Friendship"
1838
- msgstr ""
1839
-
1840
- #: ../plugins/mycred-hook-buddypress.php:711
1841
- msgid "New Comment"
1842
- msgstr ""
1843
-
1844
- #: ../plugins/mycred-hook-buddypress.php:728 ../includes/classes/class.query-log.
1845
- #: php:1553
1846
- msgid "Deleted Comment"
1847
- msgstr ""
1848
-
1849
- #: ../plugins/mycred-hook-buddypress.php:741
1850
- msgid "Favorit Activity"
1851
- msgstr ""
1852
-
1853
- #: ../plugins/mycred-hook-buddypress.php:758
1854
- msgid "Removing Favorit Activity"
1855
- msgstr ""
1856
-
1857
- #: ../plugins/mycred-hook-buddypress.php:771
1858
- msgid "New Private Message"
1859
- msgstr ""
1860
-
1861
- #: ../plugins/mycred-hook-buddypress.php:788 ../includes/classes/class.query-log.
1862
- #: php:1572
1863
- msgid "Sending Gift"
1864
- msgstr ""
1865
-
1866
- #: ../plugins/mycred-hook-buddypress.php:1415
1867
- #, php-format
1868
- msgid "%plural% for Creating Groups"
1869
- msgstr ""
1870
-
1871
- #: ../plugins/mycred-hook-buddypress.php:1419
1872
- msgid ""
1873
- "If you use a negative value and the user does not have enough %_plural% the "
1874
- "\"Create Group\" button will be disabled."
1875
- msgstr ""
1876
-
1877
- #: ../plugins/mycred-hook-buddypress.php:1423
1878
- msgid "Number of members before awarding %_plural%"
1879
- msgstr ""
1880
-
1881
- #: ../plugins/mycred-hook-buddypress.php:1425
1882
- msgid "Use zero to award %_plural% when group is created."
1883
- msgstr ""
1884
-
1885
- #: ../plugins/mycred-hook-buddypress.php:1435
1886
- #, php-format
1887
- msgid "%plural% for Deleting Groups"
1888
- msgstr ""
1889
-
1890
- #: ../plugins/mycred-hook-buddypress.php:1448
1891
- #, php-format
1892
- msgid "%plural% for New Forum Topic"
1893
- msgstr ""
1894
-
1895
- #: ../plugins/mycred-hook-buddypress.php:1465
1896
- #, php-format
1897
- msgid "%plural% for Editing Forum Topic"
1898
- msgstr ""
1899
-
1900
- #: ../plugins/mycred-hook-buddypress.php:1482
1901
- #, php-format
1902
- msgid "%plural% for New Forum Post"
1903
- msgstr ""
1904
-
1905
- #: ../plugins/mycred-hook-buddypress.php:1499
1906
- #, php-format
1907
- msgid "%plural% for Editing Forum Post"
1908
- msgstr ""
1909
-
1910
- #: ../plugins/mycred-hook-buddypress.php:1516
1911
- #, php-format
1912
- msgid "%plural% for Joining Groups"
1913
- msgstr ""
1914
-
1915
- #: ../plugins/mycred-hook-buddypress.php:1520
1916
- msgid ""
1917
- "If you use a negative value and the user does not have enough %_plural% the "
1918
- "\"Join Group\" button will be disabled."
1919
- msgstr ""
1920
-
1921
- #: ../plugins/mycred-hook-buddypress.php:1534
1922
- #, php-format
1923
- msgid "%plural% for Leaving Groups"
1924
- msgstr ""
1925
-
1926
- #: ../plugins/mycred-hook-buddypress.php:1547
1927
- #, php-format
1928
- msgid "%plural% for New Group Avatar"
1929
- msgstr ""
1930
-
1931
- #: ../plugins/mycred-hook-buddypress.php:1564
1932
- #, php-format
1933
- msgid "%plural% for New Cover Image"
1934
- msgstr ""
1935
-
1936
- #: ../plugins/mycred-hook-buddypress.php:1581
1937
- #, php-format
1938
- msgid "%plural% for New Group Comment"
1939
- msgstr ""
1940
-
1941
- #: ../plugins/mycred-hook-buddypress-links.php:15
1942
- msgid "BuddyPress: Links"
1943
- msgstr ""
1944
-
1945
- #: ../plugins/mycred-hook-buddypress-links.php:16
1946
- #, php-format
1947
- msgid "Awards %_plural% for link related actions."
1948
- msgstr ""
1949
-
1950
- #: ../plugins/mycred-hook-buddypress-links.php:260
1951
- #, php-format
1952
- msgid "%plural% for New Links"
1953
- msgstr ""
1954
-
1955
- #: ../plugins/mycred-hook-buddypress-links.php:277
1956
- #, php-format
1957
- msgid "%plural% for Vote on Link"
1958
- msgstr ""
1959
-
1960
- #: ../plugins/mycred-hook-buddypress-links.php:293
1961
- #, php-format
1962
- msgid "%plural% per received Vote"
1963
- msgstr ""
1964
-
1965
- #: ../plugins/mycred-hook-buddypress-links.php:296
1966
- msgid "Vote Up"
1967
- msgstr ""
1968
-
1969
- #: ../plugins/mycred-hook-buddypress-links.php:315
1970
- msgid "Vote Down"
1971
- msgstr ""
1972
-
1973
- #: ../plugins/mycred-hook-buddypress-links.php:330
1974
- #, php-format
1975
- msgid "%plural% for Updating Links"
1976
- msgstr ""
1977
-
1978
- #: ../plugins/mycred-hook-buddypress-links.php:347
1979
- #, php-format
1980
- msgid "%plural% for Deleting Links"
1981
- msgstr ""
1982
-
1983
- #: ../plugins/mycred-hook-affiliatewp.php:15
1984
- msgid "AffiliateWP"
1985
- msgstr ""
1986
-
1987
- #: ../plugins/mycred-hook-affiliatewp.php:16
1988
- #, php-format
1989
- msgid ""
1990
- "Awards %_plural% for affiliate signups, referring visitors and store sale "
1991
- "referrals."
1992
- msgstr ""
1993
-
1994
- #: ../plugins/mycred-hook-affiliatewp.php:222
1995
- msgid "Affiliate Signup"
1996
- msgstr ""
1997
-
1998
- #: ../plugins/mycred-hook-affiliatewp.php:252
1999
- msgid "Referring Sales"
2000
- msgstr ""
2001
-
2002
- #: ../plugins/mycred-hook-affiliatewp.php:255
2003
- msgid "Pay a set amount for all referrals."
2004
- msgstr ""
2005
-
2006
- #: ../plugins/mycred-hook-affiliatewp.php:256
2007
- #, php-format
2008
- msgid "AffiliateWP will use %plural% as currency so pay the referral amount."
2009
- msgstr ""
2010
-
2011
- #: ../plugins/mycred-hook-affiliatewp.php:257
2012
- msgid "Apply an exchange rate against the referral amount."
2013
- msgstr ""
2014
-
2015
- #: ../plugins/mycred-hook-affiliatewp.php:265
2016
- msgid "Log template - Payout"
2017
- msgstr ""
2018
-
2019
- #: ../plugins/mycred-hook-affiliatewp.php:270
2020
- msgid "Log template - Refund"
2021
- msgstr ""
2022
-
2023
- #: ../plugins/mycred-hook-events-manager-light.php:15
2024
- msgid "Events Manager"
2025
- msgstr ""
2026
-
2027
- #: ../plugins/mycred-hook-events-manager-light.php:16
2028
- #, php-format
2029
- msgid "Awards %_plural% for users attending events."
2030
- msgstr ""
2031
-
2032
- #: ../plugins/mycred-hook-events-manager-light.php:199
2033
- msgid "Attending Event"
2034
- msgstr ""
2035
-
2036
- #: ../plugins/mycred-hook-events-manager-light.php:216
2037
- msgid "Cancelling Attendance"
2038
- msgstr ""
2039
-
2040
- #: ../plugins/mycred-hook-sharethis.php:15
2041
- #, php-format
2042
- msgid "%plural% for Sharing"
2043
- msgstr ""
2044
-
2045
- #: ../plugins/mycred-hook-sharethis.php:16
2046
- #, php-format
2047
- msgid ""
2048
- "Awards %_plural% for users sharing / liking your website content to popular "
2049
- "social media sites."
2050
- msgstr ""
2051
-
2052
- #: ../plugins/mycred-hook-sharethis.php:257
2053
- msgid "Your ShareThis public key is not set."
2054
- msgstr ""
2055
-
2056
- #: ../plugins/mycred-hook-sharethis.php:262
2057
- msgid "No ShareThis services detected. Please check your installation."
2058
- msgstr ""
2059
-
2060
- #: ../plugins/mycred-hook-buddypress-media.php:15
2061
- msgid "rtMedia Galleries"
2062
- msgstr ""
2063
-
2064
- #: ../plugins/mycred-hook-buddypress-media.php:16
2065
- #, php-format
2066
- msgid "Award / Deduct %_plural% for users creating albums or uploading new photos."
2067
- msgstr ""
2068
-
2069
- #: ../plugins/mycred-hook-buddypress-media.php:305
2070
- msgid "New Media Upload"
2071
- msgstr ""
2072
-
2073
- #: ../plugins/mycred-hook-buddypress-media.php:308 ../includes/classes/class.
2074
- #: query-log.php:1587
2075
- msgid "Photo Upload"
2076
- msgstr ""
2077
-
2078
- #: ../plugins/mycred-hook-buddypress-media.php:322 ../includes/classes/class.
2079
- #: query-log.php:1588
2080
- msgid "Video Upload"
2081
- msgstr ""
2082
-
2083
- #: ../plugins/mycred-hook-buddypress-media.php:336 ../includes/classes/class.
2084
- #: query-log.php:1589
2085
- msgid "Music Upload"
2086
- msgstr ""
2087
-
2088
- #: ../plugins/mycred-hook-buddypress-media.php:350
2089
- msgid "Delete Media"
2090
- msgstr ""
2091
-
2092
- #: ../plugins/mycred-hook-buddypress-media.php:353
2093
- msgid "Delete Photo"
2094
- msgstr ""
2095
-
2096
- #: ../plugins/mycred-hook-buddypress-media.php:363
2097
- msgid "Delete Video"
2098
- msgstr ""
2099
-
2100
- #: ../plugins/mycred-hook-buddypress-media.php:373
2101
- msgid "Delete Music"
2102
- msgstr ""
2103
-
2104
- #: ../plugins/mycred-hook-wp-favorite-posts.php:15
2105
- msgid "WP Favorite Posts"
2106
- msgstr ""
2107
-
2108
- #: ../plugins/mycred-hook-wp-favorite-posts.php:16
2109
- #, php-format
2110
- msgid "Awards %_plural% for users adding posts to their favorites."
2111
- msgstr ""
2112
-
2113
- #: ../plugins/mycred-hook-wp-favorite-posts.php:216
2114
- msgid "Adding Content to Favorites"
2115
- msgstr ""
2116
-
2117
- #: ../plugins/mycred-hook-wp-favorite-posts.php:234
2118
- msgid "Authors Content added to favorites"
2119
- msgstr ""
2120
-
2121
- #: ../plugins/mycred-hook-wp-favorite-posts.php:252
2122
- msgid "Removing Content from Favorites"
2123
- msgstr ""
2124
-
2125
- #: ../plugins/mycred-hook-wp-favorite-posts.php:265
2126
- msgid "Removing Content from Favorites (Author)"
2127
- msgstr ""
2128
-
2129
- #: ../plugins/mycred-hook-contact-form7.php:15
2130
- msgid "Contact Form 7 Form Submissions"
2131
- msgstr ""
2132
-
2133
- #: ../plugins/mycred-hook-contact-form7.php:16
2134
- #, php-format
2135
- msgid "Awards %_plural% for successful form submissions (by logged in users)."
2136
- msgstr ""
2137
-
2138
- #: ../plugins/mycred-hook-jetpack.php:15
2139
- msgid "Jetpack Subscriptions"
2140
- msgstr ""
2141
-
2142
- #: ../plugins/mycred-hook-jetpack.php:16
2143
- #, php-format
2144
- msgid ""
2145
- "Awards %_plural% for users signing up for site or comment updates using "
2146
- "Jetpack."
2147
- msgstr ""
2148
-
2149
- #: ../plugins/mycred-hook-jetpack.php:538
2150
- msgid "Site Subscriptions"
2151
- msgstr ""
2152
-
2153
- #: ../plugins/mycred-hook-jetpack.php:551
2154
- msgid "Comment Subscriptions"
2155
- msgstr ""
2156
-
2157
- #: ../plugins/mycred-hook-bbPress.php:15
2158
- msgid "bbPress"
2159
- msgstr ""
2160
-
2161
- #: ../plugins/mycred-hook-bbPress.php:16
2162
- #, php-format
2163
- msgid "Awards %_plural% for bbPress actions."
2164
- msgstr ""
2165
-
2166
- #: ../plugins/mycred-hook-bbPress.php:432
2167
- #, php-format
2168
- msgid "%plural% for New Forum"
2169
- msgstr ""
2170
-
2171
- #: ../plugins/mycred-hook-bbPress.php:449
2172
- #, php-format
2173
- msgid "%plural% for Forum Deletion"
2174
- msgstr ""
2175
-
2176
- #: ../plugins/mycred-hook-bbPress.php:480
2177
- #, php-format
2178
- msgid "Forum authors can receive %_plural% for creating new topics."
2179
- msgstr ""
2180
-
2181
- #: ../plugins/mycred-hook-bbPress.php:497
2182
- #, php-format
2183
- msgid "%plural% for Favorited Topic"
2184
- msgstr ""
2185
-
2186
- #: ../plugins/mycred-hook-bbPress.php:514
2187
- #, php-format
2188
- msgid "%plural% for New Reply"
2189
- msgstr ""
2190
-
2191
- #: ../plugins/mycred-hook-bbPress.php:532
2192
- #, php-format
2193
- msgid "Topic authors can receive %_plural% for replying to their own Topic"
2194
- msgstr ""
2195
-
2196
- #: ../plugins/mycred-hook-bbPress.php:536
2197
- #, php-format
2198
- msgid "Show users %_plural% balance in replies"
2199
- msgstr ""
2200
-
2201
- #: ../plugins/mycred-hook-bbPress.php:540
2202
- #, php-format
2203
- msgid "Show users %_plural% balance in their bbPress profiles."
2204
- msgstr ""
2205
-
2206
- #: ../plugins/mycred-hook-bbPress.php:544
2207
- #, php-format
2208
- msgid "%plural% for Reply Deletion"
2209
- msgstr ""
2210
-
2211
- #: ../plugins/mycred-hook-woocommerce.php:216
2212
- msgid "WooCommerce Product Reviews"
2213
- msgstr ""
2214
-
2215
- #: ../plugins/mycred-hook-woocommerce.php:217
2216
- #, php-format
2217
- msgid "Awards %_plural% for users leaving reviews on your WooCommerce products."
2218
- msgstr ""
2219
-
2220
- #: ../plugins/mycred-hook-badgeOS.php:15
2221
- msgid "BadgeOS"
2222
- msgstr ""
2223
-
2224
- #: ../plugins/mycred-hook-badgeOS.php:16
2225
- msgid ""
2226
- "Default settings for each BadgeOS Achievement type. These settings may be "
2227
- "overridden for individual achievement type."
2228
- msgstr ""
2229
-
2230
- #: ../plugins/mycred-hook-badgeOS.php:121
2231
- #, php-format
2232
- msgid ""
2233
- "Please setup your <a href=\"%s\">default settings</a> before using this "
2234
- "feature."
2235
- msgstr ""
2236
-
2237
- #: ../plugins/mycred-hook-badgeOS.php:137 ../plugins/mycred-hook-badgeOS.php:139
2238
- #, php-format
2239
- msgid "%plural% to Award"
2240
- msgstr ""
2241
-
2242
- #: ../plugins/mycred-hook-badgeOS.php:141
2243
- msgid "Use zero to disable"
2244
- msgstr ""
2245
-
2246
- #: ../plugins/mycred-hook-badgeOS.php:154
2247
- msgid "Deduction Log Template"
2248
- msgstr ""
2249
-
2250
- #: ../plugins/mycred-hook-badgeOS.php:315
2251
- #, php-format
2252
- msgid "Default %s for %s"
2253
- msgstr ""
2254
-
2255
- #: ../plugins/mycred-hook-badgeOS.php:322
2256
- msgid "Use zero to disable users gaining %_plural%"
2257
- msgstr ""
2258
-
2259
- #: ../plugins/mycred-hook-badgeOS.php:326
2260
- msgid "Default Log template"
2261
- msgstr ""
2262
-
2263
- #: ../includes/mycred-setup.php:50
2264
- msgid "myCRED needs your attention."
2265
- msgstr ""
2266
-
2267
- #: ../includes/mycred-setup.php:50
2268
- msgid "Run Setup"
2269
- msgstr ""
2270
-
2271
- #: ../includes/mycred-setup.php:63 ../includes/mycred-setup.php:64
2272
- msgid "myCRED Setup"
2273
- msgstr ""
2274
-
2275
- #: ../includes/mycred-setup.php:105 ../addons/sell-content/myCRED-addon-sell-
2276
- #: content.php:418
2277
- #, php-format
2278
- msgid "%s Setup"
2279
- msgstr ""
2280
-
2281
- #: ../includes/mycred-setup.php:106
2282
- #, php-format
2283
- msgid ""
2284
- "Before you can begin using %s, you must setup your first point type. This "
2285
- "includes what you want to call your points, how these points are presented "
2286
- "and who has access to it."
2287
- msgstr ""
2288
-
2289
- #: ../includes/mycred-setup.php:111
2290
- msgid "Your First Point Type"
2291
- msgstr ""
2292
-
2293
- #: ../includes/mycred-setup.php:127
2294
- msgid "Advanced Settings"
2295
- msgstr ""
2296
-
2297
- #: ../includes/mycred-setup.php:133
2298
- msgid "Change Default Point Type Key"
2299
- msgstr ""
2300
-
2301
- #: ../includes/mycred-setup.php:135
2302
- msgid ""
2303
- "You can change the meta key used to store the default point type using the "
2304
- "MYCRED_DEFAULT_TYPE_KEY constant. Copy the above code to your wp-config.php "
2305
- "file to use."
2306
- msgstr ""
2307
-
2308
- #: ../includes/mycred-setup.php:136
2309
- msgid ""
2310
- "If you intend to change the default meta key, you should do so before "
2311
- "continuing on in this setup!"
2312
- msgstr ""
2313
-
2314
- #: ../includes/mycred-setup.php:139
2315
- msgid "Whitelabel"
2316
- msgstr ""
2317
-
2318
- #: ../includes/mycred-setup.php:141
2319
- msgid ""
2320
- "You can re-label myCRED using the MYCRED_DEFAULT_LABEL constant. Copy the "
2321
- "above code to your wp-config.php file to use."
2322
- msgstr ""
2323
-
2324
- #: ../includes/mycred-setup.php:149
2325
- msgid "Create Point Type"
2326
- msgstr ""
2327
-
2328
- #: ../includes/mycred-setup.php:149
2329
- msgid "Hide"
2330
- msgstr ""
2331
-
2332
- #: ../includes/mycred-setup.php:149 ../includes/mycred-setup.php:149
2333
- msgid "Advanced"
2334
- msgstr ""
2335
-
2336
- #: ../includes/mycred-setup.php:155
2337
- msgid "Processing ..."
2338
- msgstr ""
2339
-
2340
- #: ../includes/mycred-setup.php:160
2341
- msgid "Setup Complete!"
2342
- msgstr ""
2343
-
2344
- #: ../includes/mycred-setup.php:161
2345
- msgid "Congratulations! You are now ready to use myCRED. What's next?"
2346
- msgstr ""
2347
-
2348
- #: ../includes/mycred-setup.php:166
2349
- msgid "Enabling Hooks"
2350
- msgstr ""
2351
-
2352
- #: ../includes/mycred-setup.php:167
2353
- msgid ""
2354
- "If you intend to give your users points for interacting with your website "
2355
- "automatically, your next step should be to enable and setup the hooks you "
2356
- "want to use."
2357
- msgstr ""
2358
-
2359
- #: ../includes/mycred-setup.php:168
2360
- msgid "Setup Hooks"
2361
- msgstr ""
2362
-
2363
- #: ../includes/mycred-setup.php:172
2364
- msgid ""
2365
- "If you want to use advanced features such as Transfers, Point Purchases etc. "
2366
- "your next step should be to enable and setup your add-ons."
2367
- msgstr ""
2368
-
2369
- #: ../includes/mycred-setup.php:173
2370
- msgid "Setup Add-ons"
2371
- msgstr ""
2372
-
2373
- #: ../includes/mycred-setup.php:176
2374
- msgid "Adjust Settings"
2375
- msgstr ""
2376
-
2377
- #: ../includes/mycred-setup.php:177
2378
- msgid ""
2379
- "If you need to make further changes to your settings or add new point types, "
2380
- "you can visit your default point type's settings."
2381
- msgstr ""
2382
-
2383
- #: ../includes/mycred-setup.php:178
2384
- msgid "View Settings"
2385
- msgstr ""
2386
-
2387
- #: ../includes/mycred-setup.php:322
2388
- msgid "Set to decimals to zero if you prefer to use whole numbers."
2389
- msgstr ""
2390
-
2391
- #: ../includes/mycred-setup.php:442
2392
- msgid "Please make sure you fill out all required fields!"
2393
- msgstr ""
2394
-
2395
- #: ../includes/importers/mycred-cubepoints.php:298
2396
- msgid "No balances were imported."
2397
- msgstr ""
2398
-
2399
- #: ../includes/importers/mycred-cubepoints.php:298
2400
- msgid "No log entries were imported!"
2401
- msgstr ""
2402
-
2403
- #: ../includes/importers/mycred-cubepoints.php:306 ../includes/importers/mycred-
2404
- #: log-entries.php:168
2405
- #, php-format
2406
- msgid ""
2407
- "Import complete - A total of <strong>%d</strong> entries were successfully "
2408
- "imported. <strong>%d</strong> was skipped."
2409
- msgstr ""
2410
-
2411
- #: ../includes/importers/mycred-cubepoints.php:320 ../includes/importers/mycred-
2412
- #: balances.php:212 ../includes/importers/mycred-log-entries.php:180 ..
2413
- #: addons/stats/abstracts/mycred-abstract-stat-widget.php:100
2414
- msgid "View Log"
2415
- msgstr ""
2416
-
2417
- #: ../includes/importers/mycred-cubepoints.php:320 ../includes/importers/mycred-
2418
- #: balances.php:212 ../includes/importers/mycred-log-entries.php:180
2419
- msgid "Import More"
2420
- msgstr ""
2421
-
2422
- #: ../includes/importers/mycred-cubepoints.php:335
2423
- msgid "No CubePoints log."
2424
- msgstr ""
2425
-
2426
- #: ../includes/importers/mycred-cubepoints.php:348
2427
- msgid "Import CubePoints Log"
2428
- msgstr ""
2429
-
2430
- #: ../includes/importers/mycred-cubepoints.php:369
2431
- msgid "Select what to import"
2432
- msgstr ""
2433
-
2434
- #: ../includes/importers/mycred-cubepoints.php:370
2435
- msgid "Log Entries Only"
2436
- msgstr ""
2437
-
2438
- #: ../includes/importers/mycred-cubepoints.php:371
2439
- msgid "CubePoints Balances Only"
2440
- msgstr ""
2441
-
2442
- #: ../includes/importers/mycred-cubepoints.php:372
2443
- msgid "Log Entries and Balances"
2444
- msgstr ""
2445
-
2446
- #: ../includes/importers/mycred-cubepoints.php:379 ../mycred.php:590
2447
- msgid "Import CubePoints log entries and / or balances."
2448
- msgstr ""
2449
-
2450
- #: ../includes/importers/mycred-cubepoints.php:387
2451
- msgid "Import"
2452
- msgstr ""
2453
-
2454
- #: ../includes/importers/mycred-cubepoints.php:396
2455
- msgid ""
2456
- "Warning! Importing CubePoints balances will replace your users myCRED "
2457
- "balance!"
2458
- msgstr ""
2459
-
2460
- #: ../includes/importers/mycred-cubepoints.php:420
2461
- msgid "Import Log"
2462
- msgstr ""
2463
-
2464
- #: ../includes/importers/mycred-balances.php:104 ../includes/importers/mycred-
2465
- #: balances.php:187 ../includes/importers/mycred-balances.php:230 ..
2466
- #: includes/importers/mycred-balances.php:245 ../includes/importers/mycred-log-
2467
- #: entries.php:104 ../includes/importers/mycred-log-entries.php:153 ..
2468
- #: includes/importers/mycred-log-entries.php:199 ../includes/importers/mycred-
2469
- #: log-entries.php:216
2470
- msgid "Sorry, there has been an error."
2471
- msgstr ""
2472
-
2473
- #: ../includes/importers/mycred-balances.php:105 ../includes/importers/mycred-log-
2474
- #: entries.php:105
2475
- msgid "The file does not exist, please try again."
2476
- msgstr ""
2477
-
2478
- #: ../includes/importers/mycred-balances.php:188 ../includes/importers/mycred-log-
2479
- #: entries.php:154
2480
- msgid "The CSV is invalid."
2481
- msgstr ""
2482
-
2483
- #: ../includes/importers/mycred-balances.php:200
2484
- #, php-format
2485
- msgid ""
2486
- "Import complete - A total of <strong>%d</strong> balances were successfully "
2487
- "imported. <strong>%d</strong> was skipped."
2488
- msgstr ""
2489
-
2490
- #: ../includes/importers/mycred-balances.php:261
2491
- msgid "Import Balances"
2492
- msgstr ""
2493
-
2494
- #: ../includes/importers/mycred-balances.php:282
2495
- msgid "Import balances from a CSV file."
2496
- msgstr ""
2497
-
2498
- #: ../includes/importers/mycred-balances.php:293 ../includes/importers/mycred-log-
2499
- #: entries.php:263
2500
- msgid ""
2501
- "Before you can upload your import file, you will need to fix the following "
2502
- "error:"
2503
- msgstr ""
2504
-
2505
- #: ../includes/importers/mycred-balances.php:305 ../includes/importers/mycred-log-
2506
- #: entries.php:275
2507
- msgid "Choose a file from your computer:"
2508
- msgstr ""
2509
-
2510
- #: ../includes/importers/mycred-balances.php:311 ../includes/importers/mycred-log-
2511
- #: entries.php:281
2512
- #, php-format
2513
- msgid "Maximum size: %s"
2514
- msgstr ""
2515
-
2516
- #: ../includes/importers/mycred-balances.php:316 ../includes/importers/mycred-log-
2517
- #: entries.php:286
2518
- msgid "OR enter path to file:"
2519
- msgstr ""
2520
-
2521
- #: ../includes/importers/mycred-balances.php:323 ../includes/importers/mycred-log-
2522
- #: entries.php:293
2523
- msgid "Delimiter"
2524
- msgstr ""
2525
-
2526
- #: ../includes/importers/mycred-balances.php:327
2527
- msgid "Method"
2528
- msgstr ""
2529
-
2530
- #: ../includes/importers/mycred-balances.php:329
2531
- msgid "Replace current balances with the amount in this CSV file"
2532
- msgstr ""
2533
-
2534
- #: ../includes/importers/mycred-balances.php:330
2535
- msgid "Adjust current balances according to the amount in this CSV file"
2536
- msgstr ""
2537
-
2538
- #: ../includes/importers/mycred-balances.php:336 ../includes/importers/mycred-log-
2539
- #: entries.php:299
2540
- msgid "Upload file and import"
2541
- msgstr ""
2542
-
2543
- #: ../includes/importers/mycred-log-entries.php:232
2544
- msgid "Import Log Entries"
2545
- msgstr ""
2546
-
2547
- #: ../includes/importers/mycred-log-entries.php:253
2548
- msgid "Import log entries from a CSV file."
2549
- msgstr ""
2550
-
2551
- #: ../includes/shortcodes/mycred_exchange.php:27 ..
2552
- #: includes/shortcodes/mycred_hook_table.php:24 ..
2553
- #: includes/shortcodes/mycred_give.php:29
2554
- msgid "Point type not found."
2555
- msgstr ""
2556
-
2557
- #: ../includes/shortcodes/mycred_exchange.php:33 ..
2558
- #: includes/shortcodes/mycred_exchange.php:41 ..
2559
- #: includes/shortcodes/mycred_exchange.php:136 ..
2560
- #: includes/shortcodes/mycred_exchange.php:156
2561
- #, php-format
2562
- msgid "You are excluded from using %s."
2563
- msgstr ""
2564
-
2565
- #: ../includes/shortcodes/mycred_exchange.php:37 ..
2566
- #: includes/shortcodes/mycred_exchange.php:146
2567
- msgid "Your balance is too low to use this feature."
2568
- msgstr ""
2569
-
2570
- #: ../includes/shortcodes/mycred_exchange.php:63
2571
- #, php-format
2572
- msgid "Your current %s balance"
2573
- msgstr ""
2574
-
2575
- #: ../includes/shortcodes/mycred_exchange.php:70
2576
- #, php-format
2577
- msgid "Minimum %s"
2578
- msgstr ""
2579
-
2580
- #: ../includes/shortcodes/mycred_exchange.php:75 ../addons/gateway/event-
2581
- #: booking/mycred-eventespresso3.php:498 ../addons/gateway/event-booking/mycred-
2582
- #: eventsmanager.php:578 ../addons/gateway/event-booking/mycred-eventsmanager-pro.
2583
- #: php:650 ../addons/gateway/carts/mycred-wpecommerce.php:389 ..
2584
- #: addons/gateway/carts/mycred-woocommerce.php:140 ..
2585
- #: addons/gateway/carts/mycred-marketpress.php:450
2586
- msgid "Exchange Rate"
2587
- msgstr ""
2588
-
2589
- #: ../includes/shortcodes/mycred_exchange.php:76
2590
- #, php-format
2591
- msgid "1 %s = <span class=\"rate\">%s</span> %s"
2592
- msgstr ""
2593
-
2594
- #: ../includes/shortcodes/mycred_exchange.php:124
2595
- msgid "Point types not found."
2596
- msgstr ""
2597
-
2598
- #: ../includes/shortcodes/mycred_exchange.php:169
2599
- #, php-format
2600
- msgid "You must exchange at least %s!"
2601
- msgstr ""
2602
-
2603
- #: ../includes/shortcodes/mycred_exchange.php:178 ../addons/transfer/myCRED-addon-
2604
- #: transfer.php:154
2605
- msgid "Insufficient Funds. Please try a lower amount."
2606
- msgstr ""
2607
-
2608
- #: ../includes/shortcodes/mycred_exchange.php:191
2609
- #, php-format
2610
- msgid "Exchange from %s"
2611
- msgstr ""
2612
-
2613
- #: ../includes/shortcodes/mycred_exchange.php:203
2614
- #, php-format
2615
- msgid "Exchange to %s"
2616
- msgstr ""
2617
-
2618
- #: ../includes/shortcodes/mycred_exchange.php:211
2619
- #, php-format
2620
- msgid "You have successfully exchanged %s into %s."
2621
- msgstr ""
2622
-
2623
- #: ../includes/shortcodes/mycred_hook_table.php:21
2624
- msgid "No instances found for this point type"
2625
- msgstr ""
2626
-
2627
- #: ../includes/shortcodes/mycred_hook_table.php:79
2628
- msgid "Instance"
2629
- msgstr ""
2630
-
2631
- #: ../includes/shortcodes/mycred_video.php:44
2632
- msgid "A video ID is required for this shortcode"
2633
- msgstr ""
2634
-
2635
- #: ../includes/mycred-remote.php:581
2636
- msgid "This feature requires WordPress Permalinks to be setup and enabled!"
2637
- msgstr ""
2638
-
2639
- #: ../includes/mycred-remote.php:585
2640
- msgid "Click Update Settings to load the Remote API settings."
2641
- msgstr ""
2642
-
2643
- #: ../includes/mycred-remote.php:588
2644
- msgid "Allow Remote Access"
2645
- msgstr ""
2646
-
2647
- #: ../includes/mycred-remote.php:613
2648
- msgid "Remote Access"
2649
- msgstr ""
2650
-
2651
- #: ../includes/mycred-remote.php:615 ../addons/buy-creds/gateways/bitpay.php:245
2652
- msgid "API Key"
2653
- msgstr ""
2654
-
2655
- #: ../includes/mycred-remote.php:618
2656
- msgid "Key"
2657
- msgstr ""
2658
-
2659
- #: ../includes/mycred-remote.php:619
2660
- msgid "16, 24 or 32 characters"
2661
- msgstr ""
2662
-
2663
- #: ../includes/mycred-remote.php:620
2664
- msgid "Required for this feature to work!<br />Minimum 12 characters."
2665
- msgstr ""
2666
-
2667
- #: ../includes/mycred-remote.php:623
2668
- msgid "Key Length"
2669
- msgstr ""
2670
-
2671
- #: ../includes/mycred-remote.php:628
2672
- msgid "Generate New Key"
2673
- msgstr ""
2674
-
2675
- #: ../includes/mycred-remote.php:630
2676
- msgid "Warning!"
2677
- msgstr ""
2678
-
2679
- #: ../includes/mycred-remote.php:630
2680
- #, php-format
2681
- msgid ""
2682
- "Keep this key safe! Those you share this key with will be able to remotely "
2683
- "deduct / add / transfer %plural%!"
2684
- msgstr ""
2685
-
2686
- #: ../includes/mycred-remote.php:632
2687
- msgid "Incoming URI"
2688
- msgstr ""
2689
-
2690
- #: ../includes/mycred-remote.php:636
2691
- msgid ""
2692
- "The incoming call address. Remote calls made to any other URL will be "
2693
- "ignored."
2694
- msgstr ""
2695
-
2696
- #: ../includes/mycred-remote.php:639
2697
- msgid "Debug Mode"
2698
- msgstr ""
2699
-
2700
- #: ../includes/mycred-remote.php:642
2701
- msgid ""
2702
- "Remember to disable when not used to prevent mischievous calls from learning "
2703
- "about your setup!"
2704
- msgstr ""
2705
-
2706
- #: ../includes/classes/class.query-export.php:263
2707
- msgid "Reference ID"
2708
- msgstr ""
2709
-
2710
- #: ../includes/classes/class.query-export.php:263
2711
- msgid "Data"
2712
- msgstr ""
2713
-
2714
- #: ../includes/classes/class.query-export.php:374 ../includes/classes/class.query-
2715
- #: log.php:980
2716
- msgid "User Missing"
2717
- msgstr ""
2718
-
2719
- #: ../includes/classes/class.query-export.php:464
2720
- msgid "Export log entries raw"
2721
- msgstr ""
2722
-
2723
- #: ../includes/classes/class.query-export.php:465
2724
- msgid "Export log entries formatted"
2725
- msgstr ""
2726
-
2727
- #: ../includes/classes/class.query-export.php:482
2728
- msgid "All Log Entries"
2729
- msgstr ""
2730
-
2731
- #: ../includes/classes/class.query-export.php:487
2732
- msgid "Search Results"
2733
- msgstr ""
2734
-
2735
- #: ../includes/classes/class.query-export.php:492
2736
- msgid "Users Log Entries"
2737
- msgstr ""
2738
-
2739
- #: ../includes/classes/class.query-export.php:493
2740
- msgid "Export History"
2741
- msgstr ""
2742
-
2743
- #: ../includes/classes/class.query-log.php:427
2744
- msgid "No log entries found"
2745
- msgstr ""
2746
-
2747
- #: ../includes/classes/class.query-log.php:489
2748
- msgid "Bulk Actions"
2749
- msgstr ""
2750
-
2751
- #: ../includes/classes/class.query-log.php:490
2752
- msgid "Export Raw"
2753
- msgstr ""
2754
-
2755
- #: ../includes/classes/class.query-log.php:491
2756
- msgid "Export Formatted"
2757
- msgstr ""
2758
-
2759
- #: ../includes/classes/class.query-log.php:507
2760
- msgid "Apply"
2761
- msgstr ""
2762
-
2763
- #: ../includes/classes/class.query-log.php:527
2764
- msgid "Show all references"
2765
- msgstr ""
2766
-
2767
- #: ../includes/classes/class.query-log.php:544
2768
- msgid "User ID, Username, Email or Nicename"
2769
- msgstr ""
2770
-
2771
- #: ../includes/classes/class.query-log.php:552
2772
- msgid "Show in order"
2773
- msgstr ""
2774
-
2775
- #: ../includes/classes/class.query-log.php:553 ../includes/mycred-widgets.php:420
2776
- msgid "Ascending"
2777
- msgstr ""
2778
-
2779
- #: ../includes/classes/class.query-log.php:553 ../includes/mycred-widgets.php:421
2780
- msgid "Descending"
2781
- msgstr ""
2782
-
2783
- #: ../includes/classes/class.query-log.php:574
2784
- msgid "Filter"
2785
- msgstr ""
2786
-
2787
- #: ../includes/classes/class.query-log.php:610
2788
- msgid "Log entries navigation"
2789
- msgstr ""
2790
-
2791
- #: ../includes/classes/class.query-log.php:735
2792
- #, php-format
2793
- msgid "1 entry"
2794
- msgid_plural "%d entries"
2795
- msgstr[0] ""
2796
- msgstr[1] ""
2797
-
2798
- #: ../includes/classes/class.query-log.php:765
2799
- msgid "First page"
2800
- msgstr ""
2801
-
2802
- #: ../includes/classes/class.query-log.php:775
2803
- msgid "Previous page"
2804
- msgstr ""
2805
-
2806
- #: ../includes/classes/class.query-log.php:782 ../includes/classes/class.query-
2807
- #: log.php:785
2808
- msgid "Current Page"
2809
- msgstr ""
2810
-
2811
- #: ../includes/classes/class.query-log.php:791
2812
- #, php-format
2813
- msgctxt "paging"
2814
- msgid "%1$s of %2$s"
2815
- msgstr ""
2816
-
2817
- #: ../includes/classes/class.query-log.php:798
2818
- msgid "Next page"
2819
- msgstr ""
2820
-
2821
- #: ../includes/classes/class.query-log.php:808
2822
- msgid "Last page"
2823
- msgstr ""
2824
-
2825
- #: ../includes/classes/class.query-log.php:868 ../includes/classes/class.query-
2826
- #: log.php:889
2827
- msgid "Select all"
2828
- msgstr ""
2829
-
2830
- #: ../includes/classes/class.query-log.php:972
2831
- msgid "Select entry"
2832
- msgstr ""
2833
-
2834
- #: ../includes/classes/class.query-log.php:993
2835
- msgid "Show more details"
2836
- msgstr ""
2837
-
2838
- #: ../includes/classes/class.query-log.php:1017
2839
- msgid "Filter by Date"
2840
- msgstr ""
2841
-
2842
- #: ../includes/classes/class.query-log.php:1066
2843
- msgid "Filter by User"
2844
- msgstr ""
2845
-
2846
- #: ../includes/classes/class.query-log.php:1068
2847
- msgid "Filter by ID"
2848
- msgstr ""
2849
-
2850
- #: ../includes/classes/class.query-log.php:1075
2851
- msgid "Edit"
2852
- msgstr ""
2853
-
2854
- #: ../includes/classes/class.query-log.php:1148
2855
- msgid "No export options available."
2856
- msgstr ""
2857
-
2858
- #: ../includes/classes/class.query-log.php:1179 ../includes/classes/class.query-
2859
- #: log.php:1181
2860
- msgid "Search Log"
2861
- msgstr ""
2862
-
2863
- #: ../includes/classes/class.query-log.php:1180
2864
- msgid "search log entries"
2865
- msgstr ""
2866
-
2867
- #: ../includes/classes/class.query-log.php:1544
2868
- msgid "Website Registration"
2869
- msgstr ""
2870
-
2871
- #: ../includes/classes/class.query-log.php:1545
2872
- msgid "Website Visit"
2873
- msgstr ""
2874
-
2875
- #: ../includes/classes/class.query-log.php:1546
2876
- msgid "Viewing Content (Member)"
2877
- msgstr ""
2878
-
2879
- #: ../includes/classes/class.query-log.php:1547
2880
- msgid "Viewing Content (Author)"
2881
- msgstr ""
2882
-
2883
- #: ../includes/classes/class.query-log.php:1548
2884
- msgid "Logging in"
2885
- msgstr ""
2886
-
2887
- #: ../includes/classes/class.query-log.php:1549
2888
- msgid "Publishing Content"
2889
- msgstr ""
2890
-
2891
- #: ../includes/classes/class.query-log.php:1551
2892
- msgid "Unapproved Comment"
2893
- msgstr ""
2894
-
2895
- #: ../includes/classes/class.query-log.php:1552
2896
- msgid "SPAM Comment"
2897
- msgstr ""
2898
-
2899
- #: ../includes/classes/class.query-log.php:1554
2900
- msgid "Link Click"
2901
- msgstr ""
2902
-
2903
- #: ../includes/classes/class.query-log.php:1555
2904
- msgid "Watching Video"
2905
- msgstr ""
2906
-
2907
- #: ../includes/classes/class.query-log.php:1556
2908
- msgid "Visitor Referral"
2909
- msgstr ""
2910
-
2911
- #: ../includes/classes/class.query-log.php:1557
2912
- msgid "Signup Referral"
2913
- msgstr ""
2914
-
2915
- #: ../includes/classes/class.query-log.php:1561
2916
- msgid "New Profile Update"
2917
- msgstr ""
2918
-
2919
- #: ../includes/classes/class.query-log.php:1562
2920
- msgid "Profile Update Removal"
2921
- msgstr ""
2922
-
2923
- #: ../includes/classes/class.query-log.php:1563
2924
- msgid "Avatar Upload"
2925
- msgstr ""
2926
-
2927
- #: ../includes/classes/class.query-log.php:1564
2928
- msgid "Profile Cover Upload"
2929
- msgstr ""
2930
-
2931
- #: ../includes/classes/class.query-log.php:1566
2932
- msgid "Ended Friendship"
2933
- msgstr ""
2934
-
2935
- #: ../includes/classes/class.query-log.php:1567
2936
- msgid "New Profile Comment"
2937
- msgstr ""
2938
-
2939
- #: ../includes/classes/class.query-log.php:1568
2940
- msgid "Profile Comment Deletion"
2941
- msgstr ""
2942
-
2943
- #: ../includes/classes/class.query-log.php:1569
2944
- msgid "Add Activity to Favorites"
2945
- msgstr ""
2946
-
2947
- #: ../includes/classes/class.query-log.php:1570
2948
- msgid "Remove Activity from Favorites"
2949
- msgstr ""
2950
-
2951
- #: ../includes/classes/class.query-log.php:1571
2952
- msgid "New Message"
2953
- msgstr ""
2954
-
2955
- #: ../includes/classes/class.query-log.php:1573
2956
- msgid "New Group"
2957
- msgstr ""
2958
-
2959
- #: ../includes/classes/class.query-log.php:1574
2960
- msgid "Deleted Group"
2961
- msgstr ""
2962
-
2963
- #: ../includes/classes/class.query-log.php:1575
2964
- msgid "New Group Forum Topic"
2965
- msgstr ""
2966
-
2967
- #: ../includes/classes/class.query-log.php:1576
2968
- msgid "Edit Group Forum Topic"
2969
- msgstr ""
2970
-
2971
- #: ../includes/classes/class.query-log.php:1577
2972
- msgid "New Group Forum Post"
2973
- msgstr ""
2974
-
2975
- #: ../includes/classes/class.query-log.php:1578
2976
- msgid "Edit Group Forum Post"
2977
- msgstr ""
2978
-
2979
- #: ../includes/classes/class.query-log.php:1579
2980
- msgid "Joining Group"
2981
- msgstr ""
2982
-
2983
- #: ../includes/classes/class.query-log.php:1580
2984
- msgid "Leaving Group"
2985
- msgstr ""
2986
-
2987
- #: ../includes/classes/class.query-log.php:1581
2988
- msgid "New Group Avatar"
2989
- msgstr ""
2990
-
2991
- #: ../includes/classes/class.query-log.php:1582
2992
- msgid "New Group Cover"
2993
- msgstr ""
2994
-
2995
- #: ../includes/classes/class.query-log.php:1583
2996
- msgid "New Group Comment"
2997
- msgstr ""
2998
-
2999
- #: ../includes/classes/class.query-log.php:1593
3000
- msgid "New Link"
3001
- msgstr ""
3002
-
3003
- #: ../includes/classes/class.query-log.php:1594
3004
- msgid "Link Voting"
3005
- msgstr ""
3006
-
3007
- #: ../includes/classes/class.query-log.php:1595
3008
- msgid "Link Update"
3009
- msgstr ""
3010
-
3011
- #: ../includes/classes/class.query-log.php:1599
3012
- msgid "New Forum (bbPress)"
3013
- msgstr ""
3014
-
3015
- #: ../includes/classes/class.query-log.php:1600
3016
- msgid "New Forum Topic (bbPress)"
3017
- msgstr ""
3018
-
3019
- #: ../includes/classes/class.query-log.php:1601
3020
- msgid "Favorited Topic (bbPress)"
3021
- msgstr ""
3022
-
3023
- #: ../includes/classes/class.query-log.php:1602
3024
- msgid "New Topic Reply (bbPress)"
3025
- msgstr ""
3026
-
3027
- #: ../includes/classes/class.query-log.php:1606
3028
- msgid "Form Submission (Contact Form 7)"
3029
- msgstr ""
3030
-
3031
- #: ../includes/classes/class.query-log.php:1609
3032
- msgid "Form Submission (Gravity Form)"
3033
- msgstr ""
3034
-
3035
- #: ../includes/classes/class.query-log.php:1612
3036
- msgid "New Forum Topic (SimplePress)"
3037
- msgstr ""
3038
-
3039
- #: ../includes/classes/class.query-log.php:1613
3040
- msgid "New Forum Post (SimplePress)"
3041
- msgstr ""
3042
-
3043
- #: ../includes/classes/class.query-log.php:1622
3044
- msgid "Affiliate Signup (AffiliateWP)"
3045
- msgstr ""
3046
-
3047
- #: ../includes/classes/class.query-log.php:1623
3048
- msgid "Referred Visit (AffiliateWP)"
3049
- msgstr ""
3050
-
3051
- #: ../includes/classes/class.query-log.php:1624
3052
- msgid "Affiliate Referral (AffiliateWP)"
3053
- msgstr ""
3054
-
3055
- #: ../includes/classes/class.query-log.php:1625
3056
- msgid "Referral Refund (AffiliateWP)"
3057
- msgstr ""
3058
-
3059
- #: ../includes/classes/class.query-log.php:1634
3060
- msgid "Poll Voting"
3061
- msgstr ""
3062
-
3063
- #: ../includes/classes/class.query-log.php:1637
3064
- msgid "Sending an Invite"
3065
- msgstr ""
3066
-
3067
- #: ../includes/classes/class.query-log.php:1638
3068
- msgid "Accepting an Invite"
3069
- msgstr ""
3070
-
3071
- #: ../includes/classes/class.query-log.php:1644 ../addons/banking/myCRED-addon-
3072
- #: banking.php:150
3073
- msgid "Compound Interest"
3074
- msgstr ""
3075
-
3076
- #: ../includes/classes/class.query-log.php:1645
3077
- msgid "Recurring Payout"
3078
- msgstr ""
3079
-
3080
- #: ../includes/classes/class.query-log.php:1649
3081
- msgid "Badge Reward"
3082
- msgstr ""
3083
-
3084
- #: ../includes/classes/class.query-log.php:1652
3085
- msgid "buyCRED Purchase (PayPal Standard)"
3086
- msgstr ""
3087
-
3088
- #: ../includes/classes/class.query-log.php:1653
3089
- msgid "buyCRED Purchase (Skrill)"
3090
- msgstr ""
3091
-
3092
- #: ../includes/classes/class.query-log.php:1654
3093
- msgid "buyCRED Purchase (Zombaio)"
3094
- msgstr ""
3095
-
3096
- #: ../includes/classes/class.query-log.php:1655
3097
- msgid "buyCRED Purchase (NETBilling)"
3098
- msgstr ""
3099
-
3100
- #: ../includes/classes/class.query-log.php:1656
3101
- msgid "buyCRED Purchase (BitPay)"
3102
- msgstr ""
3103
-
3104
- #: ../includes/classes/class.query-log.php:1661
3105
- msgid "Coupon Purchase"
3106
- msgstr ""
3107
-
3108
- #: ../includes/classes/class.query-log.php:1665
3109
- msgid "Store Purchase (WooCommerce)"
3110
- msgstr ""
3111
-
3112
- #: ../includes/classes/class.query-log.php:1666
3113
- msgid "Store Reward (WooCommerce)"
3114
- msgstr ""
3115
-
3116
- #: ../includes/classes/class.query-log.php:1667
3117
- msgid "Product Review (WooCommerce)"
3118
- msgstr ""
3119
-
3120
- #: ../includes/classes/class.query-log.php:1670
3121
- msgid "Store Purchase (MarketPress)"
3122
- msgstr ""
3123
-
3124
- #: ../includes/classes/class.query-log.php:1671
3125
- msgid "Store Reward (MarketPress)"
3126
- msgstr ""
3127
-
3128
- #: ../includes/classes/class.query-log.php:1674
3129
- msgid "Store Purchase (WP E-Commerce)"
3130
- msgstr ""
3131
-
3132
- #: ../includes/classes/class.query-log.php:1680
3133
- msgid "Event Payment (Event Espresso)"
3134
- msgstr ""
3135
-
3136
- #: ../includes/classes/class.query-log.php:1681
3137
- msgid "Event Sale (Event Espresso)"
3138
- msgstr ""
3139
-
3140
- #: ../includes/classes/class.query-log.php:1685
3141
- msgid "Event Payment (Events Manager)"
3142
- msgstr ""
3143
-
3144
- #: ../includes/classes/class.query-log.php:1686
3145
- msgid "Event Sale (Events Manager)"
3146
- msgstr ""
3147
-
3148
- #: ../includes/classes/class.query-log.php:1690
3149
- msgid "Content Purchase"
3150
- msgstr ""
3151
-
3152
- #: ../includes/classes/class.query-log.php:1691
3153
- msgid "Content Sale"
3154
- msgstr ""
3155
-
3156
- #: ../includes/classes/class.query-log.php:1695 ../addons/transfer/myCRED-addon-
3157
- #: transfer.php:48
3158
- msgid "Transfer"
3159
- msgstr ""
3160
-
3161
- #: ../includes/classes/class.query-log.php:1699
3162
- msgid "Manual Adjustment by Admin"
3163
- msgstr ""
3164
-
3165
- #: ../includes/mycred-about.php:32
3166
- #, php-format
3167
- msgid "Welcome to %s %s"
3168
- msgstr ""
3169
-
3170
- #: ../includes/mycred-rest-api.php:114 ../includes/mycred-rest-api.php:135 ..
3171
- #: includes/mycred-rest-api.php:156 ../includes/mycred-rest-api.php:176
3172
- msgid "message"
3173
- msgstr ""
3174
-
3175
- #: ../includes/mycred-overview.php:25
3176
- #, php-format
3177
- msgid "%s Overview"
3178
- msgstr ""
3179
-
3180
- #: ../includes/mycred-overview.php:82 ../addons/stats/widgets/mycred-stats-widget-
3181
- #: circulation.php:136 ../addons/stats/widgets/mycred-stats-widget-circulation.
3182
- #: php:265
3183
- msgid "Total amount in circulation"
3184
- msgstr ""
3185
-
3186
- #: ../includes/mycred-overview.php:85
3187
- msgid "Awarded"
3188
- msgstr ""
3189
-
3190
- #: ../includes/mycred-overview.php:88
3191
- msgid "Deducted"
3192
- msgstr ""
3193
-
3194
- #: ../includes/mycred-install.php:63
3195
- msgid "myCRED requires WordPress 4.0 or higher. Version detected:"
3196
- msgstr ""
3197
-
3198
- #: ../includes/mycred-install.php:68
3199
- msgid "myCRED requires PHP 5.3 or higher. Version detected: "
3200
- msgstr ""
3201
-
3202
- #: ../includes/mycred-install.php:73
3203
- msgid "myCRED requires SQL 5.0 or higher. Version detected: "
3204
- msgstr ""
3205
-
3206
- #: ../includes/mycred-install.php:78
3207
- msgid ""
3208
- "The mcrypt PHP library must be enabled in order to use this plugin! Please "
3209
- "check your PHP configuration or contact your host and ask them to enable it "
3210
- "for you!"
3211
- msgstr ""
3212
-
3213
- #: ../includes/mycred-install.php:83
3214
- msgid ""
3215
- "Sorry but your WordPress installation does not reach the minimum "
3216
- "requirements for running myCRED. The following errors were given:"
3217
- msgstr ""
3218
-
3219
- #: ../includes/mycred-widgets.php:21
3220
- #, php-format
3221
- msgid "(%s) My Balance"
3222
- msgstr ""
3223
-
3224
- #: ../includes/mycred-widgets.php:24
3225
- #, php-format
3226
- msgid "Show the current users %s balance"
3227
- msgstr ""
3228
-
3229
- #: ../includes/mycred-widgets.php:204
3230
- msgid "Layout"
3231
- msgstr ""
3232
-
3233
- #: ../includes/mycred-widgets.php:212
3234
- msgid "Include history"
3235
- msgstr ""
3236
-
3237
- #: ../includes/mycred-widgets.php:214
3238
- msgid "History Title"
3239
- msgstr ""
3240
-
3241
- #: ../includes/mycred-widgets.php:216
3242
- msgid "Number of entires"
3243
- msgstr ""
3244
-
3245
- #: ../includes/mycred-widgets.php:218 ../includes/mycred-widgets.php:405
3246
- msgid "Row layout"
3247
- msgstr ""
3248
-
3249
- #: ../includes/mycred-widgets.php:226 ../includes/mycred-widgets.php:606
3250
- msgid "Show message when not logged in"
3251
- msgstr ""
3252
-
3253
- #: ../includes/mycred-widgets.php:228 ../includes/mycred-widgets.php:607
3254
- msgid "Message"
3255
- msgstr ""
3256
-
3257
- #: ../includes/mycred-widgets.php:298
3258
- #, php-format
3259
- msgid "(%s) Leaderboard"
3260
- msgstr ""
3261
-
3262
- #: ../includes/mycred-widgets.php:301
3263
- #, php-format
3264
- msgid "Show a list of users sorted by their %s balance"
3265
- msgstr ""
3266
-
3267
- #: ../includes/mycred-widgets.php:392
3268
- msgid "Based On"
3269
- msgstr ""
3270
-
3271
- #: ../includes/mycred-widgets.php:394
3272
- msgid ""
3273
- "Use \"balance\" to base the leaderboard on your users current balances or use "
3274
- "a specific reference."
3275
- msgstr ""
3276
-
3277
- #: ../includes/mycred-widgets.php:394
3278
- msgid "Reference Guide"
3279
- msgstr ""
3280
-
3281
- #: ../includes/mycred-widgets.php:399
3282
- msgid "Visible to non-members"
3283
- msgstr ""
3284
-
3285
- #: ../includes/mycred-widgets.php:401
3286
- msgid "Number of users"
3287
- msgstr ""
3288
-
3289
- #: ../includes/mycred-widgets.php:410
3290
- msgid "Offset"
3291
- msgstr ""
3292
-
3293
- #: ../includes/mycred-widgets.php:412
3294
- msgid "Optional offset of order. Use zero to return the first in the list."
3295
- msgstr ""
3296
-
3297
- #: ../includes/mycred-widgets.php:415
3298
- msgid "Order"
3299
- msgstr ""
3300
-
3301
- #: ../includes/mycred-widgets.php:435
3302
- msgid "Append current users position"
3303
- msgstr ""
3304
-
3305
- #: ../includes/mycred-widgets.php:436
3306
- msgid ""
3307
- "If the current user is not in this leaderboard, you can select to append "
3308
- "them at the end with their current position."
3309
- msgstr ""
3310
-
3311
- #: ../includes/mycred-widgets.php:439
3312
- msgid "Timeframe"
3313
- msgstr ""
3314
-
3315
- #: ../includes/mycred-widgets.php:441
3316
- msgid ""
3317
- "Option to limit the leaderboard based on a specific timeframe. Leave empty "
3318
- "if not used."
3319
- msgstr ""
3320
-
3321
- #: ../includes/mycred-widgets.php:491
3322
- #, php-format
3323
- msgid "(%s) Wallet"
3324
- msgstr ""
3325
-
3326
- #: ../includes/mycred-widgets.php:494
3327
- msgid "Shows the current users balances for each point type."
3328
- msgstr ""
3329
-
3330
- #: ../includes/mycred-widgets.php:598
3331
- msgid "Row Layout"
3332
- msgstr ""
3333
-
3334
- #: ../includes/mycred-functions.php:85
3335
- msgid "Point"
3336
- msgstr ""
3337
-
3338
- #: ../includes/mycred-functions.php:86
3339
- msgid "Points"
3340
- msgstr ""
3341
-
3342
- #: ../includes/mycred-functions.php:466
3343
- msgid "Deleted"
3344
- msgstr ""
3345
-
3346
- #: ../includes/mycred-functions.php:613
3347
- msgid "Deleted Item"
3348
- msgstr ""
3349
-
3350
- #: ../includes/mycred-functions.php:677 ../addons/gateway/carts/mycred-
3351
- #: wpecommerce.php:370 ../addons/email-notices/myCRED-addon-email-notices.php:861
3352
- msgid "General"
3353
- msgstr ""
3354
-
3355
- #: ../includes/mycred-functions.php:684
3356
- msgid "User Related"
3357
- msgstr ""
3358
-
3359
- #: ../includes/mycred-functions.php:691
3360
- msgid "Post Related"
3361
- msgstr ""
3362
-
3363
- #: ../includes/mycred-functions.php:698
3364
- msgid "Comment Related"
3365
- msgstr ""
3366
-
3367
- #: ../includes/mycred-functions.php:705
3368
- msgid "Widget Related"
3369
- msgstr ""
3370
-
3371
- #: ../includes/mycred-functions.php:712
3372
- msgid "Amount Related"
3373
- msgstr ""
3374
-
3375
- #: ../includes/mycred-functions.php:719
3376
- msgid "Video Related"
3377
- msgstr ""
3378
-
3379
- #: ../includes/mycred-functions.php:730
3380
- msgid "and"
3381
- msgstr ""
3382
-
3383
- #: ../includes/mycred-functions.php:732
3384
- msgid "Available Template Tags:"
3385
- msgstr ""
3386
-
3387
- #: ../includes/mycred-functions.php:2569
3388
- msgid "per day"
3389
- msgstr ""
3390
-
3391
- #: ../includes/mycred-functions.php:2571
3392
- msgid "per week"
3393
- msgstr ""
3394
-
3395
- #: ../includes/mycred-functions.php:2573
3396
- msgid "per month"
3397
- msgstr ""
3398
-
3399
- #: ../includes/mycred-functions.php:2575
3400
- msgid "in total"
3401
- msgstr ""
3402
-
3403
- #: ../includes/mycred-functions.php:2577 ../includes/mycred-functions.php:2581
3404
- #, php-format
3405
- msgid "Maximum once"
3406
- msgid_plural "Maximum %d times"
3407
- msgstr[0] ""
3408
- msgstr[1] ""
3409
-
3410
- #: ../includes/mycred-functions.php:2608
3411
- #, php-format
3412
- msgctxt "ex. 21st."
3413
- msgid "%dst"
3414
- msgstr ""
3415
-
3416
- #: ../includes/mycred-functions.php:2615
3417
- #, php-format
3418
- msgctxt "ex. 32nd."
3419
- msgid "%dnd"
3420
- msgstr ""
3421
-
3422
- #: ../includes/mycred-functions.php:2622
3423
- #, php-format
3424
- msgctxt "ex. 43rd."
3425
- msgid "%drd"
3426
- msgstr ""
3427
-
3428
- #: ../includes/mycred-functions.php:2633
3429
- #, php-format
3430
- msgctxt "ex. 50th"
3431
- msgid "%dth"
3432
- msgstr ""
3433
-
3434
- #. Description of the plugin
3435
- msgid "An adaptive points management system for WordPress powered websites."
3436
- msgstr ""
3437
-
3438
- #: ../mycred.php:565
3439
- #, php-format
3440
- msgid "%s Log Import"
3441
- msgstr ""
3442
-
3443
- #: ../mycred.php:566
3444
- msgid "Import log entries via a CSV file."
3445
- msgstr ""
3446
-
3447
- #: ../mycred.php:577
3448
- #, php-format
3449
- msgid "%s Balance Import"
3450
- msgstr ""
3451
-
3452
- #: ../mycred.php:578
3453
- msgid "Import balances."
3454
- msgstr ""
3455
-
3456
- #: ../mycred.php:589
3457
- #, php-format
3458
- msgid "%s CubePoints Import"
3459
- msgstr ""
3460
-
3461
- #: ../mycred.php:633
3462
- msgid "Sent"
3463
- msgstr ""
3464
-
3465
- #: ../mycred.php:634
3466
- msgid "Error - Try Again"
3467
- msgstr ""
3468
-
3469
- #: ../mycred.php:766
3470
- msgid "No CubePoints log exists."
3471
- msgstr ""
3472
-
3473
- #: ../mycred.php:817 ../mycred.php:818
3474
- #, php-format
3475
- msgid "About %s"
3476
- msgstr ""
3477
-
3478
- #: ../mycred.php:826 ../mycred.php:827
3479
- msgid "Awesome People"
3480
- msgstr ""
3481
-
3482
- #: ../mycred.php:987 ../mycred.php:1008 ../addons/banking/services/mycred-service-
3483
- #: interest.php:477 ../addons/gateway/event-booking/mycred-eventsmanager.php:537 .
3484
- #: ./addons/gateway/event-booking/mycred-eventsmanager-pro.php:605 ..
3485
- #: addons/email-notices/myCRED-addon-email-notices.php:273
3486
- msgid "Setup"
3487
- msgstr ""
3488
-
3489
- #: ../mycred.php:1030
3490
- msgid ""
3491
- "Make sure to backup your database and files before updating, in case "
3492
- "anything goes wrong!"
3493
- msgstr ""
3494
-
3495
- #: ../addons/banking/myCRED-addon-banking.php:45 ../addons/banking/myCRED-addon-
3496
- #: banking.php:46 ../addons/banking/myCRED-addon-banking.php:47
3497
- msgid "Banking"
3498
- msgstr ""
3499
-
3500
- #: ../addons/banking/myCRED-addon-banking.php:141
3501
- msgid "Central Banking"
3502
- msgstr ""
3503
-
3504
- #: ../addons/banking/myCRED-addon-banking.php:142
3505
- #, php-format
3506
- msgid ""
3507
- "Instead of creating %_plural% out of thin-air, all payouts are made from a "
3508
- "nominated \"Central Bank\" account. Any %_plural% a user spends or loses are "
3509
- "deposited back into this account. If the central bank runs out of %_plural%, "
3510
- "no %_plural% will be paid out."
3511
- msgstr ""
3512
-
3513
- #: ../addons/banking/myCRED-addon-banking.php:151
3514
- msgid ""
3515
- "Offer your users interest on the %_plural% they earn on your website. The "
3516
- "interest is compounded daily."
3517
- msgstr ""
3518
-
3519
- #: ../addons/banking/myCRED-addon-banking.php:159
3520
- msgid "Recurring Payouts"
3521
- msgstr ""
3522
-
3523
- #: ../addons/banking/myCRED-addon-banking.php:160
3524
- #, php-format
3525
- msgid "Setup mass %_singular% payouts for your users."
3526
- msgstr ""
3527
-
3528
- #: ../addons/banking/myCRED-addon-banking.php:202
3529
- msgid "New Recurring Payout"
3530
- msgstr ""
3531
-
3532
- #: ../addons/banking/myCRED-addon-banking.php:203
3533
- msgid "Edit Recurring Payout"
3534
- msgstr ""
3535
-
3536
- #: ../addons/banking/myCRED-addon-banking.php:205
3537
- msgid "Please fill out all required fields that are highlighted in red."
3538
- msgstr ""
3539
-
3540
- #: ../addons/banking/myCRED-addon-banking.php:206
3541
- msgid "Are you sure you want to remove this schedule? This can not be undone!"
3542
- msgstr ""
3543
-
3544
- #: ../addons/banking/myCRED-addon-banking.php:253
3545
- #, php-format
3546
- msgid "%s Banking"
3547
- msgstr ""
3548
-
3549
- #: ../addons/banking/myCRED-addon-banking.php:271
3550
- msgid "Warning"
3551
- msgstr ""
3552
-
3553
- #: ../addons/banking/myCRED-addon-banking.php:271
3554
- msgid ""
3555
- "This banking service uses the WordPress CRON to schedule events. If the "
3556
- "WordPress CRON is disabled, this service will not work correctly."
3557
- msgstr ""
3558
-
3559
- #: ../addons/banking/myCRED-addon-banking.php:273 ../addons/buy-
3560
- #: creds/modules/buycred-module-core.php:559
3561
- msgid "Enable"
3562
- msgstr ""
3563
-
3564
- #: ../addons/banking/myCRED-addon-banking.php:292
3565
- msgid "Update Changes"
3566
- msgstr ""
3567
-
3568
- #: ../addons/banking/services/mycred-service-central.php:110
3569
- msgid "Central Bank Account"
3570
- msgstr ""
3571
-
3572
- #: ../addons/banking/services/mycred-service-central.php:113
3573
- msgid "The ID of the user representing the central bank."
3574
- msgstr ""
3575
-
3576
- #: ../addons/banking/services/mycred-service-central.php:117
3577
- msgid "Ignore Manual Adjustments"
3578
- msgstr ""
3579
-
3580
- #: ../addons/banking/services/mycred-service-interest.php:28
3581
- #, php-format
3582
- msgid "%plural% interest rate payment"
3583
- msgstr ""
3584
-
3585
- #: ../addons/banking/services/mycred-service-interest.php:429
3586
- msgid "Daily Compound Schedule"
3587
- msgstr ""
3588
-
3589
- #: ../addons/banking/services/mycred-service-interest.php:432 ..
3590
- #: addons/banking/services/mycred-service-interest.php:457 ..
3591
- #: addons/banking/services/mycred-service-payouts.php:726
3592
- msgid "Year"
3593
- msgstr ""
3594
-
3595
- #: ../addons/banking/services/mycred-service-interest.php:433 ..
3596
- #: addons/banking/services/mycred-service-interest.php:458 ..
3597
- #: addons/banking/services/mycred-service-payouts.php:732 ..
3598
- #: addons/banking/includes/mycred-banking-functions.php:95
3599
- msgid "Month"
3600
- msgstr ""
3601
-
3602
- #: ../addons/banking/services/mycred-service-interest.php:434 ..
3603
- #: addons/banking/services/mycred-service-interest.php:459 ..
3604
- #: addons/banking/includes/mycred-banking-functions.php:85
3605
- msgid "Day"
3606
- msgstr ""
3607
-
3608
- #: ../addons/banking/services/mycred-service-interest.php:454
3609
- msgid "Payout Schedule"
3610
- msgstr ""
3611
-
3612
- #: ../addons/banking/services/mycred-service-interest.php:481 ..
3613
- #: addons/banking/services/mycred-service-interest.php:652
3614
- msgid "Interest Rate"
3615
- msgstr ""
3616
-
3617
- #: ../addons/banking/services/mycred-service-interest.php:493
3618
- msgid "Payout Frequency"
3619
- msgstr ""
3620
-
3621
- #: ../addons/banking/services/mycred-service-interest.php:499 ..
3622
- #: addons/coupons/myCRED-addon-coupons.php:574
3623
- msgid "Minimum Balance"
3624
- msgstr ""
3625
-
3626
- #: ../addons/banking/services/mycred-service-interest.php:506
3627
- msgid "Payout Log Table"
3628
- msgstr ""
3629
-
3630
- #: ../addons/banking/services/mycred-service-interest.php:519
3631
- msgid ""
3632
- "Changing the payout period once the service is enabled, will only take "
3633
- "effect once the currently scheduled payout runs. To change this, you will "
3634
- "also need to adjust the payout schedule above."
3635
- msgstr ""
3636
-
3637
- #: ../addons/banking/services/mycred-service-interest.php:524
3638
- msgid "Exclude by ID"
3639
- msgstr ""
3640
-
3641
- #: ../addons/banking/services/mycred-service-interest.php:528 ..
3642
- #: addons/banking/services/mycred-service-interest.php:529 ..
3643
- #: addons/banking/services/mycred-service-payouts.php:789
3644
- msgid "Comma separated list of user IDs"
3645
- msgstr ""
3646
-
3647
- #: ../addons/banking/services/mycred-service-interest.php:535
3648
- msgid "Exclude by Role"
3649
- msgstr ""
3650
-
3651
- #: ../addons/banking/services/mycred-service-interest.php:539
3652
- msgid "Roles to exclude"
3653
- msgstr ""
3654
-
3655
- #: ../addons/banking/services/mycred-service-interest.php:655
3656
- msgid "Leave empty to pay the default rate."
3657
- msgstr ""
3658
-
3659
- #: ../addons/banking/services/mycred-service-payouts.php:30
3660
- msgid "Waiting to Start"
3661
- msgstr ""
3662
-
3663
- #: ../addons/banking/services/mycred-service-payouts.php:31 ../addons/email-
3664
- #: notices/myCRED-addon-email-notices.php:306
3665
- msgid "Active"
3666
- msgstr ""
3667
-
3668
- #: ../addons/banking/services/mycred-service-payouts.php:32
3669
- msgid "Running"
3670
- msgstr ""
3671
-
3672
- #: ../addons/banking/services/mycred-service-payouts.php:33
3673
- msgid "Finished"
3674
- msgstr ""
3675
-
3676
- #: ../addons/banking/services/mycred-service-payouts.php:34
3677
- msgid "Stopped"
3678
- msgstr ""
3679
-
3680
- #: ../addons/banking/services/mycred-service-payouts.php:444
3681
- msgid "Not yet started"
3682
- msgstr ""
3683
-
3684
- #: ../addons/banking/services/mycred-service-payouts.php:455
3685
- msgid "Currently Running"
3686
- msgstr ""
3687
-
3688
- #: ../addons/banking/services/mycred-service-payouts.php:470
3689
- msgid "View Schedule"
3690
- msgstr ""
3691
-
3692
- #: ../addons/banking/services/mycred-service-payouts.php:470 ..
3693
- #: addons/stats/widgets/mycred-stats-widget-daily-loses.php:151 ..
3694
- #: addons/stats/widgets/mycred-stats-widget-daily-gains.php:151
3695
- msgid "View"
3696
- msgstr ""
3697
-
3698
- #: ../addons/banking/services/mycred-service-payouts.php:470
3699
- msgid "Delete Schedule"
3700
- msgstr ""
3701
-
3702
- #: ../addons/banking/services/mycred-service-payouts.php:521 ..
3703
- #: addons/banking/services/mycred-service-payouts.php:764
3704
- msgid "Min. Balance"
3705
- msgstr ""
3706
-
3707
- #: ../addons/banking/services/mycred-service-payouts.php:524 ..
3708
- #: addons/banking/services/mycred-service-payouts.php:771
3709
- msgid "Max. Balance"
3710
- msgstr ""
3711
-
3712
- #: ../addons/banking/services/mycred-service-payouts.php:529
3713
- msgid "Exclude Users"
3714
- msgstr ""
3715
-
3716
- #: ../addons/banking/services/mycred-service-payouts.php:531
3717
- msgid "Include Users"
3718
- msgstr ""
3719
-
3720
- #: ../addons/banking/services/mycred-service-payouts.php:538
3721
- msgid "Exclude Roles"
3722
- msgstr ""
3723
-
3724
- #: ../addons/banking/services/mycred-service-payouts.php:540
3725
- msgid "Include Roles"
3726
- msgstr ""
3727
-
3728
- #: ../addons/banking/services/mycred-service-payouts.php:557 ..
3729
- #: addons/banking/services/mycred-service-payouts.php:877
3730
- msgid "Job Title"
3731
- msgstr ""
3732
-
3733
- #: ../addons/banking/services/mycred-service-payouts.php:563 ..
3734
- #: addons/banking/services/mycred-service-payouts.php:878 ../addons/email-
3735
- #: notices/myCRED-addon-email-notices.php:272 ../addons/sell-content/myCRED-addon-
3736
- #: sell-content.php:421
3737
- msgid "Status"
3738
- msgstr ""
3739
-
3740
- #: ../addons/banking/services/mycred-service-payouts.php:571
3741
- msgid "Start Date"
3742
- msgstr ""
3743
-
3744
- #: ../addons/banking/services/mycred-service-payouts.php:571
3745
- msgid "Last Run"
3746
- msgstr ""
3747
-
3748
- #: ../addons/banking/services/mycred-service-payouts.php:577
3749
- msgid "Eligible"
3750
- msgstr ""
3751
-
3752
- #: ../addons/banking/services/mycred-service-payouts.php:578
3753
- #, php-format
3754
- msgid "1 User"
3755
- msgid_plural "%d Users"
3756
- msgstr[0] ""
3757
- msgstr[1] ""
3758
-
3759
- #: ../addons/banking/services/mycred-service-payouts.php:583
3760
- msgid "Runs"
3761
- msgstr ""
3762
-
3763
- #: ../addons/banking/services/mycred-service-payouts.php:584
3764
- msgid "Infinite"
3765
- msgstr ""
3766
-
3767
- #: ../addons/banking/services/mycred-service-payouts.php:589 ..
3768
- #: addons/gateway/carts/mycred-wpecommerce.php:396
3769
- msgid "Payout"
3770
- msgstr ""
3771
-
3772
- #: ../addons/banking/services/mycred-service-payouts.php:607
3773
- msgid "Will payout even if the central bank account has run out of funds."
3774
- msgstr ""
3775
-
3776
- #: ../addons/banking/services/mycred-service-payouts.php:612
3777
- msgid "Paid Out"
3778
- msgstr ""
3779
-
3780
- #: ../addons/banking/services/mycred-service-payouts.php:613
3781
- msgid "Completed"
3782
- msgstr ""
3783
-
3784
- #: ../addons/banking/services/mycred-service-payouts.php:614
3785
- msgid "Misses"
3786
- msgstr ""
3787
-
3788
- #: ../addons/banking/services/mycred-service-payouts.php:615
3789
- msgid "Runs Left"
3790
- msgstr ""
3791
-
3792
- #: ../addons/banking/services/mycred-service-payouts.php:635
3793
- msgid ""
3794
- "A miss is when a payout was declined by the plugin. This can be due to "
3795
- "custom code declining the payout or if the user is excluded."
3796
- msgstr ""
3797
-
3798
- #: ../addons/banking/services/mycred-service-payouts.php:680
3799
- msgid "Schedule Title"
3800
- msgstr ""
3801
-
3802
- #: ../addons/banking/services/mycred-service-payouts.php:692 ..
3803
- #: addons/banking/services/mycred-service-payouts.php:879
3804
- msgid "Frequency"
3805
- msgstr ""
3806
-
3807
- #: ../addons/banking/services/mycred-service-payouts.php:713
3808
- msgid "Payout even if the central bank account runs out of funds."
3809
- msgstr ""
3810
-
3811
- #: ../addons/banking/services/mycred-service-payouts.php:720
3812
- msgid "First Payout"
3813
- msgstr ""
3814
-
3815
- #: ../addons/banking/services/mycred-service-payouts.php:752
3816
- msgid "Repeat"
3817
- msgstr ""
3818
-
3819
- #: ../addons/banking/services/mycred-service-payouts.php:754
3820
- msgid "Use -1 for infinite runs."
3821
- msgstr ""
3822
-
3823
- #: ../addons/banking/services/mycred-service-payouts.php:766 ..
3824
- #: addons/banking/services/mycred-service-payouts.php:773 ../addons/sell-
3825
- #: content/myCRED-addon-sell-content.php:431 ../addons/sell-content/myCRED-addon-
3826
- #: sell-content.php:436
3827
- msgid "Use zero to disable."
3828
- msgstr ""
3829
-
3830
- #: ../addons/banking/services/mycred-service-payouts.php:782
3831
- msgid "Limit by ID"
3832
- msgstr ""
3833
-
3834
- #: ../addons/banking/services/mycred-service-payouts.php:796
3835
- msgid "Limit by Role(s)"
3836
- msgstr ""
3837
-
3838
- #: ../addons/banking/services/mycred-service-payouts.php:823
3839
- msgid "Schedule"
3840
- msgstr ""
3841
-
3842
- #: ../addons/banking/services/mycred-service-payouts.php:844
3843
- msgid "Include:"
3844
- msgstr ""
3845
-
3846
- #: ../addons/banking/services/mycred-service-payouts.php:845
3847
- msgid "Exclude:"
3848
- msgstr ""
3849
-
3850
- #: ../addons/banking/services/mycred-service-payouts.php:870
3851
- msgid ""
3852
- "As long as this service remains disabled, none of your scheduled payouts "
3853
- "will run!"
3854
- msgstr ""
3855
-
3856
- #: ../addons/banking/services/mycred-service-payouts.php:873
3857
- msgid "Schedules"
3858
- msgstr ""
3859
-
3860
- #: ../addons/banking/services/mycred-service-payouts.php:880
3861
- msgid "Last Ran"
3862
- msgstr ""
3863
-
3864
- #: ../addons/banking/services/mycred-service-payouts.php:881
3865
- msgid "Next Run"
3866
- msgstr ""
3867
-
3868
- #: ../addons/banking/services/mycred-service-payouts.php:889
3869
- msgid "No schedules found."
3870
- msgstr ""
3871
-
3872
- #: ../addons/banking/services/mycred-service-payouts.php:894 ..
3873
- #: addons/ranks/myCRED-addon-ranks.php:223 ../addons/ranks/myCRED-addon-ranks.
3874
- #: php:224 ../addons/email-notices/myCRED-addon-email-notices.php:126 ..
3875
- #: addons/email-notices/myCRED-addon-email-notices.php:127 ..
3876
- #: addons/badges/myCRED-addon-badges.php:150 ../addons/badges/myCRED-addon-
3877
- #: badges.php:151
3878
- msgid "Add New"
3879
- msgstr ""
3880
-
3881
- #: ../addons/banking/services/mycred-service-payouts.php:953
3882
- msgid "Schedule Added"
3883
- msgstr ""
3884
-
3885
- #: ../addons/banking/services/mycred-service-payouts.php:960
3886
- msgid ""
3887
- "While the recurring payout has been successfully saved, based on the limits "
3888
- "you set, right now there are no users that are eligible for a payout!"
3889
- msgstr ""
3890
-
3891
- #: ../addons/banking/services/mycred-service-payouts.php:972 ..
3892
- #: addons/banking/services/mycred-service-payouts.php:986
3893
- msgid "Schedule not found. Please refresh this page and try again."
3894
- msgstr ""
3895
-
3896
- #: ../addons/banking/services/mycred-service-payouts.php:991
3897
- msgid "Schedule Deleted"
3898
- msgstr ""
3899
-
3900
- #: ../addons/banking/includes/mycred-banking-functions.php:79
3901
- msgid "Hourly"
3902
- msgstr ""
3903
-
3904
- #: ../addons/banking/includes/mycred-banking-functions.php:80
3905
- msgid "Hour"
3906
- msgstr ""
3907
-
3908
- #: ../addons/banking/includes/mycred-banking-functions.php:84
3909
- msgid "Daily"
3910
- msgstr ""
3911
-
3912
- #: ../addons/banking/includes/mycred-banking-functions.php:89
3913
- msgid "Weekly"
3914
- msgstr ""
3915
-
3916
- #: ../addons/banking/includes/mycred-banking-functions.php:90
3917
- msgid "Week"
3918
- msgstr ""
3919
-
3920
- #: ../addons/banking/includes/mycred-banking-functions.php:94
3921
- msgid "Monthly"
3922
- msgstr ""
3923
-
3924
- #: ../addons/banking/includes/mycred-banking-functions.php:99
3925
- msgid "Quarterly"
3926
- msgstr ""
3927
-
3928
- #: ../addons/banking/includes/mycred-banking-functions.php:100
3929
- msgid "Quarter"
3930
- msgstr ""
3931
-
3932
- #: ../addons/banking/includes/mycred-banking-functions.php:104
3933
- msgid "Semiannually"
3934
- msgstr ""
3935
-
3936
- #: ../addons/banking/includes/mycred-banking-functions.php:105
3937
- msgid "Semiannual"
3938
- msgstr ""
3939
-
3940
- #: ../addons/banking/includes/mycred-banking-functions.php:109
3941
- msgid "Annually"
3942
- msgstr ""
3943
-
3944
- #: ../addons/banking/includes/mycred-banking-functions.php:110
3945
- msgid "Annual"
3946
- msgstr ""
3947
-
3948
- #: ../addons/banking/includes/mycred-banking-functions.php:283
3949
- msgid "A title must be set."
3950
- msgstr ""
3951
-
3952
- #: ../addons/banking/includes/mycred-banking-functions.php:290
3953
- msgid "The amount to payout can not be zero."
3954
- msgstr ""
3955
-
3956
- #: ../addons/banking/includes/mycred-banking-functions.php:296
3957
- msgid "Start date can not be in the past."
3958
- msgstr ""
3959
-
3960
- #: ../addons/banking/includes/mycred-banking-functions.php:303
3961
- msgid "Repeat can not be zero."
3962
- msgstr ""
3963
-
3964
- #: ../addons/banking/includes/mycred-banking-functions.php:309
3965
- msgid "Duplicate schedule."
3966
- msgstr ""
3967
-
3968
- #: ../addons/gateway/event-booking/mycred-eventespresso3.php:26 ..
3969
- #: addons/gateway/event-booking/mycred-eventsmanager.php:540 ..
3970
- #: addons/gateway/event-booking/mycred-eventsmanager-pro.php:626 ../addons/buy-
3971
- #: creds/modules/buycred-module-core.php:651
3972
- msgid "Payments"
3973
- msgstr ""
3974
-
3975
- #: ../addons/gateway/event-booking/mycred-eventespresso3.php:27 ..
3976
- #: addons/gateway/event-booking/mycred-eventsmanager.php:35 ..
3977
- #: addons/gateway/event-booking/mycred-eventsmanager-pro.php:39 ../addons/buy-
3978
- #: creds/modules/buycred-module-pending.php:710
3979
- msgid "Pay Now"
3980
- msgstr ""
3981
-
3982
- #: ../addons/gateway/event-booking/mycred-eventespresso3.php:32
3983
- msgid "Payment for Event Registration"
3984
- msgstr ""
3985
-
3986
- #: ../addons/gateway/event-booking/mycred-eventespresso3.php:311 ..
3987
- #: addons/gateway/event-booking/mycred-eventespresso3.php:336 ..
3988
- #: addons/gateway/event-booking/mycred-eventsmanager.php:416 ..
3989
- #: addons/gateway/carts/mycred-wpecommerce.php:120 ..
3990
- #: addons/gateway/carts/mycred-marketpress.php:162
3991
- msgid "Total Cost"
3992
- msgstr ""
3993
-
3994
- #: ../addons/gateway/event-booking/mycred-eventespresso3.php:315 ..
3995
- #: addons/gateway/event-booking/mycred-eventespresso3.php:340 ..
3996
- #: addons/gateway/carts/mycred-marketpress.php:166
3997
- msgid "Balance After Purchase"
3998
- msgstr ""
3999
-
4000
- #: ../addons/gateway/event-booking/mycred-eventespresso3.php:380
4001
- #, php-format
4002
- msgid "Activate %s"
4003
- msgstr ""
4004
-
4005
- #: ../addons/gateway/event-booking/mycred-eventespresso3.php:389
4006
- #, php-format
4007
- msgid "Deactivate %s"
4008
- msgstr ""
4009
-
4010
- #: ../addons/gateway/event-booking/mycred-eventespresso3.php:402
4011
- msgid "Gateway Settings"
4012
- msgstr ""
4013
-
4014
- #: ../addons/gateway/event-booking/mycred-eventespresso3.php:442 ..
4015
- #: addons/gateway/event-booking/mycred-eventsmanager.php:524 ..
4016
- #: addons/gateway/event-booking/mycred-eventsmanager-pro.php:595
4017
- #, php-format
4018
- msgid "How many %s is 1 %s worth?"
4019
- msgstr ""
4020
-
4021
- #: ../addons/gateway/event-booking/mycred-eventespresso3.php:463
4022
- msgid "Gateway Title"
4023
- msgstr ""
4024
-
4025
- #: ../addons/gateway/event-booking/mycred-eventespresso3.php:465
4026
- msgid "Title to show on Payment page"
4027
- msgstr ""
4028
-
4029
- #: ../addons/gateway/event-booking/mycred-eventespresso3.php:468
4030
- msgid "Payment Type"
4031
- msgstr ""
4032
-
4033
- #: ../addons/gateway/event-booking/mycred-eventespresso3.php:470
4034
- msgid "Title to show on receipts and logs"
4035
- msgstr ""
4036
-
4037
- #: ../addons/gateway/event-booking/mycred-eventespresso3.php:473 ..
4038
- #: addons/gateway/event-booking/mycred-eventsmanager.php:619 ..
4039
- #: addons/gateway/event-booking/mycred-eventsmanager-pro.php:703 ..
4040
- #: addons/transfer/includes/mycred-transfer-widgets.php:93 ../addons/sell-
4041
- #: content/myCRED-addon-sell-content.php:441 ../addons/sell-content/myCRED-addon-
4042
- #: sell-content.php:476
4043
- msgid "Button Label"
4044
- msgstr ""
4045
-
4046
- #: ../addons/gateway/event-booking/mycred-eventespresso3.php:475
4047
- msgid "Pay Button"
4048
- msgstr ""
4049
-
4050
- #: ../addons/gateway/event-booking/mycred-eventespresso3.php:495 ..
4051
- #: addons/gateway/event-booking/mycred-eventsmanager.php:336 ..
4052
- #: addons/gateway/event-booking/mycred-eventsmanager.php:339 ..
4053
- #: addons/gateway/event-booking/mycred-eventsmanager-pro.php:153 ..
4054
- #: addons/gateway/event-booking/mycred-eventsmanager-pro.php:156 ../addons/sell-
4055
- #: content/myCRED-addon-sell-content.php:425 ../addons/sell-content/myCRED-addon-
4056
- #: sell-content.php:831
4057
- msgid "Price"
4058
- msgstr ""
4059
-
4060
- #: ../addons/gateway/event-booking/mycred-eventespresso3.php:503
4061
- msgid "Important!"
4062
- msgstr ""
4063
-
4064
- #: ../addons/gateway/event-booking/mycred-eventespresso3.php:505
4065
- msgid ""
4066
- "You can disable purchases using this gateway by adding a custom Event Meta: "
4067
- "<code>mycred_no_sale</code>"
4068
- msgstr ""
4069
-
4070
- #: ../addons/gateway/event-booking/mycred-eventespresso3.php:506
4071
- msgid "Users must be logged in to use this gateway!"
4072
- msgstr ""
4073
-
4074
- #: ../addons/gateway/event-booking/mycred-eventespresso3.php:510 ..
4075
- #: addons/gateway/event-booking/mycred-eventsmanager.php:569 ..
4076
- #: addons/gateway/event-booking/mycred-eventsmanager-pro.php:641 ..
4077
- #: addons/gateway/carts/mycred-wpecommerce.php:393 ..
4078
- #: addons/gateway/carts/mycred-woocommerce.php:168 ..
4079
- #: addons/gateway/carts/mycred-marketpress.php:462
4080
- msgid "Profit Sharing"
4081
- msgstr ""
4082
-
4083
- #: ../addons/gateway/event-booking/mycred-eventespresso3.php:512 ..
4084
- #: addons/gateway/event-booking/mycred-eventsmanager.php:572 ..
4085
- #: addons/gateway/event-booking/mycred-eventsmanager-pro.php:644 ..
4086
- #: addons/gateway/carts/mycred-wpecommerce.php:397 ..
4087
- #: addons/gateway/carts/mycred-woocommerce.php:170 ..
4088
- #: addons/gateway/carts/mycred-marketpress.php:467
4089
- msgid "Option to share sales with the product owner. Use zero to disable."
4090
- msgstr ""
4091
-
4092
- #: ../addons/gateway/event-booking/mycred-eventespresso3.php:525 ..
4093
- #: addons/transfer/myCRED-addon-transfer.php:460 ../addons/sell-content/myCRED-
4094
- #: addon-sell-content.php:481
4095
- msgid "Templates"
4096
- msgstr ""
4097
-
4098
- #: ../addons/gateway/event-booking/mycred-eventespresso3.php:528
4099
- msgid "Solvent users"
4100
- msgstr ""
4101
-
4102
- #: ../addons/gateway/event-booking/mycred-eventespresso3.php:530
4103
- msgid ""
4104
- "Message to show users on the payment page before they are charged. Leave "
4105
- "empty to hide."
4106
- msgstr ""
4107
-
4108
- #: ../addons/gateway/event-booking/mycred-eventespresso3.php:533
4109
- msgid "Insolvent users"
4110
- msgstr ""
4111
-
4112
- #: ../addons/gateway/event-booking/mycred-eventespresso3.php:535
4113
- msgid "Message to show users who do not have enough points to pay."
4114
- msgstr ""
4115
-
4116
- #: ../addons/gateway/event-booking/mycred-eventespresso3.php:538 ..
4117
- #: addons/gateway/carts/mycred-wpecommerce.php:411 ..
4118
- #: addons/gateway/carts/mycred-marketpress.php:490 ../addons/transfer/myCRED-
4119
- #: addon-transfer.php:463 ../addons/sell-content/myCRED-addon-sell-content.php:501
4120
- msgid "Visitors"
4121
- msgstr ""
4122
-
4123
- #: ../addons/gateway/event-booking/mycred-eventespresso3.php:540
4124
- msgid "Message to show visitors (users not logged in) on the payment page."
4125
- msgstr ""
4126
-
4127
- #: ../addons/gateway/event-booking/mycred-eventsmanager.php:29 ..
4128
- #: addons/gateway/event-booking/mycred-eventsmanager-pro.php:33
4129
- msgid "Payment for tickets to %link_with_title%"
4130
- msgstr ""
4131
-
4132
- #: ../addons/gateway/event-booking/mycred-eventsmanager.php:30 ..
4133
- #: addons/gateway/event-booking/mycred-eventsmanager-pro.php:34
4134
- msgid "Ticket refund for %link_with_title%"
4135
- msgstr ""
4136
-
4137
- #: ../addons/gateway/event-booking/mycred-eventsmanager.php:34 ..
4138
- #: addons/gateway/event-booking/mycred-eventsmanager-pro.php:38
4139
- #, php-format
4140
- msgid "Pay using your %_plural% balance"
4141
- msgstr ""
4142
-
4143
- #: ../addons/gateway/event-booking/mycred-eventsmanager.php:36 ..
4144
- #: addons/gateway/event-booking/mycred-eventsmanager-pro.php:40
4145
- msgid "Pay"
4146
- msgstr ""
4147
-
4148
- #: ../addons/gateway/event-booking/mycred-eventsmanager.php:39 ..
4149
- #: addons/gateway/event-booking/mycred-eventsmanager-pro.php:44
4150
- msgid "Thank you for your payment!"
4151
- msgstr ""
4152
-
4153
- #: ../addons/gateway/event-booking/mycred-eventsmanager.php:40 ..
4154
- #: addons/gateway/event-booking/mycred-eventsmanager-pro.php:45
4155
- msgid "I'm sorry but you can not pay for these tickets using %_plural%"
4156
- msgstr ""
4157
-
4158
- #: ../addons/gateway/event-booking/mycred-eventsmanager.php:333 ..
4159
- #: addons/gateway/event-booking/mycred-eventsmanager-pro.php:150
4160
- msgid "Ticket Type"
4161
- msgstr ""
4162
-
4163
- #: ../addons/gateway/event-booking/mycred-eventsmanager.php:342 ..
4164
- #: addons/gateway/event-booking/mycred-eventsmanager-pro.php:159
4165
- msgid "Spaces"
4166
- msgstr ""
4167
-
4168
- #: ../addons/gateway/event-booking/mycred-eventsmanager.php:420
4169
- msgid "Balance After Payment"
4170
- msgstr ""
4171
-
4172
- #: ../addons/gateway/event-booking/mycred-eventsmanager.php:532
4173
- msgid "Click to toggle"
4174
- msgstr ""
4175
-
4176
- #: ../addons/gateway/event-booking/mycred-eventsmanager.php:533
4177
- #, php-format
4178
- msgid "%s Payments"
4179
- msgstr ""
4180
-
4181
- #: ../addons/gateway/event-booking/mycred-eventsmanager.php:542 ..
4182
- #: addons/gateway/event-booking/mycred-eventsmanager-pro.php:628
4183
- #, php-format
4184
- msgid "Disabled - Users CAN NOT pay for tickets using %plural%."
4185
- msgstr ""
4186
-
4187
- #: ../addons/gateway/event-booking/mycred-eventsmanager.php:543 ..
4188
- #: addons/gateway/event-booking/mycred-eventsmanager-pro.php:629
4189
- #, php-format
4190
- msgid "Single - Users can ONLY pay for tickets using %plural%."
4191
- msgstr ""
4192
-
4193
- #: ../addons/gateway/event-booking/mycred-eventsmanager.php:544 ..
4194
- #: addons/gateway/event-booking/mycred-eventsmanager-pro.php:630
4195
- #, php-format
4196
- msgid "Multi - Users can pay for tickets using other gateways or %plural%."
4197
- msgstr ""
4198
-
4199
- #: ../addons/gateway/event-booking/mycred-eventsmanager.php:562 ..
4200
- #: addons/gateway/event-booking/mycred-eventsmanager.php:595 ..
4201
- #: addons/gateway/event-booking/mycred-eventsmanager-pro.php:634 ..
4202
- #: addons/gateway/event-booking/mycred-eventsmanager-pro.php:667
4203
- msgid "Refunds"
4204
- msgstr ""
4205
-
4206
- #: ../addons/gateway/event-booking/mycred-eventsmanager.php:565
4207
- msgid ""
4208
- "The percentage of the paid amount to refund if a booking gets cancelled. Use "
4209
- "zero for no refunds. No refunds are given to \"Rejected\" bookings."
4210
- msgstr ""
4211
-
4212
- #: ../addons/gateway/event-booking/mycred-eventsmanager.php:585 ..
4213
- #: addons/gateway/event-booking/mycred-eventsmanager-pro.php:657
4214
- msgid "Log Templates"
4215
- msgstr ""
4216
-
4217
- #: ../addons/gateway/event-booking/mycred-eventsmanager.php:588 ..
4218
- #: addons/gateway/event-booking/mycred-eventsmanager-pro.php:660
4219
- msgid "Purchases"
4220
- msgstr ""
4221
-
4222
- #: ../addons/gateway/event-booking/mycred-eventsmanager.php:605 ..
4223
- #: addons/gateway/event-booking/mycred-eventsmanager-pro.php:689
4224
- msgid "Payment Link Label"
4225
- msgstr ""
4226
-
4227
- #: ../addons/gateway/event-booking/mycred-eventsmanager.php:608 ..
4228
- #: addons/gateway/event-booking/mycred-eventsmanager-pro.php:692
4229
- msgid ""
4230
- "The payment link shows / hides the payment form under \"My Bookings\". No HTML "
4231
- "allowed."
4232
- msgstr ""
4233
-
4234
- #: ../addons/gateway/event-booking/mycred-eventsmanager.php:612 ..
4235
- #: addons/gateway/event-booking/mycred-eventsmanager-pro.php:696
4236
- msgid "Payment Header"
4237
- msgstr ""
4238
-
4239
- #: ../addons/gateway/event-booking/mycred-eventsmanager.php:615 ..
4240
- #: addons/gateway/event-booking/mycred-eventsmanager-pro.php:699
4241
- msgid "Shown on top of the payment form. No HTML allowed."
4242
- msgstr ""
4243
-
4244
- #: ../addons/gateway/event-booking/mycred-eventsmanager.php:622 ..
4245
- #: addons/gateway/event-booking/mycred-eventsmanager-pro.php:706
4246
- msgid "The button label for payments. No HTML allowed!"
4247
- msgstr ""
4248
-
4249
- #: ../addons/gateway/event-booking/mycred-eventsmanager.php:626 ..
4250
- #: addons/gateway/event-booking/mycred-eventsmanager-pro.php:717 ..
4251
- #: addons/gateway/carts/mycred-wpecommerce.php:404 ..
4252
- #: addons/gateway/carts/mycred-marketpress.php:479
4253
- msgid "Messages"
4254
- msgstr ""
4255
-
4256
- #: ../addons/gateway/event-booking/mycred-eventsmanager.php:629 ..
4257
- #: addons/gateway/event-booking/mycred-eventsmanager-pro.php:720
4258
- msgid "Successful Payments"
4259
- msgstr ""
4260
-
4261
- #: ../addons/gateway/event-booking/mycred-eventsmanager.php:632 ..
4262
- #: addons/gateway/event-booking/mycred-eventsmanager.php:639 ..
4263
- #: addons/gateway/event-booking/mycred-eventsmanager-pro.php:723 ..
4264
- #: addons/gateway/event-booking/mycred-eventsmanager-pro.php:730
4265
- msgid "No HTML allowed!"
4266
- msgstr ""
4267
-
4268
- #: ../addons/gateway/event-booking/mycred-eventsmanager-pro.php:41
4269
- #, php-format
4270
- msgid "%plural% Cost"
4271
- msgstr ""
4272
-
4273
- #: ../addons/gateway/event-booking/mycred-eventsmanager-pro.php:213
4274
- msgid "Your Balance"
4275
- msgstr ""
4276
-
4277
- #: ../addons/gateway/event-booking/mycred-eventsmanager-pro.php:374
4278
- msgid "You can not pay using this gateway."
4279
- msgstr ""
4280
-
4281
- #: ../addons/gateway/event-booking/mycred-eventsmanager-pro.php:492
4282
- msgid "Reject"
4283
- msgstr ""
4284
-
4285
- #: ../addons/gateway/event-booking/mycred-eventsmanager-pro.php:501
4286
- msgid "Edit/View"
4287
- msgstr ""
4288
-
4289
- #: ../addons/gateway/event-booking/mycred-eventsmanager-pro.php:637
4290
- msgid ""
4291
- "The percentage of the paid amount to refund if a user cancels their booking. "
4292
- "Use zero for no refunds. No refunds are given to \"Rejected\" bookings!"
4293
- msgstr ""
4294
-
4295
- #: ../addons/gateway/event-booking/mycred-eventsmanager-pro.php:710
4296
- msgid "Cart & Checkout Cost"
4297
- msgstr ""
4298
-
4299
- #: ../addons/gateway/event-booking/mycred-eventsmanager-pro.php:713
4300
- #, php-format
4301
- msgid "Label for cost in %plural%"
4302
- msgstr ""
4303
-
4304
- #: ../addons/gateway/carts/mycred-wpecommerce.php:20 ..
4305
- #: addons/gateway/carts/mycred-marketpress.php:396
4306
- #, php-format
4307
- msgid "Payment for Order: #%order_id%"
4308
- msgstr ""
4309
-
4310
- #: ../addons/gateway/carts/mycred-wpecommerce.php:23
4311
- msgid "Store sale"
4312
- msgstr ""
4313
-
4314
- #: ../addons/gateway/carts/mycred-wpecommerce.php:25
4315
- msgid "You must be logged in to use this gateway"
4316
- msgstr ""
4317
-
4318
- #: ../addons/gateway/carts/mycred-wpecommerce.php:26
4319
- msgid "Insufficient Funds."
4320
- msgstr ""
4321
-
4322
- #: ../addons/gateway/carts/mycred-wpecommerce.php:27
4323
- msgid "Deduct the amount from your balance."
4324
- msgstr ""
4325
-
4326
- #: ../addons/gateway/carts/mycred-wpecommerce.php:107 ../addons/buy-
4327
- #: creds/gateways/bank-transfer.php:110
4328
- msgid "Item"
4329
- msgstr ""
4330
-
4331
- #: ../addons/gateway/carts/mycred-wpecommerce.php:128 ..
4332
- #: addons/gateway/carts/mycred-woocommerce.php:756
4333
- msgid "Your current balance"
4334
- msgstr ""
4335
-
4336
- #: ../addons/gateway/carts/mycred-wpecommerce.php:202
4337
- msgid "You can not use this gateway."
4338
- msgstr ""
4339
-
4340
- #: ../addons/gateway/carts/mycred-wpecommerce.php:373
4341
- msgid "Log Template for Payments"
4342
- msgstr ""
4343
-
4344
- #: ../addons/gateway/carts/mycred-wpecommerce.php:390
4345
- #, php-format
4346
- msgid "How much is 1 %s worth in %s"
4347
- msgstr ""
4348
-
4349
- #: ../addons/gateway/carts/mycred-wpecommerce.php:407
4350
- msgid "Instructions"
4351
- msgstr ""
4352
-
4353
- #: ../addons/gateway/carts/mycred-wpecommerce.php:408
4354
- msgid ""
4355
- "Optional instructions to show users when selecting this gateway. Leave empty "
4356
- "to hide."
4357
- msgstr ""
4358
-
4359
- #: ../addons/gateway/carts/mycred-wpecommerce.php:412
4360
- msgid "Message to show visitors who are not logged in."
4361
- msgstr ""
4362
-
4363
- #: ../addons/gateway/carts/mycred-wpecommerce.php:416
4364
- #, php-format
4365
- msgid ""
4366
- "Message to show when users does not have enough %plural% to pay using this "
4367
- "gateway."
4368
- msgstr ""
4369
-
4370
- #: ../addons/gateway/carts/mycred-woocommerce.php:30
4371
- msgid "Let users pay using their myCRED balance."
4372
- msgstr ""
4373
-
4374
- #: ../addons/gateway/carts/mycred-woocommerce.php:84
4375
- msgid "Enable/Disable"
4376
- msgstr ""
4377
-
4378
- #: ../addons/gateway/carts/mycred-woocommerce.php:86
4379
- msgid "Enable myCRED Payment"
4380
- msgstr ""
4381
-
4382
- #: ../addons/gateway/carts/mycred-woocommerce.php:88
4383
- msgid ""
4384
- "Users who are not logged in or excluded from using myCRED will not have "
4385
- "access to this gateway!"
4386
- msgstr ""
4387
-
4388
- #: ../addons/gateway/carts/mycred-woocommerce.php:93
4389
- msgid "Title to show for this payment option."
4390
- msgstr ""
4391
-
4392
- #: ../addons/gateway/carts/mycred-woocommerce.php:94
4393
- msgid "Pay with myCRED"
4394
- msgstr ""
4395
-
4396
- #: ../addons/gateway/carts/mycred-woocommerce.php:98
4397
- msgid "Customer Message"
4398
- msgstr ""
4399
-
4400
- #: ../addons/gateway/carts/mycred-woocommerce.php:109 ..
4401
- #: addons/gateway/carts/mycred-woocommerce.php:181
4402
- msgid "Refund Log Template"
4403
- msgstr ""
4404
-
4405
- #: ../addons/gateway/carts/mycred-woocommerce.php:121
4406
- msgid "Select the point type users can use to pay."
4407
- msgstr ""
4408
-
4409
- #: ../addons/gateway/carts/mycred-woocommerce.php:135 ..
4410
- #: addons/gateway/carts/mycred-marketpress.php:444
4411
- #, php-format
4412
- msgid "How much is 1 %_singular% worth in %currency%?"
4413
- msgstr ""
4414
-
4415
- #: ../addons/gateway/carts/mycred-woocommerce.php:147
4416
- msgid "Show Total"
4417
- msgstr ""
4418
-
4419
- #: ../addons/gateway/carts/mycred-woocommerce.php:149
4420
- msgid "Show the final price in %_plural% ."
4421
- msgstr ""
4422
-
4423
- #: ../addons/gateway/carts/mycred-woocommerce.php:152
4424
- msgid "Show in Cart"
4425
- msgstr ""
4426
-
4427
- #: ../addons/gateway/carts/mycred-woocommerce.php:153
4428
- msgid "Show on Checkout Page"
4429
- msgstr ""
4430
-
4431
- #: ../addons/gateway/carts/mycred-woocommerce.php:154
4432
- msgid "Show in Cart and on Checkout Page"
4433
- msgstr ""
4434
-
4435
- #: ../addons/gateway/carts/mycred-woocommerce.php:161
4436
- msgid "Order Total in %_plural%"
4437
- msgstr ""
4438
-
4439
- #: ../addons/gateway/carts/mycred-woocommerce.php:177
4440
- msgid "Log entry template for profit sharing."
4441
- msgstr ""
4442
-
4443
- #: ../addons/gateway/carts/mycred-woocommerce.php:183
4444
- msgid "Log entry template for refunds of profit shares."
4445
- msgstr ""
4446
-
4447
- #: ../addons/gateway/carts/mycred-woocommerce.php:213
4448
- msgid "myCRED Payment"
4449
- msgstr ""
4450
-
4451
- #: ../addons/gateway/carts/mycred-woocommerce.php:237
4452
- msgid "You must be logged in to pay with %_plural%"
4453
- msgstr ""
4454
-
4455
- #: ../addons/gateway/carts/mycred-woocommerce.php:245
4456
- msgid "You can not use this gateway. Please try a different payment option."
4457
- msgstr ""
4458
-
4459
- #: ../addons/gateway/carts/mycred-woocommerce.php:262 ..
4460
- #: addons/gateway/carts/mycred-marketpress.php:402 ../addons/sell-
4461
- #: content/includes/mycred-sell-functions.php:501
4462
- msgid "Insufficient funds."
4463
- msgstr ""
4464
-
4465
- #: ../addons/gateway/carts/mycred-woocommerce.php:364
4466
- #, php-format
4467
- msgctxt "%s = Point amount formatted"
4468
- msgid "Refunded %s"
4469
- msgstr ""
4470
-
4471
- #: ../addons/gateway/carts/mycred-woocommerce.php:414
4472
- msgid "Your account has successfully been charged."
4473
- msgstr ""
4474
-
4475
- #: ../addons/gateway/carts/mycred-marketpress.php:192 ../addons/buy-
4476
- #: creds/abstracts/mycred-abstract-payment-gateway.php:427 ../addons/buy-
4477
- #: creds/gateways/bank-transfer.php:100
4478
- msgid "Payment"
4479
- msgstr ""
4480
-
4481
- #: ../addons/gateway/carts/mycred-marketpress.php:196 ..
4482
- #: addons/gateway/carts/mycred-marketpress.php:252
4483
- msgid "Go Back"
4484
- msgstr ""
4485
-
4486
- #: ../addons/gateway/carts/mycred-marketpress.php:201
4487
- msgid "will be deducted from your account."
4488
- msgstr ""
4489
-
4490
- #: ../addons/gateway/carts/mycred-marketpress.php:241
4491
- #, php-format
4492
- msgid ""
4493
- "Sorry, but you can not use this gateway as your account is excluded. Please "
4494
- "<a href=\"%s\">select a different payment method</a>."
4495
- msgstr ""
4496
-
4497
- #: ../addons/gateway/carts/mycred-marketpress.php:271
4498
- msgid "Paid"
4499
- msgstr ""
4500
-
4501
- #: ../addons/gateway/carts/mycred-marketpress.php:393
4502
- #, php-format
4503
- msgid "%_singular% Balance"
4504
- msgstr ""
4505
-
4506
- #: ../addons/gateway/carts/mycred-marketpress.php:399
4507
- #, php-format
4508
- msgid "Product Sale: %post_title%"
4509
- msgstr ""
4510
-
4511
- #: ../addons/gateway/carts/mycred-marketpress.php:400
4512
- msgid "Pay using your account balance."
4513
- msgstr ""
4514
-
4515
- #: ../addons/gateway/carts/mycred-marketpress.php:401
4516
- #, php-format
4517
- msgid ""
4518
- "TOTAL amount has been deducted from your account. Your current balance is: "
4519
- "%balance_f%"
4520
- msgstr ""
4521
-
4522
- #: ../addons/gateway/carts/mycred-marketpress.php:403
4523
- msgid ""
4524
- "You must be logged in to pay with %_plural%. Please <a "
4525
- "href=\"%login_url_here%\">login</a>."
4526
- msgstr ""
4527
-
4528
- #: ../addons/gateway/carts/mycred-marketpress.php:411
4529
- #, php-format
4530
- msgid ""
4531
- "Let your users pay for items in their shopping cart using their %s Account. "
4532
- "Note! This gateway requires your users to be logged in when making a "
4533
- "purchase!"
4534
- msgstr ""
4535
-
4536
- #: ../addons/gateway/carts/mycred-marketpress.php:414
4537
- msgid "Method Name"
4538
- msgstr ""
4539
-
4540
- #: ../addons/gateway/carts/mycred-marketpress.php:416
4541
- msgid ""
4542
- "Enter a public name for this payment method that is displayed to users - No "
4543
- "HTML"
4544
- msgstr ""
4545
-
4546
- #: ../addons/gateway/carts/mycred-marketpress.php:421
4547
- msgid "Gateway Logo URL"
4548
- msgstr ""
4549
-
4550
- #: ../addons/gateway/carts/mycred-marketpress.php:465
4551
- msgid "Percentage"
4552
- msgstr ""
4553
-
4554
- #: ../addons/gateway/carts/mycred-marketpress.php:484
4555
- msgid "Message to show when the user can not use this gateway."
4556
- msgstr ""
4557
-
4558
- #: ../addons/gateway/carts/mycred-marketpress.php:492
4559
- msgid "Message to show to buyers that are not logged in."
4560
- msgstr ""
4561
-
4562
- #: ../addons/gateway/carts/mycred-marketpress.php:498
4563
- msgid "User Instructions"
4564
- msgstr ""
4565
-
4566
- #: ../addons/gateway/carts/mycred-marketpress.php:500
4567
- msgid "Information to show users before payment."
4568
- msgstr ""
4569
-
4570
- #: ../addons/gateway/carts/mycred-marketpress.php:506
4571
- msgid "Confirmation Information"
4572
- msgstr ""
4573
-
4574
- #: ../addons/gateway/carts/mycred-marketpress.php:508
4575
- msgid "Information to display on the order confirmation page. - HTML allowed"
4576
- msgstr ""
4577
-
4578
- #: ../addons/gateway/carts/mycred-marketpress.php:514
4579
- msgid "Order Confirmation Email"
4580
- msgstr ""
4581
-
4582
- #: ../addons/gateway/carts/mycred-marketpress.php:516
4583
- #, php-format
4584
- msgid ""
4585
- "This is the email text to send to those who have made %s checkouts. It "
4586
- "overrides the default order checkout email. These codes will be replaced "
4587
- "with order details: CUSTOMERNAME, ORDERID, ORDERINFO, SHIPPINGINFO, "
4588
- "PAYMENTINFO, TOTAL, TRACKINGURL. No HTML allowed."
4589
- msgstr ""
4590
-
4591
- #: ../addons/transfer/myCRED-addon-transfer.php:41
4592
- #, php-format
4593
- msgid "You do not have enough %plural% to send."
4594
- msgstr ""
4595
-
4596
- #: ../addons/transfer/myCRED-addon-transfer.php:42
4597
- msgid "You have exceeded your %limit% transfer limit."
4598
- msgstr ""
4599
-
4600
- #: ../addons/transfer/myCRED-addon-transfer.php:147
4601
- msgid "Transaction completed."
4602
- msgstr ""
4603
-
4604
- #: ../addons/transfer/myCRED-addon-transfer.php:148
4605
- msgid "Security token could not be verified. Please contact your site administrator!"
4606
- msgstr ""
4607
-
4608
- #: ../addons/transfer/myCRED-addon-transfer.php:149 ../addons/transfer/myCRED-
4609
- #: addon-transfer.php:156
4610
- msgid "Communications error. Please try again later."
4611
- msgstr ""
4612
-
4613
- #: ../addons/transfer/myCRED-addon-transfer.php:150
4614
- msgid "Recipient not found. Please try again."
4615
- msgstr ""
4616
-
4617
- #: ../addons/transfer/myCRED-addon-transfer.php:151
4618
- msgid "Transaction declined by recipient."
4619
- msgstr ""
4620
-
4621
- #: ../addons/transfer/myCRED-addon-transfer.php:152
4622
- msgid "Incorrect amount. Please try again."
4623
- msgstr ""
4624
-
4625
- #: ../addons/transfer/myCRED-addon-transfer.php:153
4626
- msgid ""
4627
- "This myCRED Add-on has not yet been setup! No transfers are allowed until "
4628
- "this has been done!"
4629
- msgstr ""
4630
-
4631
- #: ../addons/transfer/myCRED-addon-transfer.php:155
4632
- msgid "Transfer Limit exceeded."
4633
- msgstr ""
4634
-
4635
- #: ../addons/transfer/myCRED-addon-transfer.php:360
4636
- msgid "No limits."
4637
- msgstr ""
4638
-
4639
- #: ../addons/transfer/myCRED-addon-transfer.php:361
4640
- msgid "Impose daily limit."
4641
- msgstr ""
4642
-
4643
- #: ../addons/transfer/myCRED-addon-transfer.php:362
4644
- msgid "Impose weekly limit."
4645
- msgstr ""
4646
-
4647
- #: ../addons/transfer/myCRED-addon-transfer.php:369
4648
- msgid "User Login (user_login)"
4649
- msgstr ""
4650
-
4651
- #: ../addons/transfer/myCRED-addon-transfer.php:370
4652
- msgid "User Email (user_email)"
4653
- msgstr ""
4654
-
4655
- #: ../addons/transfer/myCRED-addon-transfer.php:378
4656
- msgid "Transfers"
4657
- msgstr ""
4658
-
4659
- #: ../addons/transfer/myCRED-addon-transfer.php:388
4660
- msgid "Select the point types that users can transfer."
4661
- msgstr ""
4662
-
4663
- #: ../addons/transfer/myCRED-addon-transfer.php:398
4664
- msgid "Log template for sending"
4665
- msgstr ""
4666
-
4667
- #: ../addons/transfer/myCRED-addon-transfer.php:405
4668
- msgid "Log template for receiving"
4669
- msgstr ""
4670
-
4671
- #: ../addons/transfer/myCRED-addon-transfer.php:412
4672
- msgid "Autofill Recipient"
4673
- msgstr ""
4674
-
4675
- #: ../addons/transfer/myCRED-addon-transfer.php:426
4676
- msgid "Select what user details recipients should be autofilled by."
4677
- msgstr ""
4678
-
4679
- #: ../addons/transfer/myCRED-addon-transfer.php:429
4680
- msgid "Reload"
4681
- msgstr ""
4682
-
4683
- #: ../addons/transfer/myCRED-addon-transfer.php:432
4684
- msgid "Reload page on successful transfers."
4685
- msgstr ""
4686
-
4687
- #: ../addons/transfer/myCRED-addon-transfer.php:456
4688
- msgid "Limit Amount"
4689
- msgstr ""
4690
-
4691
- #: ../addons/transfer/myCRED-addon-transfer.php:464
4692
- msgid ""
4693
- "The template to use when the transfer shortcode or widget is viewed by "
4694
- "someone who is not logged in."
4695
- msgstr ""
4696
-
4697
- #: ../addons/transfer/myCRED-addon-transfer.php:479
4698
- msgid ""
4699
- "The template to use if you select to show the transfer limit in the transfer "
4700
- "shortcode or widget. Ignored if there is no limit enforced."
4701
- msgstr ""
4702
-
4703
- #: ../addons/transfer/myCRED-addon-transfer.php:496
4704
- msgid ""
4705
- "The template to use if you select to show the users balance in the transfer "
4706
- "shortcode or widget. Ignored if balances are not shown."
4707
- msgstr ""
4708
-
4709
- #: ../addons/transfer/myCRED-addon-transfer.php:512
4710
- msgid "Default Button Label"
4711
- msgstr ""
4712
-
4713
- #: ../addons/transfer/myCRED-addon-transfer.php:514
4714
- msgid ""
4715
- "The default transfer button label. You can override this in the shortcode or "
4716
- "widget if needed."
4717
- msgstr ""
4718
-
4719
- #: ../addons/transfer/myCRED-addon-transfer.php:517
4720
- msgid "Insufficient Funds Warning"
4721
- msgstr ""
4722
-
4723
- #: ../addons/transfer/myCRED-addon-transfer.php:521
4724
- msgid "Message to show the user if they try to send more then they can afford."
4725
- msgstr ""
4726
-
4727
- #: ../addons/transfer/myCRED-addon-transfer.php:524
4728
- msgid "Limit Reached Warning"
4729
- msgstr ""
4730
-
4731
- #: ../addons/transfer/myCRED-addon-transfer.php:528
4732
- msgid ""
4733
- "Message to show the user once they reach their transfer limit. Ignored if no "
4734
- "limits are enforced."
4735
- msgstr ""
4736
-
4737
- #: ../addons/transfer/includes/mycred-transfer-widgets.php:21
4738
- #, php-format
4739
- msgid "(%s) Transfer"
4740
- msgstr ""
4741
-
4742
- #: ../addons/transfer/includes/mycred-transfer-widgets.php:24
4743
- msgid "Allow transfers between users."
4744
- msgstr ""
4745
-
4746
- #: ../addons/transfer/includes/mycred-transfer-widgets.php:87
4747
- msgid "Show users balance"
4748
- msgstr ""
4749
-
4750
- #: ../addons/transfer/includes/mycred-transfer-widgets.php:90
4751
- msgid "Show users limit"
4752
- msgstr ""
4753
-
4754
- #: ../addons/transfer/includes/mycred-transfer-widgets.php:105 ..
4755
- #: addons/transfer/includes/mycred-transfer-shortcodes.php:31 ../addons/buy-
4756
- #: creds/modules/buycred-module-pending.php:542 ../addons/buy-
4757
- #: creds/modules/buycred-module-core.php:1384
4758
- msgid "Recipient"
4759
- msgstr ""
4760
-
4761
- #: ../addons/transfer/includes/mycred-transfer-widgets.php:113
4762
- msgid "Placeholder"
4763
- msgstr ""
4764
-
4765
- #: ../addons/transfer/includes/mycred-transfer-widgets.php:117
4766
- msgid "Message for Excluded Users"
4767
- msgstr ""
4768
-
4769
- #: ../addons/transfer/includes/mycred-transfer-shortcodes.php:152
4770
- msgid "username"
4771
- msgstr ""
4772
-
4773
- #: ../addons/transfer/includes/mycred-transfer-shortcodes.php:155
4774
- msgid "email"
4775
- msgstr ""
4776
-
4777
- #: ../addons/transfer/includes/mycred-transfer-shortcodes.php:157
4778
- #, php-format
4779
- msgid "recipients %s"
4780
- msgstr ""
4781
-
4782
- #: ../addons/ranks/myCRED-addon-ranks.php:216
4783
- #, php-format
4784
- msgid "Ranks for %s"
4785
- msgstr ""
4786
-
4787
- #: ../addons/ranks/myCRED-addon-ranks.php:218 ../addons/ranks/myCRED-addon-ranks.
4788
- #: php:227 ../addons/ranks/myCRED-addon-ranks.php:237 ../addons/ranks/myCRED-
4789
- #: addon-ranks.php:326 ../addons/ranks/myCRED-addon-ranks.php:327 ..
4790
- #: addons/ranks/myCRED-addon-ranks.php:699 ../addons/ranks/myCRED-addon-ranks.
4791
- #: php:1323 ../addons/ranks/myCRED-addon-ranks.php:1613
4792
- msgid "Ranks"
4793
- msgstr ""
4794
-
4795
- #: ../addons/ranks/myCRED-addon-ranks.php:222 ../addons/ranks/myCRED-addon-ranks.
4796
- #: php:699 ../addons/ranks/myCRED-addon-ranks.php:848 ../addons/ranks/myCRED-
4797
- #: addon-ranks.php:851 ../addons/ranks/myCRED-addon-ranks.php:869
4798
- msgid "Rank"
4799
- msgstr ""
4800
-
4801
- #: ../addons/ranks/myCRED-addon-ranks.php:225
4802
- msgid "Edit Rank"
4803
- msgstr ""
4804
-
4805
- #: ../addons/ranks/myCRED-addon-ranks.php:226
4806
- msgid "New Rank"
4807
- msgstr ""
4808
-
4809
- #: ../addons/ranks/myCRED-addon-ranks.php:228
4810
- msgid "View Rank"
4811
- msgstr ""
4812
-
4813
- #: ../addons/ranks/myCRED-addon-ranks.php:229
4814
- msgid "Search Ranks"
4815
- msgstr ""
4816
-
4817
- #: ../addons/ranks/myCRED-addon-ranks.php:230 ../addons/ranks/myCRED-addon-ranks.
4818
- #: php:1333
4819
- msgid "Rank Logo"
4820
- msgstr ""
4821
-
4822
- #: ../addons/ranks/myCRED-addon-ranks.php:231
4823
- msgid "Set rank logo"
4824
- msgstr ""
4825
-
4826
- #: ../addons/ranks/myCRED-addon-ranks.php:232
4827
- msgid "Remove rank logo"
4828
- msgstr ""
4829
-
4830
- #: ../addons/ranks/myCRED-addon-ranks.php:233
4831
- msgid "Use as Logo"
4832
- msgstr ""
4833
-
4834
- #: ../addons/ranks/myCRED-addon-ranks.php:234 ../addons/ranks/myCRED-addon-ranks.
4835
- #: php:1256
4836
- msgid "No ranks found"
4837
- msgstr ""
4838
-
4839
- #: ../addons/ranks/myCRED-addon-ranks.php:235
4840
- msgid "No ranks found in Trash"
4841
- msgstr ""
4842
-
4843
- #: ../addons/ranks/myCRED-addon-ranks.php:283 ../addons/ranks/myCRED-addon-ranks.
4844
- #: php:284 ../addons/ranks/myCRED-addon-ranks.php:285 ../addons/ranks/myCRED-
4845
- #: addon-ranks.php:286 ../addons/ranks/myCRED-addon-ranks.php:287 ..
4846
- #: addons/ranks/myCRED-addon-ranks.php:290 ../addons/ranks/myCRED-addon-ranks.
4847
- #: php:291
4848
- msgid "Rank Updated."
4849
- msgstr ""
4850
-
4851
- #: ../addons/ranks/myCRED-addon-ranks.php:288
4852
- msgid "Rank Enabled."
4853
- msgstr ""
4854
-
4855
- #: ../addons/ranks/myCRED-addon-ranks.php:289
4856
- msgid "Rank Saved."
4857
- msgstr ""
4858
-
4859
- #: ../addons/ranks/myCRED-addon-ranks.php:452
4860
- #, php-format
4861
- msgid "Completed - Total of %d users effected"
4862
- msgstr ""
4863
-
4864
- #: ../addons/ranks/myCRED-addon-ranks.php:956
4865
- msgid "Warning! All ranks will be deleted! This can not be undone!"
4866
- msgstr ""
4867
-
4868
- #: ../addons/ranks/myCRED-addon-ranks.php:957
4869
- msgid "Are you sure you want to re-assign user ranks?"
4870
- msgstr ""
4871
-
4872
- #: ../addons/ranks/myCRED-addon-ranks.php:1042 ../addons/ranks/myCRED-addon-ranks.
4873
- #: php:1143
4874
- msgid "Rank Title"
4875
- msgstr ""
4876
-
4877
- #: ../addons/ranks/myCRED-addon-ranks.php:1043
4878
- msgid "Logo"
4879
- msgstr ""
4880
-
4881
- #: ../addons/ranks/myCRED-addon-ranks.php:1044 ../addons/badges/myCRED-addon-
4882
- #: badges.php:828 ../addons/badges/myCRED-addon-badges.php:829
4883
- msgid "Requirement"
4884
- msgstr ""
4885
-
4886
- #: ../addons/ranks/myCRED-addon-ranks.php:1070
4887
- msgid "No Logo Set"
4888
- msgstr ""
4889
-
4890
- #: ../addons/ranks/myCRED-addon-ranks.php:1085 ../addons/ranks/myCRED-addon-ranks.
4891
- #: php:1090
4892
- msgid "Any Value"
4893
- msgstr ""
4894
-
4895
- #: ../addons/ranks/myCRED-addon-ranks.php:1087 ../addons/buy-
4896
- #: creds/modules/buycred-module-core.php:303
4897
- #, php-format
4898
- msgid "Minimum %plural%"
4899
- msgstr ""
4900
-
4901
- #: ../addons/ranks/myCRED-addon-ranks.php:1092
4902
- #, php-format
4903
- msgid "Maximum %plural%"
4904
- msgstr ""
4905
-
4906
- #: ../addons/ranks/myCRED-addon-ranks.php:1158
4907
- msgid "Rank Setup"
4908
- msgstr ""
4909
-
4910
- #: ../addons/ranks/myCRED-addon-ranks.php:1201
4911
- msgid "Minimum Balance Requirement"
4912
- msgstr ""
4913
-
4914
- #: ../addons/ranks/myCRED-addon-ranks.php:1207
4915
- msgid "Maximum Balance Requirement"
4916
- msgstr ""
4917
-
4918
- #: ../addons/ranks/myCRED-addon-ranks.php:1245 ../addons/ranks/myCRED-addon-ranks.
4919
- #: php:1246
4920
- msgid "Not Set"
4921
- msgstr ""
4922
-
4923
- #: ../addons/ranks/myCRED-addon-ranks.php:1328
4924
- msgid "Rank Features"
4925
- msgstr ""
4926
-
4927
- #: ../addons/ranks/myCRED-addon-ranks.php:1332
4928
- #, php-format
4929
- msgid "%plural% requirement"
4930
- msgstr ""
4931
-
4932
- #: ../addons/ranks/myCRED-addon-ranks.php:1335
4933
- msgid "Content"
4934
- msgstr ""
4935
-
4936
- #: ../addons/ranks/myCRED-addon-ranks.php:1337
4937
- msgid "Excerpt"
4938
- msgstr ""
4939
-
4940
- #: ../addons/ranks/myCRED-addon-ranks.php:1339
4941
- msgid "Comments"
4942
- msgstr ""
4943
-
4944
- #: ../addons/ranks/myCRED-addon-ranks.php:1341
4945
- msgid "Page Attributes"
4946
- msgstr ""
4947
-
4948
- #: ../addons/ranks/myCRED-addon-ranks.php:1343
4949
- msgid "Custom Fields"
4950
- msgstr ""
4951
-
4952
- #: ../addons/ranks/myCRED-addon-ranks.php:1347
4953
- msgid "Public"
4954
- msgstr ""
4955
-
4956
- #: ../addons/ranks/myCRED-addon-ranks.php:1351
4957
- msgid ""
4958
- "If you want to create a template archive for each rank, you must select to "
4959
- "have ranks public. Defaults to disabled."
4960
- msgstr ""
4961
-
4962
- #: ../addons/ranks/myCRED-addon-ranks.php:1354
4963
- msgid "Archive URL"
4964
- msgstr ""
4965
-
4966
- #: ../addons/ranks/myCRED-addon-ranks.php:1358
4967
- msgid "Ignored if Ranks are not public"
4968
- msgstr ""
4969
-
4970
- #: ../addons/ranks/myCRED-addon-ranks.php:1361
4971
- msgid "Display Order"
4972
- msgstr ""
4973
-
4974
- #: ../addons/ranks/myCRED-addon-ranks.php:1369
4975
- msgid "Ascending - Lowest rank to highest"
4976
- msgstr ""
4977
-
4978
- #: ../addons/ranks/myCRED-addon-ranks.php:1370
4979
- msgid "Descending - Highest rank to lowest"
4980
- msgstr ""
4981
-
4982
- #: ../addons/ranks/myCRED-addon-ranks.php:1381
4983
- msgid ""
4984
- "Select in what order ranks should be displayed in your admin area and/or "
4985
- "front if ranks are \"Public\""
4986
- msgstr ""
4987
-
4988
- #: ../addons/ranks/myCRED-addon-ranks.php:1387
4989
- msgid "Rank Basis"
4990
- msgstr ""
4991
-
4992
- #: ../addons/ranks/myCRED-addon-ranks.php:1390
4993
- msgid "Users are ranked according to their current balance."
4994
- msgstr ""
4995
-
4996
- #: ../addons/ranks/myCRED-addon-ranks.php:1393
4997
- msgid ""
4998
- "Users are ranked according to the total amount of %_plural% they have "
4999
- "accumulated."
5000
- msgstr ""
5001
-
5002
- #: ../addons/ranks/myCRED-addon-ranks.php:1397 ../addons/ranks/myCRED-addon-ranks.
5003
- #: php:1402
5004
- msgid "Calculate Totals"
5005
- msgstr ""
5006
-
5007
- #: ../addons/ranks/myCRED-addon-ranks.php:1400
5008
- msgid ""
5009
- "Use this button to calculate or recalculate your users totals. If not used, "
5010
- "the users current balance will be used as a starting point."
5011
- msgstr ""
5012
-
5013
- #: ../addons/ranks/myCRED-addon-ranks.php:1400
5014
- msgid ""
5015
- "Once a users total has been calculated, they will be assigned to their "
5016
- "appropriate roles. For this reason, it is highly recommended that you first "
5017
- "setup your ranks!"
5018
- msgstr ""
5019
-
5020
- #: ../addons/ranks/myCRED-addon-ranks.php:1401
5021
- msgid ""
5022
- "Depending on your log size and number of users this process may take a while."
5023
- " Please do not leave, click \"Update Settings\" or re-fresh this page until "
5024
- "this is completed!"
5025
- msgstr ""
5026
-
5027
- #: ../addons/ranks/myCRED-addon-ranks.php:1419
5028
- msgid "Include in Profile Header."
5029
- msgstr ""
5030
-
5031
- #: ../addons/ranks/myCRED-addon-ranks.php:1421
5032
- msgid "Include under the \"Profile\" tab and Profile Header."
5033
- msgstr ""
5034
-
5035
- #: ../addons/ranks/myCRED-addon-ranks.php:1425
5036
- msgid "Rank in BuddyPress"
5037
- msgstr ""
5038
-
5039
- #: ../addons/ranks/myCRED-addon-ranks.php:1442 ../addons/ranks/myCRED-addon-ranks.
5040
- #: php:1487
5041
- #, php-format
5042
- msgid ""
5043
- "Template to use when showing a users Rank in BuddyPress. Use %rank_title% "
5044
- "for the title and %rank_logo% to show the rank logo. HTML is allowed."
5045
- msgstr ""
5046
-
5047
- #: ../addons/ranks/myCRED-addon-ranks.php:1464
5048
- msgid "Include in Topic Replies"
5049
- msgstr ""
5050
-
5051
- #: ../addons/ranks/myCRED-addon-ranks.php:1465 ../addons/badges/myCRED-addon-
5052
- #: badges.php:1183
5053
- msgid "Include in Profile"
5054
- msgstr ""
5055
-
5056
- #: ../addons/ranks/myCRED-addon-ranks.php:1466
5057
- msgid "Include in Topic Replies and Profile"
5058
- msgstr ""
5059
-
5060
- #: ../addons/ranks/myCRED-addon-ranks.php:1470
5061
- msgid "Rank in bbPress"
5062
- msgstr ""
5063
-
5064
- #: ../addons/ranks/myCRED-addon-ranks.php:1549
5065
- msgid "Script Communication Error"
5066
- msgstr ""
5067
-
5068
- #: ../addons/ranks/myCRED-addon-ranks.php:1616
5069
- msgid "User Meta Key"
5070
- msgstr ""
5071
-
5072
- #: ../addons/ranks/myCRED-addon-ranks.php:1620
5073
- msgid "No. of ranks"
5074
- msgstr ""
5075
-
5076
- #: ../addons/ranks/myCRED-addon-ranks.php:1625
5077
- msgid "Remove All Ranks"
5078
- msgstr ""
5079
-
5080
- #: ../addons/ranks/myCRED-addon-ranks.php:1625
5081
- msgid "Assign Ranks to Users"
5082
- msgstr ""
5083
-
5084
- #: ../addons/ranks/includes/mycred-rank-shortcodes.php:128 ..
5085
- #: addons/ranks/includes/mycred-rank-shortcodes.php:222
5086
- msgid "No users found with this rank"
5087
- msgstr ""
5088
-
5089
- #: ../addons/ranks/includes/mycred-rank-shortcodes.php:135
5090
- msgid "Rank ID is required!"
5091
- msgstr ""
5092
-
5093
- #: ../addons/notifications/myCRED-addon-notifications.php:191
5094
- msgid "Notifications"
5095
- msgstr ""
5096
-
5097
- #: ../addons/notifications/myCRED-addon-notifications.php:193
5098
- msgid "Styling"
5099
- msgstr ""
5100
-
5101
- #: ../addons/notifications/myCRED-addon-notifications.php:196
5102
- msgid "Use the included CSS Styling for notifications."
5103
- msgstr ""
5104
-
5105
- #: ../addons/notifications/myCRED-addon-notifications.php:203
5106
- #, php-format
5107
- msgid "Use %entry% to show the log entry in the notice and %amount% for the amount."
5108
- msgstr ""
5109
-
5110
- #: ../addons/notifications/myCRED-addon-notifications.php:203
5111
- msgid "Restore to default"
5112
- msgstr ""
5113
-
5114
- #: ../addons/notifications/myCRED-addon-notifications.php:206
5115
- msgid "Transient Lifespan"
5116
- msgstr ""
5117
-
5118
- #: ../addons/notifications/myCRED-addon-notifications.php:210
5119
- msgid ""
5120
- "The number of days a users notification is saved before being automatically "
5121
- "deleted."
5122
- msgstr ""
5123
-
5124
- #: ../addons/notifications/myCRED-addon-notifications.php:213
5125
- msgid "Duration"
5126
- msgstr ""
5127
-
5128
- #: ../addons/notifications/myCRED-addon-notifications.php:217
5129
- msgid ""
5130
- "Number of seconds before a notice is automatically removed after being shown "
5131
- "to user. Use zero to disable."
5132
- msgstr ""
5133
-
5134
- #: ../addons/email-notices/myCRED-addon-email-notices.php:124 ../addons/email-
5135
- #: notices/myCRED-addon-email-notices.php:130 ../addons/email-notices/myCRED-
5136
- #: addon-email-notices.php:136 ../addons/email-notices/myCRED-addon-email-notices.
5137
- #: php:192 ../addons/email-notices/myCRED-addon-email-notices.php:193
5138
- msgid "Email Notifications"
5139
- msgstr ""
5140
-
5141
- #: ../addons/email-notices/myCRED-addon-email-notices.php:125
5142
- msgid "Email Notification"
5143
- msgstr ""
5144
-
5145
- #: ../addons/email-notices/myCRED-addon-email-notices.php:128
5146
- msgid "Edit Email Notification"
5147
- msgstr ""
5148
-
5149
- #: ../addons/email-notices/myCRED-addon-email-notices.php:129
5150
- msgid "New Email Notification"
5151
- msgstr ""
5152
-
5153
- #: ../addons/email-notices/myCRED-addon-email-notices.php:132
5154
- msgid "Search Email Notifications"
5155
- msgstr ""
5156
-
5157
- #: ../addons/email-notices/myCRED-addon-email-notices.php:133
5158
- msgid "No email notifications found"
5159
- msgstr ""
5160
-
5161
- #: ../addons/email-notices/myCRED-addon-email-notices.php:134
5162
- msgid "No email notifications found in Trash"
5163
- msgstr ""
5164
-
5165
- #: ../addons/email-notices/myCRED-addon-email-notices.php:167 ../addons/email-
5166
- #: notices/myCRED-addon-email-notices.php:168 ../addons/email-notices/myCRED-
5167
- #: addon-email-notices.php:169 ../addons/email-notices/myCRED-addon-email-notices.
5168
- #: php:170 ../addons/email-notices/myCRED-addon-email-notices.php:173 ..
5169
- #: addons/email-notices/myCRED-addon-email-notices.php:174 ../addons/email-
5170
- #: notices/myCRED-addon-email-notices.php:175 ../addons/email-notices/myCRED-
5171
- #: addon-email-notices.php:176
5172
- msgid "Email Notice Updated."
5173
- msgstr ""
5174
-
5175
- #: ../addons/email-notices/myCRED-addon-email-notices.php:172
5176
- msgid "Email Notice Activated."
5177
- msgstr ""
5178
-
5179
- #: ../addons/email-notices/myCRED-addon-email-notices.php:254 ../addons/email-
5180
- #: notices/myCRED-addon-email-notices.php:271
5181
- msgid "Email Subject"
5182
- msgstr ""
5183
-
5184
- #: ../addons/email-notices/myCRED-addon-email-notices.php:298
5185
- msgid "Not Active"
5186
- msgstr ""
5187
-
5188
- #: ../addons/email-notices/myCRED-addon-email-notices.php:301
5189
- #, php-format
5190
- msgid "Scheduled:<br /><strong>%1$s</strong>"
5191
- msgstr ""
5192
-
5193
- #: ../addons/email-notices/myCRED-addon-email-notices.php:308
5194
- #, php-format
5195
- msgid "Active - Last run:<br /><strong>%1$s</strong>"
5196
- msgstr ""
5197
-
5198
- #: ../addons/email-notices/myCRED-addon-email-notices.php:321
5199
- msgid "Email is sent when"
5200
- msgstr ""
5201
-
5202
- #: ../addons/email-notices/myCRED-addon-email-notices.php:323
5203
- msgid "Missing instance for this notice!"
5204
- msgstr ""
5205
-
5206
- #: ../addons/email-notices/myCRED-addon-email-notices.php:332 ../addons/email-
5207
- #: notices/myCRED-addon-email-notices.php:334 ../addons/email-notices/myCRED-
5208
- #: addon-email-notices.php:336
5209
- msgid "Sent To"
5210
- msgstr ""
5211
-
5212
- #: ../addons/email-notices/myCRED-addon-email-notices.php:334 ../addons/email-
5213
- #: notices/myCRED-addon-email-notices.php:568
5214
- msgid "Administrator"
5215
- msgstr ""
5216
-
5217
- #: ../addons/email-notices/myCRED-addon-email-notices.php:336
5218
- msgid "Both Administrator and User"
5219
- msgstr ""
5220
-
5221
- #: ../addons/email-notices/myCRED-addon-email-notices.php:347 ../addons/email-
5222
- #: notices/myCRED-addon-email-notices.php:588
5223
- msgid "All types"
5224
- msgstr ""
5225
-
5226
- #: ../addons/email-notices/myCRED-addon-email-notices.php:384 ../addons/email-
5227
- #: notices/myCRED-addon-email-notices.php:1394
5228
- msgid "Email Settings"
5229
- msgstr ""
5230
-
5231
- #: ../addons/email-notices/myCRED-addon-email-notices.php:393
5232
- msgid "Available Template Tags"
5233
- msgstr ""
5234
-
5235
- #: ../addons/email-notices/myCRED-addon-email-notices.php:404
5236
- msgid "Email Header"
5237
- msgstr ""
5238
-
5239
- #: ../addons/email-notices/myCRED-addon-email-notices.php:490
5240
- msgid ""
5241
- "Once a notice is \"published\" it becomes active! Select \"Save Draft\" if you "
5242
- "are not yet ready to use this email notice!"
5243
- msgstr ""
5244
-
5245
- #: ../addons/email-notices/myCRED-addon-email-notices.php:492
5246
- #, php-format
5247
- msgid "This notice will become active on:<br /><strong>%1$s</strong>"
5248
- msgstr ""
5249
-
5250
- #: ../addons/email-notices/myCRED-addon-email-notices.php:494
5251
- msgid "This email notice is active."
5252
- msgstr ""
5253
-
5254
- #: ../addons/email-notices/myCRED-addon-email-notices.php:520
5255
- msgid "Send this email notice when..."
5256
- msgstr ""
5257
-
5258
- #: ../addons/email-notices/myCRED-addon-email-notices.php:563
5259
- msgid "Recipient:"
5260
- msgstr ""
5261
-
5262
- #: ../addons/email-notices/myCRED-addon-email-notices.php:571
5263
- msgid "Both"
5264
- msgstr ""
5265
-
5266
- #: ../addons/email-notices/myCRED-addon-email-notices.php:607 ../addons/email-
5267
- #: notices/myCRED-addon-email-notices.php:1397
5268
- msgid "Senders Name:"
5269
- msgstr ""
5270
-
5271
- #: ../addons/email-notices/myCRED-addon-email-notices.php:611 ../addons/email-
5272
- #: notices/myCRED-addon-email-notices.php:1401
5273
- msgid "Senders Email:"
5274
- msgstr ""
5275
-
5276
- #: ../addons/email-notices/myCRED-addon-email-notices.php:615
5277
- msgid "Reply-To Email:"
5278
- msgstr ""
5279
-
5280
- #: ../addons/email-notices/myCRED-addon-email-notices.php:640
5281
- msgid "CSS Styling"
5282
- msgstr ""
5283
-
5284
- #: ../addons/email-notices/myCRED-addon-email-notices.php:663
5285
- msgid "Site Related"
5286
- msgstr ""
5287
-
5288
- #: ../addons/email-notices/myCRED-addon-email-notices.php:669
5289
- msgid "Your websites title"
5290
- msgstr ""
5291
-
5292
- #: ../addons/email-notices/myCRED-addon-email-notices.php:677
5293
- msgid "Your websites address"
5294
- msgstr ""
5295
-
5296
- #: ../addons/email-notices/myCRED-addon-email-notices.php:685
5297
- msgid "Your websites tagline (description)"
5298
- msgstr ""
5299
-
5300
- #: ../addons/email-notices/myCRED-addon-email-notices.php:693
5301
- msgid "Your websites admin email"
5302
- msgstr ""
5303
-
5304
- #: ../addons/email-notices/myCRED-addon-email-notices.php:701
5305
- msgid "Total number of blog members"
5306
- msgstr ""
5307
-
5308
- #: ../addons/email-notices/myCRED-addon-email-notices.php:706
5309
- msgid "Instance Related"
5310
- msgstr ""
5311
-
5312
- #: ../addons/email-notices/myCRED-addon-email-notices.php:712
5313
- msgid "The users new balance"
5314
- msgstr ""
5315
-
5316
- #: ../addons/email-notices/myCRED-addon-email-notices.php:720
5317
- msgid "The users old balance"
5318
- msgstr ""
5319
-
5320
- #: ../addons/email-notices/myCRED-addon-email-notices.php:728
5321
- msgid "The amount of points gained or lost in this instance"
5322
- msgstr ""
5323
-
5324
- #: ../addons/email-notices/myCRED-addon-email-notices.php:736
5325
- msgid "The log entry"
5326
- msgstr ""
5327
-
5328
- #: ../addons/email-notices/myCRED-addon-email-notices.php:741
5329
- #, php-format
5330
- msgid "You can also use %s."
5331
- msgstr ""
5332
-
5333
- #: ../addons/email-notices/myCRED-addon-email-notices.php:741
5334
- msgid "user related template tags"
5335
- msgstr ""
5336
-
5337
- #: ../addons/email-notices/myCRED-addon-email-notices.php:862
5338
- msgid "users balance changes"
5339
- msgstr ""
5340
-
5341
- #: ../addons/email-notices/myCRED-addon-email-notices.php:863
5342
- msgid "user gains %_plural%"
5343
- msgstr ""
5344
-
5345
- #: ../addons/email-notices/myCRED-addon-email-notices.php:864
5346
- msgid "user lose %_plural%"
5347
- msgstr ""
5348
-
5349
- #: ../addons/email-notices/myCRED-addon-email-notices.php:865
5350
- msgid "users balance reaches zero"
5351
- msgstr ""
5352
-
5353
- #: ../addons/email-notices/myCRED-addon-email-notices.php:866
5354
- msgid "users balance goes minus"
5355
- msgstr ""
5356
-
5357
- #: ../addons/email-notices/myCRED-addon-email-notices.php:872
5358
- msgid "Badge Add-on"
5359
- msgstr ""
5360
-
5361
- #: ../addons/email-notices/myCRED-addon-email-notices.php:873
5362
- msgid "user gains a badge"
5363
- msgstr ""
5364
-
5365
- #: ../addons/email-notices/myCRED-addon-email-notices.php:880
5366
- msgid "Sell Content Add-on"
5367
- msgstr ""
5368
-
5369
- #: ../addons/email-notices/myCRED-addon-email-notices.php:881
5370
- msgid "user buys content"
5371
- msgstr ""
5372
-
5373
- #: ../addons/email-notices/myCRED-addon-email-notices.php:882
5374
- msgid "authors content gets sold"
5375
- msgstr ""
5376
-
5377
- #: ../addons/email-notices/myCRED-addon-email-notices.php:889
5378
- msgid "buyCREDs Add-on"
5379
- msgstr ""
5380
-
5381
- #: ../addons/email-notices/myCRED-addon-email-notices.php:890
5382
- msgid "user buys %_plural%"
5383
- msgstr ""
5384
-
5385
- #: ../addons/email-notices/myCRED-addon-email-notices.php:897
5386
- msgid "Transfer Add-on"
5387
- msgstr ""
5388
-
5389
- #: ../addons/email-notices/myCRED-addon-email-notices.php:898
5390
- msgid "user sends %_plural%"
5391
- msgstr ""
5392
-
5393
- #: ../addons/email-notices/myCRED-addon-email-notices.php:899
5394
- msgid "user receives %_plural%"
5395
- msgstr ""
5396
-
5397
- #: ../addons/email-notices/myCRED-addon-email-notices.php:906
5398
- msgid "Ranks Add-on"
5399
- msgstr ""
5400
-
5401
- #: ../addons/email-notices/myCRED-addon-email-notices.php:907
5402
- msgid "user is demoted"
5403
- msgstr ""
5404
-
5405
- #: ../addons/email-notices/myCRED-addon-email-notices.php:908
5406
- msgid "user is promoted"
5407
- msgstr ""
5408
-
5409
- #: ../addons/email-notices/myCRED-addon-email-notices.php:1329 ..
5410
- #: addons/coupons/myCRED-addon-coupons.php:112
5411
- msgid "Email Notices"
5412
- msgstr ""
5413
-
5414
- #: ../addons/email-notices/myCRED-addon-email-notices.php:1331
5415
- msgid ""
5416
- "Settings that apply to all email notices and can not be overridden for "
5417
- "individual emails."
5418
- msgstr ""
5419
-
5420
- #: ../addons/email-notices/myCRED-addon-email-notices.php:1332
5421
- msgid "Email Format"
5422
- msgstr ""
5423
-
5424
- #: ../addons/email-notices/myCRED-addon-email-notices.php:1336
5425
- msgid "Plain text emails only."
5426
- msgstr ""
5427
-
5428
- #: ../addons/email-notices/myCRED-addon-email-notices.php:1340
5429
- msgid "HTML or Plain text emails."
5430
- msgstr ""
5431
-
5432
- #: ../addons/email-notices/myCRED-addon-email-notices.php:1343
5433
- msgid "Filters"
5434
- msgstr ""
5435
-
5436
- #: ../addons/email-notices/myCRED-addon-email-notices.php:1347
5437
- msgid ""
5438
- "Allow WordPress and Third Party Plugins to filter the email subject before "
5439
- "an email is sent."
5440
- msgstr ""
5441
-
5442
- #: ../addons/email-notices/myCRED-addon-email-notices.php:1351
5443
- msgid ""
5444
- "Allow WordPress and Third Party Plugins to filter the email content before "
5445
- "an email is sent."
5446
- msgstr ""
5447
-
5448
- #: ../addons/email-notices/myCRED-addon-email-notices.php:1357 ../addons/email-
5449
- #: notices/myCRED-addon-email-notices.php:1364
5450
- msgid "Email Schedule"
5451
- msgstr ""
5452
-
5453
- #: ../addons/email-notices/myCRED-addon-email-notices.php:1359
5454
- msgid "WordPress Cron is disabled. Emails will be sent immediately."
5455
- msgstr ""
5456
-
5457
- #: ../addons/email-notices/myCRED-addon-email-notices.php:1368
5458
- msgid "Send emails immediately"
5459
- msgstr ""
5460
-
5461
- #: ../addons/email-notices/myCRED-addon-email-notices.php:1372
5462
- msgid "Send emails once an hour"
5463
- msgstr ""
5464
-
5465
- #: ../addons/email-notices/myCRED-addon-email-notices.php:1376
5466
- msgid "Send emails once a day"
5467
- msgstr ""
5468
-
5469
- #: ../addons/email-notices/myCRED-addon-email-notices.php:1379
5470
- msgid "Subscriptions"
5471
- msgstr ""
5472
-
5473
- #: ../addons/email-notices/myCRED-addon-email-notices.php:1381
5474
- #, php-format
5475
- msgid ""
5476
- "Use the %s shortcode to allow users to subscribe / unsubscribe to email "
5477
- "updates."
5478
- msgstr ""
5479
-
5480
- #: ../addons/email-notices/myCRED-addon-email-notices.php:1386
5481
- msgid "SMTP Override"
5482
- msgstr ""
5483
-
5484
- #: ../addons/email-notices/myCRED-addon-email-notices.php:1390
5485
- msgid ""
5486
- "SMTP Debug. Enable if you are experiencing issues with wp_mail() or if you "
5487
- "use a SMTP plugin for emails."
5488
- msgstr ""
5489
-
5490
- #: ../addons/email-notices/myCRED-addon-email-notices.php:1393
5491
- msgid ""
5492
- "Default email settings. These settings can be individually overridden when "
5493
- "editing emails."
5494
- msgstr ""
5495
-
5496
- #: ../addons/email-notices/myCRED-addon-email-notices.php:1405
5497
- msgid "Reply-To:"
5498
- msgstr ""
5499
-
5500
- #: ../addons/email-notices/myCRED-addon-email-notices.php:1409
5501
- msgid "Default Email Content"
5502
- msgstr ""
5503
-
5504
- #: ../addons/email-notices/myCRED-addon-email-notices.php:1413
5505
- msgid "Default email content."
5506
- msgstr ""
5507
-
5508
- #: ../addons/email-notices/myCRED-addon-email-notices.php:1416
5509
- msgid "Default Email Styling"
5510
- msgstr ""
5511
-
5512
- #: ../addons/email-notices/myCRED-addon-email-notices.php:1420
5513
- msgid "Ignored if HTML is not allowed in emails."
5514
- msgstr ""
5515
-
5516
- #: ../addons/email-notices/myCRED-addon-email-notices.php:1520
5517
- msgid "Unsubscribe"
5518
- msgstr ""
5519
-
5520
- #: ../addons/email-notices/myCRED-addon-email-notices.php:1521
5521
- msgid "Email Notice"
5522
- msgstr ""
5523
-
5524
- #: ../addons/email-notices/myCRED-addon-email-notices.php:1542
5525
- msgid "There are no email notifications yet."
5526
- msgstr ""
5527
-
5528
- #: ../addons/email-notices/myCRED-addon-email-notices.php:1549 ../addons/buy-
5529
- #: creds/modules/buycred-module-pending.php:483
5530
- msgid "Save Changes"
5531
- msgstr ""
5532
-
5533
- #: ../addons/stats/myCRED-addon-stats.php:58
5534
- msgid "Statistics"
5535
- msgstr ""
5536
-
5537
- #: ../addons/stats/myCRED-addon-stats.php:168
5538
- msgid "Statistics Color"
5539
- msgstr ""
5540
-
5541
- #: ../addons/stats/myCRED-addon-stats.php:172
5542
- msgid "Positive Values"
5543
- msgstr ""
5544
-
5545
- #: ../addons/stats/myCRED-addon-stats.php:178
5546
- msgid "Negative Values"
5547
- msgstr ""
5548
-
5549
- #: ../addons/stats/myCRED-addon-stats.php:240
5550
- msgid "Overview"
5551
- msgstr ""
5552
-
5553
- #: ../addons/stats/myCRED-addon-stats.php:302
5554
- msgid "Refresh"
5555
- msgstr ""
5556
-
5557
- #: ../addons/stats/myCRED-addon-stats.php:409
5558
- msgid "Your log is empty. No statistics can be shown."
5559
- msgstr ""
5560
-
5561
- #: ../addons/stats/widgets/mycred-stats-widget-circulation.php:44
5562
- #, php-format
5563
- msgid "Total %s:"
5564
- msgstr ""
5565
-
5566
- #: ../addons/stats/widgets/mycred-stats-widget-circulation.php:138 ..
5567
- #: addons/stats/widgets/mycred-stats-widget-circulation.php:267
5568
- #, php-format
5569
- msgid "Total amount of %s in circulation"
5570
- msgstr ""
5571
-
5572
- #: ../addons/stats/widgets/mycred-stats-widget-circulation.php:171 ..
5573
- #: addons/stats/widgets/mycred-stats-widget-circulation.php:302
5574
- msgid "Total gains (%)"
5575
- msgstr ""
5576
-
5577
- #: ../addons/stats/widgets/mycred-stats-widget-circulation.php:175 ..
5578
- #: addons/stats/widgets/mycred-stats-widget-circulation.php:306
5579
- msgid "Total loses (%)"
5580
- msgstr ""
5581
-
5582
- #: ../addons/stats/widgets/mycred-stats-widget-circulation.php:179 ..
5583
- #: addons/stats/widgets/mycred-stats-widget-circulation.php:309
5584
- #, php-format
5585
- msgid "Total Gained: %s"
5586
- msgstr ""
5587
-
5588
- #: ../addons/stats/widgets/mycred-stats-widget-circulation.php:179 ..
5589
- #: addons/stats/widgets/mycred-stats-widget-circulation.php:309
5590
- #, php-format
5591
- msgid "Total Spent: %s"
5592
- msgstr ""
5593
-
5594
- #: ../addons/stats/widgets/mycred-stats-widget-circulation.php:193 ..
5595
- #: addons/stats/widgets/mycred-stats-widget-circulation.php:323
5596
- msgid "This Year"
5597
- msgstr ""
5598
-
5599
- #: ../addons/stats/widgets/mycred-stats-widget-circulation.php:197 ..
5600
- #: addons/stats/widgets/mycred-stats-widget-circulation.php:199 ..
5601
- #: addons/stats/widgets/mycred-stats-widget-circulation.php:201 ..
5602
- #: addons/stats/widgets/mycred-stats-widget-circulation.php:203 ..
5603
- #: addons/stats/widgets/mycred-stats-widget-circulation.php:327 ..
5604
- #: addons/stats/widgets/mycred-stats-widget-circulation.php:329 ..
5605
- #: addons/stats/widgets/mycred-stats-widget-circulation.php:331 ..
5606
- #: addons/stats/widgets/mycred-stats-widget-circulation.php:333 ..
5607
- #: addons/badges/includes/mycred-badge-functions.php:267
5608
- msgid "Gained"
5609
- msgstr ""
5610
-
5611
- #: ../addons/stats/widgets/mycred-stats-widget-circulation.php:198 ..
5612
- #: addons/stats/widgets/mycred-stats-widget-circulation.php:200 ..
5613
- #: addons/stats/widgets/mycred-stats-widget-circulation.php:202 ..
5614
- #: addons/stats/widgets/mycred-stats-widget-circulation.php:204 ..
5615
- #: addons/stats/widgets/mycred-stats-widget-circulation.php:328 ..
5616
- #: addons/stats/widgets/mycred-stats-widget-circulation.php:330 ..
5617
- #: addons/stats/widgets/mycred-stats-widget-circulation.php:332 ..
5618
- #: addons/stats/widgets/mycred-stats-widget-circulation.php:334 ..
5619
- #: addons/badges/includes/mycred-badge-functions.php:267
5620
- msgid "Lost"
5621
- msgstr ""
5622
-
5623
- #: ../addons/stats/widgets/mycred-stats-widget-daily-loses.php:118
5624
- msgid "Most common ways your users have lost or spent points during this period."
5625
- msgstr ""
5626
-
5627
- #: ../addons/stats/widgets/mycred-stats-widget-daily-loses.php:120
5628
- #, php-format
5629
- msgid "Most common ways your users have lost or spent %_plural% during this period."
5630
- msgstr ""
5631
-
5632
- #: ../addons/stats/widgets/mycred-stats-widget-daily-loses.php:127
5633
- msgid "Loses in the last 10 days"
5634
- msgstr ""
5635
-
5636
- #: ../addons/stats/widgets/mycred-stats-widget-daily-loses.php:166 ..
5637
- #: addons/stats/widgets/mycred-stats-widget-daily-gains.php:166
5638
- msgid "No data found"
5639
- msgstr ""
5640
-
5641
- #: ../addons/stats/widgets/mycred-stats-widget-daily-gains.php:118
5642
- msgid "Most common ways your users have gained points during this period."
5643
- msgstr ""
5644
-
5645
- #: ../addons/stats/widgets/mycred-stats-widget-daily-gains.php:120
5646
- #, php-format
5647
- msgid "Most common ways your users have gained %_plural% during this period."
5648
- msgstr ""
5649
-
5650
- #: ../addons/stats/widgets/mycred-stats-widget-daily-gains.php:127
5651
- msgid "Gains in the last 10 days"
5652
- msgstr ""
5653
-
5654
- #: ../addons/badges/includes/mycred-badge-functions.php:248
5655
- #, php-format
5656
- msgid "Level %s"
5657
- msgstr ""
5658
-
5659
- #: ../addons/badges/includes/mycred-badge-functions.php:265
5660
- #, php-format
5661
- msgctxt "\"Points\" for \"reference\" x times"
5662
- msgid "%s for \"%s\" x %d"
5663
- msgstr ""
5664
-
5665
- #: ../addons/badges/includes/mycred-badge-functions.php:267
5666
- #, php-format
5667
- msgctxt "\"Gained/Lost\" \"x points\" for \"reference\""
5668
- msgid "%s %s for \"%s\""
5669
- msgstr ""
5670
-
5671
- #: ../addons/badges/includes/mycred-badge-functions.php:269 ..
5672
- #: addons/badges/myCRED-addon-badges.php:519 ../addons/badges/myCRED-addon-
5673
- #: badges.php:921
5674
- msgctxt "Comparison of badge requirements. A OR B"
5675
- msgid "OR"
5676
- msgstr ""
5677
-
5678
- #: ../addons/badges/includes/mycred-badge-functions.php:271 ..
5679
- #: addons/badges/myCRED-addon-badges.php:518 ../addons/badges/myCRED-addon-
5680
- #: badges.php:921
5681
- msgctxt "Comparison of badge requirements. A AND B"
5682
- msgid "AND"
5683
- msgstr ""
5684
-
5685
- #: ../addons/badges/includes/mycred-badge-functions.php:287 ..
5686
- #: addons/badges/myCRED-addon-badges.php:722
5687
- msgid "This badge is manually awarded."
5688
- msgstr ""
5689
-
5690
- #: ../addons/badges/myCRED-addon-badges.php:148 ../addons/badges/myCRED-addon-
5691
- #: badges.php:154 ../addons/badges/myCRED-addon-badges.php:160 ..
5692
- #: addons/badges/myCRED-addon-badges.php:295 ../addons/badges/myCRED-addon-
5693
- #: badges.php:296 ../addons/badges/myCRED-addon-badges.php:1134 ..
5694
- #: addons/badges/myCRED-addon-badges.php:1256 ../addons/badges/myCRED-addon-
5695
- #: badges.php:1259
5696
- msgid "Badges"
5697
- msgstr ""
5698
-
5699
- #: ../addons/badges/myCRED-addon-badges.php:149
5700
- msgid "Badge"
5701
- msgstr ""
5702
-
5703
- #: ../addons/badges/myCRED-addon-badges.php:152
5704
- msgid "Edit Badge"
5705
- msgstr ""
5706
-
5707
- #: ../addons/badges/myCRED-addon-badges.php:153
5708
- msgid "New Badge"
5709
- msgstr ""
5710
-
5711
- #: ../addons/badges/myCRED-addon-badges.php:155
5712
- msgid "View Badge"
5713
- msgstr ""
5714
-
5715
- #: ../addons/badges/myCRED-addon-badges.php:156
5716
- msgid "Search Badge"
5717
- msgstr ""
5718
-
5719
- #: ../addons/badges/myCRED-addon-badges.php:157
5720
- msgid "No badges found"
5721
- msgstr ""
5722
-
5723
- #: ../addons/badges/myCRED-addon-badges.php:158
5724
- msgid "No badges found in Trash"
5725
- msgstr ""
5726
-
5727
- #: ../addons/badges/myCRED-addon-badges.php:270 ../addons/badges/myCRED-addon-
5728
- #: badges.php:271 ../addons/badges/myCRED-addon-badges.php:272 ..
5729
- #: addons/badges/myCRED-addon-badges.php:273 ../addons/badges/myCRED-addon-
5730
- #: badges.php:277 ../addons/badges/myCRED-addon-badges.php:278 ..
5731
- #: addons/badges/myCRED-addon-badges.php:279
5732
- msgid "Badge Updated."
5733
- msgstr ""
5734
-
5735
- #: ../addons/badges/myCRED-addon-badges.php:275
5736
- msgid "Badge Enabled."
5737
- msgstr ""
5738
-
5739
- #: ../addons/badges/myCRED-addon-badges.php:276
5740
- msgid "Badge Saved."
5741
- msgstr ""
5742
-
5743
- #: ../addons/badges/myCRED-addon-badges.php:396 ../addons/badges/myCRED-addon-
5744
- #: badges.php:480
5745
- msgid "Badge Name"
5746
- msgstr ""
5747
-
5748
- #: ../addons/badges/myCRED-addon-badges.php:397
5749
- msgid "Default Image"
5750
- msgstr ""
5751
-
5752
- #: ../addons/badges/myCRED-addon-badges.php:398
5753
- msgid "First Level"
5754
- msgstr ""
5755
-
5756
- #: ../addons/badges/myCRED-addon-badges.php:399
5757
- msgid "Requirements"
5758
- msgstr ""
5759
-
5760
- #: ../addons/badges/myCRED-addon-badges.php:510 ../addons/badges/myCRED-addon-
5761
- #: badges.php:801
5762
- msgid "Add Level"
5763
- msgstr ""
5764
-
5765
- #: ../addons/badges/myCRED-addon-badges.php:511 ../addons/badges/myCRED-addon-
5766
- #: badges.php:802
5767
- msgid "Remove Level"
5768
- msgstr ""
5769
-
5770
- #: ../addons/badges/myCRED-addon-badges.php:512 ../addons/badges/myCRED-addon-
5771
- #: badges.php:755 ../addons/badges/myCRED-addon-badges.php:818 ..
5772
- #: addons/badges/myCRED-addon-badges.php:823
5773
- msgid "Set Image"
5774
- msgstr ""
5775
-
5776
- #: ../addons/badges/myCRED-addon-badges.php:513 ../addons/badges/myCRED-addon-
5777
- #: badges.php:755 ../addons/badges/myCRED-addon-badges.php:823
5778
- msgid "Change Image"
5779
- msgstr ""
5780
-
5781
- #: ../addons/badges/myCRED-addon-badges.php:514
5782
- msgid "Are you sure you want to remove this level?"
5783
- msgstr ""
5784
-
5785
- #: ../addons/badges/myCRED-addon-badges.php:515 ../addons/badges/myCRED-addon-
5786
- #: badges.php:819 ../addons/badges/myCRED-addon-badges.php:1288
5787
- msgid "Level"
5788
- msgstr ""
5789
-
5790
- #: ../addons/badges/myCRED-addon-badges.php:516
5791
- msgid "Badge Image"
5792
- msgstr ""
5793
-
5794
- #: ../addons/badges/myCRED-addon-badges.php:517
5795
- msgid "Use as Badge"
5796
- msgstr ""
5797
-
5798
- #: ../addons/badges/myCRED-addon-badges.php:571
5799
- msgid "Badge Setup"
5800
- msgstr ""
5801
-
5802
- #: ../addons/badges/myCRED-addon-badges.php:580
5803
- msgid "Default Badge Image"
5804
- msgstr ""
5805
-
5806
- #: ../addons/badges/myCRED-addon-badges.php:678
5807
- msgid "Assign Badge"
5808
- msgstr ""
5809
-
5810
- #: ../addons/badges/myCRED-addon-badges.php:679
5811
- msgid "Remove Connections"
5812
- msgstr ""
5813
-
5814
- #: ../addons/badges/myCRED-addon-badges.php:758
5815
- msgid "Optional image to show when a user has not earned this badge."
5816
- msgstr ""
5817
-
5818
- #: ../addons/badges/myCRED-addon-badges.php:777
5819
- msgid "Time(s)"
5820
- msgstr ""
5821
-
5822
- #: ../addons/badges/myCRED-addon-badges.php:778
5823
- msgid "In total"
5824
- msgstr ""
5825
-
5826
- #: ../addons/badges/myCRED-addon-badges.php:825
5827
- #, php-format
5828
- msgid "Level %d"
5829
- msgstr ""
5830
-
5831
- #: ../addons/badges/myCRED-addon-badges.php:849
5832
- msgid "Select Point Type"
5833
- msgstr ""
5834
-
5835
- #: ../addons/badges/myCRED-addon-badges.php:863
5836
- msgid "Select Reference"
5837
- msgstr ""
5838
-
5839
- #: ../addons/badges/myCRED-addon-badges.php:939
5840
- msgid "Reward"
5841
- msgstr ""
5842
-
5843
- #: ../addons/badges/myCRED-addon-badges.php:1163 ../addons/badges/myCRED-addon-
5844
- #: badges.php:1199
5845
- msgid "Show all badges, including badges users have not yet earned."
5846
- msgstr ""
5847
-
5848
- #: ../addons/badges/myCRED-addon-badges.php:1184
5849
- msgid "Include in Forum Replies"
5850
- msgstr ""
5851
-
5852
- #: ../addons/badges/myCRED-addon-badges.php:1185
5853
- msgid "Include in Profile and Forum Replies"
5854
- msgstr ""
5855
-
5856
- #: ../addons/badges/myCRED-addon-badges.php:1251
5857
- msgid "No image set"
5858
- msgstr ""
5859
-
5860
- #: ../addons/badges/myCRED-addon-badges.php:1283
5861
- msgid "Select a level"
5862
- msgstr ""
5863
-
5864
- #: ../addons/badges/myCRED-addon-badges.php:1297
5865
- msgid "Earned"
5866
- msgstr ""
5867
-
5868
- #: ../addons/badges/myCRED-addon-badges.php:1406
5869
- #, php-format
5870
- msgid "A total of %d users have received this badge."
5871
- msgstr ""
5872
-
5873
- #: ../addons/badges/myCRED-addon-badges.php:1408
5874
- msgid "No users has yet earned this badge."
5875
- msgstr ""
5876
-
5877
- #: ../addons/badges/myCRED-addon-badges.php:1433
5878
- msgid "No connections where removed."
5879
- msgstr ""
5880
-
5881
- #: ../addons/badges/myCRED-addon-badges.php:1435
5882
- #, php-format
5883
- msgid "%s connections where removed."
5884
- msgstr ""
5885
-
5886
- #: ../addons/coupons/myCRED-addon-coupons.php:100 ../addons/coupons/myCRED-addon-
5887
- #: coupons.php:106 ../addons/coupons/myCRED-addon-coupons.php:168 ..
5888
- #: addons/coupons/myCRED-addon-coupons.php:169 ../addons/coupons/myCRED-addon-
5889
- #: coupons.php:659
5890
- msgid "Coupons"
5891
- msgstr ""
5892
-
5893
- #: ../addons/coupons/myCRED-addon-coupons.php:101
5894
- msgid "Coupon"
5895
- msgstr ""
5896
-
5897
- #: ../addons/coupons/myCRED-addon-coupons.php:102 ../addons/coupons/myCRED-addon-
5898
- #: coupons.php:103
5899
- msgid "Create New"
5900
- msgstr ""
5901
-
5902
- #: ../addons/coupons/myCRED-addon-coupons.php:104
5903
- msgid "Edit Coupon"
5904
- msgstr ""
5905
-
5906
- #: ../addons/coupons/myCRED-addon-coupons.php:105
5907
- msgid "New Coupon"
5908
- msgstr ""
5909
-
5910
- #: ../addons/coupons/myCRED-addon-coupons.php:108
5911
- msgid "Search coupons"
5912
- msgstr ""
5913
-
5914
- #: ../addons/coupons/myCRED-addon-coupons.php:109
5915
- msgid "No coupons found"
5916
- msgstr ""
5917
-
5918
- #: ../addons/coupons/myCRED-addon-coupons.php:110
5919
- msgid "No coupons found in Trash"
5920
- msgstr ""
5921
-
5922
- #: ../addons/coupons/myCRED-addon-coupons.php:143 ../addons/coupons/myCRED-addon-
5923
- #: coupons.php:144 ../addons/coupons/myCRED-addon-coupons.php:145 ..
5924
- #: addons/coupons/myCRED-addon-coupons.php:146 ../addons/coupons/myCRED-addon-
5925
- #: coupons.php:149 ../addons/coupons/myCRED-addon-coupons.php:150 ..
5926
- #: addons/coupons/myCRED-addon-coupons.php:151 ../addons/coupons/myCRED-addon-
5927
- #: coupons.php:152
5928
- msgid "Coupon updated."
5929
- msgstr ""
5930
-
5931
- #: ../addons/coupons/myCRED-addon-coupons.php:148
5932
- msgid "Coupon published."
5933
- msgstr ""
5934
-
5935
- #: ../addons/coupons/myCRED-addon-coupons.php:230 ../addons/coupons/myCRED-addon-
5936
- #: coupons.php:247
5937
- msgid "Coupon Code"
5938
- msgstr ""
5939
-
5940
- #: ../addons/coupons/myCRED-addon-coupons.php:248 ../addons/coupons/myCRED-addon-
5941
- #: coupons.php:481
5942
- msgid "Value"
5943
- msgstr ""
5944
-
5945
- #: ../addons/coupons/myCRED-addon-coupons.php:249
5946
- msgid "Used"
5947
- msgstr ""
5948
-
5949
- #: ../addons/coupons/myCRED-addon-coupons.php:251 ../addons/sell-
5950
- #: content/includes/mycred-sell-shortcodes.php:188
5951
- msgid "Expires"
5952
- msgstr ""
5953
-
5954
- #: ../addons/coupons/myCRED-addon-coupons.php:296 ../addons/coupons/myCRED-addon-
5955
- #: coupons.php:620
5956
- #, php-format
5957
- msgid "1 time"
5958
- msgid_plural "%d times"
5959
- msgstr[0] ""
5960
- msgstr[1] ""
5961
-
5962
- #: ../addons/coupons/myCRED-addon-coupons.php:307
5963
- msgid "Per User"
5964
- msgstr ""
5965
-
5966
- #: ../addons/coupons/myCRED-addon-coupons.php:316 ../addons/sell-
5967
- #: content/includes/mycred-sell-shortcodes.php:231
5968
- msgid "Never"
5969
- msgstr ""
5970
-
5971
- #: ../addons/coupons/myCRED-addon-coupons.php:322
5972
- msgid "Expired"
5973
- msgstr ""
5974
-
5975
- #: ../addons/coupons/myCRED-addon-coupons.php:326
5976
- #, php-format
5977
- msgid "In %s time"
5978
- msgstr ""
5979
-
5980
- #: ../addons/coupons/myCRED-addon-coupons.php:425
5981
- msgid "Coupon Setup"
5982
- msgstr ""
5983
-
5984
- #: ../addons/coupons/myCRED-addon-coupons.php:434
5985
- msgid "Coupon Limits"
5986
- msgstr ""
5987
-
5988
- #: ../addons/coupons/myCRED-addon-coupons.php:443
5989
- msgid "Coupon Requirements"
5990
- msgstr ""
5991
-
5992
- #: ../addons/coupons/myCRED-addon-coupons.php:453
5993
- msgid "Coupon Usage"
5994
- msgstr ""
5995
-
5996
- #: ../addons/coupons/myCRED-addon-coupons.php:483
5997
- #, php-format
5998
- msgid "The amount of %plural% this coupon is worth."
5999
- msgstr ""
6000
-
6001
- #: ../addons/coupons/myCRED-addon-coupons.php:492
6002
- msgid "Select the point type that this coupon is applied."
6003
- msgstr ""
6004
-
6005
- #: ../addons/coupons/myCRED-addon-coupons.php:504
6006
- msgid "Expire"
6007
- msgstr ""
6008
-
6009
- #: ../addons/coupons/myCRED-addon-coupons.php:506
6010
- msgid "Optional date when this coupon expires. Expired coupons will be trashed."
6011
- msgstr ""
6012
-
6013
- #: ../addons/coupons/myCRED-addon-coupons.php:534
6014
- msgid "Global Maximum"
6015
- msgstr ""
6016
-
6017
- #: ../addons/coupons/myCRED-addon-coupons.php:536
6018
- msgid "The maximum number of times this coupon can be used."
6019
- msgstr ""
6020
-
6021
- #: ../addons/coupons/myCRED-addon-coupons.php:541
6022
- msgid "User Maximum"
6023
- msgstr ""
6024
-
6025
- #: ../addons/coupons/myCRED-addon-coupons.php:543
6026
- msgid "The maximum number of times this coupon can be used by a user."
6027
- msgstr ""
6028
-
6029
- #: ../addons/coupons/myCRED-addon-coupons.php:579
6030
- msgid ""
6031
- "Optional minimum balance a user must have in order to use this coupon. Use "
6032
- "zero to disable."
6033
- msgstr ""
6034
-
6035
- #: ../addons/coupons/myCRED-addon-coupons.php:586
6036
- msgid "Maximum Balance"
6037
- msgstr ""
6038
-
6039
- #: ../addons/coupons/myCRED-addon-coupons.php:591
6040
- msgid ""
6041
- "Optional maximum balance a user can have in order to use this coupon. Use "
6042
- "zero to disable."
6043
- msgstr ""
6044
-
6045
- #: ../addons/coupons/myCRED-addon-coupons.php:665
6046
- #, php-format
6047
- msgid ""
6048
- "Log entry for successful coupon redemption. Use %coupon% to show the coupon "
6049
- "code."
6050
- msgstr ""
6051
-
6052
- #: ../addons/coupons/myCRED-addon-coupons.php:668
6053
- msgid "Invalid Coupon Message"
6054
- msgstr ""
6055
-
6056
- #: ../addons/coupons/myCRED-addon-coupons.php:672
6057
- msgid "Message to show when users try to use a coupon that does not exists."
6058
- msgstr ""
6059
-
6060
- #: ../addons/coupons/myCRED-addon-coupons.php:675
6061
- msgid "Expired Coupon Message"
6062
- msgstr ""
6063
-
6064
- #: ../addons/coupons/myCRED-addon-coupons.php:679
6065
- msgid "Message to show when users try to use that has expired."
6066
- msgstr ""
6067
-
6068
- #: ../addons/coupons/myCRED-addon-coupons.php:682
6069
- msgid "User Limit Message"
6070
- msgstr ""
6071
-
6072
- #: ../addons/coupons/myCRED-addon-coupons.php:686
6073
- msgid "Message to show when the user limit has been reached for the coupon."
6074
- msgstr ""
6075
-
6076
- #: ../addons/coupons/myCRED-addon-coupons.php:689
6077
- msgid "Minimum Balance Message"
6078
- msgstr ""
6079
-
6080
- #: ../addons/coupons/myCRED-addon-coupons.php:693
6081
- msgid ""
6082
- "Message to show when a user does not meet the minimum balance requirement. "
6083
- "(if used)"
6084
- msgstr ""
6085
-
6086
- #: ../addons/coupons/myCRED-addon-coupons.php:696
6087
- msgid "Maximum Balance Message"
6088
- msgstr ""
6089
-
6090
- #: ../addons/coupons/myCRED-addon-coupons.php:700
6091
- msgid ""
6092
- "Message to show when a user does not meet the maximum balance requirement. "
6093
- "(if used)"
6094
- msgstr ""
6095
-
6096
- #: ../addons/coupons/myCRED-addon-coupons.php:703
6097
- msgid "Success Message"
6098
- msgstr ""
6099
-
6100
- #: ../addons/coupons/myCRED-addon-coupons.php:707
6101
- msgid "Message to show when a coupon was successfully deposited to a users account."
6102
- msgstr ""
6103
-
6104
- #: ../addons/sell-content/myCRED-addon-sell-content.php:128
6105
- msgid "Sell Content Add-on Update Required"
6106
- msgstr ""
6107
-
6108
- #: ../addons/sell-content/myCRED-addon-sell-content.php:129
6109
- msgid "Before continuing to use this add-on you must setup and save your settings."
6110
- msgstr ""
6111
-
6112
- #: ../addons/sell-content/myCRED-addon-sell-content.php:199 ../addons/sell-
6113
- #: content/myCRED-addon-sell-content.php:202 ../addons/sell-content/myCRED-addon-
6114
- #: sell-content.php:293 ../addons/sell-content/myCRED-addon-sell-content.php:758
6115
- msgid "Sell Content"
6116
- msgstr ""
6117
-
6118
- #: ../addons/sell-content/myCRED-addon-sell-content.php:214 ../addons/sell-
6119
- #: content/myCRED-addon-sell-content.php:434
6120
- msgid "Profit Share"
6121
- msgstr ""
6122
-
6123
- #: ../addons/sell-content/myCRED-addon-sell-content.php:295
6124
- msgid "Post Types"
6125
- msgstr ""
6126
-
6127
- #: ../addons/sell-content/myCRED-addon-sell-content.php:297
6128
- msgid "Select all the post types you want to sell."
6129
- msgstr ""
6130
-
6131
- #: ../addons/sell-content/myCRED-addon-sell-content.php:313
6132
- msgid "You must select at least one post type to sell."
6133
- msgstr ""
6134
-
6135
- #: ../addons/sell-content/myCRED-addon-sell-content.php:367
6136
- msgid "Select all the point types accepted as payment."
6137
- msgstr ""
6138
-
6139
- #: ../addons/sell-content/myCRED-addon-sell-content.php:386
6140
- msgid "You must select at least one point type to accept as payment."
6141
- msgstr ""
6142
-
6143
- #: ../addons/sell-content/myCRED-addon-sell-content.php:429 ../addons/sell-
6144
- #: content/myCRED-addon-sell-content.php:837
6145
- msgid "Expiration"
6146
- msgstr ""
6147
-
6148
- #: ../addons/sell-content/myCRED-addon-sell-content.php:430 ../addons/sell-
6149
- #: content/myCRED-addon-sell-content.php:777 ../addons/sell-
6150
- #: content/includes/mycred-sell-shortcodes.php:181
6151
- msgid "Hour(s)"
6152
- msgstr ""
6153
-
6154
- #: ../addons/sell-content/myCRED-addon-sell-content.php:443
6155
- #, php-format
6156
- msgid "Use %price% to show the price set for each post."
6157
- msgstr ""
6158
-
6159
- #: ../addons/sell-content/myCRED-addon-sell-content.php:446
6160
- msgid "Button CSS Classes"
6161
- msgstr ""
6162
-
6163
- #: ../addons/sell-content/myCRED-addon-sell-content.php:452
6164
- msgid "Payment log entry template"
6165
- msgstr ""
6166
-
6167
- #: ../addons/sell-content/myCRED-addon-sell-content.php:457
6168
- msgid "Profit Share payout log entry template"
6169
- msgstr ""
6170
-
6171
- #: ../addons/sell-content/myCRED-addon-sell-content.php:459
6172
- msgid "Only used if profit sharing is enabled for this point type."
6173
- msgstr ""
6174
-
6175
- #: ../addons/sell-content/myCRED-addon-sell-content.php:470
6176
- msgid "Transactions"
6177
- msgstr ""
6178
-
6179
- #: ../addons/sell-content/myCRED-addon-sell-content.php:473
6180
- msgid "Reload page after successful payments."
6181
- msgstr ""
6182
-
6183
- #: ../addons/sell-content/myCRED-addon-sell-content.php:478
6184
- msgid ""
6185
- "Option to show a custom button label while the payment is being processed. "
6186
- "HTML is allowed."
6187
- msgstr ""
6188
-
6189
- #: ../addons/sell-content/myCRED-addon-sell-content.php:484
6190
- msgid "Members"
6191
- msgstr ""
6192
-
6193
- #: ../addons/sell-content/myCRED-addon-sell-content.php:485
6194
- msgid ""
6195
- "The template to use when a content is viewed by a member that is logged in "
6196
- "and can afford to pay. Only applied to content that is set for sale."
6197
- msgstr ""
6198
-
6199
- #: ../addons/sell-content/myCRED-addon-sell-content.php:502
6200
- msgid ""
6201
- "The template to use when a content is viewed by someone who is not logged in."
6202
- " Only applied to content that is set for sale."
6203
- msgstr ""
6204
-
6205
- #: ../addons/sell-content/myCRED-addon-sell-content.php:520
6206
- msgid ""
6207
- "The template to use when a content is viewed by a member that is logged but "
6208
- "can not afford to buy. Only applied to content that is set for sale."
6209
- msgstr ""
6210
-
6211
- #: ../addons/sell-content/myCRED-addon-sell-content.php:814
6212
- msgid "Never expires"
6213
- msgstr ""
6214
-
6215
- #: ../addons/sell-content/myCRED-addon-sell-content.php:823
6216
- #, php-format
6217
- msgid "Sell using %s"
6218
- msgstr ""
6219
-
6220
- #: ../addons/sell-content/includes/mycred-sell-functions.php:492
6221
- #, php-format
6222
- msgctxt "Point type name"
6223
- msgid "You can not pay using %s"
6224
- msgstr ""
6225
-
6226
- #: ../addons/sell-content/includes/mycred-sell-functions.php:752
6227
- #, php-format
6228
- msgctxt "all post type name"
6229
- msgid "All %s"
6230
- msgstr ""
6231
-
6232
- #: ../addons/sell-content/includes/mycred-sell-functions.php:756
6233
- #, php-format
6234
- msgctxt "all post type name"
6235
- msgid "%s I manually select"
6236
- msgstr ""
6237
-
6238
- #: ../addons/sell-content/includes/mycred-sell-functions.php:760
6239
- #, php-format
6240
- msgctxt "%s = post type name"
6241
- msgid "All %s except"
6242
- msgstr ""
6243
-
6244
- #: ../addons/sell-content/includes/mycred-sell-functions.php:761
6245
- #, php-format
6246
- msgctxt "%s = post type name"
6247
- msgid "Comma separated list of %s IDs to exclude"
6248
- msgstr ""
6249
-
6250
- #: ../addons/sell-content/includes/mycred-sell-functions.php:764
6251
- #, php-format
6252
- msgctxt "%s = post type name"
6253
- msgid "Only %s"
6254
- msgstr ""
6255
-
6256
- #: ../addons/sell-content/includes/mycred-sell-functions.php:765
6257
- #, php-format
6258
- msgctxt "%s = post type name"
6259
- msgid "Comma separated list of %s IDs"
6260
- msgstr ""
6261
-
6262
- #: ../addons/sell-content/includes/mycred-sell-functions.php:777
6263
- #, php-format
6264
- msgctxt "e.g. Only \"Posts\" in \"Categories\""
6265
- msgid "Only %s in %s"
6266
- msgstr ""
6267
-
6268
- #: ../addons/sell-content/includes/mycred-sell-functions.php:778 ../addons/sell-
6269
- #: content/includes/mycred-sell-functions.php:782 ../addons/sell-
6270
- #: content/includes/mycred-sell-functions.php:788 ../addons/sell-
6271
- #: content/includes/mycred-sell-functions.php:792
6272
- #, php-format
6273
- msgctxt "%s = taxonomy name"
6274
- msgid "Comma separated list of %s slugs"
6275
- msgstr ""
6276
-
6277
- #: ../addons/sell-content/includes/mycred-sell-functions.php:781
6278
- #, php-format
6279
- msgctxt "e.g. Only \"Posts\" not in \"Categories\""
6280
- msgid "Only %s not in %s"
6281
- msgstr ""
6282
-
6283
- #: ../addons/sell-content/includes/mycred-sell-functions.php:787
6284
- #, php-format
6285
- msgctxt "e.g. Only \"Posts\" with \"Tags\""
6286
- msgid "Only %s with %s"
6287
- msgstr ""
6288
-
6289
- #: ../addons/sell-content/includes/mycred-sell-functions.php:791
6290
- #, php-format
6291
- msgctxt "e.g. Only \"Posts\" without \"Tags\""
6292
- msgid "Only %s without %s"
6293
- msgstr ""
6294
-
6295
- #: ../addons/sell-content/includes/mycred-sell-shortcodes.php:187 ../addons/buy-
6296
- #: creds/abstracts/mycred-abstract-payment-gateway.php:669 ../addons/buy-
6297
- #: creds/modules/buycred-module-pending.php:267 ../addons/buy-
6298
- #: creds/modules/buycred-module-pending.php:614 ../addons/buy-
6299
- #: creds/modules/buycred-module-pending.php:727 ../addons/buy-creds/gateways/bank-
6300
- #: transfer.php:112
6301
- msgid "Cost"
6302
- msgstr ""
6303
-
6304
- #: ../addons/sell-content/includes/mycred-sell-shortcodes.php:233
6305
- #, php-format
6306
- msgctxt "e.g. 10 hours"
6307
- msgid "Purchase expires in %s"
6308
- msgstr ""
6309
-
6310
- #: ../addons/buy-creds/abstracts/mycred-abstract-payment-gateway.php:156
6311
- msgid "Select currency"
6312
- msgstr ""
6313
-
6314
- #: ../addons/buy-creds/abstracts/mycred-abstract-payment-gateway.php:218
6315
- #, php-format
6316
- msgctxt "%s is replaced with the point amount and name."
6317
- msgid "Received new request to purchase %s."
6318
- msgstr ""
6319
-
6320
- #: ../addons/buy-creds/abstracts/mycred-abstract-payment-gateway.php:421 ..
6321
- #: addons/buy-creds/gateways/bank-transfer.php:96
6322
- msgid "Test Payment"
6323
- msgstr ""
6324
-
6325
- #: ../addons/buy-creds/abstracts/mycred-abstract-payment-gateway.php:552
6326
- msgid "First Name"
6327
- msgstr ""
6328
-
6329
- #: ../addons/buy-creds/abstracts/mycred-abstract-payment-gateway.php:558
6330
- msgid "Last Name"
6331
- msgstr ""
6332
-
6333
- #: ../addons/buy-creds/abstracts/mycred-abstract-payment-gateway.php:566
6334
- msgid "Address Line 1"
6335
- msgstr ""
6336
-
6337
- #: ../addons/buy-creds/abstracts/mycred-abstract-payment-gateway.php:574
6338
- msgid "Address Line 2"
6339
- msgstr ""
6340
-
6341
- #: ../addons/buy-creds/abstracts/mycred-abstract-payment-gateway.php:582
6342
- msgid "City"
6343
- msgstr ""
6344
-
6345
- #: ../addons/buy-creds/abstracts/mycred-abstract-payment-gateway.php:588
6346
- msgid "Zip"
6347
- msgstr ""
6348
-
6349
- #: ../addons/buy-creds/abstracts/mycred-abstract-payment-gateway.php:596
6350
- msgid "State"
6351
- msgstr ""
6352
-
6353
- #: ../addons/buy-creds/abstracts/mycred-abstract-payment-gateway.php:604
6354
- msgid "Country"
6355
- msgstr ""
6356
-
6357
- #: ../addons/buy-creds/abstracts/mycred-abstract-payment-gateway.php:609
6358
- msgid "Choose Country"
6359
- msgstr ""
6360
-
6361
- #: ../addons/buy-creds/abstracts/mycred-abstract-payment-gateway.php:661 ..
6362
- #: addons/buy-creds/gateways/bank-transfer.php:118
6363
- #, php-format
6364
- msgid "%s Purchase"
6365
- msgstr ""
6366
-
6367
- #: ../addons/buy-creds/abstracts/mycred-abstract-payment-gateway.php:667
6368
- msgctxt "buyCRED order description"
6369
- msgid "Item"
6370
- msgstr ""
6371
-
6372
- #: ../addons/buy-creds/abstracts/mycred-abstract-payment-gateway.php:762
6373
- #, php-format
6374
- msgid "Continue to %s"
6375
- msgstr ""
6376
-
6377
- #: ../addons/buy-creds/abstracts/mycred-abstract-payment-gateway.php:763 ..
6378
- #: addons/buy-creds/gateways/bitpay.php:225
6379
- msgid "Click here if you are not automatically redirected"
6380
- msgstr ""
6381
-
6382
- #: ../addons/buy-creds/abstracts/mycred-abstract-payment-gateway.php:1477
6383
- msgid "January"
6384
- msgstr ""
6385
-
6386
- #: ../addons/buy-creds/abstracts/mycred-abstract-payment-gateway.php:1478
6387
- msgid "February"
6388
- msgstr ""
6389
-
6390
- #: ../addons/buy-creds/abstracts/mycred-abstract-payment-gateway.php:1479
6391
- msgid "March"
6392
- msgstr ""
6393
-
6394
- #: ../addons/buy-creds/abstracts/mycred-abstract-payment-gateway.php:1480
6395
- msgid "April"
6396
- msgstr ""
6397
-
6398
- #: ../addons/buy-creds/abstracts/mycred-abstract-payment-gateway.php:1481
6399
- msgid "May"
6400
- msgstr ""
6401
-
6402
- #: ../addons/buy-creds/abstracts/mycred-abstract-payment-gateway.php:1482
6403
- msgid "June"
6404
- msgstr ""
6405
-
6406
- #: ../addons/buy-creds/abstracts/mycred-abstract-payment-gateway.php:1483
6407
- msgid "July"
6408
- msgstr ""
6409
-
6410
- #: ../addons/buy-creds/abstracts/mycred-abstract-payment-gateway.php:1484
6411
- msgid "August"
6412
- msgstr ""
6413
-
6414
- #: ../addons/buy-creds/abstracts/mycred-abstract-payment-gateway.php:1485
6415
- msgid "September"
6416
- msgstr ""
6417
-
6418
- #: ../addons/buy-creds/abstracts/mycred-abstract-payment-gateway.php:1486
6419
- msgid "October"
6420
- msgstr ""
6421
-
6422
- #: ../addons/buy-creds/abstracts/mycred-abstract-payment-gateway.php:1487
6423
- msgid "November"
6424
- msgstr ""
6425
-
6426
- #: ../addons/buy-creds/abstracts/mycred-abstract-payment-gateway.php:1488
6427
- msgid "December"
6428
- msgstr ""
6429
-
6430
- #: ../addons/buy-creds/modules/buycred-module-pending.php:135
6431
- msgctxt "Post Type General Name"
6432
- msgid "Pending Payments"
6433
- msgstr ""
6434
-
6435
- #: ../addons/buy-creds/modules/buycred-module-pending.php:136
6436
- msgctxt "Post Type Singular Name"
6437
- msgid "Pending Payment"
6438
- msgstr ""
6439
-
6440
- #: ../addons/buy-creds/modules/buycred-module-pending.php:137 ../addons/buy-
6441
- #: creds/modules/buycred-module-pending.php:139 ../addons/buy-
6442
- #: creds/modules/buycred-module-pending.php:229 ../addons/buy-
6443
- #: creds/modules/buycred-module-pending.php:230
6444
- msgid "Pending Payments"
6445
- msgstr ""
6446
-
6447
- #: ../addons/buy-creds/modules/buycred-module-pending.php:143
6448
- msgid "Edit Pending Payment"
6449
- msgstr ""
6450
-
6451
- #: ../addons/buy-creds/modules/buycred-module-pending.php:146 ../addons/buy-
6452
- #: creds/modules/buycred-module-pending.php:147
6453
- msgid "Not found in Trash"
6454
- msgstr ""
6455
-
6456
- #: ../addons/buy-creds/modules/buycred-module-pending.php:177 ../addons/buy-
6457
- #: creds/modules/buycred-module-pending.php:178 ../addons/buy-
6458
- #: creds/modules/buycred-module-pending.php:179 ../addons/buy-
6459
- #: creds/modules/buycred-module-pending.php:180 ../addons/buy-
6460
- #: creds/modules/buycred-module-pending.php:181 ../addons/buy-
6461
- #: creds/modules/buycred-module-pending.php:182 ../addons/buy-
6462
- #: creds/modules/buycred-module-pending.php:183 ../addons/buy-
6463
- #: creds/modules/buycred-module-pending.php:184 ../addons/buy-
6464
- #: creds/modules/buycred-module-pending.php:185
6465
- msgid "Payment Updated."
6466
- msgstr ""
6467
-
6468
- #: ../addons/buy-creds/modules/buycred-module-pending.php:213
6469
- msgid "Pending payment successfully credited to account."
6470
- msgstr ""
6471
-
6472
- #: ../addons/buy-creds/modules/buycred-module-pending.php:215
6473
- msgid "Failed to credit the pending payment to account."
6474
- msgstr ""
6475
-
6476
- #: ../addons/buy-creds/modules/buycred-module-pending.php:263 ../addons/buy-
6477
- #: creds/modules/buycred-module-pending.php:724 ../addons/buy-
6478
- #: creds/modules/buycred-module-core.php:733 ../addons/buy-creds/gateways/bank-
6479
- #: transfer.php:113
6480
- msgid "Transaction ID"
6481
- msgstr ""
6482
-
6483
- #: ../addons/buy-creds/modules/buycred-module-pending.php:265 ../addons/buy-
6484
- #: creds/modules/buycred-module-core.php:729
6485
- msgid "Buyer"
6486
- msgstr ""
6487
-
6488
- #: ../addons/buy-creds/modules/buycred-module-pending.php:268 ../addons/buy-
6489
- #: creds/modules/buycred-module-pending.php:589 ../addons/buy-
6490
- #: creds/modules/buycred-module-pending.php:725 ../addons/buy-
6491
- #: creds/modules/buycred-module-core.php:728 ../addons/buy-creds/includes/buycred-
6492
- #: functions.php:118
6493
- msgid "Gateway"
6494
- msgstr ""
6495
-
6496
- #: ../addons/buy-creds/modules/buycred-module-pending.php:269
6497
- msgid "Type"
6498
- msgstr ""
6499
-
6500
- #: ../addons/buy-creds/modules/buycred-module-pending.php:366 ../addons/buy-
6501
- #: creds/modules/buycred-module-pending.php:471
6502
- msgid "Pay Out"
6503
- msgstr ""
6504
-
6505
- #: ../addons/buy-creds/modules/buycred-module-pending.php:434
6506
- msgid "Pending Payment"
6507
- msgstr ""
6508
-
6509
- #: ../addons/buy-creds/modules/buycred-module-pending.php:472
6510
- msgid "Trash"
6511
- msgstr ""
6512
-
6513
- #: ../addons/buy-creds/modules/buycred-module-pending.php:536
6514
- msgid "Payer"
6515
- msgstr ""
6516
-
6517
- #: ../addons/buy-creds/modules/buycred-module-pending.php:620 ../addons/buy-
6518
- #: creds/gateways/bank-transfer.php:180 ../addons/buy-creds/gateways/bitpay.php:
6519
- #: 251 ../addons/buy-creds/gateways/paypal-standard.php:279 ../addons/buy-
6520
- #: creds/gateways/skrill.php:294
6521
- msgid "Currency"
6522
- msgstr ""
6523
-
6524
- #: ../addons/buy-creds/modules/buycred-module-pending.php:645
6525
- msgid "Pending request created."
6526
- msgstr ""
6527
-
6528
- #: ../addons/buy-creds/modules/buycred-module-pending.php:693
6529
- #, php-format
6530
- msgid "Pending payment updated by %s"
6531
- msgstr ""
6532
-
6533
- #: ../addons/buy-creds/modules/buycred-module-pending.php:791
6534
- msgid "No pending payments found"
6535
- msgstr ""
6536
-
6537
- #: ../addons/buy-creds/modules/buycred-module-core.php:28 ../addons/buy-
6538
- #: creds/modules/buycred-module-core.php:29 ../addons/buy-creds/modules/buycred-
6539
- #: module-core.php:30
6540
- msgid "Payment Gateways"
6541
- msgstr ""
6542
-
6543
- #: ../addons/buy-creds/modules/buycred-module-core.php:133
6544
- msgid "Bank Transfer"
6545
- msgstr ""
6546
-
6547
- #: ../addons/buy-creds/modules/buycred-module-core.php:273
6548
- msgid "Please login to purchase %_plural%"
6549
- msgstr ""
6550
-
6551
- #: ../addons/buy-creds/modules/buycred-module-core.php:288
6552
- #, php-format
6553
- msgid "Gift purchase from %display_name%."
6554
- msgstr ""
6555
-
6556
- #: ../addons/buy-creds/modules/buycred-module-core.php:307
6557
- #, php-format
6558
- msgid "Minimum amount of %plural% a user must purchase. Will default to 1."
6559
- msgstr ""
6560
-
6561
- #: ../addons/buy-creds/modules/buycred-module-core.php:315
6562
- msgid "Select the point types that users can buy. You must select at least one!"
6563
- msgstr ""
6564
-
6565
- #: ../addons/buy-creds/modules/buycred-module-core.php:326
6566
- msgid "Login Template"
6567
- msgstr ""
6568
-
6569
- #: ../addons/buy-creds/modules/buycred-module-core.php:330
6570
- msgid "Content to show when a user is not logged in."
6571
- msgstr ""
6572
-
6573
- #: ../addons/buy-creds/modules/buycred-module-core.php:340
6574
- msgid "Thank You Page"
6575
- msgstr ""
6576
-
6577
- #: ../addons/buy-creds/modules/buycred-module-core.php:343 ../addons/buy-
6578
- #: creds/modules/buycred-module-core.php:366
6579
- msgid "Custom URL"
6580
- msgstr ""
6581
-
6582
- #: ../addons/buy-creds/modules/buycred-module-core.php:348 ../addons/buy-
6583
- #: creds/modules/buycred-module-core.php:371
6584
- msgid "Page"
6585
- msgstr ""
6586
-
6587
- #: ../addons/buy-creds/modules/buycred-module-core.php:363
6588
- msgid "Cancellation Page"
6589
- msgstr ""
6590
-
6591
- #: ../addons/buy-creds/modules/buycred-module-core.php:386 ../addons/buy-
6592
- #: creds/modules/buycred-module-core.php:489 ../addons/buy-creds/modules/buycred-
6593
- #: module-core.php:740
6594
- msgid "Purchase Log"
6595
- msgstr ""
6596
-
6597
- #: ../addons/buy-creds/modules/buycred-module-core.php:388
6598
- #, php-format
6599
- msgid "Show seperate log for %_plural% purchases."
6600
- msgstr ""
6601
-
6602
- #: ../addons/buy-creds/modules/buycred-module-core.php:390
6603
- msgid "Gifting"
6604
- msgstr ""
6605
-
6606
- #: ../addons/buy-creds/modules/buycred-module-core.php:392
6607
- #, php-format
6608
- msgid "Allow users to buy %_plural% for other users."
6609
- msgstr ""
6610
-
6611
- #: ../addons/buy-creds/modules/buycred-module-core.php:393
6612
- #, php-format
6613
- msgid "Allow users to buy %_plural% for content authors."
6614
- msgstr ""
6615
-
6616
- #: ../addons/buy-creds/modules/buycred-module-core.php:488
6617
- msgid "buyCRED Purchase Log"
6618
- msgstr ""
6619
-
6620
- #: ../addons/buy-creds/modules/buycred-module-core.php:533
6621
- #, php-format
6622
- msgid "%s Payment Gateways"
6623
- msgstr ""
6624
-
6625
- #: ../addons/buy-creds/modules/buycred-module-core.php:568
6626
- msgid "Sandbox Mode"
6627
- msgstr ""
6628
-
6629
- #: ../addons/buy-creds/modules/buycred-module-core.php:571
6630
- msgid "Enable for test purchases."
6631
- msgstr ""
6632
-
6633
- #: ../addons/buy-creds/modules/buycred-module-core.php:591
6634
- msgid "More Gateways"
6635
- msgstr ""
6636
-
6637
- #: ../addons/buy-creds/modules/buycred-module-core.php:732
6638
- msgid "Payed"
6639
- msgstr ""
6640
-
6641
- #: ../addons/buy-creds/modules/buycred-module-core.php:940
6642
- msgid "No purchases found"
6643
- msgstr ""
6644
-
6645
- #: ../addons/buy-creds/modules/buycred-module-core.php:1029 ../addons/buy-
6646
- #: creds/modules/buycred-module-core.php:1043
6647
- msgid "buyCRED Exchange Rates"
6648
- msgstr ""
6649
-
6650
- #: ../addons/buy-creds/modules/buycred-module-core.php:1059
6651
- msgid "Leave empty to use the default value."
6652
- msgstr ""
6653
-
6654
- #: ../addons/buy-creds/modules/buycred-module-core.php:1266
6655
- msgid "Buy Now"
6656
- msgstr ""
6657
-
6658
- #: ../addons/buy-creds/modules/buycred-module-core.php:1428
6659
- msgid "Pay Using"
6660
- msgstr ""
6661
-
6662
- #: ../addons/buy-creds/gateways/bank-transfer.php:59 ../addons/buy-
6663
- #: creds/gateways/bitpay.php:163 ../addons/buy-creds/gateways/netbilling.php:144 .
6664
- #: ./addons/buy-creds/gateways/zombaio.php:219 ../addons/buy-
6665
- #: creds/gateways/paypal-standard.php:207 ../addons/buy-creds/gateways/skrill.php:
6666
- #: 186
6667
- msgid "Please setup this gateway before attempting to make a purchase!"
6668
- msgstr ""
6669
-
6670
- #: ../addons/buy-creds/gateways/bank-transfer.php:139
6671
- msgid "Continue"
6672
- msgstr ""
6673
-
6674
- #: ../addons/buy-creds/gateways/bank-transfer.php:167
6675
- msgid "Checkout Logo"
6676
- msgstr ""
6677
-
6678
- #: ../addons/buy-creds/gateways/bank-transfer.php:173
6679
- msgid "Bank Account Information"
6680
- msgstr ""
6681
-
6682
- #: ../addons/buy-creds/gateways/bank-transfer.php:177
6683
- msgid "Bank transfer details to show the user on the checkout page."
6684
- msgstr ""
6685
-
6686
- #: ../addons/buy-creds/gateways/bank-transfer.php:186 ../addons/buy-
6687
- #: creds/gateways/bitpay.php:265 ../addons/buy-creds/gateways/netbilling.php:234 .
6688
- #: ./addons/buy-creds/gateways/paypal-standard.php:298 ../addons/buy-
6689
- #: creds/gateways/skrill.php:320
6690
- msgid "Exchange Rates"
6691
- msgstr ""
6692
-
6693
- #: ../addons/buy-creds/gateways/bitpay.php:62 ../addons/buy-
6694
- #: creds/gateways/netbilling.php:92 ../addons/buy-creds/gateways/paypal-standard.
6695
- #: php:145 ../addons/buy-creds/gateways/skrill.php:124
6696
- #, php-format
6697
- msgid "Price mismatch. Expected: %s Received: %s"
6698
- msgstr ""
6699
-
6700
- #: ../addons/buy-creds/gateways/bitpay.php:68 ../addons/buy-creds/gateways/paypal-
6701
- #: standard.php:151 ../addons/buy-creds/gateways/skrill.php:130
6702
- #, php-format
6703
- msgid "Currency mismatch. Expected: %s Received: %s"
6704
- msgstr ""
6705
-
6706
- #: ../addons/buy-creds/gateways/bitpay.php:74 ../addons/buy-
6707
- #: creds/gateways/netbilling.php:98 ../addons/buy-creds/gateways/paypal-standard.
6708
- #: php:157 ../addons/buy-creds/gateways/skrill.php:136
6709
- #, php-format
6710
- msgid "Payment not completed. Received: %s"
6711
- msgstr ""
6712
-
6713
- #: ../addons/buy-creds/gateways/bitpay.php:85 ../addons/buy-
6714
- #: creds/gateways/netbilling.php:109 ../addons/buy-creds/gateways/zombaio.php:189
6715
- #: ../addons/buy-creds/gateways/paypal-standard.php:168 ../addons/buy-
6716
- #: creds/gateways/skrill.php:147
6717
- msgid "Failed to credit users account."
6718
- msgstr ""
6719
-
6720
- #: ../addons/buy-creds/gateways/bitpay.php:208 ../addons/buy-
6721
- #: creds/gateways/bitpay.php:219 ../addons/buy-creds/gateways/netbilling.php:190 .
6722
- #: ./addons/buy-creds/gateways/zombaio.php:249 ../addons/buy-
6723
- #: creds/gateways/paypal-standard.php:261 ../addons/buy-creds/gateways/skrill.php:
6724
- #: 275
6725
- msgid "Processing payment &hellip;"
6726
- msgstr ""
6727
-
6728
- #: ../addons/buy-creds/gateways/bitpay.php:211
6729
- msgid "Could not create a BitPay Invoice. Please contact the site administrator!"
6730
- msgstr ""
6731
-
6732
- #: ../addons/buy-creds/gateways/bitpay.php:212
6733
- msgid "Bitpay returned the following error message:"
6734
- msgstr ""
6735
-
6736
- #: ../addons/buy-creds/gateways/bitpay.php:254
6737
- msgid "Currency Code"
6738
- msgstr ""
6739
-
6740
- #: ../addons/buy-creds/gateways/bitpay.php:258 ../addons/buy-
6741
- #: creds/gateways/netbilling.php:227 ../addons/buy-creds/gateways/paypal-standard.
6742
- #: php:291 ../addons/buy-creds/gateways/skrill.php:313
6743
- msgid "Item Name"
6744
- msgstr ""
6745
-
6746
- #: ../addons/buy-creds/gateways/bitpay.php:262 ../addons/buy-
6747
- #: creds/gateways/netbilling.php:231 ../addons/buy-creds/gateways/paypal-standard.
6748
- #: php:295 ../addons/buy-creds/gateways/skrill.php:317
6749
- msgid "Description of the item being purchased by the user."
6750
- msgstr ""
6751
-
6752
- #: ../addons/buy-creds/gateways/bitpay.php:269
6753
- msgid "Transaction Speed"
6754
- msgstr ""
6755
-
6756
- #: ../addons/buy-creds/gateways/bitpay.php:276
6757
- msgid "High"
6758
- msgstr ""
6759
-
6760
- #: ../addons/buy-creds/gateways/bitpay.php:277
6761
- msgid "Medium"
6762
- msgstr ""
6763
-
6764
- #: ../addons/buy-creds/gateways/bitpay.php:278
6765
- msgid "Low"
6766
- msgstr ""
6767
-
6768
- #: ../addons/buy-creds/gateways/bitpay.php:291
6769
- msgid "Full Notifications"
6770
- msgstr ""
6771
-
6772
- #: ../addons/buy-creds/gateways/netbilling.php:208
6773
- msgid "Account ID"
6774
- msgstr ""
6775
-
6776
- #: ../addons/buy-creds/gateways/netbilling.php:214
6777
- msgid "Site Tag"
6778
- msgstr ""
6779
-
6780
- #: ../addons/buy-creds/gateways/netbilling.php:220
6781
- msgid "Order Integrity Key"
6782
- msgstr ""
6783
-
6784
- #: ../addons/buy-creds/gateways/netbilling.php:224
6785
- msgid "Found under Step 12 on the Fraud Defense page."
6786
- msgstr ""
6787
-
6788
- #: ../addons/buy-creds/gateways/netbilling.php:238
6789
- msgid "Postback CGI URL"
6790
- msgstr ""
6791
-
6792
- #: ../addons/buy-creds/gateways/netbilling.php:242
6793
- msgid ""
6794
- "For this gateway to work, you must login to your NETbilling account and edit "
6795
- "your site. Under \"Default payment form settings\" make sure the Postback CGI "
6796
- "URL is set to the above address and \"Return method\" is set to POST."
6797
- msgstr ""
6798
-
6799
- #: ../addons/buy-creds/gateways/netbilling.php:290
6800
- msgid "Incorrect Credit Card number"
6801
- msgstr ""
6802
-
6803
- #: ../addons/buy-creds/gateways/netbilling.php:296
6804
- msgid "The credit card entered is past its expiration date."
6805
- msgstr ""
6806
-
6807
- #: ../addons/buy-creds/gateways/netbilling.php:299
6808
- msgid "The CVV2 number entered is not valid."
6809
- msgstr ""
6810
-
6811
- #: ../addons/buy-creds/gateways/netbilling.php:306
6812
- msgid "The bank routing number entered is not valid."
6813
- msgstr ""
6814
-
6815
- #: ../addons/buy-creds/gateways/netbilling.php:310
6816
- msgid "The bank account number entered is not valid."
6817
- msgstr ""
6818
-
6819
- #: ../addons/buy-creds/gateways/zombaio.php:155
6820
- #, php-format
6821
- msgid "Duplicate transaction. Received: %s"
6822
- msgstr ""
6823
-
6824
- #: ../addons/buy-creds/gateways/zombaio.php:161
6825
- #, php-format
6826
- msgid "Live transaction while debug mode is enabled! Received: %s"
6827
- msgstr ""
6828
-
6829
- #: ../addons/buy-creds/gateways/zombaio.php:267
6830
- msgid "Site ID"
6831
- msgstr ""
6832
-
6833
- #: ../addons/buy-creds/gateways/zombaio.php:273
6834
- msgid "GW Password"
6835
- msgstr ""
6836
-
6837
- #: ../addons/buy-creds/gateways/zombaio.php:279
6838
- msgid "Pricing ID"
6839
- msgstr ""
6840
-
6841
- #: ../addons/buy-creds/gateways/zombaio.php:285 ../addons/buy-
6842
- #: creds/gateways/skrill.php:338
6843
- msgid "Logo URL"
6844
- msgstr ""
6845
-
6846
- #: ../addons/buy-creds/gateways/zombaio.php:291
6847
- msgid "IP Verification"
6848
- msgstr ""
6849
-
6850
- #: ../addons/buy-creds/gateways/zombaio.php:294
6851
- msgid "Do not verify that callbacks are coming from Zombaio."
6852
- msgstr ""
6853
-
6854
- #: ../addons/buy-creds/gateways/zombaio.php:297
6855
- msgid "Language"
6856
- msgstr ""
6857
-
6858
- #: ../addons/buy-creds/gateways/zombaio.php:304
6859
- msgid "Postback URL (ZScript)"
6860
- msgstr ""
6861
-
6862
- #: ../addons/buy-creds/gateways/zombaio.php:308
6863
- msgid ""
6864
- "For this gateway to work, login to ZOA and set the Postback URL to the above "
6865
- "address and click validate."
6866
- msgstr ""
6867
-
6868
- #: ../addons/buy-creds/gateways/paypal-standard.php:192 ../addons/buy-
6869
- #: creds/gateways/skrill.php:171
6870
- msgid "Success"
6871
- msgstr ""
6872
-
6873
- #: ../addons/buy-creds/gateways/paypal-standard.php:193 ../addons/buy-
6874
- #: creds/gateways/skrill.php:172
6875
- msgid "Thank you for your purchase"
6876
- msgstr ""
6877
-
6878
- #: ../addons/buy-creds/gateways/paypal-standard.php:256
6879
- #, php-format
6880
- msgctxt "Return label. %s = Website name"
6881
- msgid "Return to %s"
6882
- msgstr ""
6883
-
6884
- #: ../addons/buy-creds/gateways/paypal-standard.php:285
6885
- msgid "Account Email"
6886
- msgstr ""
6887
-
6888
- #: ../addons/buy-creds/gateways/skrill.php:226
6889
- msgid "Return to "
6890
- msgstr ""
6891
-
6892
- #: ../addons/buy-creds/gateways/skrill.php:258
6893
- msgid "Product:"
6894
- msgstr ""
6895
-
6896
- #: ../addons/buy-creds/gateways/skrill.php:267
6897
- msgid "Gift to:"
6898
- msgstr ""
6899
-
6900
- #: ../addons/buy-creds/gateways/skrill.php:268
6901
- msgid "(author)"
6902
- msgstr ""
6903
-
6904
- #: ../addons/buy-creds/gateways/skrill.php:301
6905
- msgid "Merchant Account Email"
6906
- msgstr ""
6907
-
6908
- #: ../addons/buy-creds/gateways/skrill.php:307
6909
- msgid "Secret Word"
6910
- msgstr ""
6911
-
6912
- #: ../addons/buy-creds/gateways/skrill.php:324
6913
- msgid "Confirmation Email"
6914
- msgstr ""
6915
-
6916
- #: ../addons/buy-creds/gateways/skrill.php:327
6917
- msgid "Ask Skrill to send me a confirmation email for each successful purchase."
6918
- msgstr ""
6919
-
6920
- #: ../addons/buy-creds/gateways/skrill.php:330
6921
- msgid "Checkout Page"
6922
- msgstr ""
6923
-
6924
- #: ../addons/buy-creds/gateways/skrill.php:335
6925
- msgid "If left empty, your account email is used as title on the Skill Payment Page."
6926
- msgstr ""
6927
-
6928
- #: ../addons/buy-creds/gateways/skrill.php:340
6929
- msgid ""
6930
- "The URL to the image you want to use on the top of the gateway. For best "
6931
- "integration results we recommend you use logos with dimensions up to 200px "
6932
- "in width and 50px in height."
6933
- msgstr ""
6934
-
6935
- #: ../addons/buy-creds/gateways/skrill.php:343
6936
- msgid "Confirmation Note"
6937
- msgstr ""
6938
-
6939
- #: ../addons/buy-creds/gateways/skrill.php:345
6940
- msgid ""
6941
- "Optional text to show user once a transaction has been successfully "
6942
- "completed. This text is shown by Skrill."
6943
- msgstr ""
6944
-
6945
- #: ../modules/mycred-module-network.php:61 ../modules/mycred-module-network.php:
6946
- #: 62 ../addons/gateway/carts/mycred-woocommerce.php:29 ..
6947
- #: addons/gateway/carts/mycred-marketpress.php:274
6948
- msgid "myCRED"
6949
- msgstr "myCRED"
6950
-
6951
- #. URI of the plugin
6952
- msgid "http://mycred.me"
6953
- msgstr "http://mycred.me"
6954
-
6955
- #. Author of the plugin
6956
- msgid "Gabriel S Merovingi"
6957
- msgstr "Gabriel S Merovingi"
6958
-
6959
- #. Author URI of the plugin
6960
- msgid "http://www.merovingi.com"
6961
- msgstr "http://www.merovingi.com"
1
+ msgid ""
2
+ msgstr ""
3
+ "Project-Id-Version: myCRED\n"
4
+ "Report-Msgid-Bugs-To: http://mycred.me\n"
5
+ "POT-Creation-Date: 2016-10-21 06:00+0000\n"
6
+ "PO-Revision-Date: 2016-10-21 06:00+0000\n"
7
+ "Last-Translator: mycreddemo <gabriel.s@merovingi.com>\n"
8
+ "Language-Team: English (United States)\n"
9
+ "Language: en-US\n"
10
+ "Plural-Forms: nplurals=2; plural=n != 1\n"
11
+ "MIME-Version: 1.0\n"
12
+ "Content-Type: text/plain; charset=UTF-8\n"
13
+ "Content-Transfer-Encoding: 8bit\n"
14
+ "X-Poedit-SourceCharset: UTF-8\n"
15
+ "X-Generator: Loco - https://localise.biz/\n"
16
+ "X-Poedit-Basepath: .\n"
17
+ "X-Poedit-KeywordsList: _:1;gettext:1;dgettext:2;ngettext:1,2;dngettext:2,3;"
18
+ "__:1;_e:1;_c:1;_n:1,2;_n_noop:1,2;_nc:1,2;__ngettext:1,2;__ngettext_noop:1,2;"
19
+ "_x:1,2c;_ex:1,2c;_nx:1,2,4c;_nx_noop:1,2,3c;_n_js:1,2;_nx_js:1,2,3c;"
20
+ "esc_attr__:1;esc_html__:1;esc_attr_e:1;esc_html_e:1;esc_attr_x:1,2c;"
21
+ "esc_html_x:1,2c;comments_number_link:2,3;t:1;st:1;trans:1;transChoice:1,2\n"
22
+ "X-Poedit-SearchPath-0: /Users/gabriel/Sites/paypana/wp-"
23
+ "content/plugins/mycred\n"
24
+ "X-Poedit-SearchPath-1: .\n"
25
+ "X-Loco-Target-Locale: en_US"
26
+
27
+ #: mycred.php:564
28
+ msgid "%s Log Import"
29
+ msgstr ""
30
+
31
+ #: mycred.php:565
32
+ msgid "Import log entries via a CSV file."
33
+ msgstr ""
34
+
35
+ #: mycred.php:576
36
+ msgid "%s Balance Import"
37
+ msgstr ""
38
+
39
+ #: mycred.php:577
40
+ msgid "Import balances."
41
+ msgstr ""
42
+
43
+ #: mycred.php:588
44
+ msgid "%s CubePoints Import"
45
+ msgstr ""
46
+
47
+ #: mycred.php:589 includes/importers/mycred-cubepoints.php:379
48
+ msgid "Import CubePoints log entries and / or balances."
49
+ msgstr ""
50
+
51
+ #: mycred.php:631 modules/mycred-module-management.php:314
52
+ #: modules/mycred-module-settings.php:426 modules/mycred-module-log.php:466
53
+ #: addons/transfer/myCRED-addon-transfer.php:139
54
+ #: addons/ranks/myCRED-addon-ranks.php:986
55
+ #: addons/ranks/myCRED-addon-ranks.php:1570
56
+ #: addons/badges/myCRED-addon-badges.php:702
57
+ #: addons/gateway/event-booking/mycred-eventsmanager.php:478
58
+ msgid "Processing..."
59
+ msgstr ""
60
+
61
+ #: mycred.php:632
62
+ msgid "Sent"
63
+ msgstr ""
64
+
65
+ #: mycred.php:633
66
+ msgid "Error - Try Again"
67
+ msgstr ""
68
+
69
+ #: mycred.php:765
70
+ msgid "No CubePoints log exists."
71
+ msgstr ""
72
+
73
+ #: mycred.php:816 mycred.php:817
74
+ msgid "About %s"
75
+ msgstr ""
76
+
77
+ #: mycred.php:825 mycred.php:826
78
+ msgid "Awesome People"
79
+ msgstr ""
80
+
81
+ #: mycred.php:863 modules/mycred-module-management.php:556
82
+ #: addons/transfer/myCRED-addon-transfer.php:495
83
+ #: addons/transfer/includes/mycred-transfer-shortcodes.php:33
84
+ msgid "Balance"
85
+ msgstr ""
86
+
87
+ #: mycred.php:930 modules/mycred-module-management.php:471
88
+ #: modules/mycred-module-log.php:282 modules/mycred-module-log.php:283
89
+ #: addons/buy-creds/modules/buycred-module-pending.php:460
90
+ msgid "History"
91
+ msgstr ""
92
+
93
+ #: mycred.php:986 mycred.php:1007
94
+ #: addons/email-notices/myCRED-addon-email-notices.php:273
95
+ #: addons/banking/services/mycred-service-interest.php:477
96
+ #: addons/gateway/event-booking/mycred-eventsmanager.php:537
97
+ #: addons/gateway/event-booking/mycred-eventsmanager-pro.php:605
98
+ msgid "Setup"
99
+ msgstr ""
100
+
101
+ #: mycred.php:988 modules/mycred-module-settings.php:21
102
+ #: modules/mycred-module-settings.php:22 modules/mycred-module-settings.php:23
103
+ #: modules/mycred-module-network.php:164
104
+ #: addons/stats/abstracts/mycred-abstract-stat-widget.php:106
105
+ #: addons/buy-creds/modules/buycred-module-core.php:555
106
+ msgid "Settings"
107
+ msgstr ""
108
+
109
+ #: mycred.php:1029
110
+ msgid ""
111
+ "Make sure to backup your database and files before updating, in case "
112
+ "anything goes wrong!"
113
+ msgstr ""
114
+
115
+ #: abstracts/mycred-abstract-hook.php:90
116
+ msgid "This Hook has no settings"
117
+ msgstr ""
118
+
119
+ #: abstracts/mycred-abstract-hook.php:283
120
+ #: abstracts/mycred-abstract-hook.php:354 includes/mycred-functions.php:2672
121
+ msgid "No limit"
122
+ msgstr ""
123
+
124
+ #: abstracts/mycred-abstract-hook.php:284
125
+ msgid "/ Day"
126
+ msgstr ""
127
+
128
+ #: abstracts/mycred-abstract-hook.php:285
129
+ msgid "/ Week"
130
+ msgstr ""
131
+
132
+ #: abstracts/mycred-abstract-hook.php:286
133
+ msgid "/ Month"
134
+ msgstr ""
135
+
136
+ #: abstracts/mycred-abstract-hook.php:287
137
+ msgid "in Total"
138
+ msgstr ""
139
+
140
+ #: abstracts/mycred-abstract-hook.php:355
141
+ msgid "Once every 24 hours"
142
+ msgstr ""
143
+
144
+ #: abstracts/mycred-abstract-hook.php:356
145
+ msgid "Once every 7 days"
146
+ msgstr ""
147
+
148
+ #: abstracts/mycred-abstract-hook.php:357
149
+ msgid "Once per day (reset at midnight)"
150
+ msgstr ""
151
+
152
+ #: abstracts/mycred-abstract-hook.php:364
153
+ #: addons/email-notices/myCRED-addon-email-notices.php:527
154
+ #: addons/email-notices/myCRED-addon-email-notices.php:859
155
+ #: addons/badges/myCRED-addon-badges.php:880
156
+ #: addons/banking/abstracts/mycred-abstract-service.php:351
157
+ #: addons/buy-creds/abstracts/mycred-abstract-payment-gateway.php:1126
158
+ #: addons/buy-creds/abstracts/mycred-abstract-payment-gateway.php:1151
159
+ #: addons/buy-creds/modules/buycred-module-core.php:380
160
+ #: addons/buy-creds/modules/buycred-module-core.php:403
161
+ #: addons/buy-creds/gateways/zombaio.php:406
162
+ msgid "Select"
163
+ msgstr ""
164
+
165
+ #: abstracts/mycred-abstract-module.php:400
166
+ #: abstracts/mycred-abstract-module.php:410
167
+ msgid "Surprise"
168
+ msgstr ""
169
+
170
+ #: abstracts/mycred-abstract-module.php:528
171
+ #: modules/mycred-module-network.php:98
172
+ msgid "click to close"
173
+ msgstr ""
174
+
175
+ #: abstracts/mycred-abstract-module.php:529
176
+ #: modules/mycred-module-network.php:99
177
+ msgid "click to open"
178
+ msgstr ""
179
+
180
+ #: abstracts/mycred-abstract-module.php:562
181
+ #: modules/mycred-module-network.php:155
182
+ #: addons/email-notices/myCRED-addon-email-notices.php:1472
183
+ #: addons/gateway/event-booking/mycred-eventespresso3.php:451
184
+ #: addons/buy-creds/modules/buycred-module-core.php:560
185
+ msgid "Settings Updated"
186
+ msgstr ""
187
+
188
+ #: modules/mycred-module-management.php:101
189
+ msgid "Update Balance"
190
+ msgstr ""
191
+
192
+ #: modules/mycred-module-management.php:114
193
+ msgid "User is excluded"
194
+ msgstr ""
195
+
196
+ #: modules/mycred-module-management.php:122
197
+ msgid "Log Entry can not be empty"
198
+ msgstr ""
199
+
200
+ #: modules/mycred-module-management.php:130 modules/mycred-module-log.php:225
201
+ msgid "Amount can not be zero"
202
+ msgstr ""
203
+
204
+ #: modules/mycred-module-management.php:184
205
+ msgid "Balance successfully updated"
206
+ msgstr ""
207
+
208
+ #: modules/mycred-module-management.php:189
209
+ msgid "Request declined"
210
+ msgstr ""
211
+
212
+ #: modules/mycred-module-management.php:224
213
+ msgid "No recent activity found."
214
+ msgstr ""
215
+
216
+ #: modules/mycred-module-management.php:235 modules/mycred-module-log.php:94
217
+ #: modules/mycred-module-log.php:914 includes/shortcodes/mycred_history.php:59
218
+ #: includes/classes/class.query-export.php:263
219
+ #: includes/classes/class.query-export.php:399
220
+ #: includes/classes/class.query-log.php:370
221
+ #: includes/classes/class.query-log.php:383
222
+ #: addons/banking/services/mycred-service-payouts.php:740
223
+ #: addons/sell-content/includes/mycred-sell-shortcodes.php:185
224
+ #: addons/buy-creds/modules/buycred-module-core.php:752
225
+ msgid "Date"
226
+ msgstr ""
227
+
228
+ #: modules/mycred-module-management.php:236
229
+ #: addons/banking/services/mycred-service-interest.php:435
230
+ #: addons/banking/services/mycred-service-interest.php:460
231
+ #: addons/banking/services/mycred-service-payouts.php:746
232
+ msgid "Time"
233
+ msgstr ""
234
+
235
+ #: modules/mycred-module-management.php:237
236
+ #: modules/mycred-module-management.php:773 modules/mycred-module-log.php:93
237
+ #: modules/mycred-module-log.php:922
238
+ #: includes/classes/class.query-export.php:263
239
+ #: includes/classes/class.query-export.php:360
240
+ #: includes/classes/class.query-log.php:382
241
+ #: addons/transfer/includes/mycred-transfer-widgets.php:96
242
+ msgid "Reference"
243
+ msgstr ""
244
+
245
+ #: modules/mycred-module-management.php:238 modules/mycred-module-log.php:96
246
+ #: includes/shortcodes/mycred_history.php:61
247
+ #: includes/classes/class.query-export.php:263
248
+ #: includes/classes/class.query-export.php:406
249
+ #: includes/classes/class.query-log.php:372
250
+ #: includes/classes/class.query-log.php:385
251
+ msgid "Entry"
252
+ msgstr ""
253
+
254
+ #: modules/mycred-module-management.php:280
255
+ msgid "View complete history"
256
+ msgstr ""
257
+
258
+ #: modules/mycred-module-management.php:312
259
+ msgid "Edit Users Balance"
260
+ msgstr ""
261
+
262
+ #: modules/mycred-module-management.php:313
263
+ #: modules/mycred-module-settings.php:431 modules/mycred-module-log.php:465
264
+ #: addons/banking/myCRED-addon-banking.php:204
265
+ msgid "Close"
266
+ msgstr ""
267
+
268
+ #: modules/mycred-module-management.php:451
269
+ #: modules/mycred-module-management.php:569
270
+ #: addons/sell-content/myCRED-addon-sell-content.php:268
271
+ #: addons/buy-creds/modules/buycred-module-core.php:1130
272
+ msgid "Excluded"
273
+ msgstr ""
274
+
275
+ #: modules/mycred-module-management.php:461
276
+ #: addons/coupons/myCRED-addon-coupons.php:307
277
+ msgid "Total"
278
+ msgstr ""
279
+
280
+ #: modules/mycred-module-management.php:472
281
+ msgid "Adjust"
282
+ msgstr ""
283
+
284
+ #: modules/mycred-module-management.php:553
285
+ msgid "Balances"
286
+ msgstr ""
287
+
288
+ #: modules/mycred-module-management.php:581
289
+ #: modules/mycred-module-management.php:581
290
+ #: includes/classes/class.query-log.php:1074
291
+ msgid "Edit"
292
+ msgstr ""
293
+
294
+ #: modules/mycred-module-management.php:581
295
+ #: addons/buy-creds/abstracts/mycred-abstract-payment-gateway.php:479
296
+ #: addons/buy-creds/modules/buycred-module-pending.php:734
297
+ msgid "Cancel"
298
+ msgstr ""
299
+
300
+ #: modules/mycred-module-management.php:739
301
+ #: addons/banking/services/mycred-service-payouts.php:553
302
+ msgid "ID"
303
+ msgstr ""
304
+
305
+ #: modules/mycred-module-management.php:745
306
+ #: modules/mycred-module-export.php:400 modules/mycred-module-export.php:448
307
+ #: addons/buy-creds/modules/buycred-module-core.php:1362
308
+ msgid "Username"
309
+ msgstr ""
310
+
311
+ #: modules/mycred-module-management.php:751
312
+ #: addons/gateway/event-booking/mycred-eventespresso3.php:307
313
+ #: addons/gateway/event-booking/mycred-eventespresso3.php:332
314
+ #: addons/gateway/event-booking/mycred-eventsmanager.php:412
315
+ msgid "Current Balance"
316
+ msgstr ""
317
+
318
+ #: modules/mycred-module-management.php:757
319
+ msgid "Total Balance"
320
+ msgstr ""
321
+
322
+ #: modules/mycred-module-management.php:766
323
+ #: plugins/mycred-hook-affiliatewp.php:260
324
+ #: includes/shortcodes/mycred_exchange.php:69
325
+ #: includes/shortcodes/mycred_hook_table.php:80
326
+ #: includes/classes/class.query-export.php:263
327
+ #: includes/classes/class.query-export.php:383
328
+ #: addons/transfer/includes/mycred-transfer-widgets.php:92
329
+ #: addons/transfer/includes/mycred-transfer-shortcodes.php:32
330
+ #: addons/buy-creds/abstracts/mycred-abstract-payment-gateway.php:692
331
+ #: addons/buy-creds/modules/buycred-module-pending.php:289
332
+ #: addons/buy-creds/modules/buycred-module-pending.php:631
333
+ #: addons/buy-creds/modules/buycred-module-pending.php:749
334
+ msgid "Amount"
335
+ msgstr ""
336
+
337
+ #: modules/mycred-module-management.php:768
338
+ msgid "A positive or negative value"
339
+ msgstr ""
340
+
341
+ #: modules/mycred-module-management.php:783
342
+ msgid "Log under a custom reference"
343
+ msgstr ""
344
+
345
+ #: modules/mycred-module-management.php:789
346
+ msgid "lowercase without empty spaces"
347
+ msgstr ""
348
+
349
+ #: modules/mycred-module-management.php:794 modules/mycred-module-log.php:933
350
+ #: addons/gateway/event-booking/mycred-eventespresso3.php:518
351
+ msgid "Log Entry"
352
+ msgstr ""
353
+
354
+ #: modules/mycred-module-management.php:795
355
+ #: addons/transfer/includes/mycred-transfer-widgets.php:79
356
+ #: addons/transfer/includes/mycred-transfer-widgets.php:101
357
+ #: addons/transfer/includes/mycred-transfer-widgets.php:105
358
+ #: addons/transfer/includes/mycred-transfer-widgets.php:113
359
+ msgid "optional"
360
+ msgstr ""
361
+
362
+ #: modules/mycred-module-management.php:802
363
+ msgid "Update"
364
+ msgstr ""
365
+
366
+ #: modules/mycred-module-management.php:805
367
+ msgid "Recent Activity"
368
+ msgstr ""
369
+
370
+ #: modules/mycred-module-settings.php:138
371
+ msgid "Accounts successfully reset"
372
+ msgstr ""
373
+
374
+ #: modules/mycred-module-settings.php:190
375
+ msgid "No users found to export"
376
+ msgstr ""
377
+
378
+ #: modules/mycred-module-settings.php:240
379
+ msgid "Invalid decimal value."
380
+ msgstr ""
381
+
382
+ #: modules/mycred-module-settings.php:290
383
+ msgid "Log Updated"
384
+ msgstr ""
385
+
386
+ #: modules/mycred-module-settings.php:427
387
+ msgid ""
388
+ "Warning! All entries in your log will be permanently removed! This can not "
389
+ "be undone!"
390
+ msgstr ""
391
+
392
+ #: modules/mycred-module-settings.php:428
393
+ msgid ""
394
+ "All log entries belonging to deleted users will be permanently deleted! This "
395
+ "can not be undone!"
396
+ msgstr ""
397
+
398
+ #: modules/mycred-module-settings.php:429
399
+ msgid "Warning! All user balances will be set to zero! This can not be undone!"
400
+ msgstr ""
401
+
402
+ #: modules/mycred-module-settings.php:430
403
+ msgid "Done!"
404
+ msgstr ""
405
+
406
+ #: modules/mycred-module-settings.php:432
407
+ msgid "Export users %plural%"
408
+ msgstr ""
409
+
410
+ #: modules/mycred-module-settings.php:433
411
+ msgid ""
412
+ "In order to adjust the number of decimal places you want to use we must "
413
+ "update your log. It is highly recommended that you backup your current log "
414
+ "before continuing!"
415
+ msgstr ""
416
+
417
+ #: modules/mycred-module-settings.php:458
418
+ msgid "Update Database"
419
+ msgstr ""
420
+
421
+ #: modules/mycred-module-settings.php:469
422
+ #: modules/mycred-module-settings.php:481
423
+ msgid "No decimals"
424
+ msgstr ""
425
+
426
+ #: modules/mycred-module-settings.php:493
427
+ msgid "<a href=\"%s\">Click here</a> to change your default point types setup."
428
+ msgstr ""
429
+
430
+ #: modules/mycred-module-settings.php:529
431
+ msgid "%s Settings"
432
+ msgstr ""
433
+
434
+ #: modules/mycred-module-settings.php:529 modules/mycred-module-addons.php:368
435
+ msgid "Documentation"
436
+ msgstr ""
437
+
438
+ #: modules/mycred-module-settings.php:538
439
+ msgid "Core Settings"
440
+ msgstr ""
441
+
442
+ #: modules/mycred-module-settings.php:543 includes/mycred-setup.php:275
443
+ #: addons/gateway/event-booking/mycred-eventespresso3.php:460
444
+ #: addons/gateway/event-booking/mycred-eventsmanager.php:602
445
+ #: addons/gateway/event-booking/mycred-eventsmanager-pro.php:686
446
+ msgid "Labels"
447
+ msgstr ""
448
+
449
+ #: modules/mycred-module-settings.php:547 includes/mycred-setup.php:279
450
+ msgid "Singular"
451
+ msgstr ""
452
+
453
+ #: modules/mycred-module-settings.php:548
454
+ #: modules/mycred-module-settings.php:554
455
+ #: modules/mycred-module-settings.php:604
456
+ #: modules/mycred-module-settings.php:611
457
+ #: modules/mycred-module-settings.php:798
458
+ #: modules/mycred-module-settings.php:804 includes/mycred-setup.php:280
459
+ #: includes/mycred-setup.php:286 includes/mycred-setup.php:333
460
+ #: includes/mycred-setup.php:340
461
+ #: addons/banking/services/mycred-service-central.php:111
462
+ #: addons/banking/services/mycred-service-interest.php:482
463
+ #: addons/banking/services/mycred-service-interest.php:500
464
+ msgid "Required"
465
+ msgstr ""
466
+
467
+ #: modules/mycred-module-settings.php:553 includes/mycred-setup.php:285
468
+ msgid "Plural"
469
+ msgstr ""
470
+
471
+ #: modules/mycred-module-settings.php:558 includes/mycred-setup.php:290
472
+ msgid ""
473
+ "These labels are used throughout the admin area and when presenting points "
474
+ "to your users."
475
+ msgstr ""
476
+
477
+ #: modules/mycred-module-settings.php:561 includes/mycred-setup.php:293
478
+ msgid "Format"
479
+ msgstr ""
480
+
481
+ #: modules/mycred-module-settings.php:565 includes/mycred-setup.php:297
482
+ msgid "Prefix"
483
+ msgstr ""
484
+
485
+ #: modules/mycred-module-settings.php:571 includes/mycred-setup.php:303
486
+ msgid "Separators"
487
+ msgstr ""
488
+
489
+ #: modules/mycred-module-settings.php:579 includes/mycred-setup.php:311
490
+ msgid "Decimals"
491
+ msgstr ""
492
+
493
+ #: modules/mycred-module-settings.php:585 includes/mycred-setup.php:317
494
+ msgid "Suffix"
495
+ msgstr ""
496
+
497
+ #: modules/mycred-module-settings.php:590
498
+ msgid "Set decimals to zero if you prefer to use whole numbers."
499
+ msgstr ""
500
+
501
+ #: modules/mycred-module-settings.php:592
502
+ msgid "Tip"
503
+ msgstr ""
504
+
505
+ #: modules/mycred-module-settings.php:592
506
+ msgid ""
507
+ "As this is your main point type, the value you select here will be the "
508
+ "largest number of decimals your installation will support."
509
+ msgstr ""
510
+
511
+ #: modules/mycred-module-settings.php:599 includes/mycred-setup.php:328
512
+ msgid "Security"
513
+ msgstr ""
514
+
515
+ #: modules/mycred-module-settings.php:603 includes/mycred-setup.php:332
516
+ msgid "Point Editors"
517
+ msgstr ""
518
+
519
+ #: modules/mycred-module-settings.php:605 includes/mycred-setup.php:334
520
+ msgid "The capability of users who can edit balances."
521
+ msgstr ""
522
+
523
+ #: modules/mycred-module-settings.php:610 includes/mycred-setup.php:339
524
+ msgid "Point Administrators"
525
+ msgstr ""
526
+
527
+ #: modules/mycred-module-settings.php:612 includes/mycred-setup.php:341
528
+ msgid "The capability of users who can edit settings."
529
+ msgstr ""
530
+
531
+ #: modules/mycred-module-settings.php:618 includes/mycred-setup.php:346
532
+ msgid "Max. Amount"
533
+ msgstr ""
534
+
535
+ #: modules/mycred-module-settings.php:620 includes/mycred-setup.php:348
536
+ msgid "The maximum amount allowed to be paid out in a single instance."
537
+ msgstr ""
538
+
539
+ #: modules/mycred-module-settings.php:625 includes/mycred-setup.php:353
540
+ msgid "Exclude by User ID"
541
+ msgstr ""
542
+
543
+ #: modules/mycred-module-settings.php:626 includes/mycred-setup.php:354
544
+ msgid "Optional"
545
+ msgstr ""
546
+
547
+ #: modules/mycred-module-settings.php:627 includes/mycred-setup.php:355
548
+ msgid "Comma separated list of user IDs to exclude from using this point type."
549
+ msgstr ""
550
+
551
+ #: modules/mycred-module-settings.php:631 includes/mycred-setup.php:359
552
+ msgid "Exclude point editors"
553
+ msgstr ""
554
+
555
+ #: modules/mycred-module-settings.php:634 includes/mycred-setup.php:362
556
+ msgid "Exclude point administrators"
557
+ msgstr ""
558
+
559
+ #: modules/mycred-module-settings.php:644
560
+ msgid "Other Settings"
561
+ msgstr ""
562
+
563
+ #: modules/mycred-module-settings.php:646
564
+ msgid "Delete log entries when user is deleted."
565
+ msgstr ""
566
+
567
+ #: modules/mycred-module-settings.php:665
568
+ msgid "Management"
569
+ msgstr ""
570
+
571
+ #: modules/mycred-module-settings.php:677 modules/mycred-module-log.php:433
572
+ msgid "Entries"
573
+ msgstr ""
574
+
575
+ #: modules/mycred-module-settings.php:683
576
+ #: modules/mycred-module-settings.php:708
577
+ #: addons/ranks/myCRED-addon-ranks.php:1659
578
+ #: addons/buy-creds/modules/buycred-module-pending.php:466
579
+ #: addons/buy-creds/modules/buycred-module-pending.php:752
580
+ msgid "Actions"
581
+ msgstr ""
582
+
583
+ #: modules/mycred-module-settings.php:686
584
+ msgid "Empty Log"
585
+ msgstr ""
586
+
587
+ #: modules/mycred-module-settings.php:696
588
+ msgid "Balance Meta Key"
589
+ msgstr ""
590
+
591
+ #: modules/mycred-module-settings.php:702
592
+ #: addons/ranks/myCRED-addon-ranks.php:1076
593
+ #: addons/badges/myCRED-addon-badges.php:400
594
+ msgid "Users"
595
+ msgstr ""
596
+
597
+ #: modules/mycred-module-settings.php:710
598
+ msgid "Set all to zero"
599
+ msgstr ""
600
+
601
+ #: modules/mycred-module-settings.php:727 includes/mycred-widgets.php:573
602
+ #: addons/transfer/myCRED-addon-transfer.php:383
603
+ #: addons/sell-content/myCRED-addon-sell-content.php:437
604
+ #: addons/transfer/includes/mycred-transfer-widgets.php:108
605
+ #: addons/buy-creds/modules/buycred-module-core.php:336
606
+ msgid "Point Types"
607
+ msgstr ""
608
+
609
+ #: modules/mycred-module-settings.php:741
610
+ #: modules/mycred-module-settings.php:767
611
+ #: modules/mycred-module-settings.php:797
612
+ msgid "Meta Key"
613
+ msgstr ""
614
+
615
+ #: modules/mycred-module-settings.php:747
616
+ #: modules/mycred-module-settings.php:773
617
+ #: modules/mycred-module-settings.php:803
618
+ #: addons/email-notices/myCRED-addon-email-notices.php:575
619
+ #: addons/gateway/carts/mycred-woocommerce.php:159
620
+ msgid "Label"
621
+ msgstr ""
622
+
623
+ #: modules/mycred-module-settings.php:754
624
+ #: modules/mycred-module-settings.php:780
625
+ #: includes/classes/class.query-log.php:492
626
+ #: includes/classes/class.query-log.php:1075
627
+ #: addons/banking/services/mycred-service-payouts.php:472
628
+ #: addons/gateway/event-booking/mycred-eventsmanager-pro.php:496
629
+ msgid "Delete"
630
+ msgstr ""
631
+
632
+ #: modules/mycred-module-settings.php:793
633
+ msgid "Add New Type"
634
+ msgstr ""
635
+
636
+ #: modules/mycred-module-settings.php:809
637
+ msgid ""
638
+ "The meta key must be lowercase and only contain letters or underscores. All "
639
+ "other characters will be deleted!"
640
+ msgstr ""
641
+
642
+ #: modules/mycred-module-settings.php:821
643
+ #: addons/gateway/event-booking/mycred-eventespresso3.php:551
644
+ #: addons/buy-creds/modules/buycred-module-core.php:613
645
+ msgid "Update Settings"
646
+ msgstr ""
647
+
648
+ #: modules/mycred-module-settings.php:830
649
+ msgid "Identify users by"
650
+ msgstr ""
651
+
652
+ #: modules/mycred-module-settings.php:836
653
+ msgid "User ID"
654
+ msgstr ""
655
+
656
+ #: modules/mycred-module-settings.php:837
657
+ msgid "User Email"
658
+ msgstr ""
659
+
660
+ #: modules/mycred-module-settings.php:838
661
+ msgid "User Login"
662
+ msgstr ""
663
+
664
+ #: modules/mycred-module-settings.php:846
665
+ msgid ""
666
+ "Use ID if you intend to use this export as a backup of your current site "
667
+ "while Email is recommended if you want to export to a different site."
668
+ msgstr ""
669
+
670
+ #: modules/mycred-module-settings.php:849
671
+ msgid "Import Log Entry"
672
+ msgstr ""
673
+
674
+ #: modules/mycred-module-settings.php:851
675
+ msgid ""
676
+ "Optional log entry to use if you intend to import this file in a different "
677
+ "%s installation."
678
+ msgstr ""
679
+
680
+ #: modules/mycred-module-settings.php:854 modules/mycred-module-export.php:236
681
+ #: modules/mycred-module-export.php:263 modules/mycred-module-export.php:313
682
+ msgid "Export"
683
+ msgstr ""
684
+
685
+ #: modules/mycred-module-addons.php:25 modules/mycred-module-addons.php:26
686
+ #: includes/mycred-setup.php:171
687
+ msgid "Add-ons"
688
+ msgstr ""
689
+
690
+ #: modules/mycred-module-addons.php:175
691
+ msgid "Give your users badges based on their interaction with your website."
692
+ msgstr ""
693
+
694
+ #: modules/mycred-module-addons.php:186
695
+ msgid ""
696
+ "Setup recurring payouts or offer / charge interest on user account balances."
697
+ msgstr ""
698
+
699
+ #: modules/mycred-module-addons.php:197
700
+ msgid ""
701
+ "The <strong>buy</strong>CRED Add-on allows your users to buy points using "
702
+ "PayPal, Skrill (Moneybookers) or NETbilling. <strong>buy</strong>CRED can "
703
+ "also let your users buy points for other members."
704
+ msgstr ""
705
+
706
+ #: modules/mycred-module-addons.php:208
707
+ msgid ""
708
+ "The coupons add-on allows you to create coupons that users can use to add "
709
+ "points to their accounts."
710
+ msgstr ""
711
+
712
+ #: modules/mycred-module-addons.php:219
713
+ msgid "Create email notices for any type of myCRED instance."
714
+ msgstr ""
715
+
716
+ #: modules/mycred-module-addons.php:230
717
+ msgid ""
718
+ "Let your users pay using their <strong>my</strong>CRED points balance. "
719
+ "Supported Carts: WooCommerce, MarketPress and WP E-Commerce. Supported Event "
720
+ "Bookings: Event Espresso and Events Manager (free & pro)."
721
+ msgstr ""
722
+
723
+ #: modules/mycred-module-addons.php:241
724
+ msgid "Create pop-up notifications for when users gain or loose points."
725
+ msgstr ""
726
+
727
+ #: modules/mycred-module-addons.php:253
728
+ msgid ""
729
+ "Create ranks for users reaching a certain number of %_plural% with the "
730
+ "option to add logos for each rank."
731
+ msgstr ""
732
+
733
+ #: modules/mycred-module-addons.php:264
734
+ msgid ""
735
+ "This add-on allows you to sell posts, pages or any public post types on your "
736
+ "website. You can either sell the entire content or using our shortcode, sell "
737
+ "parts of your content allowing you to offer \"teasers\"."
738
+ msgstr ""
739
+
740
+ #: modules/mycred-module-addons.php:275
741
+ msgid ""
742
+ "Gives you access to your myCRED Statistics based on your users gains and "
743
+ "loses."
744
+ msgstr ""
745
+
746
+ #: modules/mycred-module-addons.php:286
747
+ msgid ""
748
+ "Allow your users to send or \"donate\" points to other members by either "
749
+ "using the mycred_transfer shortcode or the myCRED Transfer widget."
750
+ msgstr ""
751
+
752
+ #: modules/mycred-module-addons.php:330
753
+ msgid "%s Add-ons"
754
+ msgstr ""
755
+
756
+ #: modules/mycred-module-addons.php:330
757
+ msgid "Get More Add-ons"
758
+ msgstr ""
759
+
760
+ #: modules/mycred-module-addons.php:337
761
+ msgid "Add-on Activated"
762
+ msgstr ""
763
+
764
+ #: modules/mycred-module-addons.php:340
765
+ msgid "Add-on Deactivated"
766
+ msgstr ""
767
+
768
+ #: modules/mycred-module-addons.php:405
769
+ msgid "Activate Add-on"
770
+ msgstr ""
771
+
772
+ #: modules/mycred-module-addons.php:406
773
+ msgid "Activate"
774
+ msgstr ""
775
+
776
+ #: modules/mycred-module-addons.php:412
777
+ msgid "Deactivate Add-on"
778
+ msgstr ""
779
+
780
+ #: modules/mycred-module-addons.php:413
781
+ msgid "Deactivate"
782
+ msgstr ""
783
+
784
+ #: modules/mycred-module-log.php:24 modules/mycred-module-log.php:25
785
+ #: addons/gateway/event-booking/mycred-eventespresso3.php:515
786
+ msgid "Log"
787
+ msgstr ""
788
+
789
+ #: modules/mycred-module-log.php:92 modules/mycred-module-log.php:910
790
+ #: includes/shortcodes/mycred_history.php:58
791
+ #: includes/classes/class.query-export.php:263
792
+ #: includes/classes/class.query-export.php:371
793
+ #: includes/classes/class.query-log.php:369
794
+ #: includes/classes/class.query-log.php:381
795
+ #: addons/email-notices/myCRED-addon-email-notices.php:332
796
+ #: addons/email-notices/myCRED-addon-email-notices.php:565
797
+ msgid "User"
798
+ msgstr ""
799
+
800
+ #: modules/mycred-module-log.php:173
801
+ msgid "Row Deleted"
802
+ msgstr ""
803
+
804
+ #: modules/mycred-module-log.php:215
805
+ msgid "Invalid or empty reference"
806
+ msgstr ""
807
+
808
+ #: modules/mycred-module-log.php:220
809
+ msgid "Log Entry cannot be empty"
810
+ msgstr ""
811
+
812
+ #: modules/mycred-module-log.php:232
813
+ msgid "Log entry not found"
814
+ msgstr ""
815
+
816
+ #: modules/mycred-module-log.php:241
817
+ msgid "Could not save the new log entry"
818
+ msgstr ""
819
+
820
+ #: modules/mycred-module-log.php:262
821
+ msgid "Log entry successfully updated"
822
+ msgstr ""
823
+
824
+ #: modules/mycred-module-log.php:307
825
+ msgid "1 Entry Deleted"
826
+ msgid_plural "%d Entries Deleted"
827
+ msgstr[0] ""
828
+ msgstr[1] ""
829
+
830
+ #: modules/mycred-module-log.php:464
831
+ msgid "Edit Log Entry"
832
+ msgstr ""
833
+
834
+ #: modules/mycred-module-log.php:468
835
+ msgid "Are you sure you want to delete this log entry? This can not be undone!"
836
+ msgstr ""
837
+
838
+ #: modules/mycred-module-log.php:469
839
+ msgid "The log entry was successfully updated."
840
+ msgstr ""
841
+
842
+ #: modules/mycred-module-log.php:470
843
+ msgid "The selected log entry could not be deleted."
844
+ msgstr ""
845
+
846
+ #: modules/mycred-module-log.php:502
847
+ msgid "Search results for"
848
+ msgstr ""
849
+
850
+ #: modules/mycred-module-log.php:507
851
+ msgctxt "e.g. Log entries from April 12th 2016"
852
+ msgid "Log entries from %s"
853
+ msgstr ""
854
+
855
+ #: modules/mycred-module-log.php:554
856
+ msgid "%s Log"
857
+ msgstr ""
858
+
859
+ #: modules/mycred-module-log.php:565
860
+ msgid ""
861
+ "Warning. The required Mcrypt PHP Library is not installed on this server! "
862
+ "Certain hooks and shortcodes will not work correctly!"
863
+ msgstr ""
864
+
865
+ #: modules/mycred-module-log.php:670
866
+ msgid "My %s History"
867
+ msgstr ""
868
+
869
+ #: modules/mycred-module-log.php:929
870
+ msgid "Original Entry"
871
+ msgstr ""
872
+
873
+ #: modules/mycred-module-log.php:941
874
+ msgid "Delete Entry"
875
+ msgstr ""
876
+
877
+ #: modules/mycred-module-log.php:946
878
+ msgid "Update Entry"
879
+ msgstr ""
880
+
881
+ #: modules/mycred-module-network.php:71 modules/mycred-module-network.php:72
882
+ msgid "Network Settings"
883
+ msgstr ""
884
+
885
+ #: modules/mycred-module-network.php:135
886
+ msgid "%s Network"
887
+ msgstr ""
888
+
889
+ #: modules/mycred-module-network.php:141
890
+ msgid "I am sorry but your network is too big to use these features."
891
+ msgstr ""
892
+
893
+ #: modules/mycred-module-network.php:151
894
+ msgid "Note! %s has not yet been setup."
895
+ msgstr ""
896
+
897
+ #: modules/mycred-module-network.php:158
898
+ msgid "Configure network settings for %s."
899
+ msgstr ""
900
+
901
+ #: modules/mycred-module-network.php:166
902
+ msgid "Master Template"
903
+ msgstr ""
904
+
905
+ #: modules/mycred-module-network.php:170 modules/mycred-module-network.php:184
906
+ #: addons/buy-creds/gateways/bitpay.php:299
907
+ msgid "Yes"
908
+ msgstr ""
909
+
910
+ #: modules/mycred-module-network.php:174 modules/mycred-module-network.php:188
911
+ #: addons/buy-creds/gateways/bitpay.php:298
912
+ msgid "No"
913
+ msgstr ""
914
+
915
+ #: modules/mycred-module-network.php:177
916
+ msgid ""
917
+ "If enabled, %s will use your main site's settings for all other sites in "
918
+ "your network."
919
+ msgstr ""
920
+
921
+ #: modules/mycred-module-network.php:180
922
+ msgid "Central Logging"
923
+ msgstr ""
924
+
925
+ #: modules/mycred-module-network.php:191
926
+ msgid "If enabled, %s will log all site actions in your main site's log."
927
+ msgstr ""
928
+
929
+ #: modules/mycred-module-network.php:194
930
+ msgid "Site Block"
931
+ msgstr ""
932
+
933
+ #: modules/mycred-module-network.php:198
934
+ msgid "Comma separated list of blog ids where %s is to be disabled."
935
+ msgstr ""
936
+
937
+ #: modules/mycred-module-network.php:210
938
+ msgid "Save Network Settings"
939
+ msgstr ""
940
+
941
+ #: modules/mycred-module-export.php:285 modules/mycred-module-export.php:332
942
+ #: includes/classes/class.query-log.php:1140
943
+ msgid ""
944
+ "Log entries are exported to a CSV file and depending on the number of "
945
+ "entries selected, the process may take a few seconds."
946
+ msgstr ""
947
+
948
+ #: modules/mycred-module-export.php:353
949
+ #: addons/sell-content/myCRED-addon-sell-content.php:253
950
+ #: addons/sell-content/myCRED-addon-sell-content.php:337
951
+ #: addons/buy-creds/modules/buycred-module-core.php:1115
952
+ msgid "Disabled"
953
+ msgstr ""
954
+
955
+ #: modules/mycred-module-export.php:354
956
+ #: addons/sell-content/myCRED-addon-sell-content.php:338
957
+ msgid "Enabled"
958
+ msgstr ""
959
+
960
+ #: modules/mycred-module-export.php:358
961
+ msgid "Make both format options available."
962
+ msgstr ""
963
+
964
+ #: modules/mycred-module-export.php:360
965
+ msgid "Exports"
966
+ msgstr ""
967
+
968
+ #: modules/mycred-module-export.php:366
969
+ msgid "Front End Exports"
970
+ msgstr ""
971
+
972
+ #: modules/mycred-module-export.php:382 modules/mycred-module-export.php:430
973
+ msgid "Export Format"
974
+ msgstr ""
975
+
976
+ #: modules/mycred-module-export.php:398 modules/mycred-module-export.php:446
977
+ msgid "File Name"
978
+ msgstr ""
979
+
980
+ #: modules/mycred-module-export.php:400 modules/mycred-module-export.php:448
981
+ #: includes/mycred-widgets.php:183 includes/mycred-widgets.php:365
982
+ #: includes/importers/mycred-cubepoints.php:401
983
+ #: includes/classes/class.query-export.php:263
984
+ #: includes/classes/class.query-export.php:391
985
+ #: addons/ranks/myCRED-addon-ranks.php:1079
986
+ #: addons/ranks/myCRED-addon-ranks.php:1247
987
+ #: addons/email-notices/myCRED-addon-email-notices.php:276
988
+ #: addons/email-notices/myCRED-addon-email-notices.php:582
989
+ #: addons/coupons/myCRED-addon-coupons.php:254
990
+ #: addons/coupons/myCRED-addon-coupons.php:488
991
+ #: addons/gateway/event-booking/mycred-eventespresso3.php:483
992
+ #: addons/gateway/event-booking/mycred-eventsmanager.php:550
993
+ #: addons/gateway/event-booking/mycred-eventsmanager-pro.php:611
994
+ #: addons/gateway/carts/mycred-wpecommerce.php:383
995
+ #: addons/gateway/carts/mycred-woocommerce.php:119
996
+ #: addons/buy-creds/modules/buycred-module-pending.php:573
997
+ #: addons/buy-creds/modules/buycred-module-pending.php:751
998
+ msgid "Point Type"
999
+ msgstr ""
1000
+
1001
+ #: modules/mycred-module-export.php:407
1002
+ msgid ""
1003
+ "If enabled, users will only be able to export their own log entries! Export "
1004
+ "tools becomes available wherever you are using the mycred_history shortcode "
1005
+ "or in the users profile."
1006
+ msgstr ""
1007
+
1008
+ #: modules/mycred-module-export.php:414
1009
+ msgid "Back End Exports"
1010
+ msgstr ""
1011
+
1012
+ #: modules/mycred-module-export.php:455
1013
+ msgid ""
1014
+ "Raw format should be used when you intend to use the export tool to backup "
1015
+ "or import entries in another installation. Formatted exports reflect what "
1016
+ "users see in their history archive."
1017
+ msgstr ""
1018
+
1019
+ #: modules/mycred-module-buddypress.php:31
1020
+ msgid "My History"
1021
+ msgstr ""
1022
+
1023
+ #: modules/mycred-module-buddypress.php:32
1024
+ msgid "%s's History"
1025
+ msgstr ""
1026
+
1027
+ #: modules/mycred-module-buddypress.php:131
1028
+ msgid "Current balance"
1029
+ msgstr ""
1030
+
1031
+ #: modules/mycred-module-buddypress.php:236
1032
+ #: modules/mycred-module-buddypress.php:249
1033
+ #: includes/classes/class.query-log.php:1194
1034
+ msgid "All"
1035
+ msgstr ""
1036
+
1037
+ #: modules/mycred-module-buddypress.php:237
1038
+ #: includes/classes/class.query-log.php:1195
1039
+ #: addons/stats/widgets/mycred-stats-widget-circulation.php:190
1040
+ #: addons/stats/widgets/mycred-stats-widget-circulation.php:320
1041
+ msgid "Today"
1042
+ msgstr ""
1043
+
1044
+ #: modules/mycred-module-buddypress.php:238
1045
+ #: includes/classes/class.query-log.php:1196
1046
+ msgid "Yesterday"
1047
+ msgstr ""
1048
+
1049
+ #: modules/mycred-module-buddypress.php:239
1050
+ #: includes/classes/class.query-log.php:1197
1051
+ #: addons/stats/widgets/mycred-stats-widget-circulation.php:191
1052
+ #: addons/stats/widgets/mycred-stats-widget-circulation.php:321
1053
+ msgid "This Week"
1054
+ msgstr ""
1055
+
1056
+ #: modules/mycred-module-buddypress.php:240
1057
+ #: includes/classes/class.query-log.php:1198
1058
+ #: addons/stats/widgets/mycred-stats-widget-circulation.php:192
1059
+ #: addons/stats/widgets/mycred-stats-widget-circulation.php:322
1060
+ msgid "This Month"
1061
+ msgstr ""
1062
+
1063
+ #: modules/mycred-module-buddypress.php:350
1064
+ msgid "Show:"
1065
+ msgstr ""
1066
+
1067
+ #: modules/mycred-module-buddypress.php:350
1068
+ msgid "Go"
1069
+ msgstr ""
1070
+
1071
+ #: modules/mycred-module-buddypress.php:402
1072
+ #: addons/badges/myCRED-addon-badges.php:1146
1073
+ #: addons/badges/myCRED-addon-badges.php:1182
1074
+ #: addons/gateway/carts/mycred-woocommerce.php:151
1075
+ msgid "Do not show"
1076
+ msgstr ""
1077
+
1078
+ #: modules/mycred-module-buddypress.php:403
1079
+ #: addons/badges/myCRED-addon-badges.php:1147
1080
+ msgid "Include in Profile Header"
1081
+ msgstr ""
1082
+
1083
+ #: modules/mycred-module-buddypress.php:404
1084
+ #: addons/ranks/myCRED-addon-ranks.php:1455
1085
+ #: addons/badges/myCRED-addon-badges.php:1148
1086
+ msgid "Include under the \"Profile\" tab"
1087
+ msgstr ""
1088
+
1089
+ #: modules/mycred-module-buddypress.php:405
1090
+ #: addons/badges/myCRED-addon-badges.php:1149
1091
+ msgid "Include under the \"Profile\" tab and Profile Header"
1092
+ msgstr ""
1093
+
1094
+ #: modules/mycred-module-buddypress.php:409
1095
+ #: addons/ranks/myCRED-addon-ranks.php:1453
1096
+ #: addons/ranks/myCRED-addon-ranks.php:1498
1097
+ msgid "Do not show."
1098
+ msgstr ""
1099
+
1100
+ #: modules/mycred-module-buddypress.php:410
1101
+ msgid "Show in Profile"
1102
+ msgstr ""
1103
+
1104
+ #: modules/mycred-module-buddypress.php:427
1105
+ msgid "%singular% Balance"
1106
+ msgstr ""
1107
+
1108
+ #: modules/mycred-module-buddypress.php:444
1109
+ msgid "Members and visitors can view other members %_singular% balance."
1110
+ msgstr ""
1111
+
1112
+ #: modules/mycred-module-buddypress.php:449
1113
+ #: addons/ranks/myCRED-addon-ranks.php:1475
1114
+ #: addons/ranks/myCRED-addon-ranks.php:1520
1115
+ #: addons/notifications/myCRED-addon-notifications.php:199
1116
+ msgid "Template"
1117
+ msgstr ""
1118
+
1119
+ #: modules/mycred-module-buddypress.php:454
1120
+ msgid "%plural% History"
1121
+ msgstr ""
1122
+
1123
+ #: modules/mycred-module-buddypress.php:471
1124
+ msgid "Members can view each others %_plural% history."
1125
+ msgstr ""
1126
+
1127
+ #: modules/mycred-module-buddypress.php:476
1128
+ msgid "Menu Title"
1129
+ msgstr ""
1130
+
1131
+ #: modules/mycred-module-buddypress.php:478
1132
+ msgid "Title shown to me"
1133
+ msgstr ""
1134
+
1135
+ #: modules/mycred-module-buddypress.php:483
1136
+ msgid "Title shown to others. Use %s to show the first name."
1137
+ msgstr ""
1138
+
1139
+ #: modules/mycred-module-buddypress.php:488
1140
+ msgid "Menu Position"
1141
+ msgstr ""
1142
+
1143
+ #: modules/mycred-module-buddypress.php:490
1144
+ msgid "Current menu positions:"
1145
+ msgstr ""
1146
+
1147
+ #: modules/mycred-module-buddypress.php:495
1148
+ msgid "History URL slug"
1149
+ msgstr ""
1150
+
1151
+ #: modules/mycred-module-buddypress.php:497
1152
+ msgid "Do not use empty spaces!"
1153
+ msgstr ""
1154
+
1155
+ #: modules/mycred-module-buddypress.php:502
1156
+ msgid "Number of history entries to show"
1157
+ msgstr ""
1158
+
1159
+ #: plugins/mycred-hook-invite-anyone.php:15
1160
+ msgid "Invite Anyone Plugin"
1161
+ msgstr ""
1162
+
1163
+ #: plugins/mycred-hook-invite-anyone.php:16
1164
+ msgid ""
1165
+ "Awards %_plural% for sending invitations and/or %_plural% if the invite is "
1166
+ "accepted."
1167
+ msgstr ""
1168
+
1169
+ #: plugins/mycred-hook-invite-anyone.php:204
1170
+ msgid "%plural% for Sending An Invite"
1171
+ msgstr ""
1172
+
1173
+ #: plugins/mycred-hook-invite-anyone.php:211
1174
+ #: plugins/mycred-hook-invite-anyone.php:232
1175
+ #: plugins/mycred-hook-wp-postratings.php:173
1176
+ #: plugins/mycred-hook-wp-postratings.php:192
1177
+ #: plugins/mycred-hook-gravityforms.php:165
1178
+ #: plugins/mycred-hook-simplepress.php:309
1179
+ #: plugins/mycred-hook-simplepress.php:322
1180
+ #: plugins/mycred-hook-simplepress.php:339
1181
+ #: plugins/mycred-hook-simplepress.php:357
1182
+ #: plugins/mycred-hook-buddypress.php:621
1183
+ #: plugins/mycred-hook-buddypress.php:638
1184
+ #: plugins/mycred-hook-buddypress.php:655
1185
+ #: plugins/mycred-hook-buddypress.php:672
1186
+ #: plugins/mycred-hook-buddypress.php:692
1187
+ #: plugins/mycred-hook-buddypress.php:705
1188
+ #: plugins/mycred-hook-buddypress.php:722
1189
+ #: plugins/mycred-hook-buddypress.php:735
1190
+ #: plugins/mycred-hook-buddypress.php:752
1191
+ #: plugins/mycred-hook-buddypress.php:765
1192
+ #: plugins/mycred-hook-buddypress.php:782
1193
+ #: plugins/mycred-hook-buddypress.php:799
1194
+ #: plugins/mycred-hook-buddypress.php:1429
1195
+ #: plugins/mycred-hook-buddypress.php:1442
1196
+ #: plugins/mycred-hook-buddypress.php:1459
1197
+ #: plugins/mycred-hook-buddypress.php:1476
1198
+ #: plugins/mycred-hook-buddypress.php:1493
1199
+ #: plugins/mycred-hook-buddypress.php:1510
1200
+ #: plugins/mycred-hook-buddypress.php:1528
1201
+ #: plugins/mycred-hook-buddypress.php:1541
1202
+ #: plugins/mycred-hook-buddypress.php:1558
1203
+ #: plugins/mycred-hook-buddypress.php:1575
1204
+ #: plugins/mycred-hook-buddypress.php:1592
1205
+ #: plugins/mycred-hook-affiliatewp.php:229
1206
+ #: plugins/mycred-hook-affiliatewp.php:246
1207
+ #: plugins/mycred-hook-sharethis.php:267
1208
+ #: plugins/mycred-hook-buddypress-media.php:316
1209
+ #: plugins/mycred-hook-buddypress-media.php:330
1210
+ #: plugins/mycred-hook-buddypress-media.php:344
1211
+ #: plugins/mycred-hook-buddypress-media.php:357
1212
+ #: plugins/mycred-hook-buddypress-media.php:367
1213
+ #: plugins/mycred-hook-buddypress-media.php:377
1214
+ #: plugins/mycred-hook-contact-form7.php:168
1215
+ #: plugins/mycred-hook-jetpack.php:545 plugins/mycred-hook-jetpack.php:558
1216
+ #: plugins/mycred-hook-bbPress.php:443 plugins/mycred-hook-bbPress.php:456
1217
+ #: plugins/mycred-hook-bbPress.php:473 plugins/mycred-hook-bbPress.php:491
1218
+ #: plugins/mycred-hook-bbPress.php:508 plugins/mycred-hook-bbPress.php:525
1219
+ #: plugins/mycred-hook-bbPress.php:551 plugins/mycred-hook-badgeOS.php:336
1220
+ #: addons/badges/myCRED-addon-badges.php:949
1221
+ msgid "Log template"
1222
+ msgstr ""
1223
+
1224
+ #: plugins/mycred-hook-invite-anyone.php:216
1225
+ #: plugins/mycred-hook-invite-anyone.php:219
1226
+ #: plugins/mycred-hook-invite-anyone.php:237
1227
+ #: plugins/mycred-hook-invite-anyone.php:240
1228
+ #: plugins/mycred-hook-wp-postratings.php:165
1229
+ #: plugins/mycred-hook-wp-postratings.php:184
1230
+ #: plugins/mycred-hook-gravityforms.php:160
1231
+ #: plugins/mycred-hook-simplepress.php:304
1232
+ #: plugins/mycred-hook-simplepress.php:334
1233
+ #: plugins/mycred-hook-buddypress.php:616
1234
+ #: plugins/mycred-hook-buddypress.php:633
1235
+ #: plugins/mycred-hook-buddypress.php:650
1236
+ #: plugins/mycred-hook-buddypress.php:667
1237
+ #: plugins/mycred-hook-buddypress.php:684
1238
+ #: plugins/mycred-hook-buddypress.php:717
1239
+ #: plugins/mycred-hook-buddypress.php:747
1240
+ #: plugins/mycred-hook-buddypress.php:777
1241
+ #: plugins/mycred-hook-buddypress.php:794
1242
+ #: plugins/mycred-hook-buddypress.php:1454
1243
+ #: plugins/mycred-hook-buddypress.php:1471
1244
+ #: plugins/mycred-hook-buddypress.php:1488
1245
+ #: plugins/mycred-hook-buddypress.php:1505
1246
+ #: plugins/mycred-hook-buddypress.php:1523
1247
+ #: plugins/mycred-hook-buddypress.php:1553
1248
+ #: plugins/mycred-hook-buddypress.php:1570
1249
+ #: plugins/mycred-hook-buddypress.php:1587
1250
+ #: plugins/mycred-hook-affiliatewp.php:241
1251
+ #: plugins/mycred-hook-events-manager-light.php:205
1252
+ #: plugins/mycred-hook-sharethis.php:262
1253
+ #: plugins/mycred-hook-buddypress-media.php:312
1254
+ #: plugins/mycred-hook-buddypress-media.php:326
1255
+ #: plugins/mycred-hook-buddypress-media.php:340
1256
+ #: plugins/mycred-hook-wp-favorite-posts.php:222
1257
+ #: plugins/mycred-hook-wp-favorite-posts.php:240
1258
+ #: plugins/mycred-hook-contact-form7.php:163
1259
+ #: plugins/mycred-hook-bbPress.php:438 plugins/mycred-hook-bbPress.php:468
1260
+ #: plugins/mycred-hook-bbPress.php:503 plugins/mycred-hook-bbPress.php:520
1261
+ #: plugins/mycred-hook-woocommerce.php:336
1262
+ #: includes/shortcodes/mycred_hook_table.php:81
1263
+ #: addons/transfer/myCRED-addon-transfer.php:478
1264
+ msgid "Limit"
1265
+ msgstr ""
1266
+
1267
+ #: plugins/mycred-hook-invite-anyone.php:224
1268
+ msgid "%plural% for Accepting An Invite"
1269
+ msgstr ""
1270
+
1271
+ #: plugins/mycred-hook-invite-anyone.php:228
1272
+ msgid "%plural% for each invited user that accepts an invitation."
1273
+ msgstr ""
1274
+
1275
+ #: plugins/mycred-hook-wp-polls.php:15
1276
+ msgid "WP-Polls"
1277
+ msgstr ""
1278
+
1279
+ #: plugins/mycred-hook-wp-polls.php:16
1280
+ msgid "Awards %_plural% for users voting in polls."
1281
+ msgstr ""
1282
+
1283
+ #: plugins/mycred-hook-wp-polls.php:154
1284
+ #: plugins/mycred-hook-events-manager-light.php:209
1285
+ #: plugins/mycred-hook-events-manager-light.php:222
1286
+ #: plugins/mycred-hook-wp-favorite-posts.php:226
1287
+ #: plugins/mycred-hook-wp-favorite-posts.php:244
1288
+ #: plugins/mycred-hook-wp-favorite-posts.php:258
1289
+ #: plugins/mycred-hook-wp-favorite-posts.php:271
1290
+ #: plugins/mycred-hook-woocommerce.php:340 plugins/mycred-hook-badgeOS.php:143
1291
+ #: plugins/mycred-hook-badgeOS.php:145 plugins/mycred-hook-badgeOS.php:156
1292
+ #: addons/coupons/myCRED-addon-coupons.php:661
1293
+ #: addons/banking/services/mycred-service-interest.php:510
1294
+ #: addons/banking/services/mycred-service-payouts.php:710
1295
+ #: addons/gateway/carts/mycred-wpecommerce.php:400
1296
+ #: addons/gateway/carts/mycred-woocommerce.php:103
1297
+ #: addons/gateway/carts/mycred-woocommerce.php:175
1298
+ #: addons/buy-creds/modules/buycred-module-core.php:357
1299
+ #: addons/buy-creds/modules/buycred-module-core.php:420
1300
+ msgid "Log Template"
1301
+ msgstr ""
1302
+
1303
+ #: plugins/mycred-hook-wp-postratings.php:15
1304
+ msgid "Post Ratings"
1305
+ msgstr ""
1306
+
1307
+ #: plugins/mycred-hook-wp-postratings.php:16
1308
+ msgid ""
1309
+ "Awards %_plural% for post ratings. Supports awarding %_plural% both to post "
1310
+ "author and the user rating."
1311
+ msgstr ""
1312
+
1313
+ #: plugins/mycred-hook-wp-postratings.php:84
1314
+ msgid "Based on rating"
1315
+ msgstr ""
1316
+
1317
+ #: plugins/mycred-hook-wp-postratings.php:159
1318
+ #: includes/classes/class.query-log.php:1628
1319
+ msgid "Adding a Rating"
1320
+ msgstr ""
1321
+
1322
+ #: plugins/mycred-hook-wp-postratings.php:169
1323
+ #: plugins/mycred-hook-wp-postratings.php:188
1324
+ msgid "Use the Rating Value instead of the amount set here."
1325
+ msgstr ""
1326
+
1327
+ #: plugins/mycred-hook-wp-postratings.php:178
1328
+ #: includes/classes/class.query-log.php:1629
1329
+ msgid "Receiving a Rating"
1330
+ msgstr ""
1331
+
1332
+ #: plugins/mycred-hook-gravityforms.php:15
1333
+ msgid "Gravityform Submissions"
1334
+ msgstr ""
1335
+
1336
+ #: plugins/mycred-hook-gravityforms.php:16
1337
+ msgid "Awards %_plural% for successful form submissions."
1338
+ msgstr ""
1339
+
1340
+ #: plugins/mycred-hook-gravityforms.php:129
1341
+ #: plugins/mycred-hook-contact-form7.php:130
1342
+ msgid "No forms found."
1343
+ msgstr ""
1344
+
1345
+ #: plugins/mycred-hook-simplepress.php:16
1346
+ msgid "Awards %_plural% for Simple:Press actions."
1347
+ msgstr ""
1348
+
1349
+ #: plugins/mycred-hook-simplepress.php:298 plugins/mycred-hook-bbPress.php:462
1350
+ msgid "%plural% for New Topic"
1351
+ msgstr ""
1352
+
1353
+ #: plugins/mycred-hook-simplepress.php:315 plugins/mycred-hook-bbPress.php:484
1354
+ msgid "%plural% for Topic Deletion"
1355
+ msgstr ""
1356
+
1357
+ #: plugins/mycred-hook-simplepress.php:328
1358
+ msgid "%plural% for New Topic Post"
1359
+ msgstr ""
1360
+
1361
+ #: plugins/mycred-hook-simplepress.php:346
1362
+ msgid "Topic authors can receive %_plural% for posting on their own Topic"
1363
+ msgstr ""
1364
+
1365
+ #: plugins/mycred-hook-simplepress.php:350
1366
+ msgid "%plural% for Topic Post Deletion"
1367
+ msgstr ""
1368
+
1369
+ #: plugins/mycred-hook-buddypress.php:16
1370
+ msgid "BuddyPress: Members"
1371
+ msgstr ""
1372
+
1373
+ #: plugins/mycred-hook-buddypress.php:17
1374
+ msgid "Awards %_plural% for profile related actions."
1375
+ msgstr ""
1376
+
1377
+ #: plugins/mycred-hook-buddypress.php:24
1378
+ msgid "BuddyPress: Groups"
1379
+ msgstr ""
1380
+
1381
+ #: plugins/mycred-hook-buddypress.php:25
1382
+ msgid ""
1383
+ "Awards %_plural% for group related actions. Use minus to deduct %_plural% or "
1384
+ "zero to disable a specific hook."
1385
+ msgstr ""
1386
+
1387
+ #: plugins/mycred-hook-buddypress.php:307
1388
+ #: addons/sell-content/myCRED-addon-sell-content.php:591
1389
+ #: addons/gateway/event-booking/mycred-eventsmanager.php:636
1390
+ #: addons/gateway/event-booking/mycred-eventsmanager-pro.php:727
1391
+ #: addons/gateway/carts/mycred-wpecommerce.php:415
1392
+ msgid "Insufficient Funds"
1393
+ msgstr ""
1394
+
1395
+ #: plugins/mycred-hook-buddypress.php:610
1396
+ msgid "New Profile Activity"
1397
+ msgstr ""
1398
+
1399
+ #: plugins/mycred-hook-buddypress.php:627
1400
+ msgid "Deleted Profile Activity"
1401
+ msgstr ""
1402
+
1403
+ #: plugins/mycred-hook-buddypress.php:644
1404
+ msgid "New Profile Avatar"
1405
+ msgstr ""
1406
+
1407
+ #: plugins/mycred-hook-buddypress.php:661
1408
+ msgid "New Profile Cover Image"
1409
+ msgstr ""
1410
+
1411
+ #: plugins/mycred-hook-buddypress.php:678
1412
+ #: includes/classes/class.query-log.php:1564
1413
+ msgid "New Friendship"
1414
+ msgstr ""
1415
+
1416
+ #: plugins/mycred-hook-buddypress.php:688
1417
+ msgid ""
1418
+ "Users with zero balance can not add friends. Requires that you deduct "
1419
+ "%_plural% for adding a new friend."
1420
+ msgstr ""
1421
+
1422
+ #: plugins/mycred-hook-buddypress.php:698
1423
+ msgid "Ending Friendship"
1424
+ msgstr ""
1425
+
1426
+ #: plugins/mycred-hook-buddypress.php:711
1427
+ msgid "New Comment"
1428
+ msgstr ""
1429
+
1430
+ #: plugins/mycred-hook-buddypress.php:728
1431
+ #: includes/classes/class.query-log.php:1552
1432
+ msgid "Deleted Comment"
1433
+ msgstr ""
1434
+
1435
+ #: plugins/mycred-hook-buddypress.php:741
1436
+ msgid "Favorit Activity"
1437
+ msgstr ""
1438
+
1439
+ #: plugins/mycred-hook-buddypress.php:758
1440
+ msgid "Removing Favorit Activity"
1441
+ msgstr ""
1442
+
1443
+ #: plugins/mycred-hook-buddypress.php:771
1444
+ msgid "New Private Message"
1445
+ msgstr ""
1446
+
1447
+ #: plugins/mycred-hook-buddypress.php:788
1448
+ #: includes/classes/class.query-log.php:1571
1449
+ msgid "Sending Gift"
1450
+ msgstr ""
1451
+
1452
+ #: plugins/mycred-hook-buddypress.php:1415
1453
+ msgid "%plural% for Creating Groups"
1454
+ msgstr ""
1455
+
1456
+ #: plugins/mycred-hook-buddypress.php:1419
1457
+ msgid ""
1458
+ "If you use a negative value and the user does not have enough %_plural% the "
1459
+ "\"Create Group\" button will be disabled."
1460
+ msgstr ""
1461
+
1462
+ #: plugins/mycred-hook-buddypress.php:1423
1463
+ msgid "Number of members before awarding %_plural%"
1464
+ msgstr ""
1465
+
1466
+ #: plugins/mycred-hook-buddypress.php:1425
1467
+ msgid "Use zero to award %_plural% when group is created."
1468
+ msgstr ""
1469
+
1470
+ #: plugins/mycred-hook-buddypress.php:1435
1471
+ msgid "%plural% for Deleting Groups"
1472
+ msgstr ""
1473
+
1474
+ #: plugins/mycred-hook-buddypress.php:1448
1475
+ msgid "%plural% for New Forum Topic"
1476
+ msgstr ""
1477
+
1478
+ #: plugins/mycred-hook-buddypress.php:1465
1479
+ msgid "%plural% for Editing Forum Topic"
1480
+ msgstr ""
1481
+
1482
+ #: plugins/mycred-hook-buddypress.php:1482
1483
+ msgid "%plural% for New Forum Post"
1484
+ msgstr ""
1485
+
1486
+ #: plugins/mycred-hook-buddypress.php:1499
1487
+ msgid "%plural% for Editing Forum Post"
1488
+ msgstr ""
1489
+
1490
+ #: plugins/mycred-hook-buddypress.php:1516
1491
+ msgid "%plural% for Joining Groups"
1492
+ msgstr ""
1493
+
1494
+ #: plugins/mycred-hook-buddypress.php:1520
1495
+ msgid ""
1496
+ "If you use a negative value and the user does not have enough %_plural% the "
1497
+ "\"Join Group\" button will be disabled."
1498
+ msgstr ""
1499
+
1500
+ #: plugins/mycred-hook-buddypress.php:1534
1501
+ msgid "%plural% for Leaving Groups"
1502
+ msgstr ""
1503
+
1504
+ #: plugins/mycred-hook-buddypress.php:1547
1505
+ msgid "%plural% for New Group Avatar"
1506
+ msgstr ""
1507
+
1508
+ #: plugins/mycred-hook-buddypress.php:1564
1509
+ msgid "%plural% for New Cover Image"
1510
+ msgstr ""
1511
+
1512
+ #: plugins/mycred-hook-buddypress.php:1581
1513
+ msgid "%plural% for New Group Comment"
1514
+ msgstr ""
1515
+
1516
+ #: plugins/mycred-hook-affiliatewp.php:15
1517
+ msgid "AffiliateWP"
1518
+ msgstr ""
1519
+
1520
+ #: plugins/mycred-hook-affiliatewp.php:16
1521
+ msgid ""
1522
+ "Awards %_plural% for affiliate signups, referring visitors and store sale "
1523
+ "referrals."
1524
+ msgstr ""
1525
+
1526
+ #: plugins/mycred-hook-affiliatewp.php:222
1527
+ msgid "Affiliate Signup"
1528
+ msgstr ""
1529
+
1530
+ #: plugins/mycred-hook-affiliatewp.php:235
1531
+ msgid "Referring Visitors"
1532
+ msgstr ""
1533
+
1534
+ #: plugins/mycred-hook-affiliatewp.php:252
1535
+ msgid "Referring Sales"
1536
+ msgstr ""
1537
+
1538
+ #: plugins/mycred-hook-affiliatewp.php:255
1539
+ msgid "Pay a set amount for all referrals."
1540
+ msgstr ""
1541
+
1542
+ #: plugins/mycred-hook-affiliatewp.php:256
1543
+ msgid "AffiliateWP will use %plural% as currency so pay the referral amount."
1544
+ msgstr ""
1545
+
1546
+ #: plugins/mycred-hook-affiliatewp.php:257
1547
+ msgid "Apply an exchange rate against the referral amount."
1548
+ msgstr ""
1549
+
1550
+ #: plugins/mycred-hook-affiliatewp.php:265
1551
+ msgid "Log template - Payout"
1552
+ msgstr ""
1553
+
1554
+ #: plugins/mycred-hook-affiliatewp.php:270
1555
+ msgid "Log template - Refund"
1556
+ msgstr ""
1557
+
1558
+ #: plugins/mycred-hook-events-manager-light.php:15
1559
+ msgid "Events Manager"
1560
+ msgstr ""
1561
+
1562
+ #: plugins/mycred-hook-events-manager-light.php:16
1563
+ msgid "Awards %_plural% for users attending events."
1564
+ msgstr ""
1565
+
1566
+ #: plugins/mycred-hook-events-manager-light.php:199
1567
+ msgid "Attending Event"
1568
+ msgstr ""
1569
+
1570
+ #: plugins/mycred-hook-events-manager-light.php:216
1571
+ msgid "Cancelling Attendance"
1572
+ msgstr ""
1573
+
1574
+ #: plugins/mycred-hook-sharethis.php:15
1575
+ msgid "%plural% for Sharing"
1576
+ msgstr ""
1577
+
1578
+ #: plugins/mycred-hook-sharethis.php:16
1579
+ msgid ""
1580
+ "Awards %_plural% for users sharing / liking your website content to popular "
1581
+ "social media sites."
1582
+ msgstr ""
1583
+
1584
+ #: plugins/mycred-hook-sharethis.php:217
1585
+ msgid "Your ShareThis public key is not set."
1586
+ msgstr ""
1587
+
1588
+ #: plugins/mycred-hook-sharethis.php:222
1589
+ msgid "No ShareThis services detected. Please check your installation."
1590
+ msgstr ""
1591
+
1592
+ #: plugins/mycred-hook-buddypress-media.php:15
1593
+ msgid "rtMedia Galleries"
1594
+ msgstr ""
1595
+
1596
+ #: plugins/mycred-hook-buddypress-media.php:16
1597
+ msgid ""
1598
+ "Award / Deduct %_plural% for users creating albums or uploading new photos."
1599
+ msgstr ""
1600
+
1601
+ #: plugins/mycred-hook-buddypress-media.php:305
1602
+ msgid "New Media Upload"
1603
+ msgstr ""
1604
+
1605
+ #: plugins/mycred-hook-buddypress-media.php:308
1606
+ #: includes/classes/class.query-log.php:1586
1607
+ msgid "Photo Upload"
1608
+ msgstr ""
1609
+
1610
+ #: plugins/mycred-hook-buddypress-media.php:322
1611
+ #: includes/classes/class.query-log.php:1587
1612
+ msgid "Video Upload"
1613
+ msgstr ""
1614
+
1615
+ #: plugins/mycred-hook-buddypress-media.php:336
1616
+ #: includes/classes/class.query-log.php:1588
1617
+ msgid "Music Upload"
1618
+ msgstr ""
1619
+
1620
+ #: plugins/mycred-hook-buddypress-media.php:350
1621
+ msgid "Delete Media"
1622
+ msgstr ""
1623
+
1624
+ #: plugins/mycred-hook-buddypress-media.php:353
1625
+ msgid "Delete Photo"
1626
+ msgstr ""
1627
+
1628
+ #: plugins/mycred-hook-buddypress-media.php:363
1629
+ msgid "Delete Video"
1630
+ msgstr ""
1631
+
1632
+ #: plugins/mycred-hook-buddypress-media.php:373
1633
+ msgid "Delete Music"
1634
+ msgstr ""
1635
+
1636
+ #: plugins/mycred-hook-wp-favorite-posts.php:15
1637
+ msgid "WP Favorite Posts"
1638
+ msgstr ""
1639
+
1640
+ #: plugins/mycred-hook-wp-favorite-posts.php:16
1641
+ msgid "Awards %_plural% for users adding posts to their favorites."
1642
+ msgstr ""
1643
+
1644
+ #: plugins/mycred-hook-wp-favorite-posts.php:216
1645
+ msgid "Adding Content to Favorites"
1646
+ msgstr ""
1647
+
1648
+ #: plugins/mycred-hook-wp-favorite-posts.php:234
1649
+ msgid "Authors Content added to favorites"
1650
+ msgstr ""
1651
+
1652
+ #: plugins/mycred-hook-wp-favorite-posts.php:252
1653
+ msgid "Removing Content from Favorites"
1654
+ msgstr ""
1655
+
1656
+ #: plugins/mycred-hook-wp-favorite-posts.php:265
1657
+ msgid "Removing Content from Favorites (Author)"
1658
+ msgstr ""
1659
+
1660
+ #: plugins/mycred-hook-contact-form7.php:15
1661
+ msgid "Contact Form 7 Form Submissions"
1662
+ msgstr ""
1663
+
1664
+ #: plugins/mycred-hook-contact-form7.php:16
1665
+ msgid "Awards %_plural% for successful form submissions (by logged in users)."
1666
+ msgstr ""
1667
+
1668
+ #: plugins/mycred-hook-jetpack.php:15
1669
+ msgid "Jetpack Subscriptions"
1670
+ msgstr ""
1671
+
1672
+ #: plugins/mycred-hook-jetpack.php:16
1673
+ msgid ""
1674
+ "Awards %_plural% for users signing up for site or comment updates using "
1675
+ "Jetpack."
1676
+ msgstr ""
1677
+
1678
+ #: plugins/mycred-hook-jetpack.php:538
1679
+ msgid "Site Subscriptions"
1680
+ msgstr ""
1681
+
1682
+ #: plugins/mycred-hook-jetpack.php:551
1683
+ msgid "Comment Subscriptions"
1684
+ msgstr ""
1685
+
1686
+ #: plugins/mycred-hook-bbPress.php:16
1687
+ msgid "Awards %_plural% for bbPress actions."
1688
+ msgstr ""
1689
+
1690
+ #: plugins/mycred-hook-bbPress.php:432
1691
+ msgid "%plural% for New Forum"
1692
+ msgstr ""
1693
+
1694
+ #: plugins/mycred-hook-bbPress.php:449
1695
+ msgid "%plural% for Forum Deletion"
1696
+ msgstr ""
1697
+
1698
+ #: plugins/mycred-hook-bbPress.php:480
1699
+ msgid "Forum authors can receive %_plural% for creating new topics."
1700
+ msgstr ""
1701
+
1702
+ #: plugins/mycred-hook-bbPress.php:497
1703
+ msgid "%plural% for Favorited Topic"
1704
+ msgstr ""
1705
+
1706
+ #: plugins/mycred-hook-bbPress.php:514
1707
+ msgid "%plural% for New Reply"
1708
+ msgstr ""
1709
+
1710
+ #: plugins/mycred-hook-bbPress.php:532
1711
+ msgid "Topic authors can receive %_plural% for replying to their own Topic"
1712
+ msgstr ""
1713
+
1714
+ #: plugins/mycred-hook-bbPress.php:536
1715
+ msgid "Show users %_plural% balance in replies"
1716
+ msgstr ""
1717
+
1718
+ #: plugins/mycred-hook-bbPress.php:540
1719
+ msgid "Show users %_plural% balance in their bbPress profiles."
1720
+ msgstr ""
1721
+
1722
+ #: plugins/mycred-hook-bbPress.php:544
1723
+ msgid "%plural% for Reply Deletion"
1724
+ msgstr ""
1725
+
1726
+ #: plugins/mycred-hook-woocommerce.php:87
1727
+ msgid "Reward with %plural%"
1728
+ msgstr ""
1729
+
1730
+ #: plugins/mycred-hook-woocommerce.php:216
1731
+ msgid "WooCommerce Product Reviews"
1732
+ msgstr ""
1733
+
1734
+ #: plugins/mycred-hook-woocommerce.php:217
1735
+ msgid ""
1736
+ "Awards %_plural% for users leaving reviews on your WooCommerce products."
1737
+ msgstr ""
1738
+
1739
+ #: plugins/mycred-hook-badgeOS.php:15
1740
+ msgid "BadgeOS"
1741
+ msgstr ""
1742
+
1743
+ #: plugins/mycred-hook-badgeOS.php:16
1744
+ msgid ""
1745
+ "Default settings for each BadgeOS Achievement type. These settings may be "
1746
+ "overridden for individual achievement type."
1747
+ msgstr ""
1748
+
1749
+ #: plugins/mycred-hook-badgeOS.php:121
1750
+ msgid ""
1751
+ "Please setup your <a href=\"%s\">default settings</a> before using this "
1752
+ "feature."
1753
+ msgstr ""
1754
+
1755
+ #: plugins/mycred-hook-badgeOS.php:137 plugins/mycred-hook-badgeOS.php:139
1756
+ msgid "%plural% to Award"
1757
+ msgstr ""
1758
+
1759
+ #: plugins/mycred-hook-badgeOS.php:141
1760
+ msgid "Use zero to disable"
1761
+ msgstr ""
1762
+
1763
+ #: plugins/mycred-hook-badgeOS.php:154
1764
+ msgid "Deduction Log Template"
1765
+ msgstr ""
1766
+
1767
+ #: plugins/mycred-hook-badgeOS.php:315
1768
+ msgid "Default %s for %s"
1769
+ msgstr ""
1770
+
1771
+ #: plugins/mycred-hook-badgeOS.php:322
1772
+ msgid "Use zero to disable users gaining %_plural%"
1773
+ msgstr ""
1774
+
1775
+ #: plugins/mycred-hook-badgeOS.php:326
1776
+ msgid "Default Log template"
1777
+ msgstr ""
1778
+
1779
+ #: includes/mycred-setup.php:50
1780
+ msgid "myCRED needs your attention."
1781
+ msgstr ""
1782
+
1783
+ #: includes/mycred-setup.php:50
1784
+ msgid "Run Setup"
1785
+ msgstr ""
1786
+
1787
+ #: includes/mycred-setup.php:63 includes/mycred-setup.php:64
1788
+ msgid "myCRED Setup"
1789
+ msgstr ""
1790
+
1791
+ #: includes/mycred-setup.php:105
1792
+ #: addons/sell-content/myCRED-addon-sell-content.php:490
1793
+ msgid "%s Setup"
1794
+ msgstr ""
1795
+
1796
+ #: includes/mycred-setup.php:106
1797
+ msgid ""
1798
+ "Before you can begin using %s, you must setup your first point type. This "
1799
+ "includes what you want to call your points, how these points are presented "
1800
+ "and who has access to it."
1801
+ msgstr ""
1802
+
1803
+ #: includes/mycred-setup.php:111
1804
+ msgid "Your First Point Type"
1805
+ msgstr ""
1806
+
1807
+ #: includes/mycred-setup.php:127
1808
+ msgid "Advanced Settings"
1809
+ msgstr ""
1810
+
1811
+ #: includes/mycred-setup.php:133
1812
+ msgid "Change Default Point Type Key"
1813
+ msgstr ""
1814
+
1815
+ #: includes/mycred-setup.php:135
1816
+ msgid ""
1817
+ "You can change the meta key used to store the default point type using the "
1818
+ "MYCRED_DEFAULT_TYPE_KEY constant. Copy the above code to your wp-config.php "
1819
+ "file to use."
1820
+ msgstr ""
1821
+
1822
+ #: includes/mycred-setup.php:136
1823
+ msgid ""
1824
+ "If you intend to change the default meta key, you should do so before "
1825
+ "continuing on in this setup!"
1826
+ msgstr ""
1827
+
1828
+ #: includes/mycred-setup.php:139
1829
+ msgid "Whitelabel"
1830
+ msgstr ""
1831
+
1832
+ #: includes/mycred-setup.php:141
1833
+ msgid ""
1834
+ "You can re-label myCRED using the MYCRED_DEFAULT_LABEL constant. Copy the "
1835
+ "above code to your wp-config.php file to use."
1836
+ msgstr ""
1837
+
1838
+ #: includes/mycred-setup.php:149
1839
+ msgid "Create Point Type"
1840
+ msgstr ""
1841
+
1842
+ #: includes/mycred-setup.php:149
1843
+ msgid "Hide"
1844
+ msgstr ""
1845
+
1846
+ #: includes/mycred-setup.php:149 includes/mycred-setup.php:149
1847
+ msgid "Advanced"
1848
+ msgstr ""
1849
+
1850
+ #: includes/mycred-setup.php:155
1851
+ msgid "Processing ..."
1852
+ msgstr ""
1853
+
1854
+ #: includes/mycred-setup.php:160
1855
+ msgid "Setup Complete!"
1856
+ msgstr ""
1857
+
1858
+ #: includes/mycred-setup.php:161
1859
+ msgid "Congratulations! You are now ready to use myCRED. What's next?"
1860
+ msgstr ""
1861
+
1862
+ #: includes/mycred-setup.php:166
1863
+ msgid "Enabling Hooks"
1864
+ msgstr ""
1865
+
1866
+ #: includes/mycred-setup.php:167
1867
+ msgid ""
1868
+ "If you intend to give your users points for interacting with your website "
1869
+ "automatically, your next step should be to enable and setup the hooks you "
1870
+ "want to use."
1871
+ msgstr ""
1872
+
1873
+ #: includes/mycred-setup.php:168
1874
+ msgid "Setup Hooks"
1875
+ msgstr ""
1876
+
1877
+ #: includes/mycred-setup.php:172
1878
+ msgid ""
1879
+ "If you want to use advanced features such as Transfers, Point Purchases etc. "
1880
+ "your next step should be to enable and setup your add-ons."
1881
+ msgstr ""
1882
+
1883
+ #: includes/mycred-setup.php:173
1884
+ msgid "Setup Add-ons"
1885
+ msgstr ""
1886
+
1887
+ #: includes/mycred-setup.php:176
1888
+ msgid "Adjust Settings"
1889
+ msgstr ""
1890
+
1891
+ #: includes/mycred-setup.php:177
1892
+ msgid ""
1893
+ "If you need to make further changes to your settings or add new point types, "
1894
+ "you can visit your default point type's settings."
1895
+ msgstr ""
1896
+
1897
+ #: includes/mycred-setup.php:178
1898
+ msgid "View Settings"
1899
+ msgstr ""
1900
+
1901
+ #: includes/mycred-setup.php:322
1902
+ msgid "Set to decimals to zero if you prefer to use whole numbers."
1903
+ msgstr ""
1904
+
1905
+ #: includes/mycred-setup.php:442
1906
+ msgid "Please make sure you fill out all required fields!"
1907
+ msgstr ""
1908
+
1909
+ #: includes/mycred-remote.php:581
1910
+ msgid "This feature requires WordPress Permalinks to be setup and enabled!"
1911
+ msgstr ""
1912
+
1913
+ #: includes/mycred-remote.php:585
1914
+ msgid "Click Update Settings to load the Remote API settings."
1915
+ msgstr ""
1916
+
1917
+ #: includes/mycred-remote.php:588
1918
+ msgid "Allow Remote Access"
1919
+ msgstr ""
1920
+
1921
+ #: includes/mycred-remote.php:613
1922
+ msgid "Remote Access"
1923
+ msgstr ""
1924
+
1925
+ #: includes/mycred-remote.php:615 addons/buy-creds/gateways/bitpay.php:245
1926
+ msgid "API Key"
1927
+ msgstr ""
1928
+
1929
+ #: includes/mycred-remote.php:618
1930
+ msgid "Key"
1931
+ msgstr ""
1932
+
1933
+ #: includes/mycred-remote.php:619
1934
+ msgid "16, 24 or 32 characters"
1935
+ msgstr ""
1936
+
1937
+ #: includes/mycred-remote.php:620
1938
+ msgid "Required for this feature to work!<br />Minimum 12 characters."
1939
+ msgstr ""
1940
+
1941
+ #: includes/mycred-remote.php:623
1942
+ msgid "Key Length"
1943
+ msgstr ""
1944
+
1945
+ #: includes/mycred-remote.php:628
1946
+ msgid "Generate New Key"
1947
+ msgstr ""
1948
+
1949
+ #: includes/mycred-remote.php:630
1950
+ msgid "Warning!"
1951
+ msgstr ""
1952
+
1953
+ #: includes/mycred-remote.php:630
1954
+ msgid ""
1955
+ "Keep this key safe! Those you share this key with will be able to remotely "
1956
+ "deduct / add / transfer %plural%!"
1957
+ msgstr ""
1958
+
1959
+ #: includes/mycred-remote.php:632
1960
+ msgid "Incoming URI"
1961
+ msgstr ""
1962
+
1963
+ #: includes/mycred-remote.php:636
1964
+ msgid ""
1965
+ "The incoming call address. Remote calls made to any other URL will be "
1966
+ "ignored."
1967
+ msgstr ""
1968
+
1969
+ #: includes/mycred-remote.php:639
1970
+ msgid "Debug Mode"
1971
+ msgstr ""
1972
+
1973
+ #: includes/mycred-remote.php:642
1974
+ msgid ""
1975
+ "Remember to disable when not used to prevent mischievous calls from learning "
1976
+ "about your setup!"
1977
+ msgstr ""
1978
+
1979
+ #: includes/mycred-about.php:32
1980
+ msgid "Welcome to %s %s"
1981
+ msgstr ""
1982
+
1983
+ #: includes/mycred-overview.php:25
1984
+ msgid "%s Overview"
1985
+ msgstr ""
1986
+
1987
+ #: includes/mycred-overview.php:82
1988
+ #: addons/stats/widgets/mycred-stats-widget-circulation.php:136
1989
+ #: addons/stats/widgets/mycred-stats-widget-circulation.php:265
1990
+ msgid "Total amount in circulation"
1991
+ msgstr ""
1992
+
1993
+ #: includes/mycred-overview.php:85
1994
+ msgid "Awarded"
1995
+ msgstr ""
1996
+
1997
+ #: includes/mycred-overview.php:88
1998
+ msgid "Deducted"
1999
+ msgstr ""
2000
+
2001
+ #: includes/mycred-install.php:63
2002
+ msgid "myCRED requires WordPress 4.0 or higher. Version detected:"
2003
+ msgstr ""
2004
+
2005
+ #: includes/mycred-install.php:68
2006
+ msgid "myCRED requires PHP 5.3 or higher. Version detected: "
2007
+ msgstr ""
2008
+
2009
+ #: includes/mycred-install.php:73
2010
+ msgid "myCRED requires SQL 5.0 or higher. Version detected: "
2011
+ msgstr ""
2012
+
2013
+ #: includes/mycred-install.php:78
2014
+ msgid ""
2015
+ "The mcrypt PHP library must be enabled in order to use this plugin! Please "
2016
+ "check your PHP configuration or contact your host and ask them to enable it "
2017
+ "for you!"
2018
+ msgstr ""
2019
+
2020
+ #: includes/mycred-install.php:83
2021
+ msgid ""
2022
+ "Sorry but your WordPress installation does not reach the minimum "
2023
+ "requirements for running myCRED. The following errors were given:"
2024
+ msgstr ""
2025
+
2026
+ #: includes/mycred-widgets.php:19
2027
+ msgid "(%s) My Balance"
2028
+ msgstr ""
2029
+
2030
+ #: includes/mycred-widgets.php:22
2031
+ msgid "Show the current users balance and history."
2032
+ msgstr ""
2033
+
2034
+ #: includes/mycred-widgets.php:176 includes/mycred-widgets.php:359
2035
+ #: includes/mycred-widgets.php:567 addons/ranks/myCRED-addon-ranks.php:1366
2036
+ #: addons/gateway/carts/mycred-woocommerce.php:91
2037
+ #: addons/transfer/includes/mycred-transfer-widgets.php:78
2038
+ #: addons/sell-content/includes/mycred-sell-shortcodes.php:186
2039
+ #: addons/buy-creds/gateways/bank-transfer.php:161
2040
+ #: addons/buy-creds/gateways/skrill.php:333
2041
+ msgid "Title"
2042
+ msgstr ""
2043
+
2044
+ #: includes/mycred-widgets.php:192
2045
+ msgid "Balance Layout"
2046
+ msgstr ""
2047
+
2048
+ #: includes/mycred-widgets.php:199
2049
+ msgid "Include history"
2050
+ msgstr ""
2051
+
2052
+ #: includes/mycred-widgets.php:203
2053
+ msgid "History Title"
2054
+ msgstr ""
2055
+
2056
+ #: includes/mycred-widgets.php:207
2057
+ msgid "Number of entires"
2058
+ msgstr ""
2059
+
2060
+ #: includes/mycred-widgets.php:211 includes/mycred-widgets.php:386
2061
+ msgid "Row layout"
2062
+ msgstr ""
2063
+
2064
+ #: includes/mycred-widgets.php:218 includes/mycred-widgets.php:586
2065
+ msgid "Show message when not logged in"
2066
+ msgstr ""
2067
+
2068
+ #: includes/mycred-widgets.php:222 includes/mycred-widgets.php:590
2069
+ msgid "Message"
2070
+ msgstr ""
2071
+
2072
+ #: includes/mycred-widgets.php:282
2073
+ msgid "(%s) Leaderboard"
2074
+ msgstr ""
2075
+
2076
+ #: includes/mycred-widgets.php:285
2077
+ msgid "Leaderboard based on instances or balances."
2078
+ msgstr ""
2079
+
2080
+ #: includes/mycred-widgets.php:373
2081
+ msgid "Based On"
2082
+ msgstr ""
2083
+
2084
+ #: includes/mycred-widgets.php:375
2085
+ msgid ""
2086
+ "Use \"balance\" to base the leaderboard on your users current balances or "
2087
+ "use a specific reference."
2088
+ msgstr ""
2089
+
2090
+ #: includes/mycred-widgets.php:375
2091
+ msgid "Reference Guide"
2092
+ msgstr ""
2093
+
2094
+ #: includes/mycred-widgets.php:379
2095
+ msgid "Visible to non-members"
2096
+ msgstr ""
2097
+
2098
+ #: includes/mycred-widgets.php:382
2099
+ msgid "Number of users"
2100
+ msgstr ""
2101
+
2102
+ #: includes/mycred-widgets.php:391
2103
+ msgid "Offset"
2104
+ msgstr ""
2105
+
2106
+ #: includes/mycred-widgets.php:393
2107
+ msgid "Optional offset of order. Use zero to return the first in the list."
2108
+ msgstr ""
2109
+
2110
+ #: includes/mycred-widgets.php:396
2111
+ msgid "Order"
2112
+ msgstr ""
2113
+
2114
+ #: includes/mycred-widgets.php:401 includes/classes/class.query-log.php:553
2115
+ msgid "Ascending"
2116
+ msgstr ""
2117
+
2118
+ #: includes/mycred-widgets.php:402 includes/classes/class.query-log.php:553
2119
+ msgid "Descending"
2120
+ msgstr ""
2121
+
2122
+ #: includes/mycred-widgets.php:415
2123
+ msgid "Append current users position"
2124
+ msgstr ""
2125
+
2126
+ #: includes/mycred-widgets.php:416
2127
+ msgid ""
2128
+ "If the current user is not in this leaderboard, you can select to append "
2129
+ "them at the end with their current position."
2130
+ msgstr ""
2131
+
2132
+ #: includes/mycred-widgets.php:419
2133
+ msgid "Timeframe"
2134
+ msgstr ""
2135
+
2136
+ #: includes/mycred-widgets.php:421
2137
+ msgid ""
2138
+ "Option to limit the leaderboard based on a specific timeframe. Leave empty "
2139
+ "if not used."
2140
+ msgstr ""
2141
+
2142
+ #: includes/mycred-widgets.php:469
2143
+ msgid "(%s) Wallet"
2144
+ msgstr ""
2145
+
2146
+ #: includes/mycred-widgets.php:472
2147
+ msgid "Shows multiple balances."
2148
+ msgstr ""
2149
+
2150
+ #: includes/mycred-widgets.php:579
2151
+ msgid "Row Layout"
2152
+ msgstr ""
2153
+
2154
+ #: includes/mycred-functions.php:85
2155
+ msgid "Point"
2156
+ msgstr ""
2157
+
2158
+ #: includes/mycred-functions.php:86
2159
+ msgid "Points"
2160
+ msgstr ""
2161
+
2162
+ #: includes/mycred-functions.php:466
2163
+ msgid "Deleted"
2164
+ msgstr ""
2165
+
2166
+ #: includes/mycred-functions.php:607
2167
+ msgid "Deleted Item"
2168
+ msgstr ""
2169
+
2170
+ #: includes/mycred-functions.php:671
2171
+ #: addons/email-notices/myCRED-addon-email-notices.php:861
2172
+ #: addons/gateway/carts/mycred-wpecommerce.php:370
2173
+ msgid "General"
2174
+ msgstr ""
2175
+
2176
+ #: includes/mycred-functions.php:678
2177
+ msgid "User Related"
2178
+ msgstr ""
2179
+
2180
+ #: includes/mycred-functions.php:685
2181
+ msgid "Post Related"
2182
+ msgstr ""
2183
+
2184
+ #: includes/mycred-functions.php:692
2185
+ msgid "Comment Related"
2186
+ msgstr ""
2187
+
2188
+ #: includes/mycred-functions.php:699
2189
+ msgid "Widget Related"
2190
+ msgstr ""
2191
+
2192
+ #: includes/mycred-functions.php:706
2193
+ msgid "Amount Related"
2194
+ msgstr ""
2195
+
2196
+ #: includes/mycred-functions.php:713
2197
+ msgid "Video Related"
2198
+ msgstr ""
2199
+
2200
+ #: includes/mycred-functions.php:724
2201
+ msgid "and"
2202
+ msgstr ""
2203
+
2204
+ #: includes/mycred-functions.php:726
2205
+ msgid "Available Template Tags:"
2206
+ msgstr ""
2207
+
2208
+ #: includes/mycred-functions.php:2678
2209
+ msgid "per day"
2210
+ msgstr ""
2211
+
2212
+ #: includes/mycred-functions.php:2680
2213
+ msgid "per week"
2214
+ msgstr ""
2215
+
2216
+ #: includes/mycred-functions.php:2682
2217
+ msgid "per month"
2218
+ msgstr ""
2219
+
2220
+ #: includes/mycred-functions.php:2684
2221
+ msgid "in total"
2222
+ msgstr ""
2223
+
2224
+ #: includes/mycred-functions.php:2686 includes/mycred-functions.php:2690
2225
+ msgid "Maximum once"
2226
+ msgid_plural "Maximum %d times"
2227
+ msgstr[0] ""
2228
+ msgstr[1] ""
2229
+
2230
+ #: includes/mycred-functions.php:2717
2231
+ msgctxt "ex. 21st."
2232
+ msgid "%dst"
2233
+ msgstr ""
2234
+
2235
+ #: includes/mycred-functions.php:2724
2236
+ msgctxt "ex. 32nd."
2237
+ msgid "%dnd"
2238
+ msgstr ""
2239
+
2240
+ #: includes/mycred-functions.php:2731
2241
+ msgctxt "ex. 43rd."
2242
+ msgid "%drd"
2243
+ msgstr ""
2244
+
2245
+ #: includes/mycred-functions.php:2742
2246
+ msgctxt "ex. 50th"
2247
+ msgid "%dth"
2248
+ msgstr ""
2249
+
2250
+ #: includes/importers/mycred-cubepoints.php:298
2251
+ msgid "No balances were imported."
2252
+ msgstr ""
2253
+
2254
+ #: includes/importers/mycred-cubepoints.php:298
2255
+ msgid "No log entries were imported!"
2256
+ msgstr ""
2257
+
2258
+ #: includes/importers/mycred-cubepoints.php:306
2259
+ #: includes/importers/mycred-log-entries.php:168
2260
+ msgid ""
2261
+ "Import complete - A total of <strong>%d</strong> entries were successfully "
2262
+ "imported. <strong>%d</strong> was skipped."
2263
+ msgstr ""
2264
+
2265
+ #: includes/importers/mycred-cubepoints.php:320
2266
+ #: includes/importers/mycred-balances.php:212
2267
+ #: includes/importers/mycred-log-entries.php:180
2268
+ #: addons/stats/abstracts/mycred-abstract-stat-widget.php:100
2269
+ msgid "View Log"
2270
+ msgstr ""
2271
+
2272
+ #: includes/importers/mycred-cubepoints.php:320
2273
+ #: includes/importers/mycred-balances.php:212
2274
+ #: includes/importers/mycred-log-entries.php:180
2275
+ msgid "Import More"
2276
+ msgstr ""
2277
+
2278
+ #: includes/importers/mycred-cubepoints.php:335
2279
+ msgid "No CubePoints log."
2280
+ msgstr ""
2281
+
2282
+ #: includes/importers/mycred-cubepoints.php:348
2283
+ msgid "Import CubePoints Log"
2284
+ msgstr ""
2285
+
2286
+ #: includes/importers/mycred-cubepoints.php:369
2287
+ msgid "Select what to import"
2288
+ msgstr ""
2289
+
2290
+ #: includes/importers/mycred-cubepoints.php:370
2291
+ msgid "Log Entries Only"
2292
+ msgstr ""
2293
+
2294
+ #: includes/importers/mycred-cubepoints.php:371
2295
+ msgid "CubePoints Balances Only"
2296
+ msgstr ""
2297
+
2298
+ #: includes/importers/mycred-cubepoints.php:372
2299
+ msgid "Log Entries and Balances"
2300
+ msgstr ""
2301
+
2302
+ #: includes/importers/mycred-cubepoints.php:387
2303
+ msgid "Import"
2304
+ msgstr ""
2305
+
2306
+ #: includes/importers/mycred-cubepoints.php:396
2307
+ msgid ""
2308
+ "Warning! Importing CubePoints balances will replace your users myCRED "
2309
+ "balance!"
2310
+ msgstr ""
2311
+
2312
+ #: includes/importers/mycred-balances.php:104
2313
+ #: includes/importers/mycred-balances.php:187
2314
+ #: includes/importers/mycred-balances.php:230
2315
+ #: includes/importers/mycred-balances.php:245
2316
+ #: includes/importers/mycred-log-entries.php:104
2317
+ #: includes/importers/mycred-log-entries.php:153
2318
+ #: includes/importers/mycred-log-entries.php:199
2319
+ #: includes/importers/mycred-log-entries.php:216
2320
+ msgid "Sorry, there has been an error."
2321
+ msgstr ""
2322
+
2323
+ #: includes/importers/mycred-balances.php:105
2324
+ #: includes/importers/mycred-log-entries.php:105
2325
+ msgid "The file does not exist, please try again."
2326
+ msgstr ""
2327
+
2328
+ #: includes/importers/mycred-balances.php:188
2329
+ #: includes/importers/mycred-log-entries.php:154
2330
+ msgid "The CSV is invalid."
2331
+ msgstr ""
2332
+
2333
+ #: includes/importers/mycred-balances.php:200
2334
+ msgid ""
2335
+ "Import complete - A total of <strong>%d</strong> balances were successfully "
2336
+ "imported. <strong>%d</strong> was skipped."
2337
+ msgstr ""
2338
+
2339
+ #: includes/importers/mycred-balances.php:261
2340
+ msgid "Import Balances"
2341
+ msgstr ""
2342
+
2343
+ #: includes/importers/mycred-balances.php:282
2344
+ msgid "Import balances from a CSV file."
2345
+ msgstr ""
2346
+
2347
+ #: includes/importers/mycred-balances.php:293
2348
+ #: includes/importers/mycred-log-entries.php:263
2349
+ msgid ""
2350
+ "Before you can upload your import file, you will need to fix the following "
2351
+ "error:"
2352
+ msgstr ""
2353
+
2354
+ #: includes/importers/mycred-balances.php:305
2355
+ #: includes/importers/mycred-log-entries.php:275
2356
+ msgid "Choose a file from your computer:"
2357
+ msgstr ""
2358
+
2359
+ #: includes/importers/mycred-balances.php:311
2360
+ #: includes/importers/mycred-log-entries.php:281
2361
+ msgid "Maximum size: %s"
2362
+ msgstr ""
2363
+
2364
+ #: includes/importers/mycred-balances.php:316
2365
+ #: includes/importers/mycred-log-entries.php:286
2366
+ msgid "OR enter path to file:"
2367
+ msgstr ""
2368
+
2369
+ #: includes/importers/mycred-balances.php:323
2370
+ #: includes/importers/mycred-log-entries.php:293
2371
+ msgid "Delimiter"
2372
+ msgstr ""
2373
+
2374
+ #: includes/importers/mycred-balances.php:327
2375
+ msgid "Method"
2376
+ msgstr ""
2377
+
2378
+ #: includes/importers/mycred-balances.php:329
2379
+ msgid "Replace current balances with the amount in this CSV file"
2380
+ msgstr ""
2381
+
2382
+ #: includes/importers/mycred-balances.php:330
2383
+ msgid "Adjust current balances according to the amount in this CSV file"
2384
+ msgstr ""
2385
+
2386
+ #: includes/importers/mycred-log-entries.php:232
2387
+ msgid "Import Log Entries"
2388
+ msgstr ""
2389
+
2390
+ #: includes/importers/mycred-log-entries.php:253
2391
+ msgid "Import log entries from a CSV file."
2392
+ msgstr ""
2393
+
2394
+ #: includes/shortcodes/mycred_exchange.php:27
2395
+ #: includes/shortcodes/mycred_hook_table.php:24
2396
+ msgid "Point type not found."
2397
+ msgstr ""
2398
+
2399
+ #: includes/shortcodes/mycred_exchange.php:33
2400
+ #: includes/shortcodes/mycred_exchange.php:41
2401
+ #: includes/shortcodes/mycred_exchange.php:136
2402
+ #: includes/shortcodes/mycred_exchange.php:156
2403
+ msgid "You are excluded from using %s."
2404
+ msgstr ""
2405
+
2406
+ #: includes/shortcodes/mycred_exchange.php:37
2407
+ #: includes/shortcodes/mycred_exchange.php:146
2408
+ msgid "Your balance is too low to use this feature."
2409
+ msgstr ""
2410
+
2411
+ #: includes/shortcodes/mycred_exchange.php:63
2412
+ msgid "Your current %s balance"
2413
+ msgstr ""
2414
+
2415
+ #: includes/shortcodes/mycred_exchange.php:70
2416
+ msgid "Minimum %s"
2417
+ msgstr ""
2418
+
2419
+ #: includes/shortcodes/mycred_exchange.php:75
2420
+ #: addons/gateway/event-booking/mycred-eventespresso3.php:498
2421
+ #: addons/gateway/event-booking/mycred-eventsmanager.php:578
2422
+ #: addons/gateway/event-booking/mycred-eventsmanager-pro.php:650
2423
+ #: addons/gateway/carts/mycred-wpecommerce.php:389
2424
+ #: addons/gateway/carts/mycred-woocommerce.php:140
2425
+ msgid "Exchange Rate"
2426
+ msgstr ""
2427
+
2428
+ #: includes/shortcodes/mycred_exchange.php:76
2429
+ msgid "1 %s = <span class=\"rate\">%s</span> %s"
2430
+ msgstr ""
2431
+
2432
+ #: includes/shortcodes/mycred_exchange.php:124
2433
+ msgid "Point types not found."
2434
+ msgstr ""
2435
+
2436
+ #: includes/shortcodes/mycred_exchange.php:169
2437
+ msgid "You must exchange at least %s!"
2438
+ msgstr ""
2439
+
2440
+ #: includes/shortcodes/mycred_exchange.php:178
2441
+ #: addons/transfer/myCRED-addon-transfer.php:153
2442
+ msgid "Insufficient Funds. Please try a lower amount."
2443
+ msgstr ""
2444
+
2445
+ #: includes/shortcodes/mycred_exchange.php:191
2446
+ msgid "Exchange from %s"
2447
+ msgstr ""
2448
+
2449
+ #: includes/shortcodes/mycred_exchange.php:203
2450
+ msgid "Exchange to %s"
2451
+ msgstr ""
2452
+
2453
+ #: includes/shortcodes/mycred_exchange.php:211
2454
+ msgid "You have successfully exchanged %s into %s."
2455
+ msgstr ""
2456
+
2457
+ #: includes/shortcodes/mycred_hook_table.php:21
2458
+ msgid "No instances found for this point type"
2459
+ msgstr ""
2460
+
2461
+ #: includes/shortcodes/mycred_hook_table.php:79
2462
+ msgid "Instance"
2463
+ msgstr ""
2464
+
2465
+ #: includes/shortcodes/mycred_video.php:44
2466
+ msgid "A video ID is required for this shortcode"
2467
+ msgstr ""
2468
+
2469
+ #: includes/classes/class.query-export.php:263
2470
+ msgid "Reference ID"
2471
+ msgstr ""
2472
+
2473
+ #: includes/classes/class.query-export.php:263
2474
+ msgid "Data"
2475
+ msgstr ""
2476
+
2477
+ #: includes/classes/class.query-export.php:374
2478
+ #: includes/classes/class.query-log.php:979
2479
+ msgid "User Missing"
2480
+ msgstr ""
2481
+
2482
+ #: includes/classes/class.query-export.php:464
2483
+ msgid "Export log entries raw"
2484
+ msgstr ""
2485
+
2486
+ #: includes/classes/class.query-export.php:465
2487
+ msgid "Export log entries formatted"
2488
+ msgstr ""
2489
+
2490
+ #: includes/classes/class.query-export.php:482
2491
+ msgid "All Log Entries"
2492
+ msgstr ""
2493
+
2494
+ #: includes/classes/class.query-export.php:487
2495
+ msgid "Search Results"
2496
+ msgstr ""
2497
+
2498
+ #: includes/classes/class.query-export.php:492
2499
+ msgid "Users Log Entries"
2500
+ msgstr ""
2501
+
2502
+ #: includes/classes/class.query-export.php:493
2503
+ msgid "Export History"
2504
+ msgstr ""
2505
+
2506
+ #: includes/classes/class.query-log.php:427
2507
+ msgid "No log entries found"
2508
+ msgstr ""
2509
+
2510
+ #: includes/classes/class.query-log.php:489
2511
+ msgid "Bulk Actions"
2512
+ msgstr ""
2513
+
2514
+ #: includes/classes/class.query-log.php:490
2515
+ msgid "Export Raw"
2516
+ msgstr ""
2517
+
2518
+ #: includes/classes/class.query-log.php:491
2519
+ msgid "Export Formatted"
2520
+ msgstr ""
2521
+
2522
+ #: includes/classes/class.query-log.php:507
2523
+ msgid "Apply"
2524
+ msgstr ""
2525
+
2526
+ #: includes/classes/class.query-log.php:527
2527
+ msgid "Show all references"
2528
+ msgstr ""
2529
+
2530
+ #: includes/classes/class.query-log.php:544
2531
+ msgid "User ID, Username, Email or Nicename"
2532
+ msgstr ""
2533
+
2534
+ #: includes/classes/class.query-log.php:552
2535
+ msgid "Show in order"
2536
+ msgstr ""
2537
+
2538
+ #: includes/classes/class.query-log.php:573
2539
+ msgid "Filter"
2540
+ msgstr ""
2541
+
2542
+ #: includes/classes/class.query-log.php:609
2543
+ msgid "Log entries navigation"
2544
+ msgstr ""
2545
+
2546
+ #: includes/classes/class.query-log.php:734
2547
+ msgid "1 entry"
2548
+ msgid_plural "%d entries"
2549
+ msgstr[0] ""
2550
+ msgstr[1] ""
2551
+
2552
+ #: includes/classes/class.query-log.php:867
2553
+ #: includes/classes/class.query-log.php:888
2554
+ msgid "Select all"
2555
+ msgstr ""
2556
+
2557
+ #: includes/classes/class.query-log.php:971
2558
+ msgid "Select entry"
2559
+ msgstr ""
2560
+
2561
+ #: includes/classes/class.query-log.php:992
2562
+ msgid "Show more details"
2563
+ msgstr ""
2564
+
2565
+ #: includes/classes/class.query-log.php:1016
2566
+ msgid "Filter by Date"
2567
+ msgstr ""
2568
+
2569
+ #: includes/classes/class.query-log.php:1065
2570
+ msgid "Filter by User"
2571
+ msgstr ""
2572
+
2573
+ #: includes/classes/class.query-log.php:1067
2574
+ msgid "Filter by ID"
2575
+ msgstr ""
2576
+
2577
+ #: includes/classes/class.query-log.php:1147
2578
+ msgid "No export options available."
2579
+ msgstr ""
2580
+
2581
+ #: includes/classes/class.query-log.php:1178
2582
+ #: includes/classes/class.query-log.php:1180
2583
+ msgid "Search Log"
2584
+ msgstr ""
2585
+
2586
+ #: includes/classes/class.query-log.php:1179
2587
+ msgid "search log entries"
2588
+ msgstr ""
2589
+
2590
+ #: includes/classes/class.query-log.php:1543
2591
+ msgid "Website Registration"
2592
+ msgstr ""
2593
+
2594
+ #: includes/classes/class.query-log.php:1544
2595
+ msgid "Website Visit"
2596
+ msgstr ""
2597
+
2598
+ #: includes/classes/class.query-log.php:1545
2599
+ msgid "Viewing Content (Member)"
2600
+ msgstr ""
2601
+
2602
+ #: includes/classes/class.query-log.php:1546
2603
+ msgid "Viewing Content (Author)"
2604
+ msgstr ""
2605
+
2606
+ #: includes/classes/class.query-log.php:1547
2607
+ msgid "Logging in"
2608
+ msgstr ""
2609
+
2610
+ #: includes/classes/class.query-log.php:1548
2611
+ msgid "Publishing Content"
2612
+ msgstr ""
2613
+
2614
+ #: includes/classes/class.query-log.php:1549
2615
+ msgid "Approved Comment"
2616
+ msgstr ""
2617
+
2618
+ #: includes/classes/class.query-log.php:1550
2619
+ msgid "Unapproved Comment"
2620
+ msgstr ""
2621
+
2622
+ #: includes/classes/class.query-log.php:1551
2623
+ msgid "SPAM Comment"
2624
+ msgstr ""
2625
+
2626
+ #: includes/classes/class.query-log.php:1553
2627
+ msgid "Link Click"
2628
+ msgstr ""
2629
+
2630
+ #: includes/classes/class.query-log.php:1554
2631
+ msgid "Watching Video"
2632
+ msgstr ""
2633
+
2634
+ #: includes/classes/class.query-log.php:1555
2635
+ msgid "Visitor Referral"
2636
+ msgstr ""
2637
+
2638
+ #: includes/classes/class.query-log.php:1556
2639
+ msgid "Signup Referral"
2640
+ msgstr ""
2641
+
2642
+ #: includes/classes/class.query-log.php:1560
2643
+ msgid "New Profile Update"
2644
+ msgstr ""
2645
+
2646
+ #: includes/classes/class.query-log.php:1561
2647
+ msgid "Profile Update Removal"
2648
+ msgstr ""
2649
+
2650
+ #: includes/classes/class.query-log.php:1562
2651
+ msgid "Avatar Upload"
2652
+ msgstr ""
2653
+
2654
+ #: includes/classes/class.query-log.php:1563
2655
+ msgid "Profile Cover Upload"
2656
+ msgstr ""
2657
+
2658
+ #: includes/classes/class.query-log.php:1565
2659
+ msgid "Ended Friendship"
2660
+ msgstr ""
2661
+
2662
+ #: includes/classes/class.query-log.php:1566
2663
+ msgid "New Profile Comment"
2664
+ msgstr ""
2665
+
2666
+ #: includes/classes/class.query-log.php:1567
2667
+ msgid "Profile Comment Deletion"
2668
+ msgstr ""
2669
+
2670
+ #: includes/classes/class.query-log.php:1568
2671
+ msgid "Add Activity to Favorites"
2672
+ msgstr ""
2673
+
2674
+ #: includes/classes/class.query-log.php:1569
2675
+ msgid "Remove Activity from Favorites"
2676
+ msgstr ""
2677
+
2678
+ #: includes/classes/class.query-log.php:1570
2679
+ msgid "New Message"
2680
+ msgstr ""
2681
+
2682
+ #: includes/classes/class.query-log.php:1572
2683
+ msgid "New Group"
2684
+ msgstr ""
2685
+
2686
+ #: includes/classes/class.query-log.php:1573
2687
+ msgid "Deleted Group"
2688
+ msgstr ""
2689
+
2690
+ #: includes/classes/class.query-log.php:1574
2691
+ msgid "New Group Forum Topic"
2692
+ msgstr ""
2693
+
2694
+ #: includes/classes/class.query-log.php:1575
2695
+ msgid "Edit Group Forum Topic"
2696
+ msgstr ""
2697
+
2698
+ #: includes/classes/class.query-log.php:1576
2699
+ msgid "New Group Forum Post"
2700
+ msgstr ""
2701
+
2702
+ #: includes/classes/class.query-log.php:1577
2703
+ msgid "Edit Group Forum Post"
2704
+ msgstr ""
2705
+
2706
+ #: includes/classes/class.query-log.php:1578
2707
+ msgid "Joining Group"
2708
+ msgstr ""
2709
+
2710
+ #: includes/classes/class.query-log.php:1579
2711
+ msgid "Leaving Group"
2712
+ msgstr ""
2713
+
2714
+ #: includes/classes/class.query-log.php:1580
2715
+ msgid "New Group Avatar"
2716
+ msgstr ""
2717
+
2718
+ #: includes/classes/class.query-log.php:1581
2719
+ msgid "New Group Cover"
2720
+ msgstr ""
2721
+
2722
+ #: includes/classes/class.query-log.php:1582
2723
+ msgid "New Group Comment"
2724
+ msgstr ""
2725
+
2726
+ #: includes/classes/class.query-log.php:1592
2727
+ msgid "New Link"
2728
+ msgstr ""
2729
+
2730
+ #: includes/classes/class.query-log.php:1593
2731
+ msgid "Link Voting"
2732
+ msgstr ""
2733
+
2734
+ #: includes/classes/class.query-log.php:1594
2735
+ msgid "Link Update"
2736
+ msgstr ""
2737
+
2738
+ #: includes/classes/class.query-log.php:1598
2739
+ msgid "New Forum (bbPress)"
2740
+ msgstr ""
2741
+
2742
+ #: includes/classes/class.query-log.php:1599
2743
+ msgid "New Forum Topic (bbPress)"
2744
+ msgstr ""
2745
+
2746
+ #: includes/classes/class.query-log.php:1600
2747
+ msgid "Favorited Topic (bbPress)"
2748
+ msgstr ""
2749
+
2750
+ #: includes/classes/class.query-log.php:1601
2751
+ msgid "New Topic Reply (bbPress)"
2752
+ msgstr ""
2753
+
2754
+ #: includes/classes/class.query-log.php:1605
2755
+ msgid "Form Submission (Contact Form 7)"
2756
+ msgstr ""
2757
+
2758
+ #: includes/classes/class.query-log.php:1608
2759
+ msgid "Form Submission (Gravity Form)"
2760
+ msgstr ""
2761
+
2762
+ #: includes/classes/class.query-log.php:1611
2763
+ msgid "New Forum Topic (SimplePress)"
2764
+ msgstr ""
2765
+
2766
+ #: includes/classes/class.query-log.php:1612
2767
+ msgid "New Forum Post (SimplePress)"
2768
+ msgstr ""
2769
+
2770
+ #: includes/classes/class.query-log.php:1621
2771
+ msgid "Affiliate Signup (AffiliateWP)"
2772
+ msgstr ""
2773
+
2774
+ #: includes/classes/class.query-log.php:1622
2775
+ msgid "Referred Visit (AffiliateWP)"
2776
+ msgstr ""
2777
+
2778
+ #: includes/classes/class.query-log.php:1623
2779
+ msgid "Affiliate Referral (AffiliateWP)"
2780
+ msgstr ""
2781
+
2782
+ #: includes/classes/class.query-log.php:1624
2783
+ msgid "Referral Refund (AffiliateWP)"
2784
+ msgstr ""
2785
+
2786
+ #: includes/classes/class.query-log.php:1633
2787
+ msgid "Poll Voting"
2788
+ msgstr ""
2789
+
2790
+ #: includes/classes/class.query-log.php:1636
2791
+ msgid "Sending an Invite"
2792
+ msgstr ""
2793
+
2794
+ #: includes/classes/class.query-log.php:1637
2795
+ msgid "Accepting an Invite"
2796
+ msgstr ""
2797
+
2798
+ #: includes/classes/class.query-log.php:1643
2799
+ #: addons/banking/myCRED-addon-banking.php:150
2800
+ msgid "Compound Interest"
2801
+ msgstr ""
2802
+
2803
+ #: includes/classes/class.query-log.php:1644
2804
+ msgid "Recurring Payout"
2805
+ msgstr ""
2806
+
2807
+ #: includes/classes/class.query-log.php:1648
2808
+ msgid "Badge Reward"
2809
+ msgstr ""
2810
+
2811
+ #: includes/classes/class.query-log.php:1651
2812
+ msgid "buyCRED Purchase (PayPal Standard)"
2813
+ msgstr ""
2814
+
2815
+ #: includes/classes/class.query-log.php:1652
2816
+ msgid "buyCRED Purchase (Skrill)"
2817
+ msgstr ""
2818
+
2819
+ #: includes/classes/class.query-log.php:1653
2820
+ msgid "buyCRED Purchase (Zombaio)"
2821
+ msgstr ""
2822
+
2823
+ #: includes/classes/class.query-log.php:1654
2824
+ msgid "buyCRED Purchase (NETBilling)"
2825
+ msgstr ""
2826
+
2827
+ #: includes/classes/class.query-log.php:1655
2828
+ msgid "buyCRED Purchase (BitPay)"
2829
+ msgstr ""
2830
+
2831
+ #: includes/classes/class.query-log.php:1660
2832
+ msgid "Coupon Purchase"
2833
+ msgstr ""
2834
+
2835
+ #: includes/classes/class.query-log.php:1664
2836
+ msgid "Store Purchase (WooCommerce)"
2837
+ msgstr ""
2838
+
2839
+ #: includes/classes/class.query-log.php:1665
2840
+ msgid "Store Reward (WooCommerce)"
2841
+ msgstr ""
2842
+
2843
+ #: includes/classes/class.query-log.php:1666
2844
+ msgid "Product Review (WooCommerce)"
2845
+ msgstr ""
2846
+
2847
+ #: includes/classes/class.query-log.php:1669
2848
+ msgid "Store Purchase (MarketPress)"
2849
+ msgstr ""
2850
+
2851
+ #: includes/classes/class.query-log.php:1670
2852
+ msgid "Store Reward (MarketPress)"
2853
+ msgstr ""
2854
+
2855
+ #: includes/classes/class.query-log.php:1673
2856
+ msgid "Store Purchase (WP E-Commerce)"
2857
+ msgstr ""
2858
+
2859
+ #: includes/classes/class.query-log.php:1679
2860
+ msgid "Event Payment (Event Espresso)"
2861
+ msgstr ""
2862
+
2863
+ #: includes/classes/class.query-log.php:1680
2864
+ msgid "Event Sale (Event Espresso)"
2865
+ msgstr ""
2866
+
2867
+ #: includes/classes/class.query-log.php:1684
2868
+ msgid "Event Payment (Events Manager)"
2869
+ msgstr ""
2870
+
2871
+ #: includes/classes/class.query-log.php:1685
2872
+ msgid "Event Sale (Events Manager)"
2873
+ msgstr ""
2874
+
2875
+ #: includes/classes/class.query-log.php:1689
2876
+ msgid "Content Purchase"
2877
+ msgstr ""
2878
+
2879
+ #: includes/classes/class.query-log.php:1690
2880
+ msgid "Content Sale"
2881
+ msgstr ""
2882
+
2883
+ #: includes/classes/class.query-log.php:1694
2884
+ #: addons/transfer/myCRED-addon-transfer.php:48
2885
+ msgid "Transfer"
2886
+ msgstr ""
2887
+
2888
+ #: includes/classes/class.query-log.php:1698
2889
+ msgid "Manual Adjustment by Admin"
2890
+ msgstr ""
2891
+
2892
+ #: addons/banking/myCRED-addon-banking.php:45
2893
+ #: addons/banking/myCRED-addon-banking.php:46
2894
+ #: addons/banking/myCRED-addon-banking.php:47
2895
+ msgid "Banking"
2896
+ msgstr ""
2897
+
2898
+ #: addons/banking/myCRED-addon-banking.php:141
2899
+ msgid "Central Banking"
2900
+ msgstr ""
2901
+
2902
+ #: addons/banking/myCRED-addon-banking.php:142
2903
+ msgid ""
2904
+ "Instead of creating %_plural% out of thin-air, all payouts are made from a "
2905
+ "nominated \"Central Bank\" account. Any %_plural% a user spends or loses are "
2906
+ "deposited back into this account. If the central bank runs out of %_plural%, "
2907
+ "no %_plural% will be paid out."
2908
+ msgstr ""
2909
+
2910
+ #: addons/banking/myCRED-addon-banking.php:151
2911
+ msgid ""
2912
+ "Offer your users interest on the %_plural% they earn on your website. The "
2913
+ "interest is compounded daily."
2914
+ msgstr ""
2915
+
2916
+ #: addons/banking/myCRED-addon-banking.php:159
2917
+ msgid "Recurring Payouts"
2918
+ msgstr ""
2919
+
2920
+ #: addons/banking/myCRED-addon-banking.php:160
2921
+ msgid "Setup mass %_singular% payouts for your users."
2922
+ msgstr ""
2923
+
2924
+ #: addons/banking/myCRED-addon-banking.php:202
2925
+ msgid "New Recurring Payout"
2926
+ msgstr ""
2927
+
2928
+ #: addons/banking/myCRED-addon-banking.php:203
2929
+ msgid "Edit Recurring Payout"
2930
+ msgstr ""
2931
+
2932
+ #: addons/banking/myCRED-addon-banking.php:205
2933
+ msgid "Please fill out all required fields that are highlighted in red."
2934
+ msgstr ""
2935
+
2936
+ #: addons/banking/myCRED-addon-banking.php:206
2937
+ msgid "Are you sure you want to remove this schedule? This can not be undone!"
2938
+ msgstr ""
2939
+
2940
+ #: addons/banking/myCRED-addon-banking.php:253
2941
+ msgid "%s Banking"
2942
+ msgstr ""
2943
+
2944
+ #: addons/banking/myCRED-addon-banking.php:271
2945
+ msgid "Warning"
2946
+ msgstr ""
2947
+
2948
+ #: addons/banking/myCRED-addon-banking.php:271
2949
+ msgid ""
2950
+ "This banking service uses the WordPress CRON to schedule events. If the "
2951
+ "WordPress CRON is disabled, this service will not work correctly."
2952
+ msgstr ""
2953
+
2954
+ #: addons/banking/myCRED-addon-banking.php:273
2955
+ #: addons/buy-creds/modules/buycred-module-core.php:581
2956
+ msgid "Enable"
2957
+ msgstr ""
2958
+
2959
+ #: addons/banking/myCRED-addon-banking.php:292
2960
+ msgid "Update Changes"
2961
+ msgstr ""
2962
+
2963
+ #: addons/transfer/myCRED-addon-transfer.php:41
2964
+ msgid "You do not have enough %plural% to send."
2965
+ msgstr ""
2966
+
2967
+ #: addons/transfer/myCRED-addon-transfer.php:42
2968
+ msgid "You have exceeded your %limit% transfer limit."
2969
+ msgstr ""
2970
+
2971
+ #: addons/transfer/myCRED-addon-transfer.php:146
2972
+ msgid "Transaction completed."
2973
+ msgstr ""
2974
+
2975
+ #: addons/transfer/myCRED-addon-transfer.php:147
2976
+ msgid ""
2977
+ "Security token could not be verified. Please contact your site administrator!"
2978
+ msgstr ""
2979
+
2980
+ #: addons/transfer/myCRED-addon-transfer.php:148
2981
+ #: addons/transfer/myCRED-addon-transfer.php:155
2982
+ msgid "Communications error. Please try again later."
2983
+ msgstr ""
2984
+
2985
+ #: addons/transfer/myCRED-addon-transfer.php:149
2986
+ msgid "Recipient not found. Please try again."
2987
+ msgstr ""
2988
+
2989
+ #: addons/transfer/myCRED-addon-transfer.php:150
2990
+ msgid "Transaction declined by recipient."
2991
+ msgstr ""
2992
+
2993
+ #: addons/transfer/myCRED-addon-transfer.php:151
2994
+ msgid "Incorrect amount. Please try again."
2995
+ msgstr ""
2996
+
2997
+ #: addons/transfer/myCRED-addon-transfer.php:152
2998
+ msgid ""
2999
+ "This myCRED Add-on has not yet been setup! No transfers are allowed until "
3000
+ "this has been done!"
3001
+ msgstr ""
3002
+
3003
+ #: addons/transfer/myCRED-addon-transfer.php:154
3004
+ msgid "Transfer Limit exceeded."
3005
+ msgstr ""
3006
+
3007
+ #: addons/transfer/myCRED-addon-transfer.php:156
3008
+ msgid "The selected point type can not be transferred."
3009
+ msgstr ""
3010
+
3011
+ #: addons/transfer/myCRED-addon-transfer.php:360
3012
+ msgid "No limits."
3013
+ msgstr ""
3014
+
3015
+ #: addons/transfer/myCRED-addon-transfer.php:361
3016
+ msgid "Impose daily limit."
3017
+ msgstr ""
3018
+
3019
+ #: addons/transfer/myCRED-addon-transfer.php:362
3020
+ msgid "Impose weekly limit."
3021
+ msgstr ""
3022
+
3023
+ #: addons/transfer/myCRED-addon-transfer.php:369
3024
+ msgid "User Login (user_login)"
3025
+ msgstr ""
3026
+
3027
+ #: addons/transfer/myCRED-addon-transfer.php:370
3028
+ msgid "User Email (user_email)"
3029
+ msgstr ""
3030
+
3031
+ #: addons/transfer/myCRED-addon-transfer.php:378
3032
+ msgid "Transfers"
3033
+ msgstr ""
3034
+
3035
+ #: addons/transfer/myCRED-addon-transfer.php:388
3036
+ msgid "Select the point types that users can transfer."
3037
+ msgstr ""
3038
+
3039
+ #: addons/transfer/myCRED-addon-transfer.php:398
3040
+ msgid "Log template for sending"
3041
+ msgstr ""
3042
+
3043
+ #: addons/transfer/myCRED-addon-transfer.php:405
3044
+ msgid "Log template for receiving"
3045
+ msgstr ""
3046
+
3047
+ #: addons/transfer/myCRED-addon-transfer.php:412
3048
+ msgid "Autofill Recipient"
3049
+ msgstr ""
3050
+
3051
+ #: addons/transfer/myCRED-addon-transfer.php:426
3052
+ msgid "Select what user details recipients should be autofilled by."
3053
+ msgstr ""
3054
+
3055
+ #: addons/transfer/myCRED-addon-transfer.php:429
3056
+ msgid "Reload"
3057
+ msgstr ""
3058
+
3059
+ #: addons/transfer/myCRED-addon-transfer.php:432
3060
+ msgid "Reload page on successful transfers."
3061
+ msgstr ""
3062
+
3063
+ #: addons/transfer/myCRED-addon-transfer.php:435
3064
+ #: addons/coupons/myCRED-addon-coupons.php:250
3065
+ #: addons/banking/services/mycred-service-payouts.php:599
3066
+ #: addons/banking/services/mycred-service-payouts.php:760
3067
+ msgid "Limits"
3068
+ msgstr ""
3069
+
3070
+ #: addons/transfer/myCRED-addon-transfer.php:456
3071
+ msgid "Limit Amount"
3072
+ msgstr ""
3073
+
3074
+ #: addons/transfer/myCRED-addon-transfer.php:460
3075
+ #: addons/sell-content/myCRED-addon-sell-content.php:553
3076
+ #: addons/gateway/event-booking/mycred-eventespresso3.php:525
3077
+ msgid "Templates"
3078
+ msgstr ""
3079
+
3080
+ #: addons/transfer/myCRED-addon-transfer.php:463
3081
+ #: addons/sell-content/myCRED-addon-sell-content.php:573
3082
+ #: addons/gateway/event-booking/mycred-eventespresso3.php:538
3083
+ #: addons/gateway/carts/mycred-wpecommerce.php:411
3084
+ msgid "Visitors"
3085
+ msgstr ""
3086
+
3087
+ #: addons/transfer/myCRED-addon-transfer.php:464
3088
+ msgid ""
3089
+ "The template to use when the transfer shortcode or widget is viewed by "
3090
+ "someone who is not logged in."
3091
+ msgstr ""
3092
+
3093
+ #: addons/transfer/myCRED-addon-transfer.php:479
3094
+ msgid ""
3095
+ "The template to use if you select to show the transfer limit in the transfer "
3096
+ "shortcode or widget. Ignored if there is no limit enforced."
3097
+ msgstr ""
3098
+
3099
+ #: addons/transfer/myCRED-addon-transfer.php:496
3100
+ msgid ""
3101
+ "The template to use if you select to show the users balance in the transfer "
3102
+ "shortcode or widget. Ignored if balances are not shown."
3103
+ msgstr ""
3104
+
3105
+ #: addons/transfer/myCRED-addon-transfer.php:512
3106
+ msgid "Default Button Label"
3107
+ msgstr ""
3108
+
3109
+ #: addons/transfer/myCRED-addon-transfer.php:514
3110
+ msgid ""
3111
+ "The default transfer button label. You can override this in the shortcode or "
3112
+ "widget if needed."
3113
+ msgstr ""
3114
+
3115
+ #: addons/transfer/myCRED-addon-transfer.php:517
3116
+ msgid "Insufficient Funds Warning"
3117
+ msgstr ""
3118
+
3119
+ #: addons/transfer/myCRED-addon-transfer.php:521
3120
+ msgid "Message to show the user if they try to send more then they can afford."
3121
+ msgstr ""
3122
+
3123
+ #: addons/transfer/myCRED-addon-transfer.php:524
3124
+ msgid "Limit Reached Warning"
3125
+ msgstr ""
3126
+
3127
+ #: addons/transfer/myCRED-addon-transfer.php:528
3128
+ msgid ""
3129
+ "Message to show the user once they reach their transfer limit. Ignored if no "
3130
+ "limits are enforced."
3131
+ msgstr ""
3132
+
3133
+ #: addons/ranks/myCRED-addon-ranks.php:216
3134
+ msgid "Ranks for %s"
3135
+ msgstr ""
3136
+
3137
+ #: addons/ranks/myCRED-addon-ranks.php:218
3138
+ #: addons/ranks/myCRED-addon-ranks.php:227
3139
+ #: addons/ranks/myCRED-addon-ranks.php:237
3140
+ #: addons/ranks/myCRED-addon-ranks.php:339
3141
+ #: addons/ranks/myCRED-addon-ranks.php:340
3142
+ #: addons/ranks/myCRED-addon-ranks.php:724
3143
+ #: addons/ranks/myCRED-addon-ranks.php:1358
3144
+ #: addons/ranks/myCRED-addon-ranks.php:1648
3145
+ msgid "Ranks"
3146
+ msgstr ""
3147
+
3148
+ #: addons/ranks/myCRED-addon-ranks.php:222
3149
+ #: addons/ranks/myCRED-addon-ranks.php:724
3150
+ #: addons/ranks/myCRED-addon-ranks.php:873
3151
+ #: addons/ranks/myCRED-addon-ranks.php:876
3152
+ #: addons/ranks/myCRED-addon-ranks.php:904
3153
+ msgid "Rank"
3154
+ msgstr ""
3155
+
3156
+ #: addons/ranks/myCRED-addon-ranks.php:223
3157
+ #: addons/ranks/myCRED-addon-ranks.php:224
3158
+ #: addons/email-notices/myCRED-addon-email-notices.php:126
3159
+ #: addons/email-notices/myCRED-addon-email-notices.php:127
3160
+ #: addons/badges/myCRED-addon-badges.php:150
3161
+ #: addons/badges/myCRED-addon-badges.php:151
3162
+ #: addons/banking/services/mycred-service-payouts.php:896
3163
+ msgid "Add New"
3164
+ msgstr ""
3165
+
3166
+ #: addons/ranks/myCRED-addon-ranks.php:225
3167
+ msgid "Edit Rank"
3168
+ msgstr ""
3169
+
3170
+ #: addons/ranks/myCRED-addon-ranks.php:226
3171
+ msgid "New Rank"
3172
+ msgstr ""
3173
+
3174
+ #: addons/ranks/myCRED-addon-ranks.php:228
3175
+ msgid "View Rank"
3176
+ msgstr ""
3177
+
3178
+ #: addons/ranks/myCRED-addon-ranks.php:229
3179
+ msgid "Search Ranks"
3180
+ msgstr ""
3181
+
3182
+ #: addons/ranks/myCRED-addon-ranks.php:230
3183
+ #: addons/ranks/myCRED-addon-ranks.php:1368
3184
+ msgid "Rank Logo"
3185
+ msgstr ""
3186
+
3187
+ #: addons/ranks/myCRED-addon-ranks.php:231
3188
+ msgid "Set rank logo"
3189
+ msgstr ""
3190
+
3191
+ #: addons/ranks/myCRED-addon-ranks.php:232
3192
+ msgid "Remove rank logo"
3193
+ msgstr ""
3194
+
3195
+ #: addons/ranks/myCRED-addon-ranks.php:233
3196
+ msgid "Use as Logo"
3197
+ msgstr ""
3198
+
3199
+ #: addons/ranks/myCRED-addon-ranks.php:234
3200
+ #: addons/ranks/myCRED-addon-ranks.php:1285
3201
+ msgid "No ranks found"
3202
+ msgstr ""
3203
+
3204
+ #: addons/ranks/myCRED-addon-ranks.php:235
3205
+ msgid "No ranks found in Trash"
3206
+ msgstr ""
3207
+
3208
+ #: addons/ranks/myCRED-addon-ranks.php:283
3209
+ #: addons/ranks/myCRED-addon-ranks.php:284
3210
+ #: addons/ranks/myCRED-addon-ranks.php:285
3211
+ #: addons/ranks/myCRED-addon-ranks.php:286
3212
+ #: addons/ranks/myCRED-addon-ranks.php:287
3213
+ #: addons/ranks/myCRED-addon-ranks.php:290
3214
+ #: addons/ranks/myCRED-addon-ranks.php:291
3215
+ msgid "Rank Updated."
3216
+ msgstr ""
3217
+
3218
+ #: addons/ranks/myCRED-addon-ranks.php:288
3219
+ msgid "Rank Enabled."
3220
+ msgstr ""
3221
+
3222
+ #: addons/ranks/myCRED-addon-ranks.php:289
3223
+ msgid "Rank Saved."
3224
+ msgstr ""
3225
+
3226
+ #: addons/ranks/myCRED-addon-ranks.php:481
3227
+ msgid "Completed - Total of %d users effected"
3228
+ msgstr ""
3229
+
3230
+ #: addons/ranks/myCRED-addon-ranks.php:895
3231
+ msgid "No ranks exists."
3232
+ msgstr ""
3233
+
3234
+ #: addons/ranks/myCRED-addon-ranks.php:987
3235
+ msgid "Warning! All ranks will be deleted! This can not be undone!"
3236
+ msgstr ""
3237
+
3238
+ #: addons/ranks/myCRED-addon-ranks.php:988
3239
+ msgid "Are you sure you want to re-assign user ranks?"
3240
+ msgstr ""
3241
+
3242
+ #: addons/ranks/myCRED-addon-ranks.php:1073
3243
+ #: addons/ranks/myCRED-addon-ranks.php:1174
3244
+ msgid "Rank Title"
3245
+ msgstr ""
3246
+
3247
+ #: addons/ranks/myCRED-addon-ranks.php:1074
3248
+ msgid "Logo"
3249
+ msgstr ""
3250
+
3251
+ #: addons/ranks/myCRED-addon-ranks.php:1075
3252
+ #: addons/badges/myCRED-addon-badges.php:828
3253
+ #: addons/badges/myCRED-addon-badges.php:829
3254
+ msgid "Requirement"
3255
+ msgstr ""
3256
+
3257
+ #: addons/ranks/myCRED-addon-ranks.php:1101
3258
+ msgid "No Logo Set"
3259
+ msgstr ""
3260
+
3261
+ #: addons/ranks/myCRED-addon-ranks.php:1116
3262
+ #: addons/ranks/myCRED-addon-ranks.php:1121
3263
+ msgid "Any Value"
3264
+ msgstr ""
3265
+
3266
+ #: addons/ranks/myCRED-addon-ranks.php:1118
3267
+ #: addons/buy-creds/modules/buycred-module-core.php:327
3268
+ msgid "Minimum %plural%"
3269
+ msgstr ""
3270
+
3271
+ #: addons/ranks/myCRED-addon-ranks.php:1123
3272
+ msgid "Maximum %plural%"
3273
+ msgstr ""
3274
+
3275
+ #: addons/ranks/myCRED-addon-ranks.php:1189
3276
+ msgid "Rank Setup"
3277
+ msgstr ""
3278
+
3279
+ #: addons/ranks/myCRED-addon-ranks.php:1230
3280
+ msgid "Minimum Balance Requirement"
3281
+ msgstr ""
3282
+
3283
+ #: addons/ranks/myCRED-addon-ranks.php:1236
3284
+ msgid "Maximum Balance Requirement"
3285
+ msgstr ""
3286
+
3287
+ #: addons/ranks/myCRED-addon-ranks.php:1274
3288
+ #: addons/ranks/myCRED-addon-ranks.php:1275
3289
+ msgid "Not Set"
3290
+ msgstr ""
3291
+
3292
+ #: addons/ranks/myCRED-addon-ranks.php:1363
3293
+ msgid "Rank Features"
3294
+ msgstr ""
3295
+
3296
+ #: addons/ranks/myCRED-addon-ranks.php:1367
3297
+ msgid "%plural% requirement"
3298
+ msgstr ""
3299
+
3300
+ #: addons/ranks/myCRED-addon-ranks.php:1370
3301
+ msgid "Content"
3302
+ msgstr ""
3303
+
3304
+ #: addons/ranks/myCRED-addon-ranks.php:1372
3305
+ msgid "Excerpt"
3306
+ msgstr ""
3307
+
3308
+ #: addons/ranks/myCRED-addon-ranks.php:1374
3309
+ msgid "Comments"
3310
+ msgstr ""
3311
+
3312
+ #: addons/ranks/myCRED-addon-ranks.php:1376
3313
+ msgid "Page Attributes"
3314
+ msgstr ""
3315
+
3316
+ #: addons/ranks/myCRED-addon-ranks.php:1378
3317
+ msgid "Custom Fields"
3318
+ msgstr ""
3319
+
3320
+ #: addons/ranks/myCRED-addon-ranks.php:1382
3321
+ msgid "Public"
3322
+ msgstr ""
3323
+
3324
+ #: addons/ranks/myCRED-addon-ranks.php:1386
3325
+ msgid ""
3326
+ "If you want to create a template archive for each rank, you must select to "
3327
+ "have ranks public. Defaults to disabled."
3328
+ msgstr ""
3329
+
3330
+ #: addons/ranks/myCRED-addon-ranks.php:1389
3331
+ msgid "Archive URL"
3332
+ msgstr ""
3333
+
3334
+ #: addons/ranks/myCRED-addon-ranks.php:1393
3335
+ msgid "Ignored if Ranks are not public"
3336
+ msgstr ""
3337
+
3338
+ #: addons/ranks/myCRED-addon-ranks.php:1396
3339
+ msgid "Display Order"
3340
+ msgstr ""
3341
+
3342
+ #: addons/ranks/myCRED-addon-ranks.php:1404
3343
+ msgid "Ascending - Lowest rank to highest"
3344
+ msgstr ""
3345
+
3346
+ #: addons/ranks/myCRED-addon-ranks.php:1405
3347
+ msgid "Descending - Highest rank to lowest"
3348
+ msgstr ""
3349
+
3350
+ #: addons/ranks/myCRED-addon-ranks.php:1416
3351
+ msgid ""
3352
+ "Select in what order ranks should be displayed in your admin area and/or "
3353
+ "front if ranks are \"Public\""
3354
+ msgstr ""
3355
+
3356
+ #: addons/ranks/myCRED-addon-ranks.php:1422
3357
+ msgid "Rank Basis"
3358
+ msgstr ""
3359
+
3360
+ #: addons/ranks/myCRED-addon-ranks.php:1425
3361
+ msgid "Users are ranked according to their current balance."
3362
+ msgstr ""
3363
+
3364
+ #: addons/ranks/myCRED-addon-ranks.php:1428
3365
+ msgid ""
3366
+ "Users are ranked according to the total amount of %_plural% they have "
3367
+ "accumulated."
3368
+ msgstr ""
3369
+
3370
+ #: addons/ranks/myCRED-addon-ranks.php:1432
3371
+ #: addons/ranks/myCRED-addon-ranks.php:1437
3372
+ msgid "Calculate Totals"
3373
+ msgstr ""
3374
+
3375
+ #: addons/ranks/myCRED-addon-ranks.php:1435
3376
+ msgid ""
3377
+ "Use this button to calculate or recalculate your users totals. If not used, "
3378
+ "the users current balance will be used as a starting point."
3379
+ msgstr ""
3380
+
3381
+ #: addons/ranks/myCRED-addon-ranks.php:1435
3382
+ msgid ""
3383
+ "Once a users total has been calculated, they will be assigned to their "
3384
+ "appropriate roles. For this reason, it is highly recommended that you first "
3385
+ "setup your ranks!"
3386
+ msgstr ""
3387
+
3388
+ #: addons/ranks/myCRED-addon-ranks.php:1436
3389
+ msgid ""
3390
+ "Depending on your log size and number of users this process may take a while."
3391
+ " Please do not leave, click \"Update Settings\" or re-fresh this page until "
3392
+ "this is completed!"
3393
+ msgstr ""
3394
+
3395
+ #: addons/ranks/myCRED-addon-ranks.php:1454
3396
+ msgid "Include in Profile Header."
3397
+ msgstr ""
3398
+
3399
+ #: addons/ranks/myCRED-addon-ranks.php:1456
3400
+ msgid "Include under the \"Profile\" tab and Profile Header."
3401
+ msgstr ""
3402
+
3403
+ #: addons/ranks/myCRED-addon-ranks.php:1460
3404
+ msgid "Rank in BuddyPress"
3405
+ msgstr ""
3406
+
3407
+ #: addons/ranks/myCRED-addon-ranks.php:1477
3408
+ #: addons/ranks/myCRED-addon-ranks.php:1522
3409
+ msgid ""
3410
+ "Template to use when showing a users Rank in BuddyPress. Use %rank_title% "
3411
+ "for the title and %rank_logo% to show the rank logo. HTML is allowed."
3412
+ msgstr ""
3413
+
3414
+ #: addons/ranks/myCRED-addon-ranks.php:1499
3415
+ msgid "Include in Topic Replies"
3416
+ msgstr ""
3417
+
3418
+ #: addons/ranks/myCRED-addon-ranks.php:1500
3419
+ #: addons/badges/myCRED-addon-badges.php:1183
3420
+ msgid "Include in Profile"
3421
+ msgstr ""
3422
+
3423
+ #: addons/ranks/myCRED-addon-ranks.php:1501
3424
+ msgid "Include in Topic Replies and Profile"
3425
+ msgstr ""
3426
+
3427
+ #: addons/ranks/myCRED-addon-ranks.php:1505
3428
+ msgid "Rank in bbPress"
3429
+ msgstr ""
3430
+
3431
+ #: addons/ranks/myCRED-addon-ranks.php:1584
3432
+ msgid "Script Communication Error"
3433
+ msgstr ""
3434
+
3435
+ #: addons/ranks/myCRED-addon-ranks.php:1651
3436
+ msgid "User Meta Key"
3437
+ msgstr ""
3438
+
3439
+ #: addons/ranks/myCRED-addon-ranks.php:1655
3440
+ msgid "No. of ranks"
3441
+ msgstr ""
3442
+
3443
+ #: addons/ranks/myCRED-addon-ranks.php:1660
3444
+ msgid "Remove All Ranks"
3445
+ msgstr ""
3446
+
3447
+ #: addons/ranks/myCRED-addon-ranks.php:1660
3448
+ msgid "Assign Ranks to Users"
3449
+ msgstr ""
3450
+
3451
+ #: addons/notifications/myCRED-addon-notifications.php:191
3452
+ msgid "Notifications"
3453
+ msgstr ""
3454
+
3455
+ #: addons/notifications/myCRED-addon-notifications.php:193
3456
+ msgid "Styling"
3457
+ msgstr ""
3458
+
3459
+ #: addons/notifications/myCRED-addon-notifications.php:196
3460
+ msgid "Use the included CSS Styling for notifications."
3461
+ msgstr ""
3462
+
3463
+ #: addons/notifications/myCRED-addon-notifications.php:203
3464
+ msgid ""
3465
+ "Use %entry% to show the log entry in the notice and %amount% for the amount."
3466
+ msgstr ""
3467
+
3468
+ #: addons/notifications/myCRED-addon-notifications.php:203
3469
+ msgid "Restore to default"
3470
+ msgstr ""
3471
+
3472
+ #: addons/notifications/myCRED-addon-notifications.php:206
3473
+ msgid "Transient Lifespan"
3474
+ msgstr ""
3475
+
3476
+ #: addons/notifications/myCRED-addon-notifications.php:210
3477
+ msgid ""
3478
+ "The number of days a users notification is saved before being automatically "
3479
+ "deleted."
3480
+ msgstr ""
3481
+
3482
+ #: addons/notifications/myCRED-addon-notifications.php:213
3483
+ msgid "Duration"
3484
+ msgstr ""
3485
+
3486
+ #: addons/notifications/myCRED-addon-notifications.php:217
3487
+ msgid ""
3488
+ "Number of seconds before a notice is automatically removed after being shown "
3489
+ "to user. Use zero to disable."
3490
+ msgstr ""
3491
+
3492
+ #: addons/email-notices/myCRED-addon-email-notices.php:124
3493
+ #: addons/email-notices/myCRED-addon-email-notices.php:130
3494
+ #: addons/email-notices/myCRED-addon-email-notices.php:136
3495
+ #: addons/email-notices/myCRED-addon-email-notices.php:192
3496
+ #: addons/email-notices/myCRED-addon-email-notices.php:193
3497
+ msgid "Email Notifications"
3498
+ msgstr ""
3499
+
3500
+ #: addons/email-notices/myCRED-addon-email-notices.php:125
3501
+ msgid "Email Notification"
3502
+ msgstr ""
3503
+
3504
+ #: addons/email-notices/myCRED-addon-email-notices.php:128
3505
+ msgid "Edit Email Notification"
3506
+ msgstr ""
3507
+
3508
+ #: addons/email-notices/myCRED-addon-email-notices.php:129
3509
+ msgid "New Email Notification"
3510
+ msgstr ""
3511
+
3512
+ #: addons/email-notices/myCRED-addon-email-notices.php:132
3513
+ msgid "Search Email Notifications"
3514
+ msgstr ""
3515
+
3516
+ #: addons/email-notices/myCRED-addon-email-notices.php:133
3517
+ msgid "No email notifications found"
3518
+ msgstr ""
3519
+
3520
+ #: addons/email-notices/myCRED-addon-email-notices.php:134
3521
+ msgid "No email notifications found in Trash"
3522
+ msgstr ""
3523
+
3524
+ #: addons/email-notices/myCRED-addon-email-notices.php:167
3525
+ #: addons/email-notices/myCRED-addon-email-notices.php:168
3526
+ #: addons/email-notices/myCRED-addon-email-notices.php:169
3527
+ #: addons/email-notices/myCRED-addon-email-notices.php:170
3528
+ #: addons/email-notices/myCRED-addon-email-notices.php:173
3529
+ #: addons/email-notices/myCRED-addon-email-notices.php:174
3530
+ #: addons/email-notices/myCRED-addon-email-notices.php:175
3531
+ #: addons/email-notices/myCRED-addon-email-notices.php:176
3532
+ msgid "Email Notice Updated."
3533
+ msgstr ""
3534
+
3535
+ #: addons/email-notices/myCRED-addon-email-notices.php:172
3536
+ msgid "Email Notice Activated."
3537
+ msgstr ""
3538
+
3539
+ #: addons/email-notices/myCRED-addon-email-notices.php:254
3540
+ #: addons/email-notices/myCRED-addon-email-notices.php:271
3541
+ msgid "Email Subject"
3542
+ msgstr ""
3543
+
3544
+ #: addons/email-notices/myCRED-addon-email-notices.php:272
3545
+ #: addons/sell-content/myCRED-addon-sell-content.php:493
3546
+ #: addons/banking/services/mycred-service-payouts.php:565
3547
+ #: addons/banking/services/mycred-service-payouts.php:880
3548
+ msgid "Status"
3549
+ msgstr ""
3550
+
3551
+ #: addons/email-notices/myCRED-addon-email-notices.php:298
3552
+ msgid "Not Active"
3553
+ msgstr ""
3554
+
3555
+ #: addons/email-notices/myCRED-addon-email-notices.php:301
3556
+ msgid "Scheduled:<br /><strong>%1$s</strong>"
3557
+ msgstr ""
3558
+
3559
+ #: addons/email-notices/myCRED-addon-email-notices.php:306
3560
+ #: addons/banking/services/mycred-service-payouts.php:31
3561
+ msgid "Active"
3562
+ msgstr ""
3563
+
3564
+ #: addons/email-notices/myCRED-addon-email-notices.php:308
3565
+ msgid "Active - Last run:<br /><strong>%1$s</strong>"
3566
+ msgstr ""
3567
+
3568
+ #: addons/email-notices/myCRED-addon-email-notices.php:321
3569
+ msgid "Email is sent when"
3570
+ msgstr ""
3571
+
3572
+ #: addons/email-notices/myCRED-addon-email-notices.php:323
3573
+ msgid "Missing instance for this notice!"
3574
+ msgstr ""
3575
+
3576
+ #: addons/email-notices/myCRED-addon-email-notices.php:332
3577
+ #: addons/email-notices/myCRED-addon-email-notices.php:334
3578
+ #: addons/email-notices/myCRED-addon-email-notices.php:336
3579
+ msgid "Sent To"
3580
+ msgstr ""
3581
+
3582
+ #: addons/email-notices/myCRED-addon-email-notices.php:334
3583
+ #: addons/email-notices/myCRED-addon-email-notices.php:568
3584
+ msgid "Administrator"
3585
+ msgstr ""
3586
+
3587
+ #: addons/email-notices/myCRED-addon-email-notices.php:336
3588
+ msgid "Both Administrator and User"
3589
+ msgstr ""
3590
+
3591
+ #: addons/email-notices/myCRED-addon-email-notices.php:347
3592
+ #: addons/email-notices/myCRED-addon-email-notices.php:588
3593
+ msgid "All types"
3594
+ msgstr ""
3595
+
3596
+ #: addons/email-notices/myCRED-addon-email-notices.php:384
3597
+ #: addons/email-notices/myCRED-addon-email-notices.php:1400
3598
+ msgid "Email Settings"
3599
+ msgstr ""
3600
+
3601
+ #: addons/email-notices/myCRED-addon-email-notices.php:393
3602
+ msgid "Available Template Tags"
3603
+ msgstr ""
3604
+
3605
+ #: addons/email-notices/myCRED-addon-email-notices.php:404
3606
+ msgid "Email Header"
3607
+ msgstr ""
3608
+
3609
+ #: addons/email-notices/myCRED-addon-email-notices.php:490
3610
+ msgid ""
3611
+ "Once a notice is \"published\" it becomes active! Select \"Save Draft\" if "
3612
+ "you are not yet ready to use this email notice!"
3613
+ msgstr ""
3614
+
3615
+ #: addons/email-notices/myCRED-addon-email-notices.php:492
3616
+ msgid "This notice will become active on:<br /><strong>%1$s</strong>"
3617
+ msgstr ""
3618
+
3619
+ #: addons/email-notices/myCRED-addon-email-notices.php:494
3620
+ msgid "This email notice is active."
3621
+ msgstr ""
3622
+
3623
+ #: addons/email-notices/myCRED-addon-email-notices.php:520
3624
+ msgid "Send this email notice when..."
3625
+ msgstr ""
3626
+
3627
+ #: addons/email-notices/myCRED-addon-email-notices.php:563
3628
+ msgid "Recipient:"
3629
+ msgstr ""
3630
+
3631
+ #: addons/email-notices/myCRED-addon-email-notices.php:571
3632
+ msgid "Both"
3633
+ msgstr ""
3634
+
3635
+ #: addons/email-notices/myCRED-addon-email-notices.php:607
3636
+ #: addons/email-notices/myCRED-addon-email-notices.php:1403
3637
+ msgid "Senders Name:"
3638
+ msgstr ""
3639
+
3640
+ #: addons/email-notices/myCRED-addon-email-notices.php:611
3641
+ #: addons/email-notices/myCRED-addon-email-notices.php:1407
3642
+ msgid "Senders Email:"
3643
+ msgstr ""
3644
+
3645
+ #: addons/email-notices/myCRED-addon-email-notices.php:615
3646
+ msgid "Reply-To Email:"
3647
+ msgstr ""
3648
+
3649
+ #: addons/email-notices/myCRED-addon-email-notices.php:640
3650
+ msgid "CSS Styling"
3651
+ msgstr ""
3652
+
3653
+ #: addons/email-notices/myCRED-addon-email-notices.php:663
3654
+ msgid "Site Related"
3655
+ msgstr ""
3656
+
3657
+ #: addons/email-notices/myCRED-addon-email-notices.php:669
3658
+ msgid "Your websites title"
3659
+ msgstr ""
3660
+
3661
+ #: addons/email-notices/myCRED-addon-email-notices.php:677
3662
+ msgid "Your websites address"
3663
+ msgstr ""
3664
+
3665
+ #: addons/email-notices/myCRED-addon-email-notices.php:685
3666
+ msgid "Your websites tagline (description)"
3667
+ msgstr ""
3668
+
3669
+ #: addons/email-notices/myCRED-addon-email-notices.php:693
3670
+ msgid "Your websites admin email"
3671
+ msgstr ""
3672
+
3673
+ #: addons/email-notices/myCRED-addon-email-notices.php:701
3674
+ msgid "Total number of blog members"
3675
+ msgstr ""
3676
+
3677
+ #: addons/email-notices/myCRED-addon-email-notices.php:706
3678
+ msgid "Instance Related"
3679
+ msgstr ""
3680
+
3681
+ #: addons/email-notices/myCRED-addon-email-notices.php:712
3682
+ msgid "The users new balance"
3683
+ msgstr ""
3684
+
3685
+ #: addons/email-notices/myCRED-addon-email-notices.php:720
3686
+ msgid "The users old balance"
3687
+ msgstr ""
3688
+
3689
+ #: addons/email-notices/myCRED-addon-email-notices.php:728
3690
+ msgid "The amount of points gained or lost in this instance"
3691
+ msgstr ""
3692
+
3693
+ #: addons/email-notices/myCRED-addon-email-notices.php:736
3694
+ msgid "The log entry"
3695
+ msgstr ""
3696
+
3697
+ #: addons/email-notices/myCRED-addon-email-notices.php:741
3698
+ msgid "You can also use %s."
3699
+ msgstr ""
3700
+
3701
+ #: addons/email-notices/myCRED-addon-email-notices.php:741
3702
+ msgid "user related template tags"
3703
+ msgstr ""
3704
+
3705
+ #: addons/email-notices/myCRED-addon-email-notices.php:862
3706
+ msgid "users balance changes"
3707
+ msgstr ""
3708
+
3709
+ #: addons/email-notices/myCRED-addon-email-notices.php:863
3710
+ msgid "user gains %_plural%"
3711
+ msgstr ""
3712
+
3713
+ #: addons/email-notices/myCRED-addon-email-notices.php:864
3714
+ msgid "user lose %_plural%"
3715
+ msgstr ""
3716
+
3717
+ #: addons/email-notices/myCRED-addon-email-notices.php:865
3718
+ msgid "users balance reaches zero"
3719
+ msgstr ""
3720
+
3721
+ #: addons/email-notices/myCRED-addon-email-notices.php:866
3722
+ msgid "users balance goes minus"
3723
+ msgstr ""
3724
+
3725
+ #: addons/email-notices/myCRED-addon-email-notices.php:872
3726
+ msgid "Badge Add-on"
3727
+ msgstr ""
3728
+
3729
+ #: addons/email-notices/myCRED-addon-email-notices.php:873
3730
+ msgid "user gains a badge"
3731
+ msgstr ""
3732
+
3733
+ #: addons/email-notices/myCRED-addon-email-notices.php:880
3734
+ msgid "Sell Content Add-on"
3735
+ msgstr ""
3736
+
3737
+ #: addons/email-notices/myCRED-addon-email-notices.php:881
3738
+ msgid "user buys content"
3739
+ msgstr ""
3740
+
3741
+ #: addons/email-notices/myCRED-addon-email-notices.php:882
3742
+ msgid "authors content gets sold"
3743
+ msgstr ""
3744
+
3745
+ #: addons/email-notices/myCRED-addon-email-notices.php:889
3746
+ msgid "buyCREDs Add-on"
3747
+ msgstr ""
3748
+
3749
+ #: addons/email-notices/myCRED-addon-email-notices.php:890
3750
+ msgid "user buys %_plural%"
3751
+ msgstr ""
3752
+
3753
+ #: addons/email-notices/myCRED-addon-email-notices.php:897
3754
+ msgid "Transfer Add-on"
3755
+ msgstr ""
3756
+
3757
+ #: addons/email-notices/myCRED-addon-email-notices.php:898
3758
+ msgid "user sends %_plural%"
3759
+ msgstr ""
3760
+
3761
+ #: addons/email-notices/myCRED-addon-email-notices.php:899
3762
+ msgid "user receives %_plural%"
3763
+ msgstr ""
3764
+
3765
+ #: addons/email-notices/myCRED-addon-email-notices.php:906
3766
+ msgid "Ranks Add-on"
3767
+ msgstr ""
3768
+
3769
+ #: addons/email-notices/myCRED-addon-email-notices.php:907
3770
+ msgid "user is demoted"
3771
+ msgstr ""
3772
+
3773
+ #: addons/email-notices/myCRED-addon-email-notices.php:908
3774
+ msgid "user is promoted"
3775
+ msgstr ""
3776
+
3777
+ #: addons/email-notices/myCRED-addon-email-notices.php:1337
3778
+ #: addons/coupons/myCRED-addon-coupons.php:112
3779
+ msgid "Email Notices"
3780
+ msgstr ""
3781
+
3782
+ #: addons/email-notices/myCRED-addon-email-notices.php:1339
3783
+ msgid ""
3784
+ "Settings that apply to all email notices and can not be overridden for "
3785
+ "individual emails."
3786
+ msgstr ""
3787
+
3788
+ #: addons/email-notices/myCRED-addon-email-notices.php:1340
3789
+ msgid "Email Format"
3790
+ msgstr ""
3791
+
3792
+ #: addons/email-notices/myCRED-addon-email-notices.php:1343
3793
+ msgid "Plain text emails only."
3794
+ msgstr ""
3795
+
3796
+ #: addons/email-notices/myCRED-addon-email-notices.php:1346
3797
+ msgid "HTML or Plain text emails."
3798
+ msgstr ""
3799
+
3800
+ #: addons/email-notices/myCRED-addon-email-notices.php:1349
3801
+ msgid "Filters"
3802
+ msgstr ""
3803
+
3804
+ #: addons/email-notices/myCRED-addon-email-notices.php:1353
3805
+ msgid ""
3806
+ "Allow WordPress and Third Party Plugins to filter the email subject before "
3807
+ "an email is sent."
3808
+ msgstr ""
3809
+
3810
+ #: addons/email-notices/myCRED-addon-email-notices.php:1357
3811
+ msgid ""
3812
+ "Allow WordPress and Third Party Plugins to filter the email content before "
3813
+ "an email is sent."
3814
+ msgstr ""
3815
+
3816
+ #: addons/email-notices/myCRED-addon-email-notices.php:1363
3817
+ #: addons/email-notices/myCRED-addon-email-notices.php:1370
3818
+ msgid "Email Schedule"
3819
+ msgstr ""
3820
+
3821
+ #: addons/email-notices/myCRED-addon-email-notices.php:1365
3822
+ msgid "WordPress Cron is disabled. Emails will be sent immediately."
3823
+ msgstr ""
3824
+
3825
+ #: addons/email-notices/myCRED-addon-email-notices.php:1374
3826
+ msgid "Send emails immediately"
3827
+ msgstr ""
3828
+
3829
+ #: addons/email-notices/myCRED-addon-email-notices.php:1378
3830
+ msgid "Send emails once an hour"
3831
+ msgstr ""
3832
+
3833
+ #: addons/email-notices/myCRED-addon-email-notices.php:1382
3834
+ msgid "Send emails once a day"
3835
+ msgstr ""
3836
+
3837
+ #: addons/email-notices/myCRED-addon-email-notices.php:1385
3838
+ msgid "Subscriptions"
3839
+ msgstr ""
3840
+
3841
+ #: addons/email-notices/myCRED-addon-email-notices.php:1387
3842
+ msgid ""
3843
+ "Use the %s shortcode to allow users to subscribe / unsubscribe to email "
3844
+ "updates."
3845
+ msgstr ""
3846
+
3847
+ #: addons/email-notices/myCRED-addon-email-notices.php:1392
3848
+ msgid "SMTP Override"
3849
+ msgstr ""
3850
+
3851
+ #: addons/email-notices/myCRED-addon-email-notices.php:1396
3852
+ msgid ""
3853
+ "SMTP Debug. Enable if you are experiencing issues with wp_mail() or if you "
3854
+ "use a SMTP plugin for emails."
3855
+ msgstr ""
3856
+
3857
+ #: addons/email-notices/myCRED-addon-email-notices.php:1399
3858
+ msgid ""
3859
+ "Default email settings. These settings can be individually overridden when "
3860
+ "editing emails."
3861
+ msgstr ""
3862
+
3863
+ #: addons/email-notices/myCRED-addon-email-notices.php:1411
3864
+ msgid "Reply-To:"
3865
+ msgstr ""
3866
+
3867
+ #: addons/email-notices/myCRED-addon-email-notices.php:1415
3868
+ msgid "Default Email Content"
3869
+ msgstr ""
3870
+
3871
+ #: addons/email-notices/myCRED-addon-email-notices.php:1419
3872
+ msgid "Default email content."
3873
+ msgstr ""
3874
+
3875
+ #: addons/email-notices/myCRED-addon-email-notices.php:1422
3876
+ msgid "Default Email Styling"
3877
+ msgstr ""
3878
+
3879
+ #: addons/email-notices/myCRED-addon-email-notices.php:1426
3880
+ msgid "Ignored if HTML is not allowed in emails."
3881
+ msgstr ""
3882
+
3883
+ #: addons/email-notices/myCRED-addon-email-notices.php:1523
3884
+ msgid "Unsubscribe"
3885
+ msgstr ""
3886
+
3887
+ #: addons/email-notices/myCRED-addon-email-notices.php:1524
3888
+ msgid "Email Notice"
3889
+ msgstr ""
3890
+
3891
+ #: addons/email-notices/myCRED-addon-email-notices.php:1545
3892
+ msgid "There are no email notifications yet."
3893
+ msgstr ""
3894
+
3895
+ #: addons/email-notices/myCRED-addon-email-notices.php:1552
3896
+ #: addons/buy-creds/modules/buycred-module-pending.php:506
3897
+ msgid "Save Changes"
3898
+ msgstr ""
3899
+
3900
+ #: addons/stats/myCRED-addon-stats.php:58
3901
+ msgid "Statistics"
3902
+ msgstr ""
3903
+
3904
+ #: addons/stats/myCRED-addon-stats.php:172
3905
+ msgid "Statistics Color"
3906
+ msgstr ""
3907
+
3908
+ #: addons/stats/myCRED-addon-stats.php:176
3909
+ msgid "Positive Values"
3910
+ msgstr ""
3911
+
3912
+ #: addons/stats/myCRED-addon-stats.php:182
3913
+ msgid "Negative Values"
3914
+ msgstr ""
3915
+
3916
+ #: addons/stats/myCRED-addon-stats.php:248
3917
+ msgid "Overview"
3918
+ msgstr ""
3919
+
3920
+ #: addons/stats/myCRED-addon-stats.php:310
3921
+ msgid "Refresh"
3922
+ msgstr ""
3923
+
3924
+ #: addons/stats/myCRED-addon-stats.php:417
3925
+ msgid "Your log is empty. No statistics can be shown."
3926
+ msgstr ""
3927
+
3928
+ #: addons/badges/myCRED-addon-badges.php:148
3929
+ #: addons/badges/myCRED-addon-badges.php:154
3930
+ #: addons/badges/myCRED-addon-badges.php:160
3931
+ #: addons/badges/myCRED-addon-badges.php:295
3932
+ #: addons/badges/myCRED-addon-badges.php:296
3933
+ #: addons/badges/myCRED-addon-badges.php:1134
3934
+ #: addons/badges/myCRED-addon-badges.php:1256
3935
+ #: addons/badges/myCRED-addon-badges.php:1259
3936
+ msgid "Badges"
3937
+ msgstr ""
3938
+
3939
+ #: addons/badges/myCRED-addon-badges.php:149
3940
+ msgid "Badge"
3941
+ msgstr ""
3942
+
3943
+ #: addons/badges/myCRED-addon-badges.php:152
3944
+ msgid "Edit Badge"
3945
+ msgstr ""
3946
+
3947
+ #: addons/badges/myCRED-addon-badges.php:153
3948
+ msgid "New Badge"
3949
+ msgstr ""
3950
+
3951
+ #: addons/badges/myCRED-addon-badges.php:155
3952
+ msgid "View Badge"
3953
+ msgstr ""
3954
+
3955
+ #: addons/badges/myCRED-addon-badges.php:156
3956
+ msgid "Search Badge"
3957
+ msgstr ""
3958
+
3959
+ #: addons/badges/myCRED-addon-badges.php:157
3960
+ msgid "No badges found"
3961
+ msgstr ""
3962
+
3963
+ #: addons/badges/myCRED-addon-badges.php:158
3964
+ msgid "No badges found in Trash"
3965
+ msgstr ""
3966
+
3967
+ #: addons/badges/myCRED-addon-badges.php:270
3968
+ #: addons/badges/myCRED-addon-badges.php:271
3969
+ #: addons/badges/myCRED-addon-badges.php:272
3970
+ #: addons/badges/myCRED-addon-badges.php:273
3971
+ #: addons/badges/myCRED-addon-badges.php:277
3972
+ #: addons/badges/myCRED-addon-badges.php:278
3973
+ #: addons/badges/myCRED-addon-badges.php:279
3974
+ msgid "Badge Updated."
3975
+ msgstr ""
3976
+
3977
+ #: addons/badges/myCRED-addon-badges.php:275
3978
+ msgid "Badge Enabled."
3979
+ msgstr ""
3980
+
3981
+ #: addons/badges/myCRED-addon-badges.php:276
3982
+ msgid "Badge Saved."
3983
+ msgstr ""
3984
+
3985
+ #: addons/badges/myCRED-addon-badges.php:396
3986
+ #: addons/badges/myCRED-addon-badges.php:480
3987
+ msgid "Badge Name"
3988
+ msgstr ""
3989
+
3990
+ #: addons/badges/myCRED-addon-badges.php:397
3991
+ msgid "Default Image"
3992
+ msgstr ""
3993
+
3994
+ #: addons/badges/myCRED-addon-badges.php:398
3995
+ msgid "First Level"
3996
+ msgstr ""
3997
+
3998
+ #: addons/badges/myCRED-addon-badges.php:399
3999
+ msgid "Requirements"
4000
+ msgstr ""
4001
+
4002
+ #: addons/badges/myCRED-addon-badges.php:510
4003
+ #: addons/badges/myCRED-addon-badges.php:801
4004
+ msgid "Add Level"
4005
+ msgstr ""
4006
+
4007
+ #: addons/badges/myCRED-addon-badges.php:511
4008
+ #: addons/badges/myCRED-addon-badges.php:802
4009
+ msgid "Remove Level"
4010
+ msgstr ""
4011
+
4012
+ #: addons/badges/myCRED-addon-badges.php:512
4013
+ #: addons/badges/myCRED-addon-badges.php:755
4014
+ #: addons/badges/myCRED-addon-badges.php:818
4015
+ #: addons/badges/myCRED-addon-badges.php:823
4016
+ msgid "Set Image"
4017
+ msgstr ""
4018
+
4019
+ #: addons/badges/myCRED-addon-badges.php:513
4020
+ #: addons/badges/myCRED-addon-badges.php:755
4021
+ #: addons/badges/myCRED-addon-badges.php:823
4022
+ msgid "Change Image"
4023
+ msgstr ""
4024
+
4025
+ #: addons/badges/myCRED-addon-badges.php:514
4026
+ msgid "Are you sure you want to remove this level?"
4027
+ msgstr ""
4028
+
4029
+ #: addons/badges/myCRED-addon-badges.php:515
4030
+ #: addons/badges/myCRED-addon-badges.php:819
4031
+ #: addons/badges/myCRED-addon-badges.php:1288
4032
+ msgid "Level"
4033
+ msgstr ""
4034
+
4035
+ #: addons/badges/myCRED-addon-badges.php:516
4036
+ msgid "Badge Image"
4037
+ msgstr ""
4038
+
4039
+ #: addons/badges/myCRED-addon-badges.php:517
4040
+ msgid "Use as Badge"
4041
+ msgstr ""
4042
+
4043
+ #: addons/badges/myCRED-addon-badges.php:518
4044
+ #: addons/badges/myCRED-addon-badges.php:921
4045
+ #: addons/badges/includes/mycred-badge-functions.php:271
4046
+ msgctxt "Comparison of badge requirements. A AND B"
4047
+ msgid "AND"
4048
+ msgstr ""
4049
+
4050
+ #: addons/badges/myCRED-addon-badges.php:519
4051
+ #: addons/badges/myCRED-addon-badges.php:921
4052
+ #: addons/badges/includes/mycred-badge-functions.php:269
4053
+ msgctxt "Comparison of badge requirements. A OR B"
4054
+ msgid "OR"
4055
+ msgstr ""
4056
+
4057
+ #: addons/badges/myCRED-addon-badges.php:571
4058
+ msgid "Badge Setup"
4059
+ msgstr ""
4060
+
4061
+ #: addons/badges/myCRED-addon-badges.php:580
4062
+ msgid "Default Badge Image"
4063
+ msgstr ""
4064
+
4065
+ #: addons/badges/myCRED-addon-badges.php:678
4066
+ msgid "Assign Badge"
4067
+ msgstr ""
4068
+
4069
+ #: addons/badges/myCRED-addon-badges.php:679
4070
+ msgid "Remove Connections"
4071
+ msgstr ""
4072
+
4073
+ #: addons/badges/myCRED-addon-badges.php:722
4074
+ #: addons/badges/includes/mycred-badge-functions.php:287
4075
+ msgid "This badge is manually awarded."
4076
+ msgstr ""
4077
+
4078
+ #: addons/badges/myCRED-addon-badges.php:758
4079
+ msgid "Optional image to show when a user has not earned this badge."
4080
+ msgstr ""
4081
+
4082
+ #: addons/badges/myCRED-addon-badges.php:777
4083
+ msgid "Time(s)"
4084
+ msgstr ""
4085
+
4086
+ #: addons/badges/myCRED-addon-badges.php:778
4087
+ msgid "In total"
4088
+ msgstr ""
4089
+
4090
+ #: addons/badges/myCRED-addon-badges.php:825
4091
+ msgid "Level %d"
4092
+ msgstr ""
4093
+
4094
+ #: addons/badges/myCRED-addon-badges.php:849
4095
+ msgid "Select Point Type"
4096
+ msgstr ""
4097
+
4098
+ #: addons/badges/myCRED-addon-badges.php:863
4099
+ msgid "Select Reference"
4100
+ msgstr ""
4101
+
4102
+ #: addons/badges/myCRED-addon-badges.php:939
4103
+ msgid "Reward"
4104
+ msgstr ""
4105
+
4106
+ #: addons/badges/myCRED-addon-badges.php:1163
4107
+ #: addons/badges/myCRED-addon-badges.php:1199
4108
+ msgid "Show all badges, including badges users have not yet earned."
4109
+ msgstr ""
4110
+
4111
+ #: addons/badges/myCRED-addon-badges.php:1184
4112
+ msgid "Include in Forum Replies"
4113
+ msgstr ""
4114
+
4115
+ #: addons/badges/myCRED-addon-badges.php:1185
4116
+ msgid "Include in Profile and Forum Replies"
4117
+ msgstr ""
4118
+
4119
+ #: addons/badges/myCRED-addon-badges.php:1251
4120
+ msgid "No image set"
4121
+ msgstr ""
4122
+
4123
+ #: addons/badges/myCRED-addon-badges.php:1283
4124
+ msgid "Select a level"
4125
+ msgstr ""
4126
+
4127
+ #: addons/badges/myCRED-addon-badges.php:1297
4128
+ msgid "Earned"
4129
+ msgstr ""
4130
+
4131
+ #: addons/badges/myCRED-addon-badges.php:1406
4132
+ msgid "A total of %d users have received this badge."
4133
+ msgstr ""
4134
+
4135
+ #: addons/badges/myCRED-addon-badges.php:1408
4136
+ msgid "No users has yet earned this badge."
4137
+ msgstr ""
4138
+
4139
+ #: addons/badges/myCRED-addon-badges.php:1433
4140
+ msgid "No connections where removed."
4141
+ msgstr ""
4142
+
4143
+ #: addons/badges/myCRED-addon-badges.php:1435
4144
+ msgid "%s connections where removed."
4145
+ msgstr ""
4146
+
4147
+ #: addons/coupons/myCRED-addon-coupons.php:100
4148
+ #: addons/coupons/myCRED-addon-coupons.php:106
4149
+ #: addons/coupons/myCRED-addon-coupons.php:168
4150
+ #: addons/coupons/myCRED-addon-coupons.php:169
4151
+ #: addons/coupons/myCRED-addon-coupons.php:659
4152
+ msgid "Coupons"
4153
+ msgstr ""
4154
+
4155
+ #: addons/coupons/myCRED-addon-coupons.php:101
4156
+ msgid "Coupon"
4157
+ msgstr ""
4158
+
4159
+ #: addons/coupons/myCRED-addon-coupons.php:102
4160
+ #: addons/coupons/myCRED-addon-coupons.php:103
4161
+ msgid "Create New"
4162
+ msgstr ""
4163
+
4164
+ #: addons/coupons/myCRED-addon-coupons.php:104
4165
+ msgid "Edit Coupon"
4166
+ msgstr ""
4167
+
4168
+ #: addons/coupons/myCRED-addon-coupons.php:105
4169
+ msgid "New Coupon"
4170
+ msgstr ""
4171
+
4172
+ #: addons/coupons/myCRED-addon-coupons.php:108
4173
+ msgid "Search coupons"
4174
+ msgstr ""
4175
+
4176
+ #: addons/coupons/myCRED-addon-coupons.php:109
4177
+ msgid "No coupons found"
4178
+ msgstr ""
4179
+
4180
+ #: addons/coupons/myCRED-addon-coupons.php:110
4181
+ msgid "No coupons found in Trash"
4182
+ msgstr ""
4183
+
4184
+ #: addons/coupons/myCRED-addon-coupons.php:143
4185
+ #: addons/coupons/myCRED-addon-coupons.php:144
4186
+ #: addons/coupons/myCRED-addon-coupons.php:145
4187
+ #: addons/coupons/myCRED-addon-coupons.php:146
4188
+ #: addons/coupons/myCRED-addon-coupons.php:149
4189
+ #: addons/coupons/myCRED-addon-coupons.php:150
4190
+ #: addons/coupons/myCRED-addon-coupons.php:151
4191
+ #: addons/coupons/myCRED-addon-coupons.php:152
4192
+ msgid "Coupon updated."
4193
+ msgstr ""
4194
+
4195
+ #: addons/coupons/myCRED-addon-coupons.php:148
4196
+ msgid "Coupon published."
4197
+ msgstr ""
4198
+
4199
+ #: addons/coupons/myCRED-addon-coupons.php:230
4200
+ #: addons/coupons/myCRED-addon-coupons.php:247
4201
+ msgid "Coupon Code"
4202
+ msgstr ""
4203
+
4204
+ #: addons/coupons/myCRED-addon-coupons.php:248
4205
+ #: addons/coupons/myCRED-addon-coupons.php:481
4206
+ msgid "Value"
4207
+ msgstr ""
4208
+
4209
+ #: addons/coupons/myCRED-addon-coupons.php:249
4210
+ msgid "Used"
4211
+ msgstr ""
4212
+
4213
+ #: addons/coupons/myCRED-addon-coupons.php:251
4214
+ #: addons/sell-content/includes/mycred-sell-shortcodes.php:188
4215
+ msgid "Expires"
4216
+ msgstr ""
4217
+
4218
+ #: addons/coupons/myCRED-addon-coupons.php:296
4219
+ msgid "1 time"
4220
+ msgid_plural "%d times"
4221
+ msgstr[0] ""
4222
+ msgstr[1] ""
4223
+
4224
+ #: addons/coupons/myCRED-addon-coupons.php:307
4225
+ msgid "Per User"
4226
+ msgstr ""
4227
+
4228
+ #: addons/coupons/myCRED-addon-coupons.php:316
4229
+ #: addons/sell-content/includes/mycred-sell-shortcodes.php:231
4230
+ msgid "Never"
4231
+ msgstr ""
4232
+
4233
+ #: addons/coupons/myCRED-addon-coupons.php:322
4234
+ msgid "Expired"
4235
+ msgstr ""
4236
+
4237
+ #: addons/coupons/myCRED-addon-coupons.php:326
4238
+ msgid "In %s time"
4239
+ msgstr ""
4240
+
4241
+ #: addons/coupons/myCRED-addon-coupons.php:425
4242
+ msgid "Coupon Setup"
4243
+ msgstr ""
4244
+
4245
+ #: addons/coupons/myCRED-addon-coupons.php:434
4246
+ msgid "Coupon Limits"
4247
+ msgstr ""
4248
+
4249
+ #: addons/coupons/myCRED-addon-coupons.php:443
4250
+ msgid "Coupon Requirements"
4251
+ msgstr ""
4252
+
4253
+ #: addons/coupons/myCRED-addon-coupons.php:453
4254
+ msgid "Coupon Usage"
4255
+ msgstr ""
4256
+
4257
+ #: addons/coupons/myCRED-addon-coupons.php:483
4258
+ msgid "The amount of %plural% this coupon is worth."
4259
+ msgstr ""
4260
+
4261
+ #: addons/coupons/myCRED-addon-coupons.php:492
4262
+ msgid "Select the point type that this coupon is applied."
4263
+ msgstr ""
4264
+
4265
+ #: addons/coupons/myCRED-addon-coupons.php:504
4266
+ msgid "Expire"
4267
+ msgstr ""
4268
+
4269
+ #: addons/coupons/myCRED-addon-coupons.php:506
4270
+ msgid ""
4271
+ "Optional date when this coupon expires. Expired coupons will be trashed."
4272
+ msgstr ""
4273
+
4274
+ #: addons/coupons/myCRED-addon-coupons.php:534
4275
+ msgid "Global Maximum"
4276
+ msgstr ""
4277
+
4278
+ #: addons/coupons/myCRED-addon-coupons.php:536
4279
+ msgid "The maximum number of times this coupon can be used."
4280
+ msgstr ""
4281
+
4282
+ #: addons/coupons/myCRED-addon-coupons.php:541
4283
+ msgid "User Maximum"
4284
+ msgstr ""
4285
+
4286
+ #: addons/coupons/myCRED-addon-coupons.php:543
4287
+ msgid "The maximum number of times this coupon can be used by a user."
4288
+ msgstr ""
4289
+
4290
+ #: addons/coupons/myCRED-addon-coupons.php:574
4291
+ #: addons/banking/services/mycred-service-interest.php:499
4292
+ msgid "Minimum Balance"
4293
+ msgstr ""
4294
+
4295
+ #: addons/coupons/myCRED-addon-coupons.php:579
4296
+ msgid ""
4297
+ "Optional minimum balance a user must have in order to use this coupon. Use "
4298
+ "zero to disable."
4299
+ msgstr ""
4300
+
4301
+ #: addons/coupons/myCRED-addon-coupons.php:586
4302
+ msgid "Maximum Balance"
4303
+ msgstr ""
4304
+
4305
+ #: addons/coupons/myCRED-addon-coupons.php:591
4306
+ msgid ""
4307
+ "Optional maximum balance a user can have in order to use this coupon. Use "
4308
+ "zero to disable."
4309
+ msgstr ""
4310
+
4311
+ #: addons/coupons/myCRED-addon-coupons.php:665
4312
+ msgid ""
4313
+ "Log entry for successful coupon redemption. Use %coupon% to show the coupon "
4314
+ "code."
4315
+ msgstr ""
4316
+
4317
+ #: addons/coupons/myCRED-addon-coupons.php:668
4318
+ msgid "Invalid Coupon Message"
4319
+ msgstr ""
4320
+
4321
+ #: addons/coupons/myCRED-addon-coupons.php:672
4322
+ msgid "Message to show when users try to use a coupon that does not exists."
4323
+ msgstr ""
4324
+
4325
+ #: addons/coupons/myCRED-addon-coupons.php:675
4326
+ msgid "Expired Coupon Message"
4327
+ msgstr ""
4328
+
4329
+ #: addons/coupons/myCRED-addon-coupons.php:679
4330
+ msgid "Message to show when users try to use that has expired."
4331
+ msgstr ""
4332
+
4333
+ #: addons/coupons/myCRED-addon-coupons.php:682
4334
+ msgid "User Limit Message"
4335
+ msgstr ""
4336
+
4337
+ #: addons/coupons/myCRED-addon-coupons.php:686
4338
+ msgid "Message to show when the user limit has been reached for the coupon."
4339
+ msgstr ""
4340
+
4341
+ #: addons/coupons/myCRED-addon-coupons.php:689
4342
+ msgid "Minimum Balance Message"
4343
+ msgstr ""
4344
+
4345
+ #: addons/coupons/myCRED-addon-coupons.php:693
4346
+ msgid ""
4347
+ "Message to show when a user does not meet the minimum balance requirement. "
4348
+ "(if used)"
4349
+ msgstr ""
4350
+
4351
+ #: addons/coupons/myCRED-addon-coupons.php:696
4352
+ msgid "Maximum Balance Message"
4353
+ msgstr ""
4354
+
4355
+ #: addons/coupons/myCRED-addon-coupons.php:700
4356
+ msgid ""
4357
+ "Message to show when a user does not meet the maximum balance requirement. "
4358
+ "(if used)"
4359
+ msgstr ""
4360
+
4361
+ #: addons/coupons/myCRED-addon-coupons.php:703
4362
+ msgid "Success Message"
4363
+ msgstr ""
4364
+
4365
+ #: addons/coupons/myCRED-addon-coupons.php:707
4366
+ msgid ""
4367
+ "Message to show when a coupon was successfully deposited to a users account."
4368
+ msgstr ""
4369
+
4370
+ #: addons/sell-content/myCRED-addon-sell-content.php:128
4371
+ msgid "Sell Content Add-on Update Required"
4372
+ msgstr ""
4373
+
4374
+ #: addons/sell-content/myCRED-addon-sell-content.php:129
4375
+ msgid ""
4376
+ "Before continuing to use this add-on you must setup and save your settings."
4377
+ msgstr ""
4378
+
4379
+ #: addons/sell-content/myCRED-addon-sell-content.php:235
4380
+ msgid "Users profit share when their content is purchased."
4381
+ msgstr ""
4382
+
4383
+ #: addons/sell-content/myCRED-addon-sell-content.php:238
4384
+ #: addons/sell-content/myCRED-addon-sell-content.php:241
4385
+ #: addons/sell-content/myCRED-addon-sell-content.php:506
4386
+ msgid "Profit Share"
4387
+ msgstr ""
4388
+
4389
+ #: addons/sell-content/myCRED-addon-sell-content.php:251
4390
+ #: addons/sell-content/myCRED-addon-sell-content.php:266
4391
+ msgctxt "Points Name"
4392
+ msgid "%s Profit Share"
4393
+ msgstr ""
4394
+
4395
+ #: addons/sell-content/myCRED-addon-sell-content.php:254
4396
+ msgid "Not accepted as payment."
4397
+ msgstr ""
4398
+
4399
+ #: addons/sell-content/myCRED-addon-sell-content.php:269
4400
+ msgctxt "Points Name"
4401
+ msgid "User can not pay using %s"
4402
+ msgstr ""
4403
+
4404
+ #: addons/sell-content/myCRED-addon-sell-content.php:281
4405
+ msgctxt "Buying Points"
4406
+ msgid "%s Profit Share"
4407
+ msgstr ""
4408
+
4409
+ #: addons/sell-content/myCRED-addon-sell-content.php:284
4410
+ msgid "Leave empty to use the default."
4411
+ msgstr ""
4412
+
4413
+ #: addons/sell-content/myCRED-addon-sell-content.php:365
4414
+ #: addons/sell-content/myCRED-addon-sell-content.php:830
4415
+ msgid "Sell Content"
4416
+ msgstr ""
4417
+
4418
+ #: addons/sell-content/myCRED-addon-sell-content.php:367
4419
+ msgid "Post Types"
4420
+ msgstr ""
4421
+
4422
+ #: addons/sell-content/myCRED-addon-sell-content.php:369
4423
+ msgid "Select all the post types you want to sell."
4424
+ msgstr ""
4425
+
4426
+ #: addons/sell-content/myCRED-addon-sell-content.php:385
4427
+ msgid "You must select at least one post type to sell."
4428
+ msgstr ""
4429
+
4430
+ #: addons/sell-content/myCRED-addon-sell-content.php:439
4431
+ msgid "Select all the point types accepted as payment."
4432
+ msgstr ""
4433
+
4434
+ #: addons/sell-content/myCRED-addon-sell-content.php:458
4435
+ msgid "You must select at least one point type to accept as payment."
4436
+ msgstr ""
4437
+
4438
+ #: addons/sell-content/myCRED-addon-sell-content.php:497
4439
+ #: addons/sell-content/myCRED-addon-sell-content.php:903
4440
+ #: addons/gateway/event-booking/mycred-eventespresso3.php:495
4441
+ #: addons/gateway/event-booking/mycred-eventsmanager.php:336
4442
+ #: addons/gateway/event-booking/mycred-eventsmanager.php:339
4443
+ #: addons/gateway/event-booking/mycred-eventsmanager-pro.php:153
4444
+ #: addons/gateway/event-booking/mycred-eventsmanager-pro.php:156
4445
+ msgid "Price"
4446
+ msgstr ""
4447
+
4448
+ #: addons/sell-content/myCRED-addon-sell-content.php:501
4449
+ #: addons/sell-content/myCRED-addon-sell-content.php:909
4450
+ msgid "Expiration"
4451
+ msgstr ""
4452
+
4453
+ #: addons/sell-content/myCRED-addon-sell-content.php:502
4454
+ #: addons/sell-content/myCRED-addon-sell-content.php:849
4455
+ #: addons/sell-content/includes/mycred-sell-shortcodes.php:181
4456
+ msgid "Hour(s)"
4457
+ msgstr ""
4458
+
4459
+ #: addons/sell-content/myCRED-addon-sell-content.php:503
4460
+ #: addons/sell-content/myCRED-addon-sell-content.php:508
4461
+ #: addons/banking/services/mycred-service-payouts.php:768
4462
+ #: addons/banking/services/mycred-service-payouts.php:775
4463
+ msgid "Use zero to disable."
4464
+ msgstr ""
4465
+
4466
+ #: addons/sell-content/myCRED-addon-sell-content.php:513
4467
+ #: addons/sell-content/myCRED-addon-sell-content.php:548
4468
+ #: addons/gateway/event-booking/mycred-eventespresso3.php:473
4469
+ #: addons/gateway/event-booking/mycred-eventsmanager.php:619
4470
+ #: addons/gateway/event-booking/mycred-eventsmanager-pro.php:703
4471
+ #: addons/transfer/includes/mycred-transfer-widgets.php:88
4472
+ msgid "Button Label"
4473
+ msgstr ""
4474
+
4475
+ #: addons/sell-content/myCRED-addon-sell-content.php:515
4476
+ msgid "Use %price% to show the price set for each post."
4477
+ msgstr ""
4478
+
4479
+ #: addons/sell-content/myCRED-addon-sell-content.php:518
4480
+ msgid "Button CSS Classes"
4481
+ msgstr ""
4482
+
4483
+ #: addons/sell-content/myCRED-addon-sell-content.php:524
4484
+ msgid "Payment log entry template"
4485
+ msgstr ""
4486
+
4487
+ #: addons/sell-content/myCRED-addon-sell-content.php:529
4488
+ msgid "Profit Share payout log entry template"
4489
+ msgstr ""
4490
+
4491
+ #: addons/sell-content/myCRED-addon-sell-content.php:531
4492
+ msgid "Only used if profit sharing is enabled for this point type."
4493
+ msgstr ""
4494
+
4495
+ #: addons/sell-content/myCRED-addon-sell-content.php:542
4496
+ msgid "Transactions"
4497
+ msgstr ""
4498
+
4499
+ #: addons/sell-content/myCRED-addon-sell-content.php:545
4500
+ msgid "Reload page after successful payments."
4501
+ msgstr ""
4502
+
4503
+ #: addons/sell-content/myCRED-addon-sell-content.php:550
4504
+ msgid ""
4505
+ "Option to show a custom button label while the payment is being processed. "
4506
+ "HTML is allowed."
4507
+ msgstr ""
4508
+
4509
+ #: addons/sell-content/myCRED-addon-sell-content.php:556
4510
+ msgid "Members"
4511
+ msgstr ""
4512
+
4513
+ #: addons/sell-content/myCRED-addon-sell-content.php:557
4514
+ msgid ""
4515
+ "The template to use when a content is viewed by a member that is logged in "
4516
+ "and can afford to pay. Only applied to content that is set for sale."
4517
+ msgstr ""
4518
+
4519
+ #: addons/sell-content/myCRED-addon-sell-content.php:574
4520
+ msgid ""
4521
+ "The template to use when a content is viewed by someone who is not logged in."
4522
+ " Only applied to content that is set for sale."
4523
+ msgstr ""
4524
+
4525
+ #: addons/sell-content/myCRED-addon-sell-content.php:592
4526
+ msgid ""
4527
+ "The template to use when a content is viewed by a member that is logged but "
4528
+ "can not afford to buy. Only applied to content that is set for sale."
4529
+ msgstr ""
4530
+
4531
+ #: addons/sell-content/myCRED-addon-sell-content.php:886
4532
+ msgid "Never expires"
4533
+ msgstr ""
4534
+
4535
+ #: addons/banking/services/mycred-service-central.php:110
4536
+ msgid "Central Bank Account"
4537
+ msgstr ""
4538
+
4539
+ #: addons/banking/services/mycred-service-central.php:113
4540
+ msgid "The ID of the user representing the central bank."
4541
+ msgstr ""
4542
+
4543
+ #: addons/banking/services/mycred-service-central.php:117
4544
+ msgid "Ignore Manual Adjustments"
4545
+ msgstr ""
4546
+
4547
+ #: addons/banking/services/mycred-service-interest.php:28
4548
+ msgid "%plural% interest rate payment"
4549
+ msgstr ""
4550
+
4551
+ #: addons/banking/services/mycred-service-interest.php:429
4552
+ msgid "Daily Compound Schedule"
4553
+ msgstr ""
4554
+
4555
+ #: addons/banking/services/mycred-service-interest.php:432
4556
+ #: addons/banking/services/mycred-service-interest.php:457
4557
+ #: addons/banking/services/mycred-service-payouts.php:728
4558
+ msgid "Year"
4559
+ msgstr ""
4560
+
4561
+ #: addons/banking/services/mycred-service-interest.php:433
4562
+ #: addons/banking/services/mycred-service-interest.php:458
4563
+ #: addons/banking/services/mycred-service-payouts.php:734
4564
+ #: addons/banking/includes/mycred-banking-functions.php:95
4565
+ msgid "Month"
4566
+ msgstr ""
4567
+
4568
+ #: addons/banking/services/mycred-service-interest.php:434
4569
+ #: addons/banking/services/mycred-service-interest.php:459
4570
+ #: addons/banking/includes/mycred-banking-functions.php:85
4571
+ msgid "Day"
4572
+ msgstr ""
4573
+
4574
+ #: addons/banking/services/mycred-service-interest.php:454
4575
+ msgid "Payout Schedule"
4576
+ msgstr ""
4577
+
4578
+ #: addons/banking/services/mycred-service-interest.php:481
4579
+ #: addons/banking/services/mycred-service-interest.php:652
4580
+ msgid "Interest Rate"
4581
+ msgstr ""
4582
+
4583
+ #: addons/banking/services/mycred-service-interest.php:493
4584
+ msgid "Payout Frequency"
4585
+ msgstr ""
4586
+
4587
+ #: addons/banking/services/mycred-service-interest.php:506
4588
+ msgid "Payout Log Table"
4589
+ msgstr ""
4590
+
4591
+ #: addons/banking/services/mycred-service-interest.php:519
4592
+ msgid ""
4593
+ "Changing the payout period once the service is enabled, will only take "
4594
+ "effect once the currently scheduled payout runs. To change this, you will "
4595
+ "also need to adjust the payout schedule above."
4596
+ msgstr ""
4597
+
4598
+ #: addons/banking/services/mycred-service-interest.php:524
4599
+ msgid "Exclude by ID"
4600
+ msgstr ""
4601
+
4602
+ #: addons/banking/services/mycred-service-interest.php:528
4603
+ #: addons/banking/services/mycred-service-interest.php:529
4604
+ #: addons/banking/services/mycred-service-payouts.php:791
4605
+ msgid "Comma separated list of user IDs"
4606
+ msgstr ""
4607
+
4608
+ #: addons/banking/services/mycred-service-interest.php:535
4609
+ msgid "Exclude by Role"
4610
+ msgstr ""
4611
+
4612
+ #: addons/banking/services/mycred-service-interest.php:539
4613
+ msgid "Roles to exclude"
4614
+ msgstr ""
4615
+
4616
+ #: addons/banking/services/mycred-service-interest.php:655
4617
+ msgid "Leave empty to pay the default rate."
4618
+ msgstr ""
4619
+
4620
+ #: addons/banking/services/mycred-service-payouts.php:30
4621
+ msgid "Waiting to Start"
4622
+ msgstr ""
4623
+
4624
+ #: addons/banking/services/mycred-service-payouts.php:32
4625
+ msgid "Running"
4626
+ msgstr ""
4627
+
4628
+ #: addons/banking/services/mycred-service-payouts.php:33
4629
+ msgid "Finished"
4630
+ msgstr ""
4631
+
4632
+ #: addons/banking/services/mycred-service-payouts.php:34
4633
+ msgid "Stopped"
4634
+ msgstr ""
4635
+
4636
+ #: addons/banking/services/mycred-service-payouts.php:446
4637
+ msgid "Not yet started"
4638
+ msgstr ""
4639
+
4640
+ #: addons/banking/services/mycred-service-payouts.php:457
4641
+ msgid "Currently Running"
4642
+ msgstr ""
4643
+
4644
+ #: addons/banking/services/mycred-service-payouts.php:472
4645
+ msgid "View Schedule"
4646
+ msgstr ""
4647
+
4648
+ #: addons/banking/services/mycred-service-payouts.php:472
4649
+ #: addons/stats/widgets/mycred-stats-widget-daily-loses.php:151
4650
+ #: addons/stats/widgets/mycred-stats-widget-daily-gains.php:151
4651
+ msgid "View"
4652
+ msgstr ""
4653
+
4654
+ #: addons/banking/services/mycred-service-payouts.php:472
4655
+ msgid "Delete Schedule"
4656
+ msgstr ""
4657
+
4658
+ #: addons/banking/services/mycred-service-payouts.php:523
4659
+ #: addons/banking/services/mycred-service-payouts.php:766
4660
+ msgid "Min. Balance"
4661
+ msgstr ""
4662
+
4663
+ #: addons/banking/services/mycred-service-payouts.php:526
4664
+ #: addons/banking/services/mycred-service-payouts.php:773
4665
+ msgid "Max. Balance"
4666
+ msgstr ""
4667
+
4668
+ #: addons/banking/services/mycred-service-payouts.php:531
4669
+ msgid "Exclude Users"
4670
+ msgstr ""
4671
+
4672
+ #: addons/banking/services/mycred-service-payouts.php:533
4673
+ msgid "Include Users"
4674
+ msgstr ""
4675
+
4676
+ #: addons/banking/services/mycred-service-payouts.php:540
4677
+ msgid "Exclude Roles"
4678
+ msgstr ""
4679
+
4680
+ #: addons/banking/services/mycred-service-payouts.php:542
4681
+ msgid "Include Roles"
4682
+ msgstr ""
4683
+
4684
+ #: addons/banking/services/mycred-service-payouts.php:559
4685
+ #: addons/banking/services/mycred-service-payouts.php:879
4686
+ msgid "Job Title"
4687
+ msgstr ""
4688
+
4689
+ #: addons/banking/services/mycred-service-payouts.php:573
4690
+ msgid "Start Date"
4691
+ msgstr ""
4692
+
4693
+ #: addons/banking/services/mycred-service-payouts.php:573
4694
+ msgid "Last Run"
4695
+ msgstr ""
4696
+
4697
+ #: addons/banking/services/mycred-service-payouts.php:579
4698
+ msgid "Eligible"
4699
+ msgstr ""
4700
+
4701
+ #: addons/banking/services/mycred-service-payouts.php:580
4702
+ msgid "1 User"
4703
+ msgid_plural "%d Users"
4704
+ msgstr[0] ""
4705
+ msgstr[1] ""
4706
+
4707
+ #: addons/banking/services/mycred-service-payouts.php:585
4708
+ msgid "Runs"
4709
+ msgstr ""
4710
+
4711
+ #: addons/banking/services/mycred-service-payouts.php:586
4712
+ msgid "Infinite"
4713
+ msgstr ""
4714
+
4715
+ #: addons/banking/services/mycred-service-payouts.php:591
4716
+ #: addons/gateway/carts/mycred-wpecommerce.php:396
4717
+ msgid "Payout"
4718
+ msgstr ""
4719
+
4720
+ #: addons/banking/services/mycred-service-payouts.php:609
4721
+ msgid "Will payout even if the central bank account has run out of funds."
4722
+ msgstr ""
4723
+
4724
+ #: addons/banking/services/mycred-service-payouts.php:614
4725
+ msgid "Paid Out"
4726
+ msgstr ""
4727
+
4728
+ #: addons/banking/services/mycred-service-payouts.php:615
4729
+ msgid "Completed"
4730
+ msgstr ""
4731
+
4732
+ #: addons/banking/services/mycred-service-payouts.php:616
4733
+ msgid "Misses"
4734
+ msgstr ""
4735
+
4736
+ #: addons/banking/services/mycred-service-payouts.php:617
4737
+ msgid "Runs Left"
4738
+ msgstr ""
4739
+
4740
+ #: addons/banking/services/mycred-service-payouts.php:637
4741
+ msgid ""
4742
+ "A miss is when a payout was declined by the plugin. This can be due to "
4743
+ "custom code declining the payout or if the user is excluded."
4744
+ msgstr ""
4745
+
4746
+ #: addons/banking/services/mycred-service-payouts.php:682
4747
+ msgid "Schedule Title"
4748
+ msgstr ""
4749
+
4750
+ #: addons/banking/services/mycred-service-payouts.php:694
4751
+ #: addons/banking/services/mycred-service-payouts.php:881
4752
+ msgid "Frequency"
4753
+ msgstr ""
4754
+
4755
+ #: addons/banking/services/mycred-service-payouts.php:715
4756
+ msgid "Payout even if the central bank account runs out of funds."
4757
+ msgstr ""
4758
+
4759
+ #: addons/banking/services/mycred-service-payouts.php:722
4760
+ msgid "First Payout"
4761
+ msgstr ""
4762
+
4763
+ #: addons/banking/services/mycred-service-payouts.php:754
4764
+ msgid "Repeat"
4765
+ msgstr ""
4766
+
4767
+ #: addons/banking/services/mycred-service-payouts.php:756
4768
+ msgid "Use -1 for infinite runs."
4769
+ msgstr ""
4770
+
4771
+ #: addons/banking/services/mycred-service-payouts.php:784
4772
+ msgid "Limit by ID"
4773
+ msgstr ""
4774
+
4775
+ #: addons/banking/services/mycred-service-payouts.php:798
4776
+ msgid "Limit by Role(s)"
4777
+ msgstr ""
4778
+
4779
+ #: addons/banking/services/mycred-service-payouts.php:825
4780
+ msgid "Schedule"
4781
+ msgstr ""
4782
+
4783
+ #: addons/banking/services/mycred-service-payouts.php:846
4784
+ msgid "Include:"
4785
+ msgstr ""
4786
+
4787
+ #: addons/banking/services/mycred-service-payouts.php:847
4788
+ msgid "Exclude:"
4789
+ msgstr ""
4790
+
4791
+ #: addons/banking/services/mycred-service-payouts.php:872
4792
+ msgid ""
4793
+ "As long as this service remains disabled, none of your scheduled payouts "
4794
+ "will run!"
4795
+ msgstr ""
4796
+
4797
+ #: addons/banking/services/mycred-service-payouts.php:875
4798
+ msgid "Schedules"
4799
+ msgstr ""
4800
+
4801
+ #: addons/banking/services/mycred-service-payouts.php:882
4802
+ msgid "Last Ran"
4803
+ msgstr ""
4804
+
4805
+ #: addons/banking/services/mycred-service-payouts.php:883
4806
+ msgid "Next Run"
4807
+ msgstr ""
4808
+
4809
+ #: addons/banking/services/mycred-service-payouts.php:891
4810
+ msgid "No schedules found."
4811
+ msgstr ""
4812
+
4813
+ #: addons/banking/services/mycred-service-payouts.php:955
4814
+ msgid "Schedule Added"
4815
+ msgstr ""
4816
+
4817
+ #: addons/banking/services/mycred-service-payouts.php:962
4818
+ msgid ""
4819
+ "While the recurring payout has been successfully saved, based on the limits "
4820
+ "you set, right now there are no users that are eligible for a payout!"
4821
+ msgstr ""
4822
+
4823
+ #: addons/banking/services/mycred-service-payouts.php:974
4824
+ #: addons/banking/services/mycred-service-payouts.php:988
4825
+ msgid "Schedule not found. Please refresh this page and try again."
4826
+ msgstr ""
4827
+
4828
+ #: addons/banking/services/mycred-service-payouts.php:993
4829
+ msgid "Schedule Deleted"
4830
+ msgstr ""
4831
+
4832
+ #: addons/banking/includes/mycred-banking-functions.php:79
4833
+ msgid "Hourly"
4834
+ msgstr ""
4835
+
4836
+ #: addons/banking/includes/mycred-banking-functions.php:80
4837
+ msgid "Hour"
4838
+ msgstr ""
4839
+
4840
+ #: addons/banking/includes/mycred-banking-functions.php:84
4841
+ msgid "Daily"
4842
+ msgstr ""
4843
+
4844
+ #: addons/banking/includes/mycred-banking-functions.php:89
4845
+ msgid "Weekly"
4846
+ msgstr ""
4847
+
4848
+ #: addons/banking/includes/mycred-banking-functions.php:90
4849
+ msgid "Week"
4850
+ msgstr ""
4851
+
4852
+ #: addons/banking/includes/mycred-banking-functions.php:94
4853
+ msgid "Monthly"
4854
+ msgstr ""
4855
+
4856
+ #: addons/banking/includes/mycred-banking-functions.php:99
4857
+ msgid "Quarterly"
4858
+ msgstr ""
4859
+
4860
+ #: addons/banking/includes/mycred-banking-functions.php:100
4861
+ msgid "Quarter"
4862
+ msgstr ""
4863
+
4864
+ #: addons/banking/includes/mycred-banking-functions.php:104
4865
+ msgid "Semiannually"
4866
+ msgstr ""
4867
+
4868
+ #: addons/banking/includes/mycred-banking-functions.php:105
4869
+ msgid "Semiannual"
4870
+ msgstr ""
4871
+
4872
+ #: addons/banking/includes/mycred-banking-functions.php:109
4873
+ msgid "Annually"
4874
+ msgstr ""
4875
+
4876
+ #: addons/banking/includes/mycred-banking-functions.php:110
4877
+ msgid "Annual"
4878
+ msgstr ""
4879
+
4880
+ #: addons/banking/includes/mycred-banking-functions.php:283
4881
+ msgid "A title must be set."
4882
+ msgstr ""
4883
+
4884
+ #: addons/banking/includes/mycred-banking-functions.php:290
4885
+ msgid "The amount to payout can not be zero."
4886
+ msgstr ""
4887
+
4888
+ #: addons/banking/includes/mycred-banking-functions.php:296
4889
+ msgid "Start date can not be in the past."
4890
+ msgstr ""
4891
+
4892
+ #: addons/banking/includes/mycred-banking-functions.php:303
4893
+ msgid "Repeat can not be zero."
4894
+ msgstr ""
4895
+
4896
+ #: addons/banking/includes/mycred-banking-functions.php:309
4897
+ msgid "Duplicate schedule."
4898
+ msgstr ""
4899
+
4900
+ #: addons/gateway/event-booking/mycred-eventespresso3.php:26
4901
+ #: addons/gateway/event-booking/mycred-eventsmanager.php:540
4902
+ #: addons/gateway/event-booking/mycred-eventsmanager-pro.php:626
4903
+ #: addons/buy-creds/modules/buycred-module-core.php:673
4904
+ msgid "Payments"
4905
+ msgstr ""
4906
+
4907
+ #: addons/gateway/event-booking/mycred-eventespresso3.php:27
4908
+ #: addons/gateway/event-booking/mycred-eventsmanager.php:35
4909
+ #: addons/gateway/event-booking/mycred-eventsmanager-pro.php:39
4910
+ #: addons/buy-creds/modules/buycred-module-pending.php:733
4911
+ msgid "Pay Now"
4912
+ msgstr ""
4913
+
4914
+ #: addons/gateway/event-booking/mycred-eventespresso3.php:32
4915
+ msgid "Payment for Event Registration"
4916
+ msgstr ""
4917
+
4918
+ #: addons/gateway/event-booking/mycred-eventespresso3.php:311
4919
+ #: addons/gateway/event-booking/mycred-eventespresso3.php:336
4920
+ #: addons/gateway/event-booking/mycred-eventsmanager.php:416
4921
+ #: addons/gateway/carts/mycred-wpecommerce.php:120
4922
+ msgid "Total Cost"
4923
+ msgstr ""
4924
+
4925
+ #: addons/gateway/event-booking/mycred-eventespresso3.php:315
4926
+ #: addons/gateway/event-booking/mycred-eventespresso3.php:340
4927
+ msgid "Balance After Purchase"
4928
+ msgstr ""
4929
+
4930
+ #: addons/gateway/event-booking/mycred-eventespresso3.php:380
4931
+ msgid "Activate %s"
4932
+ msgstr ""
4933
+
4934
+ #: addons/gateway/event-booking/mycred-eventespresso3.php:389
4935
+ msgid "Deactivate %s"
4936
+ msgstr ""
4937
+
4938
+ #: addons/gateway/event-booking/mycred-eventespresso3.php:402
4939
+ msgid "Gateway Settings"
4940
+ msgstr ""
4941
+
4942
+ #: addons/gateway/event-booking/mycred-eventespresso3.php:442
4943
+ #: addons/gateway/event-booking/mycred-eventsmanager.php:524
4944
+ #: addons/gateway/event-booking/mycred-eventsmanager-pro.php:595
4945
+ msgid "How many %s is 1 %s worth?"
4946
+ msgstr ""
4947
+
4948
+ #: addons/gateway/event-booking/mycred-eventespresso3.php:463
4949
+ msgid "Gateway Title"
4950
+ msgstr ""
4951
+
4952
+ #: addons/gateway/event-booking/mycred-eventespresso3.php:465
4953
+ msgid "Title to show on Payment page"
4954
+ msgstr ""
4955
+
4956
+ #: addons/gateway/event-booking/mycred-eventespresso3.php:468
4957
+ msgid "Payment Type"
4958
+ msgstr ""
4959
+
4960
+ #: addons/gateway/event-booking/mycred-eventespresso3.php:470
4961
+ msgid "Title to show on receipts and logs"
4962
+ msgstr ""
4963
+
4964
+ #: addons/gateway/event-booking/mycred-eventespresso3.php:475
4965
+ msgid "Pay Button"
4966
+ msgstr ""
4967
+
4968
+ #: addons/gateway/event-booking/mycred-eventespresso3.php:503
4969
+ msgid "Important!"
4970
+ msgstr ""
4971
+
4972
+ #: addons/gateway/event-booking/mycred-eventespresso3.php:505
4973
+ msgid ""
4974
+ "You can disable purchases using this gateway by adding a custom Event Meta: "
4975
+ "<code>mycred_no_sale</code>"
4976
+ msgstr ""
4977
+
4978
+ #: addons/gateway/event-booking/mycred-eventespresso3.php:506
4979
+ msgid "Users must be logged in to use this gateway!"
4980
+ msgstr ""
4981
+
4982
+ #: addons/gateway/event-booking/mycred-eventespresso3.php:510
4983
+ #: addons/gateway/event-booking/mycred-eventsmanager.php:569
4984
+ #: addons/gateway/event-booking/mycred-eventsmanager-pro.php:641
4985
+ #: addons/gateway/carts/mycred-wpecommerce.php:393
4986
+ #: addons/gateway/carts/mycred-woocommerce.php:168
4987
+ msgid "Profit Sharing"
4988
+ msgstr ""
4989
+
4990
+ #: addons/gateway/event-booking/mycred-eventespresso3.php:512
4991
+ #: addons/gateway/event-booking/mycred-eventsmanager.php:572
4992
+ #: addons/gateway/event-booking/mycred-eventsmanager-pro.php:644
4993
+ #: addons/gateway/carts/mycred-wpecommerce.php:397
4994
+ #: addons/gateway/carts/mycred-woocommerce.php:170
4995
+ msgid "Option to share sales with the product owner. Use zero to disable."
4996
+ msgstr ""
4997
+
4998
+ #: addons/gateway/event-booking/mycred-eventespresso3.php:528
4999
+ msgid "Solvent users"
5000
+ msgstr ""
5001
+
5002
+ #: addons/gateway/event-booking/mycred-eventespresso3.php:530
5003
+ msgid ""
5004
+ "Message to show users on the payment page before they are charged. Leave "
5005
+ "empty to hide."
5006
+ msgstr ""
5007
+
5008
+ #: addons/gateway/event-booking/mycred-eventespresso3.php:533
5009
+ msgid "Insolvent users"
5010
+ msgstr ""
5011
+
5012
+ #: addons/gateway/event-booking/mycred-eventespresso3.php:535
5013
+ msgid "Message to show users who do not have enough points to pay."
5014
+ msgstr ""
5015
+
5016
+ #: addons/gateway/event-booking/mycred-eventespresso3.php:540
5017
+ msgid "Message to show visitors (users not logged in) on the payment page."
5018
+ msgstr ""
5019
+
5020
+ #: addons/gateway/event-booking/mycred-eventsmanager.php:29
5021
+ #: addons/gateway/event-booking/mycred-eventsmanager-pro.php:33
5022
+ msgid "Payment for tickets to %link_with_title%"
5023
+ msgstr ""
5024
+
5025
+ #: addons/gateway/event-booking/mycred-eventsmanager.php:30
5026
+ #: addons/gateway/event-booking/mycred-eventsmanager-pro.php:34
5027
+ msgid "Ticket refund for %link_with_title%"
5028
+ msgstr ""
5029
+
5030
+ #: addons/gateway/event-booking/mycred-eventsmanager.php:34
5031
+ #: addons/gateway/event-booking/mycred-eventsmanager-pro.php:38
5032
+ msgid "Pay using your %_plural% balance"
5033
+ msgstr ""
5034
+
5035
+ #: addons/gateway/event-booking/mycred-eventsmanager.php:36
5036
+ #: addons/gateway/event-booking/mycred-eventsmanager-pro.php:40
5037
+ msgid "Pay"
5038
+ msgstr ""
5039
+
5040
+ #: addons/gateway/event-booking/mycred-eventsmanager.php:39
5041
+ #: addons/gateway/event-booking/mycred-eventsmanager-pro.php:44
5042
+ msgid "Thank you for your payment!"
5043
+ msgstr ""
5044
+
5045
+ #: addons/gateway/event-booking/mycred-eventsmanager.php:40
5046
+ #: addons/gateway/event-booking/mycred-eventsmanager-pro.php:45
5047
+ msgid "I'm sorry but you can not pay for these tickets using %_plural%"
5048
+ msgstr ""
5049
+
5050
+ #: addons/gateway/event-booking/mycred-eventsmanager.php:333
5051
+ #: addons/gateway/event-booking/mycred-eventsmanager-pro.php:150
5052
+ msgid "Ticket Type"
5053
+ msgstr ""
5054
+
5055
+ #: addons/gateway/event-booking/mycred-eventsmanager.php:342
5056
+ #: addons/gateway/event-booking/mycred-eventsmanager-pro.php:159
5057
+ msgid "Spaces"
5058
+ msgstr ""
5059
+
5060
+ #: addons/gateway/event-booking/mycred-eventsmanager.php:420
5061
+ msgid "Balance After Payment"
5062
+ msgstr ""
5063
+
5064
+ #: addons/gateway/event-booking/mycred-eventsmanager.php:532
5065
+ msgid "Click to toggle"
5066
+ msgstr ""
5067
+
5068
+ #: addons/gateway/event-booking/mycred-eventsmanager.php:533
5069
+ msgid "%s Payments"
5070
+ msgstr ""
5071
+
5072
+ #: addons/gateway/event-booking/mycred-eventsmanager.php:542
5073
+ #: addons/gateway/event-booking/mycred-eventsmanager-pro.php:628
5074
+ msgid "Disabled - Users CAN NOT pay for tickets using %plural%."
5075
+ msgstr ""
5076
+
5077
+ #: addons/gateway/event-booking/mycred-eventsmanager.php:543
5078
+ #: addons/gateway/event-booking/mycred-eventsmanager-pro.php:629
5079
+ msgid "Single - Users can ONLY pay for tickets using %plural%."
5080
+ msgstr ""
5081
+
5082
+ #: addons/gateway/event-booking/mycred-eventsmanager.php:544
5083
+ #: addons/gateway/event-booking/mycred-eventsmanager-pro.php:630
5084
+ msgid "Multi - Users can pay for tickets using other gateways or %plural%."
5085
+ msgstr ""
5086
+
5087
+ #: addons/gateway/event-booking/mycred-eventsmanager.php:562
5088
+ #: addons/gateway/event-booking/mycred-eventsmanager.php:595
5089
+ #: addons/gateway/event-booking/mycred-eventsmanager-pro.php:634
5090
+ #: addons/gateway/event-booking/mycred-eventsmanager-pro.php:667
5091
+ msgid "Refunds"
5092
+ msgstr ""
5093
+
5094
+ #: addons/gateway/event-booking/mycred-eventsmanager.php:565
5095
+ msgid ""
5096
+ "The percentage of the paid amount to refund if a booking gets cancelled. Use "
5097
+ "zero for no refunds. No refunds are given to \"Rejected\" bookings."
5098
+ msgstr ""
5099
+
5100
+ #: addons/gateway/event-booking/mycred-eventsmanager.php:585
5101
+ #: addons/gateway/event-booking/mycred-eventsmanager-pro.php:657
5102
+ msgid "Log Templates"
5103
+ msgstr ""
5104
+
5105
+ #: addons/gateway/event-booking/mycred-eventsmanager.php:588
5106
+ #: addons/gateway/event-booking/mycred-eventsmanager-pro.php:660
5107
+ msgid "Purchases"
5108
+ msgstr ""
5109
+
5110
+ #: addons/gateway/event-booking/mycred-eventsmanager.php:605
5111
+ #: addons/gateway/event-booking/mycred-eventsmanager-pro.php:689
5112
+ msgid "Payment Link Label"
5113
+ msgstr ""
5114
+
5115
+ #: addons/gateway/event-booking/mycred-eventsmanager.php:608
5116
+ #: addons/gateway/event-booking/mycred-eventsmanager-pro.php:692
5117
+ msgid ""
5118
+ "The payment link shows / hides the payment form under \"My Bookings\". No "
5119
+ "HTML allowed."
5120
+ msgstr ""
5121
+
5122
+ #: addons/gateway/event-booking/mycred-eventsmanager.php:612
5123
+ #: addons/gateway/event-booking/mycred-eventsmanager-pro.php:696
5124
+ msgid "Payment Header"
5125
+ msgstr ""
5126
+
5127
+ #: addons/gateway/event-booking/mycred-eventsmanager.php:615
5128
+ #: addons/gateway/event-booking/mycred-eventsmanager-pro.php:699
5129
+ msgid "Shown on top of the payment form. No HTML allowed."
5130
+ msgstr ""
5131
+
5132
+ #: addons/gateway/event-booking/mycred-eventsmanager.php:622
5133
+ #: addons/gateway/event-booking/mycred-eventsmanager-pro.php:706
5134
+ msgid "The button label for payments. No HTML allowed!"
5135
+ msgstr ""
5136
+
5137
+ #: addons/gateway/event-booking/mycred-eventsmanager.php:626
5138
+ #: addons/gateway/event-booking/mycred-eventsmanager-pro.php:717
5139
+ #: addons/gateway/carts/mycred-wpecommerce.php:404
5140
+ msgid "Messages"
5141
+ msgstr ""
5142
+
5143
+ #: addons/gateway/event-booking/mycred-eventsmanager.php:629
5144
+ #: addons/gateway/event-booking/mycred-eventsmanager-pro.php:720
5145
+ msgid "Successful Payments"
5146
+ msgstr ""
5147
+
5148
+ #: addons/gateway/event-booking/mycred-eventsmanager.php:632
5149
+ #: addons/gateway/event-booking/mycred-eventsmanager.php:639
5150
+ #: addons/gateway/event-booking/mycred-eventsmanager-pro.php:723
5151
+ #: addons/gateway/event-booking/mycred-eventsmanager-pro.php:730
5152
+ msgid "No HTML allowed!"
5153
+ msgstr ""
5154
+
5155
+ #: addons/gateway/event-booking/mycred-eventsmanager-pro.php:41
5156
+ msgid "%plural% Cost"
5157
+ msgstr ""
5158
+
5159
+ #: addons/gateway/event-booking/mycred-eventsmanager-pro.php:213
5160
+ msgid "Your Balance"
5161
+ msgstr ""
5162
+
5163
+ #: addons/gateway/event-booking/mycred-eventsmanager-pro.php:374
5164
+ msgid "You can not pay using this gateway."
5165
+ msgstr ""
5166
+
5167
+ #: addons/gateway/event-booking/mycred-eventsmanager-pro.php:492
5168
+ msgid "Reject"
5169
+ msgstr ""
5170
+
5171
+ #: addons/gateway/event-booking/mycred-eventsmanager-pro.php:501
5172
+ msgid "Edit/View"
5173
+ msgstr ""
5174
+
5175
+ #: addons/gateway/event-booking/mycred-eventsmanager-pro.php:637
5176
+ msgid ""
5177
+ "The percentage of the paid amount to refund if a user cancels their booking. "
5178
+ "Use zero for no refunds. No refunds are given to \"Rejected\" bookings!"
5179
+ msgstr ""
5180
+
5181
+ #: addons/gateway/event-booking/mycred-eventsmanager-pro.php:710
5182
+ msgid "Cart & Checkout Cost"
5183
+ msgstr ""
5184
+
5185
+ #: addons/gateway/event-booking/mycred-eventsmanager-pro.php:713
5186
+ msgid "Label for cost in %plural%"
5187
+ msgstr ""
5188
+
5189
+ #: addons/gateway/carts/mycred-wpecommerce.php:20
5190
+ msgid "Payment for Order: #%order_id%"
5191
+ msgstr ""
5192
+
5193
+ #: addons/gateway/carts/mycred-wpecommerce.php:23
5194
+ msgid "Store sale"
5195
+ msgstr ""
5196
+
5197
+ #: addons/gateway/carts/mycred-wpecommerce.php:25
5198
+ msgid "You must be logged in to use this gateway"
5199
+ msgstr ""
5200
+
5201
+ #: addons/gateway/carts/mycred-wpecommerce.php:26
5202
+ msgid "Insufficient Funds."
5203
+ msgstr ""
5204
+
5205
+ #: addons/gateway/carts/mycred-wpecommerce.php:27
5206
+ msgid "Deduct the amount from your balance."
5207
+ msgstr ""
5208
+
5209
+ #: addons/gateway/carts/mycred-wpecommerce.php:107
5210
+ #: addons/buy-creds/gateways/bank-transfer.php:110
5211
+ msgid "Item"
5212
+ msgstr ""
5213
+
5214
+ #: addons/gateway/carts/mycred-wpecommerce.php:128
5215
+ #: addons/gateway/carts/mycred-woocommerce.php:756
5216
+ msgid "Your current balance"
5217
+ msgstr ""
5218
+
5219
+ #: addons/gateway/carts/mycred-wpecommerce.php:202
5220
+ msgid "You can not use this gateway."
5221
+ msgstr ""
5222
+
5223
+ #: addons/gateway/carts/mycred-wpecommerce.php:373
5224
+ msgid "Log Template for Payments"
5225
+ msgstr ""
5226
+
5227
+ #: addons/gateway/carts/mycred-wpecommerce.php:390
5228
+ msgid "How much is 1 %s worth in %s"
5229
+ msgstr ""
5230
+
5231
+ #: addons/gateway/carts/mycred-wpecommerce.php:407
5232
+ msgid "Instructions"
5233
+ msgstr ""
5234
+
5235
+ #: addons/gateway/carts/mycred-wpecommerce.php:408
5236
+ msgid ""
5237
+ "Optional instructions to show users when selecting this gateway. Leave empty "
5238
+ "to hide."
5239
+ msgstr ""
5240
+
5241
+ #: addons/gateway/carts/mycred-wpecommerce.php:412
5242
+ msgid "Message to show visitors who are not logged in."
5243
+ msgstr ""
5244
+
5245
+ #: addons/gateway/carts/mycred-wpecommerce.php:416
5246
+ msgid ""
5247
+ "Message to show when users does not have enough %plural% to pay using this "
5248
+ "gateway."
5249
+ msgstr ""
5250
+
5251
+ #: addons/gateway/carts/mycred-woocommerce.php:30
5252
+ msgid "Let users pay using their myCRED balance."
5253
+ msgstr ""
5254
+
5255
+ #: addons/gateway/carts/mycred-woocommerce.php:84
5256
+ msgid "Enable/Disable"
5257
+ msgstr ""
5258
+
5259
+ #: addons/gateway/carts/mycred-woocommerce.php:86
5260
+ msgid "Enable myCRED Payment"
5261
+ msgstr ""
5262
+
5263
+ #: addons/gateway/carts/mycred-woocommerce.php:88
5264
+ msgid ""
5265
+ "Users who are not logged in or excluded from using myCRED will not have "
5266
+ "access to this gateway!"
5267
+ msgstr ""
5268
+
5269
+ #: addons/gateway/carts/mycred-woocommerce.php:93
5270
+ msgid "Title to show for this payment option."
5271
+ msgstr ""
5272
+
5273
+ #: addons/gateway/carts/mycred-woocommerce.php:94
5274
+ msgid "Pay with myCRED"
5275
+ msgstr ""
5276
+
5277
+ #: addons/gateway/carts/mycred-woocommerce.php:98
5278
+ msgid "Customer Message"
5279
+ msgstr ""
5280
+
5281
+ #: addons/gateway/carts/mycred-woocommerce.php:109
5282
+ #: addons/gateway/carts/mycred-woocommerce.php:181
5283
+ msgid "Refund Log Template"
5284
+ msgstr ""
5285
+
5286
+ #: addons/gateway/carts/mycred-woocommerce.php:121
5287
+ msgid "Select the point type users can use to pay."
5288
+ msgstr ""
5289
+
5290
+ #: addons/gateway/carts/mycred-woocommerce.php:135
5291
+ msgid "How much is 1 %_singular% worth in %currency%?"
5292
+ msgstr ""
5293
+
5294
+ #: addons/gateway/carts/mycred-woocommerce.php:147
5295
+ msgid "Show Total"
5296
+ msgstr ""
5297
+
5298
+ #: addons/gateway/carts/mycred-woocommerce.php:149
5299
+ msgid "Show the final price in %_plural% ."
5300
+ msgstr ""
5301
+
5302
+ #: addons/gateway/carts/mycred-woocommerce.php:152
5303
+ msgid "Show in Cart"
5304
+ msgstr ""
5305
+
5306
+ #: addons/gateway/carts/mycred-woocommerce.php:153
5307
+ msgid "Show on Checkout Page"
5308
+ msgstr ""
5309
+
5310
+ #: addons/gateway/carts/mycred-woocommerce.php:154
5311
+ msgid "Show in Cart and on Checkout Page"
5312
+ msgstr ""
5313
+
5314
+ #: addons/gateway/carts/mycred-woocommerce.php:161
5315
+ msgid "Order Total in %_plural%"
5316
+ msgstr ""
5317
+
5318
+ #: addons/gateway/carts/mycred-woocommerce.php:177
5319
+ msgid "Log entry template for profit sharing."
5320
+ msgstr ""
5321
+
5322
+ #: addons/gateway/carts/mycred-woocommerce.php:183
5323
+ msgid "Log entry template for refunds of profit shares."
5324
+ msgstr ""
5325
+
5326
+ #: addons/gateway/carts/mycred-woocommerce.php:213
5327
+ msgid "myCRED Payment"
5328
+ msgstr ""
5329
+
5330
+ #: addons/gateway/carts/mycred-woocommerce.php:237
5331
+ msgid "You must be logged in to pay with %_plural%"
5332
+ msgstr ""
5333
+
5334
+ #: addons/gateway/carts/mycred-woocommerce.php:245
5335
+ msgid "You can not use this gateway. Please try a different payment option."
5336
+ msgstr ""
5337
+
5338
+ #: addons/gateway/carts/mycred-woocommerce.php:262
5339
+ #: addons/sell-content/includes/mycred-sell-functions.php:511
5340
+ msgid "Insufficient funds."
5341
+ msgstr ""
5342
+
5343
+ #: addons/gateway/carts/mycred-woocommerce.php:364
5344
+ msgctxt "%s = Point amount formatted"
5345
+ msgid "Refunded %s"
5346
+ msgstr ""
5347
+
5348
+ #: addons/gateway/carts/mycred-woocommerce.php:414
5349
+ msgid "Your account has successfully been charged."
5350
+ msgstr ""
5351
+
5352
+ #: addons/transfer/includes/mycred-transfer-widgets.php:19
5353
+ msgid "(%s) Transfer"
5354
+ msgstr ""
5355
+
5356
+ #: addons/transfer/includes/mycred-transfer-widgets.php:22
5357
+ msgid "Allow transfers between users."
5358
+ msgstr ""
5359
+
5360
+ #: addons/transfer/includes/mycred-transfer-widgets.php:82
5361
+ msgid "Show users balance"
5362
+ msgstr ""
5363
+
5364
+ #: addons/transfer/includes/mycred-transfer-widgets.php:85
5365
+ msgid "Show users limit"
5366
+ msgstr ""
5367
+
5368
+ #: addons/transfer/includes/mycred-transfer-widgets.php:89
5369
+ #: addons/transfer/includes/mycred-transfer-widgets.php:93
5370
+ #: addons/transfer/includes/mycred-transfer-widgets.php:97
5371
+ #: addons/transfer/includes/mycred-transfer-widgets.php:109
5372
+ msgid "required"
5373
+ msgstr ""
5374
+
5375
+ #: addons/transfer/includes/mycred-transfer-widgets.php:100
5376
+ #: addons/transfer/includes/mycred-transfer-shortcodes.php:31
5377
+ #: addons/buy-creds/modules/buycred-module-pending.php:565
5378
+ #: addons/buy-creds/modules/buycred-module-core.php:1475
5379
+ msgid "Recipient"
5380
+ msgstr ""
5381
+
5382
+ #: addons/transfer/includes/mycred-transfer-widgets.php:104
5383
+ msgid "Recipient Placeholder"
5384
+ msgstr ""
5385
+
5386
+ #: addons/transfer/includes/mycred-transfer-widgets.php:112
5387
+ msgid "Message for Excluded Users"
5388
+ msgstr ""
5389
+
5390
+ #: addons/transfer/includes/mycred-transfer-shortcodes.php:156
5391
+ msgid "username"
5392
+ msgstr ""
5393
+
5394
+ #: addons/transfer/includes/mycred-transfer-shortcodes.php:159
5395
+ msgid "email"
5396
+ msgstr ""
5397
+
5398
+ #: addons/transfer/includes/mycred-transfer-shortcodes.php:161
5399
+ msgid "recipients %s"
5400
+ msgstr ""
5401
+
5402
+ #: addons/ranks/includes/mycred-rank-shortcodes.php:128
5403
+ #: addons/ranks/includes/mycred-rank-shortcodes.php:211
5404
+ msgid "No users found with this rank"
5405
+ msgstr ""
5406
+
5407
+ #: addons/ranks/includes/mycred-rank-shortcodes.php:135
5408
+ msgid "Rank ID is required!"
5409
+ msgstr ""
5410
+
5411
+ #: addons/stats/abstracts/mycred-abstract-stat-widget.php:103
5412
+ msgid "Hooks"
5413
+ msgstr ""
5414
+
5415
+ #: addons/stats/widgets/mycred-stats-widget-circulation.php:44
5416
+ msgid "Total %s:"
5417
+ msgstr ""
5418
+
5419
+ #: addons/stats/widgets/mycred-stats-widget-circulation.php:138
5420
+ #: addons/stats/widgets/mycred-stats-widget-circulation.php:267
5421
+ msgid "Total amount of %s in circulation"
5422
+ msgstr ""
5423
+
5424
+ #: addons/stats/widgets/mycred-stats-widget-circulation.php:171
5425
+ #: addons/stats/widgets/mycred-stats-widget-circulation.php:302
5426
+ msgid "Total gains (%)"
5427
+ msgstr ""
5428
+
5429
+ #: addons/stats/widgets/mycred-stats-widget-circulation.php:175
5430
+ #: addons/stats/widgets/mycred-stats-widget-circulation.php:306
5431
+ msgid "Total loses (%)"
5432
+ msgstr ""
5433
+
5434
+ #: addons/stats/widgets/mycred-stats-widget-circulation.php:179
5435
+ #: addons/stats/widgets/mycred-stats-widget-circulation.php:309
5436
+ msgid "Total Gained: %s"
5437
+ msgstr ""
5438
+
5439
+ #: addons/stats/widgets/mycred-stats-widget-circulation.php:179
5440
+ #: addons/stats/widgets/mycred-stats-widget-circulation.php:309
5441
+ msgid "Total Spent: %s"
5442
+ msgstr ""
5443
+
5444
+ #: addons/stats/widgets/mycred-stats-widget-circulation.php:193
5445
+ #: addons/stats/widgets/mycred-stats-widget-circulation.php:323
5446
+ msgid "This Year"
5447
+ msgstr ""
5448
+
5449
+ #: addons/stats/widgets/mycred-stats-widget-circulation.php:197
5450
+ #: addons/stats/widgets/mycred-stats-widget-circulation.php:199
5451
+ #: addons/stats/widgets/mycred-stats-widget-circulation.php:201
5452
+ #: addons/stats/widgets/mycred-stats-widget-circulation.php:203
5453
+ #: addons/stats/widgets/mycred-stats-widget-circulation.php:327
5454
+ #: addons/stats/widgets/mycred-stats-widget-circulation.php:329
5455
+ #: addons/stats/widgets/mycred-stats-widget-circulation.php:331
5456
+ #: addons/stats/widgets/mycred-stats-widget-circulation.php:333
5457
+ #: addons/badges/includes/mycred-badge-functions.php:267
5458
+ msgid "Gained"
5459
+ msgstr ""
5460
+
5461
+ #: addons/stats/widgets/mycred-stats-widget-circulation.php:198
5462
+ #: addons/stats/widgets/mycred-stats-widget-circulation.php:200
5463
+ #: addons/stats/widgets/mycred-stats-widget-circulation.php:202
5464
+ #: addons/stats/widgets/mycred-stats-widget-circulation.php:204
5465
+ #: addons/stats/widgets/mycred-stats-widget-circulation.php:328
5466
+ #: addons/stats/widgets/mycred-stats-widget-circulation.php:330
5467
+ #: addons/stats/widgets/mycred-stats-widget-circulation.php:332
5468
+ #: addons/stats/widgets/mycred-stats-widget-circulation.php:334
5469
+ #: addons/badges/includes/mycred-badge-functions.php:267
5470
+ msgid "Lost"
5471
+ msgstr ""
5472
+
5473
+ #: addons/stats/widgets/mycred-stats-widget-daily-loses.php:118
5474
+ msgid ""
5475
+ "Most common ways your users have lost or spent points during this period."
5476
+ msgstr ""
5477
+
5478
+ #: addons/stats/widgets/mycred-stats-widget-daily-loses.php:120
5479
+ msgid ""
5480
+ "Most common ways your users have lost or spent %_plural% during this period."
5481
+ msgstr ""
5482
+
5483
+ #: addons/stats/widgets/mycred-stats-widget-daily-loses.php:127
5484
+ msgid "Loses in the last 10 days"
5485
+ msgstr ""
5486
+
5487
+ #: addons/stats/widgets/mycred-stats-widget-daily-loses.php:166
5488
+ #: addons/stats/widgets/mycred-stats-widget-daily-gains.php:166
5489
+ msgid "No data found"
5490
+ msgstr ""
5491
+
5492
+ #: addons/stats/widgets/mycred-stats-widget-daily-gains.php:118
5493
+ msgid "Most common ways your users have gained points during this period."
5494
+ msgstr ""
5495
+
5496
+ #: addons/stats/widgets/mycred-stats-widget-daily-gains.php:120
5497
+ msgid "Most common ways your users have gained %_plural% during this period."
5498
+ msgstr ""
5499
+
5500
+ #: addons/stats/widgets/mycred-stats-widget-daily-gains.php:127
5501
+ msgid "Gains in the last 10 days"
5502
+ msgstr ""
5503
+
5504
+ #: addons/badges/includes/mycred-badge-functions.php:248
5505
+ msgid "Level %s"
5506
+ msgstr ""
5507
+
5508
+ #: addons/badges/includes/mycred-badge-functions.php:265
5509
+ msgctxt "\"Points\" for \"reference\" x times"
5510
+ msgid "%s for \"%s\" x %d"
5511
+ msgstr ""
5512
+
5513
+ #: addons/badges/includes/mycred-badge-functions.php:267
5514
+ msgctxt "\"Gained/Lost\" \"x points\" for \"reference\""
5515
+ msgid "%s %s for \"%s\""
5516
+ msgstr ""
5517
+
5518
+ #: addons/sell-content/includes/mycred-sell-functions.php:502
5519
+ msgctxt "Point type name"
5520
+ msgid "You can not pay using %s"
5521
+ msgstr ""
5522
+
5523
+ #: addons/sell-content/includes/mycred-sell-functions.php:763
5524
+ msgctxt "all post type name"
5525
+ msgid "All %s"
5526
+ msgstr ""
5527
+
5528
+ #: addons/sell-content/includes/mycred-sell-functions.php:767
5529
+ msgctxt "all post type name"
5530
+ msgid "%s I manually select"
5531
+ msgstr ""
5532
+
5533
+ #: addons/sell-content/includes/mycred-sell-functions.php:771
5534
+ msgctxt "%s = post type name"
5535
+ msgid "All %s except"
5536
+ msgstr ""
5537
+
5538
+ #: addons/sell-content/includes/mycred-sell-functions.php:772
5539
+ msgctxt "%s = post type name"
5540
+ msgid "Comma separated list of %s IDs to exclude"
5541
+ msgstr ""
5542
+
5543
+ #: addons/sell-content/includes/mycred-sell-functions.php:775
5544
+ msgctxt "%s = post type name"
5545
+ msgid "Only %s"
5546
+ msgstr ""
5547
+
5548
+ #: addons/sell-content/includes/mycred-sell-functions.php:776
5549
+ msgctxt "%s = post type name"
5550
+ msgid "Comma separated list of %s IDs"
5551
+ msgstr ""
5552
+
5553
+ #: addons/sell-content/includes/mycred-sell-functions.php:788
5554
+ msgctxt "e.g. Only \"Posts\" in \"Categories\""
5555
+ msgid "Only %s in %s"
5556
+ msgstr ""
5557
+
5558
+ #: addons/sell-content/includes/mycred-sell-functions.php:789
5559
+ #: addons/sell-content/includes/mycred-sell-functions.php:793
5560
+ #: addons/sell-content/includes/mycred-sell-functions.php:799
5561
+ #: addons/sell-content/includes/mycred-sell-functions.php:803
5562
+ msgctxt "%s = taxonomy name"
5563
+ msgid "Comma separated list of %s slugs"
5564
+ msgstr ""
5565
+
5566
+ #: addons/sell-content/includes/mycred-sell-functions.php:792
5567
+ msgctxt "e.g. Only \"Posts\" not in \"Categories\""
5568
+ msgid "Only %s not in %s"
5569
+ msgstr ""
5570
+
5571
+ #: addons/sell-content/includes/mycred-sell-functions.php:798
5572
+ msgctxt "e.g. Only \"Posts\" with \"Tags\""
5573
+ msgid "Only %s with %s"
5574
+ msgstr ""
5575
+
5576
+ #: addons/sell-content/includes/mycred-sell-functions.php:802
5577
+ msgctxt "e.g. Only \"Posts\" without \"Tags\""
5578
+ msgid "Only %s without %s"
5579
+ msgstr ""
5580
+
5581
+ #: addons/sell-content/includes/mycred-sell-shortcodes.php:187
5582
+ #: addons/buy-creds/abstracts/mycred-abstract-payment-gateway.php:693
5583
+ #: addons/buy-creds/modules/buycred-module-pending.php:290
5584
+ #: addons/buy-creds/modules/buycred-module-pending.php:637
5585
+ #: addons/buy-creds/modules/buycred-module-pending.php:750
5586
+ #: addons/buy-creds/gateways/bank-transfer.php:112
5587
+ msgid "Cost"
5588
+ msgstr ""
5589
+
5590
+ #: addons/sell-content/includes/mycred-sell-shortcodes.php:233
5591
+ msgctxt "e.g. 10 hours"
5592
+ msgid "Purchase expires in %s"
5593
+ msgstr ""
5594
+
5595
+ #: addons/buy-creds/abstracts/mycred-abstract-payment-gateway.php:163
5596
+ msgid "Select currency"
5597
+ msgstr ""
5598
+
5599
+ #: addons/buy-creds/abstracts/mycred-abstract-payment-gateway.php:225
5600
+ msgctxt "%s is replaced with the point amount and name."
5601
+ msgid "Received new request to purchase %s."
5602
+ msgstr ""
5603
+
5604
+ #: addons/buy-creds/abstracts/mycred-abstract-payment-gateway.php:445
5605
+ #: addons/buy-creds/gateways/bank-transfer.php:96
5606
+ msgid "Test Payment"
5607
+ msgstr ""
5608
+
5609
+ #: addons/buy-creds/abstracts/mycred-abstract-payment-gateway.php:451
5610
+ #: addons/buy-creds/gateways/bank-transfer.php:100
5611
+ msgid "Payment"
5612
+ msgstr ""
5613
+
5614
+ #: addons/buy-creds/abstracts/mycred-abstract-payment-gateway.php:576
5615
+ msgid "First Name"
5616
+ msgstr ""
5617
+
5618
+ #: addons/buy-creds/abstracts/mycred-abstract-payment-gateway.php:582
5619
+ msgid "Last Name"
5620
+ msgstr ""
5621
+
5622
+ #: addons/buy-creds/abstracts/mycred-abstract-payment-gateway.php:590
5623
+ msgid "Address Line 1"
5624
+ msgstr ""
5625
+
5626
+ #: addons/buy-creds/abstracts/mycred-abstract-payment-gateway.php:598
5627
+ msgid "Address Line 2"
5628
+ msgstr ""
5629
+
5630
+ #: addons/buy-creds/abstracts/mycred-abstract-payment-gateway.php:606
5631
+ msgid "City"
5632
+ msgstr ""
5633
+
5634
+ #: addons/buy-creds/abstracts/mycred-abstract-payment-gateway.php:612
5635
+ msgid "Zip"
5636
+ msgstr ""
5637
+
5638
+ #: addons/buy-creds/abstracts/mycred-abstract-payment-gateway.php:620
5639
+ msgid "State"
5640
+ msgstr ""
5641
+
5642
+ #: addons/buy-creds/abstracts/mycred-abstract-payment-gateway.php:628
5643
+ msgid "Country"
5644
+ msgstr ""
5645
+
5646
+ #: addons/buy-creds/abstracts/mycred-abstract-payment-gateway.php:633
5647
+ msgid "Choose Country"
5648
+ msgstr ""
5649
+
5650
+ #: addons/buy-creds/abstracts/mycred-abstract-payment-gateway.php:685
5651
+ #: addons/buy-creds/gateways/bank-transfer.php:118
5652
+ msgid "%s Purchase"
5653
+ msgstr ""
5654
+
5655
+ #: addons/buy-creds/abstracts/mycred-abstract-payment-gateway.php:691
5656
+ msgctxt "buyCRED order description"
5657
+ msgid "Item"
5658
+ msgstr ""
5659
+
5660
+ #: addons/buy-creds/abstracts/mycred-abstract-payment-gateway.php:786
5661
+ msgid "Continue to %s"
5662
+ msgstr ""
5663
+
5664
+ #: addons/buy-creds/abstracts/mycred-abstract-payment-gateway.php:787
5665
+ #: addons/buy-creds/gateways/bitpay.php:225
5666
+ msgid "Click here if you are not automatically redirected"
5667
+ msgstr ""
5668
+
5669
+ #: addons/buy-creds/abstracts/mycred-abstract-payment-gateway.php:1501
5670
+ msgid "January"
5671
+ msgstr ""
5672
+
5673
+ #: addons/buy-creds/abstracts/mycred-abstract-payment-gateway.php:1502
5674
+ msgid "February"
5675
+ msgstr ""
5676
+
5677
+ #: addons/buy-creds/abstracts/mycred-abstract-payment-gateway.php:1503
5678
+ msgid "March"
5679
+ msgstr ""
5680
+
5681
+ #: addons/buy-creds/abstracts/mycred-abstract-payment-gateway.php:1504
5682
+ msgid "April"
5683
+ msgstr ""
5684
+
5685
+ #: addons/buy-creds/abstracts/mycred-abstract-payment-gateway.php:1505
5686
+ msgid "May"
5687
+ msgstr ""
5688
+
5689
+ #: addons/buy-creds/abstracts/mycred-abstract-payment-gateway.php:1506
5690
+ msgid "June"
5691
+ msgstr ""
5692
+
5693
+ #: addons/buy-creds/abstracts/mycred-abstract-payment-gateway.php:1507
5694
+ msgid "July"
5695
+ msgstr ""
5696
+
5697
+ #: addons/buy-creds/abstracts/mycred-abstract-payment-gateway.php:1508
5698
+ msgid "August"
5699
+ msgstr ""
5700
+
5701
+ #: addons/buy-creds/abstracts/mycred-abstract-payment-gateway.php:1509
5702
+ msgid "September"
5703
+ msgstr ""
5704
+
5705
+ #: addons/buy-creds/abstracts/mycred-abstract-payment-gateway.php:1510
5706
+ msgid "October"
5707
+ msgstr ""
5708
+
5709
+ #: addons/buy-creds/abstracts/mycred-abstract-payment-gateway.php:1511
5710
+ msgid "November"
5711
+ msgstr ""
5712
+
5713
+ #: addons/buy-creds/abstracts/mycred-abstract-payment-gateway.php:1512
5714
+ msgid "December"
5715
+ msgstr ""
5716
+
5717
+ #: addons/buy-creds/modules/buycred-module-pending.php:158
5718
+ msgctxt "Post Type General Name"
5719
+ msgid "Pending Payments"
5720
+ msgstr ""
5721
+
5722
+ #: addons/buy-creds/modules/buycred-module-pending.php:159
5723
+ msgctxt "Post Type Singular Name"
5724
+ msgid "Pending Payment"
5725
+ msgstr ""
5726
+
5727
+ #: addons/buy-creds/modules/buycred-module-pending.php:160
5728
+ #: addons/buy-creds/modules/buycred-module-pending.php:162
5729
+ #: addons/buy-creds/modules/buycred-module-pending.php:252
5730
+ #: addons/buy-creds/modules/buycred-module-pending.php:253
5731
+ msgid "Pending Payments"
5732
+ msgstr ""
5733
+
5734
+ #: addons/buy-creds/modules/buycred-module-pending.php:166
5735
+ msgid "Edit Pending Payment"
5736
+ msgstr ""
5737
+
5738
+ #: addons/buy-creds/modules/buycred-module-pending.php:169
5739
+ #: addons/buy-creds/modules/buycred-module-pending.php:170
5740
+ msgid "Not found in Trash"
5741
+ msgstr ""
5742
+
5743
+ #: addons/buy-creds/modules/buycred-module-pending.php:200
5744
+ #: addons/buy-creds/modules/buycred-module-pending.php:201
5745
+ #: addons/buy-creds/modules/buycred-module-pending.php:202
5746
+ #: addons/buy-creds/modules/buycred-module-pending.php:203
5747
+ #: addons/buy-creds/modules/buycred-module-pending.php:204
5748
+ #: addons/buy-creds/modules/buycred-module-pending.php:205
5749
+ #: addons/buy-creds/modules/buycred-module-pending.php:206
5750
+ #: addons/buy-creds/modules/buycred-module-pending.php:207
5751
+ #: addons/buy-creds/modules/buycred-module-pending.php:208
5752
+ msgid "Payment Updated."
5753
+ msgstr ""
5754
+
5755
+ #: addons/buy-creds/modules/buycred-module-pending.php:236
5756
+ msgid "Pending payment successfully credited to account."
5757
+ msgstr ""
5758
+
5759
+ #: addons/buy-creds/modules/buycred-module-pending.php:238
5760
+ msgid "Failed to credit the pending payment to account."
5761
+ msgstr ""
5762
+
5763
+ #: addons/buy-creds/modules/buycred-module-pending.php:286
5764
+ #: addons/buy-creds/modules/buycred-module-pending.php:747
5765
+ #: addons/buy-creds/modules/buycred-module-core.php:755
5766
+ #: addons/buy-creds/gateways/bank-transfer.php:113
5767
+ msgid "Transaction ID"
5768
+ msgstr ""
5769
+
5770
+ #: addons/buy-creds/modules/buycred-module-pending.php:288
5771
+ #: addons/buy-creds/modules/buycred-module-core.php:751
5772
+ msgid "Buyer"
5773
+ msgstr ""
5774
+
5775
+ #: addons/buy-creds/modules/buycred-module-pending.php:291
5776
+ #: addons/buy-creds/modules/buycred-module-pending.php:612
5777
+ #: addons/buy-creds/modules/buycred-module-pending.php:748
5778
+ #: addons/buy-creds/modules/buycred-module-core.php:750
5779
+ #: addons/buy-creds/includes/buycred-functions.php:119
5780
+ msgid "Gateway"
5781
+ msgstr ""
5782
+
5783
+ #: addons/buy-creds/modules/buycred-module-pending.php:292
5784
+ msgid "Type"
5785
+ msgstr ""
5786
+
5787
+ #: addons/buy-creds/modules/buycred-module-pending.php:389
5788
+ #: addons/buy-creds/modules/buycred-module-pending.php:494
5789
+ msgid "Pay Out"
5790
+ msgstr ""
5791
+
5792
+ #: addons/buy-creds/modules/buycred-module-pending.php:457
5793
+ msgid "Pending Payment"
5794
+ msgstr ""
5795
+
5796
+ #: addons/buy-creds/modules/buycred-module-pending.php:489
5797
+ msgid "Save"
5798
+ msgstr ""
5799
+
5800
+ #: addons/buy-creds/modules/buycred-module-pending.php:495
5801
+ msgid "Trash"
5802
+ msgstr ""
5803
+
5804
+ #: addons/buy-creds/modules/buycred-module-pending.php:559
5805
+ msgid "Payer"
5806
+ msgstr ""
5807
+
5808
+ #: addons/buy-creds/modules/buycred-module-pending.php:643
5809
+ #: addons/buy-creds/gateways/bank-transfer.php:180
5810
+ #: addons/buy-creds/gateways/bitpay.php:251
5811
+ #: addons/buy-creds/gateways/paypal-standard.php:279
5812
+ #: addons/buy-creds/gateways/skrill.php:294
5813
+ msgid "Currency"
5814
+ msgstr ""
5815
+
5816
+ #: addons/buy-creds/modules/buycred-module-pending.php:668
5817
+ msgid "Pending request created."
5818
+ msgstr ""
5819
+
5820
+ #: addons/buy-creds/modules/buycred-module-pending.php:716
5821
+ msgid "Pending payment updated by %s"
5822
+ msgstr ""
5823
+
5824
+ #: addons/buy-creds/modules/buycred-module-pending.php:814
5825
+ msgid "No pending payments found"
5826
+ msgstr ""
5827
+
5828
+ #: addons/buy-creds/modules/buycred-module-core.php:28
5829
+ #: addons/buy-creds/modules/buycred-module-core.php:29
5830
+ #: addons/buy-creds/modules/buycred-module-core.php:30
5831
+ msgid "Payment Gateways"
5832
+ msgstr ""
5833
+
5834
+ #: addons/buy-creds/modules/buycred-module-core.php:138
5835
+ msgid "Bank Transfer"
5836
+ msgstr ""
5837
+
5838
+ #: addons/buy-creds/modules/buycred-module-core.php:297
5839
+ msgid "Please login to purchase %_plural%"
5840
+ msgstr ""
5841
+
5842
+ #: addons/buy-creds/modules/buycred-module-core.php:312
5843
+ msgid "Gift purchase from %display_name%."
5844
+ msgstr ""
5845
+
5846
+ #: addons/buy-creds/modules/buycred-module-core.php:331
5847
+ msgid "Minimum amount of %plural% a user must purchase. Will default to 1."
5848
+ msgstr ""
5849
+
5850
+ #: addons/buy-creds/modules/buycred-module-core.php:339
5851
+ msgid ""
5852
+ "Select the point types that users can buy. You must select at least one!"
5853
+ msgstr ""
5854
+
5855
+ #: addons/buy-creds/modules/buycred-module-core.php:350
5856
+ msgid "Login Template"
5857
+ msgstr ""
5858
+
5859
+ #: addons/buy-creds/modules/buycred-module-core.php:354
5860
+ msgid "Content to show when a user is not logged in."
5861
+ msgstr ""
5862
+
5863
+ #: addons/buy-creds/modules/buycred-module-core.php:364
5864
+ msgid "Thank You Page"
5865
+ msgstr ""
5866
+
5867
+ #: addons/buy-creds/modules/buycred-module-core.php:367
5868
+ #: addons/buy-creds/modules/buycred-module-core.php:390
5869
+ msgid "Custom URL"
5870
+ msgstr ""
5871
+
5872
+ #: addons/buy-creds/modules/buycred-module-core.php:372
5873
+ #: addons/buy-creds/modules/buycred-module-core.php:395
5874
+ msgid "Page"
5875
+ msgstr ""
5876
+
5877
+ #: addons/buy-creds/modules/buycred-module-core.php:387
5878
+ msgid "Cancellation Page"
5879
+ msgstr ""
5880
+
5881
+ #: addons/buy-creds/modules/buycred-module-core.php:410
5882
+ #: addons/buy-creds/modules/buycred-module-core.php:511
5883
+ #: addons/buy-creds/modules/buycred-module-core.php:762
5884
+ msgid "Purchase Log"
5885
+ msgstr ""
5886
+
5887
+ #: addons/buy-creds/modules/buycred-module-core.php:412
5888
+ msgid "Show seperate log for %_plural% purchases."
5889
+ msgstr ""
5890
+
5891
+ #: addons/buy-creds/modules/buycred-module-core.php:414
5892
+ msgid "Gifting"
5893
+ msgstr ""
5894
+
5895
+ #: addons/buy-creds/modules/buycred-module-core.php:416
5896
+ msgid "Allow users to buy %_plural% for other users."
5897
+ msgstr ""
5898
+
5899
+ #: addons/buy-creds/modules/buycred-module-core.php:417
5900
+ msgid "Allow users to buy %_plural% for content authors."
5901
+ msgstr ""
5902
+
5903
+ #: addons/buy-creds/modules/buycred-module-core.php:425
5904
+ msgid "Available Shortcodes"
5905
+ msgstr ""
5906
+
5907
+ #: addons/buy-creds/modules/buycred-module-core.php:510
5908
+ msgid "buyCRED Purchase Log"
5909
+ msgstr ""
5910
+
5911
+ #: addons/buy-creds/modules/buycred-module-core.php:555
5912
+ msgid "%s Payment Gateways"
5913
+ msgstr ""
5914
+
5915
+ #: addons/buy-creds/modules/buycred-module-core.php:590
5916
+ msgid "Sandbox Mode"
5917
+ msgstr ""
5918
+
5919
+ #: addons/buy-creds/modules/buycred-module-core.php:593
5920
+ msgid "Enable for test purchases."
5921
+ msgstr ""
5922
+
5923
+ #: addons/buy-creds/modules/buycred-module-core.php:613
5924
+ msgid "More Gateways"
5925
+ msgstr ""
5926
+
5927
+ #: addons/buy-creds/modules/buycred-module-core.php:754
5928
+ msgid "Payed"
5929
+ msgstr ""
5930
+
5931
+ #: addons/buy-creds/modules/buycred-module-core.php:970
5932
+ msgid "No purchases found"
5933
+ msgstr ""
5934
+
5935
+ #: addons/buy-creds/modules/buycred-module-core.php:1092
5936
+ msgid "Users exchange rate when buying points."
5937
+ msgstr ""
5938
+
5939
+ #: addons/buy-creds/modules/buycred-module-core.php:1103
5940
+ msgid "buyCRED Exchange Rates"
5941
+ msgstr ""
5942
+
5943
+ #: addons/buy-creds/modules/buycred-module-core.php:1113
5944
+ msgctxt "Points Name"
5945
+ msgid "Buying %s"
5946
+ msgstr ""
5947
+
5948
+ #: addons/buy-creds/modules/buycred-module-core.php:1116
5949
+ msgid "This point type is not for sale."
5950
+ msgstr ""
5951
+
5952
+ #: addons/buy-creds/modules/buycred-module-core.php:1128
5953
+ #: addons/buy-creds/modules/buycred-module-core.php:1143
5954
+ msgctxt "Buying Points"
5955
+ msgid "Buying %s"
5956
+ msgstr ""
5957
+
5958
+ #: addons/buy-creds/modules/buycred-module-core.php:1131
5959
+ msgctxt "Points Name"
5960
+ msgid "User can not buy %s"
5961
+ msgstr ""
5962
+
5963
+ #: addons/buy-creds/modules/buycred-module-core.php:1146
5964
+ msgid "Leave empty to use the default rate."
5965
+ msgstr ""
5966
+
5967
+ #: addons/buy-creds/modules/buycred-module-core.php:1357
5968
+ msgid "Buy Now"
5969
+ msgstr ""
5970
+
5971
+ #: addons/buy-creds/modules/buycred-module-core.php:1519
5972
+ msgid "Pay Using"
5973
+ msgstr ""
5974
+
5975
+ #: addons/buy-creds/includes/buycred-functions.php:115
5976
+ msgid "Unknown Gateway"
5977
+ msgstr ""
5978
+
5979
+ #: addons/buy-creds/gateways/bank-transfer.php:59
5980
+ #: addons/buy-creds/gateways/bitpay.php:163
5981
+ #: addons/buy-creds/gateways/netbilling.php:144
5982
+ #: addons/buy-creds/gateways/zombaio.php:267
5983
+ #: addons/buy-creds/gateways/paypal-standard.php:207
5984
+ #: addons/buy-creds/gateways/skrill.php:186
5985
+ msgid "Please setup this gateway before attempting to make a purchase!"
5986
+ msgstr ""
5987
+
5988
+ #: addons/buy-creds/gateways/bank-transfer.php:139
5989
+ msgid "Continue"
5990
+ msgstr ""
5991
+
5992
+ #: addons/buy-creds/gateways/bank-transfer.php:167
5993
+ msgid "Checkout Logo"
5994
+ msgstr ""
5995
+
5996
+ #: addons/buy-creds/gateways/bank-transfer.php:173
5997
+ msgid "Bank Account Information"
5998
+ msgstr ""
5999
+
6000
+ #: addons/buy-creds/gateways/bank-transfer.php:177
6001
+ msgid "Bank transfer details to show the user on the checkout page."
6002
+ msgstr ""
6003
+
6004
+ #: addons/buy-creds/gateways/bank-transfer.php:186
6005
+ #: addons/buy-creds/gateways/bitpay.php:265
6006
+ #: addons/buy-creds/gateways/netbilling.php:234
6007
+ #: addons/buy-creds/gateways/paypal-standard.php:298
6008
+ #: addons/buy-creds/gateways/skrill.php:320
6009
+ msgid "Exchange Rates"
6010
+ msgstr ""
6011
+
6012
+ #: addons/buy-creds/gateways/bitpay.php:62
6013
+ #: addons/buy-creds/gateways/netbilling.php:92
6014
+ #: addons/buy-creds/gateways/paypal-standard.php:145
6015
+ #: addons/buy-creds/gateways/skrill.php:124
6016
+ msgid "Price mismatch. Expected: %s Received: %s"
6017
+ msgstr ""
6018
+
6019
+ #: addons/buy-creds/gateways/bitpay.php:68
6020
+ #: addons/buy-creds/gateways/paypal-standard.php:151
6021
+ #: addons/buy-creds/gateways/skrill.php:130
6022
+ msgid "Currency mismatch. Expected: %s Received: %s"
6023
+ msgstr ""
6024
+
6025
+ #: addons/buy-creds/gateways/bitpay.php:74
6026
+ #: addons/buy-creds/gateways/netbilling.php:98
6027
+ #: addons/buy-creds/gateways/paypal-standard.php:157
6028
+ #: addons/buy-creds/gateways/skrill.php:136
6029
+ msgid "Payment not completed. Received: %s"
6030
+ msgstr ""
6031
+
6032
+ #: addons/buy-creds/gateways/bitpay.php:85
6033
+ #: addons/buy-creds/gateways/netbilling.php:109
6034
+ #: addons/buy-creds/gateways/zombaio.php:237
6035
+ #: addons/buy-creds/gateways/paypal-standard.php:168
6036
+ #: addons/buy-creds/gateways/skrill.php:147
6037
+ msgid "Failed to credit users account."
6038
+ msgstr ""
6039
+
6040
+ #: addons/buy-creds/gateways/bitpay.php:208
6041
+ #: addons/buy-creds/gateways/bitpay.php:219
6042
+ #: addons/buy-creds/gateways/netbilling.php:190
6043
+ #: addons/buy-creds/gateways/zombaio.php:297
6044
+ #: addons/buy-creds/gateways/paypal-standard.php:261
6045
+ #: addons/buy-creds/gateways/skrill.php:275
6046
+ msgid "Processing payment &hellip;"
6047
+ msgstr ""
6048
+
6049
+ #: addons/buy-creds/gateways/bitpay.php:211
6050
+ msgid ""
6051
+ "Could not create a BitPay Invoice. Please contact the site administrator!"
6052
+ msgstr ""
6053
+
6054
+ #: addons/buy-creds/gateways/bitpay.php:212
6055
+ msgid "Bitpay returned the following error message:"
6056
+ msgstr ""
6057
+
6058
+ #: addons/buy-creds/gateways/bitpay.php:254
6059
+ msgid "Currency Code"
6060
+ msgstr ""
6061
+
6062
+ #: addons/buy-creds/gateways/bitpay.php:258
6063
+ #: addons/buy-creds/gateways/netbilling.php:227
6064
+ #: addons/buy-creds/gateways/paypal-standard.php:291
6065
+ #: addons/buy-creds/gateways/skrill.php:313
6066
+ msgid "Item Name"
6067
+ msgstr ""
6068
+
6069
+ #: addons/buy-creds/gateways/bitpay.php:262
6070
+ #: addons/buy-creds/gateways/netbilling.php:231
6071
+ #: addons/buy-creds/gateways/paypal-standard.php:295
6072
+ #: addons/buy-creds/gateways/skrill.php:317
6073
+ msgid "Description of the item being purchased by the user."
6074
+ msgstr ""
6075
+
6076
+ #: addons/buy-creds/gateways/bitpay.php:269
6077
+ msgid "Transaction Speed"
6078
+ msgstr ""
6079
+
6080
+ #: addons/buy-creds/gateways/bitpay.php:276
6081
+ msgid "High"
6082
+ msgstr ""
6083
+
6084
+ #: addons/buy-creds/gateways/bitpay.php:277
6085
+ msgid "Medium"
6086
+ msgstr ""
6087
+
6088
+ #: addons/buy-creds/gateways/bitpay.php:278
6089
+ msgid "Low"
6090
+ msgstr ""
6091
+
6092
+ #: addons/buy-creds/gateways/bitpay.php:291
6093
+ msgid "Full Notifications"
6094
+ msgstr ""
6095
+
6096
+ #: addons/buy-creds/gateways/netbilling.php:208
6097
+ msgid "Account ID"
6098
+ msgstr ""
6099
+
6100
+ #: addons/buy-creds/gateways/netbilling.php:214
6101
+ msgid "Site Tag"
6102
+ msgstr ""
6103
+
6104
+ #: addons/buy-creds/gateways/netbilling.php:220
6105
+ msgid "Order Integrity Key"
6106
+ msgstr ""
6107
+
6108
+ #: addons/buy-creds/gateways/netbilling.php:224
6109
+ msgid "Found under Step 12 on the Fraud Defense page."
6110
+ msgstr ""
6111
+
6112
+ #: addons/buy-creds/gateways/netbilling.php:238
6113
+ msgid "Postback CGI URL"
6114
+ msgstr ""
6115
+
6116
+ #: addons/buy-creds/gateways/netbilling.php:242
6117
+ msgid ""
6118
+ "For this gateway to work, you must login to your NETbilling account and edit "
6119
+ "your site. Under \"Default payment form settings\" make sure the Postback "
6120
+ "CGI URL is set to the above address and \"Return method\" is set to POST."
6121
+ msgstr ""
6122
+
6123
+ #: addons/buy-creds/gateways/netbilling.php:290
6124
+ msgid "Incorrect Credit Card number"
6125
+ msgstr ""
6126
+
6127
+ #: addons/buy-creds/gateways/netbilling.php:296
6128
+ msgid "The credit card entered is past its expiration date."
6129
+ msgstr ""
6130
+
6131
+ #: addons/buy-creds/gateways/netbilling.php:299
6132
+ msgid "The CVV2 number entered is not valid."
6133
+ msgstr ""
6134
+
6135
+ #: addons/buy-creds/gateways/netbilling.php:306
6136
+ msgid "The bank routing number entered is not valid."
6137
+ msgstr ""
6138
+
6139
+ #: addons/buy-creds/gateways/netbilling.php:310
6140
+ msgid "The bank account number entered is not valid."
6141
+ msgstr ""
6142
+
6143
+ #: addons/buy-creds/gateways/zombaio.php:204
6144
+ msgid "Duplicate transaction. Received: %s"
6145
+ msgstr ""
6146
+
6147
+ #: addons/buy-creds/gateways/zombaio.php:210
6148
+ msgid "Live transaction while debug mode is enabled! Received: %s"
6149
+ msgstr ""
6150
+
6151
+ #: addons/buy-creds/gateways/zombaio.php:315
6152
+ msgid "Site ID"
6153
+ msgstr ""
6154
+
6155
+ #: addons/buy-creds/gateways/zombaio.php:321
6156
+ msgid "GW Password"
6157
+ msgstr ""
6158
+
6159
+ #: addons/buy-creds/gateways/zombaio.php:327
6160
+ msgid "Pricing ID"
6161
+ msgstr ""
6162
+
6163
+ #: addons/buy-creds/gateways/zombaio.php:333
6164
+ #: addons/buy-creds/gateways/skrill.php:338
6165
+ msgid "Logo URL"
6166
+ msgstr ""
6167
+
6168
+ #: addons/buy-creds/gateways/zombaio.php:339
6169
+ msgid "IP Verification"
6170
+ msgstr ""
6171
+
6172
+ #: addons/buy-creds/gateways/zombaio.php:342
6173
+ msgid "Do not verify that callbacks are coming from Zombaio."
6174
+ msgstr ""
6175
+
6176
+ #: addons/buy-creds/gateways/zombaio.php:345
6177
+ msgid "Language"
6178
+ msgstr ""
6179
+
6180
+ #: addons/buy-creds/gateways/zombaio.php:352
6181
+ msgid "Postback URL (ZScript)"
6182
+ msgstr ""
6183
+
6184
+ #: addons/buy-creds/gateways/zombaio.php:356
6185
+ msgid ""
6186
+ "For this gateway to work, login to ZOA and set the Postback URL to the above "
6187
+ "address and click validate."
6188
+ msgstr ""
6189
+
6190
+ #: addons/buy-creds/gateways/paypal-standard.php:192
6191
+ #: addons/buy-creds/gateways/skrill.php:171
6192
+ msgid "Success"
6193
+ msgstr ""
6194
+
6195
+ #: addons/buy-creds/gateways/paypal-standard.php:193
6196
+ #: addons/buy-creds/gateways/skrill.php:172
6197
+ msgid "Thank you for your purchase"
6198
+ msgstr ""
6199
+
6200
+ #: addons/buy-creds/gateways/paypal-standard.php:256
6201
+ msgctxt "Return label. %s = Website name"
6202
+ msgid "Return to %s"
6203
+ msgstr ""
6204
+
6205
+ #: addons/buy-creds/gateways/paypal-standard.php:285
6206
+ msgid "Account Email"
6207
+ msgstr ""
6208
+
6209
+ #: addons/buy-creds/gateways/skrill.php:226
6210
+ msgid "Return to "
6211
+ msgstr ""
6212
+
6213
+ #: addons/buy-creds/gateways/skrill.php:258
6214
+ msgid "Product:"
6215
+ msgstr ""
6216
+
6217
+ #: addons/buy-creds/gateways/skrill.php:267
6218
+ msgid "Gift to:"
6219
+ msgstr ""
6220
+
6221
+ #: addons/buy-creds/gateways/skrill.php:268
6222
+ msgid "(author)"
6223
+ msgstr ""
6224
+
6225
+ #: addons/buy-creds/gateways/skrill.php:301
6226
+ msgid "Merchant Account Email"
6227
+ msgstr ""
6228
+
6229
+ #: addons/buy-creds/gateways/skrill.php:307
6230
+ msgid "Secret Word"
6231
+ msgstr ""
6232
+
6233
+ #: addons/buy-creds/gateways/skrill.php:324
6234
+ msgid "Confirmation Email"
6235
+ msgstr ""
6236
+
6237
+ #: addons/buy-creds/gateways/skrill.php:327
6238
+ msgid ""
6239
+ "Ask Skrill to send me a confirmation email for each successful purchase."
6240
+ msgstr ""
6241
+
6242
+ #: addons/buy-creds/gateways/skrill.php:330
6243
+ msgid "Checkout Page"
6244
+ msgstr ""
6245
+
6246
+ #: addons/buy-creds/gateways/skrill.php:335
6247
+ msgid ""
6248
+ "If left empty, your account email is used as title on the Skill Payment Page."
6249
+ msgstr ""
6250
+
6251
+ #: addons/buy-creds/gateways/skrill.php:340
6252
+ msgid ""
6253
+ "The URL to the image you want to use on the top of the gateway. For best "
6254
+ "integration results we recommend you use logos with dimensions up to 200px "
6255
+ "in width and 50px in height."
6256
+ msgstr ""
6257
+
6258
+ #: addons/buy-creds/gateways/skrill.php:343
6259
+ msgid "Confirmation Note"
6260
+ msgstr ""
6261
+
6262
+ #: addons/buy-creds/gateways/skrill.php:345
6263
+ msgid ""
6264
+ "Optional text to show user once a transaction has been successfully "
6265
+ "completed. This text is shown by Skrill."
6266
+ msgstr ""
6267
+
6268
+ #. Description of the plugin
6269
+ msgid "An adaptive points management system for WordPress powered websites."
6270
+ msgstr ""
6271
+
6272
+ #: modules/mycred-module-network.php:61 modules/mycred-module-network.php:62
6273
+ #: addons/gateway/carts/mycred-woocommerce.php:29
6274
+ msgid "myCRED"
6275
+ msgstr "myCRED"
6276
+
6277
+ #. URI of the plugin
6278
+ msgid "http://mycred.me"
6279
+ msgstr "http://mycred.me"
6280
+
6281
+ #. Author of the plugin
6282
+ msgid "Gabriel S Merovingi"
6283
+ msgstr "Gabriel S Merovingi"
6284
+
6285
+ #. Author URI of the plugin
6286
+ msgid "http://www.merovingi.com"
6287
+ msgstr "http://www.merovingi.com"
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
lang/mycred-es_ES.mo CHANGED
Binary file
lang/mycred-es_ES.po CHANGED
@@ -1,7224 +1,6517 @@
1
- msgid ""
2
- msgstr ""
3
- "Project-Id-Version: myCRED\n"
4
- "Report-Msgid-Bugs-To: http://mycred.me\n"
5
- "POT-Creation-Date: 2014-03-20 14:26+0100\n"
6
- "PO-Revision-Date: Fri Aug 12 2016 19:24:02 GMT+0200 (CEST)\n"
7
- "Last-Translator: mycreddemo <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"
11
- "Plural-Forms: nplurals=2; plural=n != 1\n"
12
- "MIME-Version: 1.0\n"
13
- "Content-Type: text/plain; charset=UTF-8\n"
14
- "Content-Transfer-Encoding: 8bit\n"
15
- "X-Poedit-SourceCharset: UTF-8\n"
16
- "X-Generator: Loco - https://localise.biz/\n"
17
- "X-Poedit-Basepath: .\n"
18
- "X-Poedit-KeywordsList: _:1;gettext:1;dgettext:2;ngettext:1,2;dngettext:2,3;"
19
- "__:1;_e:1;_c:1;_n:1,2;_n_noop:1,2;_nc:1,2;__ngettext:1,2;__ngettext_noop:1,2;"
20
- "_x:1,2c;_ex:1,2c;_nx:1,2,4c;_nx_noop:1,2,3c;_n_js:1,2;_nx_js:1,2,3c;"
21
- "esc_attr__:1;esc_html__:1;esc_attr_e:1;esc_html_e:1;esc_attr_x:1,2c;"
22
- "esc_html_x:1,2c;comments_number_link:2,3;t:1;st:1;trans:1;transChoice:1,2\n"
23
- "X-Poedit-SearchPath-0: /Users/gabriel/Sites/paypana/wp-"
24
- "content/plugins/mycred\n"
25
- "X-Poedit-SearchPath-1: .\n"
26
- "X-Loco-Target-Locale: es_ES"
27
-
28
- #: ../abstracts/mycred-abstract-hook.php:284
29
- msgid "/ Day"
30
- msgstr ""
31
-
32
- #: ../abstracts/mycred-abstract-hook.php:285
33
- msgid "/ Week"
34
- msgstr ""
35
-
36
- #: ../abstracts/mycred-abstract-hook.php:286
37
- msgid "/ Month"
38
- msgstr ""
39
-
40
- #: ../abstracts/mycred-abstract-hook.php:287
41
- msgid "in Total"
42
- msgstr ""
43
-
44
- #: ../modules/mycred-module-management.php:182
45
- msgid "Balance successfully updated"
46
- msgstr ""
47
-
48
- #: ../modules/mycred-module-management.php:187
49
- msgid "Request declined"
50
- msgstr ""
51
-
52
- #: ../modules/mycred-module-management.php:222
53
- msgid "No recent activity found."
54
- msgstr ""
55
-
56
- #: ../modules/mycred-module-management.php:235 ../modules/mycred-module-
57
- #: management.php:651 ../modules/mycred-module-log.php:93 ../modules/mycred-
58
- #: module-log.php:918 ../includes/classes/class.query-export.php:263 ..
59
- #: includes/classes/class.query-export.php:360 ../includes/classes/class.query-
60
- #: log.php:379 ../addons/transfer/includes/mycred-transfer-widgets.php:101
61
- msgid "Reference"
62
- msgstr ""
63
-
64
- #: ../modules/mycred-module-management.php:278
65
- msgid "View complete history"
66
- msgstr ""
67
-
68
- #: ../modules/mycred-module-management.php:623 ../modules/mycred-module-export.
69
- #: php:400 ../modules/mycred-module-export.php:448 ../addons/buy-
70
- #: creds/modules/buycred-module-core.php:1271
71
- msgid "Username"
72
- msgstr ""
73
-
74
- #: ../modules/mycred-module-management.php:635
75
- msgid "Total Balance"
76
- msgstr ""
77
-
78
- #: ../modules/mycred-module-management.php:661
79
- msgid "Log under a custom reference"
80
- msgstr ""
81
-
82
- #: ../modules/mycred-module-management.php:667
83
- msgid "lowercase without empty spaces"
84
- msgstr ""
85
-
86
- #: ../modules/mycred-module-management.php:680
87
- msgid "Update"
88
- msgstr ""
89
-
90
- #: ../modules/mycred-module-management.php:683
91
- msgid "Recent Activity"
92
- msgstr ""
93
-
94
- #: ../modules/mycred-module-settings.php:240
95
- msgid "Invalid decimal value."
96
- msgstr ""
97
-
98
- #: ../modules/mycred-module-settings.php:290
99
- msgid "Log Updated"
100
- msgstr ""
101
-
102
- #: ../modules/mycred-module-settings.php:433
103
- msgid ""
104
- "In order to adjust the number of decimal places you want to use we must "
105
- "update your log. It is highly recommended that you backup your current log "
106
- "before continuing!"
107
- msgstr ""
108
-
109
- #: ../modules/mycred-module-settings.php:458
110
- msgid "Update Database"
111
- msgstr ""
112
-
113
- #: ../modules/mycred-module-settings.php:469 ../modules/mycred-module-settings.
114
- #: php:481
115
- msgid "No decimals"
116
- msgstr ""
117
-
118
- #: ../modules/mycred-module-settings.php:493
119
- #, php-format
120
- msgid "<a href=\"%s\">Click here</a> to change your default point types setup."
121
- msgstr ""
122
-
123
- #: ../modules/mycred-module-settings.php:529 ../modules/mycred-module-addons.php:
124
- #: 369
125
- msgid "Documentation"
126
- msgstr ""
127
-
128
- #: ../modules/mycred-module-settings.php:547 ../includes/mycred-setup.php:279
129
- msgid "Singular"
130
- msgstr ""
131
-
132
- #: ../modules/mycred-module-settings.php:548 ../modules/mycred-module-settings.
133
- #: php:554 ../modules/mycred-module-settings.php:604 ../modules/mycred-module-
134
- #: settings.php:611 ../modules/mycred-module-settings.php:798 ../modules/mycred-
135
- #: module-settings.php:804 ../includes/mycred-setup.php:280 ../includes/mycred-
136
- #: setup.php:286 ../includes/mycred-setup.php:333 ../includes/mycred-setup.php:
137
- #: 340 ../addons/banking/services/mycred-service-central.php:111 ..
138
- #: addons/banking/services/mycred-service-interest.php:482 ..
139
- #: addons/banking/services/mycred-service-interest.php:500
140
- msgid "Required"
141
- msgstr ""
142
-
143
- #: ../modules/mycred-module-settings.php:553 ../includes/mycred-setup.php:285
144
- msgid "Plural"
145
- msgstr ""
146
-
147
- #: ../modules/mycred-module-settings.php:558 ../includes/mycred-setup.php:290
148
- msgid ""
149
- "These labels are used throughout the admin area and when presenting points "
150
- "to your users."
151
- msgstr ""
152
-
153
- #: ../modules/mycred-module-settings.php:590
154
- msgid "Set decimals to zero if you prefer to use whole numbers."
155
- msgstr ""
156
-
157
- #: ../modules/mycred-module-settings.php:592
158
- msgid ""
159
- "As this is your main point type, the value you select here will be the "
160
- "largest number of decimals your installation will support."
161
- msgstr ""
162
-
163
- #: ../modules/mycred-module-settings.php:603 ../includes/mycred-setup.php:332
164
- msgid "Point Editors"
165
- msgstr ""
166
-
167
- #: ../modules/mycred-module-settings.php:605 ../includes/mycred-setup.php:334
168
- msgid "The capability of users who can edit balances."
169
- msgstr ""
170
-
171
- #: ../modules/mycred-module-settings.php:610 ../includes/mycred-setup.php:339
172
- msgid "Point Administrators"
173
- msgstr ""
174
-
175
- #: ../modules/mycred-module-settings.php:612 ../includes/mycred-setup.php:341
176
- msgid "The capability of users who can edit settings."
177
- msgstr ""
178
-
179
- #: ../modules/mycred-module-settings.php:618 ../includes/mycred-setup.php:346
180
- msgid "Max. Amount"
181
- msgstr ""
182
-
183
- #: ../modules/mycred-module-settings.php:620 ../includes/mycred-setup.php:348
184
- msgid "The maximum amount allowed to be paid out in a single instance."
185
- msgstr ""
186
-
187
- #: ../modules/mycred-module-settings.php:625 ../includes/mycred-setup.php:353
188
- msgid "Exclude by User ID"
189
- msgstr ""
190
-
191
- #: ../modules/mycred-module-settings.php:626 ../includes/mycred-setup.php:354
192
- msgid "Optional"
193
- msgstr ""
194
-
195
- #: ../modules/mycred-module-settings.php:627 ../includes/mycred-setup.php:355
196
- msgid "Comma separated list of user IDs to exclude from using this point type."
197
- msgstr ""
198
-
199
- #: ../modules/mycred-module-settings.php:631 ../includes/mycred-setup.php:359
200
- msgid "Exclude point editors"
201
- msgstr ""
202
-
203
- #: ../modules/mycred-module-settings.php:634 ../includes/mycred-setup.php:362
204
- msgid "Exclude point administrators"
205
- msgstr ""
206
-
207
- #: ../modules/mycred-module-settings.php:644
208
- msgid "Other Settings"
209
- msgstr ""
210
-
211
- #: ../modules/mycred-module-settings.php:696
212
- msgid "Balance Meta Key"
213
- msgstr ""
214
-
215
- #: ../modules/mycred-module-settings.php:809
216
- msgid ""
217
- "The meta key must be lowercase and only contain letters or underscores. All "
218
- "other characters will be deleted!"
219
- msgstr ""
220
-
221
- #: ../modules/mycred-module-addons.php:273
222
- msgid ""
223
- "Gives you access to your myCRED Staticstics based on your users gains and "
224
- "loses."
225
- msgstr ""
226
-
227
- #: ../modules/mycred-module-addons.php:328
228
- msgid "Get More Add-ons"
229
- msgstr ""
230
-
231
- #: ../modules/mycred-module-addons.php:343
232
- msgid "Add-ons Reloaded"
233
- msgstr ""
234
-
235
- #: ../modules/mycred-module-log.php:215
236
- msgid "Invalid or empty reference"
237
- msgstr ""
238
-
239
- #: ../modules/mycred-module-log.php:220
240
- msgid "Log Entry cannot be empty"
241
- msgstr ""
242
-
243
- #: ../modules/mycred-module-log.php:241
244
- msgid "Could not save the new log entry"
245
- msgstr ""
246
-
247
- #: ../modules/mycred-module-log.php:262
248
- msgid "Log entry successfully updated"
249
- msgstr ""
250
-
251
- #: ../modules/mycred-module-log.php:307
252
- #, php-format
253
- msgid "1 Entry Deleted"
254
- msgid_plural "%d Entries Deleted"
255
- msgstr[0] ""
256
- msgstr[1] ""
257
-
258
- #: ../modules/mycred-module-log.php:469
259
- msgid "The log entry was successfully updated."
260
- msgstr ""
261
-
262
- #: ../modules/mycred-module-log.php:470
263
- msgid "The selected log entry could not be deleted."
264
- msgstr ""
265
-
266
- #: ../modules/mycred-module-log.php:507
267
- #, php-format
268
- msgctxt "e.g. Log entries from April 12th 2016"
269
- msgid "Log entries from %s"
270
- msgstr ""
271
-
272
- #: ../modules/mycred-module-log.php:565
273
- msgid ""
274
- "Warning. The required Mcrypt PHP Library is not installed on this server! "
275
- "Certain hooks and shortcodes will not work correctly!"
276
- msgstr ""
277
-
278
- #: ../modules/mycred-module-log.php:925
279
- msgid "Original Entry"
280
- msgstr ""
281
-
282
- #: ../modules/mycred-module-log.php:937
283
- msgid "Delete Entry"
284
- msgstr ""
285
-
286
- #: ../modules/mycred-module-log.php:942
287
- msgid "Update Entry"
288
- msgstr ""
289
-
290
- #: ../modules/mycred-module-network.php:141
291
- msgid "I am sorry but your network is too big to use these features."
292
- msgstr ""
293
-
294
- #: ../modules/mycred-module-export.php:358
295
- msgid "Make both format options available."
296
- msgstr ""
297
-
298
- #: ../modules/mycred-module-export.php:360
299
- msgid "Exports"
300
- msgstr ""
301
-
302
- #: ../modules/mycred-module-export.php:366
303
- msgid "Front End Exports"
304
- msgstr ""
305
-
306
- #: ../modules/mycred-module-export.php:382 ../modules/mycred-module-export.php:430
307
- msgid "Export Format"
308
- msgstr ""
309
-
310
- #: ../modules/mycred-module-export.php:398 ../modules/mycred-module-export.php:446
311
- msgid "File Name"
312
- msgstr ""
313
-
314
- #: ../modules/mycred-module-export.php:407
315
- msgid ""
316
- "If enabled, users will only be able to export their own log entries! Export "
317
- "tools becomes available wherever you are using the mycred_history shortcode "
318
- "or in the users profile."
319
- msgstr ""
320
-
321
- #: ../modules/mycred-module-export.php:414
322
- msgid "Back End Exports"
323
- msgstr ""
324
-
325
- #: ../modules/mycred-module-export.php:455
326
- msgid ""
327
- "Raw format should be used when you intend to use the export tool to backup "
328
- "or import entries in another installation. Formatted exports reflect what "
329
- "users see in their history archive."
330
- msgstr ""
331
-
332
- #: ../modules/mycred-module-hooks.php:84
333
- #, php-format
334
- msgid "Award %_plural% for visiting your website on a daily basis."
335
- msgstr ""
336
-
337
- #: ../modules/mycred-module-hooks.php:91
338
- #, php-format
339
- msgid "Award %_plural% for viewing content."
340
- msgstr ""
341
-
342
- #: ../modules/mycred-module-hooks.php:98
343
- #, php-format
344
- msgid "Award %_plural% for logging in."
345
- msgstr ""
346
-
347
- #: ../modules/mycred-module-hooks.php:105
348
- #, php-format
349
- msgid "Award %_plural% for publishing content."
350
- msgstr ""
351
-
352
- #: ../modules/mycred-module-hooks.php:111
353
- #, php-format
354
- msgid "%plural% for trashed content"
355
- msgstr ""
356
-
357
- #: ../modules/mycred-module-hooks.php:112
358
- msgid "Award or Deduct %_plural% when content gets trashed."
359
- msgstr ""
360
-
361
- #: ../modules/mycred-module-hooks.php:126
362
- #, php-format
363
- msgid "Award %_plural% for clicks on links generated by the %shortcode% shortcode."
364
- msgstr ""
365
-
366
- #: ../modules/mycred-module-hooks.php:133
367
- #, php-format
368
- msgid "Award %_plural% for watches videos embedded using the %shortcode% shortcode."
369
- msgstr ""
370
-
371
- #: ../modules/mycred-module-hooks.php:140
372
- #, php-format
373
- msgid "Award %_plural% for signup or visitor referrals."
374
- msgstr ""
375
-
376
- #: ../modules/mycred-module-hooks.php:264
377
- #, php-format
378
- msgid "%s Hooks %s"
379
- msgstr ""
380
-
381
- #: ../modules/mycred-module-hooks.php:270
382
- msgid "Available Hooks"
383
- msgstr ""
384
-
385
- #: ../modules/mycred-module-hooks.php:270
386
- msgctxt "removing-widget"
387
- msgid "Deactivate"
388
- msgstr ""
389
-
390
- #: ../modules/mycred-module-hooks.php:274
391
- msgid ""
392
- "To activate a hook drag it to a sidebar or click on it. To deactivate a hook "
393
- "and delete its settings, drag it back."
394
- msgstr ""
395
-
396
- #: ../modules/mycred-module-hooks.php:345
397
- msgid "Add Hook"
398
- msgstr ""
399
-
400
- #: ../modules/mycred-module-hooks.php:384
401
- msgid "Active Hooks"
402
- msgstr ""
403
-
404
- #: ../modules/mycred-module-hooks.php:387
405
- msgid "The following hooks are used for all users."
406
- msgstr ""
407
-
408
- #: ../modules/mycred-module-hooks.php:474
409
- #, php-format
410
- msgid "The following hooks are used for %s."
411
- msgstr ""
412
-
413
- #: ../modules/mycred-module-buddypress.php:456
414
- #, php-format
415
- msgid "Members and visitors can view other members %_singular% balance."
416
- msgstr ""
417
-
418
- #: ../plugins/mycred-hook-wp-postratings.php:15
419
- msgid "Post Ratings"
420
- msgstr ""
421
-
422
- #: ../plugins/mycred-hook-wp-postratings.php:16
423
- #, php-format
424
- msgid ""
425
- "Awards %_plural% for post ratings. Supports awarding %_plural% both to post "
426
- "author and the user rating."
427
- msgstr ""
428
-
429
- #: ../plugins/mycred-hook-wp-postratings.php:84
430
- msgid "Based on rating"
431
- msgstr ""
432
-
433
- #: ../plugins/mycred-hook-wp-postratings.php:159 ../includes/classes/class.query-
434
- #: log.php:1629
435
- msgid "Adding a Rating"
436
- msgstr ""
437
-
438
- #: ../plugins/mycred-hook-wp-postratings.php:169 ../plugins/mycred-hook-wp-
439
- #: postratings.php:188
440
- msgid "Use the Rating Value instead of the amount set here."
441
- msgstr ""
442
-
443
- #: ../plugins/mycred-hook-wp-postratings.php:178 ../includes/classes/class.query-
444
- #: log.php:1630
445
- msgid "Receiving a Rating"
446
- msgstr ""
447
-
448
- #: ../plugins/mycred-hook-buddypress.php:610
449
- msgid "New Profile Activity"
450
- msgstr ""
451
-
452
- #: ../plugins/mycred-hook-buddypress.php:627
453
- msgid "Deleted Profile Activity"
454
- msgstr ""
455
-
456
- #: ../plugins/mycred-hook-buddypress.php:644
457
- msgid "New Profile Avatar"
458
- msgstr ""
459
-
460
- #: ../plugins/mycred-hook-buddypress.php:661
461
- msgid "New Profile Cover Image"
462
- msgstr ""
463
-
464
- #: ../plugins/mycred-hook-buddypress.php:688
465
- #, php-format
466
- msgid ""
467
- "Users with zero balance can not add friends. Requires that you deduct "
468
- "%_plural% for adding a new friend."
469
- msgstr ""
470
-
471
- #: ../plugins/mycred-hook-buddypress.php:698
472
- msgid "Ending Friendship"
473
- msgstr ""
474
-
475
- #: ../plugins/mycred-hook-buddypress.php:711
476
- msgid "New Comment"
477
- msgstr ""
478
-
479
- #: ../plugins/mycred-hook-buddypress.php:741
480
- msgid "Favorit Activity"
481
- msgstr ""
482
-
483
- #: ../plugins/mycred-hook-buddypress.php:758
484
- msgid "Removing Favorit Activity"
485
- msgstr ""
486
-
487
- #: ../plugins/mycred-hook-buddypress.php:771
488
- msgid "New Private Message"
489
- msgstr ""
490
-
491
- #: ../plugins/mycred-hook-buddypress.php:1564
492
- #, php-format
493
- msgid "%plural% for New Cover Image"
494
- msgstr ""
495
-
496
- #: ../plugins/mycred-hook-affiliatewp.php:15
497
- msgid "AffiliateWP"
498
- msgstr ""
499
-
500
- #: ../plugins/mycred-hook-affiliatewp.php:16
501
- #, php-format
502
- msgid ""
503
- "Awards %_plural% for affiliate signups, referring visitors and store sale "
504
- "referrals."
505
- msgstr ""
506
-
507
- #: ../plugins/mycred-hook-affiliatewp.php:222
508
- msgid "Affiliate Signup"
509
- msgstr ""
510
-
511
- #: ../plugins/mycred-hook-affiliatewp.php:252
512
- msgid "Referring Sales"
513
- msgstr ""
514
-
515
- #: ../plugins/mycred-hook-affiliatewp.php:255
516
- msgid "Pay a set amount for all referrals."
517
- msgstr ""
518
-
519
- #: ../plugins/mycred-hook-affiliatewp.php:256
520
- #, php-format
521
- msgid "AffiliateWP will use %plural% as currency so pay the referral amount."
522
- msgstr ""
523
-
524
- #: ../plugins/mycred-hook-affiliatewp.php:257
525
- msgid "Apply an exchange rate against the referral amount."
526
- msgstr ""
527
-
528
- #: ../plugins/mycred-hook-affiliatewp.php:265
529
- msgid "Log template - Payout"
530
- msgstr ""
531
-
532
- #: ../plugins/mycred-hook-affiliatewp.php:270
533
- msgid "Log template - Refund"
534
- msgstr ""
535
-
536
- #: ../plugins/mycred-hook-wp-favorite-posts.php:234
537
- msgid "Authors Content added to favorites"
538
- msgstr ""
539
-
540
- #: ../plugins/mycred-hook-wp-favorite-posts.php:265
541
- msgid "Removing Content from Favorites (Author)"
542
- msgstr ""
543
-
544
- #: ../plugins/mycred-hook-bbPress.php:540
545
- #, php-format
546
- msgid "Show users %_plural% balance in their bbPress profiles."
547
- msgstr ""
548
-
549
- #: ../includes/mycred-setup.php:106
550
- #, php-format
551
- msgid ""
552
- "Before you can begin using %s, you must setup your first point type. This "
553
- "includes what you want to call your points, how these points are presented "
554
- "and who has access to it."
555
- msgstr ""
556
-
557
- #: ../includes/mycred-setup.php:111
558
- msgid "Your First Point Type"
559
- msgstr ""
560
-
561
- #: ../includes/mycred-setup.php:127
562
- msgid "Advanced Settings"
563
- msgstr ""
564
-
565
- #: ../includes/mycred-setup.php:133
566
- msgid "Change Default Point Type Key"
567
- msgstr ""
568
-
569
- #: ../includes/mycred-setup.php:135
570
- msgid ""
571
- "You can change the meta key used to store the default point type using the "
572
- "MYCRED_DEFAULT_TYPE_KEY constant. Copy the above code to your wp-config.php "
573
- "file to use."
574
- msgstr ""
575
-
576
- #: ../includes/mycred-setup.php:136
577
- msgid ""
578
- "If you intend to change the default meta key, you should do so before "
579
- "continuing on in this setup!"
580
- msgstr ""
581
-
582
- #: ../includes/mycred-setup.php:139
583
- msgid "Whitelabel"
584
- msgstr ""
585
-
586
- #: ../includes/mycred-setup.php:141
587
- msgid ""
588
- "You can re-label myCRED using the MYCRED_DEFAULT_LABEL constant. Copy the "
589
- "above code to your wp-config.php file to use."
590
- msgstr ""
591
-
592
- #: ../includes/mycred-setup.php:149
593
- msgid "Create Point Type"
594
- msgstr ""
595
-
596
- #: ../includes/mycred-setup.php:149
597
- msgid "Hide"
598
- msgstr ""
599
-
600
- #: ../includes/mycred-setup.php:149 ../includes/mycred-setup.php:149
601
- msgid "Advanced"
602
- msgstr ""
603
-
604
- #: ../includes/mycred-setup.php:155
605
- msgid "Processing ..."
606
- msgstr ""
607
-
608
- #: ../includes/mycred-setup.php:160
609
- msgid "Setup Complete!"
610
- msgstr ""
611
-
612
- #: ../includes/mycred-setup.php:161
613
- msgid "Congratulations! You are now ready to use myCRED. What's next?"
614
- msgstr ""
615
-
616
- #: ../includes/mycred-setup.php:166
617
- msgid "Enabling Hooks"
618
- msgstr ""
619
-
620
- #: ../includes/mycred-setup.php:167
621
- msgid ""
622
- "If you intend to give your users points for interacting with your website "
623
- "automatically, your next step should be to enable and setup the hooks you "
624
- "want to use."
625
- msgstr ""
626
-
627
- #: ../includes/mycred-setup.php:168
628
- msgid "Setup Hooks"
629
- msgstr ""
630
-
631
- #: ../includes/mycred-setup.php:172
632
- msgid ""
633
- "If you want to use advanced features such as Transfers, Point Purchases etc. "
634
- "your next step should be to enable and setup your add-ons."
635
- msgstr ""
636
-
637
- #: ../includes/mycred-setup.php:173
638
- msgid "Setup Add-ons"
639
- msgstr ""
640
-
641
- #: ../includes/mycred-setup.php:176
642
- msgid "Adjust Settings"
643
- msgstr ""
644
-
645
- #: ../includes/mycred-setup.php:177
646
- msgid ""
647
- "If you need to make further changes to your settings or add new point types, "
648
- "you can visit your default point type's settings."
649
- msgstr ""
650
-
651
- #: ../includes/mycred-setup.php:178
652
- msgid "View Settings"
653
- msgstr ""
654
-
655
- #: ../includes/mycred-setup.php:322
656
- msgid "Set to decimals to zero if you prefer to use whole numbers."
657
- msgstr ""
658
-
659
- #: ../includes/mycred-setup.php:442
660
- msgid "Please make sure you fill out all required fields!"
661
- msgstr ""
662
-
663
- #: ../includes/shortcodes/mycred_exchange.php:27 ..
664
- #: includes/shortcodes/mycred_hook_table.php:24 ..
665
- #: includes/shortcodes/mycred_give.php:29
666
- msgid "Point type not found."
667
- msgstr ""
668
-
669
- #: ../includes/shortcodes/mycred_hook_table.php:21
670
- msgid "No instances found for this point type"
671
- msgstr ""
672
-
673
- #: ../includes/shortcodes/mycred_hook_table.php:79
674
- msgid "Instance"
675
- msgstr ""
676
-
677
- #: ../includes/mycred-remote.php:619
678
- msgid "16, 24 or 32 characters"
679
- msgstr ""
680
-
681
- #: ../includes/classes/class.query-export.php:263
682
- msgid "Reference ID"
683
- msgstr ""
684
-
685
- #: ../includes/classes/class.query-export.php:263
686
- msgid "Data"
687
- msgstr ""
688
-
689
- #: ../includes/classes/class.query-export.php:464
690
- msgid "Export log entries raw"
691
- msgstr ""
692
-
693
- #: ../includes/classes/class.query-export.php:465
694
- msgid "Export log entries formatted"
695
- msgstr ""
696
-
697
- #: ../includes/classes/class.query-export.php:482
698
- msgid "All Log Entries"
699
- msgstr ""
700
-
701
- #: ../includes/classes/class.query-export.php:492
702
- msgid "Users Log Entries"
703
- msgstr ""
704
-
705
- #: ../includes/classes/class.query-export.php:493
706
- msgid "Export History"
707
- msgstr ""
708
-
709
- #: ../includes/classes/class.query-log.php:489
710
- msgid "Bulk Actions"
711
- msgstr ""
712
-
713
- #: ../includes/classes/class.query-log.php:490
714
- msgid "Export Raw"
715
- msgstr ""
716
-
717
- #: ../includes/classes/class.query-log.php:491
718
- msgid "Export Formatted"
719
- msgstr ""
720
-
721
- #: ../includes/classes/class.query-log.php:507
722
- msgid "Apply"
723
- msgstr ""
724
-
725
- #: ../includes/classes/class.query-log.php:544
726
- msgid "User ID, Username, Email or Nicename"
727
- msgstr ""
728
-
729
- #: ../includes/classes/class.query-log.php:610
730
- msgid "Log entries navigation"
731
- msgstr ""
732
-
733
- #: ../includes/classes/class.query-log.php:735
734
- #, php-format
735
- msgid "1 entry"
736
- msgid_plural "%d entries"
737
- msgstr[0] ""
738
- msgstr[1] ""
739
-
740
- #: ../includes/classes/class.query-log.php:765
741
- msgid "First page"
742
- msgstr ""
743
-
744
- #: ../includes/classes/class.query-log.php:775
745
- msgid "Previous page"
746
- msgstr ""
747
-
748
- #: ../includes/classes/class.query-log.php:782 ../includes/classes/class.query-
749
- #: log.php:785
750
- msgid "Current Page"
751
- msgstr ""
752
-
753
- #: ../includes/classes/class.query-log.php:791
754
- #, php-format
755
- msgctxt "paging"
756
- msgid "%1$s of %2$s"
757
- msgstr ""
758
-
759
- #: ../includes/classes/class.query-log.php:798
760
- msgid "Next page"
761
- msgstr ""
762
-
763
- #: ../includes/classes/class.query-log.php:808
764
- msgid "Last page"
765
- msgstr ""
766
-
767
- #: ../includes/classes/class.query-log.php:868 ../includes/classes/class.query-
768
- #: log.php:889
769
- msgid "Select all"
770
- msgstr ""
771
-
772
- #: ../includes/classes/class.query-log.php:972
773
- msgid "Select entry"
774
- msgstr ""
775
-
776
- #: ../includes/classes/class.query-log.php:993
777
- msgid "Show more details"
778
- msgstr ""
779
-
780
- #: ../includes/classes/class.query-log.php:1017
781
- msgid "Filter by Date"
782
- msgstr ""
783
-
784
- #: ../includes/classes/class.query-log.php:1066
785
- msgid "Filter by User"
786
- msgstr ""
787
-
788
- #: ../includes/classes/class.query-log.php:1068
789
- msgid "Filter by ID"
790
- msgstr ""
791
-
792
- #: ../includes/classes/class.query-log.php:1562
793
- msgid "Profile Update Removal"
794
- msgstr ""
795
-
796
- #: ../includes/classes/class.query-log.php:1564
797
- msgid "Profile Cover Upload"
798
- msgstr ""
799
-
800
- #: ../includes/classes/class.query-log.php:1569
801
- msgid "Add Activity to Favorites"
802
- msgstr ""
803
-
804
- #: ../includes/classes/class.query-log.php:1570
805
- msgid "Remove Activity from Favorites"
806
- msgstr ""
807
-
808
- #: ../includes/classes/class.query-log.php:1582
809
- msgid "New Group Cover"
810
- msgstr ""
811
-
812
- #: ../includes/classes/class.query-log.php:1622
813
- msgid "Affiliate Signup (AffiliateWP)"
814
- msgstr ""
815
-
816
- #: ../includes/classes/class.query-log.php:1623
817
- msgid "Referred Visit (AffiliateWP)"
818
- msgstr ""
819
-
820
- #: ../includes/classes/class.query-log.php:1624
821
- msgid "Affiliate Referral (AffiliateWP)"
822
- msgstr ""
823
-
824
- #: ../includes/classes/class.query-log.php:1625
825
- msgid "Referral Refund (AffiliateWP)"
826
- msgstr ""
827
-
828
- #: ../includes/classes/class.query-log.php:1645
829
- msgid "Recurring Payout"
830
- msgstr ""
831
-
832
- #: ../includes/classes/class.query-log.php:1649
833
- msgid "Badge Reward"
834
- msgstr ""
835
-
836
- #: ../includes/classes/class.query-log.php:1666
837
- msgid "Store Reward (WooCommerce)"
838
- msgstr ""
839
-
840
- #: ../includes/classes/class.query-log.php:1667
841
- msgid "Product Review (WooCommerce)"
842
- msgstr ""
843
-
844
- #: ../includes/classes/class.query-log.php:1671
845
- msgid "Store Reward (MarketPress)"
846
- msgstr ""
847
-
848
- #: ../includes/classes/class.query-log.php:1690
849
- msgid "Content Purchase"
850
- msgstr ""
851
-
852
- #: ../includes/classes/class.query-log.php:1691
853
- msgid "Content Sale"
854
- msgstr ""
855
-
856
- #: ../includes/mycred-rest-api.php:114 ../includes/mycred-rest-api.php:135 ..
857
- #: includes/mycred-rest-api.php:156 ../includes/mycred-rest-api.php:176
858
- msgid "message"
859
- msgstr ""
860
-
861
- #: ../includes/mycred-install.php:63
862
- msgid "myCRED requires WordPress 4.0 or higher. Version detected:"
863
- msgstr ""
864
-
865
- #: ../includes/mycred-install.php:68
866
- msgid "myCRED requires PHP 5.3 or higher. Version detected: "
867
- msgstr ""
868
-
869
- #: ../includes/mycred-widgets.php:439
870
- msgid "Timeframe"
871
- msgstr ""
872
-
873
- #: ../includes/mycred-widgets.php:441
874
- msgid ""
875
- "Option to limit the leaderboard based on a specific timeframe. Leave empty "
876
- "if not used."
877
- msgstr ""
878
-
879
- #: ../includes/mycred-functions.php:2569
880
- msgid "per day"
881
- msgstr ""
882
-
883
- #: ../includes/mycred-functions.php:2571
884
- msgid "per week"
885
- msgstr ""
886
-
887
- #: ../includes/mycred-functions.php:2573
888
- msgid "per month"
889
- msgstr ""
890
-
891
- #: ../includes/mycred-functions.php:2575
892
- msgid "in total"
893
- msgstr ""
894
-
895
- #: ../includes/mycred-functions.php:2577 ../includes/mycred-functions.php:2581
896
- #, php-format
897
- msgid "Maximum once"
898
- msgid_plural "Maximum %d times"
899
- msgstr[0] ""
900
- msgstr[1] ""
901
-
902
- #: ../includes/mycred-functions.php:2608
903
- #, php-format
904
- msgctxt "ex. 21st."
905
- msgid "%dst"
906
- msgstr ""
907
-
908
- #: ../includes/mycred-functions.php:2615
909
- #, php-format
910
- msgctxt "ex. 32nd."
911
- msgid "%dnd"
912
- msgstr ""
913
-
914
- #: ../includes/mycred-functions.php:2622
915
- #, php-format
916
- msgctxt "ex. 43rd."
917
- msgid "%drd"
918
- msgstr ""
919
-
920
- #: ../includes/mycred-functions.php:2633
921
- #, php-format
922
- msgctxt "ex. 50th"
923
- msgid "%dth"
924
- msgstr ""
925
-
926
- #. Description of the plugin
927
- msgid "An adaptive points management system for WordPress powered websites."
928
- msgstr ""
929
-
930
- #: ../addons/banking/myCRED-addon-banking.php:142
931
- #, php-format
932
- msgid ""
933
- "Instead of creating %_plural% out of thin-air, all payouts are made from a "
934
- "nominated \"Central Bank\" account. Any %_plural% a user spends or loses are "
935
- "deposited back into this account. If the central bank runs out of %_plural%, "
936
- "no %_plural% will be paid out."
937
- msgstr ""
938
-
939
- #: ../addons/banking/myCRED-addon-banking.php:151
940
- msgid ""
941
- "Offer your users interest on the %_plural% they earn on your website. The "
942
- "interest is compounded daily."
943
- msgstr ""
944
-
945
- #: ../addons/banking/myCRED-addon-banking.php:202
946
- msgid "New Recurring Payout"
947
- msgstr ""
948
-
949
- #: ../addons/banking/myCRED-addon-banking.php:203
950
- msgid "Edit Recurring Payout"
951
- msgstr ""
952
-
953
- #: ../addons/banking/myCRED-addon-banking.php:205
954
- msgid "Please fill out all required fields that are highlighted in red."
955
- msgstr ""
956
-
957
- #: ../addons/banking/myCRED-addon-banking.php:206
958
- msgid "Are you sure you want to remove this schedule? This can not be undone!"
959
- msgstr ""
960
-
961
- #: ../addons/banking/myCRED-addon-banking.php:271
962
- msgid "Warning"
963
- msgstr ""
964
-
965
- #: ../addons/banking/myCRED-addon-banking.php:271
966
- msgid ""
967
- "This banking service uses the WordPress CRON to schedule events. If the "
968
- "WordPress CRON is disabled, this service will not work correctly."
969
- msgstr ""
970
-
971
- #: ../addons/banking/services/mycred-service-central.php:110
972
- msgid "Central Bank Account"
973
- msgstr ""
974
-
975
- #: ../addons/banking/services/mycred-service-central.php:113
976
- msgid "The ID of the user representing the central bank."
977
- msgstr ""
978
-
979
- #: ../addons/banking/services/mycred-service-interest.php:429
980
- msgid "Daily Compound Schedule"
981
- msgstr ""
982
-
983
- #: ../addons/banking/services/mycred-service-interest.php:432 ..
984
- #: addons/banking/services/mycred-service-interest.php:457 ..
985
- #: addons/banking/services/mycred-service-payouts.php:726
986
- msgid "Year"
987
- msgstr ""
988
-
989
- #: ../addons/banking/services/mycred-service-interest.php:433 ..
990
- #: addons/banking/services/mycred-service-interest.php:458 ..
991
- #: addons/banking/services/mycred-service-payouts.php:732 ..
992
- #: addons/banking/includes/mycred-banking-functions.php:95
993
- msgid "Month"
994
- msgstr ""
995
-
996
- #: ../addons/banking/services/mycred-service-interest.php:434 ..
997
- #: addons/banking/services/mycred-service-interest.php:459 ..
998
- #: addons/banking/includes/mycred-banking-functions.php:85
999
- msgid "Day"
1000
- msgstr ""
1001
-
1002
- #: ../addons/banking/services/mycred-service-interest.php:454
1003
- msgid "Payout Schedule"
1004
- msgstr ""
1005
-
1006
- #: ../addons/banking/services/mycred-service-interest.php:493
1007
- msgid "Payout Frequency"
1008
- msgstr ""
1009
-
1010
- #: ../addons/banking/services/mycred-service-interest.php:506
1011
- msgid "Payout Log Table"
1012
- msgstr ""
1013
-
1014
- #: ../addons/banking/services/mycred-service-interest.php:519
1015
- msgid ""
1016
- "Changing the payout period once the service is enabled, will only take "
1017
- "effect once the currently scheduled payout runs. To change this, you will "
1018
- "also need to adjust the payout schedule above."
1019
- msgstr ""
1020
-
1021
- #: ../addons/banking/services/mycred-service-interest.php:524
1022
- msgid "Exclude by ID"
1023
- msgstr ""
1024
-
1025
- #: ../addons/banking/services/mycred-service-interest.php:535
1026
- msgid "Exclude by Role"
1027
- msgstr ""
1028
-
1029
- #: ../addons/banking/services/mycred-service-interest.php:539
1030
- msgid "Roles to exclude"
1031
- msgstr ""
1032
-
1033
- #: ../addons/banking/services/mycred-service-interest.php:655
1034
- msgid "Leave empty to pay the default rate."
1035
- msgstr ""
1036
-
1037
- #: ../addons/banking/services/mycred-service-payouts.php:30
1038
- msgid "Waiting to Start"
1039
- msgstr ""
1040
-
1041
- #: ../addons/banking/services/mycred-service-payouts.php:32
1042
- msgid "Running"
1043
- msgstr ""
1044
-
1045
- #: ../addons/banking/services/mycred-service-payouts.php:33
1046
- msgid "Finished"
1047
- msgstr ""
1048
-
1049
- #: ../addons/banking/services/mycred-service-payouts.php:34
1050
- msgid "Stopped"
1051
- msgstr ""
1052
-
1053
- #: ../addons/banking/services/mycred-service-payouts.php:444
1054
- msgid "Not yet started"
1055
- msgstr ""
1056
-
1057
- #: ../addons/banking/services/mycred-service-payouts.php:455
1058
- msgid "Currently Running"
1059
- msgstr ""
1060
-
1061
- #: ../addons/banking/services/mycred-service-payouts.php:470
1062
- msgid "View Schedule"
1063
- msgstr ""
1064
-
1065
- #: ../addons/banking/services/mycred-service-payouts.php:470 ..
1066
- #: addons/stats/widgets/mycred-stats-widget-daily-loses.php:151 ..
1067
- #: addons/stats/widgets/mycred-stats-widget-daily-gains.php:151
1068
- msgid "View"
1069
- msgstr ""
1070
-
1071
- #: ../addons/banking/services/mycred-service-payouts.php:470
1072
- msgid "Delete Schedule"
1073
- msgstr ""
1074
-
1075
- #: ../addons/banking/services/mycred-service-payouts.php:521 ..
1076
- #: addons/banking/services/mycred-service-payouts.php:764
1077
- msgid "Min. Balance"
1078
- msgstr ""
1079
-
1080
- #: ../addons/banking/services/mycred-service-payouts.php:524 ..
1081
- #: addons/banking/services/mycred-service-payouts.php:771
1082
- msgid "Max. Balance"
1083
- msgstr ""
1084
-
1085
- #: ../addons/banking/services/mycred-service-payouts.php:529
1086
- msgid "Exclude Users"
1087
- msgstr ""
1088
-
1089
- #: ../addons/banking/services/mycred-service-payouts.php:531
1090
- msgid "Include Users"
1091
- msgstr ""
1092
-
1093
- #: ../addons/banking/services/mycred-service-payouts.php:538
1094
- msgid "Exclude Roles"
1095
- msgstr ""
1096
-
1097
- #: ../addons/banking/services/mycred-service-payouts.php:540
1098
- msgid "Include Roles"
1099
- msgstr ""
1100
-
1101
- #: ../addons/banking/services/mycred-service-payouts.php:557 ..
1102
- #: addons/banking/services/mycred-service-payouts.php:877
1103
- msgid "Job Title"
1104
- msgstr ""
1105
-
1106
- #: ../addons/banking/services/mycred-service-payouts.php:571
1107
- msgid "Start Date"
1108
- msgstr ""
1109
-
1110
- #: ../addons/banking/services/mycred-service-payouts.php:577
1111
- msgid "Eligible"
1112
- msgstr ""
1113
-
1114
- #: ../addons/banking/services/mycred-service-payouts.php:578
1115
- #, php-format
1116
- msgid "1 User"
1117
- msgid_plural "%d Users"
1118
- msgstr[0] ""
1119
- msgstr[1] ""
1120
-
1121
- #: ../addons/banking/services/mycred-service-payouts.php:583
1122
- msgid "Runs"
1123
- msgstr ""
1124
-
1125
- #: ../addons/banking/services/mycred-service-payouts.php:584
1126
- msgid "Infinite"
1127
- msgstr ""
1128
-
1129
- #: ../addons/banking/services/mycred-service-payouts.php:607
1130
- msgid "Will payout even if the central bank account has run out of funds."
1131
- msgstr ""
1132
-
1133
- #: ../addons/banking/services/mycred-service-payouts.php:612
1134
- msgid "Paid Out"
1135
- msgstr ""
1136
-
1137
- #: ../addons/banking/services/mycred-service-payouts.php:613
1138
- msgid "Completed"
1139
- msgstr ""
1140
-
1141
- #: ../addons/banking/services/mycred-service-payouts.php:614
1142
- msgid "Misses"
1143
- msgstr ""
1144
-
1145
- #: ../addons/banking/services/mycred-service-payouts.php:615
1146
- msgid "Runs Left"
1147
- msgstr ""
1148
-
1149
- #: ../addons/banking/services/mycred-service-payouts.php:635
1150
- msgid ""
1151
- "A miss is when a payout was declined by the plugin. This can be due to "
1152
- "custom code declining the payout or if the user is excluded."
1153
- msgstr ""
1154
-
1155
- #: ../addons/banking/services/mycred-service-payouts.php:680
1156
- msgid "Schedule Title"
1157
- msgstr ""
1158
-
1159
- #: ../addons/banking/services/mycred-service-payouts.php:692 ..
1160
- #: addons/banking/services/mycred-service-payouts.php:879
1161
- msgid "Frequency"
1162
- msgstr ""
1163
-
1164
- #: ../addons/banking/services/mycred-service-payouts.php:713
1165
- msgid "Payout even if the central bank account runs out of funds."
1166
- msgstr ""
1167
-
1168
- #: ../addons/banking/services/mycred-service-payouts.php:720
1169
- msgid "First Payout"
1170
- msgstr ""
1171
-
1172
- #: ../addons/banking/services/mycred-service-payouts.php:752
1173
- msgid "Repeat"
1174
- msgstr ""
1175
-
1176
- #: ../addons/banking/services/mycred-service-payouts.php:754
1177
- msgid "Use -1 for infinite runs."
1178
- msgstr ""
1179
-
1180
- #: ../addons/banking/services/mycred-service-payouts.php:766 ..
1181
- #: addons/banking/services/mycred-service-payouts.php:773 ../addons/sell-
1182
- #: content/myCRED-addon-sell-content.php:431 ../addons/sell-content/myCRED-addon-
1183
- #: sell-content.php:436
1184
- msgid "Use zero to disable."
1185
- msgstr ""
1186
-
1187
- #: ../addons/banking/services/mycred-service-payouts.php:782
1188
- msgid "Limit by ID"
1189
- msgstr ""
1190
-
1191
- #: ../addons/banking/services/mycred-service-payouts.php:796
1192
- msgid "Limit by Role(s)"
1193
- msgstr ""
1194
-
1195
- #: ../addons/banking/services/mycred-service-payouts.php:823
1196
- msgid "Schedule"
1197
- msgstr ""
1198
-
1199
- #: ../addons/banking/services/mycred-service-payouts.php:844
1200
- msgid "Include:"
1201
- msgstr ""
1202
-
1203
- #: ../addons/banking/services/mycred-service-payouts.php:845
1204
- msgid "Exclude:"
1205
- msgstr ""
1206
-
1207
- #: ../addons/banking/services/mycred-service-payouts.php:870
1208
- msgid ""
1209
- "As long as this service remains disabled, none of your scheduled payouts "
1210
- "will run!"
1211
- msgstr ""
1212
-
1213
- #: ../addons/banking/services/mycred-service-payouts.php:873
1214
- msgid "Schedules"
1215
- msgstr ""
1216
-
1217
- #: ../addons/banking/services/mycred-service-payouts.php:880
1218
- msgid "Last Ran"
1219
- msgstr ""
1220
-
1221
- #: ../addons/banking/services/mycred-service-payouts.php:881
1222
- msgid "Next Run"
1223
- msgstr ""
1224
-
1225
- #: ../addons/banking/services/mycred-service-payouts.php:889
1226
- msgid "No schedules found."
1227
- msgstr ""
1228
-
1229
- #: ../addons/banking/services/mycred-service-payouts.php:953
1230
- msgid "Schedule Added"
1231
- msgstr ""
1232
-
1233
- #: ../addons/banking/services/mycred-service-payouts.php:960
1234
- msgid ""
1235
- "While the recurring payout has been successfully saved, based on the limits "
1236
- "you set, right now there are no users that are eligible for a payout!"
1237
- msgstr ""
1238
-
1239
- #: ../addons/banking/services/mycred-service-payouts.php:972 ..
1240
- #: addons/banking/services/mycred-service-payouts.php:986
1241
- msgid "Schedule not found. Please refresh this page and try again."
1242
- msgstr ""
1243
-
1244
- #: ../addons/banking/services/mycred-service-payouts.php:991
1245
- msgid "Schedule Deleted"
1246
- msgstr ""
1247
-
1248
- #: ../addons/banking/includes/mycred-banking-functions.php:80
1249
- msgid "Hour"
1250
- msgstr ""
1251
-
1252
- #: ../addons/banking/includes/mycred-banking-functions.php:90
1253
- msgid "Week"
1254
- msgstr ""
1255
-
1256
- #: ../addons/banking/includes/mycred-banking-functions.php:100
1257
- msgid "Quarter"
1258
- msgstr ""
1259
-
1260
- #: ../addons/banking/includes/mycred-banking-functions.php:105
1261
- msgid "Semiannual"
1262
- msgstr ""
1263
-
1264
- #: ../addons/banking/includes/mycred-banking-functions.php:110
1265
- msgid "Annual"
1266
- msgstr ""
1267
-
1268
- #: ../addons/banking/includes/mycred-banking-functions.php:283
1269
- msgid "A title must be set."
1270
- msgstr ""
1271
-
1272
- #: ../addons/banking/includes/mycred-banking-functions.php:290
1273
- msgid "The amount to payout can not be zero."
1274
- msgstr ""
1275
-
1276
- #: ../addons/banking/includes/mycred-banking-functions.php:296
1277
- msgid "Start date can not be in the past."
1278
- msgstr ""
1279
-
1280
- #: ../addons/banking/includes/mycred-banking-functions.php:303
1281
- msgid "Repeat can not be zero."
1282
- msgstr ""
1283
-
1284
- #: ../addons/banking/includes/mycred-banking-functions.php:309
1285
- msgid "Duplicate schedule."
1286
- msgstr ""
1287
-
1288
- #: ../addons/gateway/carts/mycred-woocommerce.php:364
1289
- #, php-format
1290
- msgctxt "%s = Point amount formatted"
1291
- msgid "Refunded %s"
1292
- msgstr ""
1293
-
1294
- #: ../addons/transfer/myCRED-addon-transfer.php:464
1295
- msgid ""
1296
- "The template to use when the transfer shortcode or widget is viewed by "
1297
- "someone who is not logged in."
1298
- msgstr ""
1299
-
1300
- #: ../addons/transfer/myCRED-addon-transfer.php:479
1301
- msgid ""
1302
- "The template to use if you select to show the transfer limit in the transfer "
1303
- "shortcode or widget. Ignored if there is no limit enforced."
1304
- msgstr ""
1305
-
1306
- #: ../addons/transfer/myCRED-addon-transfer.php:496
1307
- msgid ""
1308
- "The template to use if you select to show the users balance in the transfer "
1309
- "shortcode or widget. Ignored if balances are not shown."
1310
- msgstr ""
1311
-
1312
- #: ../addons/transfer/myCRED-addon-transfer.php:512
1313
- msgid "Default Button Label"
1314
- msgstr ""
1315
-
1316
- #: ../addons/transfer/myCRED-addon-transfer.php:514
1317
- msgid ""
1318
- "The default transfer button label. You can override this in the shortcode or "
1319
- "widget if needed."
1320
- msgstr ""
1321
-
1322
- #: ../addons/transfer/myCRED-addon-transfer.php:517
1323
- msgid "Insufficient Funds Warning"
1324
- msgstr ""
1325
-
1326
- #: ../addons/transfer/myCRED-addon-transfer.php:521
1327
- msgid "Message to show the user if they try to send more then they can afford."
1328
- msgstr ""
1329
-
1330
- #: ../addons/transfer/myCRED-addon-transfer.php:524
1331
- msgid "Limit Reached Warning"
1332
- msgstr ""
1333
-
1334
- #: ../addons/transfer/myCRED-addon-transfer.php:528
1335
- msgid ""
1336
- "Message to show the user once they reach their transfer limit. Ignored if no "
1337
- "limits are enforced."
1338
- msgstr ""
1339
-
1340
- #: ../addons/transfer/includes/mycred-transfer-widgets.php:105 ..
1341
- #: addons/transfer/includes/mycred-transfer-shortcodes.php:31 ../addons/buy-
1342
- #: creds/modules/buycred-module-pending.php:542 ../addons/buy-
1343
- #: creds/modules/buycred-module-core.php:1384
1344
- msgid "Recipient"
1345
- msgstr ""
1346
-
1347
- #: ../addons/transfer/includes/mycred-transfer-widgets.php:113
1348
- msgid "Placeholder"
1349
- msgstr ""
1350
-
1351
- #: ../addons/transfer/includes/mycred-transfer-widgets.php:117
1352
- msgid "Message for Excluded Users"
1353
- msgstr ""
1354
-
1355
- #: ../addons/ranks/myCRED-addon-ranks.php:216
1356
- #, php-format
1357
- msgid "Ranks for %s"
1358
- msgstr ""
1359
-
1360
- #: ../addons/ranks/myCRED-addon-ranks.php:230 ../addons/ranks/myCRED-addon-ranks.
1361
- #: php:1333
1362
- msgid "Rank Logo"
1363
- msgstr ""
1364
-
1365
- #: ../addons/ranks/myCRED-addon-ranks.php:231
1366
- msgid "Set rank logo"
1367
- msgstr ""
1368
-
1369
- #: ../addons/ranks/myCRED-addon-ranks.php:232
1370
- msgid "Remove rank logo"
1371
- msgstr ""
1372
-
1373
- #: ../addons/ranks/myCRED-addon-ranks.php:233
1374
- msgid "Use as Logo"
1375
- msgstr ""
1376
-
1377
- #: ../addons/ranks/myCRED-addon-ranks.php:288
1378
- msgid "Rank Enabled."
1379
- msgstr ""
1380
-
1381
- #: ../addons/ranks/myCRED-addon-ranks.php:289
1382
- msgid "Rank Saved."
1383
- msgstr ""
1384
-
1385
- #: ../addons/ranks/myCRED-addon-ranks.php:1158
1386
- msgid "Rank Setup"
1387
- msgstr ""
1388
-
1389
- #: ../addons/ranks/myCRED-addon-ranks.php:1201
1390
- msgid "Minimum Balance Requirement"
1391
- msgstr ""
1392
-
1393
- #: ../addons/ranks/myCRED-addon-ranks.php:1207
1394
- msgid "Maximum Balance Requirement"
1395
- msgstr ""
1396
-
1397
- #: ../addons/ranks/myCRED-addon-ranks.php:1400
1398
- msgid ""
1399
- "Use this button to calculate or recalculate your users totals. If not used, "
1400
- "the users current balance will be used as a starting point."
1401
- msgstr ""
1402
-
1403
- #: ../addons/ranks/myCRED-addon-ranks.php:1442 ../addons/ranks/myCRED-addon-ranks.
1404
- #: php:1487
1405
- #, php-format
1406
- msgid ""
1407
- "Template to use when showing a users Rank in BuddyPress. Use %rank_title% "
1408
- "for the title and %rank_logo% to show the rank logo. HTML is allowed."
1409
- msgstr ""
1410
-
1411
- #: ../addons/ranks/myCRED-addon-ranks.php:1464
1412
- msgid "Include in Topic Replies"
1413
- msgstr ""
1414
-
1415
- #: ../addons/ranks/myCRED-addon-ranks.php:1466
1416
- msgid "Include in Topic Replies and Profile"
1417
- msgstr ""
1418
-
1419
- #: ../addons/ranks/myCRED-addon-ranks.php:1470
1420
- msgid "Rank in bbPress"
1421
- msgstr ""
1422
-
1423
- #: ../addons/notifications/myCRED-addon-notifications.php:203
1424
- msgid "Restore to default"
1425
- msgstr ""
1426
-
1427
- #: ../addons/notifications/myCRED-addon-notifications.php:217
1428
- msgid ""
1429
- "Number of seconds before a notice is automatically removed after being shown "
1430
- "to user. Use zero to disable."
1431
- msgstr ""
1432
-
1433
- #: ../addons/email-notices/myCRED-addon-email-notices.php:124 ../addons/email-
1434
- #: notices/myCRED-addon-email-notices.php:130 ../addons/email-notices/myCRED-
1435
- #: addon-email-notices.php:136 ../addons/email-notices/myCRED-addon-email-notices.
1436
- #: php:192 ../addons/email-notices/myCRED-addon-email-notices.php:193
1437
- msgid "Email Notifications"
1438
- msgstr ""
1439
-
1440
- #: ../addons/email-notices/myCRED-addon-email-notices.php:125
1441
- msgid "Email Notification"
1442
- msgstr ""
1443
-
1444
- #: ../addons/email-notices/myCRED-addon-email-notices.php:128
1445
- msgid "Edit Email Notification"
1446
- msgstr ""
1447
-
1448
- #: ../addons/email-notices/myCRED-addon-email-notices.php:129
1449
- msgid "New Email Notification"
1450
- msgstr ""
1451
-
1452
- #: ../addons/email-notices/myCRED-addon-email-notices.php:132
1453
- msgid "Search Email Notifications"
1454
- msgstr ""
1455
-
1456
- #: ../addons/email-notices/myCRED-addon-email-notices.php:133
1457
- msgid "No email notifications found"
1458
- msgstr ""
1459
-
1460
- #: ../addons/email-notices/myCRED-addon-email-notices.php:134
1461
- msgid "No email notifications found in Trash"
1462
- msgstr ""
1463
-
1464
- #: ../addons/email-notices/myCRED-addon-email-notices.php:172
1465
- msgid "Email Notice Activated."
1466
- msgstr ""
1467
-
1468
- #: ../addons/email-notices/myCRED-addon-email-notices.php:347 ../addons/email-
1469
- #: notices/myCRED-addon-email-notices.php:588
1470
- msgid "All types"
1471
- msgstr ""
1472
-
1473
- #: ../addons/email-notices/myCRED-addon-email-notices.php:706
1474
- msgid "Instance Related"
1475
- msgstr ""
1476
-
1477
- #: ../addons/email-notices/myCRED-addon-email-notices.php:712
1478
- msgid "The users new balance"
1479
- msgstr ""
1480
-
1481
- #: ../addons/email-notices/myCRED-addon-email-notices.php:720
1482
- msgid "The users old balance"
1483
- msgstr ""
1484
-
1485
- #: ../addons/email-notices/myCRED-addon-email-notices.php:728
1486
- msgid "The amount of points gained or lost in this instance"
1487
- msgstr ""
1488
-
1489
- #: ../addons/email-notices/myCRED-addon-email-notices.php:736
1490
- msgid "The log entry"
1491
- msgstr ""
1492
-
1493
- #: ../addons/email-notices/myCRED-addon-email-notices.php:741
1494
- #, php-format
1495
- msgid "You can also use %s."
1496
- msgstr ""
1497
-
1498
- #: ../addons/email-notices/myCRED-addon-email-notices.php:741
1499
- msgid "user related template tags"
1500
- msgstr ""
1501
-
1502
- #: ../addons/email-notices/myCRED-addon-email-notices.php:872
1503
- msgid "Badge Add-on"
1504
- msgstr ""
1505
-
1506
- #: ../addons/email-notices/myCRED-addon-email-notices.php:873
1507
- msgid "user gains a badge"
1508
- msgstr ""
1509
-
1510
- #: ../addons/stats/myCRED-addon-stats.php:58
1511
- msgid "Statistics"
1512
- msgstr ""
1513
-
1514
- #: ../addons/stats/myCRED-addon-stats.php:168
1515
- msgid "Statistics Color"
1516
- msgstr ""
1517
-
1518
- #: ../addons/stats/myCRED-addon-stats.php:172
1519
- msgid "Positive Values"
1520
- msgstr ""
1521
-
1522
- #: ../addons/stats/myCRED-addon-stats.php:178
1523
- msgid "Negative Values"
1524
- msgstr ""
1525
-
1526
- #: ../addons/stats/myCRED-addon-stats.php:240
1527
- msgid "Overview"
1528
- msgstr ""
1529
-
1530
- #: ../addons/stats/myCRED-addon-stats.php:302
1531
- msgid "Refresh"
1532
- msgstr ""
1533
-
1534
- #: ../addons/stats/myCRED-addon-stats.php:409
1535
- msgid "Your log is empty. No statistics can be shown."
1536
- msgstr ""
1537
-
1538
- #: ../addons/stats/widgets/mycred-stats-widget-circulation.php:44
1539
- #, php-format
1540
- msgid "Total %s:"
1541
- msgstr ""
1542
-
1543
- #: ../addons/stats/widgets/mycred-stats-widget-circulation.php:138 ..
1544
- #: addons/stats/widgets/mycred-stats-widget-circulation.php:267
1545
- #, php-format
1546
- msgid "Total amount of %s in circulation"
1547
- msgstr ""
1548
-
1549
- #: ../addons/stats/widgets/mycred-stats-widget-circulation.php:171 ..
1550
- #: addons/stats/widgets/mycred-stats-widget-circulation.php:302
1551
- msgid "Total gains (%)"
1552
- msgstr ""
1553
-
1554
- #: ../addons/stats/widgets/mycred-stats-widget-circulation.php:175 ..
1555
- #: addons/stats/widgets/mycred-stats-widget-circulation.php:306
1556
- msgid "Total loses (%)"
1557
- msgstr ""
1558
-
1559
- #: ../addons/stats/widgets/mycred-stats-widget-circulation.php:179 ..
1560
- #: addons/stats/widgets/mycred-stats-widget-circulation.php:309
1561
- #, php-format
1562
- msgid "Total Gained: %s"
1563
- msgstr ""
1564
-
1565
- #: ../addons/stats/widgets/mycred-stats-widget-circulation.php:179 ..
1566
- #: addons/stats/widgets/mycred-stats-widget-circulation.php:309
1567
- #, php-format
1568
- msgid "Total Spent: %s"
1569
- msgstr ""
1570
-
1571
- #: ../addons/stats/widgets/mycred-stats-widget-circulation.php:193 ..
1572
- #: addons/stats/widgets/mycred-stats-widget-circulation.php:323
1573
- msgid "This Year"
1574
- msgstr ""
1575
-
1576
- #: ../addons/stats/widgets/mycred-stats-widget-circulation.php:197 ..
1577
- #: addons/stats/widgets/mycred-stats-widget-circulation.php:199 ..
1578
- #: addons/stats/widgets/mycred-stats-widget-circulation.php:201 ..
1579
- #: addons/stats/widgets/mycred-stats-widget-circulation.php:203 ..
1580
- #: addons/stats/widgets/mycred-stats-widget-circulation.php:327 ..
1581
- #: addons/stats/widgets/mycred-stats-widget-circulation.php:329 ..
1582
- #: addons/stats/widgets/mycred-stats-widget-circulation.php:331 ..
1583
- #: addons/stats/widgets/mycred-stats-widget-circulation.php:333 ..
1584
- #: addons/badges/includes/mycred-badge-functions.php:267
1585
- msgid "Gained"
1586
- msgstr ""
1587
-
1588
- #: ../addons/stats/widgets/mycred-stats-widget-circulation.php:198 ..
1589
- #: addons/stats/widgets/mycred-stats-widget-circulation.php:200 ..
1590
- #: addons/stats/widgets/mycred-stats-widget-circulation.php:202 ..
1591
- #: addons/stats/widgets/mycred-stats-widget-circulation.php:204 ..
1592
- #: addons/stats/widgets/mycred-stats-widget-circulation.php:328 ..
1593
- #: addons/stats/widgets/mycred-stats-widget-circulation.php:330 ..
1594
- #: addons/stats/widgets/mycred-stats-widget-circulation.php:332 ..
1595
- #: addons/stats/widgets/mycred-stats-widget-circulation.php:334 ..
1596
- #: addons/badges/includes/mycred-badge-functions.php:267
1597
- msgid "Lost"
1598
- msgstr ""
1599
-
1600
- #: ../addons/stats/widgets/mycred-stats-widget-daily-loses.php:118
1601
- msgid "Most common ways your users have lost or spent points during this period."
1602
- msgstr ""
1603
-
1604
- #: ../addons/stats/widgets/mycred-stats-widget-daily-loses.php:120
1605
- #, php-format
1606
- msgid "Most common ways your users have lost or spent %_plural% during this period."
1607
- msgstr ""
1608
-
1609
- #: ../addons/stats/widgets/mycred-stats-widget-daily-loses.php:127
1610
- msgid "Loses in the last 10 days"
1611
- msgstr ""
1612
-
1613
- #: ../addons/stats/widgets/mycred-stats-widget-daily-loses.php:166 ..
1614
- #: addons/stats/widgets/mycred-stats-widget-daily-gains.php:166
1615
- msgid "No data found"
1616
- msgstr ""
1617
-
1618
- #: ../addons/stats/widgets/mycred-stats-widget-daily-gains.php:118
1619
- msgid "Most common ways your users have gained points during this period."
1620
- msgstr ""
1621
-
1622
- #: ../addons/stats/widgets/mycred-stats-widget-daily-gains.php:120
1623
- #, php-format
1624
- msgid "Most common ways your users have gained %_plural% during this period."
1625
- msgstr ""
1626
-
1627
- #: ../addons/stats/widgets/mycred-stats-widget-daily-gains.php:127
1628
- msgid "Gains in the last 10 days"
1629
- msgstr ""
1630
-
1631
- #: ../addons/badges/includes/mycred-badge-functions.php:248
1632
- #, php-format
1633
- msgid "Level %s"
1634
- msgstr ""
1635
-
1636
- #: ../addons/badges/includes/mycred-badge-functions.php:265
1637
- #, php-format
1638
- msgctxt "\"Points\" for \"reference\" x times"
1639
- msgid "%s for \"%s\" x %d"
1640
- msgstr ""
1641
-
1642
- #: ../addons/badges/includes/mycred-badge-functions.php:267
1643
- #, php-format
1644
- msgctxt "\"Gained/Lost\" \"x points\" for \"reference\""
1645
- msgid "%s %s for \"%s\""
1646
- msgstr ""
1647
-
1648
- #: ../addons/badges/includes/mycred-badge-functions.php:269 ..
1649
- #: addons/badges/myCRED-addon-badges.php:519 ../addons/badges/myCRED-addon-
1650
- #: badges.php:921
1651
- msgctxt "Comparison of badge requirements. A OR B"
1652
- msgid "OR"
1653
- msgstr ""
1654
-
1655
- #: ../addons/badges/includes/mycred-badge-functions.php:271 ..
1656
- #: addons/badges/myCRED-addon-badges.php:518 ../addons/badges/myCRED-addon-
1657
- #: badges.php:921
1658
- msgctxt "Comparison of badge requirements. A AND B"
1659
- msgid "AND"
1660
- msgstr ""
1661
-
1662
- #: ../addons/badges/includes/mycred-badge-functions.php:287 ..
1663
- #: addons/badges/myCRED-addon-badges.php:722
1664
- msgid "This badge is manually awarded."
1665
- msgstr ""
1666
-
1667
- #: ../addons/badges/myCRED-addon-badges.php:275
1668
- msgid "Badge Enabled."
1669
- msgstr ""
1670
-
1671
- #: ../addons/badges/myCRED-addon-badges.php:276
1672
- msgid "Badge Saved."
1673
- msgstr ""
1674
-
1675
- #: ../addons/badges/myCRED-addon-badges.php:398
1676
- msgid "First Level"
1677
- msgstr ""
1678
-
1679
- #: ../addons/badges/myCRED-addon-badges.php:510 ../addons/badges/myCRED-addon-
1680
- #: badges.php:801
1681
- msgid "Add Level"
1682
- msgstr ""
1683
-
1684
- #: ../addons/badges/myCRED-addon-badges.php:511 ../addons/badges/myCRED-addon-
1685
- #: badges.php:802
1686
- msgid "Remove Level"
1687
- msgstr ""
1688
-
1689
- #: ../addons/badges/myCRED-addon-badges.php:512 ../addons/badges/myCRED-addon-
1690
- #: badges.php:755 ../addons/badges/myCRED-addon-badges.php:818 ..
1691
- #: addons/badges/myCRED-addon-badges.php:823
1692
- msgid "Set Image"
1693
- msgstr ""
1694
-
1695
- #: ../addons/badges/myCRED-addon-badges.php:513 ../addons/badges/myCRED-addon-
1696
- #: badges.php:755 ../addons/badges/myCRED-addon-badges.php:823
1697
- msgid "Change Image"
1698
- msgstr ""
1699
-
1700
- #: ../addons/badges/myCRED-addon-badges.php:514
1701
- msgid "Are you sure you want to remove this level?"
1702
- msgstr ""
1703
-
1704
- #: ../addons/badges/myCRED-addon-badges.php:515 ../addons/badges/myCRED-addon-
1705
- #: badges.php:819 ../addons/badges/myCRED-addon-badges.php:1288
1706
- msgid "Level"
1707
- msgstr ""
1708
-
1709
- #: ../addons/badges/myCRED-addon-badges.php:571
1710
- msgid "Badge Setup"
1711
- msgstr ""
1712
-
1713
- #: ../addons/badges/myCRED-addon-badges.php:580
1714
- msgid "Default Badge Image"
1715
- msgstr ""
1716
-
1717
- #: ../addons/badges/myCRED-addon-badges.php:758
1718
- msgid "Optional image to show when a user has not earned this badge."
1719
- msgstr ""
1720
-
1721
- #: ../addons/badges/myCRED-addon-badges.php:825
1722
- #, php-format
1723
- msgid "Level %d"
1724
- msgstr ""
1725
-
1726
- #: ../addons/badges/myCRED-addon-badges.php:849
1727
- msgid "Select Point Type"
1728
- msgstr ""
1729
-
1730
- #: ../addons/badges/myCRED-addon-badges.php:863
1731
- msgid "Select Reference"
1732
- msgstr ""
1733
-
1734
- #: ../addons/badges/myCRED-addon-badges.php:939
1735
- msgid "Reward"
1736
- msgstr ""
1737
-
1738
- #: ../addons/badges/myCRED-addon-badges.php:1163 ../addons/badges/myCRED-addon-
1739
- #: badges.php:1199
1740
- msgid "Show all badges, including badges users have not yet earned."
1741
- msgstr ""
1742
-
1743
- #: ../addons/badges/myCRED-addon-badges.php:1251
1744
- msgid "No image set"
1745
- msgstr ""
1746
-
1747
- #: ../addons/badges/myCRED-addon-badges.php:1283
1748
- msgid "Select a level"
1749
- msgstr ""
1750
-
1751
- #: ../addons/badges/myCRED-addon-badges.php:1297
1752
- msgid "Earned"
1753
- msgstr ""
1754
-
1755
- #: ../addons/badges/myCRED-addon-badges.php:1406
1756
- #, php-format
1757
- msgid "A total of %d users have received this badge."
1758
- msgstr ""
1759
-
1760
- #: ../addons/badges/myCRED-addon-badges.php:1433
1761
- msgid "No connections where removed."
1762
- msgstr ""
1763
-
1764
- #: ../addons/coupons/myCRED-addon-coupons.php:249
1765
- msgid "Used"
1766
- msgstr ""
1767
-
1768
- #: ../addons/coupons/myCRED-addon-coupons.php:296 ../addons/coupons/myCRED-addon-
1769
- #: coupons.php:620
1770
- #, php-format
1771
- msgid "1 time"
1772
- msgid_plural "%d times"
1773
- msgstr[0] ""
1774
- msgstr[1] ""
1775
-
1776
- #: ../addons/coupons/myCRED-addon-coupons.php:453
1777
- msgid "Coupon Usage"
1778
- msgstr ""
1779
-
1780
- #: ../addons/coupons/myCRED-addon-coupons.php:536
1781
- msgid "The maximum number of times this coupon can be used."
1782
- msgstr ""
1783
-
1784
- #: ../addons/sell-content/myCRED-addon-sell-content.php:128
1785
- msgid "Sell Content Add-on Update Required"
1786
- msgstr ""
1787
-
1788
- #: ../addons/sell-content/myCRED-addon-sell-content.php:129
1789
- msgid "Before continuing to use this add-on you must setup and save your settings."
1790
- msgstr ""
1791
-
1792
- #: ../addons/sell-content/myCRED-addon-sell-content.php:297
1793
- msgid "Select all the post types you want to sell."
1794
- msgstr ""
1795
-
1796
- #: ../addons/sell-content/myCRED-addon-sell-content.php:313
1797
- msgid "You must select at least one post type to sell."
1798
- msgstr ""
1799
-
1800
- #: ../addons/sell-content/myCRED-addon-sell-content.php:367
1801
- msgid "Select all the point types accepted as payment."
1802
- msgstr ""
1803
-
1804
- #: ../addons/sell-content/myCRED-addon-sell-content.php:386
1805
- msgid "You must select at least one point type to accept as payment."
1806
- msgstr ""
1807
-
1808
- #: ../addons/sell-content/myCRED-addon-sell-content.php:429 ../addons/sell-
1809
- #: content/myCRED-addon-sell-content.php:837
1810
- msgid "Expiration"
1811
- msgstr ""
1812
-
1813
- #: ../addons/sell-content/myCRED-addon-sell-content.php:430 ../addons/sell-
1814
- #: content/myCRED-addon-sell-content.php:777 ../addons/sell-
1815
- #: content/includes/mycred-sell-shortcodes.php:181
1816
- msgid "Hour(s)"
1817
- msgstr ""
1818
-
1819
- #: ../addons/sell-content/myCRED-addon-sell-content.php:443
1820
- #, php-format
1821
- msgid "Use %price% to show the price set for each post."
1822
- msgstr ""
1823
-
1824
- #: ../addons/sell-content/myCRED-addon-sell-content.php:446
1825
- msgid "Button CSS Classes"
1826
- msgstr ""
1827
-
1828
- #: ../addons/sell-content/myCRED-addon-sell-content.php:452
1829
- msgid "Payment log entry template"
1830
- msgstr ""
1831
-
1832
- #: ../addons/sell-content/myCRED-addon-sell-content.php:457
1833
- msgid "Profit Share payout log entry template"
1834
- msgstr ""
1835
-
1836
- #: ../addons/sell-content/myCRED-addon-sell-content.php:459
1837
- msgid "Only used if profit sharing is enabled for this point type."
1838
- msgstr ""
1839
-
1840
- #: ../addons/sell-content/myCRED-addon-sell-content.php:470
1841
- msgid "Transactions"
1842
- msgstr ""
1843
-
1844
- #: ../addons/sell-content/myCRED-addon-sell-content.php:473
1845
- msgid "Reload page after successful payments."
1846
- msgstr ""
1847
-
1848
- #: ../addons/sell-content/myCRED-addon-sell-content.php:478
1849
- msgid ""
1850
- "Option to show a custom button label while the payment is being processed. "
1851
- "HTML is allowed."
1852
- msgstr ""
1853
-
1854
- #: ../addons/sell-content/myCRED-addon-sell-content.php:484
1855
- msgid "Members"
1856
- msgstr ""
1857
-
1858
- #: ../addons/sell-content/myCRED-addon-sell-content.php:485
1859
- msgid ""
1860
- "The template to use when a content is viewed by a member that is logged in "
1861
- "and can afford to pay. Only applied to content that is set for sale."
1862
- msgstr ""
1863
-
1864
- #: ../addons/sell-content/myCRED-addon-sell-content.php:502
1865
- msgid ""
1866
- "The template to use when a content is viewed by someone who is not logged in."
1867
- " Only applied to content that is set for sale."
1868
- msgstr ""
1869
-
1870
- #: ../addons/sell-content/myCRED-addon-sell-content.php:520
1871
- msgid ""
1872
- "The template to use when a content is viewed by a member that is logged but "
1873
- "can not afford to buy. Only applied to content that is set for sale."
1874
- msgstr ""
1875
-
1876
- #: ../addons/sell-content/myCRED-addon-sell-content.php:814
1877
- msgid "Never expires"
1878
- msgstr ""
1879
-
1880
- #: ../addons/sell-content/myCRED-addon-sell-content.php:823
1881
- #, php-format
1882
- msgid "Sell using %s"
1883
- msgstr ""
1884
-
1885
- #: ../addons/sell-content/includes/mycred-sell-functions.php:492
1886
- #, php-format
1887
- msgctxt "Point type name"
1888
- msgid "You can not pay using %s"
1889
- msgstr ""
1890
-
1891
- #: ../addons/sell-content/includes/mycred-sell-functions.php:752
1892
- #, php-format
1893
- msgctxt "all post type name"
1894
- msgid "All %s"
1895
- msgstr ""
1896
-
1897
- #: ../addons/sell-content/includes/mycred-sell-functions.php:756
1898
- #, php-format
1899
- msgctxt "all post type name"
1900
- msgid "%s I manually select"
1901
- msgstr ""
1902
-
1903
- #: ../addons/sell-content/includes/mycred-sell-functions.php:760
1904
- #, php-format
1905
- msgctxt "%s = post type name"
1906
- msgid "All %s except"
1907
- msgstr ""
1908
-
1909
- #: ../addons/sell-content/includes/mycred-sell-functions.php:761
1910
- #, php-format
1911
- msgctxt "%s = post type name"
1912
- msgid "Comma separated list of %s IDs to exclude"
1913
- msgstr ""
1914
-
1915
- #: ../addons/sell-content/includes/mycred-sell-functions.php:764
1916
- #, php-format
1917
- msgctxt "%s = post type name"
1918
- msgid "Only %s"
1919
- msgstr ""
1920
-
1921
- #: ../addons/sell-content/includes/mycred-sell-functions.php:765
1922
- #, php-format
1923
- msgctxt "%s = post type name"
1924
- msgid "Comma separated list of %s IDs"
1925
- msgstr ""
1926
-
1927
- #: ../addons/sell-content/includes/mycred-sell-functions.php:777
1928
- #, php-format
1929
- msgctxt "e.g. Only \"Posts\" in \"Categories\""
1930
- msgid "Only %s in %s"
1931
- msgstr ""
1932
-
1933
- #: ../addons/sell-content/includes/mycred-sell-functions.php:778 ../addons/sell-
1934
- #: content/includes/mycred-sell-functions.php:782 ../addons/sell-
1935
- #: content/includes/mycred-sell-functions.php:788 ../addons/sell-
1936
- #: content/includes/mycred-sell-functions.php:792
1937
- #, php-format
1938
- msgctxt "%s = taxonomy name"
1939
- msgid "Comma separated list of %s slugs"
1940
- msgstr ""
1941
-
1942
- #: ../addons/sell-content/includes/mycred-sell-functions.php:781
1943
- #, php-format
1944
- msgctxt "e.g. Only \"Posts\" not in \"Categories\""
1945
- msgid "Only %s not in %s"
1946
- msgstr ""
1947
-
1948
- #: ../addons/sell-content/includes/mycred-sell-functions.php:787
1949
- #, php-format
1950
- msgctxt "e.g. Only \"Posts\" with \"Tags\""
1951
- msgid "Only %s with %s"
1952
- msgstr ""
1953
-
1954
- #: ../addons/sell-content/includes/mycred-sell-functions.php:791
1955
- #, php-format
1956
- msgctxt "e.g. Only \"Posts\" without \"Tags\""
1957
- msgid "Only %s without %s"
1958
- msgstr ""
1959
-
1960
- #: ../addons/sell-content/includes/mycred-sell-shortcodes.php:233
1961
- #, php-format
1962
- msgctxt "e.g. 10 hours"
1963
- msgid "Purchase expires in %s"
1964
- msgstr ""
1965
-
1966
- #: ../addons/buy-creds/abstracts/mycred-abstract-payment-gateway.php:218
1967
- #, php-format
1968
- msgctxt "%s is replaced with the point amount and name."
1969
- msgid "Received new request to purchase %s."
1970
- msgstr ""
1971
-
1972
- #: ../addons/buy-creds/abstracts/mycred-abstract-payment-gateway.php:552
1973
- msgid "First Name"
1974
- msgstr ""
1975
-
1976
- #: ../addons/buy-creds/abstracts/mycred-abstract-payment-gateway.php:558
1977
- msgid "Last Name"
1978
- msgstr ""
1979
-
1980
- #: ../addons/buy-creds/abstracts/mycred-abstract-payment-gateway.php:566
1981
- msgid "Address Line 1"
1982
- msgstr ""
1983
-
1984
- #: ../addons/buy-creds/abstracts/mycred-abstract-payment-gateway.php:574
1985
- msgid "Address Line 2"
1986
- msgstr ""
1987
-
1988
- #: ../addons/buy-creds/abstracts/mycred-abstract-payment-gateway.php:582
1989
- msgid "City"
1990
- msgstr ""
1991
-
1992
- #: ../addons/buy-creds/abstracts/mycred-abstract-payment-gateway.php:588
1993
- msgid "Zip"
1994
- msgstr ""
1995
-
1996
- #: ../addons/buy-creds/abstracts/mycred-abstract-payment-gateway.php:596
1997
- msgid "State"
1998
- msgstr ""
1999
-
2000
- #: ../addons/buy-creds/abstracts/mycred-abstract-payment-gateway.php:604
2001
- msgid "Country"
2002
- msgstr ""
2003
-
2004
- #: ../addons/buy-creds/abstracts/mycred-abstract-payment-gateway.php:609
2005
- msgid "Choose Country"
2006
- msgstr ""
2007
-
2008
- #: ../addons/buy-creds/abstracts/mycred-abstract-payment-gateway.php:667
2009
- msgctxt "buyCRED order description"
2010
- msgid "Item"
2011
- msgstr ""
2012
-
2013
- #: ../addons/buy-creds/modules/buycred-module-pending.php:177 ../addons/buy-
2014
- #: creds/modules/buycred-module-pending.php:178 ../addons/buy-
2015
- #: creds/modules/buycred-module-pending.php:179 ../addons/buy-
2016
- #: creds/modules/buycred-module-pending.php:180 ../addons/buy-
2017
- #: creds/modules/buycred-module-pending.php:181 ../addons/buy-
2018
- #: creds/modules/buycred-module-pending.php:182 ../addons/buy-
2019
- #: creds/modules/buycred-module-pending.php:183 ../addons/buy-
2020
- #: creds/modules/buycred-module-pending.php:184 ../addons/buy-
2021
- #: creds/modules/buycred-module-pending.php:185
2022
- msgid "Payment Updated."
2023
- msgstr ""
2024
-
2025
- #: ../addons/buy-creds/modules/buycred-module-pending.php:213
2026
- msgid "Pending payment successfully credited to account."
2027
- msgstr ""
2028
-
2029
- #: ../addons/buy-creds/modules/buycred-module-pending.php:215
2030
- msgid "Failed to credit the pending payment to account."
2031
- msgstr ""
2032
-
2033
- #: ../addons/buy-creds/modules/buycred-module-pending.php:434
2034
- msgid "Pending Payment"
2035
- msgstr ""
2036
-
2037
- #: ../addons/buy-creds/modules/buycred-module-pending.php:472
2038
- msgid "Trash"
2039
- msgstr ""
2040
-
2041
- #: ../addons/buy-creds/modules/buycred-module-pending.php:536
2042
- msgid "Payer"
2043
- msgstr ""
2044
-
2045
- #: ../addons/buy-creds/modules/buycred-module-pending.php:645
2046
- msgid "Pending request created."
2047
- msgstr ""
2048
-
2049
- #: ../addons/buy-creds/modules/buycred-module-pending.php:693
2050
- #, php-format
2051
- msgid "Pending payment updated by %s"
2052
- msgstr ""
2053
-
2054
- #: ../addons/buy-creds/modules/buycred-module-core.php:133
2055
- msgid "Bank Transfer"
2056
- msgstr ""
2057
-
2058
- #: ../addons/buy-creds/modules/buycred-module-core.php:1029 ../addons/buy-
2059
- #: creds/modules/buycred-module-core.php:1043
2060
- msgid "buyCRED Exchange Rates"
2061
- msgstr ""
2062
-
2063
- #: ../addons/buy-creds/modules/buycred-module-core.php:1428
2064
- msgid "Pay Using"
2065
- msgstr ""
2066
-
2067
- #: ../addons/buy-creds/gateways/bank-transfer.php:139
2068
- msgid "Continue"
2069
- msgstr ""
2070
-
2071
- #: ../addons/buy-creds/gateways/bank-transfer.php:167
2072
- msgid "Checkout Logo"
2073
- msgstr ""
2074
-
2075
- #: ../addons/buy-creds/gateways/bank-transfer.php:173
2076
- msgid "Bank Account Information"
2077
- msgstr ""
2078
-
2079
- #: ../addons/buy-creds/gateways/bank-transfer.php:177
2080
- msgid "Bank transfer details to show the user on the checkout page."
2081
- msgstr ""
2082
-
2083
- #: ../addons/buy-creds/gateways/paypal-standard.php:256
2084
- #, php-format
2085
- msgctxt "Return label. %s = Website name"
2086
- msgid "Return to %s"
2087
- msgstr ""
2088
-
2089
- #: ../abstracts/mycred-abstract-hook.php:90
2090
- msgid "This Hook has no settings"
2091
- msgstr "Este gancho no ha sido configurado"
2092
-
2093
- #: ../abstracts/mycred-abstract-hook.php:283 ../abstracts/mycred-abstract-hook.
2094
- #: php:354 ../modules/mycred-module-hooks.php:2401 ../includes/mycred-functions.
2095
- #: php:2563
2096
- msgid "No limit"
2097
- msgstr "Sin Limite"
2098
-
2099
- #: ../abstracts/mycred-abstract-hook.php:355
2100
- msgid "Once every 24 hours"
2101
- msgstr "Una vez cada 24 horas"
2102
-
2103
- #: ../abstracts/mycred-abstract-hook.php:356
2104
- msgid "Once every 7 days"
2105
- msgstr "Una vez cada 7 dias"
2106
-
2107
- #: ../abstracts/mycred-abstract-hook.php:357
2108
- msgid "Once per day (reset at midnight)"
2109
- msgstr "Una vez al dia (reinicializado al medianoche)"
2110
-
2111
- #: ../abstracts/mycred-abstract-hook.php:364 ../addons/banking/abstracts/mycred-
2112
- #: abstract-service.php:351 ../addons/email-notices/myCRED-addon-email-notices.
2113
- #: php:527 ../addons/email-notices/myCRED-addon-email-notices.php:859 ..
2114
- #: addons/badges/myCRED-addon-badges.php:880 ../addons/buy-
2115
- #: creds/abstracts/mycred-abstract-payment-gateway.php:1102 ../addons/buy-
2116
- #: creds/abstracts/mycred-abstract-payment-gateway.php:1127 ../addons/buy-
2117
- #: creds/modules/buycred-module-core.php:356 ../addons/buy-creds/modules/buycred-
2118
- #: module-core.php:379 ../addons/buy-creds/gateways/zombaio.php:358
2119
- msgid "Select"
2120
- msgstr "Seleccionar"
2121
-
2122
- #: ../abstracts/mycred-abstract-module.php:400 ../abstracts/mycred-abstract-
2123
- #: module.php:410
2124
- msgid "Surprise"
2125
- msgstr "Sorpresa"
2126
-
2127
- #: ../abstracts/mycred-abstract-module.php:528 ../modules/mycred-module-network.
2128
- #: php:98
2129
- msgid "click to close"
2130
- msgstr "haga clic para cerrar"
2131
-
2132
- #: ../abstracts/mycred-abstract-module.php:529 ../modules/mycred-module-network.
2133
- #: php:99
2134
- msgid "click to open"
2135
- msgstr "haga clic para abrir"
2136
-
2137
- #: ../abstracts/mycred-abstract-module.php:562 ../modules/mycred-module-network.
2138
- #: php:155 ../addons/gateway/event-booking/mycred-eventespresso3.php:451 ..
2139
- #: addons/email-notices/myCRED-addon-email-notices.php:1469 ../addons/buy-
2140
- #: creds/modules/buycred-module-core.php:538
2141
- msgid "Settings Updated"
2142
- msgstr "Configuraciones Actualizadas"
2143
-
2144
- #: ../modules/mycred-module-management.php:99
2145
- msgid "Update Balance"
2146
- msgstr "Actualizar Saldo"
2147
-
2148
- #: ../modules/mycred-module-management.php:112
2149
- msgid "User is excluded"
2150
- msgstr "El Usuario ha sido excluido"
2151
-
2152
- #: ../modules/mycred-module-management.php:120
2153
- msgid "Log Entry can not be empty"
2154
- msgstr "Entrada de registro no puede estar vacío"
2155
-
2156
- #: ../modules/mycred-module-management.php:128 ../modules/mycred-module-log.php:225
2157
- msgid "Amount can not be zero"
2158
- msgstr "La Cantidad no Puede ser Cero"
2159
-
2160
- #: ../modules/mycred-module-management.php:233 ../modules/mycred-module-log.php:
2161
- #: 94 ../modules/mycred-module-log.php:910 ../includes/classes/class.query-export.
2162
- #: php:263 ../includes/classes/class.query-export.php:399 ..
2163
- #: includes/classes/class.query-log.php:370 ../includes/classes/class.query-log.
2164
- #: php:380 ../addons/banking/services/mycred-service-payouts.php:738 ..
2165
- #: addons/sell-content/includes/mycred-sell-shortcodes.php:185 ../addons/buy-
2166
- #: creds/modules/buycred-module-core.php:730
2167
- msgid "Date"
2168
- msgstr "Fecha"
2169
-
2170
- #: ../modules/mycred-module-management.php:234 ../addons/banking/services/mycred-
2171
- #: service-interest.php:435 ../addons/banking/services/mycred-service-interest.
2172
- #: php:460 ../addons/banking/services/mycred-service-payouts.php:744
2173
- msgid "Time"
2174
- msgstr "Tiempo"
2175
-
2176
- #. need more context: entrada or inscripción
2177
- #: ../modules/mycred-module-management.php:236 ../modules/mycred-module-log.php:
2178
- #: 96 ../includes/classes/class.query-export.php:263 ../includes/classes/class.
2179
- #: query-export.php:406 ../includes/classes/class.query-log.php:372 ..
2180
- #: includes/classes/class.query-log.php:382
2181
- msgid "Entry"
2182
- msgstr "Entrada"
2183
-
2184
- #: ../modules/mycred-module-management.php:310
2185
- msgid "Edit Users Balance"
2186
- msgstr "Editar saldo del usuario"
2187
-
2188
- #: ../modules/mycred-module-management.php:311 ../modules/mycred-module-settings.
2189
- #: php:431 ../modules/mycred-module-log.php:465 ../modules/mycred-module-hooks.
2190
- #: php:306 ../modules/mycred-module-hooks.php:420 ../addons/banking/myCRED-addon-
2191
- #: banking.php:204
2192
- msgid "Close"
2193
- msgstr "Cerrar"
2194
-
2195
- #: ../modules/mycred-module-management.php:312 ../modules/mycred-module-settings.
2196
- #: php:426 ../modules/mycred-module-log.php:466 ../mycred.php:632 ..
2197
- #: addons/gateway/event-booking/mycred-eventsmanager.php:478 ..
2198
- #: addons/transfer/myCRED-addon-transfer.php:140 ../addons/ranks/myCRED-addon-
2199
- #: ranks.php:955 ../addons/ranks/myCRED-addon-ranks.php:1535 ..
2200
- #: addons/badges/myCRED-addon-badges.php:702
2201
- msgid "Processing..."
2202
- msgstr "Procesando..."
2203
-
2204
- #: ../modules/mycred-module-management.php:449
2205
- msgid "Excluded"
2206
- msgstr "Excluido"
2207
-
2208
- #: ../modules/mycred-module-management.php:459 ../modules/mycred-module-hooks.php:
2209
- #: 3129 ../addons/coupons/myCRED-addon-coupons.php:307
2210
- msgid "Total"
2211
- msgstr "Total"
2212
-
2213
- #: ../modules/mycred-module-management.php:469 ../modules/mycred-module-log.php:
2214
- #: 282 ../modules/mycred-module-log.php:283 ../mycred.php:931 ../addons/buy-
2215
- #: creds/modules/buycred-module-pending.php:437
2216
- msgid "History"
2217
- msgstr "Historial"
2218
-
2219
- #: ../modules/mycred-module-management.php:470
2220
- msgid "Adjust"
2221
- msgstr "Modificar"
2222
-
2223
- #: ../modules/mycred-module-management.php:535 ../modules/mycred-module-
2224
- #: management.php:538 ../mycred.php:864 ../addons/transfer/myCRED-addon-transfer.
2225
- #: php:495 ../addons/transfer/includes/mycred-transfer-shortcodes.php:33
2226
- msgid "Balance"
2227
- msgstr "Saldo"
2228
-
2229
- #: ../modules/mycred-module-management.php:617 ../addons/banking/services/mycred-
2230
- #: service-payouts.php:551
2231
- msgid "ID"
2232
- msgstr "ID"
2233
-
2234
- #: ../modules/mycred-module-management.php:629 ../addons/gateway/event-
2235
- #: booking/mycred-eventespresso3.php:307 ../addons/gateway/event-booking/mycred-
2236
- #: eventespresso3.php:332 ../addons/gateway/event-booking/mycred-eventsmanager.
2237
- #: php:412 ../addons/gateway/carts/mycred-marketpress.php:158
2238
- msgid "Current Balance"
2239
- msgstr "Saldo Actual"
2240
-
2241
- #: ../modules/mycred-module-management.php:644 ../plugins/mycred-hook-affiliatewp.
2242
- #: php:260 ../includes/shortcodes/mycred_exchange.php:69 ..
2243
- #: includes/shortcodes/mycred_hook_table.php:80 ../includes/classes/class.query-
2244
- #: export.php:263 ../includes/classes/class.query-export.php:383 ..
2245
- #: addons/transfer/includes/mycred-transfer-widgets.php:97 ..
2246
- #: addons/transfer/includes/mycred-transfer-shortcodes.php:32 ../addons/buy-
2247
- #: creds/abstracts/mycred-abstract-payment-gateway.php:668 ../addons/buy-
2248
- #: creds/modules/buycred-module-pending.php:266 ../addons/buy-
2249
- #: creds/modules/buycred-module-pending.php:608 ../addons/buy-
2250
- #: creds/modules/buycred-module-pending.php:726
2251
- msgid "Amount"
2252
- msgstr "Cantidad"
2253
-
2254
- #: ../modules/mycred-module-management.php:646
2255
- msgid "A positive or negative value"
2256
- msgstr "Un valor positivo o negativo"
2257
-
2258
- #: ../modules/mycred-module-management.php:672 ../modules/mycred-module-log.php:
2259
- #: 929 ../addons/gateway/event-booking/mycred-eventespresso3.php:518
2260
- msgid "Log Entry"
2261
- msgstr "Entrada de Registro"
2262
-
2263
- #: ../modules/mycred-module-management.php:673
2264
- msgid "optional"
2265
- msgstr "opcional"
2266
-
2267
- #: ../modules/mycred-module-settings.php:21 ../modules/mycred-module-settings.php:
2268
- #: 22 ../modules/mycred-module-settings.php:23 ../modules/mycred-module-network.
2269
- #: php:164 ../mycred.php:989 ../addons/gateway/carts/mycred-marketpress.php:409 ..
2270
- #: addons/stats/abstracts/mycred-abstract-stat-widget.php:106 ../addons/buy-
2271
- #: creds/modules/buycred-module-core.php:533
2272
- msgid "Settings"
2273
- msgstr "Configuraciones"
2274
-
2275
- #: ../modules/mycred-module-settings.php:138
2276
- msgid "Accounts successfully reset"
2277
- msgstr "Las cuentas fueron reiniciadas con éxito."
2278
-
2279
- #: ../modules/mycred-module-settings.php:190
2280
- msgid "No users found to export"
2281
- msgstr "No se encontro usuarios para exportar"
2282
-
2283
- #: ../modules/mycred-module-settings.php:427
2284
- msgid ""
2285
- "Warning! All entries in your log will be permanently removed! This can not "
2286
- "be undone!"
2287
- msgstr ""
2288
- "¡Aviso! Todas las entradas en su registro seran permanentemente borrado! "
2289
- "¡Esto no se puede deshacer!"
2290
-
2291
- #: ../modules/mycred-module-settings.php:428
2292
- msgid ""
2293
- "All log entries belonging to deleted users will be permanently deleted! This "
2294
- "can not be undone!"
2295
- msgstr ""
2296
- "¡Todas las entradas de registro perteneciendo al usuario seran "
2297
- "permanentemente borradas! ¡Esto no se puede deshacer!"
2298
-
2299
- #: ../modules/mycred-module-settings.php:429
2300
- msgid "Warning! All user balances will be set to zero! This can not be undone!"
2301
- msgstr ""
2302
- "¡Aviso! ¡Todo los saldos del usuario seran puesto a cero! ¡Esto no se puede "
2303
- "deshacer!"
2304
-
2305
- #: ../modules/mycred-module-settings.php:430
2306
- msgid "Done!"
2307
- msgstr "¡Realizado!"
2308
-
2309
- #: ../modules/mycred-module-settings.php:432
2310
- #, php-format
2311
- msgid "Export users %plural%"
2312
- msgstr "Exportar usuarios %plural%"
2313
-
2314
- #: ../modules/mycred-module-settings.php:529
2315
- #, php-format
2316
- msgid "%s Settings"
2317
- msgstr "Configuración de %s"
2318
-
2319
- #: ../modules/mycred-module-settings.php:538
2320
- msgid "Core Settings"
2321
- msgstr "Ajustes Basicos"
2322
-
2323
- #: ../modules/mycred-module-settings.php:543 ../includes/mycred-setup.php:275 ..
2324
- #: addons/gateway/event-booking/mycred-eventespresso3.php:460 ..
2325
- #: addons/gateway/event-booking/mycred-eventsmanager.php:602 ..
2326
- #: addons/gateway/event-booking/mycred-eventsmanager-pro.php:686
2327
- msgid "Labels"
2328
- msgstr "Etiquetas"
2329
-
2330
- #: ../modules/mycred-module-settings.php:561 ../includes/mycred-setup.php:293
2331
- msgid "Format"
2332
- msgstr "Formato"
2333
-
2334
- #: ../modules/mycred-module-settings.php:565 ../includes/mycred-setup.php:297
2335
- msgid "Prefix"
2336
- msgstr "Prefijo"
2337
-
2338
- #: ../modules/mycred-module-settings.php:571 ../includes/mycred-setup.php:303
2339
- msgid "Separators"
2340
- msgstr "Separadores"
2341
-
2342
- #: ../modules/mycred-module-settings.php:579 ../includes/mycred-setup.php:311
2343
- msgid "Decimals"
2344
- msgstr "Decimales"
2345
-
2346
- #: ../modules/mycred-module-settings.php:585 ../includes/mycred-setup.php:317
2347
- msgid "Suffix"
2348
- msgstr "Sufijo"
2349
-
2350
- #: ../modules/mycred-module-settings.php:592
2351
- msgid "Tip"
2352
- msgstr "Pista"
2353
-
2354
- #: ../modules/mycred-module-settings.php:599 ../includes/mycred-setup.php:328
2355
- msgid "Security"
2356
- msgstr "Seguridad"
2357
-
2358
- #: ../modules/mycred-module-settings.php:646
2359
- msgid "Delete log entries when user is deleted."
2360
- msgstr "Elimina las entradas de registro cuando se elimina el usuario."
2361
-
2362
- #: ../modules/mycred-module-settings.php:665
2363
- msgid "Management"
2364
- msgstr "Gestión"
2365
-
2366
- #: ../modules/mycred-module-settings.php:677 ../modules/mycred-module-log.php:433
2367
- msgid "Entries"
2368
- msgstr "Entradas"
2369
-
2370
- #: ../modules/mycred-module-settings.php:683 ../modules/mycred-module-settings.
2371
- #: php:708 ../addons/ranks/myCRED-addon-ranks.php:1624 ../addons/buy-
2372
- #: creds/modules/buycred-module-pending.php:443 ../addons/buy-
2373
- #: creds/modules/buycred-module-pending.php:729
2374
- msgid "Actions"
2375
- msgstr "Acciones"
2376
-
2377
- #: ../modules/mycred-module-settings.php:686
2378
- msgid "Empty Log"
2379
- msgstr "Registro Vacío"
2380
-
2381
- #: ../modules/mycred-module-settings.php:702 ../addons/ranks/myCRED-addon-ranks.
2382
- #: php:1045 ../addons/badges/myCRED-addon-badges.php:400
2383
- msgid "Users"
2384
- msgstr "Usuarios"
2385
-
2386
- #: ../modules/mycred-module-settings.php:710
2387
- msgid "Set all to zero"
2388
- msgstr "Ajusta todo a cero"
2389
-
2390
- #: ../modules/mycred-module-settings.php:727 ../includes/mycred-widgets.php:592 ..
2391
- #: addons/transfer/myCRED-addon-transfer.php:383 ..
2392
- #: addons/transfer/includes/mycred-transfer-widgets.php:109 ../addons/sell-
2393
- #: content/myCRED-addon-sell-content.php:365 ../addons/buy-creds/modules/buycred-
2394
- #: module-core.php:312
2395
- msgid "Point Types"
2396
- msgstr "Clase de Puntos"
2397
-
2398
- #: ../modules/mycred-module-settings.php:741 ../modules/mycred-module-settings.
2399
- #: php:767 ../modules/mycred-module-settings.php:797
2400
- msgid "Meta Key"
2401
- msgstr "Clave Meta"
2402
-
2403
- #: ../modules/mycred-module-settings.php:747 ../modules/mycred-module-settings.
2404
- #: php:773 ../modules/mycred-module-settings.php:803 ..
2405
- #: addons/gateway/carts/mycred-woocommerce.php:159 ../addons/email-
2406
- #: notices/myCRED-addon-email-notices.php:575
2407
- msgid "Label"
2408
- msgstr "Etiqueta"
2409
-
2410
- #: ../modules/mycred-module-settings.php:754 ../modules/mycred-module-settings.
2411
- #: php:780 ../modules/mycred-module-hooks.php:306 ../modules/mycred-module-hooks.
2412
- #: php:420 ../includes/classes/class.query-log.php:492 ../includes/classes/class.
2413
- #: query-log.php:1076 ../addons/banking/services/mycred-service-payouts.php:470 ..
2414
- #: addons/gateway/event-booking/mycred-eventsmanager-pro.php:496
2415
- msgid "Delete"
2416
- msgstr "Borrar"
2417
-
2418
- #: ../modules/mycred-module-settings.php:793
2419
- msgid "Add New Type"
2420
- msgstr "Añadir Nuevo Clase"
2421
-
2422
- #: ../modules/mycred-module-settings.php:821 ../addons/gateway/event-
2423
- #: booking/mycred-eventespresso3.php:551 ../addons/buy-creds/modules/buycred-
2424
- #: module-core.php:591
2425
- msgid "Update Settings"
2426
- msgstr "Actualizar Configuraciones"
2427
-
2428
- #: ../modules/mycred-module-settings.php:830
2429
- msgid "Identify users by"
2430
- msgstr "Identifique usuarios por"
2431
-
2432
- #: ../modules/mycred-module-settings.php:836
2433
- msgid "User ID"
2434
- msgstr "ID del Usuario"
2435
-
2436
- #: ../modules/mycred-module-settings.php:837
2437
- msgid "User Email"
2438
- msgstr "Email de Usuario"
2439
-
2440
- #: ../modules/mycred-module-settings.php:838
2441
- msgid "User Login"
2442
- msgstr "Ingreso de Usuario"
2443
-
2444
- #: ../modules/mycred-module-settings.php:846
2445
- msgid ""
2446
- "Use ID if you intend to use this export as a backup of your current site "
2447
- "while Email is recommended if you want to export to a different site."
2448
- msgstr ""
2449
- "Usa ID si deseas tener esta exportación como un respaldo de tu sitio, Usa "
2450
- "Email si deseas exportar la data a otro sitio"
2451
-
2452
- #: ../modules/mycred-module-settings.php:849
2453
- msgid "Import Log Entry"
2454
- msgstr "Importa la entrada de registro"
2455
-
2456
- #: ../modules/mycred-module-settings.php:851
2457
- #, php-format
2458
- msgid ""
2459
- "Optional log entry to use if you intend to import this file in a different "
2460
- "%s installation."
2461
- msgstr ""
2462
- "Usa la entrada de registro opcional si tiene la intención de importar este "
2463
- "fichero en otra instalación %s."
2464
-
2465
- #: ../modules/mycred-module-settings.php:854 ../modules/mycred-module-export.php:
2466
- #: 236 ../modules/mycred-module-export.php:263 ../modules/mycred-module-export.
2467
- #: php:313
2468
- msgid "Export"
2469
- msgstr "Exportar"
2470
-
2471
- #: ../modules/mycred-module-addons.php:25 ../modules/mycred-module-addons.php:26 .
2472
- #: ./includes/mycred-setup.php:171
2473
- msgid "Add-ons"
2474
- msgstr "Extensiones"
2475
-
2476
- #: ../modules/mycred-module-addons.php:173
2477
- msgid "Give your users badges based on their interaction with your website."
2478
- msgstr "Dar insignias a tus usuarios basado en sus interacciones con tu sitio web."
2479
-
2480
- #: ../modules/mycred-module-addons.php:184
2481
- msgid "Setup recurring payouts or offer / charge interest on user account balances."
2482
- msgstr ""
2483
- "Configura los pagos recurrentes u ofrecer / cobrar interés sobre los saldos "
2484
- "de las cuentas de usuarios."
2485
-
2486
- #: ../modules/mycred-module-addons.php:195
2487
- msgid ""
2488
- "The <strong>buy</strong>CRED Add-on allows your users to buy points using "
2489
- "PayPal, Skrill (Moneybookers) or NETbilling. <strong>buy</strong>CRED can "
2490
- "also let your users buy points for other members."
2491
- msgstr ""
2492
- "La Extensión <strong>compra</strong>CRED permite que tus usuarios compren "
2493
- "puntos utilizando PayPal, Skrill (Moneybookers) o NETbilling. "
2494
- "<strong>compra</strong>CRED tambien permite que tus usuarios compren puntos "
2495
- "para otros miembros."
2496
-
2497
- #: ../modules/mycred-module-addons.php:206
2498
- msgid ""
2499
- "The coupons add-on allows you to create coupons that users can use to add "
2500
- "points to their accounts."
2501
- msgstr ""
2502
- "Los cupones de add-on le permite crear cupones que los usuarios pueden "
2503
- "utilizar para agregar puntos a sus cuentas."
2504
-
2505
- #: ../modules/mycred-module-addons.php:217
2506
- msgid "Create email notices for any type of myCRED instance."
2507
- msgstr ""
2508
- "Crea avisos por correo electrónico para cualquier tipo de instancias de "
2509
- "myCRED."
2510
-
2511
- #: ../modules/mycred-module-addons.php:228
2512
- msgid ""
2513
- "Let your users pay using their <strong>my</strong>CRED points balance. "
2514
- "Supported Carts: WooCommerce, MarketPress and WP E-Commerce. Supported Event "
2515
- "Bookings: Event Espresso and Events Manager (free & pro)."
2516
- msgstr ""
2517
- "Permite que tus usuarios paguen utilizando el saldo de sus puntos "
2518
- "<strong>my</strong>CRED. Carritos soportados: WooCommerce, MarketPress and "
2519
- "WP E-Commerce. Reservas de Eventos soportados: Event Espresso and Events "
2520
- "Manager (gratis y pro)."
2521
-
2522
- #: ../modules/mycred-module-addons.php:239
2523
- msgid "Create pop-up notifications for when users gain or loose points."
2524
- msgstr "Crear notificaciones pop-up cuando los usuarios ganan o pierden puntos."
2525
-
2526
- #: ../modules/mycred-module-addons.php:251
2527
- msgid ""
2528
- "Create ranks for users reaching a certain number of %_plural% with the "
2529
- "option to add logos for each rank."
2530
- msgstr ""
2531
- "Crear rangos para los usuarios que alcanzan a un cierto número de %_plural% "
2532
- "con la opción de añadir logotipos para cada rango."
2533
-
2534
- #: ../modules/mycred-module-addons.php:262
2535
- msgid ""
2536
- "This add-on allows you to sell posts, pages or any public post types on your "
2537
- "website. You can either sell the entire content or using our shortcode, sell "
2538
- "parts of your content allowing you to offer \"teasers\"."
2539
- msgstr ""
2540
- "Esta extensión permite que vendas posts, páginas o cualquier tipo de "
2541
- "publicación en tu sitio web. Puedes venter contenidos enteros o utilizando "
2542
- "el código corto (shortcode), vender partes de tu contenido permitiendote "
2543
- "ofrecer \"avances\"."
2544
-
2545
- #: ../modules/mycred-module-addons.php:284
2546
- msgid ""
2547
- "Allow your users to send or \"donate\" points to other members by either using "
2548
- "the mycred_transfer shortcode or the myCRED Transfer widget."
2549
- msgstr ""
2550
- "Permite que los usuarios envien o \"donen\" puntos a otros miembros utilizando "
2551
- "el código corto (shortcode) de mycred_transfer o el widget de Transferencia "
2552
- "myCRED."
2553
-
2554
- #: ../modules/mycred-module-addons.php:328
2555
- #, php-format
2556
- msgid "%s Add-ons"
2557
- msgstr "%s Extensiones (addons)"
2558
-
2559
- #: ../modules/mycred-module-addons.php:335
2560
- msgid "Add-on Activated"
2561
- msgstr "Extensión Activado"
2562
-
2563
- #: ../modules/mycred-module-addons.php:338
2564
- msgid "Add-on Deactivated"
2565
- msgstr "Extensión Desactivado"
2566
-
2567
- #: ../modules/mycred-module-addons.php:406
2568
- msgid "Activate Add-on"
2569
- msgstr "Activar Extensión"
2570
-
2571
- #: ../modules/mycred-module-addons.php:407
2572
- msgid "Activate"
2573
- msgstr "Activar"
2574
-
2575
- #: ../modules/mycred-module-addons.php:413
2576
- msgid "Deactivate Add-on"
2577
- msgstr "Desactivar Extensión"
2578
-
2579
- #: ../modules/mycred-module-addons.php:414
2580
- msgid "Deactivate"
2581
- msgstr "Desactivar"
2582
-
2583
- #: ../modules/mycred-module-log.php:24 ../modules/mycred-module-log.php:25 ..
2584
- #: addons/gateway/event-booking/mycred-eventespresso3.php:515
2585
- msgid "Log"
2586
- msgstr "Registro"
2587
-
2588
- #: ../modules/mycred-module-log.php:92 ../modules/mycred-module-log.php:906 ..
2589
- #: includes/classes/class.query-export.php:263 ../includes/classes/class.query-
2590
- #: export.php:371 ../includes/classes/class.query-log.php:369 ..
2591
- #: includes/classes/class.query-log.php:378 ../addons/email-notices/myCRED-addon-
2592
- #: email-notices.php:332 ../addons/email-notices/myCRED-addon-email-notices.php:565
2593
- msgid "User"
2594
- msgstr "Usuario"
2595
-
2596
- #: ../modules/mycred-module-log.php:173
2597
- msgid "Row Deleted"
2598
- msgstr "Fila Borrado"
2599
-
2600
- #: ../modules/mycred-module-log.php:232
2601
- msgid "Log entry not found"
2602
- msgstr "No se encontro la entrada de registro "
2603
-
2604
- #: ../modules/mycred-module-log.php:464
2605
- msgid "Edit Log Entry"
2606
- msgstr "Edidar entrada de registro"
2607
-
2608
- #: ../modules/mycred-module-log.php:468
2609
- msgid "Are you sure you want to delete this log entry? This can not be undone!"
2610
- msgstr ""
2611
- "¿Esta seguro que quiere borrar esta entrada de registro? ¡Esto no se puede "
2612
- "deshacer!"
2613
-
2614
- #: ../modules/mycred-module-log.php:502
2615
- msgid "Search results for"
2616
- msgstr "Buscar entre resultados por"
2617
-
2618
- #: ../modules/mycred-module-log.php:554
2619
- #, php-format
2620
- msgid "%s Log"
2621
- msgstr "Registro de %s"
2622
-
2623
- #: ../modules/mycred-module-log.php:666
2624
- #, php-format
2625
- msgid "My %s History"
2626
- msgstr "Mi Historial de %s"
2627
-
2628
- #: ../modules/mycred-module-network.php:61 ../modules/mycred-module-network.php:
2629
- #: 62 ../addons/gateway/carts/mycred-woocommerce.php:29 ..
2630
- #: addons/gateway/carts/mycred-marketpress.php:274
2631
- msgid "myCRED"
2632
- msgstr "myCRED"
2633
-
2634
- #: ../modules/mycred-module-network.php:71 ../modules/mycred-module-network.php:72
2635
- msgid "Network Settings"
2636
- msgstr "Configuración de la Red"
2637
-
2638
- #: ../modules/mycred-module-network.php:135
2639
- #, php-format
2640
- msgid "%s Network"
2641
- msgstr "Red de %s"
2642
-
2643
- #: ../modules/mycred-module-network.php:151
2644
- #, php-format
2645
- msgid "Note! %s has not yet been setup."
2646
- msgstr "¡Aviso! %s no ha sido configurado."
2647
-
2648
- #: ../modules/mycred-module-network.php:158
2649
- #, php-format
2650
- msgid "Configure network settings for %s."
2651
- msgstr "Configure los parámetros de red para %s."
2652
-
2653
- #: ../modules/mycred-module-network.php:166
2654
- msgid "Master Template"
2655
- msgstr "Plantilla Principal"
2656
-
2657
- #: ../modules/mycred-module-network.php:170 ../modules/mycred-module-network.php:
2658
- #: 184 ../addons/buy-creds/gateways/bitpay.php:299
2659
- msgid "Yes"
2660
- msgstr "Sí"
2661
-
2662
- #: ../modules/mycred-module-network.php:174 ../modules/mycred-module-network.php:
2663
- #: 188 ../addons/buy-creds/gateways/bitpay.php:298
2664
- msgid "No"
2665
- msgstr "No"
2666
-
2667
- #: ../modules/mycred-module-network.php:177
2668
- #, php-format
2669
- msgid ""
2670
- "If enabled, %s will use your main site's settings for all other sites in "
2671
- "your network."
2672
- msgstr ""
2673
- "Si activado, %s utilizara la configuración de tu sitio principal para todas "
2674
- "los sitios en tu red."
2675
-
2676
- #: ../modules/mycred-module-network.php:180
2677
- msgid "Central Logging"
2678
- msgstr "Central de Registro"
2679
-
2680
- #: ../modules/mycred-module-network.php:191
2681
- #, php-format
2682
- msgid "If enabled, %s will log all site actions in your main site's log."
2683
- msgstr ""
2684
- "Si está activado, %s registrará todas las acciones en el registro de tu "
2685
- "sitio principal."
2686
-
2687
- #: ../modules/mycred-module-network.php:194
2688
- msgid "Site Block"
2689
- msgstr "Bloqueo de Sitio"
2690
-
2691
- #: ../modules/mycred-module-network.php:198
2692
- #, php-format
2693
- msgid "Comma separated list of blog ids where %s is to be disabled."
2694
- msgstr "Lista separada por comas de blog IDs donde %s se va a inhabilitar."
2695
-
2696
- #: ../modules/mycred-module-network.php:210
2697
- msgid "Save Network Settings"
2698
- msgstr "Guardar las Configuraciones de la Eed"
2699
-
2700
- #: ../modules/mycred-module-export.php:285 ../modules/mycred-module-export.php:
2701
- #: 332 ../includes/classes/class.query-log.php:1141
2702
- msgid ""
2703
- "Log entries are exported to a CSV file and depending on the number of "
2704
- "entries selected, the process may take a few seconds."
2705
- msgstr ""
2706
- "Se exporta las entradas de registro a un fichero CSV y dependiendo del "
2707
- "número de entradas seleccionadas, el proceso puede tardar unos segundos."
2708
-
2709
- #. also, "Inhabilitar"
2710
- #: ../modules/mycred-module-export.php:353 ../addons/sell-content/myCRED-addon-
2711
- #: sell-content.php:265
2712
- msgid "Disabled"
2713
- msgstr "Desactivado"
2714
-
2715
- #: ../modules/mycred-module-export.php:354 ../addons/sell-content/myCRED-addon-
2716
- #: sell-content.php:266
2717
- msgid "Enabled"
2718
- msgstr "Habilitado"
2719
-
2720
- #: ../modules/mycred-module-export.php:400 ../modules/mycred-module-export.php:
2721
- #: 448 ../includes/importers/mycred-cubepoints.php:401 ../includes/classes/class.
2722
- #: query-export.php:263 ../includes/classes/class.query-export.php:391 ..
2723
- #: includes/mycred-widgets.php:195 ../includes/mycred-widgets.php:384 ..
2724
- #: addons/gateway/event-booking/mycred-eventespresso3.php:483 ..
2725
- #: addons/gateway/event-booking/mycred-eventsmanager.php:550 ..
2726
- #: addons/gateway/event-booking/mycred-eventsmanager-pro.php:611 ..
2727
- #: addons/gateway/carts/mycred-wpecommerce.php:383 ..
2728
- #: addons/gateway/carts/mycred-woocommerce.php:119 ..
2729
- #: addons/gateway/carts/mycred-marketpress.php:427 ../addons/ranks/myCRED-addon-
2730
- #: ranks.php:1048 ../addons/ranks/myCRED-addon-ranks.php:1218 ../addons/email-
2731
- #: notices/myCRED-addon-email-notices.php:276 ../addons/email-notices/myCRED-
2732
- #: addon-email-notices.php:582 ../addons/coupons/myCRED-addon-coupons.php:254 ..
2733
- #: addons/coupons/myCRED-addon-coupons.php:488 ../addons/buy-
2734
- #: creds/modules/buycred-module-pending.php:550 ../addons/buy-
2735
- #: creds/modules/buycred-module-pending.php:728
2736
- msgid "Point Type"
2737
- msgstr "Clase de Puntos"
2738
-
2739
- #: ../modules/mycred-module-hooks.php:28 ../modules/mycred-module-hooks.php:29 ..
2740
- #: modules/mycred-module-hooks.php:30 ../addons/stats/abstracts/mycred-abstract-
2741
- #: stat-widget.php:103
2742
- msgid "Hooks"
2743
- msgstr "Ganchos"
2744
-
2745
- #: ../modules/mycred-module-hooks.php:76
2746
- #, php-format
2747
- msgid "%plural% for registrations"
2748
- msgstr "%plural% por inscripciones"
2749
-
2750
- #: ../modules/mycred-module-hooks.php:77
2751
- #, php-format
2752
- msgid "Award %_plural% for users joining your website."
2753
- msgstr "Concede %_plural% a usuarios por unirse a tu sitio de web."
2754
-
2755
- #: ../modules/mycred-module-hooks.php:83
2756
- #, php-format
2757
- msgid "%plural% for daily visits"
2758
- msgstr "%plural% para visitas diarias"
2759
-
2760
- #: ../modules/mycred-module-hooks.php:90
2761
- #, php-format
2762
- msgid "%plural% for viewing content"
2763
- msgstr "%plural% para ver contenido"
2764
-
2765
- #: ../modules/mycred-module-hooks.php:97
2766
- #, php-format
2767
- msgid "%plural% for logins"
2768
- msgstr "%plural% para ingresos"
2769
-
2770
- #: ../modules/mycred-module-hooks.php:104
2771
- #, php-format
2772
- msgid "%plural% for publishing content"
2773
- msgstr "%plural% por publicar contenido"
2774
-
2775
- #: ../modules/mycred-module-hooks.php:118
2776
- #, php-format
2777
- msgid "%plural% for comments"
2778
- msgstr "%plural% por comentarios"
2779
-
2780
- #: ../modules/mycred-module-hooks.php:118
2781
- #, php-format
2782
- msgid "%plural% for Disqus comments"
2783
- msgstr "%plural% por comentarios Disqus"
2784
-
2785
- #: ../modules/mycred-module-hooks.php:119
2786
- #, php-format
2787
- msgid "Award %_plural% for making comments."
2788
- msgstr "Concede %_plural% por hacer comentarios."
2789
-
2790
- #: ../modules/mycred-module-hooks.php:125
2791
- #, php-format
2792
- msgid "%plural% for clicking on links"
2793
- msgstr "%plural% por hacer clic sobre enlaces"
2794
-
2795
- #: ../modules/mycred-module-hooks.php:132
2796
- #, php-format
2797
- msgid "%plural% for viewing Videos"
2798
- msgstr "%plural% por ver videos"
2799
-
2800
- #: ../modules/mycred-module-hooks.php:139
2801
- #, php-format
2802
- msgid "%plural% for referrals"
2803
- msgstr "%plural% por referencias (o recomendaciones)"
2804
-
2805
- #: ../modules/mycred-module-hooks.php:309 ../modules/mycred-module-hooks.php:423 .
2806
- #: ./addons/buy-creds/modules/buycred-module-pending.php:466
2807
- msgid "Save"
2808
- msgstr "Guardar"
2809
-
2810
- #: ../modules/mycred-module-hooks.php:344 ../addons/buy-creds/abstracts/mycred-
2811
- #: abstract-payment-gateway.php:455 ../addons/buy-creds/modules/buycred-module-
2812
- #: pending.php:711
2813
- msgid "Cancel"
2814
- msgstr "Cancelar"
2815
-
2816
- #: ../modules/mycred-module-hooks.php:751 ../modules/mycred-module-hooks.php:858 .
2817
- #: ./modules/mycred-module-hooks.php:1028 ../modules/mycred-module-hooks.php:1059
2818
- #: ../modules/mycred-module-hooks.php:1136 ../modules/mycred-module-hooks.php:
2819
- #: 1500 ../modules/mycred-module-hooks.php:1517 ../modules/mycred-module-hooks.
2820
- #: php:1566 ../modules/mycred-module-hooks.php:1755 ../modules/mycred-module-
2821
- #: hooks.php:1772 ../modules/mycred-module-hooks.php:1821 ../modules/mycred-
2822
- #: module-hooks.php:2273 ../modules/mycred-module-hooks.php:2290 ..
2823
- #: modules/mycred-module-hooks.php:2307 ../modules/mycred-module-hooks.php:3644 .
2824
- #: ./modules/mycred-module-hooks.php:3659 ../plugins/mycred-hook-invite-anyone.
2825
- #: php:211 ../plugins/mycred-hook-invite-anyone.php:232 ../plugins/mycred-hook-wp-
2826
- #: postratings.php:173 ../plugins/mycred-hook-wp-postratings.php:192 ..
2827
- #: plugins/mycred-hook-gravityforms.php:165 ../plugins/mycred-hook-simplepress.
2828
- #: php:309 ../plugins/mycred-hook-simplepress.php:322 ../plugins/mycred-hook-
2829
- #: simplepress.php:339 ../plugins/mycred-hook-simplepress.php:357 ..
2830
- #: plugins/mycred-hook-buddypress-gallery.php:116 ../plugins/mycred-hook-
2831
- #: buddypress.php:621 ../plugins/mycred-hook-buddypress.php:638 ../plugins/mycred-
2832
- #: hook-buddypress.php:655 ../plugins/mycred-hook-buddypress.php:672 ..
2833
- #: plugins/mycred-hook-buddypress.php:692 ../plugins/mycred-hook-buddypress.php:
2834
- #: 705 ../plugins/mycred-hook-buddypress.php:722 ../plugins/mycred-hook-
2835
- #: buddypress.php:735 ../plugins/mycred-hook-buddypress.php:752 ../plugins/mycred-
2836
- #: hook-buddypress.php:765 ../plugins/mycred-hook-buddypress.php:782 ..
2837
- #: plugins/mycred-hook-buddypress.php:799 ../plugins/mycred-hook-buddypress.php:
2838
- #: 1429 ../plugins/mycred-hook-buddypress.php:1442 ../plugins/mycred-hook-
2839
- #: buddypress.php:1459 ../plugins/mycred-hook-buddypress.php:1476 ..
2840
- #: plugins/mycred-hook-buddypress.php:1493 ../plugins/mycred-hook-buddypress.php:
2841
- #: 1510 ../plugins/mycred-hook-buddypress.php:1528 ../plugins/mycred-hook-
2842
- #: buddypress.php:1541 ../plugins/mycred-hook-buddypress.php:1558 ..
2843
- #: plugins/mycred-hook-buddypress.php:1575 ../plugins/mycred-hook-buddypress.php:
2844
- #: 1592 ../plugins/mycred-hook-buddypress-links.php:271 ../plugins/mycred-hook-
2845
- #: buddypress-links.php:288 ../plugins/mycred-hook-buddypress-links.php:305 ..
2846
- #: plugins/mycred-hook-buddypress-links.php:324 ../plugins/mycred-hook-
2847
- #: buddypress-links.php:341 ../plugins/mycred-hook-buddypress-links.php:354 ..
2848
- #: plugins/mycred-hook-affiliatewp.php:229 ../plugins/mycred-hook-affiliatewp.
2849
- #: php:246 ../plugins/mycred-hook-sharethis.php:307 ../plugins/mycred-hook-
2850
- #: buddypress-media.php:316 ../plugins/mycred-hook-buddypress-media.php:330 ..
2851
- #: plugins/mycred-hook-buddypress-media.php:344 ../plugins/mycred-hook-
2852
- #: buddypress-media.php:357 ../plugins/mycred-hook-buddypress-media.php:367 ..
2853
- #: plugins/mycred-hook-buddypress-media.php:377 ../plugins/mycred-hook-contact-
2854
- #: form7.php:168 ../plugins/mycred-hook-jetpack.php:545 ../plugins/mycred-hook-
2855
- #: jetpack.php:558 ../plugins/mycred-hook-bbPress.php:443 ../plugins/mycred-hook-
2856
- #: bbPress.php:456 ../plugins/mycred-hook-bbPress.php:473 ../plugins/mycred-hook-
2857
- #: bbPress.php:491 ../plugins/mycred-hook-bbPress.php:508 ../plugins/mycred-hook-
2858
- #: bbPress.php:525 ../plugins/mycred-hook-bbPress.php:551 ../plugins/mycred-hook-
2859
- #: badgeOS.php:336 ../addons/badges/myCRED-addon-badges.php:949
2860
- msgid "Log template"
2861
- msgstr "Plantilla de Registro"
2862
-
2863
- #: ../modules/mycred-module-hooks.php:1011
2864
- #, php-format
2865
- msgid "%plural% for viewing Posts"
2866
- msgstr "%plural% para ver Entradas"
2867
-
2868
- #: ../modules/mycred-module-hooks.php:1014 ../modules/mycred-module-hooks.php:
2869
- #: 1031 ../modules/mycred-module-hooks.php:1045 ../modules/mycred-module-hooks.
2870
- #: php:1062 ../modules/mycred-module-hooks.php:1122 ../modules/mycred-module-
2871
- #: hooks.php:1139
2872
- msgid "Member"
2873
- msgstr "Miembro"
2874
-
2875
- #: ../modules/mycred-module-hooks.php:1017 ../modules/mycred-module-hooks.php:
2876
- #: 1024 ../modules/mycred-module-hooks.php:1048 ../modules/mycred-module-hooks.
2877
- #: php:1055 ../modules/mycred-module-hooks.php:1125 ../modules/mycred-module-
2878
- #: hooks.php:1132 ../modules/mycred-module-hooks.php:1356 ../modules/mycred-
2879
- #: module-hooks.php:1496 ../modules/mycred-module-hooks.php:1513 ..
2880
- #: modules/mycred-module-hooks.php:1562 ../modules/mycred-module-hooks.php:1751 .
2881
- #: ./modules/mycred-module-hooks.php:1768 ../modules/mycred-module-hooks.php:1817
2882
- #: ../modules/mycred-module-hooks.php:3638 ../modules/mycred-module-hooks.php:
2883
- #: 3667 ../plugins/mycred-hook-invite-anyone.php:216 ../plugins/mycred-hook-
2884
- #: invite-anyone.php:219 ../plugins/mycred-hook-invite-anyone.php:237 ..
2885
- #: plugins/mycred-hook-invite-anyone.php:240 ../plugins/mycred-hook-wp-
2886
- #: postratings.php:165 ../plugins/mycred-hook-wp-postratings.php:184 ..
2887
- #: plugins/mycred-hook-gravityforms.php:160 ../plugins/mycred-hook-simplepress.
2888
- #: php:304 ../plugins/mycred-hook-simplepress.php:334 ../plugins/mycred-hook-
2889
- #: buddypress-gallery.php:111 ../plugins/mycred-hook-buddypress.php:616 ..
2890
- #: plugins/mycred-hook-buddypress.php:633 ../plugins/mycred-hook-buddypress.php:
2891
- #: 650 ../plugins/mycred-hook-buddypress.php:667 ../plugins/mycred-hook-
2892
- #: buddypress.php:684 ../plugins/mycred-hook-buddypress.php:717 ../plugins/mycred-
2893
- #: hook-buddypress.php:747 ../plugins/mycred-hook-buddypress.php:777 ..
2894
- #: plugins/mycred-hook-buddypress.php:794 ../plugins/mycred-hook-buddypress.php:
2895
- #: 1454 ../plugins/mycred-hook-buddypress.php:1471 ../plugins/mycred-hook-
2896
- #: buddypress.php:1488 ../plugins/mycred-hook-buddypress.php:1505 ..
2897
- #: plugins/mycred-hook-buddypress.php:1523 ../plugins/mycred-hook-buddypress.php:
2898
- #: 1553 ../plugins/mycred-hook-buddypress.php:1570 ../plugins/mycred-hook-
2899
- #: buddypress.php:1587 ../plugins/mycred-hook-buddypress-links.php:266 ..
2900
- #: plugins/mycred-hook-buddypress-links.php:283 ../plugins/mycred-hook-
2901
- #: buddypress-links.php:300 ../plugins/mycred-hook-buddypress-links.php:310 ..
2902
- #: plugins/mycred-hook-buddypress-links.php:319 ../plugins/mycred-hook-
2903
- #: buddypress-links.php:336 ../plugins/mycred-hook-affiliatewp.php:241 ..
2904
- #: plugins/mycred-hook-events-manager-light.php:205 ../plugins/mycred-hook-
2905
- #: sharethis.php:302 ../plugins/mycred-hook-buddypress-media.php:312 ..
2906
- #: plugins/mycred-hook-buddypress-media.php:326 ../plugins/mycred-hook-
2907
- #: buddypress-media.php:340 ../plugins/mycred-hook-wp-favorite-posts.php:222 ..
2908
- #: plugins/mycred-hook-wp-favorite-posts.php:240 ../plugins/mycred-hook-contact-
2909
- #: form7.php:163 ../plugins/mycred-hook-bbPress.php:438 ../plugins/mycred-hook-
2910
- #: bbPress.php:468 ../plugins/mycred-hook-bbPress.php:503 ../plugins/mycred-hook-
2911
- #: bbPress.php:520 ../plugins/mycred-hook-woocommerce.php:336 ..
2912
- #: includes/shortcodes/mycred_hook_table.php:81 ../addons/transfer/myCRED-addon-
2913
- #: transfer.php:478
2914
- msgid "Limit"
2915
- msgstr "Límite"
2916
-
2917
- #: ../modules/mycred-module-hooks.php:1021 ../modules/mycred-module-hooks.php:
2918
- #: 1037 ../modules/mycred-module-hooks.php:1052 ../modules/mycred-module-hooks.
2919
- #: php:1068 ../modules/mycred-module-hooks.php:1129 ../modules/mycred-module-
2920
- #: hooks.php:1145 ../modules/mycred-module-hooks.php:2268 ../modules/mycred-
2921
- #: module-hooks.php:2285 ../modules/mycred-module-hooks.php:2302
2922
- msgid "Content Author"
2923
- msgstr "Autor del Contenido"
2924
-
2925
- #: ../modules/mycred-module-hooks.php:1042
2926
- #, php-format
2927
- msgid "%plural% for viewing Pages"
2928
- msgstr "%plural% para ver Paginas"
2929
-
2930
- #: ../modules/mycred-module-hooks.php:1119
2931
- #, php-format
2932
- msgid "%plural% for viewing %s"
2933
- msgstr "%plural% para Ver %s"
2934
-
2935
- #. can also be "Plantilla de Bitácora"
2936
- #: ../modules/mycred-module-hooks.php:1349 ../modules/mycred-module-hooks.php:
2937
- #: 2624 ../modules/mycred-module-hooks.php:3015 ../plugins/mycred-hook-wp-polls.
2938
- #: php:154 ../plugins/mycred-hook-gd-star-rating.php:121 ../plugins/mycred-hook-
2939
- #: gd-star-rating.php:134 ../plugins/mycred-hook-events-manager-light.php:209 ..
2940
- #: plugins/mycred-hook-events-manager-light.php:222 ../plugins/mycred-hook-wp-
2941
- #: favorite-posts.php:226 ../plugins/mycred-hook-wp-favorite-posts.php:244 ..
2942
- #: plugins/mycred-hook-wp-favorite-posts.php:258 ../plugins/mycred-hook-wp-
2943
- #: favorite-posts.php:271 ../plugins/mycred-hook-woocommerce.php:340 ..
2944
- #: plugins/mycred-hook-badgeOS.php:143 ../plugins/mycred-hook-badgeOS.php:145 ..
2945
- #: plugins/mycred-hook-badgeOS.php:156 ../addons/banking/services/mycred-service-
2946
- #: interest.php:510 ../addons/banking/services/mycred-service-payouts.php:708 ..
2947
- #: addons/gateway/carts/mycred-wpecommerce.php:400 ..
2948
- #: addons/gateway/carts/mycred-woocommerce.php:103 ..
2949
- #: addons/gateway/carts/mycred-woocommerce.php:175 ..
2950
- #: addons/gateway/carts/mycred-marketpress.php:433 ..
2951
- #: addons/gateway/carts/mycred-marketpress.php:472 ../addons/coupons/myCRED-
2952
- #: addon-coupons.php:661 ../addons/buy-creds/modules/buycred-module-core.php:333 .
2953
- #: ./addons/buy-creds/modules/buycred-module-core.php:396
2954
- msgid "Log Template"
2955
- msgstr "Plantilla de Registro"
2956
-
2957
- #: ../modules/mycred-module-hooks.php:1490 ../modules/mycred-module-hooks.php:1745
2958
- #, php-format
2959
- msgid "%plural% for Posts"
2960
- msgstr "%plural% por Posts"
2961
-
2962
- #: ../modules/mycred-module-hooks.php:1507 ../modules/mycred-module-hooks.php:1762
2963
- #, php-format
2964
- msgid "%plural% for Pages"
2965
- msgstr "%plural% por Paginas"
2966
-
2967
- #: ../modules/mycred-module-hooks.php:1556 ../modules/mycred-module-hooks.php:1811
2968
- #, php-format
2969
- msgid "%plural% for %s"
2970
- msgstr "%plural% por %s"
2971
-
2972
- #: ../modules/mycred-module-hooks.php:2258
2973
- #, php-format
2974
- msgid ""
2975
- "%plural% are only awarded when your website has been synced with the Disqus "
2976
- "server!"
2977
- msgstr ""
2978
- "¡%_plural% seran concedidos unicamente cuando tu sitio web se ha "
2979
- "sincronizado con el servidor de Disqus!"
2980
-
2981
- #: ../modules/mycred-module-hooks.php:2261 ../includes/classes/class.query-log.
2982
- #: php:1550
2983
- msgid "Approved Comment"
2984
- msgstr "Comentario Aprobado"
2985
-
2986
- #: ../modules/mycred-module-hooks.php:2264 ../modules/mycred-module-hooks.php:
2987
- #: 2281 ../modules/mycred-module-hooks.php:2298
2988
- msgid "Comment Author"
2989
- msgstr "Autor del Comentario"
2990
-
2991
- #: ../modules/mycred-module-hooks.php:2278
2992
- msgid "Comment Marked SPAM"
2993
- msgstr "Comentario Marcado como SPAM"
2994
-
2995
- #: ../modules/mycred-module-hooks.php:2295
2996
- msgid "Trashed / Unapproved Comments"
2997
- msgstr "Comentarios Destrozados / No Aprobados"
2998
-
2999
- #: ../modules/mycred-module-hooks.php:2312 ../modules/mycred-module-hooks.php:
3000
- #: 2631 ../addons/banking/services/mycred-service-payouts.php:597 ..
3001
- #: addons/banking/services/mycred-service-payouts.php:758 ..
3002
- #: addons/transfer/myCRED-addon-transfer.php:435 ../addons/coupons/myCRED-addon-
3003
- #: coupons.php:250
3004
- msgid "Limits"
3005
- msgstr "imites"
3006
-
3007
- #: ../modules/mycred-module-hooks.php:2315
3008
- msgid "Limit per post"
3009
- msgstr "Límite por Entrada"
3010
-
3011
- #. what is the Spanish word for "post"? o anglicismo?
3012
- #: ../modules/mycred-module-hooks.php:2317
3013
- msgid ""
3014
- "The number of comments per post that grants %_plural% to the comment author. "
3015
- "Use zero for unlimited."
3016
- msgstr ""
3017
- "El numero de comentarios por cada post que concede %_plural% al autor del "
3018
- "comentario. Utilice cero para un número ilimitado"
3019
-
3020
- #: ../modules/mycred-module-hooks.php:2321
3021
- msgid "Limit per day"
3022
- msgstr "Límite por día"
3023
-
3024
- #: ../modules/mycred-module-hooks.php:2323
3025
- msgid "Number of comments per day that grants %_plural%. Use zero for unlimited."
3026
- msgstr ""
3027
- "Número de comentarios diarios que conceden %_plural%. Utilice cero para un "
3028
- "número ilimitado."
3029
-
3030
- #: ../modules/mycred-module-hooks.php:2328
3031
- #, php-format
3032
- msgid ""
3033
- "%plural% is to be awarded even when comment authors reply to their own "
3034
- "comment."
3035
- msgstr ""
3036
- "%_plural% seran concedidos incluso cuando los autores responden a su proprio "
3037
- "comentario."
3038
-
3039
- #: ../modules/mycred-module-hooks.php:2402
3040
- msgid "Once for each unique URL"
3041
- msgstr "Una sola vez para cada única URL"
3042
-
3043
- #: ../modules/mycred-module-hooks.php:2403
3044
- msgid "Once for each unique link id"
3045
- msgstr "Una vez para cada id del enlace único "
3046
-
3047
- #: ../modules/mycred-module-hooks.php:2621
3048
- msgid ""
3049
- "The default amount to award for clicking on links. You can override this in "
3050
- "the shortcode."
3051
- msgstr ""
3052
- "La cantidad predefinida que sera cedida por hacer clic sobre enlaces. Puedes "
3053
- "anular esto con el 'shortcode' (código corto)."
3054
-
3055
- #: ../modules/mycred-module-hooks.php:2628
3056
- #, php-format
3057
- msgid "Custom tags: %url%, %title% or %id%."
3058
- msgstr "Etiquetas personalizadas: %url%, %title% o/u %id%."
3059
-
3060
- #: ../modules/mycred-module-hooks.php:2642 ../modules/mycred-module-hooks.php:3050
3061
- msgid "Available Shortcode"
3062
- msgstr "Código corto Disponible"
3063
-
3064
- #: ../modules/mycred-module-hooks.php:3012
3065
- msgid "Amount to award for viewing videos."
3066
- msgstr "Cantidad a ceder para ver videos."
3067
-
3068
- #: ../modules/mycred-module-hooks.php:3022
3069
- msgid "Award Logic"
3070
- msgstr "Lógica de Concesión"
3071
-
3072
- #: ../modules/mycred-module-hooks.php:3024
3073
- #, php-format
3074
- msgid "Select when %_plural% should be awarded or deducted."
3075
- msgstr "Elige cuando %_plural% deberian ser concedidos o restados."
3076
-
3077
- #: ../modules/mycred-module-hooks.php:3026
3078
- msgid "Play - As soon as video starts playing."
3079
- msgstr "Play - En cuanto el video empiece a reproducirse."
3080
-
3081
- #: ../modules/mycred-module-hooks.php:3027
3082
- msgid "Full - First when the entire video has played."
3083
- msgstr "Completo - Primero cuando el video entero se haya reproducido."
3084
-
3085
- #: ../modules/mycred-module-hooks.php:3028
3086
- msgid "Interval - For each x number of seconds watched."
3087
- msgstr "Intervalo - Para cada x numero de segundos vistos."
3088
-
3089
- #: ../modules/mycred-module-hooks.php:3032
3090
- msgid "Interval"
3091
- msgstr "Interval"
3092
-
3093
- #: ../modules/mycred-module-hooks.php:3034
3094
- msgid "Number of seconds"
3095
- msgstr "Numero de segundos"
3096
-
3097
- #: ../modules/mycred-module-hooks.php:3041
3098
- msgid "Leniency"
3099
- msgstr "Lenidad"
3100
-
3101
- #: ../modules/mycred-module-hooks.php:3043
3102
- msgid ""
3103
- "The maximum percentage a users view of a movie can differ from the actual "
3104
- "length."
3105
- msgstr ""
3106
- "El porcentaje máximo medido que un usuario vea puede variar con la duración "
3107
- "actual del video."
3108
-
3109
- #: ../modules/mycred-module-hooks.php:3046
3110
- msgid ""
3111
- "Do not set this value to zero! A lot of thing can happen while a user "
3112
- "watches a movie and sometimes a few seconds can drop of the counter due to "
3113
- "buffering or play back errors."
3114
- msgstr ""
3115
- "¡No fijes este valor a cero! Muchas cosas pueden suceder mientras que un "
3116
- "usuario ve una película y a veces la contador puede disminuir por pocos "
3117
- "segundos por falta de buffering o por errores de reproducción."
3118
-
3119
- #: ../modules/mycred-module-hooks.php:3121
3120
- msgid "Affiliate Program"
3121
- msgstr "Programa de Afiliados"
3122
-
3123
- #: ../modules/mycred-module-hooks.php:3130
3124
- msgid "Per Day"
3125
- msgstr "Por Día"
3126
-
3127
- #: ../modules/mycred-module-hooks.php:3289
3128
- msgid "Link"
3129
- msgstr "Enlace"
3130
-
3131
- #: ../modules/mycred-module-hooks.php:3293
3132
- msgid "Visitors Referred"
3133
- msgstr "Visitantes Referidos"
3134
-
3135
- #: ../modules/mycred-module-hooks.php:3297
3136
- msgid "Signups Referred"
3137
- msgstr "Inscripciones Referidos"
3138
-
3139
- #: ../modules/mycred-module-hooks.php:3632 ../plugins/mycred-hook-affiliatewp.php:
3140
- #: 235
3141
- msgid "Referring Visitors"
3142
- msgstr "Referiendo Visitantes"
3143
-
3144
- #: ../modules/mycred-module-hooks.php:3652 ../modules/mycred-module-hooks.php:3672
3145
- msgid "Referring Signups"
3146
- msgstr "Inscripciones a través de Referencias"
3147
-
3148
- #: ../modules/mycred-module-hooks.php:3656
3149
- msgid "Visitors who have Cookies disabled will not award %_plural%."
3150
- msgstr "Visitantes que tienen cookies desactivado no recibiran %_plural%."
3151
-
3152
- #: ../modules/mycred-module-hooks.php:3674
3153
- msgid "Registrations are disabled."
3154
- msgstr "Se han deshabilitado inscripciones."
3155
-
3156
- #: ../modules/mycred-module-hooks.php:3682
3157
- msgid "Referral Links"
3158
- msgstr "Enlaces Referentes"
3159
-
3160
- #: ../modules/mycred-module-hooks.php:3685
3161
- msgid "Assign numeric referral IDs to each user."
3162
- msgstr "Asignar ID numerica referente a cada usuario."
3163
-
3164
- #: ../modules/mycred-module-hooks.php:3686 ../modules/mycred-module-hooks.php:3690
3165
- msgid "Example"
3166
- msgstr "Ejemplo"
3167
-
3168
- #: ../modules/mycred-module-hooks.php:3689
3169
- msgid "Assign usernames as IDs for each user."
3170
- msgstr "Asignar los nombres de usuario como ID para cada usuario."
3171
-
3172
- #: ../modules/mycred-module-hooks.php:3693
3173
- msgid "IP Limit"
3174
- msgstr "Límite de IP"
3175
-
3176
- #: ../modules/mycred-module-hooks.php:3697
3177
- msgid "The number of times each IP address grants %_plural%. Use zero for unlimited."
3178
- msgstr ""
3179
- "El numero de veces que cada IP concede %_plural%. Utilice cero para un "
3180
- "número ilimitado"
3181
-
3182
- #: ../modules/mycred-module-hooks.php:3701
3183
- msgid "BuddyPress Profile"
3184
- msgstr "Perfil de BuddyPress"
3185
-
3186
- #: ../modules/mycred-module-hooks.php:3704
3187
- msgid "Insert Link in users Profile"
3188
- msgstr "Insertar enlace en el perfil del usuario"
3189
-
3190
- #: ../modules/mycred-module-hooks.php:3705
3191
- msgid ""
3192
- "Option to inser the referral link in users profiles. Links will only be "
3193
- "visible to users viewing their own profiles or administrators."
3194
- msgstr ""
3195
- "Opción para insertar el enlace de referencia en los perfiles de los usuarios."
3196
- " Estos enlaces serán visibles a los administradores o a los usuarios cuando "
3197
- "ven a sus propios perfiles."
3198
-
3199
- #: ../modules/mycred-module-hooks.php:3709 ../includes/mycred-widgets.php:188 ..
3200
- #: includes/mycred-widgets.php:378 ../includes/mycred-widgets.php:586 ..
3201
- #: addons/gateway/carts/mycred-woocommerce.php:91 ..
3202
- #: addons/transfer/includes/mycred-transfer-widgets.php:83 ..
3203
- #: addons/ranks/myCRED-addon-ranks.php:1331 ../addons/sell-
3204
- #: content/includes/mycred-sell-shortcodes.php:186 ../addons/buy-
3205
- #: creds/gateways/bank-transfer.php:161 ../addons/buy-creds/gateways/skrill.php:333
3206
- msgid "Title"
3207
- msgstr "Titulo"
3208
-
3209
- #: ../modules/mycred-module-hooks.php:3711
3210
- msgid "Leave empty to hide."
3211
- msgstr "Deje el campo vacío para ocultarlo."
3212
-
3213
- #: ../modules/mycred-module-hooks.php:3714
3214
- msgid "Description"
3215
- msgstr "Descripción"
3216
-
3217
- #: ../modules/mycred-module-hooks.php:3715
3218
- msgid "Optional description to insert under the link."
3219
- msgstr "Insertar la descripción opcional debajo del enlace."
3220
-
3221
- #: ../modules/mycred-module-hooks.php:3729
3222
- msgid "Profile Positioning"
3223
- msgstr "Posicionamiento del Perfil"
3224
-
3225
- #: ../modules/mycred-module-hooks.php:3731
3226
- msgid ""
3227
- "You can move around the referral link on your users profile by changing the "
3228
- "position. Increase to move up, decrease to move down."
3229
- msgstr ""
3230
- "Puedes moverte por el enlace de referencia en su perfil los usuarios "
3231
- "cambiando la posición. Aumentar a moverse hacia arriba, disminuye al bajar."
3232
-
3233
- #: ../modules/mycred-module-hooks.php:3732
3234
- msgid "Note!"
3235
- msgstr "¡Atención!"
3236
-
3237
- #: ../modules/mycred-module-hooks.php:3732
3238
- msgid "You can not move the referral link above the users \"Base\" profile details!"
3239
- msgstr ""
3240
- "¡No puedes trasladar el enlace de referencia encima de los detalles \"Base\" "
3241
- "en el perfil del usuario!"
3242
-
3243
- #: ../modules/mycred-module-hooks.php:3741 ../addons/buy-creds/modules/buycred-
3244
- #: module-core.php:401
3245
- msgid "Available Shortcodes"
3246
- msgstr "Códigos cortos Disponibles"
3247
-
3248
- #: ../modules/mycred-module-buddypress.php:31
3249
- msgid "My History"
3250
- msgstr "Mi Historial"
3251
-
3252
- #: ../modules/mycred-module-buddypress.php:32
3253
- #, php-format
3254
- msgid "%s's History"
3255
- msgstr "La Historial de %s"
3256
-
3257
- #: ../modules/mycred-module-buddypress.php:131
3258
- msgid "Current balance"
3259
- msgstr "Saldo Actual"
3260
-
3261
- #: ../modules/mycred-module-buddypress.php:236 ../modules/mycred-module-
3262
- #: buddypress.php:249 ../includes/classes/class.query-log.php:1195
3263
- msgid "All"
3264
- msgstr "Todo"
3265
-
3266
- #: ../modules/mycred-module-buddypress.php:237 ../includes/classes/class.query-
3267
- #: log.php:1196 ../addons/stats/widgets/mycred-stats-widget-circulation.php:190 ..
3268
- #: addons/stats/widgets/mycred-stats-widget-circulation.php:320
3269
- msgid "Today"
3270
- msgstr "Hoy"
3271
-
3272
- #: ../modules/mycred-module-buddypress.php:238 ../includes/classes/class.query-
3273
- #: log.php:1197
3274
- msgid "Yesterday"
3275
- msgstr "Ayer"
3276
-
3277
- #: ../modules/mycred-module-buddypress.php:239 ../includes/classes/class.query-
3278
- #: log.php:1198 ../addons/stats/widgets/mycred-stats-widget-circulation.php:191 ..
3279
- #: addons/stats/widgets/mycred-stats-widget-circulation.php:321
3280
- msgid "This Week"
3281
- msgstr "Esta Semana"
3282
-
3283
- #: ../modules/mycred-module-buddypress.php:240 ../includes/classes/class.query-
3284
- #: log.php:1199 ../addons/stats/widgets/mycred-stats-widget-circulation.php:192 ..
3285
- #: addons/stats/widgets/mycred-stats-widget-circulation.php:322
3286
- msgid "This Month"
3287
- msgstr "Este Mes"
3288
-
3289
- #: ../modules/mycred-module-buddypress.php:362
3290
- msgid "Go"
3291
- msgstr "Ir a"
3292
-
3293
- #: ../modules/mycred-module-buddypress.php:414 ../addons/gateway/carts/mycred-
3294
- #: woocommerce.php:151 ../addons/badges/myCRED-addon-badges.php:1146 ..
3295
- #: addons/badges/myCRED-addon-badges.php:1182
3296
- msgid "Do not show"
3297
- msgstr "No Mostrar"
3298
-
3299
- #: ../modules/mycred-module-buddypress.php:415 ../addons/badges/myCRED-addon-
3300
- #: badges.php:1147
3301
- msgid "Include in Profile Header"
3302
- msgstr "Incluir en el Encabezado del Perfil"
3303
-
3304
- #: ../modules/mycred-module-buddypress.php:416 ../addons/ranks/myCRED-addon-ranks.
3305
- #: php:1420 ../addons/badges/myCRED-addon-badges.php:1148
3306
- msgid "Include under the \"Profile\" tab"
3307
- msgstr "Incluir debajo de la pestaña del \"Perfil\""
3308
-
3309
- #: ../modules/mycred-module-buddypress.php:417 ../addons/badges/myCRED-addon-
3310
- #: badges.php:1149
3311
- msgid "Include under the \"Profile\" tab and Profile Header"
3312
- msgstr "Incluir bajo la pestanã \"Perfil\" y Encabezado de Perfil"
3313
-
3314
- #: ../modules/mycred-module-buddypress.php:421 ../addons/ranks/myCRED-addon-ranks.
3315
- #: php:1418 ../addons/ranks/myCRED-addon-ranks.php:1463
3316
- msgid "Do not show."
3317
- msgstr "No mostrar."
3318
-
3319
- #: ../modules/mycred-module-buddypress.php:422
3320
- msgid "Show in Profile"
3321
- msgstr "Mostrar en Perfil"
3322
-
3323
- #: ../modules/mycred-module-buddypress.php:439
3324
- #, php-format
3325
- msgid "%singular% Balance"
3326
- msgstr "%singular% Saldo"
3327
-
3328
- #: ../modules/mycred-module-buddypress.php:461 ../addons/ranks/myCRED-addon-ranks.
3329
- #: php:1440 ../addons/ranks/myCRED-addon-ranks.php:1485 ..
3330
- #: addons/notifications/myCRED-addon-notifications.php:199
3331
- msgid "Template"
3332
- msgstr "Plantilla"
3333
-
3334
- #: ../modules/mycred-module-buddypress.php:466
3335
- #, php-format
3336
- msgid "%plural% History"
3337
- msgstr "Historial de %plural%"
3338
-
3339
- #: ../modules/mycred-module-buddypress.php:483
3340
- msgid "Members can view each others %_plural% history."
3341
- msgstr "Miembros pueden ver, uno al otro, el historial de sus %_plural%."
3342
-
3343
- #: ../modules/mycred-module-buddypress.php:488
3344
- msgid "Menu Title"
3345
- msgstr "Título de Menú"
3346
-
3347
- #: ../modules/mycred-module-buddypress.php:490
3348
- msgid "Title shown to me"
3349
- msgstr "Título mostrado a mi"
3350
-
3351
- #: ../modules/mycred-module-buddypress.php:495
3352
- #, php-format
3353
- msgid "Title shown to others. Use %s to show the first name."
3354
- msgstr "Título mostrado a otros. Utilice %s para mostrar el nombre de pila."
3355
-
3356
- #: ../modules/mycred-module-buddypress.php:500
3357
- msgid "Menu Position"
3358
- msgstr "Posición del Menú"
3359
-
3360
- #: ../modules/mycred-module-buddypress.php:502
3361
- msgid "Current menu positions:"
3362
- msgstr "Posiciones Acuales del Menú"
3363
-
3364
- #: ../modules/mycred-module-buddypress.php:507
3365
- msgid "History URL slug"
3366
- msgstr "La ficha historial de la URL"
3367
-
3368
- #: ../modules/mycred-module-buddypress.php:509
3369
- msgid "Do not use empty spaces!"
3370
- msgstr "¡No utilice espacios vacíos!"
3371
-
3372
- #: ../modules/mycred-module-buddypress.php:514
3373
- msgid "Number of history entries to show"
3374
- msgstr "Numero de entradas de historial a mostrar"
3375
-
3376
- #. does this really need to be translated?
3377
- #: ../plugins/mycred-hook-invite-anyone.php:15
3378
- msgid "Invite Anyone Plugin"
3379
- msgstr "Invite Anyone Plugin"
3380
-
3381
- #: ../plugins/mycred-hook-invite-anyone.php:16
3382
- #, php-format
3383
- msgid ""
3384
- "Awards %_plural% for sending invitations and/or %_plural% if the invite is "
3385
- "accepted."
3386
- msgstr ""
3387
- "Concede %_plural% por mandar invitaciones y/o %_plural% si se acepta la "
3388
- "invitación."
3389
-
3390
- #: ../plugins/mycred-hook-invite-anyone.php:204
3391
- #, php-format
3392
- msgid "%plural% for Sending An Invite"
3393
- msgstr "%plural% por Enviar una Invitación"
3394
-
3395
- #: ../plugins/mycred-hook-invite-anyone.php:224
3396
- #, php-format
3397
- msgid "%plural% for Accepting An Invite"
3398
- msgstr "%plural% por Aceptar una Invitación"
3399
-
3400
- #: ../plugins/mycred-hook-invite-anyone.php:228
3401
- #, php-format
3402
- msgid "%plural% for each invited user that accepts an invitation."
3403
- msgstr "%plural% por cada usuario invitado que acepta la invitación."
3404
-
3405
- #: ../plugins/mycred-hook-wp-polls.php:15
3406
- msgid "WP-Polls"
3407
- msgstr "WP-Polls"
3408
-
3409
- #: ../plugins/mycred-hook-wp-polls.php:16
3410
- #, php-format
3411
- msgid "Awards %_plural% for users voting in polls."
3412
- msgstr ""
3413
- "Concede %_plural% a usuarios que han votado en encuestas.Concede %_plural% a "
3414
- "usuarios que han votado en encuestas."
3415
-
3416
- #: ../plugins/mycred-hook-gravityforms.php:15
3417
- msgid "Gravityform Submissions"
3418
- msgstr "Entregas de Gravityform"
3419
-
3420
- #: ../plugins/mycred-hook-gravityforms.php:16
3421
- #, php-format
3422
- msgid "Awards %_plural% for successful form submissions."
3423
- msgstr "Concede %_plural% por el exitoso envío del formularios."
3424
-
3425
- #: ../plugins/mycred-hook-gravityforms.php:129 ../plugins/mycred-hook-contact-
3426
- #: form7.php:130
3427
- msgid "No forms found."
3428
- msgstr "No se ha encontrado ningun formulario."
3429
-
3430
- #: ../plugins/mycred-hook-gd-star-rating.php:15
3431
- msgid "GD Star Rating"
3432
- msgstr "GD Star Rating"
3433
-
3434
- #: ../plugins/mycred-hook-gd-star-rating.php:16
3435
- #, php-format
3436
- msgid "Awards %_plural% for users rate items using the GD Star Rating plugin."
3437
- msgstr ""
3438
- "Concede %_plural% a usuarios que evaluan artículos a través de GD Star "
3439
- "Rating plugin."
3440
-
3441
- #: ../plugins/mycred-hook-gd-star-rating.php:115
3442
- msgid "Rating"
3443
- msgstr "Clasificación"
3444
-
3445
- #.
3446
- #.
3447
- #: ../plugins/mycred-hook-gd-star-rating.php:128
3448
- msgid "Up / Down Vote"
3449
- msgstr "Voto Arriba / Abajo"
3450
-
3451
- #: ../plugins/mycred-hook-simplepress.php:16
3452
- #, php-format
3453
- msgid "Awards %_plural% for Simple:Press actions."
3454
- msgstr "Concede %_plural% por acciones en Simple:Press."
3455
-
3456
- #: ../plugins/mycred-hook-simplepress.php:298 ../plugins/mycred-hook-bbPress.php:
3457
- #: 462
3458
- #, php-format
3459
- msgid "%plural% for New Topic"
3460
- msgstr "%plural% por Nuevo Tema"
3461
-
3462
- #: ../plugins/mycred-hook-simplepress.php:315 ../plugins/mycred-hook-bbPress.php:
3463
- #: 484
3464
- #, php-format
3465
- msgid "%plural% for Topic Deletion"
3466
- msgstr "%plural% por Borrar Tema"
3467
-
3468
- #: ../plugins/mycred-hook-simplepress.php:328
3469
- #, php-format
3470
- msgid "%plural% for New Topic Post"
3471
- msgstr "%plural% por Nueva Publicacion "
3472
-
3473
- #: ../plugins/mycred-hook-simplepress.php:346
3474
- #, php-format
3475
- msgid "Topic authors can receive %_plural% for posting on their own Topic"
3476
- msgstr "Autor de la tema puede recibir %_plural% por publicar su propia Tema"
3477
-
3478
- #: ../plugins/mycred-hook-simplepress.php:350
3479
- #, php-format
3480
- msgid "%plural% for Topic Post Deletion"
3481
- msgstr "%plural% por Borrar la Tema del Post"
3482
-
3483
- #: ../plugins/mycred-hook-marketpress.php:70 ../plugins/mycred-hook-woocommerce.
3484
- #: php:87
3485
- #, php-format
3486
- msgid "Reward with %plural%"
3487
- msgstr "Premiar con %plural%"
3488
-
3489
- #: ../plugins/mycred-hook-buddypress-gallery.php:15
3490
- msgid "BuddyPress: Gallery Actions"
3491
- msgstr "BuddyPress: Acciones sobre Galerías"
3492
-
3493
- #: ../plugins/mycred-hook-buddypress-gallery.php:16
3494
- #, php-format
3495
- msgid ""
3496
- "Awards %_plural% for creating a new gallery either using BP Album+ or BP "
3497
- "Gallery."
3498
- msgstr ""
3499
- "Conceder %_plural% por crear una nueva galería ya sea usando BP Album+ o BP "
3500
- "Gallery."
3501
-
3502
- #: ../plugins/mycred-hook-buddypress-gallery.php:105
3503
- #, php-format
3504
- msgid "%plural% for New Gallery"
3505
- msgstr "%plural% por Nueva Galería"
3506
-
3507
- #: ../plugins/mycred-hook-buddypress.php:16
3508
- msgid "BuddyPress: Members"
3509
- msgstr "BuddyPress: Miembros"
3510
-
3511
- #: ../plugins/mycred-hook-buddypress.php:17
3512
- #, php-format
3513
- msgid "Awards %_plural% for profile related actions."
3514
- msgstr "Concede %_plural% por acciones relacionados al perfil."
3515
-
3516
- #: ../plugins/mycred-hook-buddypress.php:24
3517
- msgid "BuddyPress: Groups"
3518
- msgstr "BuddyPress: Grupos"
3519
-
3520
- #: ../plugins/mycred-hook-buddypress.php:25
3521
- #, php-format
3522
- msgid ""
3523
- "Awards %_plural% for group related actions. Use minus to deduct %_plural% or "
3524
- "zero to disable a specific hook."
3525
- msgstr ""
3526
- "Concede %_plural% para acciones relacionados a grupos. Usa negativo para "
3527
- "sustraer %_plural% o cero para desabilitar un gancho especifico."
3528
-
3529
- #: ../plugins/mycred-hook-buddypress.php:307 ../addons/gateway/event-
3530
- #: booking/mycred-eventsmanager.php:636 ../addons/gateway/event-booking/mycred-
3531
- #: eventsmanager-pro.php:727 ../addons/gateway/carts/mycred-wpecommerce.php:415 ..
3532
- #: addons/gateway/carts/mycred-marketpress.php:482 ../addons/sell-content/myCRED-
3533
- #: addon-sell-content.php:519
3534
- msgid "Insufficient Funds"
3535
- msgstr "Fondos Insuficientes"
3536
-
3537
- #: ../plugins/mycred-hook-buddypress.php:678 ../includes/classes/class.query-log.
3538
- #: php:1565
3539
- msgid "New Friendship"
3540
- msgstr "Nueva Amistad"
3541
-
3542
- #: ../plugins/mycred-hook-buddypress.php:728 ../includes/classes/class.query-log.
3543
- #: php:1553
3544
- msgid "Deleted Comment"
3545
- msgstr "Comentario Borrado"
3546
-
3547
- #: ../plugins/mycred-hook-buddypress.php:788 ../includes/classes/class.query-log.
3548
- #: php:1572
3549
- msgid "Sending Gift"
3550
- msgstr "Mandando Regalo"
3551
-
3552
- #: ../plugins/mycred-hook-buddypress.php:1415
3553
- #, php-format
3554
- msgid "%plural% for Creating Groups"
3555
- msgstr "%plural% por Creat Cupones"
3556
-
3557
- #: ../plugins/mycred-hook-buddypress.php:1419
3558
- msgid ""
3559
- "If you use a negative value and the user does not have enough %_plural% the "
3560
- "\"Create Group\" button will be disabled."
3561
- msgstr ""
3562
- "Si usas un valor negativo y el usuario no tiene bastante %_plural% el botón "
3563
- "\"Crear Grupo\" sera desactivada."
3564
-
3565
- #: ../plugins/mycred-hook-buddypress.php:1423
3566
- msgid "Number of members before awarding %_plural%"
3567
- msgstr "Numero de miembros antes de conceder %_plural%"
3568
-
3569
- #: ../plugins/mycred-hook-buddypress.php:1425
3570
- msgid "Use zero to award %_plural% when group is created."
3571
- msgstr "Ponga cero para %_plural% cuando se crea un grupo."
3572
-
3573
- #: ../plugins/mycred-hook-buddypress.php:1435
3574
- #, php-format
3575
- msgid "%plural% for Deleting Groups"
3576
- msgstr "%plural% por Borrar Grupos"
3577
-
3578
- #: ../plugins/mycred-hook-buddypress.php:1448
3579
- #, php-format
3580
- msgid "%plural% for New Forum Topic"
3581
- msgstr "%plural% por Nuevo Tema de Foro"
3582
-
3583
- #: ../plugins/mycred-hook-buddypress.php:1465
3584
- #, php-format
3585
- msgid "%plural% for Editing Forum Topic"
3586
- msgstr "%plural% por Editar Tema de Foro"
3587
-
3588
- #: ../plugins/mycred-hook-buddypress.php:1482
3589
- #, php-format
3590
- msgid "%plural% for New Forum Post"
3591
- msgstr "%plural% por Nueva Publicación en Foro"
3592
-
3593
- #: ../plugins/mycred-hook-buddypress.php:1499
3594
- #, php-format
3595
- msgid "%plural% for Editing Forum Post"
3596
- msgstr "%plural% por Editar Publicación en Foro"
3597
-
3598
- #: ../plugins/mycred-hook-buddypress.php:1516
3599
- #, php-format
3600
- msgid "%plural% for Joining Groups"
3601
- msgstr "%plural% por Unirse a Grupos"
3602
-
3603
- #: ../plugins/mycred-hook-buddypress.php:1520
3604
- msgid ""
3605
- "If you use a negative value and the user does not have enough %_plural% the "
3606
- "\"Join Group\" button will be disabled."
3607
- msgstr ""
3608
- "Si usas un valor negativo y el usuario no tiene bastante %_plural% el botón "
3609
- "\"Unirse a Grupo\" sera desactivada."
3610
-
3611
- #: ../plugins/mycred-hook-buddypress.php:1534
3612
- #, php-format
3613
- msgid "%plural% for Leaving Groups"
3614
- msgstr "%plural% por Dejar Grupos"
3615
-
3616
- #: ../plugins/mycred-hook-buddypress.php:1547
3617
- #, php-format
3618
- msgid "%plural% for New Group Avatar"
3619
- msgstr "%plural% por Nuevo Avatar de Grupo"
3620
-
3621
- #: ../plugins/mycred-hook-buddypress.php:1581
3622
- #, php-format
3623
- msgid "%plural% for New Group Comment"
3624
- msgstr "%plural% por Nuevo Comentario Grupo"
3625
-
3626
- #: ../plugins/mycred-hook-buddypress-links.php:15
3627
- msgid "BuddyPress: Links"
3628
- msgstr "BuddyPress: Enlaces"
3629
-
3630
- #: ../plugins/mycred-hook-buddypress-links.php:16
3631
- #, php-format
3632
- msgid "Awards %_plural% for link related actions."
3633
- msgstr "Concede %_plural% por acciones relacionados a enlaces."
3634
-
3635
- #: ../plugins/mycred-hook-buddypress-links.php:260
3636
- #, php-format
3637
- msgid "%plural% for New Links"
3638
- msgstr "%plural% por Nuevos Enlaces"
3639
-
3640
- #: ../plugins/mycred-hook-buddypress-links.php:277
3641
- #, php-format
3642
- msgid "%plural% for Vote on Link"
3643
- msgstr "%plural% por Votar sobre Enlaces"
3644
-
3645
- #: ../plugins/mycred-hook-buddypress-links.php:293
3646
- #, php-format
3647
- msgid "%plural% per received Vote"
3648
- msgstr "%plural% por Votos Recibidos"
3649
-
3650
- #: ../plugins/mycred-hook-buddypress-links.php:296
3651
- msgid "Vote Up"
3652
- msgstr "Votar a Favor"
3653
-
3654
- #: ../plugins/mycred-hook-buddypress-links.php:315
3655
- msgid "Vote Down"
3656
- msgstr "Votar en Contra "
3657
-
3658
- #: ../plugins/mycred-hook-buddypress-links.php:330
3659
- #, php-format
3660
- msgid "%plural% for Updating Links"
3661
- msgstr "%plural% por Actualizar Enlaces"
3662
-
3663
- #: ../plugins/mycred-hook-buddypress-links.php:347
3664
- #, php-format
3665
- msgid "%plural% for Deleting Links"
3666
- msgstr "%plural% por Borrar Enlaces"
3667
-
3668
- #: ../plugins/mycred-hook-events-manager-light.php:15
3669
- msgid "Events Manager"
3670
- msgstr "Gestionamiento de Eventos"
3671
-
3672
- #: ../plugins/mycred-hook-events-manager-light.php:16
3673
- #, php-format
3674
- msgid "Awards %_plural% for users attending events."
3675
- msgstr "Concede %_plural% para usuarios que asistieron actividades o eventos."
3676
-
3677
- #: ../plugins/mycred-hook-events-manager-light.php:199
3678
- msgid "Attending Event"
3679
- msgstr "Asistir Evento"
3680
-
3681
- #: ../plugins/mycred-hook-events-manager-light.php:216
3682
- msgid "Cancelling Attendance"
3683
- msgstr "Cancelando Asistencia"
3684
-
3685
- #: ../plugins/mycred-hook-sharethis.php:15
3686
- #, php-format
3687
- msgid "%plural% for Sharing"
3688
- msgstr "%plural% para Compartir"
3689
-
3690
- #: ../plugins/mycred-hook-sharethis.php:16
3691
- #, php-format
3692
- msgid ""
3693
- "Awards %_plural% for users sharing / liking your website content to popular "
3694
- "social media sites."
3695
- msgstr ""
3696
- "Concede %_plural% a usuarios por compartir / gustar el contenido de tu sitio "
3697
- "web atraves de sitio de los medios de comunicación social."
3698
-
3699
- #: ../plugins/mycred-hook-sharethis.php:257
3700
- msgid "Your ShareThis public key is not set."
3701
- msgstr "Tu llave publico de ShareThis no ha sido configurado."
3702
-
3703
- #: ../plugins/mycred-hook-sharethis.php:262
3704
- msgid "No ShareThis services detected. Please check your installation."
3705
- msgstr "Ningun servicio ShareThis detectado. Por favor verifique su instalación."
3706
-
3707
- #: ../plugins/mycred-hook-buddypress-media.php:15
3708
- msgid "rtMedia Galleries"
3709
- msgstr "Galerías rtMedia (rtMedia Galleries)"
3710
-
3711
- #: ../plugins/mycred-hook-buddypress-media.php:16
3712
- #, php-format
3713
- msgid "Award / Deduct %_plural% for users creating albums or uploading new photos."
3714
- msgstr "Concede / Resta %_plural% a usuarios por crear álbumes o subir nuevos fotos."
3715
-
3716
- #: ../plugins/mycred-hook-buddypress-media.php:305
3717
- msgid "New Media Upload"
3718
- msgstr "Subir Nuevo Media"
3719
-
3720
- #: ../plugins/mycred-hook-buddypress-media.php:308 ../includes/classes/class.
3721
- #: query-log.php:1587
3722
- msgid "Photo Upload"
3723
- msgstr "Subir Foto"
3724
-
3725
- #: ../plugins/mycred-hook-buddypress-media.php:322 ../includes/classes/class.
3726
- #: query-log.php:1588
3727
- msgid "Video Upload"
3728
- msgstr "Subir Video"
3729
-
3730
- #: ../plugins/mycred-hook-buddypress-media.php:336 ../includes/classes/class.
3731
- #: query-log.php:1589
3732
- msgid "Music Upload"
3733
- msgstr "Subir Música"
3734
-
3735
- #: ../plugins/mycred-hook-buddypress-media.php:350
3736
- msgid "Delete Media"
3737
- msgstr "Borrar Medios"
3738
-
3739
- #: ../plugins/mycred-hook-buddypress-media.php:353
3740
- msgid "Delete Photo"
3741
- msgstr "Borrar Foto"
3742
-
3743
- #: ../plugins/mycred-hook-buddypress-media.php:363
3744
- msgid "Delete Video"
3745
- msgstr "Borrar Video"
3746
-
3747
- #: ../plugins/mycred-hook-buddypress-media.php:373
3748
- msgid "Delete Music"
3749
- msgstr "Borrar Música"
3750
-
3751
- #: ../plugins/mycred-hook-wp-favorite-posts.php:15
3752
- msgid "WP Favorite Posts"
3753
- msgstr "WP Favorite Posts"
3754
-
3755
- #: ../plugins/mycred-hook-wp-favorite-posts.php:16
3756
- #, php-format
3757
- msgid "Awards %_plural% for users adding posts to their favorites."
3758
- msgstr "Concede %_plural% a usuarios por añadir entradas a sus favoritos."
3759
-
3760
- #: ../plugins/mycred-hook-wp-favorite-posts.php:216
3761
- msgid "Adding Content to Favorites"
3762
- msgstr "Añadiendo Contenido a Favoritos"
3763
-
3764
- #: ../plugins/mycred-hook-wp-favorite-posts.php:252
3765
- msgid "Removing Content from Favorites"
3766
- msgstr "Quitando Contenido de Favoritos"
3767
-
3768
- #: ../plugins/mycred-hook-contact-form7.php:15
3769
- msgid "Contact Form 7 Form Submissions"
3770
- msgstr "Presentación Formulario de Contact Form 7"
3771
-
3772
- #: ../plugins/mycred-hook-contact-form7.php:16
3773
- #, php-format
3774
- msgid "Awards %_plural% for successful form submissions (by logged in users)."
3775
- msgstr ""
3776
- "Concede %_plural% por el exitoso envío del formulario (por usuarios que han "
3777
- "iniciado sesión)"
3778
-
3779
- #: ../plugins/mycred-hook-jetpack.php:15
3780
- msgid "Jetpack Subscriptions"
3781
- msgstr "Suscripciónes a Jetpack"
3782
-
3783
- #: ../plugins/mycred-hook-jetpack.php:16
3784
- #, php-format
3785
- msgid ""
3786
- "Awards %_plural% for users signing up for site or comment updates using "
3787
- "Jetpack."
3788
- msgstr ""
3789
- "Concede %_plural% a usuarios por incribirse a las actualizaciones del sitio "
3790
- "web o a los comentarios atraves de Jetpack."
3791
-
3792
- #: ../plugins/mycred-hook-jetpack.php:538
3793
- msgid "Site Subscriptions"
3794
- msgstr "Suscripciónes al Sitio Web"
3795
-
3796
- #: ../plugins/mycred-hook-jetpack.php:551
3797
- msgid "Comment Subscriptions"
3798
- msgstr "Suscripciónes a commentarios"
3799
-
3800
- #: ../plugins/mycred-hook-bbPress.php:15
3801
- msgid "bbPress"
3802
- msgstr "bbPress"
3803
-
3804
- #: ../plugins/mycred-hook-bbPress.php:16
3805
- #, php-format
3806
- msgid "Awards %_plural% for bbPress actions."
3807
- msgstr "Concede %_plural% por acciones en bbPress."
3808
-
3809
- #: ../plugins/mycred-hook-bbPress.php:432
3810
- #, php-format
3811
- msgid "%plural% for New Forum"
3812
- msgstr "%plural% por nuevo foro"
3813
-
3814
- #: ../plugins/mycred-hook-bbPress.php:449
3815
- #, php-format
3816
- msgid "%plural% for Forum Deletion"
3817
- msgstr "%plural% por Eliminar Foro"
3818
-
3819
- #: ../plugins/mycred-hook-bbPress.php:480
3820
- #, php-format
3821
- msgid "Forum authors can receive %_plural% for creating new topics."
3822
- msgstr "Autores "
3823
-
3824
- #: ../plugins/mycred-hook-bbPress.php:497
3825
- #, php-format
3826
- msgid "%plural% for Favorited Topic"
3827
- msgstr "%plural% por Añadir Tema a tus \"Favoritos\""
3828
-
3829
- #: ../plugins/mycred-hook-bbPress.php:514
3830
- #, php-format
3831
- msgid "%plural% for New Reply"
3832
- msgstr "%plural% por Nueva Respuesta"
3833
-
3834
- #: ../plugins/mycred-hook-bbPress.php:532
3835
- #, php-format
3836
- msgid "Topic authors can receive %_plural% for replying to their own Topic"
3837
- msgstr "Autor de la tema puede recibir %_plural% por responder a su propia Tema"
3838
-
3839
- #: ../plugins/mycred-hook-bbPress.php:536
3840
- #, php-format
3841
- msgid "Show users %_plural% balance in replies"
3842
- msgstr "Mostrar usuarios el saldo de %_plural% en las respuestas"
3843
-
3844
- #: ../plugins/mycred-hook-bbPress.php:544
3845
- #, php-format
3846
- msgid "%plural% for Reply Deletion"
3847
- msgstr "%plural% para Borrar Respuesta"
3848
-
3849
- #: ../plugins/mycred-hook-woocommerce.php:216
3850
- msgid "WooCommerce Product Reviews"
3851
- msgstr " Revisión del Producto WooCommerce\n"
3852
-
3853
- #: ../plugins/mycred-hook-woocommerce.php:217
3854
- #, php-format
3855
- msgid "Awards %_plural% for users leaving reviews on your WooCommerce products."
3856
- msgstr ""
3857
- "Concede %_plural% a usuarios por escribir reseñas sobre tus productos "
3858
- "WooCommerce."
3859
-
3860
- #: ../plugins/mycred-hook-badgeOS.php:15
3861
- msgid "BadgeOS"
3862
- msgstr "BadgeOS"
3863
-
3864
- #: ../plugins/mycred-hook-badgeOS.php:16
3865
- msgid ""
3866
- "Default settings for each BadgeOS Achievement type. These settings may be "
3867
- "overridden for individual achievement type."
3868
- msgstr ""
3869
- "Configuraciones predefinidos para cada clase de BadgeOS Logro (Achievement). "
3870
- "Estos ajustes pueden ser anulados para el tipo de logro individual."
3871
-
3872
- #: ../plugins/mycred-hook-badgeOS.php:121
3873
- #, php-format
3874
- msgid ""
3875
- "Please setup your <a href=\"%s\">default settings</a> before using this "
3876
- "feature."
3877
- msgstr ""
3878
- "Por favor configura tus <a href=\"%s\">configuraciones predefinidos</a> antes "
3879
- "de usar este función."
3880
-
3881
- #: ../plugins/mycred-hook-badgeOS.php:137 ../plugins/mycred-hook-badgeOS.php:139
3882
- #, php-format
3883
- msgid "%plural% to Award"
3884
- msgstr "%plural% a Conceder"
3885
-
3886
- #. also "Ponga cero para inhabilitar"
3887
- #: ../plugins/mycred-hook-badgeOS.php:141
3888
- msgid "Use zero to disable"
3889
- msgstr "Ponga cero para desactivar"
3890
-
3891
- #: ../plugins/mycred-hook-badgeOS.php:154
3892
- msgid "Deduction Log Template"
3893
- msgstr "Plantilla de Registro Descontado"
3894
-
3895
- #: ../plugins/mycred-hook-badgeOS.php:315
3896
- #, php-format
3897
- msgid "Default %s for %s"
3898
- msgstr "Predeterminar %s por %s"
3899
-
3900
- #: ../plugins/mycred-hook-badgeOS.php:322
3901
- msgid "Use zero to disable users gaining %_plural%"
3902
- msgstr "Ponga cero para que los usuarios no obtengan %_plural%"
3903
-
3904
- #: ../plugins/mycred-hook-badgeOS.php:326
3905
- msgid "Default Log template"
3906
- msgstr "Plantilla de Registro Predefinido"
3907
-
3908
- #: ../includes/mycred-setup.php:50
3909
- msgid "myCRED needs your attention."
3910
- msgstr "myCRED precisa tu atención."
3911
-
3912
- #: ../includes/mycred-setup.php:50
3913
- msgid "Run Setup"
3914
- msgstr "Ejecutar Configuración"
3915
-
3916
- #: ../includes/mycred-setup.php:63 ../includes/mycred-setup.php:64
3917
- msgid "myCRED Setup"
3918
- msgstr "Instalación de myCRED"
3919
-
3920
- #: ../includes/mycred-setup.php:105 ../addons/sell-content/myCRED-addon-sell-
3921
- #: content.php:418
3922
- #, php-format
3923
- msgid "%s Setup"
3924
- msgstr "Configurar %s"
3925
-
3926
- #: ../includes/importers/mycred-cubepoints.php:298
3927
- msgid "No balances were imported."
3928
- msgstr "Ningun saldo fue importado."
3929
-
3930
- #: ../includes/importers/mycred-cubepoints.php:298
3931
- msgid "No log entries were imported!"
3932
- msgstr "¡No se importo ninguna entrada de registro!"
3933
-
3934
- #: ../includes/importers/mycred-cubepoints.php:306 ../includes/importers/mycred-
3935
- #: log-entries.php:168
3936
- #, php-format
3937
- msgid ""
3938
- "Import complete - A total of <strong>%d</strong> entries were successfully "
3939
- "imported. <strong>%d</strong> was skipped."
3940
- msgstr ""
3941
- "Importación Finalizado - En total, <strong>%d</strong> entradas fueron "
3942
- "importado con éxito. Se saltaron <strong>%d</strong>."
3943
-
3944
- #: ../includes/importers/mycred-cubepoints.php:320 ../includes/importers/mycred-
3945
- #: balances.php:212 ../includes/importers/mycred-log-entries.php:180 ..
3946
- #: addons/stats/abstracts/mycred-abstract-stat-widget.php:100
3947
- msgid "View Log"
3948
- msgstr "Ver Registro"
3949
-
3950
- #: ../includes/importers/mycred-cubepoints.php:320 ../includes/importers/mycred-
3951
- #: balances.php:212 ../includes/importers/mycred-log-entries.php:180
3952
- msgid "Import More"
3953
- msgstr "Importar Más"
3954
-
3955
- #: ../includes/importers/mycred-cubepoints.php:335
3956
- msgid "No CubePoints log."
3957
- msgstr "No hay registro de CubePoints."
3958
-
3959
- #: ../includes/importers/mycred-cubepoints.php:348
3960
- msgid "Import CubePoints Log"
3961
- msgstr "Importar registro de CubePoints"
3962
-
3963
- #: ../includes/importers/mycred-cubepoints.php:369
3964
- msgid "Select what to import"
3965
- msgstr "Elige lo que deseas importar"
3966
-
3967
- #: ../includes/importers/mycred-cubepoints.php:370
3968
- msgid "Log Entries Only"
3969
- msgstr "Solo Entradas de Registro"
3970
-
3971
- #: ../includes/importers/mycred-cubepoints.php:371
3972
- msgid "CubePoints Balances Only"
3973
- msgstr "Saldos de CubePoints Unicamente"
3974
-
3975
- #: ../includes/importers/mycred-cubepoints.php:372
3976
- msgid "Log Entries and Balances"
3977
- msgstr "Solo Entradas y Saldos de Registro"
3978
-
3979
- #: ../includes/importers/mycred-cubepoints.php:379 ../mycred.php:590
3980
- msgid "Import CubePoints log entries and / or balances."
3981
- msgstr "Importar las entradas de registro de CubePoints y/o saldos."
3982
-
3983
- #: ../includes/importers/mycred-cubepoints.php:387
3984
- msgid "Import"
3985
- msgstr "Importar"
3986
-
3987
- #: ../includes/importers/mycred-cubepoints.php:396
3988
- msgid ""
3989
- "Warning! Importing CubePoints balances will replace your users myCRED "
3990
- "balance!"
3991
- msgstr ""
3992
- "¡Advertencia! ¡La importación de los saldos de CubePoints reemplazará el "
3993
- "saldo de myCRED para tus usuarios!"
3994
-
3995
- #: ../includes/importers/mycred-cubepoints.php:420
3996
- msgid "Import Log"
3997
- msgstr "Importar Registro"
3998
-
3999
- #: ../includes/importers/mycred-balances.php:104 ../includes/importers/mycred-
4000
- #: balances.php:187 ../includes/importers/mycred-balances.php:230 ..
4001
- #: includes/importers/mycred-balances.php:245 ../includes/importers/mycred-log-
4002
- #: entries.php:104 ../includes/importers/mycred-log-entries.php:153 ..
4003
- #: includes/importers/mycred-log-entries.php:199 ../includes/importers/mycred-
4004
- #: log-entries.php:216
4005
- msgid "Sorry, there has been an error."
4006
- msgstr "Lo sentimos, se ha producido un error."
4007
-
4008
- #: ../includes/importers/mycred-balances.php:105 ../includes/importers/mycred-log-
4009
- #: entries.php:105
4010
- msgid "The file does not exist, please try again."
4011
- msgstr "El fichero no existe, por favor inténtelo de nuevo más tarde."
4012
-
4013
- #: ../includes/importers/mycred-balances.php:188 ../includes/importers/mycred-log-
4014
- #: entries.php:154
4015
- msgid "The CSV is invalid."
4016
- msgstr "El CSV no es valido."
4017
-
4018
- #: ../includes/importers/mycred-balances.php:200
4019
- #, php-format
4020
- msgid ""
4021
- "Import complete - A total of <strong>%d</strong> balances were successfully "
4022
- "imported. <strong>%d</strong> was skipped."
4023
- msgstr ""
4024
- "Importación Finalizado - En total, <strong>%d</strong> saldos fueron "
4025
- "importado con éxito. Se saltaron <strong>%d</strong>."
4026
-
4027
- #: ../includes/importers/mycred-balances.php:261
4028
- msgid "Import Balances"
4029
- msgstr "Saldos Importar"
4030
-
4031
- #: ../includes/importers/mycred-balances.php:282
4032
- msgid "Import balances from a CSV file."
4033
- msgstr "Importa saldos de registro desde un fichero CSV."
4034
-
4035
- #: ../includes/importers/mycred-balances.php:293 ../includes/importers/mycred-log-
4036
- #: entries.php:263
4037
- msgid ""
4038
- "Before you can upload your import file, you will need to fix the following "
4039
- "error:"
4040
- msgstr ""
4041
- "Antes que puedas subir tu fichero de importe, tendras que corregir los "
4042
- "errores siguientes:"
4043
-
4044
- #: ../includes/importers/mycred-balances.php:305 ../includes/importers/mycred-log-
4045
- #: entries.php:275
4046
- msgid "Choose a file from your computer:"
4047
- msgstr "Elige un fichero en tu ordenador:"
4048
-
4049
- #: ../includes/importers/mycred-balances.php:311 ../includes/importers/mycred-log-
4050
- #: entries.php:281
4051
- #, php-format
4052
- msgid "Maximum size: %s"
4053
- msgstr "Tamaño Máximo: %s"
4054
-
4055
- #: ../includes/importers/mycred-balances.php:316 ../includes/importers/mycred-log-
4056
- #: entries.php:286
4057
- msgid "OR enter path to file:"
4058
- msgstr "O rellena la ruta al fichero:"
4059
-
4060
- #: ../includes/importers/mycred-balances.php:323 ../includes/importers/mycred-log-
4061
- #: entries.php:293
4062
- msgid "Delimiter"
4063
- msgstr "Delimitador"
4064
-
4065
- #: ../includes/importers/mycred-balances.php:327
4066
- msgid "Method"
4067
- msgstr "Método"
4068
-
4069
- #: ../includes/importers/mycred-balances.php:329
4070
- msgid "Replace current balances with the amount in this CSV file"
4071
- msgstr "Sustituir los balances actuales con los montos en el archivo CSV"
4072
-
4073
- #: ../includes/importers/mycred-balances.php:330
4074
- msgid "Adjust current balances according to the amount in this CSV file"
4075
- msgstr "Ajustar los balances actuales de acuerdo al monto en el archivo CSV"
4076
-
4077
- #: ../includes/importers/mycred-balances.php:336 ../includes/importers/mycred-log-
4078
- #: entries.php:299
4079
- msgid "Upload file and import"
4080
- msgstr "Subir fichero e importar"
4081
-
4082
- #: ../includes/importers/mycred-log-entries.php:232
4083
- msgid "Import Log Entries"
4084
- msgstr "Importar Entradas de Registro"
4085
-
4086
- #: ../includes/importers/mycred-log-entries.php:253
4087
- msgid "Import log entries from a CSV file."
4088
- msgstr "Importa las entradas de registro desde un fichero CSV."
4089
-
4090
- #: ../includes/shortcodes/mycred_exchange.php:33 ..
4091
- #: includes/shortcodes/mycred_exchange.php:41 ..
4092
- #: includes/shortcodes/mycred_exchange.php:136 ..
4093
- #: includes/shortcodes/mycred_exchange.php:156
4094
- #, php-format
4095
- msgid "You are excluded from using %s."
4096
- msgstr "Esta exluido del uso de %s."
4097
-
4098
- #: ../includes/shortcodes/mycred_exchange.php:37 ..
4099
- #: includes/shortcodes/mycred_exchange.php:146
4100
- msgid "Your balance is too low to use this feature."
4101
- msgstr "Tu saldo esta demasiado bajo para usar esta característica."
4102
-
4103
- #: ../includes/shortcodes/mycred_exchange.php:63
4104
- #, php-format
4105
- msgid "Your current %s balance"
4106
- msgstr "Tu Saldo Actual %s"
4107
-
4108
- #: ../includes/shortcodes/mycred_exchange.php:70
4109
- #, php-format
4110
- msgid "Minimum %s"
4111
- msgstr "Minimo %s"
4112
-
4113
- #: ../includes/shortcodes/mycred_exchange.php:75 ../addons/gateway/event-
4114
- #: booking/mycred-eventespresso3.php:498 ../addons/gateway/event-booking/mycred-
4115
- #: eventsmanager.php:578 ../addons/gateway/event-booking/mycred-eventsmanager-pro.
4116
- #: php:650 ../addons/gateway/carts/mycred-wpecommerce.php:389 ..
4117
- #: addons/gateway/carts/mycred-woocommerce.php:140 ..
4118
- #: addons/gateway/carts/mycred-marketpress.php:450
4119
- msgid "Exchange Rate"
4120
- msgstr "Tipo de Cambio"
4121
-
4122
- #: ../includes/shortcodes/mycred_exchange.php:76
4123
- #, php-format
4124
- msgid "1 %s = <span class=\"rate\">%s</span> %s"
4125
- msgstr "1 %s = <span class=\"rate\">%s</span> %s"
4126
-
4127
- #: ../includes/shortcodes/mycred_exchange.php:124
4128
- msgid "Point types not found."
4129
- msgstr "Clase de puntos no encontrado."
4130
-
4131
- #: ../includes/shortcodes/mycred_exchange.php:169
4132
- #, php-format
4133
- msgid "You must exchange at least %s!"
4134
- msgstr "Debes intercambiar por lo menos %s!"
4135
-
4136
- #: ../includes/shortcodes/mycred_exchange.php:178 ../addons/transfer/myCRED-addon-
4137
- #: transfer.php:154
4138
- msgid "Insufficient Funds. Please try a lower amount."
4139
- msgstr "Fondos Insuficientes. Por favor intenta con una cantidad menor."
4140
-
4141
- #: ../includes/shortcodes/mycred_exchange.php:191
4142
- #, php-format
4143
- msgid "Exchange from %s"
4144
- msgstr "Intercambiar desde %s"
4145
-
4146
- #: ../includes/shortcodes/mycred_exchange.php:203
4147
- #, php-format
4148
- msgid "Exchange to %s"
4149
- msgstr "Intercambiar a %s"
4150
-
4151
- #: ../includes/shortcodes/mycred_exchange.php:211
4152
- #, php-format
4153
- msgid "You have successfully exchanged %s into %s."
4154
- msgstr "Has intercambiado %s a %s con éxito."
4155
-
4156
- #: ../includes/shortcodes/mycred_video.php:44
4157
- msgid "A video ID is required for this shortcode"
4158
- msgstr "Este código corto (shortcode) precisa un ID del video."
4159
-
4160
- #: ../includes/mycred-remote.php:581
4161
- msgid "This feature requires WordPress Permalinks to be setup and enabled!"
4162
- msgstr ""
4163
- "¡Esta característica técnica requiere que los Permalinks de Wordpress esten "
4164
- "activados y configurado!"
4165
-
4166
- #: ../includes/mycred-remote.php:585
4167
- msgid "Click Update Settings to load the Remote API settings."
4168
- msgstr ""
4169
- "Haga clic sobre Actualizar Configuraciones para cargar la configuración de "
4170
- "API remoto."
4171
-
4172
- #: ../includes/mycred-remote.php:588
4173
- msgid "Allow Remote Access"
4174
- msgstr "Permita Acceso Remoto"
4175
-
4176
- #: ../includes/mycred-remote.php:613
4177
- msgid "Remote Access"
4178
- msgstr "Acceso Remoto"
4179
-
4180
- #: ../includes/mycred-remote.php:615 ../addons/buy-creds/gateways/bitpay.php:245
4181
- msgid "API Key"
4182
- msgstr "Clave de la API"
4183
-
4184
- #: ../includes/mycred-remote.php:618
4185
- msgid "Key"
4186
- msgstr "Clave"
4187
-
4188
- #: ../includes/mycred-remote.php:620
4189
- msgid "Required for this feature to work!<br />Minimum 12 characters."
4190
- msgstr ""
4191
- "¡Precisado para que esta característica técnica funcione!<br /> Minimo 12 "
4192
- "símbolos."
4193
-
4194
- #: ../includes/mycred-remote.php:623
4195
- msgid "Key Length"
4196
- msgstr "Longitud de la Clave"
4197
-
4198
- #: ../includes/mycred-remote.php:628
4199
- msgid "Generate New Key"
4200
- msgstr "Generar nueva clave"
4201
-
4202
- #: ../includes/mycred-remote.php:630
4203
- msgid "Warning!"
4204
- msgstr "¡Aviso!"
4205
-
4206
- #: ../includes/mycred-remote.php:630
4207
- #, php-format
4208
- msgid ""
4209
- "Keep this key safe! Those you share this key with will be able to remotely "
4210
- "deduct / add / transfer %plural%!"
4211
- msgstr ""
4212
- "¡Mantenga la seguridad de esta clave! Aquellos con quien compartes esta "
4213
- "clave podran restar / añadir / transferir %plural% de forma remota."
4214
-
4215
- #: ../includes/mycred-remote.php:632
4216
- msgid "Incoming URI"
4217
- msgstr "URI Entrante"
4218
-
4219
- #: ../includes/mycred-remote.php:636
4220
- msgid ""
4221
- "The incoming call address. Remote calls made to any other URL will be "
4222
- "ignored."
4223
- msgstr ""
4224
- "La dirección de la llamada entrante. Se ignorará las llamadas remotas a "
4225
- "cualquier otro URL."
4226
-
4227
- #: ../includes/mycred-remote.php:639
4228
- msgid "Debug Mode"
4229
- msgstr "Modo de Depuración"
4230
-
4231
- #: ../includes/mycred-remote.php:642
4232
- msgid ""
4233
- "Remember to disable when not used to prevent mischievous calls from learning "
4234
- "about your setup!"
4235
- msgstr ""
4236
- "Recuerda a desactivarlo cuando no está en uso para prevenir que llamadas "
4237
- "maliciosas conozcan detalles de tu configuración!"
4238
-
4239
- #: ../includes/classes/class.query-export.php:374 ../includes/classes/class.query-
4240
- #: log.php:980
4241
- msgid "User Missing"
4242
- msgstr "Usuario Ausente"
4243
-
4244
- #: ../includes/classes/class.query-export.php:487
4245
- msgid "Search Results"
4246
- msgstr "Resultados de la Búsqueda"
4247
-
4248
- #: ../includes/classes/class.query-log.php:427
4249
- msgid "No log entries found"
4250
- msgstr "Ninguna entrada de registro encontrada"
4251
-
4252
- #: ../includes/classes/class.query-log.php:527
4253
- msgid "Show all references"
4254
- msgstr "Muestra todas las referencias"
4255
-
4256
- #: ../includes/classes/class.query-log.php:552
4257
- msgid "Show in order"
4258
- msgstr "Mostrar en Orden"
4259
-
4260
- #: ../includes/classes/class.query-log.php:553 ../includes/mycred-widgets.php:420
4261
- msgid "Ascending"
4262
- msgstr "Ascendente"
4263
-
4264
- #: ../includes/classes/class.query-log.php:553 ../includes/mycred-widgets.php:421
4265
- msgid "Descending"
4266
- msgstr "Descendente"
4267
-
4268
- #: ../includes/classes/class.query-log.php:574
4269
- msgid "Filter"
4270
- msgstr "Filtro"
4271
-
4272
- #: ../includes/classes/class.query-log.php:1075
4273
- msgid "Edit"
4274
- msgstr "Editar"
4275
-
4276
- #: ../includes/classes/class.query-log.php:1148
4277
- msgid "No export options available."
4278
- msgstr "No hay opciones para exportar."
4279
-
4280
- #: ../includes/classes/class.query-log.php:1179 ../includes/classes/class.query-
4281
- #: log.php:1181
4282
- msgid "Search Log"
4283
- msgstr "Busqueda de Registro"
4284
-
4285
- #. buscar las entradas en el registro
4286
- #: ../includes/classes/class.query-log.php:1180
4287
- msgid "search log entries"
4288
- msgstr "Búsqueda de las entradas de registro"
4289
-
4290
- #: ../includes/classes/class.query-log.php:1544
4291
- msgid "Website Registration"
4292
- msgstr "Inscripción del Sitio Web"
4293
-
4294
- #: ../includes/classes/class.query-log.php:1545
4295
- msgid "Website Visit"
4296
- msgstr "Visita de Sitio Web"
4297
-
4298
- #: ../includes/classes/class.query-log.php:1546
4299
- msgid "Viewing Content (Member)"
4300
- msgstr "Viendo Contenido (Miembro)"
4301
-
4302
- #: ../includes/classes/class.query-log.php:1547
4303
- msgid "Viewing Content (Author)"
4304
- msgstr "Viendo Contenido (Autor)"
4305
-
4306
- #: ../includes/classes/class.query-log.php:1548
4307
- msgid "Logging in"
4308
- msgstr "Accediendo"
4309
-
4310
- #: ../includes/classes/class.query-log.php:1549
4311
- msgid "Publishing Content"
4312
- msgstr "Publicando Contenido"
4313
-
4314
- #: ../includes/classes/class.query-log.php:1551
4315
- msgid "Unapproved Comment"
4316
- msgstr "Comentario no Aprobado"
4317
-
4318
- #: ../includes/classes/class.query-log.php:1552
4319
- msgid "SPAM Comment"
4320
- msgstr "Comentario SPAM"
4321
-
4322
- #: ../includes/classes/class.query-log.php:1554
4323
- msgid "Link Click"
4324
- msgstr "Click al Enlace"
4325
-
4326
- #: ../includes/classes/class.query-log.php:1555
4327
- msgid "Watching Video"
4328
- msgstr "Mirando Video"
4329
-
4330
- #: ../includes/classes/class.query-log.php:1556
4331
- msgid "Visitor Referral"
4332
- msgstr "Referencia de Visitante"
4333
-
4334
- #: ../includes/classes/class.query-log.php:1557
4335
- msgid "Signup Referral"
4336
- msgstr "Referencia de Inscripción "
4337
-
4338
- #: ../includes/classes/class.query-log.php:1561
4339
- msgid "New Profile Update"
4340
- msgstr "Nuevo Perfil Actualizado"
4341
-
4342
- #: ../includes/classes/class.query-log.php:1563
4343
- msgid "Avatar Upload"
4344
- msgstr "Subir Avatar"
4345
-
4346
- #: ../includes/classes/class.query-log.php:1566
4347
- msgid "Ended Friendship"
4348
- msgstr "Amistad Terminada"
4349
-
4350
- #: ../includes/classes/class.query-log.php:1567
4351
- msgid "New Profile Comment"
4352
- msgstr "Nuevo Comentario de Perfil"
4353
-
4354
- #: ../includes/classes/class.query-log.php:1568
4355
- msgid "Profile Comment Deletion"
4356
- msgstr "Borrar Comentario del Perfil"
4357
-
4358
- #: ../includes/classes/class.query-log.php:1571
4359
- msgid "New Message"
4360
- msgstr "Nuevo Mensaje"
4361
-
4362
- #: ../includes/classes/class.query-log.php:1573
4363
- msgid "New Group"
4364
- msgstr "Nuevo Grupo"
4365
-
4366
- #: ../includes/classes/class.query-log.php:1574
4367
- msgid "Deleted Group"
4368
- msgstr "Grupo Borrado"
4369
-
4370
- #: ../includes/classes/class.query-log.php:1575
4371
- msgid "New Group Forum Topic"
4372
- msgstr "Nuevo Tema del Fórum de Grupo"
4373
-
4374
- #: ../includes/classes/class.query-log.php:1576
4375
- msgid "Edit Group Forum Topic"
4376
- msgstr "Editar el Tema del Fórum de Grupo"
4377
-
4378
- #: ../includes/classes/class.query-log.php:1577
4379
- msgid "New Group Forum Post"
4380
- msgstr "Nueva Entrada del Fórum de Grupo"
4381
-
4382
- #: ../includes/classes/class.query-log.php:1578
4383
- msgid "Edit Group Forum Post"
4384
- msgstr "Editar Entrada del Fórum de Grupo"
4385
-
4386
- #: ../includes/classes/class.query-log.php:1579
4387
- msgid "Joining Group"
4388
- msgstr "Agregar al Grupo"
4389
-
4390
- #: ../includes/classes/class.query-log.php:1580
4391
- msgid "Leaving Group"
4392
- msgstr "Dejando el Grupo"
4393
-
4394
- #: ../includes/classes/class.query-log.php:1581
4395
- msgid "New Group Avatar"
4396
- msgstr "Nuevo Avatar del Grupo"
4397
-
4398
- #: ../includes/classes/class.query-log.php:1583
4399
- msgid "New Group Comment"
4400
- msgstr "Nuevo Comentario al Grupo\n"
4401
-
4402
- #: ../includes/classes/class.query-log.php:1593
4403
- msgid "New Link"
4404
- msgstr "Nuevo Enlace"
4405
-
4406
- #: ../includes/classes/class.query-log.php:1594
4407
- msgid "Link Voting"
4408
- msgstr "Votar sobre Enlace"
4409
-
4410
- #: ../includes/classes/class.query-log.php:1595
4411
- msgid "Link Update"
4412
- msgstr "Enlace Actualizado"
4413
-
4414
- #: ../includes/classes/class.query-log.php:1599
4415
- msgid "New Forum (bbPress)"
4416
- msgstr "Nuevo Fórum (bbPress)"
4417
-
4418
- #: ../includes/classes/class.query-log.php:1600
4419
- msgid "New Forum Topic (bbPress)"
4420
- msgstr "Nuevo Tema de Fórum (bbPress)"
4421
-
4422
- #: ../includes/classes/class.query-log.php:1601
4423
- msgid "Favorited Topic (bbPress)"
4424
- msgstr "Tema Favorito (bbPress)"
4425
-
4426
- #: ../includes/classes/class.query-log.php:1602
4427
- msgid "New Topic Reply (bbPress)"
4428
- msgstr "Nueva Respuesta a Tema (bbPress)"
4429
-
4430
- #: ../includes/classes/class.query-log.php:1606
4431
- msgid "Form Submission (Contact Form 7)"
4432
- msgstr "Sumisión de Formulario (Contact Form 7)"
4433
-
4434
- #: ../includes/classes/class.query-log.php:1609
4435
- msgid "Form Submission (Gravity Form)"
4436
- msgstr "Sumisión de Formulario (Gravity Form)"
4437
-
4438
- #: ../includes/classes/class.query-log.php:1612
4439
- msgid "New Forum Topic (SimplePress)"
4440
- msgstr "Nuevo Tema de Fórum (SimplePress)"
4441
-
4442
- #: ../includes/classes/class.query-log.php:1613
4443
- msgid "New Forum Post (SimplePress)"
4444
- msgstr "Nueva Entrada de Fórum (SimplePress)"
4445
-
4446
- #: ../includes/classes/class.query-log.php:1634
4447
- msgid "Poll Voting"
4448
- msgstr "Votación"
4449
-
4450
- #: ../includes/classes/class.query-log.php:1637
4451
- msgid "Sending an Invite"
4452
- msgstr "Mandando una Invitación"
4453
-
4454
- #: ../includes/classes/class.query-log.php:1638
4455
- msgid "Accepting an Invite"
4456
- msgstr "Aceptando una Invitación"
4457
-
4458
- #: ../includes/classes/class.query-log.php:1644 ../addons/banking/myCRED-addon-
4459
- #: banking.php:150
4460
- msgid "Compound Interest"
4461
- msgstr "Interés Compuesto"
4462
-
4463
- #: ../includes/classes/class.query-log.php:1652
4464
- msgid "buyCRED Purchase (PayPal Standard)"
4465
- msgstr "Compra buyCRED (PayPal Standard)"
4466
-
4467
- #: ../includes/classes/class.query-log.php:1653
4468
- msgid "buyCRED Purchase (Skrill)"
4469
- msgstr "Compra buyCRED (Skrill)"
4470
-
4471
- #: ../includes/classes/class.query-log.php:1654
4472
- msgid "buyCRED Purchase (Zombaio)"
4473
- msgstr "Compra buyCRED (Zombaio)"
4474
-
4475
- #: ../includes/classes/class.query-log.php:1655
4476
- msgid "buyCRED Purchase (NETBilling)"
4477
- msgstr "Compra buyCRED (NETBilling)"
4478
-
4479
- #: ../includes/classes/class.query-log.php:1656
4480
- msgid "buyCRED Purchase (BitPay)"
4481
- msgstr "Compra buyCRED (BitPay)"
4482
-
4483
- #: ../includes/classes/class.query-log.php:1661
4484
- msgid "Coupon Purchase"
4485
- msgstr "Compra Cupón"
4486
-
4487
- #: ../includes/classes/class.query-log.php:1665
4488
- msgid "Store Purchase (WooCommerce)"
4489
- msgstr "Compra de Tienda (WooCommerce)"
4490
-
4491
- #: ../includes/classes/class.query-log.php:1670
4492
- msgid "Store Purchase (MarketPress)"
4493
- msgstr "Compra de Tienda (MarketPress)"
4494
-
4495
- #: ../includes/classes/class.query-log.php:1674
4496
- msgid "Store Purchase (WP E-Commerce)"
4497
- msgstr "Compra de Tienda (WP E-Commerce)"
4498
-
4499
- #: ../includes/classes/class.query-log.php:1680
4500
- msgid "Event Payment (Event Espresso)"
4501
- msgstr "Pago por Evento (Event Espresso)"
4502
-
4503
- #: ../includes/classes/class.query-log.php:1681
4504
- msgid "Event Sale (Event Espresso)"
4505
- msgstr "Venta de Evento (Event Espresso)"
4506
-
4507
- #: ../includes/classes/class.query-log.php:1685
4508
- msgid "Event Payment (Events Manager)"
4509
- msgstr "Pago por Evento (Events Manager)"
4510
-
4511
- #: ../includes/classes/class.query-log.php:1686
4512
- msgid "Event Sale (Events Manager)"
4513
- msgstr "Venta de Evento (Events Manager)"
4514
-
4515
- #: ../includes/classes/class.query-log.php:1695 ../addons/transfer/myCRED-addon-
4516
- #: transfer.php:48
4517
- msgid "Transfer"
4518
- msgstr "Transferir"
4519
-
4520
- #: ../includes/classes/class.query-log.php:1699
4521
- msgid "Manual Adjustment by Admin"
4522
- msgstr "Ajuste Manual por Admin"
4523
-
4524
- #: ../includes/mycred-about.php:32
4525
- #, php-format
4526
- msgid "Welcome to %s %s"
4527
- msgstr "Bienvenido a %s %s"
4528
-
4529
- #: ../includes/mycred-overview.php:25
4530
- #, php-format
4531
- msgid "%s Overview"
4532
- msgstr "Descripción de %s"
4533
-
4534
- #: ../includes/mycred-overview.php:82 ../addons/stats/widgets/mycred-stats-widget-
4535
- #: circulation.php:136 ../addons/stats/widgets/mycred-stats-widget-circulation.
4536
- #: php:265
4537
- msgid "Total amount in circulation"
4538
- msgstr "Suma total en circulación"
4539
-
4540
- #. also, "Otorgado"
4541
- #: ../includes/mycred-overview.php:85
4542
- msgid "Awarded"
4543
- msgstr "Concedido"
4544
-
4545
- #: ../includes/mycred-overview.php:88
4546
- msgid "Deducted"
4547
- msgstr "Deducido"
4548
-
4549
- #: ../includes/mycred-install.php:73
4550
- msgid "myCRED requires SQL 5.0 or higher. Version detected: "
4551
- msgstr "myCRED requiere SWL 5.0 o más alto. La versión detectada:"
4552
-
4553
- #: ../includes/mycred-install.php:78
4554
- msgid ""
4555
- "The mcrypt PHP library must be enabled in order to use this plugin! Please "
4556
- "check your PHP configuration or contact your host and ask them to enable it "
4557
- "for you!"
4558
- msgstr ""
4559
- "La biblioteca PHP mcrypt debe ser habilitado para poder usar este plugin! "
4560
- "Por favor verifica tu configuración de PHP o contacta a tu web host y "
4561
- "pideles que lo habiliten para ti!"
4562
-
4563
- #: ../includes/mycred-install.php:83
4564
- msgid ""
4565
- "Sorry but your WordPress installation does not reach the minimum "
4566
- "requirements for running myCRED. The following errors were given:"
4567
- msgstr ""
4568
- "Lo sentimos, pero tu instalación de WordPress no alcanza a los requisitos "
4569
- "mínimos de mycred. Se produce los siguientes errores:"
4570
-
4571
- #: ../includes/mycred-widgets.php:21
4572
- #, php-format
4573
- msgid "(%s) My Balance"
4574
- msgstr "(%s) Mi Saldo"
4575
-
4576
- #: ../includes/mycred-widgets.php:24
4577
- #, php-format
4578
- msgid "Show the current users %s balance"
4579
- msgstr "Enseñar el saldo de %s del usuario actual"
4580
-
4581
- #: ../includes/mycred-widgets.php:204
4582
- msgid "Layout"
4583
- msgstr "Disposición"
4584
-
4585
- #: ../includes/mycred-widgets.php:212
4586
- msgid "Include history"
4587
- msgstr "Incluir el historial"
4588
-
4589
- #: ../includes/mycred-widgets.php:214
4590
- msgid "History Title"
4591
- msgstr "Titulo de Historial"
4592
-
4593
- #. the English needs to be corrected to "Number of Entries"
4594
- #: ../includes/mycred-widgets.php:216
4595
- msgid "Number of entires"
4596
- msgstr "Numero de Entradas"
4597
-
4598
- #: ../includes/mycred-widgets.php:218 ../includes/mycred-widgets.php:405
4599
- msgid "Row layout"
4600
- msgstr "Disposición de Filas"
4601
-
4602
- #: ../includes/mycred-widgets.php:226 ../includes/mycred-widgets.php:606
4603
- msgid "Show message when not logged in"
4604
- msgstr "Mostrar mensaje cuando no ha iniciado la sesión"
4605
-
4606
- #: ../includes/mycred-widgets.php:228 ../includes/mycred-widgets.php:607
4607
- msgid "Message"
4608
- msgstr "Mensaje"
4609
-
4610
- #: ../includes/mycred-widgets.php:298
4611
- #, php-format
4612
- msgid "(%s) Leaderboard"
4613
- msgstr "(%s) Tabla de Clasificación"
4614
-
4615
- #: ../includes/mycred-widgets.php:301
4616
- #, php-format
4617
- msgid "Show a list of users sorted by their %s balance"
4618
- msgstr "Mustra una lista de usuarios ordenados por sus %s saldos"
4619
-
4620
- #: ../includes/mycred-widgets.php:392
4621
- msgid "Based On"
4622
- msgstr "Basado Sobre"
4623
-
4624
- #: ../includes/mycred-widgets.php:394
4625
- msgid ""
4626
- "Use \"balance\" to base the leaderboard on your users current balances or use "
4627
- "a specific reference."
4628
- msgstr ""
4629
- "Utiliza \"saldo\" para basar la tabla de clasificación sobre los saldos "
4630
- "actuales de tus usuarios o utiliza una referencia especifica."
4631
-
4632
- #: ../includes/mycred-widgets.php:394
4633
- msgid "Reference Guide"
4634
- msgstr "Guia de Referencia"
4635
-
4636
- #: ../includes/mycred-widgets.php:399
4637
- msgid "Visible to non-members"
4638
- msgstr "Visible al público (no miembros)"
4639
-
4640
- #: ../includes/mycred-widgets.php:401
4641
- msgid "Number of users"
4642
- msgstr "Numero de Usuarios"
4643
-
4644
- #: ../includes/mycred-widgets.php:410
4645
- msgid "Offset"
4646
- msgstr "Offset"
4647
-
4648
- #: ../includes/mycred-widgets.php:412
4649
- msgid "Optional offset of order. Use zero to return the first in the list."
4650
- msgstr ""
4651
- "Opcional desplazamiento (offset) de la orden. Utilice cero para devolver el "
4652
- "primero en la lista."
4653
-
4654
- #: ../includes/mycred-widgets.php:415
4655
- msgid "Order"
4656
- msgstr "Orden"
4657
-
4658
- #: ../includes/mycred-widgets.php:435
4659
- msgid "Append current users position"
4660
- msgstr "Añade la posición actual de usuarios "
4661
-
4662
- #: ../includes/mycred-widgets.php:436
4663
- msgid ""
4664
- "If the current user is not in this leaderboard, you can select to append "
4665
- "them at the end with their current position."
4666
- msgstr ""
4667
- "Si el usuario actual no esta en esta tabla de clasificación, puedes elegir a "
4668
- "agregarles al final con su posición actual."
4669
-
4670
- #: ../includes/mycred-widgets.php:491
4671
- #, php-format
4672
- msgid "(%s) Wallet"
4673
- msgstr "(%s) Cartera"
4674
-
4675
- #: ../includes/mycred-widgets.php:494
4676
- msgid "Shows the current users balances for each point type."
4677
- msgstr "Mostrar el saldo actual del usuario para cada clase de punto (\"point type\")."
4678
-
4679
- #: ../includes/mycred-widgets.php:598
4680
- msgid "Row Layout"
4681
- msgstr "Disposición de Filas"
4682
-
4683
- #: ../includes/mycred-functions.php:85
4684
- msgid "Point"
4685
- msgstr "Punto"
4686
-
4687
- #: ../includes/mycred-functions.php:86
4688
- msgid "Points"
4689
- msgstr "Puntos"
4690
-
4691
- #: ../includes/mycred-functions.php:466
4692
- msgid "Deleted"
4693
- msgstr "Borrado"
4694
-
4695
- #: ../includes/mycred-functions.php:613
4696
- msgid "Deleted Item"
4697
- msgstr "Artículo Borrado"
4698
-
4699
- #: ../includes/mycred-functions.php:677 ../addons/gateway/carts/mycred-
4700
- #: wpecommerce.php:370 ../addons/email-notices/myCRED-addon-email-notices.php:861
4701
- msgid "General"
4702
- msgstr "General"
4703
-
4704
- #: ../includes/mycred-functions.php:684
4705
- msgid "User Related"
4706
- msgstr "Relacionado al Usuario"
4707
-
4708
- #: ../includes/mycred-functions.php:691
4709
- msgid "Post Related"
4710
- msgstr "Relacionado a la Entrada"
4711
-
4712
- #: ../includes/mycred-functions.php:698
4713
- msgid "Comment Related"
4714
- msgstr "Relacionado al Comentario"
4715
-
4716
- #: ../includes/mycred-functions.php:705
4717
- msgid "Widget Related"
4718
- msgstr "Relacionado al Widget"
4719
-
4720
- #: ../includes/mycred-functions.php:712
4721
- msgid "Amount Related"
4722
- msgstr "Cantidad Relacionada"
4723
-
4724
- #: ../includes/mycred-functions.php:719
4725
- msgid "Video Related"
4726
- msgstr "Relacionado al Video"
4727
-
4728
- #: ../includes/mycred-functions.php:730
4729
- msgid "and"
4730
- msgstr "y"
4731
-
4732
- #: ../includes/mycred-functions.php:732
4733
- msgid "Available Template Tags:"
4734
- msgstr "Etiquetas de Plantilla Disponibles:"
4735
-
4736
- #. URI of the plugin
4737
- msgid "http://mycred.me"
4738
- msgstr "http://mycred.me"
4739
-
4740
- #. Author of the plugin
4741
- msgid "Gabriel S Merovingi"
4742
- msgstr "Gabriel S Merovingi"
4743
-
4744
- #. Author URI of the plugin
4745
- msgid "http://www.merovingi.com"
4746
- msgstr "http://www.merovingi.com"
4747
-
4748
- #: ../mycred.php:565
4749
- #, php-format
4750
- msgid "%s Log Import"
4751
- msgstr "Registro de Importe %s"
4752
-
4753
- #: ../mycred.php:566
4754
- msgid "Import log entries via a CSV file."
4755
- msgstr "Importa las entradas de registro atraves de un fichero CSV."
4756
-
4757
- #: ../mycred.php:577
4758
- #, php-format
4759
- msgid "%s Balance Import"
4760
- msgstr "%s balance de Importar"
4761
-
4762
- #: ../mycred.php:578
4763
- msgid "Import balances."
4764
- msgstr "Saldos Importar."
4765
-
4766
- #: ../mycred.php:589
4767
- #, php-format
4768
- msgid "%s CubePoints Import"
4769
- msgstr "Importar CubePoints %s"
4770
-
4771
- #: ../mycred.php:633
4772
- msgid "Sent"
4773
- msgstr "Enviado"
4774
-
4775
- #: ../mycred.php:634
4776
- msgid "Error - Try Again"
4777
- msgstr "Error - Inténtelo de nuevo."
4778
-
4779
- #: ../mycred.php:766
4780
- msgid "No CubePoints log exists."
4781
- msgstr "No existe ningun registro de CubePoints."
4782
-
4783
- #: ../mycred.php:817 ../mycred.php:818
4784
- #, php-format
4785
- msgid "About %s"
4786
- msgstr "Sobre"
4787
-
4788
- #: ../mycred.php:826 ../mycred.php:827
4789
- msgid "Awesome People"
4790
- msgstr "Gente genial"
4791
-
4792
- #: ../mycred.php:987 ../mycred.php:1008 ../addons/banking/services/mycred-service-
4793
- #: interest.php:477 ../addons/gateway/event-booking/mycred-eventsmanager.php:537 .
4794
- #: ./addons/gateway/event-booking/mycred-eventsmanager-pro.php:605 ..
4795
- #: addons/email-notices/myCRED-addon-email-notices.php:273
4796
- msgid "Setup"
4797
- msgstr "Configurar"
4798
-
4799
- #: ../mycred.php:1030
4800
- msgid ""
4801
- "Make sure to backup your database and files before updating, in case "
4802
- "anything goes wrong!"
4803
- msgstr ""
4804
- "Antes de actualizar, asegura crear copias de seguridad de su base de datos y "
4805
- "archivo, por si acaso!"
4806
-
4807
- #: ../addons/banking/myCRED-addon-banking.php:45 ../addons/banking/myCRED-addon-
4808
- #: banking.php:46 ../addons/banking/myCRED-addon-banking.php:47
4809
- msgid "Banking"
4810
- msgstr "Banco"
4811
-
4812
- #: ../addons/banking/myCRED-addon-banking.php:141
4813
- msgid "Central Banking"
4814
- msgstr "Banco Central"
4815
-
4816
- #: ../addons/banking/myCRED-addon-banking.php:159
4817
- msgid "Recurring Payouts"
4818
- msgstr "Pagos Recurrentes"
4819
-
4820
- #: ../addons/banking/myCRED-addon-banking.php:160
4821
- #, php-format
4822
- msgid "Setup mass %_singular% payouts for your users."
4823
- msgstr "Configurar pago en masa &_singular% para tus usuarios."
4824
-
4825
- #: ../addons/banking/myCRED-addon-banking.php:253
4826
- #, php-format
4827
- msgid "%s Banking"
4828
- msgstr "%s Bancario"
4829
-
4830
- #: ../addons/banking/myCRED-addon-banking.php:273 ../addons/buy-
4831
- #: creds/modules/buycred-module-core.php:559
4832
- msgid "Enable"
4833
- msgstr "Habilitar"
4834
-
4835
- #: ../addons/banking/myCRED-addon-banking.php:292
4836
- msgid "Update Changes"
4837
- msgstr "Actualizar Cambios"
4838
-
4839
- #: ../addons/banking/services/mycred-service-central.php:117
4840
- msgid "Ignore Manual Adjustments"
4841
- msgstr "Ignorar Ajustes Manuales"
4842
-
4843
- #: ../addons/banking/services/mycred-service-interest.php:28
4844
- #, php-format
4845
- msgid "%plural% interest rate payment"
4846
- msgstr "%plural% pago de tasa de interés"
4847
-
4848
- #: ../addons/banking/services/mycred-service-interest.php:481 ..
4849
- #: addons/banking/services/mycred-service-interest.php:652
4850
- msgid "Interest Rate"
4851
- msgstr "Tasa de Interés"
4852
-
4853
- #: ../addons/banking/services/mycred-service-interest.php:499 ..
4854
- #: addons/coupons/myCRED-addon-coupons.php:574
4855
- msgid "Minimum Balance"
4856
- msgstr "Saldo Minimo"
4857
-
4858
- #: ../addons/banking/services/mycred-service-interest.php:528 ..
4859
- #: addons/banking/services/mycred-service-interest.php:529 ..
4860
- #: addons/banking/services/mycred-service-payouts.php:789
4861
- msgid "Comma separated list of user IDs"
4862
- msgstr "Lista del IDs de usuarios delimitado por comas"
4863
-
4864
- #: ../addons/banking/services/mycred-service-payouts.php:31 ../addons/email-
4865
- #: notices/myCRED-addon-email-notices.php:306
4866
- msgid "Active"
4867
- msgstr "Activo"
4868
-
4869
- #: ../addons/banking/services/mycred-service-payouts.php:563 ..
4870
- #: addons/banking/services/mycred-service-payouts.php:878 ../addons/email-
4871
- #: notices/myCRED-addon-email-notices.php:272 ../addons/sell-content/myCRED-addon-
4872
- #: sell-content.php:421
4873
- msgid "Status"
4874
- msgstr "Estatus"
4875
-
4876
- #: ../addons/banking/services/mycred-service-payouts.php:571
4877
- msgid "Last Run"
4878
- msgstr "Ultima Ejecución"
4879
-
4880
- #: ../addons/banking/services/mycred-service-payouts.php:589 ..
4881
- #: addons/gateway/carts/mycred-wpecommerce.php:396
4882
- msgid "Payout"
4883
- msgstr "Desembolso"
4884
-
4885
- #: ../addons/banking/services/mycred-service-payouts.php:894 ..
4886
- #: addons/ranks/myCRED-addon-ranks.php:223 ../addons/ranks/myCRED-addon-ranks.
4887
- #: php:224 ../addons/email-notices/myCRED-addon-email-notices.php:126 ..
4888
- #: addons/email-notices/myCRED-addon-email-notices.php:127 ..
4889
- #: addons/badges/myCRED-addon-badges.php:150 ../addons/badges/myCRED-addon-
4890
- #: badges.php:151
4891
- msgid "Add New"
4892
- msgstr "Añade Nuevo"
4893
-
4894
- #. also, "Cada Hora"
4895
- #: ../addons/banking/includes/mycred-banking-functions.php:79
4896
- msgid "Hourly"
4897
- msgstr "Por Hora"
4898
-
4899
- #: ../addons/banking/includes/mycred-banking-functions.php:84
4900
- msgid "Daily"
4901
- msgstr "Diario"
4902
-
4903
- #: ../addons/banking/includes/mycred-banking-functions.php:89
4904
- msgid "Weekly"
4905
- msgstr "Semanal"
4906
-
4907
- #: ../addons/banking/includes/mycred-banking-functions.php:94
4908
- msgid "Monthly"
4909
- msgstr "Mensual"
4910
-
4911
- #: ../addons/banking/includes/mycred-banking-functions.php:99
4912
- msgid "Quarterly"
4913
- msgstr "Trimestral"
4914
-
4915
- #: ../addons/banking/includes/mycred-banking-functions.php:104
4916
- msgid "Semiannually"
4917
- msgstr "Semestral"
4918
-
4919
- #: ../addons/banking/includes/mycred-banking-functions.php:109
4920
- msgid "Annually"
4921
- msgstr "Anual"
4922
-
4923
- #: ../addons/gateway/event-booking/mycred-eventespresso3.php:26 ..
4924
- #: addons/gateway/event-booking/mycred-eventsmanager.php:540 ..
4925
- #: addons/gateway/event-booking/mycred-eventsmanager-pro.php:626 ../addons/buy-
4926
- #: creds/modules/buycred-module-core.php:651
4927
- msgid "Payments"
4928
- msgstr "Pagos"
4929
-
4930
- #: ../addons/gateway/event-booking/mycred-eventespresso3.php:27 ..
4931
- #: addons/gateway/event-booking/mycred-eventsmanager.php:35 ..
4932
- #: addons/gateway/event-booking/mycred-eventsmanager-pro.php:39 ../addons/buy-
4933
- #: creds/modules/buycred-module-pending.php:710
4934
- msgid "Pay Now"
4935
- msgstr "Pagar Ahora"
4936
-
4937
- #: ../addons/gateway/event-booking/mycred-eventespresso3.php:32
4938
- msgid "Payment for Event Registration"
4939
- msgstr "Pago para Registrar Evento"
4940
-
4941
- #: ../addons/gateway/event-booking/mycred-eventespresso3.php:311 ..
4942
- #: addons/gateway/event-booking/mycred-eventespresso3.php:336 ..
4943
- #: addons/gateway/event-booking/mycred-eventsmanager.php:416 ..
4944
- #: addons/gateway/carts/mycred-wpecommerce.php:120 ..
4945
- #: addons/gateway/carts/mycred-marketpress.php:162
4946
- msgid "Total Cost"
4947
- msgstr "Coste Total"
4948
-
4949
- #: ../addons/gateway/event-booking/mycred-eventespresso3.php:315 ..
4950
- #: addons/gateway/event-booking/mycred-eventespresso3.php:340 ..
4951
- #: addons/gateway/carts/mycred-marketpress.php:166
4952
- msgid "Balance After Purchase"
4953
- msgstr "Saldo Despues de Compra"
4954
-
4955
- #: ../addons/gateway/event-booking/mycred-eventespresso3.php:380
4956
- #, php-format
4957
- msgid "Activate %s"
4958
- msgstr "Activar %s"
4959
-
4960
- #: ../addons/gateway/event-booking/mycred-eventespresso3.php:389
4961
- #, php-format
4962
- msgid "Deactivate %s"
4963
- msgstr "Desactivar %s"
4964
-
4965
- #: ../addons/gateway/event-booking/mycred-eventespresso3.php:402
4966
- msgid "Gateway Settings"
4967
- msgstr "Configuraciones de la Pasarela de Pago"
4968
-
4969
- #: ../addons/gateway/event-booking/mycred-eventespresso3.php:442 ..
4970
- #: addons/gateway/event-booking/mycred-eventsmanager.php:524 ..
4971
- #: addons/gateway/event-booking/mycred-eventsmanager-pro.php:595
4972
- #, php-format
4973
- msgid "How many %s is 1 %s worth?"
4974
- msgstr "¿Cuantos %s vale un %s?"
4975
-
4976
- #. also, "Titulo de la Pasarela de Pago" depending on the technical nature of the action being done
4977
- #: ../addons/gateway/event-booking/mycred-eventespresso3.php:463
4978
- msgid "Gateway Title"
4979
- msgstr "Titulo de la Red de Enlace"
4980
-
4981
- #: ../addons/gateway/event-booking/mycred-eventespresso3.php:465
4982
- msgid "Title to show on Payment page"
4983
- msgstr "Titulo que se mostrara en tu pagina de Pago"
4984
-
4985
- #: ../addons/gateway/event-booking/mycred-eventespresso3.php:468
4986
- msgid "Payment Type"
4987
- msgstr "Clase de Pago"
4988
-
4989
- #: ../addons/gateway/event-booking/mycred-eventespresso3.php:470
4990
- msgid "Title to show on receipts and logs"
4991
- msgstr "El titulo a mostrar en la factura y en los registros."
4992
-
4993
- #: ../addons/gateway/event-booking/mycred-eventespresso3.php:473 ..
4994
- #: addons/gateway/event-booking/mycred-eventsmanager.php:619 ..
4995
- #: addons/gateway/event-booking/mycred-eventsmanager-pro.php:703 ..
4996
- #: addons/transfer/includes/mycred-transfer-widgets.php:93 ../addons/sell-
4997
- #: content/myCRED-addon-sell-content.php:441 ../addons/sell-content/myCRED-addon-
4998
- #: sell-content.php:476
4999
- msgid "Button Label"
5000
- msgstr "Eqiqueta Asignada al Botón"
5001
-
5002
- #: ../addons/gateway/event-booking/mycred-eventespresso3.php:475
5003
- msgid "Pay Button"
5004
- msgstr "Botón de Pago"
5005
-
5006
- #: ../addons/gateway/event-booking/mycred-eventespresso3.php:495 ..
5007
- #: addons/gateway/event-booking/mycred-eventsmanager.php:336 ..
5008
- #: addons/gateway/event-booking/mycred-eventsmanager.php:339 ..
5009
- #: addons/gateway/event-booking/mycred-eventsmanager-pro.php:153 ..
5010
- #: addons/gateway/event-booking/mycred-eventsmanager-pro.php:156 ../addons/sell-
5011
- #: content/myCRED-addon-sell-content.php:425 ../addons/sell-content/myCRED-addon-
5012
- #: sell-content.php:831
5013
- msgid "Price"
5014
- msgstr "Precio"
5015
-
5016
- #: ../addons/gateway/event-booking/mycred-eventespresso3.php:503
5017
- msgid "Important!"
5018
- msgstr "¡Importante!"
5019
-
5020
- #: ../addons/gateway/event-booking/mycred-eventespresso3.php:505
5021
- msgid ""
5022
- "You can disable purchases using this gateway by adding a custom Event Meta: "
5023
- "<code>mycred_no_sale</code>"
5024
- msgstr ""
5025
- "Puedes inhabilitar compras a traves de esta pasarela mediante la adición de "
5026
- "un Evento Meta personalizado: <code>mycred_no_sale</code>"
5027
-
5028
- #: ../addons/gateway/event-booking/mycred-eventespresso3.php:506
5029
- msgid "Users must be logged in to use this gateway!"
5030
- msgstr "¡Los usuarios deben estar conectado para usar esta pasarela de pago!"
5031
-
5032
- #: ../addons/gateway/event-booking/mycred-eventespresso3.php:510 ..
5033
- #: addons/gateway/event-booking/mycred-eventsmanager.php:569 ..
5034
- #: addons/gateway/event-booking/mycred-eventsmanager-pro.php:641 ..
5035
- #: addons/gateway/carts/mycred-wpecommerce.php:393 ..
5036
- #: addons/gateway/carts/mycred-woocommerce.php:168 ..
5037
- #: addons/gateway/carts/mycred-marketpress.php:462
5038
- msgid "Profit Sharing"
5039
- msgstr "Reparto de Ganancias"
5040
-
5041
- #: ../addons/gateway/event-booking/mycred-eventespresso3.php:512 ..
5042
- #: addons/gateway/event-booking/mycred-eventsmanager.php:572 ..
5043
- #: addons/gateway/event-booking/mycred-eventsmanager-pro.php:644 ..
5044
- #: addons/gateway/carts/mycred-wpecommerce.php:397 ..
5045
- #: addons/gateway/carts/mycred-woocommerce.php:170 ..
5046
- #: addons/gateway/carts/mycred-marketpress.php:467
5047
- msgid "Option to share sales with the product owner. Use zero to disable."
5048
- msgstr ""
5049
- "Opción de compartir las ventas con el dueño del producto. Utilice cero para "
5050
- "inhabilitar."
5051
-
5052
- #: ../addons/gateway/event-booking/mycred-eventespresso3.php:525 ..
5053
- #: addons/transfer/myCRED-addon-transfer.php:460 ../addons/sell-content/myCRED-
5054
- #: addon-sell-content.php:481
5055
- msgid "Templates"
5056
- msgstr "Plantillas"
5057
-
5058
- #: ../addons/gateway/event-booking/mycred-eventespresso3.php:528
5059
- msgid "Solvent users"
5060
- msgstr "Usuarios Solventes"
5061
-
5062
- #: ../addons/gateway/event-booking/mycred-eventespresso3.php:530
5063
- msgid ""
5064
- "Message to show users on the payment page before they are charged. Leave "
5065
- "empty to hide."
5066
- msgstr ""
5067
- "Mostrar mensaje a los usuarios en la pagina de pago antes de cobrar. Dejalo "
5068
- "vacío para ocultar. "
5069
-
5070
- #: ../addons/gateway/event-booking/mycred-eventespresso3.php:533
5071
- msgid "Insolvent users"
5072
- msgstr "Usuarios Insolventes"
5073
-
5074
- #: ../addons/gateway/event-booking/mycred-eventespresso3.php:535
5075
- msgid "Message to show users who do not have enough points to pay."
5076
- msgstr ""
5077
- "Mostrar mensaje a los usuarios que no tienen suficientes puntos con que "
5078
- "pagar."
5079
-
5080
- #: ../addons/gateway/event-booking/mycred-eventespresso3.php:538 ..
5081
- #: addons/gateway/carts/mycred-wpecommerce.php:411 ..
5082
- #: addons/gateway/carts/mycred-marketpress.php:490 ../addons/transfer/myCRED-
5083
- #: addon-transfer.php:463 ../addons/sell-content/myCRED-addon-sell-content.php:501
5084
- msgid "Visitors"
5085
- msgstr "Visitantes"
5086
-
5087
- #: ../addons/gateway/event-booking/mycred-eventespresso3.php:540
5088
- msgid "Message to show visitors (users not logged in) on the payment page."
5089
- msgstr ""
5090
- "Mostrar mensaje a los visitantes (usuarios que no han iniciado sesión) en la "
5091
- "pagina de pago."
5092
-
5093
- #: ../addons/gateway/event-booking/mycred-eventsmanager.php:29 ..
5094
- #: addons/gateway/event-booking/mycred-eventsmanager-pro.php:33
5095
- msgid "Payment for tickets to %link_with_title%"
5096
- msgstr "Pago de entradas para %link_with_title%"
5097
-
5098
- #: ../addons/gateway/event-booking/mycred-eventsmanager.php:30 ..
5099
- #: addons/gateway/event-booking/mycred-eventsmanager-pro.php:34
5100
- msgid "Ticket refund for %link_with_title%"
5101
- msgstr "Reembolso de entrada para "
5102
-
5103
- #: ../addons/gateway/event-booking/mycred-eventsmanager.php:34 ..
5104
- #: addons/gateway/event-booking/mycred-eventsmanager-pro.php:38
5105
- #, php-format
5106
- msgid "Pay using your %_plural% balance"
5107
- msgstr "Paga utilizando tu saldo de %_plural%"
5108
-
5109
- #: ../addons/gateway/event-booking/mycred-eventsmanager.php:36 ..
5110
- #: addons/gateway/event-booking/mycred-eventsmanager-pro.php:40
5111
- msgid "Pay"
5112
- msgstr "Pagar"
5113
-
5114
- #: ../addons/gateway/event-booking/mycred-eventsmanager.php:39 ..
5115
- #: addons/gateway/event-booking/mycred-eventsmanager-pro.php:44
5116
- msgid "Thank you for your payment!"
5117
- msgstr "¡Gracias por su pago!"
5118
-
5119
- #: ../addons/gateway/event-booking/mycred-eventsmanager.php:40 ..
5120
- #: addons/gateway/event-booking/mycred-eventsmanager-pro.php:45
5121
- msgid "I'm sorry but you can not pay for these tickets using %_plural%"
5122
- msgstr "Lo siento pero no puedes pagar estos billetes usando %_plural%"
5123
-
5124
- #: ../addons/gateway/event-booking/mycred-eventsmanager.php:333 ..
5125
- #: addons/gateway/event-booking/mycred-eventsmanager-pro.php:150
5126
- msgid "Ticket Type"
5127
- msgstr "Clase de Billete"
5128
-
5129
- #: ../addons/gateway/event-booking/mycred-eventsmanager.php:342 ..
5130
- #: addons/gateway/event-booking/mycred-eventsmanager-pro.php:159
5131
- msgid "Spaces"
5132
- msgstr "Espacios"
5133
-
5134
- #: ../addons/gateway/event-booking/mycred-eventsmanager.php:420
5135
- msgid "Balance After Payment"
5136
- msgstr "Saldo despues de Pago"
5137
-
5138
- #: ../addons/gateway/event-booking/mycred-eventsmanager.php:532
5139
- msgid "Click to toggle"
5140
- msgstr "Haga clic para alternar"
5141
-
5142
- #: ../addons/gateway/event-booking/mycred-eventsmanager.php:533
5143
- #, php-format
5144
- msgid "%s Payments"
5145
- msgstr "Pagos de "
5146
-
5147
- #: ../addons/gateway/event-booking/mycred-eventsmanager.php:542 ..
5148
- #: addons/gateway/event-booking/mycred-eventsmanager-pro.php:628
5149
- #, php-format
5150
- msgid "Disabled - Users CAN NOT pay for tickets using %plural%."
5151
- msgstr "Deshabilitado - Usuarios NO PUEDEN pagar entradas utilizando %plural%."
5152
-
5153
- #: ../addons/gateway/event-booking/mycred-eventsmanager.php:543 ..
5154
- #: addons/gateway/event-booking/mycred-eventsmanager-pro.php:629
5155
- #, php-format
5156
- msgid "Single - Users can ONLY pay for tickets using %plural%."
5157
- msgstr "Individuales - Usuarios NO PUEDEN pagar entradas utilizando %plural%."
5158
-
5159
- #: ../addons/gateway/event-booking/mycred-eventsmanager.php:544 ..
5160
- #: addons/gateway/event-booking/mycred-eventsmanager-pro.php:630
5161
- #, php-format
5162
- msgid "Multi - Users can pay for tickets using other gateways or %plural%."
5163
- msgstr ""
5164
- "Multi-usuarios pueden pagar entradas utilizando otras pasarelas de pago o "
5165
- "%plural%."
5166
-
5167
- #: ../addons/gateway/event-booking/mycred-eventsmanager.php:562 ..
5168
- #: addons/gateway/event-booking/mycred-eventsmanager.php:595 ..
5169
- #: addons/gateway/event-booking/mycred-eventsmanager-pro.php:634 ..
5170
- #: addons/gateway/event-booking/mycred-eventsmanager-pro.php:667
5171
- msgid "Refunds"
5172
- msgstr "Reembolsos"
5173
-
5174
- #: ../addons/gateway/event-booking/mycred-eventsmanager.php:565
5175
- msgid ""
5176
- "The percentage of the paid amount to refund if a booking gets cancelled. Use "
5177
- "zero for no refunds. No refunds are given to \"Rejected\" bookings."
5178
- msgstr ""
5179
- "El porcentaje de la cantidad pagada que se reembolsará si se cancela una "
5180
- "reserva. Utilice cero para no ofrecer reembolso ninguno. No se reembolsa "
5181
- "reservas \"Rechazadas\""
5182
-
5183
- #: ../addons/gateway/event-booking/mycred-eventsmanager.php:585 ..
5184
- #: addons/gateway/event-booking/mycred-eventsmanager-pro.php:657
5185
- msgid "Log Templates"
5186
- msgstr "Plantillas de Registro"
5187
-
5188
- #: ../addons/gateway/event-booking/mycred-eventsmanager.php:588 ..
5189
- #: addons/gateway/event-booking/mycred-eventsmanager-pro.php:660
5190
- msgid "Purchases"
5191
- msgstr "Compras"
5192
-
5193
- #: ../addons/gateway/event-booking/mycred-eventsmanager.php:605 ..
5194
- #: addons/gateway/event-booking/mycred-eventsmanager-pro.php:689
5195
- msgid "Payment Link Label"
5196
- msgstr "La Etiqueta del Enlace de Pago"
5197
-
5198
- #: ../addons/gateway/event-booking/mycred-eventsmanager.php:608 ..
5199
- #: addons/gateway/event-booking/mycred-eventsmanager-pro.php:692
5200
- msgid ""
5201
- "The payment link shows / hides the payment form under \"My Bookings\". No HTML "
5202
- "allowed."
5203
- msgstr ""
5204
- "El enlace de pago muestra / oculta el formulario de pago en \"Mis Reservas\". "
5205
- "¡No se permite HTML!"
5206
-
5207
- #: ../addons/gateway/event-booking/mycred-eventsmanager.php:612 ..
5208
- #: addons/gateway/event-booking/mycred-eventsmanager-pro.php:696
5209
- msgid "Payment Header"
5210
- msgstr "Encabezado de Pago"
5211
-
5212
- #: ../addons/gateway/event-booking/mycred-eventsmanager.php:615 ..
5213
- #: addons/gateway/event-booking/mycred-eventsmanager-pro.php:699
5214
- msgid "Shown on top of the payment form. No HTML allowed."
5215
- msgstr "Mostrar en la encima del formulario de pago. No se permite HTML."
5216
-
5217
- #: ../addons/gateway/event-booking/mycred-eventsmanager.php:622 ..
5218
- #: addons/gateway/event-booking/mycred-eventsmanager-pro.php:706
5219
- msgid "The button label for payments. No HTML allowed!"
5220
- msgstr "La etiqueta para el botón de pagos. ¡No se permite HTML!"
5221
-
5222
- #: ../addons/gateway/event-booking/mycred-eventsmanager.php:626 ..
5223
- #: addons/gateway/event-booking/mycred-eventsmanager-pro.php:717 ..
5224
- #: addons/gateway/carts/mycred-wpecommerce.php:404 ..
5225
- #: addons/gateway/carts/mycred-marketpress.php:479
5226
- msgid "Messages"
5227
- msgstr "Mensajes"
5228
-
5229
- #: ../addons/gateway/event-booking/mycred-eventsmanager.php:629 ..
5230
- #: addons/gateway/event-booking/mycred-eventsmanager-pro.php:720
5231
- msgid "Successful Payments"
5232
- msgstr "Compras Finalizadas con Exito"
5233
-
5234
- #: ../addons/gateway/event-booking/mycred-eventsmanager.php:632 ..
5235
- #: addons/gateway/event-booking/mycred-eventsmanager.php:639 ..
5236
- #: addons/gateway/event-booking/mycred-eventsmanager-pro.php:723 ..
5237
- #: addons/gateway/event-booking/mycred-eventsmanager-pro.php:730
5238
- msgid "No HTML allowed!"
5239
- msgstr "¡No se permite HTML!"
5240
-
5241
- #: ../addons/gateway/event-booking/mycred-eventsmanager-pro.php:41
5242
- #, php-format
5243
- msgid "%plural% Cost"
5244
- msgstr "%plural% Coste"
5245
-
5246
- #: ../addons/gateway/event-booking/mycred-eventsmanager-pro.php:213
5247
- msgid "Your Balance"
5248
- msgstr "Su Saldo"
5249
-
5250
- #: ../addons/gateway/event-booking/mycred-eventsmanager-pro.php:374
5251
- msgid "You can not pay using this gateway."
5252
- msgstr "No puede usar esta pasarela de pago."
5253
-
5254
- #: ../addons/gateway/event-booking/mycred-eventsmanager-pro.php:492
5255
- msgid "Reject"
5256
- msgstr "Rechazar"
5257
-
5258
- #: ../addons/gateway/event-booking/mycred-eventsmanager-pro.php:501
5259
- msgid "Edit/View"
5260
- msgstr "Editar/Ver"
5261
-
5262
- #: ../addons/gateway/event-booking/mycred-eventsmanager-pro.php:637
5263
- msgid ""
5264
- "The percentage of the paid amount to refund if a user cancels their booking. "
5265
- "Use zero for no refunds. No refunds are given to \"Rejected\" bookings!"
5266
- msgstr ""
5267
- "El porcentaje de la cantidad pagada que se reembolsará si se cancela una "
5268
- "reserva. Utilice cero para no ofrecer reembolso ninguno. No se reembolsa "
5269
- "reservas \"Rechazadas\""
5270
-
5271
- #: ../addons/gateway/event-booking/mycred-eventsmanager-pro.php:710
5272
- msgid "Cart & Checkout Cost"
5273
- msgstr "Coste de Carrito y Página de pago"
5274
-
5275
- #: ../addons/gateway/event-booking/mycred-eventsmanager-pro.php:713
5276
- #, php-format
5277
- msgid "Label for cost in %plural%"
5278
- msgstr "Etiqueta para coste en %plural%"
5279
-
5280
- #: ../addons/gateway/carts/mycred-wpecommerce.php:20 ..
5281
- #: addons/gateway/carts/mycred-marketpress.php:396
5282
- #, php-format
5283
- msgid "Payment for Order: #%order_id%"
5284
- msgstr "Pago por el Pedido"
5285
-
5286
- #: ../addons/gateway/carts/mycred-wpecommerce.php:23
5287
- msgid "Store sale"
5288
- msgstr "Venta desde la Tienda"
5289
-
5290
- #: ../addons/gateway/carts/mycred-wpecommerce.php:25
5291
- msgid "You must be logged in to use this gateway"
5292
- msgstr "Debe esta conectado para usar esta pasarela de pago."
5293
-
5294
- #: ../addons/gateway/carts/mycred-wpecommerce.php:26
5295
- msgid "Insufficient Funds."
5296
- msgstr "Fondos Insuficientes."
5297
-
5298
- #: ../addons/gateway/carts/mycred-wpecommerce.php:27
5299
- msgid "Deduct the amount from your balance."
5300
- msgstr "Restar la cantidad de su saldo."
5301
-
5302
- #: ../addons/gateway/carts/mycred-wpecommerce.php:107 ../addons/buy-
5303
- #: creds/gateways/bank-transfer.php:110
5304
- msgid "Item"
5305
- msgstr "Articulo"
5306
-
5307
- #: ../addons/gateway/carts/mycred-wpecommerce.php:128 ..
5308
- #: addons/gateway/carts/mycred-woocommerce.php:756
5309
- msgid "Your current balance"
5310
- msgstr "Tu saldo actual"
5311
-
5312
- #: ../addons/gateway/carts/mycred-wpecommerce.php:202
5313
- msgid "You can not use this gateway."
5314
- msgstr "No puedes usar esta pasarela de pago."
5315
-
5316
- #: ../addons/gateway/carts/mycred-wpecommerce.php:373
5317
- msgid "Log Template for Payments"
5318
- msgstr "Plantilla de Registro para Pagos"
5319
-
5320
- #: ../addons/gateway/carts/mycred-wpecommerce.php:390
5321
- #, php-format
5322
- msgid "How much is 1 %s worth in %s"
5323
- msgstr "Cuanto vale 1 %s en %s"
5324
-
5325
- #: ../addons/gateway/carts/mycred-wpecommerce.php:407
5326
- msgid "Instructions"
5327
- msgstr "Instrucciones"
5328
-
5329
- #: ../addons/gateway/carts/mycred-wpecommerce.php:408
5330
- msgid ""
5331
- "Optional instructions to show users when selecting this gateway. Leave empty "
5332
- "to hide."
5333
- msgstr ""
5334
- "Instrucciones opcionales para mostrar a los usuarios cuando se selecciona "
5335
- "esta pasarela. Deje el campo vacío para ocultarlo."
5336
-
5337
- #: ../addons/gateway/carts/mycred-wpecommerce.php:412
5338
- msgid "Message to show visitors who are not logged in."
5339
- msgstr "Muestra mensaje a los visitantes que no han iniciado sesión."
5340
-
5341
- #: ../addons/gateway/carts/mycred-wpecommerce.php:416
5342
- #, php-format
5343
- msgid ""
5344
- "Message to show when users does not have enough %plural% to pay using this "
5345
- "gateway."
5346
- msgstr ""
5347
- "Monstrar mensaje cuando los usuarios no tienen bastante %plural% con que "
5348
- "pagar usando esta pasarela de pago."
5349
-
5350
- #: ../addons/gateway/carts/mycred-woocommerce.php:30
5351
- msgid "Let users pay using their myCRED balance."
5352
- msgstr "Permite que los usuarios paguen mediante su saldo myCRED."
5353
-
5354
- #: ../addons/gateway/carts/mycred-woocommerce.php:84
5355
- msgid "Enable/Disable"
5356
- msgstr "Activar/Desactivar"
5357
-
5358
- #: ../addons/gateway/carts/mycred-woocommerce.php:86
5359
- msgid "Enable myCRED Payment"
5360
- msgstr "Activar Pago myCRED"
5361
-
5362
- #: ../addons/gateway/carts/mycred-woocommerce.php:88
5363
- msgid ""
5364
- "Users who are not logged in or excluded from using myCRED will not have "
5365
- "access to this gateway!"
5366
- msgstr ""
5367
- "¡Los usuarios que no estan ingresado o los que han sido excluido de utilizar "
5368
- "myCRED no tendran acceso a esta pasarela de pago!"
5369
-
5370
- #: ../addons/gateway/carts/mycred-woocommerce.php:93
5371
- msgid "Title to show for this payment option."
5372
- msgstr "Mostrar este titulo para esta opción de pago."
5373
-
5374
- #: ../addons/gateway/carts/mycred-woocommerce.php:94
5375
- msgid "Pay with myCRED"
5376
- msgstr "Paga con myCRED"
5377
-
5378
- #. not sure if it is "message to customers" or "message from customers"? current translation is "message to customers"
5379
- #: ../addons/gateway/carts/mycred-woocommerce.php:98
5380
- msgid "Customer Message"
5381
- msgstr "Mensaje a los Clientes"
5382
-
5383
- #: ../addons/gateway/carts/mycred-woocommerce.php:109 ..
5384
- #: addons/gateway/carts/mycred-woocommerce.php:181
5385
- msgid "Refund Log Template"
5386
- msgstr "Plantilla de Registro de Reembolsos"
5387
-
5388
- #: ../addons/gateway/carts/mycred-woocommerce.php:121
5389
- msgid "Select the point type users can use to pay."
5390
- msgstr "Elige el clase de punto que los usuarios pueden utilizar para realizar pagos."
5391
-
5392
- #: ../addons/gateway/carts/mycred-woocommerce.php:135 ..
5393
- #: addons/gateway/carts/mycred-marketpress.php:444
5394
- #, php-format
5395
- msgid "How much is 1 %_singular% worth in %currency%?"
5396
- msgstr "¿Cuanto vale un 1 %_singular% en %currency%?"
5397
-
5398
- #: ../addons/gateway/carts/mycred-woocommerce.php:147
5399
- msgid "Show Total"
5400
- msgstr "Mostrar Total"
5401
-
5402
- #: ../addons/gateway/carts/mycred-woocommerce.php:149
5403
- msgid "Show the final price in %_plural% ."
5404
- msgstr "Mostrar el precio final en %_plural%."
5405
-
5406
- #: ../addons/gateway/carts/mycred-woocommerce.php:152
5407
- msgid "Show in Cart"
5408
- msgstr "Mostrar en Carrito"
5409
-
5410
- #: ../addons/gateway/carts/mycred-woocommerce.php:153
5411
- msgid "Show on Checkout Page"
5412
- msgstr "Mostrar en la página de pago"
5413
-
5414
- #: ../addons/gateway/carts/mycred-woocommerce.php:154
5415
- msgid "Show in Cart and on Checkout Page"
5416
- msgstr "Mostrar en el Carrito y en la página de pago"
5417
-
5418
- #: ../addons/gateway/carts/mycred-woocommerce.php:161
5419
- msgid "Order Total in %_plural%"
5420
- msgstr "Total del Pedido en %_plural%"
5421
-
5422
- #: ../addons/gateway/carts/mycred-woocommerce.php:177
5423
- msgid "Log entry template for profit sharing."
5424
- msgstr "Plantilla para entradas de registro para el reparto de ganancias."
5425
-
5426
- #: ../addons/gateway/carts/mycred-woocommerce.php:183
5427
- msgid "Log entry template for refunds of profit shares."
5428
- msgstr "Plantilla de entrada de registro para reembolsos de reparto de ganancias."
5429
-
5430
- #: ../addons/gateway/carts/mycred-woocommerce.php:213
5431
- msgid "myCRED Payment"
5432
- msgstr "Pago myCRED"
5433
-
5434
- #: ../addons/gateway/carts/mycred-woocommerce.php:237
5435
- msgid "You must be logged in to pay with %_plural%"
5436
- msgstr "Debes haber iniciado sesión para pagar con %_plural%"
5437
-
5438
- #: ../addons/gateway/carts/mycred-woocommerce.php:245
5439
- msgid "You can not use this gateway. Please try a different payment option."
5440
- msgstr ""
5441
- "No puede usar esta pasarela de pago. Por favor prueba una opción de pago "
5442
- "diferente."
5443
-
5444
- #: ../addons/gateway/carts/mycred-woocommerce.php:262 ..
5445
- #: addons/gateway/carts/mycred-marketpress.php:402 ../addons/sell-
5446
- #: content/includes/mycred-sell-functions.php:501
5447
- msgid "Insufficient funds."
5448
- msgstr "Fondos Insuficientes."
5449
-
5450
- #: ../addons/gateway/carts/mycred-woocommerce.php:414
5451
- msgid "Your account has successfully been charged."
5452
- msgstr "Su cuenta ha sido cambiado con éxito."
5453
-
5454
- #: ../addons/gateway/carts/mycred-marketpress.php:192 ../addons/buy-
5455
- #: creds/abstracts/mycred-abstract-payment-gateway.php:427 ../addons/buy-
5456
- #: creds/gateways/bank-transfer.php:100
5457
- msgid "Payment"
5458
- msgstr "PAgo"
5459
-
5460
- #: ../addons/gateway/carts/mycred-marketpress.php:196 ..
5461
- #: addons/gateway/carts/mycred-marketpress.php:252
5462
- msgid "Go Back"
5463
- msgstr "Regresar"
5464
-
5465
- #: ../addons/gateway/carts/mycred-marketpress.php:201
5466
- msgid "will be deducted from your account."
5467
- msgstr "sera restado de su cuenta."
5468
-
5469
- #: ../addons/gateway/carts/mycred-marketpress.php:241
5470
- #, php-format
5471
- msgid ""
5472
- "Sorry, but you can not use this gateway as your account is excluded. Please "
5473
- "<a href=\"%s\">select a different payment method</a>."
5474
- msgstr ""
5475
- "Lo siento, pero no puede utilizar esta pasarela de pago porque excluye su "
5476
- "cuenta. Por favor <a href=\"%s\"> elige otro método de pago."
5477
-
5478
- #: ../addons/gateway/carts/mycred-marketpress.php:271
5479
- msgid "Paid"
5480
- msgstr "Pagado"
5481
-
5482
- #: ../addons/gateway/carts/mycred-marketpress.php:393
5483
- #, php-format
5484
- msgid "%_singular% Balance"
5485
- msgstr "%_singular% Saldo"
5486
-
5487
- #: ../addons/gateway/carts/mycred-marketpress.php:399
5488
- #, php-format
5489
- msgid "Product Sale: %post_title%"
5490
- msgstr "Venta de Producto: "
5491
-
5492
- #: ../addons/gateway/carts/mycred-marketpress.php:400
5493
- msgid "Pay using your account balance."
5494
- msgstr "Paga usando el saldo de su cuenta."
5495
-
5496
- #: ../addons/gateway/carts/mycred-marketpress.php:401
5497
- #, php-format
5498
- msgid ""
5499
- "TOTAL amount has been deducted from your account. Your current balance is: "
5500
- "%balance_f%"
5501
- msgstr "Cantidad TOTAL ha sido restado de su cuenta. Su saldo actual es:% balance_f%"
5502
-
5503
- #: ../addons/gateway/carts/mycred-marketpress.php:403
5504
- msgid ""
5505
- "You must be logged in to pay with %_plural%. Please <a "
5506
- "href=\"%login_url_here%\">login</a>."
5507
- msgstr ""
5508
- "Debes haber iniciado sesión para pagar con %_plural%. Por favor <a "
5509
- "href=\"%login_url_here%\">identifícate</a>."
5510
-
5511
- #: ../addons/gateway/carts/mycred-marketpress.php:411
5512
- #, php-format
5513
- msgid ""
5514
- "Let your users pay for items in their shopping cart using their %s Account. "
5515
- "Note! This gateway requires your users to be logged in when making a "
5516
- "purchase!"
5517
- msgstr ""
5518
- "Permita que sus usuarios paguen para los articulos en su carrito de compra "
5519
- "usando su %s Cuenta. ¡Nota! Esta pasarela de pago requiere que sus usuarios "
5520
- "esten ingresado para realizar una compra. "
5521
-
5522
- #: ../addons/gateway/carts/mycred-marketpress.php:414
5523
- msgid "Method Name"
5524
- msgstr "Nombre del Método"
5525
-
5526
- #: ../addons/gateway/carts/mycred-marketpress.php:416
5527
- msgid ""
5528
- "Enter a public name for this payment method that is displayed to users - No "
5529
- "HTML"
5530
- msgstr ""
5531
- "Introduzca el nombre público para este método de pago que se va a mostrar a "
5532
- "los usuarios - sin HTML"
5533
-
5534
- #: ../addons/gateway/carts/mycred-marketpress.php:421
5535
- msgid "Gateway Logo URL"
5536
- msgstr "URL del Logotipo de la Pasarela de Pago"
5537
-
5538
- #: ../addons/gateway/carts/mycred-marketpress.php:465
5539
- msgid "Percentage"
5540
- msgstr "Porcentaje"
5541
-
5542
- #: ../addons/gateway/carts/mycred-marketpress.php:484
5543
- msgid "Message to show when the user can not use this gateway."
5544
- msgstr "Monstrar mensaje cuando el usuario no puede usar esta pasarela de pago."
5545
-
5546
- #: ../addons/gateway/carts/mycred-marketpress.php:492
5547
- msgid "Message to show to buyers that are not logged in."
5548
- msgstr "Monstrar mensaje a los compradores que no han iniciado la sesión."
5549
-
5550
- #: ../addons/gateway/carts/mycred-marketpress.php:498
5551
- msgid "User Instructions"
5552
- msgstr "Instrucciones del Usuario"
5553
-
5554
- #: ../addons/gateway/carts/mycred-marketpress.php:500
5555
- msgid "Information to show users before payment."
5556
- msgstr "Mostrar esta información a los usuarios antes del pago."
5557
-
5558
- #: ../addons/gateway/carts/mycred-marketpress.php:506
5559
- msgid "Confirmation Information"
5560
- msgstr "Informe de Confirmación"
5561
-
5562
- #: ../addons/gateway/carts/mycred-marketpress.php:508
5563
- msgid "Information to display on the order confirmation page. - HTML allowed"
5564
- msgstr ""
5565
- "Información que se mostrará en la página de confirmación del pedido - se "
5566
- "permite HTML."
5567
-
5568
- #: ../addons/gateway/carts/mycred-marketpress.php:514
5569
- msgid "Order Confirmation Email"
5570
- msgstr "Email de Confirmación del Pedido"
5571
-
5572
- #: ../addons/gateway/carts/mycred-marketpress.php:516
5573
- #, php-format
5574
- msgid ""
5575
- "This is the email text to send to those who have made %s checkouts. It "
5576
- "overrides the default order checkout email. These codes will be replaced "
5577
- "with order details: CUSTOMERNAME, ORDERID, ORDERINFO, SHIPPINGINFO, "
5578
- "PAYMENTINFO, TOTAL, TRACKINGURL. No HTML allowed."
5579
- msgstr ""
5580
- "Esto es el texto del correo electrónico que se manda a los que hayan "
5581
- "finalizado %s compras. Anula al correo electrónico predeterminado al "
5582
- "finalizar el cajero. Estos códigos seran reemplazados con los detalles del "
5583
- "pedido: ORDERID, ORDERINFO, SHIPPINGINFO, PAYMENTINFO, TOTAL, TRACKINGURL. "
5584
- "No se permite el uso de HTML."
5585
-
5586
- #: ../addons/transfer/myCRED-addon-transfer.php:41
5587
- #, php-format
5588
- msgid "You do not have enough %plural% to send."
5589
- msgstr "No tienes bastante %plural% para mandar."
5590
-
5591
- #: ../addons/transfer/myCRED-addon-transfer.php:42
5592
- msgid "You have exceeded your %limit% transfer limit."
5593
- msgstr "Has excedido tu limite de transferencia de %limit%."
5594
-
5595
- #: ../addons/transfer/myCRED-addon-transfer.php:147
5596
- msgid "Transaction completed."
5597
- msgstr "Transacción Finalizada"
5598
-
5599
- #: ../addons/transfer/myCRED-addon-transfer.php:148
5600
- msgid "Security token could not be verified. Please contact your site administrator!"
5601
- msgstr ""
5602
- "No se pudo verificar el 'token' (código) de seguridad. ¡Por favor, póngase "
5603
- "en contacto con el administrador del sitio!"
5604
-
5605
- #: ../addons/transfer/myCRED-addon-transfer.php:149 ../addons/transfer/myCRED-
5606
- #: addon-transfer.php:156
5607
- msgid "Communications error. Please try again later."
5608
- msgstr "Error en comunicación. Por favor inténtelo de nuevo más tarde."
5609
-
5610
- #: ../addons/transfer/myCRED-addon-transfer.php:150
5611
- msgid "Recipient not found. Please try again."
5612
- msgstr "El recipiente no fuel encontrado. Por favor Inténtelo de nuevo."
5613
-
5614
- #: ../addons/transfer/myCRED-addon-transfer.php:151
5615
- msgid "Transaction declined by recipient."
5616
- msgstr "Transacción rechazada por el destinatario"
5617
-
5618
- #: ../addons/transfer/myCRED-addon-transfer.php:152
5619
- msgid "Incorrect amount. Please try again."
5620
- msgstr "Cantidad incorecta. Por favor inténtelo de nuevo."
5621
-
5622
- #: ../addons/transfer/myCRED-addon-transfer.php:153
5623
- msgid ""
5624
- "This myCRED Add-on has not yet been setup! No transfers are allowed until "
5625
- "this has been done!"
5626
- msgstr ""
5627
- "¡Esta Extensión de myCRED todavía no ha sido configurado! No se permite "
5628
- "transferencias hasta que se haga esto."
5629
-
5630
- #: ../addons/transfer/myCRED-addon-transfer.php:155
5631
- msgid "Transfer Limit exceeded."
5632
- msgstr "Límite de transferencia excedida."
5633
-
5634
- #: ../addons/transfer/myCRED-addon-transfer.php:360
5635
- msgid "No limits."
5636
- msgstr "Sin limite."
5637
-
5638
- #: ../addons/transfer/myCRED-addon-transfer.php:361
5639
- msgid "Impose daily limit."
5640
- msgstr "Imponer limite diario."
5641
-
5642
- #: ../addons/transfer/myCRED-addon-transfer.php:362
5643
- msgid "Impose weekly limit."
5644
- msgstr "Imponer limite semanal."
5645
-
5646
- #: ../addons/transfer/myCRED-addon-transfer.php:369
5647
- msgid "User Login (user_login)"
5648
- msgstr "Ingreso Usuario (user_login)"
5649
-
5650
- #: ../addons/transfer/myCRED-addon-transfer.php:370
5651
- msgid "User Email (user_email)"
5652
- msgstr "Correo Electrónico del Usuario (user_email)"
5653
-
5654
- #: ../addons/transfer/myCRED-addon-transfer.php:378
5655
- msgid "Transfers"
5656
- msgstr "Transferencias"
5657
-
5658
- #: ../addons/transfer/myCRED-addon-transfer.php:388
5659
- msgid "Select the point types that users can transfer."
5660
- msgstr "Elige el clase de punto que el usuario puede transferir."
5661
-
5662
- #: ../addons/transfer/myCRED-addon-transfer.php:398
5663
- msgid "Log template for sending"
5664
- msgstr "Plantilla de registros para transmitir"
5665
-
5666
- #: ../addons/transfer/myCRED-addon-transfer.php:405
5667
- msgid "Log template for receiving"
5668
- msgstr "Plantilla de registros para recibir"
5669
-
5670
- #: ../addons/transfer/myCRED-addon-transfer.php:412
5671
- msgid "Autofill Recipient"
5672
- msgstr "Destinatario del Relleno Automático"
5673
-
5674
- #: ../addons/transfer/myCRED-addon-transfer.php:426
5675
- msgid "Select what user details recipients should be autofilled by."
5676
- msgstr ""
5677
- "Selecciona cuales detalles del usuario al destinatario deben ser rellenados "
5678
- "automáticamente."
5679
-
5680
- #: ../addons/transfer/myCRED-addon-transfer.php:429
5681
- msgid "Reload"
5682
- msgstr "Recargar"
5683
-
5684
- #: ../addons/transfer/myCRED-addon-transfer.php:432
5685
- msgid "Reload page on successful transfers."
5686
- msgstr "Actualizar la pagina despues de transferencias finalizadas."
5687
-
5688
- #: ../addons/transfer/myCRED-addon-transfer.php:456
5689
- msgid "Limit Amount"
5690
- msgstr "Limitar la Cantidad"
5691
-
5692
- #: ../addons/transfer/includes/mycred-transfer-widgets.php:21
5693
- #, php-format
5694
- msgid "(%s) Transfer"
5695
- msgstr "(%s) Transfererir"
5696
-
5697
- #: ../addons/transfer/includes/mycred-transfer-widgets.php:24
5698
- msgid "Allow transfers between users."
5699
- msgstr "Permitir transferencias entre usuarios."
5700
-
5701
- #: ../addons/transfer/includes/mycred-transfer-widgets.php:87
5702
- msgid "Show users balance"
5703
- msgstr "Mostrar el saldo de usuarios"
5704
-
5705
- #: ../addons/transfer/includes/mycred-transfer-widgets.php:90
5706
- msgid "Show users limit"
5707
- msgstr "Mostrar los límites de usuarios"
5708
-
5709
- #: ../addons/transfer/includes/mycred-transfer-shortcodes.php:152
5710
- msgid "username"
5711
- msgstr "nombre de usuario"
5712
-
5713
- #: ../addons/transfer/includes/mycred-transfer-shortcodes.php:155
5714
- msgid "email"
5715
- msgstr "correo electrónico"
5716
-
5717
- #. is this recipients plural or recipient's with an apostrophe missing?
5718
- #: ../addons/transfer/includes/mycred-transfer-shortcodes.php:157
5719
- #, php-format
5720
- msgid "recipients %s"
5721
- msgstr "destinatarios %s"
5722
-
5723
- #: ../addons/ranks/myCRED-addon-ranks.php:218 ../addons/ranks/myCRED-addon-ranks.
5724
- #: php:227 ../addons/ranks/myCRED-addon-ranks.php:237 ../addons/ranks/myCRED-
5725
- #: addon-ranks.php:326 ../addons/ranks/myCRED-addon-ranks.php:327 ..
5726
- #: addons/ranks/myCRED-addon-ranks.php:699 ../addons/ranks/myCRED-addon-ranks.
5727
- #: php:1323 ../addons/ranks/myCRED-addon-ranks.php:1613
5728
- msgid "Ranks"
5729
- msgstr "Rangos"
5730
-
5731
- #: ../addons/ranks/myCRED-addon-ranks.php:222 ../addons/ranks/myCRED-addon-ranks.
5732
- #: php:699 ../addons/ranks/myCRED-addon-ranks.php:848 ../addons/ranks/myCRED-
5733
- #: addon-ranks.php:851 ../addons/ranks/myCRED-addon-ranks.php:869
5734
- msgid "Rank"
5735
- msgstr "Rango"
5736
-
5737
- #: ../addons/ranks/myCRED-addon-ranks.php:225
5738
- msgid "Edit Rank"
5739
- msgstr "Editar Rango"
5740
-
5741
- #: ../addons/ranks/myCRED-addon-ranks.php:226
5742
- msgid "New Rank"
5743
- msgstr "Nuevo Rango"
5744
-
5745
- #: ../addons/ranks/myCRED-addon-ranks.php:228
5746
- msgid "View Rank"
5747
- msgstr "Ver Rango"
5748
-
5749
- #: ../addons/ranks/myCRED-addon-ranks.php:229
5750
- msgid "Search Ranks"
5751
- msgstr "Búsqueda de Rangos"
5752
-
5753
- #: ../addons/ranks/myCRED-addon-ranks.php:234 ../addons/ranks/myCRED-addon-ranks.
5754
- #: php:1256
5755
- msgid "No ranks found"
5756
- msgstr "Ningun rango encontrado"
5757
-
5758
- #: ../addons/ranks/myCRED-addon-ranks.php:235
5759
- msgid "No ranks found in Trash"
5760
- msgstr "Ningun rango encontrao el la papelera"
5761
-
5762
- #: ../addons/ranks/myCRED-addon-ranks.php:283 ../addons/ranks/myCRED-addon-ranks.
5763
- #: php:284 ../addons/ranks/myCRED-addon-ranks.php:285 ../addons/ranks/myCRED-
5764
- #: addon-ranks.php:286 ../addons/ranks/myCRED-addon-ranks.php:287 ..
5765
- #: addons/ranks/myCRED-addon-ranks.php:290 ../addons/ranks/myCRED-addon-ranks.
5766
- #: php:291
5767
- msgid "Rank Updated."
5768
- msgstr "Rango Actualizado."
5769
-
5770
- #: ../addons/ranks/myCRED-addon-ranks.php:452
5771
- #, php-format
5772
- msgid "Completed - Total of %d users effected"
5773
- msgstr "Completado - Un total %d usuarios afectados"
5774
-
5775
- #: ../addons/ranks/myCRED-addon-ranks.php:956
5776
- msgid "Warning! All ranks will be deleted! This can not be undone!"
5777
- msgstr "¡Advertencia! ¡Todos los rangos seran borrados! ¡No se puede deshacer esto!"
5778
-
5779
- #: ../addons/ranks/myCRED-addon-ranks.php:957
5780
- msgid "Are you sure you want to re-assign user ranks?"
5781
- msgstr "Esta seguro que quieres reasignar rangos de los usuarios?"
5782
-
5783
- #: ../addons/ranks/myCRED-addon-ranks.php:1042 ../addons/ranks/myCRED-addon-ranks.
5784
- #: php:1143
5785
- msgid "Rank Title"
5786
- msgstr "Titulo de Rango"
5787
-
5788
- #: ../addons/ranks/myCRED-addon-ranks.php:1043
5789
- msgid "Logo"
5790
- msgstr "Logotipo"
5791
-
5792
- #: ../addons/ranks/myCRED-addon-ranks.php:1044 ../addons/badges/myCRED-addon-
5793
- #: badges.php:828 ../addons/badges/myCRED-addon-badges.php:829
5794
- msgid "Requirement"
5795
- msgstr "Requisito"
5796
-
5797
- #: ../addons/ranks/myCRED-addon-ranks.php:1070
5798
- msgid "No Logo Set"
5799
- msgstr "No hay Logotipo Configurado"
5800
-
5801
- #: ../addons/ranks/myCRED-addon-ranks.php:1085 ../addons/ranks/myCRED-addon-ranks.
5802
- #: php:1090
5803
- msgid "Any Value"
5804
- msgstr "Cualquier Valor"
5805
-
5806
- #: ../addons/ranks/myCRED-addon-ranks.php:1087 ../addons/buy-
5807
- #: creds/modules/buycred-module-core.php:303
5808
- #, php-format
5809
- msgid "Minimum %plural%"
5810
- msgstr "Minimo %_plural%"
5811
-
5812
- #: ../addons/ranks/myCRED-addon-ranks.php:1092
5813
- #, php-format
5814
- msgid "Maximum %plural%"
5815
- msgstr "Maximo %plural%"
5816
-
5817
- #: ../addons/ranks/myCRED-addon-ranks.php:1245 ../addons/ranks/myCRED-addon-ranks.
5818
- #: php:1246
5819
- msgid "Not Set"
5820
- msgstr "No Configurado"
5821
-
5822
- #: ../addons/ranks/myCRED-addon-ranks.php:1328
5823
- msgid "Rank Features"
5824
- msgstr "Caracteristicas de los Rangos"
5825
-
5826
- #: ../addons/ranks/myCRED-addon-ranks.php:1332
5827
- #, php-format
5828
- msgid "%plural% requirement"
5829
- msgstr "%plural% requisito"
5830
-
5831
- #: ../addons/ranks/myCRED-addon-ranks.php:1335
5832
- msgid "Content"
5833
- msgstr "Contenido"
5834
-
5835
- #: ../addons/ranks/myCRED-addon-ranks.php:1337
5836
- msgid "Excerpt"
5837
- msgstr "Extracto"
5838
-
5839
- #: ../addons/ranks/myCRED-addon-ranks.php:1339
5840
- msgid "Comments"
5841
- msgstr "Comentario"
5842
-
5843
- #: ../addons/ranks/myCRED-addon-ranks.php:1341
5844
- msgid "Page Attributes"
5845
- msgstr "Atributos de Página"
5846
-
5847
- #: ../addons/ranks/myCRED-addon-ranks.php:1343
5848
- msgid "Custom Fields"
5849
- msgstr "Campo Personalizado"
5850
-
5851
- #: ../addons/ranks/myCRED-addon-ranks.php:1347
5852
- msgid "Public"
5853
- msgstr "Público"
5854
-
5855
- #. This is not clear, especially the second sentence (fragment)!
5856
- #: ../addons/ranks/myCRED-addon-ranks.php:1351
5857
- msgid ""
5858
- "If you want to create a template archive for each rank, you must select to "
5859
- "have ranks public. Defaults to disabled."
5860
- msgstr ""
5861
- "Si desea crear un archivo de plantilla para cada rango, debe seleccionar que "
5862
- "los rangos sean público. Los valores predeterminados desactivado."
5863
-
5864
- #: ../addons/ranks/myCRED-addon-ranks.php:1354
5865
- msgid "Archive URL"
5866
- msgstr "URL del Archivo"
5867
-
5868
- #: ../addons/ranks/myCRED-addon-ranks.php:1358
5869
- msgid "Ignored if Ranks are not public"
5870
- msgstr "Sera Ingnorado si los Rangos no son Pulicos"
5871
-
5872
- #. not sure if this is order, as in ordering pizza or order as in rank, organization
5873
- #: ../addons/ranks/myCRED-addon-ranks.php:1361
5874
- msgid "Display Order"
5875
- msgstr "Orden de Visualización"
5876
-
5877
- #: ../addons/ranks/myCRED-addon-ranks.php:1369
5878
- msgid "Ascending - Lowest rank to highest"
5879
- msgstr "Ascendente - Rango más bajo a lo más alto"
5880
-
5881
- #: ../addons/ranks/myCRED-addon-ranks.php:1370
5882
- msgid "Descending - Highest rank to lowest"
5883
- msgstr "Descendiente - Rango más alto al más bajo"
5884
-
5885
- #: ../addons/ranks/myCRED-addon-ranks.php:1381
5886
- msgid ""
5887
- "Select in what order ranks should be displayed in your admin area and/or "
5888
- "front if ranks are \"Public\""
5889
- msgstr ""
5890
- "Elige en que orden se debe mostrar los rangos en tu area de administrador "
5891
- "y/o en el frente si los rangos son \"Público\""
5892
-
5893
- #: ../addons/ranks/myCRED-addon-ranks.php:1387
5894
- msgid "Rank Basis"
5895
- msgstr "Base de Rango"
5896
-
5897
- #: ../addons/ranks/myCRED-addon-ranks.php:1390
5898
- msgid "Users are ranked according to their current balance."
5899
- msgstr "Los usuarios se clasifican según su saldo actual."
5900
-
5901
- #: ../addons/ranks/myCRED-addon-ranks.php:1393
5902
- msgid ""
5903
- "Users are ranked according to the total amount of %_plural% they have "
5904
- "accumulated."
5905
- msgstr ""
5906
- "Los usuarios se clasifican según la cantidad total de %_plural% que han "
5907
- "acumulado."
5908
-
5909
- #: ../addons/ranks/myCRED-addon-ranks.php:1397 ../addons/ranks/myCRED-addon-ranks.
5910
- #: php:1402
5911
- msgid "Calculate Totals"
5912
- msgstr "Calcular Totales"
5913
-
5914
- #: ../addons/ranks/myCRED-addon-ranks.php:1400
5915
- msgid ""
5916
- "Once a users total has been calculated, they will be assigned to their "
5917
- "appropriate roles. For this reason, it is highly recommended that you first "
5918
- "setup your ranks!"
5919
- msgstr ""
5920
- "Una vez que la suma del usuario haya sido calculado, sus roles "
5921
- "corespondientes seran asignados. ¡Por esta razón, se recomienda altamente "
5922
- "que primero configures los rangos!"
5923
-
5924
- #: ../addons/ranks/myCRED-addon-ranks.php:1401
5925
- msgid ""
5926
- "Depending on your log size and number of users this process may take a while."
5927
- " Please do not leave, click \"Update Settings\" or re-fresh this page until "
5928
- "this is completed!"
5929
- msgstr ""
5930
- "Segun el tamaño de registro y los numeros de usuarios este proceso puede "
5931
- "llevar un rato. ¡Por favor no abandone esta pagina, haga click sobre "
5932
- "\"Actualizar Configuraciones\" o refrescar la pagina hasta que se haya "
5933
- "completado!"
5934
-
5935
- #: ../addons/ranks/myCRED-addon-ranks.php:1419
5936
- msgid "Include in Profile Header."
5937
- msgstr "Incluir en Encabezado del Perfil"
5938
-
5939
- #: ../addons/ranks/myCRED-addon-ranks.php:1421
5940
- msgid "Include under the \"Profile\" tab and Profile Header."
5941
- msgstr "Incluir bajo la pestanã \"Perfil\" y Encabezado de Perfil."
5942
-
5943
- #: ../addons/ranks/myCRED-addon-ranks.php:1425
5944
- msgid "Rank in BuddyPress"
5945
- msgstr "Rango en BuddyPress"
5946
-
5947
- #: ../addons/ranks/myCRED-addon-ranks.php:1465 ../addons/badges/myCRED-addon-
5948
- #: badges.php:1183
5949
- msgid "Include in Profile"
5950
- msgstr "Incluir en el Perfil"
5951
-
5952
- #: ../addons/ranks/myCRED-addon-ranks.php:1549
5953
- msgid "Script Communication Error"
5954
- msgstr "Error del Script de Comunicación"
5955
-
5956
- #: ../addons/ranks/myCRED-addon-ranks.php:1616
5957
- msgid "User Meta Key"
5958
- msgstr "Clave Meta del Usuario"
5959
-
5960
- #: ../addons/ranks/myCRED-addon-ranks.php:1620
5961
- msgid "No. of ranks"
5962
- msgstr "Numero de Rangos"
5963
-
5964
- #: ../addons/ranks/myCRED-addon-ranks.php:1625
5965
- msgid "Remove All Ranks"
5966
- msgstr "Quitar todos los Rangos"
5967
-
5968
- #: ../addons/ranks/myCRED-addon-ranks.php:1625
5969
- msgid "Assign Ranks to Users"
5970
- msgstr "Asignar Rango a los Usuarios"
5971
-
5972
- #: ../addons/ranks/includes/mycred-rank-shortcodes.php:128 ..
5973
- #: addons/ranks/includes/mycred-rank-shortcodes.php:222
5974
- msgid "No users found with this rank"
5975
- msgstr "Ningun usuario encontrado con este rango"
5976
-
5977
- #: ../addons/ranks/includes/mycred-rank-shortcodes.php:135
5978
- msgid "Rank ID is required!"
5979
- msgstr "¡ID de Rango obligatorio!"
5980
-
5981
- #: ../addons/notifications/myCRED-addon-notifications.php:191
5982
- msgid "Notifications"
5983
- msgstr "Notificaciones"
5984
-
5985
- #: ../addons/notifications/myCRED-addon-notifications.php:193
5986
- msgid "Styling"
5987
- msgstr "Diseño/Estilo"
5988
-
5989
- #: ../addons/notifications/myCRED-addon-notifications.php:196
5990
- msgid "Use the included CSS Styling for notifications."
5991
- msgstr "Utilice el Estilo CSS incluido para notificaciones."
5992
-
5993
- #: ../addons/notifications/myCRED-addon-notifications.php:203
5994
- #, php-format
5995
- msgid "Use %entry% to show the log entry in the notice and %amount% for the amount."
5996
- msgstr ""
5997
- "Utiliza %entry% para mostrar la entrada de registro en el aviso y %amount% "
5998
- "para la cantidad."
5999
-
6000
- #: ../addons/notifications/myCRED-addon-notifications.php:206
6001
- msgid "Transient Lifespan"
6002
- msgstr "Duración de Transitorio"
6003
-
6004
- #: ../addons/notifications/myCRED-addon-notifications.php:210
6005
- msgid ""
6006
- "The number of days a users notification is saved before being automatically "
6007
- "deleted."
6008
- msgstr ""
6009
- "Cuantos dias una notificación del usuario se guarda antes de automáticamente "
6010
- "borrarse."
6011
-
6012
- #: ../addons/notifications/myCRED-addon-notifications.php:213
6013
- msgid "Duration"
6014
- msgstr "Duracion"
6015
-
6016
- #: ../addons/email-notices/myCRED-addon-email-notices.php:167 ../addons/email-
6017
- #: notices/myCRED-addon-email-notices.php:168 ../addons/email-notices/myCRED-
6018
- #: addon-email-notices.php:169 ../addons/email-notices/myCRED-addon-email-notices.
6019
- #: php:170 ../addons/email-notices/myCRED-addon-email-notices.php:173 ..
6020
- #: addons/email-notices/myCRED-addon-email-notices.php:174 ../addons/email-
6021
- #: notices/myCRED-addon-email-notices.php:175 ../addons/email-notices/myCRED-
6022
- #: addon-email-notices.php:176
6023
- msgid "Email Notice Updated."
6024
- msgstr "Aviso atraves de correo electrónico Actualizado."
6025
-
6026
- #: ../addons/email-notices/myCRED-addon-email-notices.php:254 ../addons/email-
6027
- #: notices/myCRED-addon-email-notices.php:271
6028
- msgid "Email Subject"
6029
- msgstr "Asunto del Correo Electrónico"
6030
-
6031
- #: ../addons/email-notices/myCRED-addon-email-notices.php:298
6032
- msgid "Not Active"
6033
- msgstr "No esta Activo"
6034
-
6035
- #: ../addons/email-notices/myCRED-addon-email-notices.php:301
6036
- #, php-format
6037
- msgid "Scheduled:<br /><strong>%1$s</strong>"
6038
- msgstr "Programada:<br /><strong>%1$s</strong>"
6039
-
6040
- #: ../addons/email-notices/myCRED-addon-email-notices.php:308
6041
- #, php-format
6042
- msgid "Active - Last run:<br /><strong>%1$s</strong>"
6043
- msgstr "Activo - Ultima ejecución:<br /><strong>%1$s</strong>"
6044
-
6045
- #: ../addons/email-notices/myCRED-addon-email-notices.php:321
6046
- msgid "Email is sent when"
6047
- msgstr "el Correo Electrónico se envia cuando"
6048
-
6049
- #: ../addons/email-notices/myCRED-addon-email-notices.php:323
6050
- msgid "Missing instance for this notice!"
6051
- msgstr "¡Falta una instancia para este aviso!"
6052
-
6053
- #: ../addons/email-notices/myCRED-addon-email-notices.php:332 ../addons/email-
6054
- #: notices/myCRED-addon-email-notices.php:334 ../addons/email-notices/myCRED-
6055
- #: addon-email-notices.php:336
6056
- msgid "Sent To"
6057
- msgstr "Enviado A:"
6058
-
6059
- #: ../addons/email-notices/myCRED-addon-email-notices.php:334 ../addons/email-
6060
- #: notices/myCRED-addon-email-notices.php:568
6061
- msgid "Administrator"
6062
- msgstr "Administrador"
6063
-
6064
- #: ../addons/email-notices/myCRED-addon-email-notices.php:336
6065
- msgid "Both Administrator and User"
6066
- msgstr "Tanto Administrador como Usuario"
6067
-
6068
- #: ../addons/email-notices/myCRED-addon-email-notices.php:384 ../addons/email-
6069
- #: notices/myCRED-addon-email-notices.php:1394
6070
- msgid "Email Settings"
6071
- msgstr "Configuraciones de Correo Electrónico"
6072
-
6073
- #: ../addons/email-notices/myCRED-addon-email-notices.php:393
6074
- msgid "Available Template Tags"
6075
- msgstr "Etiquetas (tags) de Plantilla Disponibles"
6076
-
6077
- #: ../addons/email-notices/myCRED-addon-email-notices.php:404
6078
- msgid "Email Header"
6079
- msgstr "Encabezado del Correo Electrónico"
6080
-
6081
- #: ../addons/email-notices/myCRED-addon-email-notices.php:490
6082
- msgid ""
6083
- "Once a notice is \"published\" it becomes active! Select \"Save Draft\" if you "
6084
- "are not yet ready to use this email notice!"
6085
- msgstr ""
6086
- "¡Una vez que un aviso sea \"publicado\" se activa! ¡Elige \"Guardar Borrador\" "
6087
- "si aun no estás listo para utilizar este aviso por email!"
6088
-
6089
- #: ../addons/email-notices/myCRED-addon-email-notices.php:492
6090
- #, php-format
6091
- msgid "This notice will become active on:<br /><strong>%1$s</strong>"
6092
- msgstr "Este aviso se activará en:<br /><strong>%1$s</strong>"
6093
-
6094
- #: ../addons/email-notices/myCRED-addon-email-notices.php:494
6095
- msgid "This email notice is active."
6096
- msgstr "Esta notificación de correo electrónico esta activada."
6097
-
6098
- #: ../addons/email-notices/myCRED-addon-email-notices.php:520
6099
- msgid "Send this email notice when..."
6100
- msgstr "Envia este aviso por correo electrónico cuando..."
6101
-
6102
- #: ../addons/email-notices/myCRED-addon-email-notices.php:563
6103
- msgid "Recipient:"
6104
- msgstr "Destinatario:"
6105
-
6106
- #: ../addons/email-notices/myCRED-addon-email-notices.php:571
6107
- msgid "Both"
6108
- msgstr "Ambos"
6109
-
6110
- #: ../addons/email-notices/myCRED-addon-email-notices.php:607 ../addons/email-
6111
- #: notices/myCRED-addon-email-notices.php:1397
6112
- msgid "Senders Name:"
6113
- msgstr "Nombre del Remitente"
6114
-
6115
- #: ../addons/email-notices/myCRED-addon-email-notices.php:611 ../addons/email-
6116
- #: notices/myCRED-addon-email-notices.php:1401
6117
- msgid "Senders Email:"
6118
- msgstr "Correo Electrónico del Remitente:"
6119
-
6120
- #: ../addons/email-notices/myCRED-addon-email-notices.php:615
6121
- msgid "Reply-To Email:"
6122
- msgstr "Responder-A Correo Electrónico:"
6123
-
6124
- #: ../addons/email-notices/myCRED-addon-email-notices.php:640
6125
- msgid "CSS Styling"
6126
- msgstr "Estilo CSS"
6127
-
6128
- #: ../addons/email-notices/myCRED-addon-email-notices.php:663
6129
- msgid "Site Related"
6130
- msgstr "Relacionado al Sitio"
6131
-
6132
- #: ../addons/email-notices/myCRED-addon-email-notices.php:669
6133
- msgid "Your websites title"
6134
- msgstr "Titulo de tu pagina web"
6135
-
6136
- #: ../addons/email-notices/myCRED-addon-email-notices.php:677
6137
- msgid "Your websites address"
6138
- msgstr "Dirección de tu pagina web"
6139
-
6140
- #: ../addons/email-notices/myCRED-addon-email-notices.php:685
6141
- msgid "Your websites tagline (description)"
6142
- msgstr "La descripción de tu sitio web (lema o eslogan)"
6143
-
6144
- #: ../addons/email-notices/myCRED-addon-email-notices.php:693
6145
- msgid "Your websites admin email"
6146
- msgstr "El correo electrónico de admin para tu pagina web"
6147
-
6148
- #: ../addons/email-notices/myCRED-addon-email-notices.php:701
6149
- msgid "Total number of blog members"
6150
- msgstr "Número total de miembros del blog"
6151
-
6152
- #. can also be users as in plural, I've assumed it is user singular with a missing apostrophe
6153
- #: ../addons/email-notices/myCRED-addon-email-notices.php:862
6154
- msgid "users balance changes"
6155
- msgstr "el saldo de usuario cambia"
6156
-
6157
- #: ../addons/email-notices/myCRED-addon-email-notices.php:863
6158
- msgid "user gains %_plural%"
6159
- msgstr "usuario gana %_plural%"
6160
-
6161
- #: ../addons/email-notices/myCRED-addon-email-notices.php:864
6162
- msgid "user lose %_plural%"
6163
- msgstr "usuario pierde %_plural%"
6164
-
6165
- #: ../addons/email-notices/myCRED-addon-email-notices.php:865
6166
- msgid "users balance reaches zero"
6167
- msgstr "saldo de usuario llega a cero"
6168
-
6169
- #. can also be users as in plural, I've assumed it is user singular with a missing apostrophe
6170
- #: ../addons/email-notices/myCRED-addon-email-notices.php:866
6171
- msgid "users balance goes minus"
6172
- msgstr "el saldo de usuario cae a negativo"
6173
-
6174
- #: ../addons/email-notices/myCRED-addon-email-notices.php:880
6175
- msgid "Sell Content Add-on"
6176
- msgstr "Extensión para Vender Contenido"
6177
-
6178
- #: ../addons/email-notices/myCRED-addon-email-notices.php:881
6179
- msgid "user buys content"
6180
- msgstr "usuario compra contenido"
6181
-
6182
- #: ../addons/email-notices/myCRED-addon-email-notices.php:882
6183
- msgid "authors content gets sold"
6184
- msgstr "el contenido del autor sera vendido"
6185
-
6186
- #: ../addons/email-notices/myCRED-addon-email-notices.php:889
6187
- msgid "buyCREDs Add-on"
6188
- msgstr "Extensión de compraCREDs"
6189
-
6190
- #: ../addons/email-notices/myCRED-addon-email-notices.php:890
6191
- msgid "user buys %_plural%"
6192
- msgstr "usuario compra %_plural%"
6193
-
6194
- #: ../addons/email-notices/myCRED-addon-email-notices.php:897
6195
- msgid "Transfer Add-on"
6196
- msgstr "Extensión de Transferencias"
6197
-
6198
- #: ../addons/email-notices/myCRED-addon-email-notices.php:898
6199
- msgid "user sends %_plural%"
6200
- msgstr "usuario manda %_plural%"
6201
-
6202
- #: ../addons/email-notices/myCRED-addon-email-notices.php:899
6203
- msgid "user receives %_plural%"
6204
- msgstr "usuario recibe %_plural%"
6205
-
6206
- #: ../addons/email-notices/myCRED-addon-email-notices.php:906
6207
- msgid "Ranks Add-on"
6208
- msgstr "Extensión de Rangos"
6209
-
6210
- #: ../addons/email-notices/myCRED-addon-email-notices.php:907
6211
- msgid "user is demoted"
6212
- msgstr "se ha degrado al usuario"
6213
-
6214
- #: ../addons/email-notices/myCRED-addon-email-notices.php:908
6215
- msgid "user is promoted"
6216
- msgstr "se ha promovido al usuario"
6217
-
6218
- #: ../addons/email-notices/myCRED-addon-email-notices.php:1329 ..
6219
- #: addons/coupons/myCRED-addon-coupons.php:112
6220
- msgid "Email Notices"
6221
- msgstr "Avisos por Correo Electrónico"
6222
-
6223
- #: ../addons/email-notices/myCRED-addon-email-notices.php:1331
6224
- msgid ""
6225
- "Settings that apply to all email notices and can not be overridden for "
6226
- "individual emails."
6227
- msgstr ""
6228
- "Ajustes que se aplica a todos los correos electrónicos y que no seran "
6229
- "anulados para correos electronicos especificos."
6230
-
6231
- #: ../addons/email-notices/myCRED-addon-email-notices.php:1332
6232
- msgid "Email Format"
6233
- msgstr "Formato de Correo Electrónico"
6234
-
6235
- #: ../addons/email-notices/myCRED-addon-email-notices.php:1336
6236
- msgid "Plain text emails only."
6237
- msgstr "Correo electrónico usando texto sin formato."
6238
-
6239
- #: ../addons/email-notices/myCRED-addon-email-notices.php:1340
6240
- msgid "HTML or Plain text emails."
6241
- msgstr "Correo electrónico usando HTML o texto sin formato."
6242
-
6243
- #: ../addons/email-notices/myCRED-addon-email-notices.php:1343
6244
- msgid "Filters"
6245
- msgstr "Filtros"
6246
-
6247
- #: ../addons/email-notices/myCRED-addon-email-notices.php:1347
6248
- msgid ""
6249
- "Allow WordPress and Third Party Plugins to filter the email subject before "
6250
- "an email is sent."
6251
- msgstr ""
6252
- "Permite a Wordpress y a los Plugins de terceros a filtrar el asunto del "
6253
- "correo electrónico antes de enviarlo."
6254
-
6255
- #: ../addons/email-notices/myCRED-addon-email-notices.php:1351
6256
- msgid ""
6257
- "Allow WordPress and Third Party Plugins to filter the email content before "
6258
- "an email is sent."
6259
- msgstr ""
6260
- "Permite a Wordpress y a los Plugins de terceros a filtrar el contenido del "
6261
- "correo electrónico antes de enviarlo."
6262
-
6263
- #: ../addons/email-notices/myCRED-addon-email-notices.php:1357 ../addons/email-
6264
- #: notices/myCRED-addon-email-notices.php:1364
6265
- msgid "Email Schedule"
6266
- msgstr "Itinerario de Emails"
6267
-
6268
- #: ../addons/email-notices/myCRED-addon-email-notices.php:1359
6269
- msgid "WordPress Cron is disabled. Emails will be sent immediately."
6270
- msgstr "WordPress Cron esta desactivado. Los emails seran mandados inmediatamente."
6271
-
6272
- #: ../addons/email-notices/myCRED-addon-email-notices.php:1368
6273
- msgid "Send emails immediately"
6274
- msgstr "Mandar emails inmediatamente"
6275
-
6276
- #: ../addons/email-notices/myCRED-addon-email-notices.php:1372
6277
- msgid "Send emails once an hour"
6278
- msgstr "Mandar emails una vez a la hora"
6279
-
6280
- #: ../addons/email-notices/myCRED-addon-email-notices.php:1376
6281
- msgid "Send emails once a day"
6282
- msgstr "Mandar emails una vez al dia"
6283
-
6284
- #: ../addons/email-notices/myCRED-addon-email-notices.php:1379
6285
- msgid "Subscriptions"
6286
- msgstr "Suscripciones"
6287
-
6288
- #: ../addons/email-notices/myCRED-addon-email-notices.php:1381
6289
- #, php-format
6290
- msgid ""
6291
- "Use the %s shortcode to allow users to subscribe / unsubscribe to email "
6292
- "updates."
6293
- msgstr ""
6294
- "Utilize el %s codigo corto para permitir que los usuarios suscriben o darsen "
6295
- "de baja a informes vía correo electrónico."
6296
-
6297
- #: ../addons/email-notices/myCRED-addon-email-notices.php:1386
6298
- msgid "SMTP Override"
6299
- msgstr "Invalidar SMTP"
6300
-
6301
- #: ../addons/email-notices/myCRED-addon-email-notices.php:1390
6302
- msgid ""
6303
- "SMTP Debug. Enable if you are experiencing issues with wp_mail() or if you "
6304
- "use a SMTP plugin for emails."
6305
- msgstr ""
6306
- "Depurar SMTP. Habilitar si hay erores con wp_mail() o si utiliza un plugin "
6307
- "SMTP para email."
6308
-
6309
- #: ../addons/email-notices/myCRED-addon-email-notices.php:1393
6310
- msgid ""
6311
- "Default email settings. These settings can be individually overridden when "
6312
- "editing emails."
6313
- msgstr ""
6314
- "Configuraciones predeterminadas para correos electrónicos. Estos ajustes "
6315
- "pueden ser anulado individualmente cuando se edita correos electrónicos."
6316
-
6317
- #: ../addons/email-notices/myCRED-addon-email-notices.php:1405
6318
- msgid "Reply-To:"
6319
- msgstr "Responder-A:"
6320
-
6321
- #: ../addons/email-notices/myCRED-addon-email-notices.php:1409
6322
- msgid "Default Email Content"
6323
- msgstr "Contenido de Correo Electrónico Predefinido"
6324
-
6325
- #: ../addons/email-notices/myCRED-addon-email-notices.php:1413
6326
- msgid "Default email content."
6327
- msgstr "Contenido de correo electrónico predefinido."
6328
-
6329
- #: ../addons/email-notices/myCRED-addon-email-notices.php:1416
6330
- msgid "Default Email Styling"
6331
- msgstr "Estilo de Correo Electrónico Predefinido"
6332
-
6333
- #: ../addons/email-notices/myCRED-addon-email-notices.php:1420
6334
- msgid "Ignored if HTML is not allowed in emails."
6335
- msgstr "Sera ignorado si no se permite HTML en los correos electrónicos."
6336
-
6337
- #: ../addons/email-notices/myCRED-addon-email-notices.php:1520
6338
- msgid "Unsubscribe"
6339
- msgstr "Cancelar la Suscripción"
6340
-
6341
- #: ../addons/email-notices/myCRED-addon-email-notices.php:1521
6342
- msgid "Email Notice"
6343
- msgstr "Aviso por Correo Electrónico"
6344
-
6345
- #: ../addons/email-notices/myCRED-addon-email-notices.php:1542
6346
- msgid "There are no email notifications yet."
6347
- msgstr "Todavía no hay notificaciones de email."
6348
-
6349
- #: ../addons/email-notices/myCRED-addon-email-notices.php:1549 ../addons/buy-
6350
- #: creds/modules/buycred-module-pending.php:483
6351
- msgid "Save Changes"
6352
- msgstr "Guardar Cambios"
6353
-
6354
- #: ../addons/badges/myCRED-addon-badges.php:148 ../addons/badges/myCRED-addon-
6355
- #: badges.php:154 ../addons/badges/myCRED-addon-badges.php:160 ..
6356
- #: addons/badges/myCRED-addon-badges.php:295 ../addons/badges/myCRED-addon-
6357
- #: badges.php:296 ../addons/badges/myCRED-addon-badges.php:1134 ..
6358
- #: addons/badges/myCRED-addon-badges.php:1256 ../addons/badges/myCRED-addon-
6359
- #: badges.php:1259
6360
- msgid "Badges"
6361
- msgstr "Insignias"
6362
-
6363
- #: ../addons/badges/myCRED-addon-badges.php:149
6364
- msgid "Badge"
6365
- msgstr "Insignia"
6366
-
6367
- #: ../addons/badges/myCRED-addon-badges.php:152
6368
- msgid "Edit Badge"
6369
- msgstr "Editar Insignia"
6370
-
6371
- #: ../addons/badges/myCRED-addon-badges.php:153
6372
- msgid "New Badge"
6373
- msgstr "Nueva Insignia"
6374
-
6375
- #: ../addons/badges/myCRED-addon-badges.php:155
6376
- msgid "View Badge"
6377
- msgstr "Ver Insignia"
6378
-
6379
- #: ../addons/badges/myCRED-addon-badges.php:156
6380
- msgid "Search Badge"
6381
- msgstr "Buscar Insignia"
6382
-
6383
- #: ../addons/badges/myCRED-addon-badges.php:157
6384
- msgid "No badges found"
6385
- msgstr "Ninguna Insignia Encontrada"
6386
-
6387
- #: ../addons/badges/myCRED-addon-badges.php:158
6388
- msgid "No badges found in Trash"
6389
- msgstr "Ninguna Insignia Encontrada en la Papelera"
6390
-
6391
- #: ../addons/badges/myCRED-addon-badges.php:270 ../addons/badges/myCRED-addon-
6392
- #: badges.php:271 ../addons/badges/myCRED-addon-badges.php:272 ..
6393
- #: addons/badges/myCRED-addon-badges.php:273 ../addons/badges/myCRED-addon-
6394
- #: badges.php:277 ../addons/badges/myCRED-addon-badges.php:278 ..
6395
- #: addons/badges/myCRED-addon-badges.php:279
6396
- msgid "Badge Updated."
6397
- msgstr "Insignia Actualizada"
6398
-
6399
- #: ../addons/badges/myCRED-addon-badges.php:396 ../addons/badges/myCRED-addon-
6400
- #: badges.php:480
6401
- msgid "Badge Name"
6402
- msgstr "Nombre de Insignia"
6403
-
6404
- #: ../addons/badges/myCRED-addon-badges.php:397
6405
- msgid "Default Image"
6406
- msgstr "Imagen Predefinida"
6407
-
6408
- #: ../addons/badges/myCRED-addon-badges.php:399
6409
- msgid "Requirements"
6410
- msgstr "Requisitos"
6411
-
6412
- #: ../addons/badges/myCRED-addon-badges.php:516
6413
- msgid "Badge Image"
6414
- msgstr "Imagen de la Insignia"
6415
-
6416
- #: ../addons/badges/myCRED-addon-badges.php:517
6417
- msgid "Use as Badge"
6418
- msgstr "Utiliza como Insignia"
6419
-
6420
- #: ../addons/badges/myCRED-addon-badges.php:678
6421
- msgid "Assign Badge"
6422
- msgstr "Asignar Insignia"
6423
-
6424
- #: ../addons/badges/myCRED-addon-badges.php:679
6425
- msgid "Remove Connections"
6426
- msgstr "Quitar Conexiones"
6427
-
6428
- #: ../addons/badges/myCRED-addon-badges.php:777
6429
- msgid "Time(s)"
6430
- msgstr "Tiempo(s)"
6431
-
6432
- #: ../addons/badges/myCRED-addon-badges.php:778
6433
- msgid "In total"
6434
- msgstr "En Total"
6435
-
6436
- #: ../addons/badges/myCRED-addon-badges.php:1184
6437
- msgid "Include in Forum Replies"
6438
- msgstr "Incluir en Respuesta de Fórum"
6439
-
6440
- #: ../addons/badges/myCRED-addon-badges.php:1185
6441
- msgid "Include in Profile and Forum Replies"
6442
- msgstr "Incluir en Perfil y Respuestas de Fórum"
6443
-
6444
- #: ../addons/badges/myCRED-addon-badges.php:1408
6445
- msgid "No users has yet earned this badge."
6446
- msgstr "Ningun usuario ha ganado esta insignia."
6447
-
6448
- #: ../addons/badges/myCRED-addon-badges.php:1435
6449
- #, php-format
6450
- msgid "%s connections where removed."
6451
- msgstr "%s conexiones han sido quitados."
6452
-
6453
- #: ../addons/coupons/myCRED-addon-coupons.php:100 ../addons/coupons/myCRED-addon-
6454
- #: coupons.php:106 ../addons/coupons/myCRED-addon-coupons.php:168 ..
6455
- #: addons/coupons/myCRED-addon-coupons.php:169 ../addons/coupons/myCRED-addon-
6456
- #: coupons.php:659
6457
- msgid "Coupons"
6458
- msgstr "Cupones"
6459
-
6460
- #: ../addons/coupons/myCRED-addon-coupons.php:101
6461
- msgid "Coupon"
6462
- msgstr "Cupón"
6463
-
6464
- #: ../addons/coupons/myCRED-addon-coupons.php:102 ../addons/coupons/myCRED-addon-
6465
- #: coupons.php:103
6466
- msgid "Create New"
6467
- msgstr "Crear Nuevo"
6468
-
6469
- #: ../addons/coupons/myCRED-addon-coupons.php:104
6470
- msgid "Edit Coupon"
6471
- msgstr "Editar Cupón"
6472
-
6473
- #: ../addons/coupons/myCRED-addon-coupons.php:105
6474
- msgid "New Coupon"
6475
- msgstr "Nuevo Cupón"
6476
-
6477
- #: ../addons/coupons/myCRED-addon-coupons.php:108
6478
- msgid "Search coupons"
6479
- msgstr "Busqueda de Cupones"
6480
-
6481
- #: ../addons/coupons/myCRED-addon-coupons.php:109
6482
- msgid "No coupons found"
6483
- msgstr "Ningun Cupón Encontrado"
6484
-
6485
- #: ../addons/coupons/myCRED-addon-coupons.php:110
6486
- msgid "No coupons found in Trash"
6487
- msgstr "Ningun Cupón Encontrado en la Papelera"
6488
-
6489
- #: ../addons/coupons/myCRED-addon-coupons.php:143 ../addons/coupons/myCRED-addon-
6490
- #: coupons.php:144 ../addons/coupons/myCRED-addon-coupons.php:145 ..
6491
- #: addons/coupons/myCRED-addon-coupons.php:146 ../addons/coupons/myCRED-addon-
6492
- #: coupons.php:149 ../addons/coupons/myCRED-addon-coupons.php:150 ..
6493
- #: addons/coupons/myCRED-addon-coupons.php:151 ../addons/coupons/myCRED-addon-
6494
- #: coupons.php:152
6495
- msgid "Coupon updated."
6496
- msgstr "Cupón Actualizado"
6497
-
6498
- #: ../addons/coupons/myCRED-addon-coupons.php:148
6499
- msgid "Coupon published."
6500
- msgstr "Cupón Publicado."
6501
-
6502
- #: ../addons/coupons/myCRED-addon-coupons.php:230 ../addons/coupons/myCRED-addon-
6503
- #: coupons.php:247
6504
- msgid "Coupon Code"
6505
- msgstr "Código de Cupón"
6506
-
6507
- #: ../addons/coupons/myCRED-addon-coupons.php:248 ../addons/coupons/myCRED-addon-
6508
- #: coupons.php:481
6509
- msgid "Value"
6510
- msgstr "Valor"
6511
-
6512
- #: ../addons/coupons/myCRED-addon-coupons.php:251 ../addons/sell-
6513
- #: content/includes/mycred-sell-shortcodes.php:188
6514
- msgid "Expires"
6515
- msgstr "Expire"
6516
-
6517
- #: ../addons/coupons/myCRED-addon-coupons.php:307
6518
- msgid "Per User"
6519
- msgstr "Por Usuario"
6520
-
6521
- #: ../addons/coupons/myCRED-addon-coupons.php:316 ../addons/sell-
6522
- #: content/includes/mycred-sell-shortcodes.php:231
6523
- msgid "Never"
6524
- msgstr "Nunca"
6525
-
6526
- #: ../addons/coupons/myCRED-addon-coupons.php:322
6527
- msgid "Expired"
6528
- msgstr "Caducado"
6529
-
6530
- #: ../addons/coupons/myCRED-addon-coupons.php:326
6531
- #, php-format
6532
- msgid "In %s time"
6533
- msgstr "En %s tiempo"
6534
-
6535
- #: ../addons/coupons/myCRED-addon-coupons.php:425
6536
- msgid "Coupon Setup"
6537
- msgstr "Configuración de Cupón"
6538
-
6539
- #: ../addons/coupons/myCRED-addon-coupons.php:434
6540
- msgid "Coupon Limits"
6541
- msgstr "Limites de Cupón"
6542
-
6543
- #: ../addons/coupons/myCRED-addon-coupons.php:443
6544
- msgid "Coupon Requirements"
6545
- msgstr "Requisitos de Cupón"
6546
-
6547
- #: ../addons/coupons/myCRED-addon-coupons.php:483
6548
- #, php-format
6549
- msgid "The amount of %plural% this coupon is worth."
6550
- msgstr "La cantidad de %plural% que vale este cupón."
6551
-
6552
- #: ../addons/coupons/myCRED-addon-coupons.php:492
6553
- msgid "Select the point type that this coupon is applied."
6554
- msgstr "Elige el clase de puntos al cual este cupón se aplica."
6555
-
6556
- #: ../addons/coupons/myCRED-addon-coupons.php:504
6557
- msgid "Expire"
6558
- msgstr "Caducar"
6559
-
6560
- #: ../addons/coupons/myCRED-addon-coupons.php:506
6561
- msgid "Optional date when this coupon expires. Expired coupons will be trashed."
6562
- msgstr ""
6563
- "La fecha opcional cuando este cupón caduca. Cupones caducados seran "
6564
- "destrozado."
6565
-
6566
- #: ../addons/coupons/myCRED-addon-coupons.php:534
6567
- msgid "Global Maximum"
6568
- msgstr "Máximo Global"
6569
-
6570
- #. not clear if this is referring to the maximum number of users or to the maximum "points" a user can have or accrue?
6571
- #: ../addons/coupons/myCRED-addon-coupons.php:541
6572
- msgid "User Maximum"
6573
- msgstr "Máximo Usuario"
6574
-
6575
- #: ../addons/coupons/myCRED-addon-coupons.php:543
6576
- msgid "The maximum number of times this coupon can be used by a user."
6577
- msgstr "El máximo numero de veces que se puede utilizadar este cupón por un usuario."
6578
-
6579
- #: ../addons/coupons/myCRED-addon-coupons.php:579
6580
- msgid ""
6581
- "Optional minimum balance a user must have in order to use this coupon. Use "
6582
- "zero to disable."
6583
- msgstr ""
6584
- "Mínimo saldo opcional que el usuario debe tener para utilizar este cupón. "
6585
- "Utilice cero para inhabilitar."
6586
-
6587
- #: ../addons/coupons/myCRED-addon-coupons.php:586
6588
- msgid "Maximum Balance"
6589
- msgstr "Saldo Máximo"
6590
-
6591
- #: ../addons/coupons/myCRED-addon-coupons.php:591
6592
- msgid ""
6593
- "Optional maximum balance a user can have in order to use this coupon. Use "
6594
- "zero to disable."
6595
- msgstr ""
6596
- "Saldo máximo opcional que un usuario puede tener para usar este cupón. Ponga "
6597
- "cero para desactivar."
6598
-
6599
- #: ../addons/coupons/myCRED-addon-coupons.php:665
6600
- #, php-format
6601
- msgid ""
6602
- "Log entry for successful coupon redemption. Use %coupon% to show the coupon "
6603
- "code."
6604
- msgstr ""
6605
- "Entrada del registro al exitoso canje del cupón. Utilice %coupon% para "
6606
- "mostrar el código del cupón."
6607
-
6608
- #: ../addons/coupons/myCRED-addon-coupons.php:668
6609
- msgid "Invalid Coupon Message"
6610
- msgstr "Mensaje Cupón Invalido"
6611
-
6612
- #: ../addons/coupons/myCRED-addon-coupons.php:672
6613
- msgid "Message to show when users try to use a coupon that does not exists."
6614
- msgstr "Mostrar mensaje cuando los usuarios intenten usar un cupón que no existe."
6615
-
6616
- #: ../addons/coupons/myCRED-addon-coupons.php:675
6617
- msgid "Expired Coupon Message"
6618
- msgstr "Mensaje de Cupón Caducado"
6619
-
6620
- #: ../addons/coupons/myCRED-addon-coupons.php:679
6621
- msgid "Message to show when users try to use that has expired."
6622
- msgstr "Mostrar mensaje cuando los usuarios intenten usar lo que ha caducado."
6623
-
6624
- #: ../addons/coupons/myCRED-addon-coupons.php:682
6625
- msgid "User Limit Message"
6626
- msgstr "Mensaje de Límite de Usuario"
6627
-
6628
- #: ../addons/coupons/myCRED-addon-coupons.php:686
6629
- msgid "Message to show when the user limit has been reached for the coupon."
6630
- msgstr "Mostrar mensaje cuando el cupón alcanza su límite de usuarios."
6631
-
6632
- #: ../addons/coupons/myCRED-addon-coupons.php:689
6633
- msgid "Minimum Balance Message"
6634
- msgstr "Mensaje de Saldo Mínimo"
6635
-
6636
- #: ../addons/coupons/myCRED-addon-coupons.php:693
6637
- msgid ""
6638
- "Message to show when a user does not meet the minimum balance requirement. "
6639
- "(if used)"
6640
- msgstr ""
6641
- "Mostrar mensaje cuando el usuario no cumple con el saldo mínimo requerido. "
6642
- "(si se utiliza)"
6643
-
6644
- #: ../addons/coupons/myCRED-addon-coupons.php:696
6645
- msgid "Maximum Balance Message"
6646
- msgstr "Mensaje Saldo Máximo"
6647
-
6648
- #: ../addons/coupons/myCRED-addon-coupons.php:700
6649
- msgid ""
6650
- "Message to show when a user does not meet the maximum balance requirement. "
6651
- "(if used)"
6652
- msgstr ""
6653
- "Mostrar mensaje cuando un usuario no alcanza el saldo máximo requerido. (si "
6654
- "se utiliza)"
6655
-
6656
- #: ../addons/coupons/myCRED-addon-coupons.php:703
6657
- msgid "Success Message"
6658
- msgstr "Mensaje de éxito"
6659
-
6660
- #: ../addons/coupons/myCRED-addon-coupons.php:707
6661
- msgid "Message to show when a coupon was successfully deposited to a users account."
6662
- msgstr "Monstrar mensaje cuando un cupón se deposita con éxito en una cuenta usuaria."
6663
-
6664
- #: ../addons/sell-content/myCRED-addon-sell-content.php:199 ../addons/sell-
6665
- #: content/myCRED-addon-sell-content.php:202 ../addons/sell-content/myCRED-addon-
6666
- #: sell-content.php:293 ../addons/sell-content/myCRED-addon-sell-content.php:758
6667
- msgid "Sell Content"
6668
- msgstr "Vender Contenido"
6669
-
6670
- #: ../addons/sell-content/myCRED-addon-sell-content.php:214 ../addons/sell-
6671
- #: content/myCRED-addon-sell-content.php:434
6672
- msgid "Profit Share"
6673
- msgstr "Reparto de Utilidades"
6674
-
6675
- #: ../addons/sell-content/myCRED-addon-sell-content.php:295
6676
- msgid "Post Types"
6677
- msgstr "Post Types"
6678
-
6679
- #: ../addons/sell-content/includes/mycred-sell-shortcodes.php:187 ../addons/buy-
6680
- #: creds/abstracts/mycred-abstract-payment-gateway.php:669 ../addons/buy-
6681
- #: creds/modules/buycred-module-pending.php:267 ../addons/buy-
6682
- #: creds/modules/buycred-module-pending.php:614 ../addons/buy-
6683
- #: creds/modules/buycred-module-pending.php:727 ../addons/buy-creds/gateways/bank-
6684
- #: transfer.php:112
6685
- msgid "Cost"
6686
- msgstr "Coste"
6687
-
6688
- #: ../addons/buy-creds/abstracts/mycred-abstract-payment-gateway.php:156
6689
- msgid "Select currency"
6690
- msgstr "Elige moneda"
6691
-
6692
- #. also, "Pago de Prueba" depending on context
6693
- #: ../addons/buy-creds/abstracts/mycred-abstract-payment-gateway.php:421 ..
6694
- #: addons/buy-creds/gateways/bank-transfer.php:96
6695
- msgid "Test Payment"
6696
- msgstr "Probar Pago"
6697
-
6698
- #: ../addons/buy-creds/abstracts/mycred-abstract-payment-gateway.php:661 ..
6699
- #: addons/buy-creds/gateways/bank-transfer.php:118
6700
- #, php-format
6701
- msgid "%s Purchase"
6702
- msgstr "Compra %s"
6703
-
6704
- #: ../addons/buy-creds/abstracts/mycred-abstract-payment-gateway.php:762
6705
- #, php-format
6706
- msgid "Continue to %s"
6707
- msgstr "Continuar a %s"
6708
-
6709
- #: ../addons/buy-creds/abstracts/mycred-abstract-payment-gateway.php:763 ..
6710
- #: addons/buy-creds/gateways/bitpay.php:225
6711
- msgid "Click here if you are not automatically redirected"
6712
- msgstr "Haga clic aqui si no se encuentra redirigida automáticamente"
6713
-
6714
- #: ../addons/buy-creds/abstracts/mycred-abstract-payment-gateway.php:1477
6715
- msgid "January"
6716
- msgstr "Enero"
6717
-
6718
- #: ../addons/buy-creds/abstracts/mycred-abstract-payment-gateway.php:1478
6719
- msgid "February"
6720
- msgstr "Febrero"
6721
-
6722
- #: ../addons/buy-creds/abstracts/mycred-abstract-payment-gateway.php:1479
6723
- msgid "March"
6724
- msgstr "Marzo"
6725
-
6726
- #: ../addons/buy-creds/abstracts/mycred-abstract-payment-gateway.php:1480
6727
- msgid "April"
6728
- msgstr "Abril"
6729
-
6730
- #: ../addons/buy-creds/abstracts/mycred-abstract-payment-gateway.php:1481
6731
- msgid "May"
6732
- msgstr "Mayo"
6733
-
6734
- #: ../addons/buy-creds/abstracts/mycred-abstract-payment-gateway.php:1482
6735
- msgid "June"
6736
- msgstr "Junio"
6737
-
6738
- #: ../addons/buy-creds/abstracts/mycred-abstract-payment-gateway.php:1483
6739
- msgid "July"
6740
- msgstr "Julio"
6741
-
6742
- #: ../addons/buy-creds/abstracts/mycred-abstract-payment-gateway.php:1484
6743
- msgid "August"
6744
- msgstr "Agosto"
6745
-
6746
- #: ../addons/buy-creds/abstracts/mycred-abstract-payment-gateway.php:1485
6747
- msgid "September"
6748
- msgstr "Septiembre"
6749
-
6750
- #: ../addons/buy-creds/abstracts/mycred-abstract-payment-gateway.php:1486
6751
- msgid "October"
6752
- msgstr "Octubre"
6753
-
6754
- #: ../addons/buy-creds/abstracts/mycred-abstract-payment-gateway.php:1487
6755
- msgid "November"
6756
- msgstr "Noviembre"
6757
-
6758
- #: ../addons/buy-creds/abstracts/mycred-abstract-payment-gateway.php:1488
6759
- msgid "December"
6760
- msgstr "Diciembre"
6761
-
6762
- #: ../addons/buy-creds/modules/buycred-module-pending.php:135
6763
- msgctxt "Post Type General Name"
6764
- msgid "Pending Payments"
6765
- msgstr "Pagos Pendientes"
6766
-
6767
- #: ../addons/buy-creds/modules/buycred-module-pending.php:136
6768
- msgctxt "Post Type Singular Name"
6769
- msgid "Pending Payment"
6770
- msgstr "Pago Pendiente"
6771
-
6772
- #: ../addons/buy-creds/modules/buycred-module-pending.php:137 ../addons/buy-
6773
- #: creds/modules/buycred-module-pending.php:139 ../addons/buy-
6774
- #: creds/modules/buycred-module-pending.php:229 ../addons/buy-
6775
- #: creds/modules/buycred-module-pending.php:230
6776
- msgid "Pending Payments"
6777
- msgstr "Pagos Pendientes"
6778
-
6779
- #: ../addons/buy-creds/modules/buycred-module-pending.php:143
6780
- msgid "Edit Pending Payment"
6781
- msgstr "Editar Pago Pendiente"
6782
-
6783
- #: ../addons/buy-creds/modules/buycred-module-pending.php:146 ../addons/buy-
6784
- #: creds/modules/buycred-module-pending.php:147
6785
- msgid "Not found in Trash"
6786
- msgstr "No ha sido encontrado en la Papelera"
6787
-
6788
- #: ../addons/buy-creds/modules/buycred-module-pending.php:263 ../addons/buy-
6789
- #: creds/modules/buycred-module-pending.php:724 ../addons/buy-
6790
- #: creds/modules/buycred-module-core.php:733 ../addons/buy-creds/gateways/bank-
6791
- #: transfer.php:113
6792
- msgid "Transaction ID"
6793
- msgstr "Identificación de la Transacción"
6794
-
6795
- #: ../addons/buy-creds/modules/buycred-module-pending.php:265 ../addons/buy-
6796
- #: creds/modules/buycred-module-core.php:729
6797
- msgid "Buyer"
6798
- msgstr "Comprador"
6799
-
6800
- #: ../addons/buy-creds/modules/buycred-module-pending.php:268 ../addons/buy-
6801
- #: creds/modules/buycred-module-pending.php:589 ../addons/buy-
6802
- #: creds/modules/buycred-module-pending.php:725 ../addons/buy-
6803
- #: creds/modules/buycred-module-core.php:728 ../addons/buy-creds/includes/buycred-
6804
- #: functions.php:118
6805
- msgid "Gateway"
6806
- msgstr "Pasarela"
6807
-
6808
- #: ../addons/buy-creds/modules/buycred-module-pending.php:269
6809
- msgid "Type"
6810
- msgstr "Clase"
6811
-
6812
- #: ../addons/buy-creds/modules/buycred-module-pending.php:366 ../addons/buy-
6813
- #: creds/modules/buycred-module-pending.php:471
6814
- msgid "Pay Out"
6815
- msgstr "Desembolso"
6816
-
6817
- #: ../addons/buy-creds/modules/buycred-module-pending.php:620 ../addons/buy-
6818
- #: creds/gateways/bank-transfer.php:180 ../addons/buy-creds/gateways/bitpay.php:
6819
- #: 251 ../addons/buy-creds/gateways/paypal-standard.php:279 ../addons/buy-
6820
- #: creds/gateways/skrill.php:294
6821
- msgid "Currency"
6822
- msgstr "Moneda"
6823
-
6824
- #: ../addons/buy-creds/modules/buycred-module-pending.php:791
6825
- msgid "No pending payments found"
6826
- msgstr "Ningun pago pendiente encontrado"
6827
-
6828
- #: ../addons/buy-creds/modules/buycred-module-core.php:28 ../addons/buy-
6829
- #: creds/modules/buycred-module-core.php:29 ../addons/buy-creds/modules/buycred-
6830
- #: module-core.php:30
6831
- msgid "Payment Gateways"
6832
- msgstr "Pasarela de Pago"
6833
-
6834
- #: ../addons/buy-creds/modules/buycred-module-core.php:273
6835
- msgid "Please login to purchase %_plural%"
6836
- msgstr "Identifícate antes de comprar %_plural%"
6837
-
6838
- #: ../addons/buy-creds/modules/buycred-module-core.php:288
6839
- #, php-format
6840
- msgid "Gift purchase from %display_name%."
6841
- msgstr "Regalo comprado de parte de %display_name%."
6842
-
6843
- #: ../addons/buy-creds/modules/buycred-module-core.php:307
6844
- #, php-format
6845
- msgid "Minimum amount of %plural% a user must purchase. Will default to 1."
6846
- msgstr ""
6847
- "La mínima cantidad de %plural% que el usuario debe comprar. Sera predefinido "
6848
- "a 1."
6849
-
6850
- #: ../addons/buy-creds/modules/buycred-module-core.php:315
6851
- msgid "Select the point types that users can buy. You must select at least one!"
6852
- msgstr ""
6853
- "Elige el clase de punto que el usuario puede comprar. Debes eligir al menos "
6854
- "uno!"
6855
-
6856
- #: ../addons/buy-creds/modules/buycred-module-core.php:326
6857
- msgid "Login Template"
6858
- msgstr "Plantilla de Ingreso"
6859
-
6860
- #: ../addons/buy-creds/modules/buycred-module-core.php:330
6861
- msgid "Content to show when a user is not logged in."
6862
- msgstr "Mostrar este contenido cuando un usuario no ha sido ingresado."
6863
-
6864
- #: ../addons/buy-creds/modules/buycred-module-core.php:340
6865
- msgid "Thank You Page"
6866
- msgstr "Página de Agradecimiento"
6867
-
6868
- #: ../addons/buy-creds/modules/buycred-module-core.php:343 ../addons/buy-
6869
- #: creds/modules/buycred-module-core.php:366
6870
- msgid "Custom URL"
6871
- msgstr "URL Personalizada"
6872
-
6873
- #: ../addons/buy-creds/modules/buycred-module-core.php:348 ../addons/buy-
6874
- #: creds/modules/buycred-module-core.php:371
6875
- msgid "Page"
6876
- msgstr "Página"
6877
-
6878
- #: ../addons/buy-creds/modules/buycred-module-core.php:363
6879
- msgid "Cancellation Page"
6880
- msgstr "Página de Cancelación"
6881
-
6882
- #: ../addons/buy-creds/modules/buycred-module-core.php:386 ../addons/buy-
6883
- #: creds/modules/buycred-module-core.php:489 ../addons/buy-creds/modules/buycred-
6884
- #: module-core.php:740
6885
- msgid "Purchase Log"
6886
- msgstr "Registro de Compras"
6887
-
6888
- #: ../addons/buy-creds/modules/buycred-module-core.php:388
6889
- #, php-format
6890
- msgid "Show seperate log for %_plural% purchases."
6891
- msgstr "Mostrar registro distinto para compras de %_plural%."
6892
-
6893
- #: ../addons/buy-creds/modules/buycred-module-core.php:390
6894
- msgid "Gifting"
6895
- msgstr "Regalar"
6896
-
6897
- #: ../addons/buy-creds/modules/buycred-module-core.php:392
6898
- #, php-format
6899
- msgid "Allow users to buy %_plural% for other users."
6900
- msgstr "Prmita que usuarios compren %_plural% para otros usuarios."
6901
-
6902
- #: ../addons/buy-creds/modules/buycred-module-core.php:393
6903
- #, php-format
6904
- msgid "Allow users to buy %_plural% for content authors."
6905
- msgstr "Prmita que usuarios compren %_plural% para autores de contenido."
6906
-
6907
- #: ../addons/buy-creds/modules/buycred-module-core.php:488
6908
- msgid "buyCRED Purchase Log"
6909
- msgstr "compraCRED Registro de Compras"
6910
-
6911
- #: ../addons/buy-creds/modules/buycred-module-core.php:533
6912
- #, php-format
6913
- msgid "%s Payment Gateways"
6914
- msgstr "%s Pasarelas de Pago"
6915
-
6916
- #: ../addons/buy-creds/modules/buycred-module-core.php:568
6917
- msgid "Sandbox Mode"
6918
- msgstr "Modo Entorno Aislado"
6919
-
6920
- #: ../addons/buy-creds/modules/buycred-module-core.php:571
6921
- msgid "Enable for test purchases."
6922
- msgstr "Habilitar para compras de prueba."
6923
-
6924
- #: ../addons/buy-creds/modules/buycred-module-core.php:591
6925
- msgid "More Gateways"
6926
- msgstr "Mas Pasarelas"
6927
-
6928
- #: ../addons/buy-creds/modules/buycred-module-core.php:732
6929
- msgid "Payed"
6930
- msgstr "Pagado"
6931
-
6932
- #: ../addons/buy-creds/modules/buycred-module-core.php:940
6933
- msgid "No purchases found"
6934
- msgstr "No se encontro ninguna compra"
6935
-
6936
- #: ../addons/buy-creds/modules/buycred-module-core.php:1059
6937
- msgid "Leave empty to use the default value."
6938
- msgstr "Dejar vacio si va a utilizar el valor predefinido."
6939
-
6940
- #: ../addons/buy-creds/modules/buycred-module-core.php:1266
6941
- msgid "Buy Now"
6942
- msgstr "Compra Ahora"
6943
-
6944
- #: ../addons/buy-creds/gateways/bank-transfer.php:59 ../addons/buy-
6945
- #: creds/gateways/bitpay.php:163 ../addons/buy-creds/gateways/netbilling.php:144 .
6946
- #: ./addons/buy-creds/gateways/zombaio.php:219 ../addons/buy-
6947
- #: creds/gateways/paypal-standard.php:207 ../addons/buy-creds/gateways/skrill.php:
6948
- #: 186
6949
- msgid "Please setup this gateway before attempting to make a purchase!"
6950
- msgstr ""
6951
- "¡Por favor configure esta puerta de enlace antes de intentar hacer una "
6952
- "compra!"
6953
-
6954
- #: ../addons/buy-creds/gateways/bank-transfer.php:186 ../addons/buy-
6955
- #: creds/gateways/bitpay.php:265 ../addons/buy-creds/gateways/netbilling.php:234 .
6956
- #: ./addons/buy-creds/gateways/paypal-standard.php:298 ../addons/buy-
6957
- #: creds/gateways/skrill.php:320
6958
- msgid "Exchange Rates"
6959
- msgstr "Tipo de Cambio"
6960
-
6961
- #: ../addons/buy-creds/gateways/bitpay.php:62 ../addons/buy-
6962
- #: creds/gateways/netbilling.php:92 ../addons/buy-creds/gateways/paypal-standard.
6963
- #: php:145 ../addons/buy-creds/gateways/skrill.php:124
6964
- #, php-format
6965
- msgid "Price mismatch. Expected: %s Received: %s"
6966
- msgstr "Desajuste de precio. Esperaba: %s Recibido: %s"
6967
-
6968
- #: ../addons/buy-creds/gateways/bitpay.php:68 ../addons/buy-creds/gateways/paypal-
6969
- #: standard.php:151 ../addons/buy-creds/gateways/skrill.php:130
6970
- #, php-format
6971
- msgid "Currency mismatch. Expected: %s Received: %s"
6972
- msgstr "Desajuste de moneda. Esperaba: %s Recibido: %s"
6973
-
6974
- #: ../addons/buy-creds/gateways/bitpay.php:74 ../addons/buy-
6975
- #: creds/gateways/netbilling.php:98 ../addons/buy-creds/gateways/paypal-standard.
6976
- #: php:157 ../addons/buy-creds/gateways/skrill.php:136
6977
- #, php-format
6978
- msgid "Payment not completed. Received: %s"
6979
- msgstr "Pago no cumplido. Recibido: %s"
6980
-
6981
- #: ../addons/buy-creds/gateways/bitpay.php:85 ../addons/buy-
6982
- #: creds/gateways/netbilling.php:109 ../addons/buy-creds/gateways/zombaio.php:189
6983
- #: ../addons/buy-creds/gateways/paypal-standard.php:168 ../addons/buy-
6984
- #: creds/gateways/skrill.php:147
6985
- msgid "Failed to credit users account."
6986
- msgstr "No se pudo creditar la cuenta del usuario."
6987
-
6988
- #: ../addons/buy-creds/gateways/bitpay.php:208 ../addons/buy-
6989
- #: creds/gateways/bitpay.php:219 ../addons/buy-creds/gateways/netbilling.php:190 .
6990
- #: ./addons/buy-creds/gateways/zombaio.php:249 ../addons/buy-
6991
- #: creds/gateways/paypal-standard.php:261 ../addons/buy-creds/gateways/skrill.php:
6992
- #: 275
6993
- msgid "Processing payment &hellip;"
6994
- msgstr "Procesando el pago &hellip;"
6995
-
6996
- #: ../addons/buy-creds/gateways/bitpay.php:211
6997
- msgid "Could not create a BitPay Invoice. Please contact the site administrator!"
6998
- msgstr ""
6999
- "¡No se pudo crear una factura de BitPay. Por favor pongase en contacto con "
7000
- "el administrador del sitio!"
7001
-
7002
- #: ../addons/buy-creds/gateways/bitpay.php:212
7003
- msgid "Bitpay returned the following error message:"
7004
- msgstr "Bitpay comunico este mensaje de error:"
7005
-
7006
- #: ../addons/buy-creds/gateways/bitpay.php:254
7007
- msgid "Currency Code"
7008
- msgstr "Código de Moneda"
7009
-
7010
- #: ../addons/buy-creds/gateways/bitpay.php:258 ../addons/buy-
7011
- #: creds/gateways/netbilling.php:227 ../addons/buy-creds/gateways/paypal-standard.
7012
- #: php:291 ../addons/buy-creds/gateways/skrill.php:313
7013
- msgid "Item Name"
7014
- msgstr "Nombre de Artículo"
7015
-
7016
- #: ../addons/buy-creds/gateways/bitpay.php:262 ../addons/buy-
7017
- #: creds/gateways/netbilling.php:231 ../addons/buy-creds/gateways/paypal-standard.
7018
- #: php:295 ../addons/buy-creds/gateways/skrill.php:317
7019
- msgid "Description of the item being purchased by the user."
7020
- msgstr "Descripción del artículo que el usuario esta comprando."
7021
-
7022
- #: ../addons/buy-creds/gateways/bitpay.php:269
7023
- msgid "Transaction Speed"
7024
- msgstr "Velocidad de la Transacción"
7025
-
7026
- #: ../addons/buy-creds/gateways/bitpay.php:276
7027
- msgid "High"
7028
- msgstr "Alto"
7029
-
7030
- #: ../addons/buy-creds/gateways/bitpay.php:277
7031
- msgid "Medium"
7032
- msgstr "Medio"
7033
-
7034
- #: ../addons/buy-creds/gateways/bitpay.php:278
7035
- msgid "Low"
7036
- msgstr "Bajo"
7037
-
7038
- #: ../addons/buy-creds/gateways/bitpay.php:291
7039
- msgid "Full Notifications"
7040
- msgstr "Notificaciones Completas"
7041
-
7042
- #: ../addons/buy-creds/gateways/netbilling.php:208
7043
- msgid "Account ID"
7044
- msgstr "ID de la Cuenta"
7045
-
7046
- #: ../addons/buy-creds/gateways/netbilling.php:214
7047
- msgid "Site Tag"
7048
- msgstr "Etiqueta (tag) del Sitio"
7049
-
7050
- #: ../addons/buy-creds/gateways/netbilling.php:220
7051
- msgid "Order Integrity Key"
7052
- msgstr "Clave de Integridad del Pedido"
7053
-
7054
- #: ../addons/buy-creds/gateways/netbilling.php:224
7055
- msgid "Found under Step 12 on the Fraud Defense page."
7056
- msgstr "Se encuentra en Paso 12 de la página sobre Defensa contra Fraude."
7057
-
7058
- #: ../addons/buy-creds/gateways/netbilling.php:238
7059
- msgid "Postback CGI URL"
7060
- msgstr "Devolución de la URL CGI"
7061
-
7062
- #: ../addons/buy-creds/gateways/netbilling.php:242
7063
- msgid ""
7064
- "For this gateway to work, you must login to your NETbilling account and edit "
7065
- "your site. Under \"Default payment form settings\" make sure the Postback CGI "
7066
- "URL is set to the above address and \"Return method\" is set to POST."
7067
- msgstr ""
7068
- "Para que esta pasarela de pago funcione, deberia acceder a su cuenta "
7069
- "NETbilling y editar su sitio web. En \"Configuración de Formularios "
7070
- "Predefinido\" asegúrese de que la devolución de la URL CGI esta ajustada a la "
7071
- "dirección indicada arriba y \"Método de Retorno\" está ajustado a POST."
7072
-
7073
- #: ../addons/buy-creds/gateways/netbilling.php:290
7074
- msgid "Incorrect Credit Card number"
7075
- msgstr "Número de Tarjeta de Crédito Incorrecta"
7076
-
7077
- #: ../addons/buy-creds/gateways/netbilling.php:296
7078
- msgid "The credit card entered is past its expiration date."
7079
- msgstr "La tarjeta de crédito ha pasado su fecha de vencimiento."
7080
-
7081
- #: ../addons/buy-creds/gateways/netbilling.php:299
7082
- msgid "The CVV2 number entered is not valid."
7083
- msgstr "El numero CVV2 teclado no es valido."
7084
-
7085
- #: ../addons/buy-creds/gateways/netbilling.php:306
7086
- msgid "The bank routing number entered is not valid."
7087
- msgstr "El número de ruta bancaria introducido no es valido."
7088
-
7089
- #: ../addons/buy-creds/gateways/netbilling.php:310
7090
- msgid "The bank account number entered is not valid."
7091
- msgstr "La cuenta bancaria introducida no es valida."
7092
-
7093
- #: ../addons/buy-creds/gateways/zombaio.php:155
7094
- #, php-format
7095
- msgid "Duplicate transaction. Received: %s"
7096
- msgstr "Transacción duplicado. Recibido: %s"
7097
-
7098
- #: ../addons/buy-creds/gateways/zombaio.php:161
7099
- #, php-format
7100
- msgid "Live transaction while debug mode is enabled! Received: %s"
7101
- msgstr "Depuración de transacciones en vivo esta habilitado! Recibido: %s"
7102
-
7103
- #: ../addons/buy-creds/gateways/zombaio.php:267
7104
- msgid "Site ID"
7105
- msgstr "ID del Sitio de web"
7106
-
7107
- #. or "Contraseña de GW" not clear based on lack of context
7108
- #: ../addons/buy-creds/gateways/zombaio.php:273
7109
- msgid "GW Password"
7110
- msgstr "Contraseña GW"
7111
-
7112
- #: ../addons/buy-creds/gateways/zombaio.php:279
7113
- msgid "Pricing ID"
7114
- msgstr "ID de Precios"
7115
-
7116
- #: ../addons/buy-creds/gateways/zombaio.php:285 ../addons/buy-
7117
- #: creds/gateways/skrill.php:338
7118
- msgid "Logo URL"
7119
- msgstr "URL del Logotipo"
7120
-
7121
- #: ../addons/buy-creds/gateways/zombaio.php:291
7122
- msgid "IP Verification"
7123
- msgstr "Verificación de IP"
7124
-
7125
- #: ../addons/buy-creds/gateways/zombaio.php:294
7126
- msgid "Do not verify that callbacks are coming from Zombaio."
7127
- msgstr "No verifique que las devoluciónes de llamadas proceden de Zombaio."
7128
-
7129
- #: ../addons/buy-creds/gateways/zombaio.php:297
7130
- msgid "Language"
7131
- msgstr "Lengua"
7132
-
7133
- #: ../addons/buy-creds/gateways/zombaio.php:304
7134
- msgid "Postback URL (ZScript)"
7135
- msgstr "Devolución de la URL (ZScript)"
7136
-
7137
- #: ../addons/buy-creds/gateways/zombaio.php:308
7138
- msgid ""
7139
- "For this gateway to work, login to ZOA and set the Postback URL to the above "
7140
- "address and click validate."
7141
- msgstr ""
7142
- "Para que esta puerta de enlace funcione, ingrese en ZOA y ajuste la "
7143
- "devolución de datos de la URL a la dirección que se encuentra arriba y haga "
7144
- "clic sobre validar."
7145
-
7146
- #: ../addons/buy-creds/gateways/paypal-standard.php:192 ../addons/buy-
7147
- #: creds/gateways/skrill.php:171
7148
- msgid "Success"
7149
- msgstr "Exito"
7150
-
7151
- #: ../addons/buy-creds/gateways/paypal-standard.php:193 ../addons/buy-
7152
- #: creds/gateways/skrill.php:172
7153
- msgid "Thank you for your purchase"
7154
- msgstr "Gracias por su compra"
7155
-
7156
- #: ../addons/buy-creds/gateways/paypal-standard.php:285
7157
- msgid "Account Email"
7158
- msgstr "Cuenta de Correo Electrónico"
7159
-
7160
- #: ../addons/buy-creds/gateways/skrill.php:226
7161
- msgid "Return to "
7162
- msgstr "Volver a"
7163
-
7164
- #: ../addons/buy-creds/gateways/skrill.php:258
7165
- msgid "Product:"
7166
- msgstr "Producto:"
7167
-
7168
- #: ../addons/buy-creds/gateways/skrill.php:267
7169
- msgid "Gift to:"
7170
- msgstr "Regalar a:"
7171
-
7172
- #: ../addons/buy-creds/gateways/skrill.php:268
7173
- msgid "(author)"
7174
- msgstr "(autor)"
7175
-
7176
- #: ../addons/buy-creds/gateways/skrill.php:301
7177
- msgid "Merchant Account Email"
7178
- msgstr "Correo electrónico de la Cuenta Comerciante"
7179
-
7180
- #: ../addons/buy-creds/gateways/skrill.php:307
7181
- msgid "Secret Word"
7182
- msgstr "Palabra Secreta"
7183
-
7184
- #: ../addons/buy-creds/gateways/skrill.php:324
7185
- msgid "Confirmation Email"
7186
- msgstr "Correo electrónico de confirmación"
7187
-
7188
- #: ../addons/buy-creds/gateways/skrill.php:327
7189
- msgid "Ask Skrill to send me a confirmation email for each successful purchase."
7190
- msgstr ""
7191
- "Pide a Skrill que me mande un email de confirmación para cada compra "
7192
- "finalizada con éxito."
7193
-
7194
- #: ../addons/buy-creds/gateways/skrill.php:330
7195
- msgid "Checkout Page"
7196
- msgstr "Página de Pago"
7197
-
7198
- #: ../addons/buy-creds/gateways/skrill.php:335
7199
- msgid "If left empty, your account email is used as title on the Skill Payment Page."
7200
- msgstr ""
7201
- "Si se deja vacío, el correo electrónico de su cuenta sera utilizada como "
7202
- "título en la Página de Pagos Skrill. "
7203
-
7204
- #: ../addons/buy-creds/gateways/skrill.php:340
7205
- msgid ""
7206
- "The URL to the image you want to use on the top of the gateway. For best "
7207
- "integration results we recommend you use logos with dimensions up to 200px "
7208
- "in width and 50px in height."
7209
- msgstr ""
7210
- "La URL de la imagen que quieres usar en la encima de la pasarela de pago. "
7211
- "Para obtener la mejor integración recomendamos que uses logotipos con "
7212
- "dimensiones de hasta 200 píxeles de ancho y 50 px de altura."
7213
-
7214
- #: ../addons/buy-creds/gateways/skrill.php:343
7215
- msgid "Confirmation Note"
7216
- msgstr "Nota de Confirmación"
7217
-
7218
- #: ../addons/buy-creds/gateways/skrill.php:345
7219
- msgid ""
7220
- "Optional text to show user once a transaction has been successfully "
7221
- "completed. This text is shown by Skrill."
7222
- msgstr ""
7223
- "Texto opcional a mostrar al usuario cuando la transacción haya sido "
7224
- "completado con éxito. Este texto sera mostrado por Skrill."
1
+ msgid ""
2
+ msgstr ""
3
+ "Project-Id-Version: myCRED\n"
4
+ "Report-Msgid-Bugs-To: http://mycred.me\n"
5
+ "POT-Creation-Date: 2016-10-21 06:01+0000\n"
6
+ "PO-Revision-Date: 2016-10-21 06:01+0000\n"
7
+ "Last-Translator: mycreddemo <gabriel.s@merovingi.com>\n"
8
+ "Language-Team: Spanish (Spain)\n"
9
+ "Language: es-ES\n"
10
+ "Plural-Forms: nplurals=2; plural=n != 1\n"
11
+ "MIME-Version: 1.0\n"
12
+ "Content-Type: text/plain; charset=UTF-8\n"
13
+ "Content-Transfer-Encoding: 8bit\n"
14
+ "X-Poedit-SourceCharset: UTF-8\n"
15
+ "X-Generator: Loco - https://localise.biz/\n"
16
+ "X-Poedit-Basepath: .\n"
17
+ "X-Poedit-KeywordsList: _:1;gettext:1;dgettext:2;ngettext:1,2;dngettext:2,3;"
18
+ "__:1;_e:1;_c:1;_n:1,2;_n_noop:1,2;_nc:1,2;__ngettext:1,2;__ngettext_noop:1,2;"
19
+ "_x:1,2c;_ex:1,2c;_nx:1,2,4c;_nx_noop:1,2,3c;_n_js:1,2;_nx_js:1,2,3c;"
20
+ "esc_attr__:1;esc_html__:1;esc_attr_e:1;esc_html_e:1;esc_attr_x:1,2c;"
21
+ "esc_html_x:1,2c;comments_number_link:2,3;t:1;st:1;trans:1;transChoice:1,2\n"
22
+ "X-Poedit-SearchPath-0: /Users/gabriel/Sites/paypana/wp-"
23
+ "content/plugins/mycred\n"
24
+ "X-Poedit-SearchPath-1: .\n"
25
+ "X-Loco-Target-Locale: es_ES"
26
+
27
+ #: abstracts/mycred-abstract-hook.php:284
28
+ msgid "/ Day"
29
+ msgstr ""
30
+
31
+ #: abstracts/mycred-abstract-hook.php:285
32
+ msgid "/ Week"
33
+ msgstr ""
34
+
35
+ #: abstracts/mycred-abstract-hook.php:286
36
+ msgid "/ Month"
37
+ msgstr ""
38
+
39
+ #: abstracts/mycred-abstract-hook.php:287
40
+ msgid "in Total"
41
+ msgstr ""
42
+
43
+ #: modules/mycred-module-management.php:184
44
+ msgid "Balance successfully updated"
45
+ msgstr ""
46
+
47
+ #: modules/mycred-module-management.php:189
48
+ msgid "Request declined"
49
+ msgstr ""
50
+
51
+ #: modules/mycred-module-management.php:224
52
+ msgid "No recent activity found."
53
+ msgstr ""
54
+
55
+ #: modules/mycred-module-management.php:237
56
+ #: modules/mycred-module-management.php:773 modules/mycred-module-log.php:93
57
+ #: modules/mycred-module-log.php:922
58
+ #: includes/classes/class.query-export.php:263
59
+ #: includes/classes/class.query-export.php:360
60
+ #: includes/classes/class.query-log.php:382
61
+ #: addons/transfer/includes/mycred-transfer-widgets.php:96
62
+ msgid "Reference"
63
+ msgstr ""
64
+
65
+ #: modules/mycred-module-management.php:280
66
+ msgid "View complete history"
67
+ msgstr ""
68
+
69
+ #: modules/mycred-module-management.php:553
70
+ msgid "Balances"
71
+ msgstr ""
72
+
73
+ #: modules/mycred-module-management.php:745
74
+ #: modules/mycred-module-export.php:400 modules/mycred-module-export.php:448
75
+ #: addons/buy-creds/modules/buycred-module-core.php:1362
76
+ msgid "Username"
77
+ msgstr ""
78
+
79
+ #: modules/mycred-module-management.php:757
80
+ msgid "Total Balance"
81
+ msgstr ""
82
+
83
+ #: modules/mycred-module-management.php:783
84
+ msgid "Log under a custom reference"
85
+ msgstr ""
86
+
87
+ #: modules/mycred-module-management.php:789
88
+ msgid "lowercase without empty spaces"
89
+ msgstr ""
90
+
91
+ #: modules/mycred-module-management.php:802
92
+ msgid "Update"
93
+ msgstr ""
94
+
95
+ #: modules/mycred-module-management.php:805
96
+ msgid "Recent Activity"
97
+ msgstr ""
98
+
99
+ #: modules/mycred-module-settings.php:240
100
+ msgid "Invalid decimal value."
101
+ msgstr ""
102
+
103
+ #: modules/mycred-module-settings.php:290
104
+ msgid "Log Updated"
105
+ msgstr ""
106
+
107
+ #: modules/mycred-module-settings.php:433
108
+ msgid ""
109
+ "In order to adjust the number of decimal places you want to use we must "
110
+ "update your log. It is highly recommended that you backup your current log "
111
+ "before continuing!"
112
+ msgstr ""
113
+
114
+ #: modules/mycred-module-settings.php:458
115
+ msgid "Update Database"
116
+ msgstr ""
117
+
118
+ #: modules/mycred-module-settings.php:469
119
+ #: modules/mycred-module-settings.php:481
120
+ msgid "No decimals"
121
+ msgstr ""
122
+
123
+ #: modules/mycred-module-settings.php:493
124
+ msgid "<a href=\"%s\">Click here</a> to change your default point types setup."
125
+ msgstr ""
126
+
127
+ #: modules/mycred-module-settings.php:529 modules/mycred-module-addons.php:368
128
+ msgid "Documentation"
129
+ msgstr ""
130
+
131
+ #: modules/mycred-module-settings.php:547 includes/mycred-setup.php:279
132
+ msgid "Singular"
133
+ msgstr ""
134
+
135
+ #: modules/mycred-module-settings.php:548
136
+ #: modules/mycred-module-settings.php:554
137
+ #: modules/mycred-module-settings.php:604
138
+ #: modules/mycred-module-settings.php:611
139
+ #: modules/mycred-module-settings.php:798
140
+ #: modules/mycred-module-settings.php:804 includes/mycred-setup.php:280
141
+ #: includes/mycred-setup.php:286 includes/mycred-setup.php:333
142
+ #: includes/mycred-setup.php:340
143
+ #: addons/banking/services/mycred-service-central.php:111
144
+ #: addons/banking/services/mycred-service-interest.php:482
145
+ #: addons/banking/services/mycred-service-interest.php:500
146
+ msgid "Required"
147
+ msgstr ""
148
+
149
+ #: modules/mycred-module-settings.php:553 includes/mycred-setup.php:285
150
+ msgid "Plural"
151
+ msgstr ""
152
+
153
+ #: modules/mycred-module-settings.php:558 includes/mycred-setup.php:290
154
+ msgid ""
155
+ "These labels are used throughout the admin area and when presenting points "
156
+ "to your users."
157
+ msgstr ""
158
+
159
+ #: modules/mycred-module-settings.php:590
160
+ msgid "Set decimals to zero if you prefer to use whole numbers."
161
+ msgstr ""
162
+
163
+ #: modules/mycred-module-settings.php:592
164
+ msgid ""
165
+ "As this is your main point type, the value you select here will be the "
166
+ "largest number of decimals your installation will support."
167
+ msgstr ""
168
+
169
+ #: modules/mycred-module-settings.php:603 includes/mycred-setup.php:332
170
+ msgid "Point Editors"
171
+ msgstr ""
172
+
173
+ #: modules/mycred-module-settings.php:605 includes/mycred-setup.php:334
174
+ msgid "The capability of users who can edit balances."
175
+ msgstr ""
176
+
177
+ #: modules/mycred-module-settings.php:610 includes/mycred-setup.php:339
178
+ msgid "Point Administrators"
179
+ msgstr ""
180
+
181
+ #: modules/mycred-module-settings.php:612 includes/mycred-setup.php:341
182
+ msgid "The capability of users who can edit settings."
183
+ msgstr ""
184
+
185
+ #: modules/mycred-module-settings.php:618 includes/mycred-setup.php:346
186
+ msgid "Max. Amount"
187
+ msgstr ""
188
+
189
+ #: modules/mycred-module-settings.php:620 includes/mycred-setup.php:348
190
+ msgid "The maximum amount allowed to be paid out in a single instance."
191
+ msgstr ""
192
+
193
+ #: modules/mycred-module-settings.php:625 includes/mycred-setup.php:353
194
+ msgid "Exclude by User ID"
195
+ msgstr ""
196
+
197
+ #: modules/mycred-module-settings.php:626 includes/mycred-setup.php:354
198
+ msgid "Optional"
199
+ msgstr ""
200
+
201
+ #: modules/mycred-module-settings.php:627 includes/mycred-setup.php:355
202
+ msgid "Comma separated list of user IDs to exclude from using this point type."
203
+ msgstr ""
204
+
205
+ #: modules/mycred-module-settings.php:631 includes/mycred-setup.php:359
206
+ msgid "Exclude point editors"
207
+ msgstr ""
208
+
209
+ #: modules/mycred-module-settings.php:634 includes/mycred-setup.php:362
210
+ msgid "Exclude point administrators"
211
+ msgstr ""
212
+
213
+ #: modules/mycred-module-settings.php:644
214
+ msgid "Other Settings"
215
+ msgstr ""
216
+
217
+ #: modules/mycred-module-settings.php:696
218
+ msgid "Balance Meta Key"
219
+ msgstr ""
220
+
221
+ #: modules/mycred-module-settings.php:809
222
+ msgid ""
223
+ "The meta key must be lowercase and only contain letters or underscores. All "
224
+ "other characters will be deleted!"
225
+ msgstr ""
226
+
227
+ #: modules/mycred-module-addons.php:275
228
+ msgid ""
229
+ "Gives you access to your myCRED Statistics based on your users gains and "
230
+ "loses."
231
+ msgstr ""
232
+
233
+ #: modules/mycred-module-addons.php:330
234
+ msgid "Get More Add-ons"
235
+ msgstr ""
236
+
237
+ #: modules/mycred-module-log.php:215
238
+ msgid "Invalid or empty reference"
239
+ msgstr ""
240
+
241
+ #: modules/mycred-module-log.php:220
242
+ msgid "Log Entry cannot be empty"
243
+ msgstr ""
244
+
245
+ #: modules/mycred-module-log.php:241
246
+ msgid "Could not save the new log entry"
247
+ msgstr ""
248
+
249
+ #: modules/mycred-module-log.php:262
250
+ msgid "Log entry successfully updated"
251
+ msgstr ""
252
+
253
+ #: modules/mycred-module-log.php:307
254
+ msgid "1 Entry Deleted"
255
+ msgid_plural "%d Entries Deleted"
256
+ msgstr[0] ""
257
+ msgstr[1] ""
258
+
259
+ #: modules/mycred-module-log.php:469
260
+ msgid "The log entry was successfully updated."
261
+ msgstr ""
262
+
263
+ #: modules/mycred-module-log.php:470
264
+ msgid "The selected log entry could not be deleted."
265
+ msgstr ""
266
+
267
+ #: modules/mycred-module-log.php:507
268
+ msgctxt "e.g. Log entries from April 12th 2016"
269
+ msgid "Log entries from %s"
270
+ msgstr ""
271
+
272
+ #: modules/mycred-module-log.php:565
273
+ msgid ""
274
+ "Warning. The required Mcrypt PHP Library is not installed on this server! "
275
+ "Certain hooks and shortcodes will not work correctly!"
276
+ msgstr ""
277
+
278
+ #: modules/mycred-module-log.php:929
279
+ msgid "Original Entry"
280
+ msgstr ""
281
+
282
+ #: modules/mycred-module-log.php:941
283
+ msgid "Delete Entry"
284
+ msgstr ""
285
+
286
+ #: modules/mycred-module-log.php:946
287
+ msgid "Update Entry"
288
+ msgstr ""
289
+
290
+ #: modules/mycred-module-network.php:141
291
+ msgid "I am sorry but your network is too big to use these features."
292
+ msgstr ""
293
+
294
+ #: modules/mycred-module-export.php:358
295
+ msgid "Make both format options available."
296
+ msgstr ""
297
+
298
+ #: modules/mycred-module-export.php:360
299
+ msgid "Exports"
300
+ msgstr ""
301
+
302
+ #: modules/mycred-module-export.php:366
303
+ msgid "Front End Exports"
304
+ msgstr ""
305
+
306
+ #: modules/mycred-module-export.php:382 modules/mycred-module-export.php:430
307
+ msgid "Export Format"
308
+ msgstr ""
309
+
310
+ #: modules/mycred-module-export.php:398 modules/mycred-module-export.php:446
311
+ msgid "File Name"
312
+ msgstr ""
313
+
314
+ #: modules/mycred-module-export.php:407
315
+ msgid ""
316
+ "If enabled, users will only be able to export their own log entries! Export "
317
+ "tools becomes available wherever you are using the mycred_history shortcode "
318
+ "or in the users profile."
319
+ msgstr ""
320
+
321
+ #: modules/mycred-module-export.php:414
322
+ msgid "Back End Exports"
323
+ msgstr ""
324
+
325
+ #: modules/mycred-module-export.php:455
326
+ msgid ""
327
+ "Raw format should be used when you intend to use the export tool to backup "
328
+ "or import entries in another installation. Formatted exports reflect what "
329
+ "users see in their history archive."
330
+ msgstr ""
331
+
332
+ #: modules/mycred-module-buddypress.php:350
333
+ msgid "Show:"
334
+ msgstr ""
335
+
336
+ #: modules/mycred-module-buddypress.php:444
337
+ msgid "Members and visitors can view other members %_singular% balance."
338
+ msgstr ""
339
+
340
+ #: plugins/mycred-hook-wp-postratings.php:15
341
+ msgid "Post Ratings"
342
+ msgstr ""
343
+
344
+ #: plugins/mycred-hook-wp-postratings.php:16
345
+ msgid ""
346
+ "Awards %_plural% for post ratings. Supports awarding %_plural% both to post "
347
+ "author and the user rating."
348
+ msgstr ""
349
+
350
+ #: plugins/mycred-hook-wp-postratings.php:84
351
+ msgid "Based on rating"
352
+ msgstr ""
353
+
354
+ #: plugins/mycred-hook-wp-postratings.php:159
355
+ #: includes/classes/class.query-log.php:1628
356
+ msgid "Adding a Rating"
357
+ msgstr ""
358
+
359
+ #: plugins/mycred-hook-wp-postratings.php:169
360
+ #: plugins/mycred-hook-wp-postratings.php:188
361
+ msgid "Use the Rating Value instead of the amount set here."
362
+ msgstr ""
363
+
364
+ #: plugins/mycred-hook-wp-postratings.php:178
365
+ #: includes/classes/class.query-log.php:1629
366
+ msgid "Receiving a Rating"
367
+ msgstr ""
368
+
369
+ #: plugins/mycred-hook-buddypress.php:610
370
+ msgid "New Profile Activity"
371
+ msgstr ""
372
+
373
+ #: plugins/mycred-hook-buddypress.php:627
374
+ msgid "Deleted Profile Activity"
375
+ msgstr ""
376
+
377
+ #: plugins/mycred-hook-buddypress.php:644
378
+ msgid "New Profile Avatar"
379
+ msgstr ""
380
+
381
+ #: plugins/mycred-hook-buddypress.php:661
382
+ msgid "New Profile Cover Image"
383
+ msgstr ""
384
+
385
+ #: plugins/mycred-hook-buddypress.php:688
386
+ msgid ""
387
+ "Users with zero balance can not add friends. Requires that you deduct "
388
+ "%_plural% for adding a new friend."
389
+ msgstr ""
390
+
391
+ #: plugins/mycred-hook-buddypress.php:698
392
+ msgid "Ending Friendship"
393
+ msgstr ""
394
+
395
+ #: plugins/mycred-hook-buddypress.php:711
396
+ msgid "New Comment"
397
+ msgstr ""
398
+
399
+ #: plugins/mycred-hook-buddypress.php:741
400
+ msgid "Favorit Activity"
401
+ msgstr ""
402
+
403
+ #: plugins/mycred-hook-buddypress.php:758
404
+ msgid "Removing Favorit Activity"
405
+ msgstr ""
406
+
407
+ #: plugins/mycred-hook-buddypress.php:771
408
+ msgid "New Private Message"
409
+ msgstr ""
410
+
411
+ #: plugins/mycred-hook-buddypress.php:1564
412
+ msgid "%plural% for New Cover Image"
413
+ msgstr ""
414
+
415
+ #: plugins/mycred-hook-affiliatewp.php:15
416
+ msgid "AffiliateWP"
417
+ msgstr ""
418
+
419
+ #: plugins/mycred-hook-affiliatewp.php:16
420
+ msgid ""
421
+ "Awards %_plural% for affiliate signups, referring visitors and store sale "
422
+ "referrals."
423
+ msgstr ""
424
+
425
+ #: plugins/mycred-hook-affiliatewp.php:222
426
+ msgid "Affiliate Signup"
427
+ msgstr ""
428
+
429
+ #: plugins/mycred-hook-affiliatewp.php:252
430
+ msgid "Referring Sales"
431
+ msgstr ""
432
+
433
+ #: plugins/mycred-hook-affiliatewp.php:255
434
+ msgid "Pay a set amount for all referrals."
435
+ msgstr ""
436
+
437
+ #: plugins/mycred-hook-affiliatewp.php:256
438
+ msgid "AffiliateWP will use %plural% as currency so pay the referral amount."
439
+ msgstr ""
440
+
441
+ #: plugins/mycred-hook-affiliatewp.php:257
442
+ msgid "Apply an exchange rate against the referral amount."
443
+ msgstr ""
444
+
445
+ #: plugins/mycred-hook-affiliatewp.php:265
446
+ msgid "Log template - Payout"
447
+ msgstr ""
448
+
449
+ #: plugins/mycred-hook-affiliatewp.php:270
450
+ msgid "Log template - Refund"
451
+ msgstr ""
452
+
453
+ #: plugins/mycred-hook-wp-favorite-posts.php:234
454
+ msgid "Authors Content added to favorites"
455
+ msgstr ""
456
+
457
+ #: plugins/mycred-hook-wp-favorite-posts.php:265
458
+ msgid "Removing Content from Favorites (Author)"
459
+ msgstr ""
460
+
461
+ #: plugins/mycred-hook-bbPress.php:540
462
+ msgid "Show users %_plural% balance in their bbPress profiles."
463
+ msgstr ""
464
+
465
+ #: includes/mycred-setup.php:106
466
+ msgid ""
467
+ "Before you can begin using %s, you must setup your first point type. This "
468
+ "includes what you want to call your points, how these points are presented "
469
+ "and who has access to it."
470
+ msgstr ""
471
+
472
+ #: includes/mycred-setup.php:111
473
+ msgid "Your First Point Type"
474
+ msgstr ""
475
+
476
+ #: includes/mycred-setup.php:127
477
+ msgid "Advanced Settings"
478
+ msgstr ""
479
+
480
+ #: includes/mycred-setup.php:133
481
+ msgid "Change Default Point Type Key"
482
+ msgstr ""
483
+
484
+ #: includes/mycred-setup.php:135
485
+ msgid ""
486
+ "You can change the meta key used to store the default point type using the "
487
+ "MYCRED_DEFAULT_TYPE_KEY constant. Copy the above code to your wp-config.php "
488
+ "file to use."
489
+ msgstr ""
490
+
491
+ #: includes/mycred-setup.php:136
492
+ msgid ""
493
+ "If you intend to change the default meta key, you should do so before "
494
+ "continuing on in this setup!"
495
+ msgstr ""
496
+
497
+ #: includes/mycred-setup.php:139
498
+ msgid "Whitelabel"
499
+ msgstr ""
500
+
501
+ #: includes/mycred-setup.php:141
502
+ msgid ""
503
+ "You can re-label myCRED using the MYCRED_DEFAULT_LABEL constant. Copy the "
504
+ "above code to your wp-config.php file to use."
505
+ msgstr ""
506
+
507
+ #: includes/mycred-setup.php:149
508
+ msgid "Create Point Type"
509
+ msgstr ""
510
+
511
+ #: includes/mycred-setup.php:149
512
+ msgid "Hide"
513
+ msgstr ""
514
+
515
+ #: includes/mycred-setup.php:149 includes/mycred-setup.php:149
516
+ msgid "Advanced"
517
+ msgstr ""
518
+
519
+ #: includes/mycred-setup.php:155
520
+ msgid "Processing ..."
521
+ msgstr ""
522
+
523
+ #: includes/mycred-setup.php:160
524
+ msgid "Setup Complete!"
525
+ msgstr ""
526
+
527
+ #: includes/mycred-setup.php:161
528
+ msgid "Congratulations! You are now ready to use myCRED. What's next?"
529
+ msgstr ""
530
+
531
+ #: includes/mycred-setup.php:166
532
+ msgid "Enabling Hooks"
533
+ msgstr ""
534
+
535
+ #: includes/mycred-setup.php:167
536
+ msgid ""
537
+ "If you intend to give your users points for interacting with your website "
538
+ "automatically, your next step should be to enable and setup the hooks you "
539
+ "want to use."
540
+ msgstr ""
541
+
542
+ #: includes/mycred-setup.php:168
543
+ msgid "Setup Hooks"
544
+ msgstr ""
545
+
546
+ #: includes/mycred-setup.php:172
547
+ msgid ""
548
+ "If you want to use advanced features such as Transfers, Point Purchases etc. "
549
+ "your next step should be to enable and setup your add-ons."
550
+ msgstr ""
551
+
552
+ #: includes/mycred-setup.php:173
553
+ msgid "Setup Add-ons"
554
+ msgstr ""
555
+
556
+ #: includes/mycred-setup.php:176
557
+ msgid "Adjust Settings"
558
+ msgstr ""
559
+
560
+ #: includes/mycred-setup.php:177
561
+ msgid ""
562
+ "If you need to make further changes to your settings or add new point types, "
563
+ "you can visit your default point type's settings."
564
+ msgstr ""
565
+
566
+ #: includes/mycred-setup.php:178
567
+ msgid "View Settings"
568
+ msgstr ""
569
+
570
+ #: includes/mycred-setup.php:322
571
+ msgid "Set to decimals to zero if you prefer to use whole numbers."
572
+ msgstr ""
573
+
574
+ #: includes/mycred-setup.php:442
575
+ msgid "Please make sure you fill out all required fields!"
576
+ msgstr ""
577
+
578
+ #: includes/mycred-remote.php:619
579
+ msgid "16, 24 or 32 characters"
580
+ msgstr ""
581
+
582
+ #: includes/mycred-install.php:63
583
+ msgid "myCRED requires WordPress 4.0 or higher. Version detected:"
584
+ msgstr ""
585
+
586
+ #: includes/mycred-install.php:68
587
+ msgid "myCRED requires PHP 5.3 or higher. Version detected: "
588
+ msgstr ""
589
+
590
+ #: includes/mycred-widgets.php:22
591
+ msgid "Show the current users balance and history."
592
+ msgstr ""
593
+
594
+ #: includes/mycred-widgets.php:192
595
+ msgid "Balance Layout"
596
+ msgstr ""
597
+
598
+ #: includes/mycred-widgets.php:285
599
+ msgid "Leaderboard based on instances or balances."
600
+ msgstr ""
601
+
602
+ #: includes/mycred-widgets.php:419
603
+ msgid "Timeframe"
604
+ msgstr ""
605
+
606
+ #: includes/mycred-widgets.php:421
607
+ msgid ""
608
+ "Option to limit the leaderboard based on a specific timeframe. Leave empty "
609
+ "if not used."
610
+ msgstr ""
611
+
612
+ #: includes/mycred-widgets.php:472
613
+ msgid "Shows multiple balances."
614
+ msgstr ""
615
+
616
+ #: includes/mycred-functions.php:2678
617
+ msgid "per day"
618
+ msgstr ""
619
+
620
+ #: includes/mycred-functions.php:2680
621
+ msgid "per week"
622
+ msgstr ""
623
+
624
+ #: includes/mycred-functions.php:2682
625
+ msgid "per month"
626
+ msgstr ""
627
+
628
+ #: includes/mycred-functions.php:2684
629
+ msgid "in total"
630
+ msgstr ""
631
+
632
+ #: includes/mycred-functions.php:2686 includes/mycred-functions.php:2690
633
+ msgid "Maximum once"
634
+ msgid_plural "Maximum %d times"
635
+ msgstr[0] ""
636
+ msgstr[1] ""
637
+
638
+ #: includes/mycred-functions.php:2717
639
+ msgctxt "ex. 21st."
640
+ msgid "%dst"
641
+ msgstr ""
642
+
643
+ #: includes/mycred-functions.php:2724
644
+ msgctxt "ex. 32nd."
645
+ msgid "%dnd"
646
+ msgstr ""
647
+
648
+ #: includes/mycred-functions.php:2731
649
+ msgctxt "ex. 43rd."
650
+ msgid "%drd"
651
+ msgstr ""
652
+
653
+ #: includes/mycred-functions.php:2742
654
+ msgctxt "ex. 50th"
655
+ msgid "%dth"
656
+ msgstr ""
657
+
658
+ #: includes/shortcodes/mycred_exchange.php:27
659
+ #: includes/shortcodes/mycred_hook_table.php:24
660
+ msgid "Point type not found."
661
+ msgstr ""
662
+
663
+ #: includes/shortcodes/mycred_hook_table.php:21
664
+ msgid "No instances found for this point type"
665
+ msgstr ""
666
+
667
+ #: includes/shortcodes/mycred_hook_table.php:79
668
+ msgid "Instance"
669
+ msgstr ""
670
+
671
+ #: includes/classes/class.query-export.php:263
672
+ msgid "Reference ID"
673
+ msgstr ""
674
+
675
+ #: includes/classes/class.query-export.php:263
676
+ msgid "Data"
677
+ msgstr ""
678
+
679
+ #: includes/classes/class.query-export.php:464
680
+ msgid "Export log entries raw"
681
+ msgstr ""
682
+
683
+ #: includes/classes/class.query-export.php:465
684
+ msgid "Export log entries formatted"
685
+ msgstr ""
686
+
687
+ #: includes/classes/class.query-export.php:482
688
+ msgid "All Log Entries"
689
+ msgstr ""
690
+
691
+ #: includes/classes/class.query-export.php:492
692
+ msgid "Users Log Entries"
693
+ msgstr ""
694
+
695
+ #: includes/classes/class.query-export.php:493
696
+ msgid "Export History"
697
+ msgstr ""
698
+
699
+ #: includes/classes/class.query-log.php:489
700
+ msgid "Bulk Actions"
701
+ msgstr ""
702
+
703
+ #: includes/classes/class.query-log.php:490
704
+ msgid "Export Raw"
705
+ msgstr ""
706
+
707
+ #: includes/classes/class.query-log.php:491
708
+ msgid "Export Formatted"
709
+ msgstr ""
710
+
711
+ #: includes/classes/class.query-log.php:507
712
+ msgid "Apply"
713
+ msgstr ""
714
+
715
+ #: includes/classes/class.query-log.php:544
716
+ msgid "User ID, Username, Email or Nicename"
717
+ msgstr ""
718
+
719
+ #: includes/classes/class.query-log.php:609
720
+ msgid "Log entries navigation"
721
+ msgstr ""
722
+
723
+ #: includes/classes/class.query-log.php:734
724
+ msgid "1 entry"
725
+ msgid_plural "%d entries"
726
+ msgstr[0] ""
727
+ msgstr[1] ""
728
+
729
+ #: includes/classes/class.query-log.php:867
730
+ #: includes/classes/class.query-log.php:888
731
+ msgid "Select all"
732
+ msgstr ""
733
+
734
+ #: includes/classes/class.query-log.php:971
735
+ msgid "Select entry"
736
+ msgstr ""
737
+
738
+ #: includes/classes/class.query-log.php:992
739
+ msgid "Show more details"
740
+ msgstr ""
741
+
742
+ #: includes/classes/class.query-log.php:1016
743
+ msgid "Filter by Date"
744
+ msgstr ""
745
+
746
+ #: includes/classes/class.query-log.php:1065
747
+ msgid "Filter by User"
748
+ msgstr ""
749
+
750
+ #: includes/classes/class.query-log.php:1067
751
+ msgid "Filter by ID"
752
+ msgstr ""
753
+
754
+ #: includes/classes/class.query-log.php:1561
755
+ msgid "Profile Update Removal"
756
+ msgstr ""
757
+
758
+ #: includes/classes/class.query-log.php:1563
759
+ msgid "Profile Cover Upload"
760
+ msgstr ""
761
+
762
+ #: includes/classes/class.query-log.php:1568
763
+ msgid "Add Activity to Favorites"
764
+ msgstr ""
765
+
766
+ #: includes/classes/class.query-log.php:1569
767
+ msgid "Remove Activity from Favorites"
768
+ msgstr ""
769
+
770
+ #: includes/classes/class.query-log.php:1581
771
+ msgid "New Group Cover"
772
+ msgstr ""
773
+
774
+ #: includes/classes/class.query-log.php:1621
775
+ msgid "Affiliate Signup (AffiliateWP)"
776
+ msgstr ""
777
+
778
+ #: includes/classes/class.query-log.php:1622
779
+ msgid "Referred Visit (AffiliateWP)"
780
+ msgstr ""
781
+
782
+ #: includes/classes/class.query-log.php:1623
783
+ msgid "Affiliate Referral (AffiliateWP)"
784
+ msgstr ""
785
+
786
+ #: includes/classes/class.query-log.php:1624
787
+ msgid "Referral Refund (AffiliateWP)"
788
+ msgstr ""
789
+
790
+ #: includes/classes/class.query-log.php:1644
791
+ msgid "Recurring Payout"
792
+ msgstr ""
793
+
794
+ #: includes/classes/class.query-log.php:1648
795
+ msgid "Badge Reward"
796
+ msgstr ""
797
+
798
+ #: includes/classes/class.query-log.php:1665
799
+ msgid "Store Reward (WooCommerce)"
800
+ msgstr ""
801
+
802
+ #: includes/classes/class.query-log.php:1666
803
+ msgid "Product Review (WooCommerce)"
804
+ msgstr ""
805
+
806
+ #: includes/classes/class.query-log.php:1670
807
+ msgid "Store Reward (MarketPress)"
808
+ msgstr ""
809
+
810
+ #: includes/classes/class.query-log.php:1689
811
+ msgid "Content Purchase"
812
+ msgstr ""
813
+
814
+ #: includes/classes/class.query-log.php:1690
815
+ msgid "Content Sale"
816
+ msgstr ""
817
+
818
+ #: addons/banking/myCRED-addon-banking.php:142
819
+ msgid ""
820
+ "Instead of creating %_plural% out of thin-air, all payouts are made from a "
821
+ "nominated \"Central Bank\" account. Any %_plural% a user spends or loses are "
822
+ "deposited back into this account. If the central bank runs out of %_plural%, "
823
+ "no %_plural% will be paid out."
824
+ msgstr ""
825
+
826
+ #: addons/banking/myCRED-addon-banking.php:151
827
+ msgid ""
828
+ "Offer your users interest on the %_plural% they earn on your website. The "
829
+ "interest is compounded daily."
830
+ msgstr ""
831
+
832
+ #: addons/banking/myCRED-addon-banking.php:202
833
+ msgid "New Recurring Payout"
834
+ msgstr ""
835
+
836
+ #: addons/banking/myCRED-addon-banking.php:203
837
+ msgid "Edit Recurring Payout"
838
+ msgstr ""
839
+
840
+ #: addons/banking/myCRED-addon-banking.php:205
841
+ msgid "Please fill out all required fields that are highlighted in red."
842
+ msgstr ""
843
+
844
+ #: addons/banking/myCRED-addon-banking.php:206
845
+ msgid "Are you sure you want to remove this schedule? This can not be undone!"
846
+ msgstr ""
847
+
848
+ #: addons/banking/myCRED-addon-banking.php:271
849
+ msgid "Warning"
850
+ msgstr ""
851
+
852
+ #: addons/banking/myCRED-addon-banking.php:271
853
+ msgid ""
854
+ "This banking service uses the WordPress CRON to schedule events. If the "
855
+ "WordPress CRON is disabled, this service will not work correctly."
856
+ msgstr ""
857
+
858
+ #: addons/transfer/myCRED-addon-transfer.php:156
859
+ msgid "The selected point type can not be transferred."
860
+ msgstr ""
861
+
862
+ #: addons/transfer/myCRED-addon-transfer.php:464
863
+ msgid ""
864
+ "The template to use when the transfer shortcode or widget is viewed by "
865
+ "someone who is not logged in."
866
+ msgstr ""
867
+
868
+ #: addons/transfer/myCRED-addon-transfer.php:479
869
+ msgid ""
870
+ "The template to use if you select to show the transfer limit in the transfer "
871
+ "shortcode or widget. Ignored if there is no limit enforced."
872
+ msgstr ""
873
+
874
+ #: addons/transfer/myCRED-addon-transfer.php:496
875
+ msgid ""
876
+ "The template to use if you select to show the users balance in the transfer "
877
+ "shortcode or widget. Ignored if balances are not shown."
878
+ msgstr ""
879
+
880
+ #: addons/transfer/myCRED-addon-transfer.php:512
881
+ msgid "Default Button Label"
882
+ msgstr ""
883
+
884
+ #: addons/transfer/myCRED-addon-transfer.php:514
885
+ msgid ""
886
+ "The default transfer button label. You can override this in the shortcode or "
887
+ "widget if needed."
888
+ msgstr ""
889
+
890
+ #: addons/transfer/myCRED-addon-transfer.php:517
891
+ msgid "Insufficient Funds Warning"
892
+ msgstr ""
893
+
894
+ #: addons/transfer/myCRED-addon-transfer.php:521
895
+ msgid "Message to show the user if they try to send more then they can afford."
896
+ msgstr ""
897
+
898
+ #: addons/transfer/myCRED-addon-transfer.php:524
899
+ msgid "Limit Reached Warning"
900
+ msgstr ""
901
+
902
+ #: addons/transfer/myCRED-addon-transfer.php:528
903
+ msgid ""
904
+ "Message to show the user once they reach their transfer limit. Ignored if no "
905
+ "limits are enforced."
906
+ msgstr ""
907
+
908
+ #: addons/ranks/myCRED-addon-ranks.php:216
909
+ msgid "Ranks for %s"
910
+ msgstr ""
911
+
912
+ #: addons/ranks/myCRED-addon-ranks.php:230
913
+ #: addons/ranks/myCRED-addon-ranks.php:1368
914
+ msgid "Rank Logo"
915
+ msgstr ""
916
+
917
+ #: addons/ranks/myCRED-addon-ranks.php:231
918
+ msgid "Set rank logo"
919
+ msgstr ""
920
+
921
+ #: addons/ranks/myCRED-addon-ranks.php:232
922
+ msgid "Remove rank logo"
923
+ msgstr ""
924
+
925
+ #: addons/ranks/myCRED-addon-ranks.php:233
926
+ msgid "Use as Logo"
927
+ msgstr ""
928
+
929
+ #: addons/ranks/myCRED-addon-ranks.php:288
930
+ msgid "Rank Enabled."
931
+ msgstr ""
932
+
933
+ #: addons/ranks/myCRED-addon-ranks.php:289
934
+ msgid "Rank Saved."
935
+ msgstr ""
936
+
937
+ #: addons/ranks/myCRED-addon-ranks.php:895
938
+ msgid "No ranks exists."
939
+ msgstr ""
940
+
941
+ #: addons/ranks/myCRED-addon-ranks.php:1189
942
+ msgid "Rank Setup"
943
+ msgstr ""
944
+
945
+ #: addons/ranks/myCRED-addon-ranks.php:1230
946
+ msgid "Minimum Balance Requirement"
947
+ msgstr ""
948
+
949
+ #: addons/ranks/myCRED-addon-ranks.php:1236
950
+ msgid "Maximum Balance Requirement"
951
+ msgstr ""
952
+
953
+ #: addons/ranks/myCRED-addon-ranks.php:1435
954
+ msgid ""
955
+ "Use this button to calculate or recalculate your users totals. If not used, "
956
+ "the users current balance will be used as a starting point."
957
+ msgstr ""
958
+
959
+ #: addons/ranks/myCRED-addon-ranks.php:1477
960
+ #: addons/ranks/myCRED-addon-ranks.php:1522
961
+ msgid ""
962
+ "Template to use when showing a users Rank in BuddyPress. Use %rank_title% "
963
+ "for the title and %rank_logo% to show the rank logo. HTML is allowed."
964
+ msgstr ""
965
+
966
+ #: addons/ranks/myCRED-addon-ranks.php:1499
967
+ msgid "Include in Topic Replies"
968
+ msgstr ""
969
+
970
+ #: addons/ranks/myCRED-addon-ranks.php:1501
971
+ msgid "Include in Topic Replies and Profile"
972
+ msgstr ""
973
+
974
+ #: addons/ranks/myCRED-addon-ranks.php:1505
975
+ msgid "Rank in bbPress"
976
+ msgstr ""
977
+
978
+ #: addons/notifications/myCRED-addon-notifications.php:203
979
+ msgid "Restore to default"
980
+ msgstr ""
981
+
982
+ #: addons/notifications/myCRED-addon-notifications.php:217
983
+ msgid ""
984
+ "Number of seconds before a notice is automatically removed after being shown "
985
+ "to user. Use zero to disable."
986
+ msgstr ""
987
+
988
+ #: addons/email-notices/myCRED-addon-email-notices.php:124
989
+ #: addons/email-notices/myCRED-addon-email-notices.php:130
990
+ #: addons/email-notices/myCRED-addon-email-notices.php:136
991
+ #: addons/email-notices/myCRED-addon-email-notices.php:192
992
+ #: addons/email-notices/myCRED-addon-email-notices.php:193
993
+ msgid "Email Notifications"
994
+ msgstr ""
995
+
996
+ #: addons/email-notices/myCRED-addon-email-notices.php:125
997
+ msgid "Email Notification"
998
+ msgstr ""
999
+
1000
+ #: addons/email-notices/myCRED-addon-email-notices.php:128
1001
+ msgid "Edit Email Notification"
1002
+ msgstr ""
1003
+
1004
+ #: addons/email-notices/myCRED-addon-email-notices.php:129
1005
+ msgid "New Email Notification"
1006
+ msgstr ""
1007
+
1008
+ #: addons/email-notices/myCRED-addon-email-notices.php:132
1009
+ msgid "Search Email Notifications"
1010
+ msgstr ""
1011
+
1012
+ #: addons/email-notices/myCRED-addon-email-notices.php:133
1013
+ msgid "No email notifications found"
1014
+ msgstr ""
1015
+
1016
+ #: addons/email-notices/myCRED-addon-email-notices.php:134
1017
+ msgid "No email notifications found in Trash"
1018
+ msgstr ""
1019
+
1020
+ #: addons/email-notices/myCRED-addon-email-notices.php:172
1021
+ msgid "Email Notice Activated."
1022
+ msgstr ""
1023
+
1024
+ #: addons/email-notices/myCRED-addon-email-notices.php:347
1025
+ #: addons/email-notices/myCRED-addon-email-notices.php:588
1026
+ msgid "All types"
1027
+ msgstr ""
1028
+
1029
+ #: addons/email-notices/myCRED-addon-email-notices.php:706
1030
+ msgid "Instance Related"
1031
+ msgstr ""
1032
+
1033
+ #: addons/email-notices/myCRED-addon-email-notices.php:712
1034
+ msgid "The users new balance"
1035
+ msgstr ""
1036
+
1037
+ #: addons/email-notices/myCRED-addon-email-notices.php:720
1038
+ msgid "The users old balance"
1039
+ msgstr ""
1040
+
1041
+ #: addons/email-notices/myCRED-addon-email-notices.php:728
1042
+ msgid "The amount of points gained or lost in this instance"
1043
+ msgstr ""
1044
+
1045
+ #: addons/email-notices/myCRED-addon-email-notices.php:736
1046
+ msgid "The log entry"
1047
+ msgstr ""
1048
+
1049
+ #: addons/email-notices/myCRED-addon-email-notices.php:741
1050
+ msgid "You can also use %s."
1051
+ msgstr ""
1052
+
1053
+ #: addons/email-notices/myCRED-addon-email-notices.php:741
1054
+ msgid "user related template tags"
1055
+ msgstr ""
1056
+
1057
+ #: addons/email-notices/myCRED-addon-email-notices.php:872
1058
+ msgid "Badge Add-on"
1059
+ msgstr ""
1060
+
1061
+ #: addons/email-notices/myCRED-addon-email-notices.php:873
1062
+ msgid "user gains a badge"
1063
+ msgstr ""
1064
+
1065
+ #: addons/stats/myCRED-addon-stats.php:58
1066
+ msgid "Statistics"
1067
+ msgstr ""
1068
+
1069
+ #: addons/stats/myCRED-addon-stats.php:172
1070
+ msgid "Statistics Color"
1071
+ msgstr ""
1072
+
1073
+ #: addons/stats/myCRED-addon-stats.php:176
1074
+ msgid "Positive Values"
1075
+ msgstr ""
1076
+
1077
+ #: addons/stats/myCRED-addon-stats.php:182
1078
+ msgid "Negative Values"
1079
+ msgstr ""
1080
+
1081
+ #: addons/stats/myCRED-addon-stats.php:248
1082
+ msgid "Overview"
1083
+ msgstr ""
1084
+
1085
+ #: addons/stats/myCRED-addon-stats.php:310
1086
+ msgid "Refresh"
1087
+ msgstr ""
1088
+
1089
+ #: addons/stats/myCRED-addon-stats.php:417
1090
+ msgid "Your log is empty. No statistics can be shown."
1091
+ msgstr ""
1092
+
1093
+ #: addons/badges/myCRED-addon-badges.php:275
1094
+ msgid "Badge Enabled."
1095
+ msgstr ""
1096
+
1097
+ #: addons/badges/myCRED-addon-badges.php:276
1098
+ msgid "Badge Saved."
1099
+ msgstr ""
1100
+
1101
+ #: addons/badges/myCRED-addon-badges.php:398
1102
+ msgid "First Level"
1103
+ msgstr ""
1104
+
1105
+ #: addons/badges/myCRED-addon-badges.php:510
1106
+ #: addons/badges/myCRED-addon-badges.php:801
1107
+ msgid "Add Level"
1108
+ msgstr ""
1109
+
1110
+ #: addons/badges/myCRED-addon-badges.php:511
1111
+ #: addons/badges/myCRED-addon-badges.php:802
1112
+ msgid "Remove Level"
1113
+ msgstr ""
1114
+
1115
+ #: addons/badges/myCRED-addon-badges.php:512
1116
+ #: addons/badges/myCRED-addon-badges.php:755
1117
+ #: addons/badges/myCRED-addon-badges.php:818
1118
+ #: addons/badges/myCRED-addon-badges.php:823
1119
+ msgid "Set Image"
1120
+ msgstr ""
1121
+
1122
+ #: addons/badges/myCRED-addon-badges.php:513
1123
+ #: addons/badges/myCRED-addon-badges.php:755
1124
+ #: addons/badges/myCRED-addon-badges.php:823
1125
+ msgid "Change Image"
1126
+ msgstr ""
1127
+
1128
+ #: addons/badges/myCRED-addon-badges.php:514
1129
+ msgid "Are you sure you want to remove this level?"
1130
+ msgstr ""
1131
+
1132
+ #: addons/badges/myCRED-addon-badges.php:515
1133
+ #: addons/badges/myCRED-addon-badges.php:819
1134
+ #: addons/badges/myCRED-addon-badges.php:1288
1135
+ msgid "Level"
1136
+ msgstr ""
1137
+
1138
+ #: addons/badges/myCRED-addon-badges.php:518
1139
+ #: addons/badges/myCRED-addon-badges.php:921
1140
+ #: addons/badges/includes/mycred-badge-functions.php:271
1141
+ msgctxt "Comparison of badge requirements. A AND B"
1142
+ msgid "AND"
1143
+ msgstr ""
1144
+
1145
+ #: addons/badges/myCRED-addon-badges.php:519
1146
+ #: addons/badges/myCRED-addon-badges.php:921
1147
+ #: addons/badges/includes/mycred-badge-functions.php:269
1148
+ msgctxt "Comparison of badge requirements. A OR B"
1149
+ msgid "OR"
1150
+ msgstr ""
1151
+
1152
+ #: addons/badges/myCRED-addon-badges.php:571
1153
+ msgid "Badge Setup"
1154
+ msgstr ""
1155
+
1156
+ #: addons/badges/myCRED-addon-badges.php:580
1157
+ msgid "Default Badge Image"
1158
+ msgstr ""
1159
+
1160
+ #: addons/badges/myCRED-addon-badges.php:722
1161
+ #: addons/badges/includes/mycred-badge-functions.php:287
1162
+ msgid "This badge is manually awarded."
1163
+ msgstr ""
1164
+
1165
+ #: addons/badges/myCRED-addon-badges.php:758
1166
+ msgid "Optional image to show when a user has not earned this badge."
1167
+ msgstr ""
1168
+
1169
+ #: addons/badges/myCRED-addon-badges.php:825
1170
+ msgid "Level %d"
1171
+ msgstr ""
1172
+
1173
+ #: addons/badges/myCRED-addon-badges.php:849
1174
+ msgid "Select Point Type"
1175
+ msgstr ""
1176
+
1177
+ #: addons/badges/myCRED-addon-badges.php:863
1178
+ msgid "Select Reference"
1179
+ msgstr ""
1180
+
1181
+ #: addons/badges/myCRED-addon-badges.php:939
1182
+ msgid "Reward"
1183
+ msgstr ""
1184
+
1185
+ #: addons/badges/myCRED-addon-badges.php:1163
1186
+ #: addons/badges/myCRED-addon-badges.php:1199
1187
+ msgid "Show all badges, including badges users have not yet earned."
1188
+ msgstr ""
1189
+
1190
+ #: addons/badges/myCRED-addon-badges.php:1251
1191
+ msgid "No image set"
1192
+ msgstr ""
1193
+
1194
+ #: addons/badges/myCRED-addon-badges.php:1283
1195
+ msgid "Select a level"
1196
+ msgstr ""
1197
+
1198
+ #: addons/badges/myCRED-addon-badges.php:1297
1199
+ msgid "Earned"
1200
+ msgstr ""
1201
+
1202
+ #: addons/badges/myCRED-addon-badges.php:1406
1203
+ msgid "A total of %d users have received this badge."
1204
+ msgstr ""
1205
+
1206
+ #: addons/badges/myCRED-addon-badges.php:1433
1207
+ msgid "No connections where removed."
1208
+ msgstr ""
1209
+
1210
+ #: addons/coupons/myCRED-addon-coupons.php:249
1211
+ msgid "Used"
1212
+ msgstr ""
1213
+
1214
+ #: addons/coupons/myCRED-addon-coupons.php:296
1215
+ msgid "1 time"
1216
+ msgid_plural "%d times"
1217
+ msgstr[0] ""
1218
+ msgstr[1] ""
1219
+
1220
+ #: addons/coupons/myCRED-addon-coupons.php:453
1221
+ msgid "Coupon Usage"
1222
+ msgstr ""
1223
+
1224
+ #: addons/coupons/myCRED-addon-coupons.php:536
1225
+ msgid "The maximum number of times this coupon can be used."
1226
+ msgstr ""
1227
+
1228
+ #: addons/sell-content/myCRED-addon-sell-content.php:128
1229
+ msgid "Sell Content Add-on Update Required"
1230
+ msgstr ""
1231
+
1232
+ #: addons/sell-content/myCRED-addon-sell-content.php:129
1233
+ msgid ""
1234
+ "Before continuing to use this add-on you must setup and save your settings."
1235
+ msgstr ""
1236
+
1237
+ #: addons/sell-content/myCRED-addon-sell-content.php:235
1238
+ msgid "Users profit share when their content is purchased."
1239
+ msgstr ""
1240
+
1241
+ #: addons/sell-content/myCRED-addon-sell-content.php:251
1242
+ #: addons/sell-content/myCRED-addon-sell-content.php:266
1243
+ msgctxt "Points Name"
1244
+ msgid "%s Profit Share"
1245
+ msgstr ""
1246
+
1247
+ #: addons/sell-content/myCRED-addon-sell-content.php:254
1248
+ msgid "Not accepted as payment."
1249
+ msgstr ""
1250
+
1251
+ #: addons/sell-content/myCRED-addon-sell-content.php:269
1252
+ msgctxt "Points Name"
1253
+ msgid "User can not pay using %s"
1254
+ msgstr ""
1255
+
1256
+ #: addons/sell-content/myCRED-addon-sell-content.php:281
1257
+ msgctxt "Buying Points"
1258
+ msgid "%s Profit Share"
1259
+ msgstr ""
1260
+
1261
+ #: addons/sell-content/myCRED-addon-sell-content.php:284
1262
+ msgid "Leave empty to use the default."
1263
+ msgstr ""
1264
+
1265
+ #: addons/sell-content/myCRED-addon-sell-content.php:369
1266
+ msgid "Select all the post types you want to sell."
1267
+ msgstr ""
1268
+
1269
+ #: addons/sell-content/myCRED-addon-sell-content.php:385
1270
+ msgid "You must select at least one post type to sell."
1271
+ msgstr ""
1272
+
1273
+ #: addons/sell-content/myCRED-addon-sell-content.php:439
1274
+ msgid "Select all the point types accepted as payment."
1275
+ msgstr ""
1276
+
1277
+ #: addons/sell-content/myCRED-addon-sell-content.php:458
1278
+ msgid "You must select at least one point type to accept as payment."
1279
+ msgstr ""
1280
+
1281
+ #: addons/sell-content/myCRED-addon-sell-content.php:501
1282
+ #: addons/sell-content/myCRED-addon-sell-content.php:909
1283
+ msgid "Expiration"
1284
+ msgstr ""
1285
+
1286
+ #: addons/sell-content/myCRED-addon-sell-content.php:502
1287
+ #: addons/sell-content/myCRED-addon-sell-content.php:849
1288
+ #: addons/sell-content/includes/mycred-sell-shortcodes.php:181
1289
+ msgid "Hour(s)"
1290
+ msgstr ""
1291
+
1292
+ #: addons/sell-content/myCRED-addon-sell-content.php:503
1293
+ #: addons/sell-content/myCRED-addon-sell-content.php:508
1294
+ #: addons/banking/services/mycred-service-payouts.php:768
1295
+ #: addons/banking/services/mycred-service-payouts.php:775
1296
+ msgid "Use zero to disable."
1297
+ msgstr ""
1298
+
1299
+ #: addons/sell-content/myCRED-addon-sell-content.php:515
1300
+ msgid "Use %price% to show the price set for each post."
1301
+ msgstr ""
1302
+
1303
+ #: addons/sell-content/myCRED-addon-sell-content.php:518
1304
+ msgid "Button CSS Classes"
1305
+ msgstr ""
1306
+
1307
+ #: addons/sell-content/myCRED-addon-sell-content.php:524
1308
+ msgid "Payment log entry template"
1309
+ msgstr ""
1310
+
1311
+ #: addons/sell-content/myCRED-addon-sell-content.php:529
1312
+ msgid "Profit Share payout log entry template"
1313
+ msgstr ""
1314
+
1315
+ #: addons/sell-content/myCRED-addon-sell-content.php:531
1316
+ msgid "Only used if profit sharing is enabled for this point type."
1317
+ msgstr ""
1318
+
1319
+ #: addons/sell-content/myCRED-addon-sell-content.php:542
1320
+ msgid "Transactions"
1321
+ msgstr ""
1322
+
1323
+ #: addons/sell-content/myCRED-addon-sell-content.php:545
1324
+ msgid "Reload page after successful payments."
1325
+ msgstr ""
1326
+
1327
+ #: addons/sell-content/myCRED-addon-sell-content.php:550
1328
+ msgid ""
1329
+ "Option to show a custom button label while the payment is being processed. "
1330
+ "HTML is allowed."
1331
+ msgstr ""
1332
+
1333
+ #: addons/sell-content/myCRED-addon-sell-content.php:556
1334
+ msgid "Members"
1335
+ msgstr ""
1336
+
1337
+ #: addons/sell-content/myCRED-addon-sell-content.php:557
1338
+ msgid ""
1339
+ "The template to use when a content is viewed by a member that is logged in "
1340
+ "and can afford to pay. Only applied to content that is set for sale."
1341
+ msgstr ""
1342
+
1343
+ #: addons/sell-content/myCRED-addon-sell-content.php:574
1344
+ msgid ""
1345
+ "The template to use when a content is viewed by someone who is not logged in."
1346
+ " Only applied to content that is set for sale."
1347
+ msgstr ""
1348
+
1349
+ #: addons/sell-content/myCRED-addon-sell-content.php:592
1350
+ msgid ""
1351
+ "The template to use when a content is viewed by a member that is logged but "
1352
+ "can not afford to buy. Only applied to content that is set for sale."
1353
+ msgstr ""
1354
+
1355
+ #: addons/sell-content/myCRED-addon-sell-content.php:886
1356
+ msgid "Never expires"
1357
+ msgstr ""
1358
+
1359
+ #: addons/banking/services/mycred-service-central.php:110
1360
+ msgid "Central Bank Account"
1361
+ msgstr ""
1362
+
1363
+ #: addons/banking/services/mycred-service-central.php:113
1364
+ msgid "The ID of the user representing the central bank."
1365
+ msgstr ""
1366
+
1367
+ #: addons/banking/services/mycred-service-interest.php:429
1368
+ msgid "Daily Compound Schedule"
1369
+ msgstr ""
1370
+
1371
+ #: addons/banking/services/mycred-service-interest.php:432
1372
+ #: addons/banking/services/mycred-service-interest.php:457
1373
+ #: addons/banking/services/mycred-service-payouts.php:728
1374
+ msgid "Year"
1375
+ msgstr ""
1376
+
1377
+ #: addons/banking/services/mycred-service-interest.php:433
1378
+ #: addons/banking/services/mycred-service-interest.php:458
1379
+ #: addons/banking/services/mycred-service-payouts.php:734
1380
+ #: addons/banking/includes/mycred-banking-functions.php:95
1381
+ msgid "Month"
1382
+ msgstr ""
1383
+
1384
+ #: addons/banking/services/mycred-service-interest.php:434
1385
+ #: addons/banking/services/mycred-service-interest.php:459
1386
+ #: addons/banking/includes/mycred-banking-functions.php:85
1387
+ msgid "Day"
1388
+ msgstr ""
1389
+
1390
+ #: addons/banking/services/mycred-service-interest.php:454
1391
+ msgid "Payout Schedule"
1392
+ msgstr ""
1393
+
1394
+ #: addons/banking/services/mycred-service-interest.php:493
1395
+ msgid "Payout Frequency"
1396
+ msgstr ""
1397
+
1398
+ #: addons/banking/services/mycred-service-interest.php:506
1399
+ msgid "Payout Log Table"
1400
+ msgstr ""
1401
+
1402
+ #: addons/banking/services/mycred-service-interest.php:519
1403
+ msgid ""
1404
+ "Changing the payout period once the service is enabled, will only take "
1405
+ "effect once the currently scheduled payout runs. To change this, you will "
1406
+ "also need to adjust the payout schedule above."
1407
+ msgstr ""
1408
+
1409
+ #: addons/banking/services/mycred-service-interest.php:524
1410
+ msgid "Exclude by ID"
1411
+ msgstr ""
1412
+
1413
+ #: addons/banking/services/mycred-service-interest.php:535
1414
+ msgid "Exclude by Role"
1415
+ msgstr ""
1416
+
1417
+ #: addons/banking/services/mycred-service-interest.php:539
1418
+ msgid "Roles to exclude"
1419
+ msgstr ""
1420
+
1421
+ #: addons/banking/services/mycred-service-interest.php:655
1422
+ msgid "Leave empty to pay the default rate."
1423
+ msgstr ""
1424
+
1425
+ #: addons/banking/services/mycred-service-payouts.php:30
1426
+ msgid "Waiting to Start"
1427
+ msgstr ""
1428
+
1429
+ #: addons/banking/services/mycred-service-payouts.php:32
1430
+ msgid "Running"
1431
+ msgstr ""
1432
+
1433
+ #: addons/banking/services/mycred-service-payouts.php:33
1434
+ msgid "Finished"
1435
+ msgstr ""
1436
+
1437
+ #: addons/banking/services/mycred-service-payouts.php:34
1438
+ msgid "Stopped"
1439
+ msgstr ""
1440
+
1441
+ #: addons/banking/services/mycred-service-payouts.php:446
1442
+ msgid "Not yet started"
1443
+ msgstr ""
1444
+
1445
+ #: addons/banking/services/mycred-service-payouts.php:457
1446
+ msgid "Currently Running"
1447
+ msgstr ""
1448
+
1449
+ #: addons/banking/services/mycred-service-payouts.php:472
1450
+ msgid "View Schedule"
1451
+ msgstr ""
1452
+
1453
+ #: addons/banking/services/mycred-service-payouts.php:472
1454
+ #: addons/stats/widgets/mycred-stats-widget-daily-loses.php:151
1455
+ #: addons/stats/widgets/mycred-stats-widget-daily-gains.php:151
1456
+ msgid "View"
1457
+ msgstr ""
1458
+
1459
+ #: addons/banking/services/mycred-service-payouts.php:472
1460
+ msgid "Delete Schedule"
1461
+ msgstr ""
1462
+
1463
+ #: addons/banking/services/mycred-service-payouts.php:523
1464
+ #: addons/banking/services/mycred-service-payouts.php:766
1465
+ msgid "Min. Balance"
1466
+ msgstr ""
1467
+
1468
+ #: addons/banking/services/mycred-service-payouts.php:526
1469
+ #: addons/banking/services/mycred-service-payouts.php:773
1470
+ msgid "Max. Balance"
1471
+ msgstr ""
1472
+
1473
+ #: addons/banking/services/mycred-service-payouts.php:531
1474
+ msgid "Exclude Users"
1475
+ msgstr ""
1476
+
1477
+ #: addons/banking/services/mycred-service-payouts.php:533
1478
+ msgid "Include Users"
1479
+ msgstr ""
1480
+
1481
+ #: addons/banking/services/mycred-service-payouts.php:540
1482
+ msgid "Exclude Roles"
1483
+ msgstr ""
1484
+
1485
+ #: addons/banking/services/mycred-service-payouts.php:542
1486
+ msgid "Include Roles"
1487
+ msgstr ""
1488
+
1489
+ #: addons/banking/services/mycred-service-payouts.php:559
1490
+ #: addons/banking/services/mycred-service-payouts.php:879
1491
+ msgid "Job Title"
1492
+ msgstr ""
1493
+
1494
+ #: addons/banking/services/mycred-service-payouts.php:573
1495
+ msgid "Start Date"
1496
+ msgstr ""
1497
+
1498
+ #: addons/banking/services/mycred-service-payouts.php:579
1499
+ msgid "Eligible"
1500
+ msgstr ""
1501
+
1502
+ #: addons/banking/services/mycred-service-payouts.php:580
1503
+ msgid "1 User"
1504
+ msgid_plural "%d Users"
1505
+ msgstr[0] ""
1506
+ msgstr[1] ""
1507
+
1508
+ #: addons/banking/services/mycred-service-payouts.php:585
1509
+ msgid "Runs"
1510
+ msgstr ""
1511
+
1512
+ #: addons/banking/services/mycred-service-payouts.php:586
1513
+ msgid "Infinite"
1514
+ msgstr ""
1515
+
1516
+ #: addons/banking/services/mycred-service-payouts.php:609
1517
+ msgid "Will payout even if the central bank account has run out of funds."
1518
+ msgstr ""
1519
+
1520
+ #: addons/banking/services/mycred-service-payouts.php:614
1521
+ msgid "Paid Out"
1522
+ msgstr ""
1523
+
1524
+ #: addons/banking/services/mycred-service-payouts.php:615
1525
+ msgid "Completed"
1526
+ msgstr ""
1527
+
1528
+ #: addons/banking/services/mycred-service-payouts.php:616
1529
+ msgid "Misses"
1530
+ msgstr ""
1531
+
1532
+ #: addons/banking/services/mycred-service-payouts.php:617
1533
+ msgid "Runs Left"
1534
+ msgstr ""
1535
+
1536
+ #: addons/banking/services/mycred-service-payouts.php:637
1537
+ msgid ""
1538
+ "A miss is when a payout was declined by the plugin. This can be due to "
1539
+ "custom code declining the payout or if the user is excluded."
1540
+ msgstr ""
1541
+
1542
+ #: addons/banking/services/mycred-service-payouts.php:682
1543
+ msgid "Schedule Title"
1544
+ msgstr ""
1545
+
1546
+ #: addons/banking/services/mycred-service-payouts.php:694
1547
+ #: addons/banking/services/mycred-service-payouts.php:881
1548
+ msgid "Frequency"
1549
+ msgstr ""
1550
+
1551
+ #: addons/banking/services/mycred-service-payouts.php:715
1552
+ msgid "Payout even if the central bank account runs out of funds."
1553
+ msgstr ""
1554
+
1555
+ #: addons/banking/services/mycred-service-payouts.php:722
1556
+ msgid "First Payout"
1557
+ msgstr ""
1558
+
1559
+ #: addons/banking/services/mycred-service-payouts.php:754
1560
+ msgid "Repeat"
1561
+ msgstr ""
1562
+
1563
+ #: addons/banking/services/mycred-service-payouts.php:756
1564
+ msgid "Use -1 for infinite runs."
1565
+ msgstr ""
1566
+
1567
+ #: addons/banking/services/mycred-service-payouts.php:784
1568
+ msgid "Limit by ID"
1569
+ msgstr ""
1570
+
1571
+ #: addons/banking/services/mycred-service-payouts.php:798
1572
+ msgid "Limit by Role(s)"
1573
+ msgstr ""
1574
+
1575
+ #: addons/banking/services/mycred-service-payouts.php:825
1576
+ msgid "Schedule"
1577
+ msgstr ""
1578
+
1579
+ #: addons/banking/services/mycred-service-payouts.php:846
1580
+ msgid "Include:"
1581
+ msgstr ""
1582
+
1583
+ #: addons/banking/services/mycred-service-payouts.php:847
1584
+ msgid "Exclude:"
1585
+ msgstr ""
1586
+
1587
+ #: addons/banking/services/mycred-service-payouts.php:872
1588
+ msgid ""
1589
+ "As long as this service remains disabled, none of your scheduled payouts "
1590
+ "will run!"
1591
+ msgstr ""
1592
+
1593
+ #: addons/banking/services/mycred-service-payouts.php:875
1594
+ msgid "Schedules"
1595
+ msgstr ""
1596
+
1597
+ #: addons/banking/services/mycred-service-payouts.php:882
1598
+ msgid "Last Ran"
1599
+ msgstr ""
1600
+
1601
+ #: addons/banking/services/mycred-service-payouts.php:883
1602
+ msgid "Next Run"
1603
+ msgstr ""
1604
+
1605
+ #: addons/banking/services/mycred-service-payouts.php:891
1606
+ msgid "No schedules found."
1607
+ msgstr ""
1608
+
1609
+ #: addons/banking/services/mycred-service-payouts.php:955
1610
+ msgid "Schedule Added"
1611
+ msgstr ""
1612
+
1613
+ #: addons/banking/services/mycred-service-payouts.php:962
1614
+ msgid ""
1615
+ "While the recurring payout has been successfully saved, based on the limits "
1616
+ "you set, right now there are no users that are eligible for a payout!"
1617
+ msgstr ""
1618
+
1619
+ #: addons/banking/services/mycred-service-payouts.php:974
1620
+ #: addons/banking/services/mycred-service-payouts.php:988
1621
+ msgid "Schedule not found. Please refresh this page and try again."
1622
+ msgstr ""
1623
+
1624
+ #: addons/banking/services/mycred-service-payouts.php:993
1625
+ msgid "Schedule Deleted"
1626
+ msgstr ""
1627
+
1628
+ #: addons/banking/includes/mycred-banking-functions.php:80
1629
+ msgid "Hour"
1630
+ msgstr ""
1631
+
1632
+ #: addons/banking/includes/mycred-banking-functions.php:90
1633
+ msgid "Week"
1634
+ msgstr ""
1635
+
1636
+ #: addons/banking/includes/mycred-banking-functions.php:100
1637
+ msgid "Quarter"
1638
+ msgstr ""
1639
+
1640
+ #: addons/banking/includes/mycred-banking-functions.php:105
1641
+ msgid "Semiannual"
1642
+ msgstr ""
1643
+
1644
+ #: addons/banking/includes/mycred-banking-functions.php:110
1645
+ msgid "Annual"
1646
+ msgstr ""
1647
+
1648
+ #: addons/banking/includes/mycred-banking-functions.php:283
1649
+ msgid "A title must be set."
1650
+ msgstr ""
1651
+
1652
+ #: addons/banking/includes/mycred-banking-functions.php:290
1653
+ msgid "The amount to payout can not be zero."
1654
+ msgstr ""
1655
+
1656
+ #: addons/banking/includes/mycred-banking-functions.php:296
1657
+ msgid "Start date can not be in the past."
1658
+ msgstr ""
1659
+
1660
+ #: addons/banking/includes/mycred-banking-functions.php:303
1661
+ msgid "Repeat can not be zero."
1662
+ msgstr ""
1663
+
1664
+ #: addons/banking/includes/mycred-banking-functions.php:309
1665
+ msgid "Duplicate schedule."
1666
+ msgstr ""
1667
+
1668
+ #: addons/gateway/carts/mycred-woocommerce.php:364
1669
+ msgctxt "%s = Point amount formatted"
1670
+ msgid "Refunded %s"
1671
+ msgstr ""
1672
+
1673
+ #: addons/transfer/includes/mycred-transfer-widgets.php:89
1674
+ #: addons/transfer/includes/mycred-transfer-widgets.php:93
1675
+ #: addons/transfer/includes/mycred-transfer-widgets.php:97
1676
+ #: addons/transfer/includes/mycred-transfer-widgets.php:109
1677
+ msgid "required"
1678
+ msgstr ""
1679
+
1680
+ #: addons/transfer/includes/mycred-transfer-widgets.php:100
1681
+ #: addons/transfer/includes/mycred-transfer-shortcodes.php:31
1682
+ #: addons/buy-creds/modules/buycred-module-pending.php:565
1683
+ #: addons/buy-creds/modules/buycred-module-core.php:1475
1684
+ msgid "Recipient"
1685
+ msgstr ""
1686
+
1687
+ #: addons/transfer/includes/mycred-transfer-widgets.php:104
1688
+ msgid "Recipient Placeholder"
1689
+ msgstr ""
1690
+
1691
+ #: addons/transfer/includes/mycred-transfer-widgets.php:112
1692
+ msgid "Message for Excluded Users"
1693
+ msgstr ""
1694
+
1695
+ #: addons/stats/widgets/mycred-stats-widget-circulation.php:44
1696
+ msgid "Total %s:"
1697
+ msgstr ""
1698
+
1699
+ #: addons/stats/widgets/mycred-stats-widget-circulation.php:138
1700
+ #: addons/stats/widgets/mycred-stats-widget-circulation.php:267
1701
+ msgid "Total amount of %s in circulation"
1702
+ msgstr ""
1703
+
1704
+ #: addons/stats/widgets/mycred-stats-widget-circulation.php:171
1705
+ #: addons/stats/widgets/mycred-stats-widget-circulation.php:302
1706
+ msgid "Total gains (%)"
1707
+ msgstr ""
1708
+
1709
+ #: addons/stats/widgets/mycred-stats-widget-circulation.php:175
1710
+ #: addons/stats/widgets/mycred-stats-widget-circulation.php:306
1711
+ msgid "Total loses (%)"
1712
+ msgstr ""
1713
+
1714
+ #: addons/stats/widgets/mycred-stats-widget-circulation.php:179
1715
+ #: addons/stats/widgets/mycred-stats-widget-circulation.php:309
1716
+ msgid "Total Gained: %s"
1717
+ msgstr ""
1718
+
1719
+ #: addons/stats/widgets/mycred-stats-widget-circulation.php:179
1720
+ #: addons/stats/widgets/mycred-stats-widget-circulation.php:309
1721
+ msgid "Total Spent: %s"
1722
+ msgstr ""
1723
+
1724
+ #: addons/stats/widgets/mycred-stats-widget-circulation.php:193
1725
+ #: addons/stats/widgets/mycred-stats-widget-circulation.php:323
1726
+ msgid "This Year"
1727
+ msgstr ""
1728
+
1729
+ #: addons/stats/widgets/mycred-stats-widget-circulation.php:197
1730
+ #: addons/stats/widgets/mycred-stats-widget-circulation.php:199
1731
+ #: addons/stats/widgets/mycred-stats-widget-circulation.php:201
1732
+ #: addons/stats/widgets/mycred-stats-widget-circulation.php:203
1733
+ #: addons/stats/widgets/mycred-stats-widget-circulation.php:327
1734
+ #: addons/stats/widgets/mycred-stats-widget-circulation.php:329
1735
+ #: addons/stats/widgets/mycred-stats-widget-circulation.php:331
1736
+ #: addons/stats/widgets/mycred-stats-widget-circulation.php:333
1737
+ #: addons/badges/includes/mycred-badge-functions.php:267
1738
+ msgid "Gained"
1739
+ msgstr ""
1740
+
1741
+ #: addons/stats/widgets/mycred-stats-widget-circulation.php:198
1742
+ #: addons/stats/widgets/mycred-stats-widget-circulation.php:200
1743
+ #: addons/stats/widgets/mycred-stats-widget-circulation.php:202
1744
+ #: addons/stats/widgets/mycred-stats-widget-circulation.php:204
1745
+ #: addons/stats/widgets/mycred-stats-widget-circulation.php:328
1746
+ #: addons/stats/widgets/mycred-stats-widget-circulation.php:330
1747
+ #: addons/stats/widgets/mycred-stats-widget-circulation.php:332
1748
+ #: addons/stats/widgets/mycred-stats-widget-circulation.php:334
1749
+ #: addons/badges/includes/mycred-badge-functions.php:267
1750
+ msgid "Lost"
1751
+ msgstr ""
1752
+
1753
+ #: addons/stats/widgets/mycred-stats-widget-daily-loses.php:118
1754
+ msgid ""
1755
+ "Most common ways your users have lost or spent points during this period."
1756
+ msgstr ""
1757
+
1758
+ #: addons/stats/widgets/mycred-stats-widget-daily-loses.php:120
1759
+ msgid ""
1760
+ "Most common ways your users have lost or spent %_plural% during this period."
1761
+ msgstr ""
1762
+
1763
+ #: addons/stats/widgets/mycred-stats-widget-daily-loses.php:127
1764
+ msgid "Loses in the last 10 days"
1765
+ msgstr ""
1766
+
1767
+ #: addons/stats/widgets/mycred-stats-widget-daily-loses.php:166
1768
+ #: addons/stats/widgets/mycred-stats-widget-daily-gains.php:166
1769
+ msgid "No data found"
1770
+ msgstr ""
1771
+
1772
+ #: addons/stats/widgets/mycred-stats-widget-daily-gains.php:118
1773
+ msgid "Most common ways your users have gained points during this period."
1774
+ msgstr ""
1775
+
1776
+ #: addons/stats/widgets/mycred-stats-widget-daily-gains.php:120
1777
+ msgid "Most common ways your users have gained %_plural% during this period."
1778
+ msgstr ""
1779
+
1780
+ #: addons/stats/widgets/mycred-stats-widget-daily-gains.php:127
1781
+ msgid "Gains in the last 10 days"
1782
+ msgstr ""
1783
+
1784
+ #: addons/badges/includes/mycred-badge-functions.php:248
1785
+ msgid "Level %s"
1786
+ msgstr ""
1787
+
1788
+ #: addons/badges/includes/mycred-badge-functions.php:265
1789
+ msgctxt "\"Points\" for \"reference\" x times"
1790
+ msgid "%s for \"%s\" x %d"
1791
+ msgstr ""
1792
+
1793
+ #: addons/badges/includes/mycred-badge-functions.php:267
1794
+ msgctxt "\"Gained/Lost\" \"x points\" for \"reference\""
1795
+ msgid "%s %s for \"%s\""
1796
+ msgstr ""
1797
+
1798
+ #: addons/sell-content/includes/mycred-sell-functions.php:502
1799
+ msgctxt "Point type name"
1800
+ msgid "You can not pay using %s"
1801
+ msgstr ""
1802
+
1803
+ #: addons/sell-content/includes/mycred-sell-functions.php:763
1804
+ msgctxt "all post type name"
1805
+ msgid "All %s"
1806
+ msgstr ""
1807
+
1808
+ #: addons/sell-content/includes/mycred-sell-functions.php:767
1809
+ msgctxt "all post type name"
1810
+ msgid "%s I manually select"
1811
+ msgstr ""
1812
+
1813
+ #: addons/sell-content/includes/mycred-sell-functions.php:771
1814
+ msgctxt "%s = post type name"
1815
+ msgid "All %s except"
1816
+ msgstr ""
1817
+
1818
+ #: addons/sell-content/includes/mycred-sell-functions.php:772
1819
+ msgctxt "%s = post type name"
1820
+ msgid "Comma separated list of %s IDs to exclude"
1821
+ msgstr ""
1822
+
1823
+ #: addons/sell-content/includes/mycred-sell-functions.php:775
1824
+ msgctxt "%s = post type name"
1825
+ msgid "Only %s"
1826
+ msgstr ""
1827
+
1828
+ #: addons/sell-content/includes/mycred-sell-functions.php:776
1829
+ msgctxt "%s = post type name"
1830
+ msgid "Comma separated list of %s IDs"
1831
+ msgstr ""
1832
+
1833
+ #: addons/sell-content/includes/mycred-sell-functions.php:788
1834
+ msgctxt "e.g. Only \"Posts\" in \"Categories\""
1835
+ msgid "Only %s in %s"
1836
+ msgstr ""
1837
+
1838
+ #: addons/sell-content/includes/mycred-sell-functions.php:789
1839
+ #: addons/sell-content/includes/mycred-sell-functions.php:793
1840
+ #: addons/sell-content/includes/mycred-sell-functions.php:799
1841
+ #: addons/sell-content/includes/mycred-sell-functions.php:803
1842
+ msgctxt "%s = taxonomy name"
1843
+ msgid "Comma separated list of %s slugs"
1844
+ msgstr ""
1845
+
1846
+ #: addons/sell-content/includes/mycred-sell-functions.php:792
1847
+ msgctxt "e.g. Only \"Posts\" not in \"Categories\""
1848
+ msgid "Only %s not in %s"
1849
+ msgstr ""
1850
+
1851
+ #: addons/sell-content/includes/mycred-sell-functions.php:798
1852
+ msgctxt "e.g. Only \"Posts\" with \"Tags\""
1853
+ msgid "Only %s with %s"
1854
+ msgstr ""
1855
+
1856
+ #: addons/sell-content/includes/mycred-sell-functions.php:802
1857
+ msgctxt "e.g. Only \"Posts\" without \"Tags\""
1858
+ msgid "Only %s without %s"
1859
+ msgstr ""
1860
+
1861
+ #: addons/sell-content/includes/mycred-sell-shortcodes.php:233
1862
+ msgctxt "e.g. 10 hours"
1863
+ msgid "Purchase expires in %s"
1864
+ msgstr ""
1865
+
1866
+ #: addons/buy-creds/abstracts/mycred-abstract-payment-gateway.php:225
1867
+ msgctxt "%s is replaced with the point amount and name."
1868
+ msgid "Received new request to purchase %s."
1869
+ msgstr ""
1870
+
1871
+ #: addons/buy-creds/abstracts/mycred-abstract-payment-gateway.php:576
1872
+ msgid "First Name"
1873
+ msgstr ""
1874
+
1875
+ #: addons/buy-creds/abstracts/mycred-abstract-payment-gateway.php:582
1876
+ msgid "Last Name"
1877
+ msgstr ""
1878
+
1879
+ #: addons/buy-creds/abstracts/mycred-abstract-payment-gateway.php:590
1880
+ msgid "Address Line 1"
1881
+ msgstr ""
1882
+
1883
+ #: addons/buy-creds/abstracts/mycred-abstract-payment-gateway.php:598
1884
+ msgid "Address Line 2"
1885
+ msgstr ""
1886
+
1887
+ #: addons/buy-creds/abstracts/mycred-abstract-payment-gateway.php:606
1888
+ msgid "City"
1889
+ msgstr ""
1890
+
1891
+ #: addons/buy-creds/abstracts/mycred-abstract-payment-gateway.php:612
1892
+ msgid "Zip"
1893
+ msgstr ""
1894
+
1895
+ #: addons/buy-creds/abstracts/mycred-abstract-payment-gateway.php:620
1896
+ msgid "State"
1897
+ msgstr ""
1898
+
1899
+ #: addons/buy-creds/abstracts/mycred-abstract-payment-gateway.php:628
1900
+ msgid "Country"
1901
+ msgstr ""
1902
+
1903
+ #: addons/buy-creds/abstracts/mycred-abstract-payment-gateway.php:633
1904
+ msgid "Choose Country"
1905
+ msgstr ""
1906
+
1907
+ #: addons/buy-creds/abstracts/mycred-abstract-payment-gateway.php:691
1908
+ msgctxt "buyCRED order description"
1909
+ msgid "Item"
1910
+ msgstr ""
1911
+
1912
+ #: addons/buy-creds/modules/buycred-module-pending.php:200
1913
+ #: addons/buy-creds/modules/buycred-module-pending.php:201
1914
+ #: addons/buy-creds/modules/buycred-module-pending.php:202
1915
+ #: addons/buy-creds/modules/buycred-module-pending.php:203
1916
+ #: addons/buy-creds/modules/buycred-module-pending.php:204
1917
+ #: addons/buy-creds/modules/buycred-module-pending.php:205
1918
+ #: addons/buy-creds/modules/buycred-module-pending.php:206
1919
+ #: addons/buy-creds/modules/buycred-module-pending.php:207
1920
+ #: addons/buy-creds/modules/buycred-module-pending.php:208
1921
+ msgid "Payment Updated."
1922
+ msgstr ""
1923
+
1924
+ #: addons/buy-creds/modules/buycred-module-pending.php:236
1925
+ msgid "Pending payment successfully credited to account."
1926
+ msgstr ""
1927
+
1928
+ #: addons/buy-creds/modules/buycred-module-pending.php:238
1929
+ msgid "Failed to credit the pending payment to account."
1930
+ msgstr ""
1931
+
1932
+ #: addons/buy-creds/modules/buycred-module-pending.php:457
1933
+ msgid "Pending Payment"
1934
+ msgstr ""
1935
+
1936
+ #: addons/buy-creds/modules/buycred-module-pending.php:495
1937
+ msgid "Trash"
1938
+ msgstr ""
1939
+
1940
+ #: addons/buy-creds/modules/buycred-module-pending.php:559
1941
+ msgid "Payer"
1942
+ msgstr ""
1943
+
1944
+ #: addons/buy-creds/modules/buycred-module-pending.php:668
1945
+ msgid "Pending request created."
1946
+ msgstr ""
1947
+
1948
+ #: addons/buy-creds/modules/buycred-module-pending.php:716
1949
+ msgid "Pending payment updated by %s"
1950
+ msgstr ""
1951
+
1952
+ #: addons/buy-creds/modules/buycred-module-core.php:138
1953
+ msgid "Bank Transfer"
1954
+ msgstr ""
1955
+
1956
+ #: addons/buy-creds/modules/buycred-module-core.php:1092
1957
+ msgid "Users exchange rate when buying points."
1958
+ msgstr ""
1959
+
1960
+ #: addons/buy-creds/modules/buycred-module-core.php:1103
1961
+ msgid "buyCRED Exchange Rates"
1962
+ msgstr ""
1963
+
1964
+ #: addons/buy-creds/modules/buycred-module-core.php:1113
1965
+ msgctxt "Points Name"
1966
+ msgid "Buying %s"
1967
+ msgstr ""
1968
+
1969
+ #: addons/buy-creds/modules/buycred-module-core.php:1116
1970
+ msgid "This point type is not for sale."
1971
+ msgstr ""
1972
+
1973
+ #: addons/buy-creds/modules/buycred-module-core.php:1128
1974
+ #: addons/buy-creds/modules/buycred-module-core.php:1143
1975
+ msgctxt "Buying Points"
1976
+ msgid "Buying %s"
1977
+ msgstr ""
1978
+
1979
+ #: addons/buy-creds/modules/buycred-module-core.php:1131
1980
+ msgctxt "Points Name"
1981
+ msgid "User can not buy %s"
1982
+ msgstr ""
1983
+
1984
+ #: addons/buy-creds/modules/buycred-module-core.php:1146
1985
+ msgid "Leave empty to use the default rate."
1986
+ msgstr ""
1987
+
1988
+ #: addons/buy-creds/modules/buycred-module-core.php:1519
1989
+ msgid "Pay Using"
1990
+ msgstr ""
1991
+
1992
+ #: addons/buy-creds/includes/buycred-functions.php:115
1993
+ msgid "Unknown Gateway"
1994
+ msgstr ""
1995
+
1996
+ #: addons/buy-creds/gateways/bank-transfer.php:139
1997
+ msgid "Continue"
1998
+ msgstr ""
1999
+
2000
+ #: addons/buy-creds/gateways/bank-transfer.php:167
2001
+ msgid "Checkout Logo"
2002
+ msgstr ""
2003
+
2004
+ #: addons/buy-creds/gateways/bank-transfer.php:173
2005
+ msgid "Bank Account Information"
2006
+ msgstr ""
2007
+
2008
+ #: addons/buy-creds/gateways/bank-transfer.php:177
2009
+ msgid "Bank transfer details to show the user on the checkout page."
2010
+ msgstr ""
2011
+
2012
+ #: addons/buy-creds/gateways/paypal-standard.php:256
2013
+ msgctxt "Return label. %s = Website name"
2014
+ msgid "Return to %s"
2015
+ msgstr ""
2016
+
2017
+ #. Description of the plugin
2018
+ msgid "An adaptive points management system for WordPress powered websites."
2019
+ msgstr ""
2020
+
2021
+ #: mycred.php:564
2022
+ msgid "%s Log Import"
2023
+ msgstr "Registro de Importe %s"
2024
+
2025
+ #: mycred.php:565
2026
+ msgid "Import log entries via a CSV file."
2027
+ msgstr "Importa las entradas de registro atraves de un fichero CSV."
2028
+
2029
+ #: mycred.php:576
2030
+ msgid "%s Balance Import"
2031
+ msgstr "%s balance de Importar"
2032
+
2033
+ #: mycred.php:577
2034
+ msgid "Import balances."
2035
+ msgstr "Saldos Importar."
2036
+
2037
+ #: mycred.php:588
2038
+ msgid "%s CubePoints Import"
2039
+ msgstr "Importar CubePoints %s"
2040
+
2041
+ #: mycred.php:589 includes/importers/mycred-cubepoints.php:379
2042
+ msgid "Import CubePoints log entries and / or balances."
2043
+ msgstr "Importar las entradas de registro de CubePoints y/o saldos."
2044
+
2045
+ #: mycred.php:631 modules/mycred-module-management.php:314
2046
+ #: modules/mycred-module-settings.php:426 modules/mycred-module-log.php:466
2047
+ #: addons/transfer/myCRED-addon-transfer.php:139
2048
+ #: addons/ranks/myCRED-addon-ranks.php:986
2049
+ #: addons/ranks/myCRED-addon-ranks.php:1570
2050
+ #: addons/badges/myCRED-addon-badges.php:702
2051
+ #: addons/gateway/event-booking/mycred-eventsmanager.php:478
2052
+ msgid "Processing..."
2053
+ msgstr "Procesando..."
2054
+
2055
+ #: mycred.php:632
2056
+ msgid "Sent"
2057
+ msgstr "Enviado"
2058
+
2059
+ #: mycred.php:633
2060
+ msgid "Error - Try Again"
2061
+ msgstr "Error - Inténtelo de nuevo."
2062
+
2063
+ #: mycred.php:765
2064
+ msgid "No CubePoints log exists."
2065
+ msgstr "No existe ningun registro de CubePoints."
2066
+
2067
+ #: mycred.php:816 mycred.php:817
2068
+ msgid "About %s"
2069
+ msgstr "Sobre"
2070
+
2071
+ #: mycred.php:825 mycred.php:826
2072
+ msgid "Awesome People"
2073
+ msgstr "Gente genial"
2074
+
2075
+ #: mycred.php:863 modules/mycred-module-management.php:556
2076
+ #: addons/transfer/myCRED-addon-transfer.php:495
2077
+ #: addons/transfer/includes/mycred-transfer-shortcodes.php:33
2078
+ msgid "Balance"
2079
+ msgstr "Saldo"
2080
+
2081
+ #: mycred.php:930 modules/mycred-module-management.php:471
2082
+ #: modules/mycred-module-log.php:282 modules/mycred-module-log.php:283
2083
+ #: addons/buy-creds/modules/buycred-module-pending.php:460
2084
+ msgid "History"
2085
+ msgstr "Historial"
2086
+
2087
+ #: mycred.php:986 mycred.php:1007
2088
+ #: addons/email-notices/myCRED-addon-email-notices.php:273
2089
+ #: addons/banking/services/mycred-service-interest.php:477
2090
+ #: addons/gateway/event-booking/mycred-eventsmanager.php:537
2091
+ #: addons/gateway/event-booking/mycred-eventsmanager-pro.php:605
2092
+ msgid "Setup"
2093
+ msgstr "Configurar"
2094
+
2095
+ #: mycred.php:988 modules/mycred-module-settings.php:21
2096
+ #: modules/mycred-module-settings.php:22 modules/mycred-module-settings.php:23
2097
+ #: modules/mycred-module-network.php:164
2098
+ #: addons/stats/abstracts/mycred-abstract-stat-widget.php:106
2099
+ #: addons/buy-creds/modules/buycred-module-core.php:555
2100
+ msgid "Settings"
2101
+ msgstr "Configuraciones"
2102
+
2103
+ #: mycred.php:1029
2104
+ msgid ""
2105
+ "Make sure to backup your database and files before updating, in case "
2106
+ "anything goes wrong!"
2107
+ msgstr ""
2108
+ "Antes de actualizar, asegura crear copias de seguridad de su base de datos y "
2109
+ "archivo, por si acaso!"
2110
+
2111
+ #: abstracts/mycred-abstract-hook.php:90
2112
+ msgid "This Hook has no settings"
2113
+ msgstr "Este gancho no ha sido configurado"
2114
+
2115
+ #: abstracts/mycred-abstract-hook.php:283
2116
+ #: abstracts/mycred-abstract-hook.php:354 includes/mycred-functions.php:2672
2117
+ msgid "No limit"
2118
+ msgstr "Sin Limite"
2119
+
2120
+ #: abstracts/mycred-abstract-hook.php:355
2121
+ msgid "Once every 24 hours"
2122
+ msgstr "Una vez cada 24 horas"
2123
+
2124
+ #: abstracts/mycred-abstract-hook.php:356
2125
+ msgid "Once every 7 days"
2126
+ msgstr "Una vez cada 7 dias"
2127
+
2128
+ #: abstracts/mycred-abstract-hook.php:357
2129
+ msgid "Once per day (reset at midnight)"
2130
+ msgstr "Una vez al dia (reinicializado al medianoche)"
2131
+
2132
+ #: abstracts/mycred-abstract-hook.php:364
2133
+ #: addons/email-notices/myCRED-addon-email-notices.php:527
2134
+ #: addons/email-notices/myCRED-addon-email-notices.php:859
2135
+ #: addons/badges/myCRED-addon-badges.php:880
2136
+ #: addons/banking/abstracts/mycred-abstract-service.php:351
2137
+ #: addons/buy-creds/abstracts/mycred-abstract-payment-gateway.php:1126
2138
+ #: addons/buy-creds/abstracts/mycred-abstract-payment-gateway.php:1151
2139
+ #: addons/buy-creds/modules/buycred-module-core.php:380
2140
+ #: addons/buy-creds/modules/buycred-module-core.php:403
2141
+ #: addons/buy-creds/gateways/zombaio.php:406
2142
+ msgid "Select"
2143
+ msgstr "Seleccionar"
2144
+
2145
+ #: abstracts/mycred-abstract-module.php:400
2146
+ #: abstracts/mycred-abstract-module.php:410
2147
+ msgid "Surprise"
2148
+ msgstr "Sorpresa"
2149
+
2150
+ #: abstracts/mycred-abstract-module.php:528
2151
+ #: modules/mycred-module-network.php:98
2152
+ msgid "click to close"
2153
+ msgstr "haga clic para cerrar"
2154
+
2155
+ #: abstracts/mycred-abstract-module.php:529
2156
+ #: modules/mycred-module-network.php:99
2157
+ msgid "click to open"
2158
+ msgstr "haga clic para abrir"
2159
+
2160
+ #: abstracts/mycred-abstract-module.php:562
2161
+ #: modules/mycred-module-network.php:155
2162
+ #: addons/email-notices/myCRED-addon-email-notices.php:1472
2163
+ #: addons/gateway/event-booking/mycred-eventespresso3.php:451
2164
+ #: addons/buy-creds/modules/buycred-module-core.php:560
2165
+ msgid "Settings Updated"
2166
+ msgstr "Configuraciones Actualizadas"
2167
+
2168
+ #: modules/mycred-module-management.php:101
2169
+ msgid "Update Balance"
2170
+ msgstr "Actualizar Saldo"
2171
+
2172
+ #: modules/mycred-module-management.php:114
2173
+ msgid "User is excluded"
2174
+ msgstr "El Usuario ha sido excluido"
2175
+
2176
+ #: modules/mycred-module-management.php:122
2177
+ msgid "Log Entry can not be empty"
2178
+ msgstr "Entrada de registro no puede estar vacío"
2179
+
2180
+ #: modules/mycred-module-management.php:130 modules/mycred-module-log.php:225
2181
+ msgid "Amount can not be zero"
2182
+ msgstr "La Cantidad no Puede ser Cero"
2183
+
2184
+ #: modules/mycred-module-management.php:235 modules/mycred-module-log.php:94
2185
+ #: modules/mycred-module-log.php:914 includes/shortcodes/mycred_history.php:59
2186
+ #: includes/classes/class.query-export.php:263
2187
+ #: includes/classes/class.query-export.php:399
2188
+ #: includes/classes/class.query-log.php:370
2189
+ #: includes/classes/class.query-log.php:383
2190
+ #: addons/banking/services/mycred-service-payouts.php:740
2191
+ #: addons/sell-content/includes/mycred-sell-shortcodes.php:185
2192
+ #: addons/buy-creds/modules/buycred-module-core.php:752
2193
+ msgid "Date"
2194
+ msgstr "Fecha"
2195
+
2196
+ #: modules/mycred-module-management.php:236
2197
+ #: addons/banking/services/mycred-service-interest.php:435
2198
+ #: addons/banking/services/mycred-service-interest.php:460
2199
+ #: addons/banking/services/mycred-service-payouts.php:746
2200
+ msgid "Time"
2201
+ msgstr "Tiempo"
2202
+
2203
+ #. need more context: entrada or inscripción
2204
+ #: modules/mycred-module-management.php:238 modules/mycred-module-log.php:96
2205
+ #: includes/shortcodes/mycred_history.php:61
2206
+ #: includes/classes/class.query-export.php:263
2207
+ #: includes/classes/class.query-export.php:406
2208
+ #: includes/classes/class.query-log.php:372
2209
+ #: includes/classes/class.query-log.php:385
2210
+ msgid "Entry"
2211
+ msgstr "Entrada"
2212
+
2213
+ #: modules/mycred-module-management.php:312
2214
+ msgid "Edit Users Balance"
2215
+ msgstr "Editar saldo del usuario"
2216
+
2217
+ #: modules/mycred-module-management.php:313
2218
+ #: modules/mycred-module-settings.php:431 modules/mycred-module-log.php:465
2219
+ #: addons/banking/myCRED-addon-banking.php:204
2220
+ msgid "Close"
2221
+ msgstr "Cerrar"
2222
+
2223
+ #: modules/mycred-module-management.php:451
2224
+ #: modules/mycred-module-management.php:569
2225
+ #: addons/sell-content/myCRED-addon-sell-content.php:268
2226
+ #: addons/buy-creds/modules/buycred-module-core.php:1130
2227
+ msgid "Excluded"
2228
+ msgstr "Excluido"
2229
+
2230
+ #: modules/mycred-module-management.php:461
2231
+ #: addons/coupons/myCRED-addon-coupons.php:307
2232
+ msgid "Total"
2233
+ msgstr "Total"
2234
+
2235
+ #: modules/mycred-module-management.php:472
2236
+ msgid "Adjust"
2237
+ msgstr "Modificar"
2238
+
2239
+ #: modules/mycred-module-management.php:581
2240
+ #: modules/mycred-module-management.php:581
2241
+ #: includes/classes/class.query-log.php:1074
2242
+ msgid "Edit"
2243
+ msgstr "Editar"
2244
+
2245
+ #: modules/mycred-module-management.php:581
2246
+ #: addons/buy-creds/abstracts/mycred-abstract-payment-gateway.php:479
2247
+ #: addons/buy-creds/modules/buycred-module-pending.php:734
2248
+ msgid "Cancel"
2249
+ msgstr "Cancelar"
2250
+
2251
+ #: modules/mycred-module-management.php:739
2252
+ #: addons/banking/services/mycred-service-payouts.php:553
2253
+ msgid "ID"
2254
+ msgstr "ID"
2255
+
2256
+ #: modules/mycred-module-management.php:751
2257
+ #: addons/gateway/event-booking/mycred-eventespresso3.php:307
2258
+ #: addons/gateway/event-booking/mycred-eventespresso3.php:332
2259
+ #: addons/gateway/event-booking/mycred-eventsmanager.php:412
2260
+ msgid "Current Balance"
2261
+ msgstr "Saldo Actual"
2262
+
2263
+ #: modules/mycred-module-management.php:766
2264
+ #: plugins/mycred-hook-affiliatewp.php:260
2265
+ #: includes/shortcodes/mycred_exchange.php:69
2266
+ #: includes/shortcodes/mycred_hook_table.php:80
2267
+ #: includes/classes/class.query-export.php:263
2268
+ #: includes/classes/class.query-export.php:383
2269
+ #: addons/transfer/includes/mycred-transfer-widgets.php:92
2270
+ #: addons/transfer/includes/mycred-transfer-shortcodes.php:32
2271
+ #: addons/buy-creds/abstracts/mycred-abstract-payment-gateway.php:692
2272
+ #: addons/buy-creds/modules/buycred-module-pending.php:289
2273
+ #: addons/buy-creds/modules/buycred-module-pending.php:631
2274
+ #: addons/buy-creds/modules/buycred-module-pending.php:749
2275
+ msgid "Amount"
2276
+ msgstr "Cantidad"
2277
+
2278
+ #: modules/mycred-module-management.php:768
2279
+ msgid "A positive or negative value"
2280
+ msgstr "Un valor positivo o negativo"
2281
+
2282
+ #: modules/mycred-module-management.php:794 modules/mycred-module-log.php:933
2283
+ #: addons/gateway/event-booking/mycred-eventespresso3.php:518
2284
+ msgid "Log Entry"
2285
+ msgstr "Entrada de Registro"
2286
+
2287
+ #: modules/mycred-module-management.php:795
2288
+ #: addons/transfer/includes/mycred-transfer-widgets.php:79
2289
+ #: addons/transfer/includes/mycred-transfer-widgets.php:101
2290
+ #: addons/transfer/includes/mycred-transfer-widgets.php:105
2291
+ #: addons/transfer/includes/mycred-transfer-widgets.php:113
2292
+ msgid "optional"
2293
+ msgstr "opcional"
2294
+
2295
+ #: modules/mycred-module-settings.php:138
2296
+ msgid "Accounts successfully reset"
2297
+ msgstr "Las cuentas fueron reiniciadas con éxito."
2298
+
2299
+ #: modules/mycred-module-settings.php:190
2300
+ msgid "No users found to export"
2301
+ msgstr "No se encontro usuarios para exportar"
2302
+
2303
+ #: modules/mycred-module-settings.php:427
2304
+ msgid ""
2305
+ "Warning! All entries in your log will be permanently removed! This can not "
2306
+ "be undone!"
2307
+ msgstr ""
2308
+ "¡Aviso! Todas las entradas en su registro seran permanentemente borrado! "
2309
+ "¡Esto no se puede deshacer!"
2310
+
2311
+ #: modules/mycred-module-settings.php:428
2312
+ msgid ""
2313
+ "All log entries belonging to deleted users will be permanently deleted! This "
2314
+ "can not be undone!"
2315
+ msgstr ""
2316
+ "¡Todas las entradas de registro perteneciendo al usuario seran "
2317
+ "permanentemente borradas! ¡Esto no se puede deshacer!"
2318
+
2319
+ #: modules/mycred-module-settings.php:429
2320
+ msgid "Warning! All user balances will be set to zero! This can not be undone!"
2321
+ msgstr ""
2322
+ "¡Aviso! ¡Todo los saldos del usuario seran puesto a cero! ¡Esto no se puede "
2323
+ "deshacer!"
2324
+
2325
+ #: modules/mycred-module-settings.php:430
2326
+ msgid "Done!"
2327
+ msgstr "¡Realizado!"
2328
+
2329
+ #: modules/mycred-module-settings.php:432
2330
+ msgid "Export users %plural%"
2331
+ msgstr "Exportar usuarios %plural%"
2332
+
2333
+ #: modules/mycred-module-settings.php:529
2334
+ msgid "%s Settings"
2335
+ msgstr "Configuración de %s"
2336
+
2337
+ #: modules/mycred-module-settings.php:538
2338
+ msgid "Core Settings"
2339
+ msgstr "Ajustes Basicos"
2340
+
2341
+ #: modules/mycred-module-settings.php:543 includes/mycred-setup.php:275
2342
+ #: addons/gateway/event-booking/mycred-eventespresso3.php:460
2343
+ #: addons/gateway/event-booking/mycred-eventsmanager.php:602
2344
+ #: addons/gateway/event-booking/mycred-eventsmanager-pro.php:686
2345
+ msgid "Labels"
2346
+ msgstr "Etiquetas"
2347
+
2348
+ #: modules/mycred-module-settings.php:561 includes/mycred-setup.php:293
2349
+ msgid "Format"
2350
+ msgstr "Formato"
2351
+
2352
+ #: modules/mycred-module-settings.php:565 includes/mycred-setup.php:297
2353
+ msgid "Prefix"
2354
+ msgstr "Prefijo"
2355
+
2356
+ #: modules/mycred-module-settings.php:571 includes/mycred-setup.php:303
2357
+ msgid "Separators"
2358
+ msgstr "Separadores"
2359
+
2360
+ #: modules/mycred-module-settings.php:579 includes/mycred-setup.php:311
2361
+ msgid "Decimals"
2362
+ msgstr "Decimales"
2363
+
2364
+ #: modules/mycred-module-settings.php:585 includes/mycred-setup.php:317
2365
+ msgid "Suffix"
2366
+ msgstr "Sufijo"
2367
+
2368
+ #: modules/mycred-module-settings.php:592
2369
+ msgid "Tip"
2370
+ msgstr "Pista"
2371
+
2372
+ #: modules/mycred-module-settings.php:599 includes/mycred-setup.php:328
2373
+ msgid "Security"
2374
+ msgstr "Seguridad"
2375
+
2376
+ #: modules/mycred-module-settings.php:646
2377
+ msgid "Delete log entries when user is deleted."
2378
+ msgstr "Elimina las entradas de registro cuando se elimina el usuario."
2379
+
2380
+ #: modules/mycred-module-settings.php:665
2381
+ msgid "Management"
2382
+ msgstr "Gestión"
2383
+
2384
+ #: modules/mycred-module-settings.php:677 modules/mycred-module-log.php:433
2385
+ msgid "Entries"
2386
+ msgstr "Entradas"
2387
+
2388
+ #: modules/mycred-module-settings.php:683
2389
+ #: modules/mycred-module-settings.php:708
2390
+ #: addons/ranks/myCRED-addon-ranks.php:1659
2391
+ #: addons/buy-creds/modules/buycred-module-pending.php:466
2392
+ #: addons/buy-creds/modules/buycred-module-pending.php:752
2393
+ msgid "Actions"
2394
+ msgstr "Acciones"
2395
+
2396
+ #: modules/mycred-module-settings.php:686
2397
+ msgid "Empty Log"
2398
+ msgstr "Registro Vacío"
2399
+
2400
+ #: modules/mycred-module-settings.php:702
2401
+ #: addons/ranks/myCRED-addon-ranks.php:1076
2402
+ #: addons/badges/myCRED-addon-badges.php:400
2403
+ msgid "Users"
2404
+ msgstr "Usuarios"
2405
+
2406
+ #: modules/mycred-module-settings.php:710
2407
+ msgid "Set all to zero"
2408
+ msgstr "Ajusta todo a cero"
2409
+
2410
+ #: modules/mycred-module-settings.php:727 includes/mycred-widgets.php:573
2411
+ #: addons/transfer/myCRED-addon-transfer.php:383
2412
+ #: addons/sell-content/myCRED-addon-sell-content.php:437
2413
+ #: addons/transfer/includes/mycred-transfer-widgets.php:108
2414
+ #: addons/buy-creds/modules/buycred-module-core.php:336
2415
+ msgid "Point Types"
2416
+ msgstr "Clase de Puntos"
2417
+
2418
+ #: modules/mycred-module-settings.php:741
2419
+ #: modules/mycred-module-settings.php:767
2420
+ #: modules/mycred-module-settings.php:797
2421
+ msgid "Meta Key"
2422
+ msgstr "Clave Meta"
2423
+
2424
+ #: modules/mycred-module-settings.php:747
2425
+ #: modules/mycred-module-settings.php:773
2426
+ #: modules/mycred-module-settings.php:803
2427
+ #: addons/email-notices/myCRED-addon-email-notices.php:575
2428
+ #: addons/gateway/carts/mycred-woocommerce.php:159
2429
+ msgid "Label"
2430
+ msgstr "Etiqueta"
2431
+
2432
+ #: modules/mycred-module-settings.php:754
2433
+ #: modules/mycred-module-settings.php:780
2434
+ #: includes/classes/class.query-log.php:492
2435
+ #: includes/classes/class.query-log.php:1075
2436
+ #: addons/banking/services/mycred-service-payouts.php:472
2437
+ #: addons/gateway/event-booking/mycred-eventsmanager-pro.php:496
2438
+ msgid "Delete"
2439
+ msgstr "Borrar"
2440
+
2441
+ #: modules/mycred-module-settings.php:793
2442
+ msgid "Add New Type"
2443
+ msgstr "Añadir Nuevo Clase"
2444
+
2445
+ #: modules/mycred-module-settings.php:821
2446
+ #: addons/gateway/event-booking/mycred-eventespresso3.php:551
2447
+ #: addons/buy-creds/modules/buycred-module-core.php:613
2448
+ msgid "Update Settings"
2449
+ msgstr "Actualizar Configuraciones"
2450
+
2451
+ #: modules/mycred-module-settings.php:830
2452
+ msgid "Identify users by"
2453
+ msgstr "Identifique usuarios por"
2454
+
2455
+ #: modules/mycred-module-settings.php:836
2456
+ msgid "User ID"
2457
+ msgstr "ID del Usuario"
2458
+
2459
+ #: modules/mycred-module-settings.php:837
2460
+ msgid "User Email"
2461
+ msgstr "Email de Usuario"
2462
+
2463
+ #: modules/mycred-module-settings.php:838
2464
+ msgid "User Login"
2465
+ msgstr "Ingreso de Usuario"
2466
+
2467
+ #: modules/mycred-module-settings.php:846
2468
+ msgid ""
2469
+ "Use ID if you intend to use this export as a backup of your current site "
2470
+ "while Email is recommended if you want to export to a different site."
2471
+ msgstr ""
2472
+ "Usa ID si deseas tener esta exportación como un respaldo de tu sitio, Usa "
2473
+ "Email si deseas exportar la data a otro sitio"
2474
+
2475
+ #: modules/mycred-module-settings.php:849
2476
+ msgid "Import Log Entry"
2477
+ msgstr "Importa la entrada de registro"
2478
+
2479
+ #: modules/mycred-module-settings.php:851
2480
+ msgid ""
2481
+ "Optional log entry to use if you intend to import this file in a different "
2482
+ "%s installation."
2483
+ msgstr ""
2484
+ "Usa la entrada de registro opcional si tiene la intención de importar este "
2485
+ "fichero en otra instalación %s."
2486
+
2487
+ #: modules/mycred-module-settings.php:854 modules/mycred-module-export.php:236
2488
+ #: modules/mycred-module-export.php:263 modules/mycred-module-export.php:313
2489
+ msgid "Export"
2490
+ msgstr "Exportar"
2491
+
2492
+ #: modules/mycred-module-addons.php:25 modules/mycred-module-addons.php:26
2493
+ #: includes/mycred-setup.php:171
2494
+ msgid "Add-ons"
2495
+ msgstr "Extensiones"
2496
+
2497
+ #: modules/mycred-module-addons.php:175
2498
+ msgid "Give your users badges based on their interaction with your website."
2499
+ msgstr ""
2500
+ "Dar insignias a tus usuarios basado en sus interacciones con tu sitio web."
2501
+
2502
+ #: modules/mycred-module-addons.php:186
2503
+ msgid ""
2504
+ "Setup recurring payouts or offer / charge interest on user account balances."
2505
+ msgstr ""
2506
+ "Configura los pagos recurrentes u ofrecer / cobrar interés sobre los saldos "
2507
+ "de las cuentas de usuarios."
2508
+
2509
+ #: modules/mycred-module-addons.php:197
2510
+ msgid ""
2511
+ "The <strong>buy</strong>CRED Add-on allows your users to buy points using "
2512
+ "PayPal, Skrill (Moneybookers) or NETbilling. <strong>buy</strong>CRED can "
2513
+ "also let your users buy points for other members."
2514
+ msgstr ""
2515
+ "La Extensión <strong>compra</strong>CRED permite que tus usuarios compren "
2516
+ "puntos utilizando PayPal, Skrill (Moneybookers) o NETbilling. <strong>"
2517
+ "compra</strong>CRED tambien permite que tus usuarios compren puntos para "
2518
+ "otros miembros."
2519
+
2520
+ #: modules/mycred-module-addons.php:208
2521
+ msgid ""
2522
+ "The coupons add-on allows you to create coupons that users can use to add "
2523
+ "points to their accounts."
2524
+ msgstr ""
2525
+ "Los cupones de add-on le permite crear cupones que los usuarios pueden "
2526
+ "utilizar para agregar puntos a sus cuentas."
2527
+
2528
+ #: modules/mycred-module-addons.php:219
2529
+ msgid "Create email notices for any type of myCRED instance."
2530
+ msgstr ""
2531
+ "Crea avisos por correo electrónico para cualquier tipo de instancias de "
2532
+ "myCRED."
2533
+
2534
+ #: modules/mycred-module-addons.php:230
2535
+ msgid ""
2536
+ "Let your users pay using their <strong>my</strong>CRED points balance. "
2537
+ "Supported Carts: WooCommerce, MarketPress and WP E-Commerce. Supported Event "
2538
+ "Bookings: Event Espresso and Events Manager (free & pro)."
2539
+ msgstr ""
2540
+ "Permite que tus usuarios paguen utilizando el saldo de sus puntos <strong>"
2541
+ "my</strong>CRED. Carritos soportados: WooCommerce, MarketPress and WP E-"
2542
+ "Commerce. Reservas de Eventos soportados: Event Espresso and Events Manager "
2543
+ "(gratis y pro)."
2544
+
2545
+ #: modules/mycred-module-addons.php:241
2546
+ msgid "Create pop-up notifications for when users gain or loose points."
2547
+ msgstr ""
2548
+ "Crear notificaciones pop-up cuando los usuarios ganan o pierden puntos."
2549
+
2550
+ #: modules/mycred-module-addons.php:253
2551
+ msgid ""
2552
+ "Create ranks for users reaching a certain number of %_plural% with the "
2553
+ "option to add logos for each rank."
2554
+ msgstr ""
2555
+ "Crear rangos para los usuarios que alcanzan a un cierto número de %_plural% "
2556
+ "con la opción de añadir logotipos para cada rango."
2557
+
2558
+ #: modules/mycred-module-addons.php:264
2559
+ msgid ""
2560
+ "This add-on allows you to sell posts, pages or any public post types on your "
2561
+ "website. You can either sell the entire content or using our shortcode, sell "
2562
+ "parts of your content allowing you to offer \"teasers\"."
2563
+ msgstr ""
2564
+ "Esta extensión permite que vendas posts, páginas o cualquier tipo de "
2565
+ "publicación en tu sitio web. Puedes venter contenidos enteros o utilizando "
2566
+ "el código corto (shortcode), vender partes de tu contenido permitiendote "
2567
+ "ofrecer \"avances\"."
2568
+
2569
+ #: modules/mycred-module-addons.php:286
2570
+ msgid ""
2571
+ "Allow your users to send or \"donate\" points to other members by either "
2572
+ "using the mycred_transfer shortcode or the myCRED Transfer widget."
2573
+ msgstr ""
2574
+ "Permite que los usuarios envien o \"donen\" puntos a otros miembros "
2575
+ "utilizando el código corto (shortcode) de mycred_transfer o el widget de "
2576
+ "Transferencia myCRED."
2577
+
2578
+ #: modules/mycred-module-addons.php:330
2579
+ msgid "%s Add-ons"
2580
+ msgstr "%s Extensiones (addons)"
2581
+
2582
+ #: modules/mycred-module-addons.php:337
2583
+ msgid "Add-on Activated"
2584
+ msgstr "Extensión Activado"
2585
+
2586
+ #: modules/mycred-module-addons.php:340
2587
+ msgid "Add-on Deactivated"
2588
+ msgstr "Extensión Desactivado"
2589
+
2590
+ #: modules/mycred-module-addons.php:405
2591
+ msgid "Activate Add-on"
2592
+ msgstr "Activar Extensión"
2593
+
2594
+ #: modules/mycred-module-addons.php:406
2595
+ msgid "Activate"
2596
+ msgstr "Activar"
2597
+
2598
+ #: modules/mycred-module-addons.php:412
2599
+ msgid "Deactivate Add-on"
2600
+ msgstr "Desactivar Extensión"
2601
+
2602
+ #: modules/mycred-module-addons.php:413
2603
+ msgid "Deactivate"
2604
+ msgstr "Desactivar"
2605
+
2606
+ #: modules/mycred-module-log.php:24 modules/mycred-module-log.php:25
2607
+ #: addons/gateway/event-booking/mycred-eventespresso3.php:515
2608
+ msgid "Log"
2609
+ msgstr "Registro"
2610
+
2611
+ #: modules/mycred-module-log.php:92 modules/mycred-module-log.php:910
2612
+ #: includes/shortcodes/mycred_history.php:58
2613
+ #: includes/classes/class.query-export.php:263
2614
+ #: includes/classes/class.query-export.php:371
2615
+ #: includes/classes/class.query-log.php:369
2616
+ #: includes/classes/class.query-log.php:381
2617
+ #: addons/email-notices/myCRED-addon-email-notices.php:332
2618
+ #: addons/email-notices/myCRED-addon-email-notices.php:565
2619
+ msgid "User"
2620
+ msgstr "Usuario"
2621
+
2622
+ #: modules/mycred-module-log.php:173
2623
+ msgid "Row Deleted"
2624
+ msgstr "Fila Borrado"
2625
+
2626
+ #: modules/mycred-module-log.php:232
2627
+ msgid "Log entry not found"
2628
+ msgstr "No se encontro la entrada de registro "
2629
+
2630
+ #: modules/mycred-module-log.php:464
2631
+ msgid "Edit Log Entry"
2632
+ msgstr "Edidar entrada de registro"
2633
+
2634
+ #: modules/mycred-module-log.php:468
2635
+ msgid "Are you sure you want to delete this log entry? This can not be undone!"
2636
+ msgstr ""
2637
+ "¿Esta seguro que quiere borrar esta entrada de registro? ¡Esto no se puede "
2638
+ "deshacer!"
2639
+
2640
+ #: modules/mycred-module-log.php:502
2641
+ msgid "Search results for"
2642
+ msgstr "Buscar entre resultados por"
2643
+
2644
+ #: modules/mycred-module-log.php:554
2645
+ msgid "%s Log"
2646
+ msgstr "Registro de %s"
2647
+
2648
+ #: modules/mycred-module-log.php:670
2649
+ msgid "My %s History"
2650
+ msgstr "Mi Historial de %s"
2651
+
2652
+ #: modules/mycred-module-network.php:61 modules/mycred-module-network.php:62
2653
+ #: addons/gateway/carts/mycred-woocommerce.php:29
2654
+ msgid "myCRED"
2655
+ msgstr "myCRED"
2656
+
2657
+ #: modules/mycred-module-network.php:71 modules/mycred-module-network.php:72
2658
+ msgid "Network Settings"
2659
+ msgstr "Configuración de la Red"
2660
+
2661
+ #: modules/mycred-module-network.php:135
2662
+ msgid "%s Network"
2663
+ msgstr "Red de %s"
2664
+
2665
+ #: modules/mycred-module-network.php:151
2666
+ msgid "Note! %s has not yet been setup."
2667
+ msgstr "¡Aviso! %s no ha sido configurado."
2668
+
2669
+ #: modules/mycred-module-network.php:158
2670
+ msgid "Configure network settings for %s."
2671
+ msgstr "Configure los parámetros de red para %s."
2672
+
2673
+ #: modules/mycred-module-network.php:166
2674
+ msgid "Master Template"
2675
+ msgstr "Plantilla Principal"
2676
+
2677
+ #: modules/mycred-module-network.php:170 modules/mycred-module-network.php:184
2678
+ #: addons/buy-creds/gateways/bitpay.php:299
2679
+ msgid "Yes"
2680
+ msgstr "Sí"
2681
+
2682
+ #: modules/mycred-module-network.php:174 modules/mycred-module-network.php:188
2683
+ #: addons/buy-creds/gateways/bitpay.php:298
2684
+ msgid "No"
2685
+ msgstr "No"
2686
+
2687
+ #: modules/mycred-module-network.php:177
2688
+ msgid ""
2689
+ "If enabled, %s will use your main site's settings for all other sites in "
2690
+ "your network."
2691
+ msgstr ""
2692
+ "Si activado, %s utilizara la configuración de tu sitio principal para todas "
2693
+ "los sitios en tu red."
2694
+
2695
+ #: modules/mycred-module-network.php:180
2696
+ msgid "Central Logging"
2697
+ msgstr "Central de Registro"
2698
+
2699
+ #: modules/mycred-module-network.php:191
2700
+ msgid "If enabled, %s will log all site actions in your main site's log."
2701
+ msgstr ""
2702
+ "Si está activado, %s registrará todas las acciones en el registro de tu "
2703
+ "sitio principal."
2704
+
2705
+ #: modules/mycred-module-network.php:194
2706
+ msgid "Site Block"
2707
+ msgstr "Bloqueo de Sitio"
2708
+
2709
+ #: modules/mycred-module-network.php:198
2710
+ msgid "Comma separated list of blog ids where %s is to be disabled."
2711
+ msgstr "Lista separada por comas de blog IDs donde %s se va a inhabilitar."
2712
+
2713
+ #: modules/mycred-module-network.php:210
2714
+ msgid "Save Network Settings"
2715
+ msgstr "Guardar las Configuraciones de la Eed"
2716
+
2717
+ #: modules/mycred-module-export.php:285 modules/mycred-module-export.php:332
2718
+ #: includes/classes/class.query-log.php:1140
2719
+ msgid ""
2720
+ "Log entries are exported to a CSV file and depending on the number of "
2721
+ "entries selected, the process may take a few seconds."
2722
+ msgstr ""
2723
+ "Se exporta las entradas de registro a un fichero CSV y dependiendo del "
2724
+ "número de entradas seleccionadas, el proceso puede tardar unos segundos."
2725
+
2726
+ #. also, "Inhabilitar"
2727
+ #: modules/mycred-module-export.php:353
2728
+ #: addons/sell-content/myCRED-addon-sell-content.php:253
2729
+ #: addons/sell-content/myCRED-addon-sell-content.php:337
2730
+ #: addons/buy-creds/modules/buycred-module-core.php:1115
2731
+ msgid "Disabled"
2732
+ msgstr "Desactivado"
2733
+
2734
+ #: modules/mycred-module-export.php:354
2735
+ #: addons/sell-content/myCRED-addon-sell-content.php:338
2736
+ msgid "Enabled"
2737
+ msgstr "Habilitado"
2738
+
2739
+ #: modules/mycred-module-export.php:400 modules/mycred-module-export.php:448
2740
+ #: includes/mycred-widgets.php:183 includes/mycred-widgets.php:365
2741
+ #: includes/importers/mycred-cubepoints.php:401
2742
+ #: includes/classes/class.query-export.php:263
2743
+ #: includes/classes/class.query-export.php:391
2744
+ #: addons/ranks/myCRED-addon-ranks.php:1079
2745
+ #: addons/ranks/myCRED-addon-ranks.php:1247
2746
+ #: addons/email-notices/myCRED-addon-email-notices.php:276
2747
+ #: addons/email-notices/myCRED-addon-email-notices.php:582
2748
+ #: addons/coupons/myCRED-addon-coupons.php:254
2749
+ #: addons/coupons/myCRED-addon-coupons.php:488
2750
+ #: addons/gateway/event-booking/mycred-eventespresso3.php:483
2751
+ #: addons/gateway/event-booking/mycred-eventsmanager.php:550
2752
+ #: addons/gateway/event-booking/mycred-eventsmanager-pro.php:611
2753
+ #: addons/gateway/carts/mycred-wpecommerce.php:383
2754
+ #: addons/gateway/carts/mycred-woocommerce.php:119
2755
+ #: addons/buy-creds/modules/buycred-module-pending.php:573
2756
+ #: addons/buy-creds/modules/buycred-module-pending.php:751
2757
+ msgid "Point Type"
2758
+ msgstr "Clase de Puntos"
2759
+
2760
+ #: modules/mycred-module-buddypress.php:31
2761
+ msgid "My History"
2762
+ msgstr "Mi Historial"
2763
+
2764
+ #: modules/mycred-module-buddypress.php:32
2765
+ msgid "%s's History"
2766
+ msgstr "La Historial de %s"
2767
+
2768
+ #: modules/mycred-module-buddypress.php:131
2769
+ msgid "Current balance"
2770
+ msgstr "Saldo Actual"
2771
+
2772
+ #: modules/mycred-module-buddypress.php:236
2773
+ #: modules/mycred-module-buddypress.php:249
2774
+ #: includes/classes/class.query-log.php:1194
2775
+ msgid "All"
2776
+ msgstr "Todo"
2777
+
2778
+ #: modules/mycred-module-buddypress.php:237
2779
+ #: includes/classes/class.query-log.php:1195
2780
+ #: addons/stats/widgets/mycred-stats-widget-circulation.php:190
2781
+ #: addons/stats/widgets/mycred-stats-widget-circulation.php:320
2782
+ msgid "Today"
2783
+ msgstr "Hoy"
2784
+
2785
+ #: modules/mycred-module-buddypress.php:238
2786
+ #: includes/classes/class.query-log.php:1196
2787
+ msgid "Yesterday"
2788
+ msgstr "Ayer"
2789
+
2790
+ #: modules/mycred-module-buddypress.php:239
2791
+ #: includes/classes/class.query-log.php:1197
2792
+ #: addons/stats/widgets/mycred-stats-widget-circulation.php:191
2793
+ #: addons/stats/widgets/mycred-stats-widget-circulation.php:321
2794
+ msgid "This Week"
2795
+ msgstr "Esta Semana"
2796
+
2797
+ #: modules/mycred-module-buddypress.php:240
2798
+ #: includes/classes/class.query-log.php:1198
2799
+ #: addons/stats/widgets/mycred-stats-widget-circulation.php:192
2800
+ #: addons/stats/widgets/mycred-stats-widget-circulation.php:322
2801
+ msgid "This Month"
2802
+ msgstr "Este Mes"
2803
+
2804
+ #: modules/mycred-module-buddypress.php:350
2805
+ msgid "Go"
2806
+ msgstr "Ir a"
2807
+
2808
+ #: modules/mycred-module-buddypress.php:402
2809
+ #: addons/badges/myCRED-addon-badges.php:1146
2810
+ #: addons/badges/myCRED-addon-badges.php:1182
2811
+ #: addons/gateway/carts/mycred-woocommerce.php:151
2812
+ msgid "Do not show"
2813
+ msgstr "No Mostrar"
2814
+
2815
+ #: modules/mycred-module-buddypress.php:403
2816
+ #: addons/badges/myCRED-addon-badges.php:1147
2817
+ msgid "Include in Profile Header"
2818
+ msgstr "Incluir en el Encabezado del Perfil"
2819
+
2820
+ #: modules/mycred-module-buddypress.php:404
2821
+ #: addons/ranks/myCRED-addon-ranks.php:1455
2822
+ #: addons/badges/myCRED-addon-badges.php:1148
2823
+ msgid "Include under the \"Profile\" tab"
2824
+ msgstr "Incluir debajo de la pestaña del \"Perfil\""
2825
+
2826
+ #: modules/mycred-module-buddypress.php:405
2827
+ #: addons/badges/myCRED-addon-badges.php:1149
2828
+ msgid "Include under the \"Profile\" tab and Profile Header"
2829
+ msgstr "Incluir bajo la pestanã \"Perfil\" y Encabezado de Perfil"
2830
+
2831
+ #: modules/mycred-module-buddypress.php:409
2832
+ #: addons/ranks/myCRED-addon-ranks.php:1453
2833
+ #: addons/ranks/myCRED-addon-ranks.php:1498
2834
+ msgid "Do not show."
2835
+ msgstr "No mostrar."
2836
+
2837
+ #: modules/mycred-module-buddypress.php:410
2838
+ msgid "Show in Profile"
2839
+ msgstr "Mostrar en Perfil"
2840
+
2841
+ #: modules/mycred-module-buddypress.php:427
2842
+ msgid "%singular% Balance"
2843
+ msgstr "%singular% Saldo"
2844
+
2845
+ #: modules/mycred-module-buddypress.php:449
2846
+ #: addons/ranks/myCRED-addon-ranks.php:1475
2847
+ #: addons/ranks/myCRED-addon-ranks.php:1520
2848
+ #: addons/notifications/myCRED-addon-notifications.php:199
2849
+ msgid "Template"
2850
+ msgstr "Plantilla"
2851
+
2852
+ #: modules/mycred-module-buddypress.php:454
2853
+ msgid "%plural% History"
2854
+ msgstr "Historial de %plural%"
2855
+
2856
+ #: modules/mycred-module-buddypress.php:471
2857
+ msgid "Members can view each others %_plural% history."
2858
+ msgstr "Miembros pueden ver, uno al otro, el historial de sus %_plural%."
2859
+
2860
+ #: modules/mycred-module-buddypress.php:476
2861
+ msgid "Menu Title"
2862
+ msgstr "Título de Menú"
2863
+
2864
+ #: modules/mycred-module-buddypress.php:478
2865
+ msgid "Title shown to me"
2866
+ msgstr "Título mostrado a mi"
2867
+
2868
+ #: modules/mycred-module-buddypress.php:483
2869
+ msgid "Title shown to others. Use %s to show the first name."
2870
+ msgstr "Título mostrado a otros. Utilice %s para mostrar el nombre de pila."
2871
+
2872
+ #: modules/mycred-module-buddypress.php:488
2873
+ msgid "Menu Position"
2874
+ msgstr "Posición del Menú"
2875
+
2876
+ #: modules/mycred-module-buddypress.php:490
2877
+ msgid "Current menu positions:"
2878
+ msgstr "Posiciones Acuales del Menú"
2879
+
2880
+ #: modules/mycred-module-buddypress.php:495
2881
+ msgid "History URL slug"
2882
+ msgstr "La ficha historial de la URL"
2883
+
2884
+ #: modules/mycred-module-buddypress.php:497
2885
+ msgid "Do not use empty spaces!"
2886
+ msgstr "¡No utilice espacios vacíos!"
2887
+
2888
+ #: modules/mycred-module-buddypress.php:502
2889
+ msgid "Number of history entries to show"
2890
+ msgstr "Numero de entradas de historial a mostrar"
2891
+
2892
+ #. does this really need to be translated?
2893
+ #: plugins/mycred-hook-invite-anyone.php:15
2894
+ msgid "Invite Anyone Plugin"
2895
+ msgstr "Invite Anyone Plugin"
2896
+
2897
+ #: plugins/mycred-hook-invite-anyone.php:16
2898
+ msgid ""
2899
+ "Awards %_plural% for sending invitations and/or %_plural% if the invite is "
2900
+ "accepted."
2901
+ msgstr ""
2902
+ "Concede %_plural% por mandar invitaciones y/o %_plural% si se acepta la "
2903
+ "invitación."
2904
+
2905
+ #: plugins/mycred-hook-invite-anyone.php:204
2906
+ msgid "%plural% for Sending An Invite"
2907
+ msgstr "%plural% por Enviar una Invitación"
2908
+
2909
+ #: plugins/mycred-hook-invite-anyone.php:211
2910
+ #: plugins/mycred-hook-invite-anyone.php:232
2911
+ #: plugins/mycred-hook-wp-postratings.php:173
2912
+ #: plugins/mycred-hook-wp-postratings.php:192
2913
+ #: plugins/mycred-hook-gravityforms.php:165
2914
+ #: plugins/mycred-hook-simplepress.php:309
2915
+ #: plugins/mycred-hook-simplepress.php:322
2916
+ #: plugins/mycred-hook-simplepress.php:339
2917
+ #: plugins/mycred-hook-simplepress.php:357
2918
+ #: plugins/mycred-hook-buddypress.php:621
2919
+ #: plugins/mycred-hook-buddypress.php:638
2920
+ #: plugins/mycred-hook-buddypress.php:655
2921
+ #: plugins/mycred-hook-buddypress.php:672
2922
+ #: plugins/mycred-hook-buddypress.php:692
2923
+ #: plugins/mycred-hook-buddypress.php:705
2924
+ #: plugins/mycred-hook-buddypress.php:722
2925
+ #: plugins/mycred-hook-buddypress.php:735
2926
+ #: plugins/mycred-hook-buddypress.php:752
2927
+ #: plugins/mycred-hook-buddypress.php:765
2928
+ #: plugins/mycred-hook-buddypress.php:782
2929
+ #: plugins/mycred-hook-buddypress.php:799
2930
+ #: plugins/mycred-hook-buddypress.php:1429
2931
+ #: plugins/mycred-hook-buddypress.php:1442
2932
+ #: plugins/mycred-hook-buddypress.php:1459
2933
+ #: plugins/mycred-hook-buddypress.php:1476
2934
+ #: plugins/mycred-hook-buddypress.php:1493
2935
+ #: plugins/mycred-hook-buddypress.php:1510
2936
+ #: plugins/mycred-hook-buddypress.php:1528
2937
+ #: plugins/mycred-hook-buddypress.php:1541
2938
+ #: plugins/mycred-hook-buddypress.php:1558
2939
+ #: plugins/mycred-hook-buddypress.php:1575
2940
+ #: plugins/mycred-hook-buddypress.php:1592
2941
+ #: plugins/mycred-hook-affiliatewp.php:229
2942
+ #: plugins/mycred-hook-affiliatewp.php:246
2943
+ #: plugins/mycred-hook-sharethis.php:267
2944
+ #: plugins/mycred-hook-buddypress-media.php:316
2945
+ #: plugins/mycred-hook-buddypress-media.php:330
2946
+ #: plugins/mycred-hook-buddypress-media.php:344
2947
+ #: plugins/mycred-hook-buddypress-media.php:357
2948
+ #: plugins/mycred-hook-buddypress-media.php:367
2949
+ #: plugins/mycred-hook-buddypress-media.php:377
2950
+ #: plugins/mycred-hook-contact-form7.php:168
2951
+ #: plugins/mycred-hook-jetpack.php:545 plugins/mycred-hook-jetpack.php:558
2952
+ #: plugins/mycred-hook-bbPress.php:443 plugins/mycred-hook-bbPress.php:456
2953
+ #: plugins/mycred-hook-bbPress.php:473 plugins/mycred-hook-bbPress.php:491
2954
+ #: plugins/mycred-hook-bbPress.php:508 plugins/mycred-hook-bbPress.php:525
2955
+ #: plugins/mycred-hook-bbPress.php:551 plugins/mycred-hook-badgeOS.php:336
2956
+ #: addons/badges/myCRED-addon-badges.php:949
2957
+ msgid "Log template"
2958
+ msgstr "Plantilla de Registro"
2959
+
2960
+ #: plugins/mycred-hook-invite-anyone.php:216
2961
+ #: plugins/mycred-hook-invite-anyone.php:219
2962
+ #: plugins/mycred-hook-invite-anyone.php:237
2963
+ #: plugins/mycred-hook-invite-anyone.php:240
2964
+ #: plugins/mycred-hook-wp-postratings.php:165
2965
+ #: plugins/mycred-hook-wp-postratings.php:184
2966
+ #: plugins/mycred-hook-gravityforms.php:160
2967
+ #: plugins/mycred-hook-simplepress.php:304
2968
+ #: plugins/mycred-hook-simplepress.php:334
2969
+ #: plugins/mycred-hook-buddypress.php:616
2970
+ #: plugins/mycred-hook-buddypress.php:633
2971
+ #: plugins/mycred-hook-buddypress.php:650
2972
+ #: plugins/mycred-hook-buddypress.php:667
2973
+ #: plugins/mycred-hook-buddypress.php:684
2974
+ #: plugins/mycred-hook-buddypress.php:717
2975
+ #: plugins/mycred-hook-buddypress.php:747
2976
+ #: plugins/mycred-hook-buddypress.php:777
2977
+ #: plugins/mycred-hook-buddypress.php:794
2978
+ #: plugins/mycred-hook-buddypress.php:1454
2979
+ #: plugins/mycred-hook-buddypress.php:1471
2980
+ #: plugins/mycred-hook-buddypress.php:1488
2981
+ #: plugins/mycred-hook-buddypress.php:1505
2982
+ #: plugins/mycred-hook-buddypress.php:1523
2983
+ #: plugins/mycred-hook-buddypress.php:1553
2984
+ #: plugins/mycred-hook-buddypress.php:1570
2985
+ #: plugins/mycred-hook-buddypress.php:1587
2986
+ #: plugins/mycred-hook-affiliatewp.php:241
2987
+ #: plugins/mycred-hook-events-manager-light.php:205
2988
+ #: plugins/mycred-hook-sharethis.php:262
2989
+ #: plugins/mycred-hook-buddypress-media.php:312
2990
+ #: plugins/mycred-hook-buddypress-media.php:326
2991
+ #: plugins/mycred-hook-buddypress-media.php:340
2992
+ #: plugins/mycred-hook-wp-favorite-posts.php:222
2993
+ #: plugins/mycred-hook-wp-favorite-posts.php:240
2994
+ #: plugins/mycred-hook-contact-form7.php:163
2995
+ #: plugins/mycred-hook-bbPress.php:438 plugins/mycred-hook-bbPress.php:468
2996
+ #: plugins/mycred-hook-bbPress.php:503 plugins/mycred-hook-bbPress.php:520
2997
+ #: plugins/mycred-hook-woocommerce.php:336
2998
+ #: includes/shortcodes/mycred_hook_table.php:81
2999
+ #: addons/transfer/myCRED-addon-transfer.php:478
3000
+ msgid "Limit"
3001
+ msgstr "Límite"
3002
+
3003
+ #: plugins/mycred-hook-invite-anyone.php:224
3004
+ msgid "%plural% for Accepting An Invite"
3005
+ msgstr "%plural% por Aceptar una Invitación"
3006
+
3007
+ #: plugins/mycred-hook-invite-anyone.php:228
3008
+ msgid "%plural% for each invited user that accepts an invitation."
3009
+ msgstr "%plural% por cada usuario invitado que acepta la invitación."
3010
+
3011
+ #: plugins/mycred-hook-wp-polls.php:15
3012
+ msgid "WP-Polls"
3013
+ msgstr "WP-Polls"
3014
+
3015
+ #: plugins/mycred-hook-wp-polls.php:16
3016
+ msgid "Awards %_plural% for users voting in polls."
3017
+ msgstr ""
3018
+ "Concede %_plural% a usuarios que han votado en encuestas.Concede %_plural% a "
3019
+ "usuarios que han votado en encuestas."
3020
+
3021
+ #. can also be "Plantilla de Bitácora"
3022
+ #: plugins/mycred-hook-wp-polls.php:154
3023
+ #: plugins/mycred-hook-events-manager-light.php:209
3024
+ #: plugins/mycred-hook-events-manager-light.php:222
3025
+ #: plugins/mycred-hook-wp-favorite-posts.php:226
3026
+ #: plugins/mycred-hook-wp-favorite-posts.php:244
3027
+ #: plugins/mycred-hook-wp-favorite-posts.php:258
3028
+ #: plugins/mycred-hook-wp-favorite-posts.php:271
3029
+ #: plugins/mycred-hook-woocommerce.php:340 plugins/mycred-hook-badgeOS.php:143
3030
+ #: plugins/mycred-hook-badgeOS.php:145 plugins/mycred-hook-badgeOS.php:156
3031
+ #: addons/coupons/myCRED-addon-coupons.php:661
3032
+ #: addons/banking/services/mycred-service-interest.php:510
3033
+ #: addons/banking/services/mycred-service-payouts.php:710
3034
+ #: addons/gateway/carts/mycred-wpecommerce.php:400
3035
+ #: addons/gateway/carts/mycred-woocommerce.php:103
3036
+ #: addons/gateway/carts/mycred-woocommerce.php:175
3037
+ #: addons/buy-creds/modules/buycred-module-core.php:357
3038
+ #: addons/buy-creds/modules/buycred-module-core.php:420
3039
+ msgid "Log Template"
3040
+ msgstr "Plantilla de Registro"
3041
+
3042
+ #: plugins/mycred-hook-gravityforms.php:15
3043
+ msgid "Gravityform Submissions"
3044
+ msgstr "Entregas de Gravityform"
3045
+
3046
+ #: plugins/mycred-hook-gravityforms.php:16
3047
+ msgid "Awards %_plural% for successful form submissions."
3048
+ msgstr "Concede %_plural% por el exitoso envío del formularios."
3049
+
3050
+ #: plugins/mycred-hook-gravityforms.php:129
3051
+ #: plugins/mycred-hook-contact-form7.php:130
3052
+ msgid "No forms found."
3053
+ msgstr "No se ha encontrado ningun formulario."
3054
+
3055
+ #: plugins/mycred-hook-simplepress.php:16
3056
+ msgid "Awards %_plural% for Simple:Press actions."
3057
+ msgstr "Concede %_plural% por acciones en Simple:Press."
3058
+
3059
+ #: plugins/mycred-hook-simplepress.php:298 plugins/mycred-hook-bbPress.php:462
3060
+ msgid "%plural% for New Topic"
3061
+ msgstr "%plural% por Nuevo Tema"
3062
+
3063
+ #: plugins/mycred-hook-simplepress.php:315 plugins/mycred-hook-bbPress.php:484
3064
+ msgid "%plural% for Topic Deletion"
3065
+ msgstr "%plural% por Borrar Tema"
3066
+
3067
+ #: plugins/mycred-hook-simplepress.php:328
3068
+ msgid "%plural% for New Topic Post"
3069
+ msgstr "%plural% por Nueva Publicacion "
3070
+
3071
+ #: plugins/mycred-hook-simplepress.php:346
3072
+ msgid "Topic authors can receive %_plural% for posting on their own Topic"
3073
+ msgstr "Autor de la tema puede recibir %_plural% por publicar su propia Tema"
3074
+
3075
+ #: plugins/mycred-hook-simplepress.php:350
3076
+ msgid "%plural% for Topic Post Deletion"
3077
+ msgstr "%plural% por Borrar la Tema del Post"
3078
+
3079
+ #: plugins/mycred-hook-buddypress.php:16
3080
+ msgid "BuddyPress: Members"
3081
+ msgstr "BuddyPress: Miembros"
3082
+
3083
+ #: plugins/mycred-hook-buddypress.php:17
3084
+ msgid "Awards %_plural% for profile related actions."
3085
+ msgstr "Concede %_plural% por acciones relacionados al perfil."
3086
+
3087
+ #: plugins/mycred-hook-buddypress.php:24
3088
+ msgid "BuddyPress: Groups"
3089
+ msgstr "BuddyPress: Grupos"
3090
+
3091
+ #: plugins/mycred-hook-buddypress.php:25
3092
+ msgid ""
3093
+ "Awards %_plural% for group related actions. Use minus to deduct %_plural% or "
3094
+ "zero to disable a specific hook."
3095
+ msgstr ""
3096
+ "Concede %_plural% para acciones relacionados a grupos. Usa negativo para "
3097
+ "sustraer %_plural% o cero para desabilitar un gancho especifico."
3098
+
3099
+ #: plugins/mycred-hook-buddypress.php:307
3100
+ #: addons/sell-content/myCRED-addon-sell-content.php:591
3101
+ #: addons/gateway/event-booking/mycred-eventsmanager.php:636
3102
+ #: addons/gateway/event-booking/mycred-eventsmanager-pro.php:727
3103
+ #: addons/gateway/carts/mycred-wpecommerce.php:415
3104
+ msgid "Insufficient Funds"
3105
+ msgstr "Fondos Insuficientes"
3106
+
3107
+ #: plugins/mycred-hook-buddypress.php:678
3108
+ #: includes/classes/class.query-log.php:1564
3109
+ msgid "New Friendship"
3110
+ msgstr "Nueva Amistad"
3111
+
3112
+ #: plugins/mycred-hook-buddypress.php:728
3113
+ #: includes/classes/class.query-log.php:1552
3114
+ msgid "Deleted Comment"
3115
+ msgstr "Comentario Borrado"
3116
+
3117
+ #: plugins/mycred-hook-buddypress.php:788
3118
+ #: includes/classes/class.query-log.php:1571
3119
+ msgid "Sending Gift"
3120
+ msgstr "Mandando Regalo"
3121
+
3122
+ #: plugins/mycred-hook-buddypress.php:1415
3123
+ msgid "%plural% for Creating Groups"
3124
+ msgstr "%plural% por Creat Cupones"
3125
+
3126
+ #: plugins/mycred-hook-buddypress.php:1419
3127
+ msgid ""
3128
+ "If you use a negative value and the user does not have enough %_plural% the "
3129
+ "\"Create Group\" button will be disabled."
3130
+ msgstr ""
3131
+ "Si usas un valor negativo y el usuario no tiene bastante %_plural% el botón "
3132
+ "\"Crear Grupo\" sera desactivada."
3133
+
3134
+ #: plugins/mycred-hook-buddypress.php:1423
3135
+ msgid "Number of members before awarding %_plural%"
3136
+ msgstr "Numero de miembros antes de conceder %_plural%"
3137
+
3138
+ #: plugins/mycred-hook-buddypress.php:1425
3139
+ msgid "Use zero to award %_plural% when group is created."
3140
+ msgstr "Ponga cero para %_plural% cuando se crea un grupo."
3141
+
3142
+ #: plugins/mycred-hook-buddypress.php:1435
3143
+ msgid "%plural% for Deleting Groups"
3144
+ msgstr "%plural% por Borrar Grupos"
3145
+
3146
+ #: plugins/mycred-hook-buddypress.php:1448
3147
+ msgid "%plural% for New Forum Topic"
3148
+ msgstr "%plural% por Nuevo Tema de Foro"
3149
+
3150
+ #: plugins/mycred-hook-buddypress.php:1465
3151
+ msgid "%plural% for Editing Forum Topic"
3152
+ msgstr "%plural% por Editar Tema de Foro"
3153
+
3154
+ #: plugins/mycred-hook-buddypress.php:1482
3155
+ msgid "%plural% for New Forum Post"
3156
+ msgstr "%plural% por Nueva Publicación en Foro"
3157
+
3158
+ #: plugins/mycred-hook-buddypress.php:1499
3159
+ msgid "%plural% for Editing Forum Post"
3160
+ msgstr "%plural% por Editar Publicación en Foro"
3161
+
3162
+ #: plugins/mycred-hook-buddypress.php:1516
3163
+ msgid "%plural% for Joining Groups"
3164
+ msgstr "%plural% por Unirse a Grupos"
3165
+
3166
+ #: plugins/mycred-hook-buddypress.php:1520
3167
+ msgid ""
3168
+ "If you use a negative value and the user does not have enough %_plural% the "
3169
+ "\"Join Group\" button will be disabled."
3170
+ msgstr ""
3171
+ "Si usas un valor negativo y el usuario no tiene bastante %_plural% el botón "
3172
+ "\"Unirse a Grupo\" sera desactivada."
3173
+
3174
+ #: plugins/mycred-hook-buddypress.php:1534
3175
+ msgid "%plural% for Leaving Groups"
3176
+ msgstr "%plural% por Dejar Grupos"
3177
+
3178
+ #: plugins/mycred-hook-buddypress.php:1547
3179
+ msgid "%plural% for New Group Avatar"
3180
+ msgstr "%plural% por Nuevo Avatar de Grupo"
3181
+
3182
+ #: plugins/mycred-hook-buddypress.php:1581
3183
+ msgid "%plural% for New Group Comment"
3184
+ msgstr "%plural% por Nuevo Comentario Grupo"
3185
+
3186
+ #: plugins/mycred-hook-affiliatewp.php:235
3187
+ msgid "Referring Visitors"
3188
+ msgstr "Referiendo Visitantes"
3189
+
3190
+ #: plugins/mycred-hook-events-manager-light.php:15
3191
+ msgid "Events Manager"
3192
+ msgstr "Gestionamiento de Eventos"
3193
+
3194
+ #: plugins/mycred-hook-events-manager-light.php:16
3195
+ msgid "Awards %_plural% for users attending events."
3196
+ msgstr "Concede %_plural% para usuarios que asistieron actividades o eventos."
3197
+
3198
+ #: plugins/mycred-hook-events-manager-light.php:199
3199
+ msgid "Attending Event"
3200
+ msgstr "Asistir Evento"
3201
+
3202
+ #: plugins/mycred-hook-events-manager-light.php:216
3203
+ msgid "Cancelling Attendance"
3204
+ msgstr "Cancelando Asistencia"
3205
+
3206
+ #: plugins/mycred-hook-sharethis.php:15
3207
+ msgid "%plural% for Sharing"
3208
+ msgstr "%plural% para Compartir"
3209
+
3210
+ #: plugins/mycred-hook-sharethis.php:16
3211
+ msgid ""
3212
+ "Awards %_plural% for users sharing / liking your website content to popular "
3213
+ "social media sites."
3214
+ msgstr ""
3215
+ "Concede %_plural% a usuarios por compartir / gustar el contenido de tu sitio "
3216
+ "web atraves de sitio de los medios de comunicación social."
3217
+
3218
+ #: plugins/mycred-hook-sharethis.php:217
3219
+ msgid "Your ShareThis public key is not set."
3220
+ msgstr "Tu llave publico de ShareThis no ha sido configurado."
3221
+
3222
+ #: plugins/mycred-hook-sharethis.php:222
3223
+ msgid "No ShareThis services detected. Please check your installation."
3224
+ msgstr ""
3225
+ "Ningun servicio ShareThis detectado. Por favor verifique su instalación."
3226
+
3227
+ #: plugins/mycred-hook-buddypress-media.php:15
3228
+ msgid "rtMedia Galleries"
3229
+ msgstr "Galerías rtMedia (rtMedia Galleries)"
3230
+
3231
+ #: plugins/mycred-hook-buddypress-media.php:16
3232
+ msgid ""
3233
+ "Award / Deduct %_plural% for users creating albums or uploading new photos."
3234
+ msgstr ""
3235
+ "Concede / Resta %_plural% a usuarios por crear álbumes o subir nuevos fotos."
3236
+
3237
+ #: plugins/mycred-hook-buddypress-media.php:305
3238
+ msgid "New Media Upload"
3239
+ msgstr "Subir Nuevo Media"
3240
+
3241
+ #: plugins/mycred-hook-buddypress-media.php:308
3242
+ #: includes/classes/class.query-log.php:1586
3243
+ msgid "Photo Upload"
3244
+ msgstr "Subir Foto"
3245
+
3246
+ #: plugins/mycred-hook-buddypress-media.php:322
3247
+ #: includes/classes/class.query-log.php:1587
3248
+ msgid "Video Upload"
3249
+ msgstr "Subir Video"
3250
+
3251
+ #: plugins/mycred-hook-buddypress-media.php:336
3252
+ #: includes/classes/class.query-log.php:1588
3253
+ msgid "Music Upload"
3254
+ msgstr "Subir Música"
3255
+
3256
+ #: plugins/mycred-hook-buddypress-media.php:350
3257
+ msgid "Delete Media"
3258
+ msgstr "Borrar Medios"
3259
+
3260
+ #: plugins/mycred-hook-buddypress-media.php:353
3261
+ msgid "Delete Photo"
3262
+ msgstr "Borrar Foto"
3263
+
3264
+ #: plugins/mycred-hook-buddypress-media.php:363
3265
+ msgid "Delete Video"
3266
+ msgstr "Borrar Video"
3267
+
3268
+ #: plugins/mycred-hook-buddypress-media.php:373
3269
+ msgid "Delete Music"
3270
+ msgstr "Borrar Música"
3271
+
3272
+ #: plugins/mycred-hook-wp-favorite-posts.php:15
3273
+ msgid "WP Favorite Posts"
3274
+ msgstr "WP Favorite Posts"
3275
+
3276
+ #: plugins/mycred-hook-wp-favorite-posts.php:16
3277
+ msgid "Awards %_plural% for users adding posts to their favorites."
3278
+ msgstr "Concede %_plural% a usuarios por añadir entradas a sus favoritos."
3279
+
3280
+ #: plugins/mycred-hook-wp-favorite-posts.php:216
3281
+ msgid "Adding Content to Favorites"
3282
+ msgstr "Añadiendo Contenido a Favoritos"
3283
+
3284
+ #: plugins/mycred-hook-wp-favorite-posts.php:252
3285
+ msgid "Removing Content from Favorites"
3286
+ msgstr "Quitando Contenido de Favoritos"
3287
+
3288
+ #: plugins/mycred-hook-contact-form7.php:15
3289
+ msgid "Contact Form 7 Form Submissions"
3290
+ msgstr "Presentación Formulario de Contact Form 7"
3291
+
3292
+ #: plugins/mycred-hook-contact-form7.php:16
3293
+ msgid "Awards %_plural% for successful form submissions (by logged in users)."
3294
+ msgstr ""
3295
+ "Concede %_plural% por el exitoso envío del formulario (por usuarios que han "
3296
+ "iniciado sesión)"
3297
+
3298
+ #: plugins/mycred-hook-jetpack.php:15
3299
+ msgid "Jetpack Subscriptions"
3300
+ msgstr "Suscripciónes a Jetpack"
3301
+
3302
+ #: plugins/mycred-hook-jetpack.php:16
3303
+ msgid ""
3304
+ "Awards %_plural% for users signing up for site or comment updates using "
3305
+ "Jetpack."
3306
+ msgstr ""
3307
+ "Concede %_plural% a usuarios por incribirse a las actualizaciones del sitio "
3308
+ "web o a los comentarios atraves de Jetpack."
3309
+
3310
+ #: plugins/mycred-hook-jetpack.php:538
3311
+ msgid "Site Subscriptions"
3312
+ msgstr "Suscripciónes al Sitio Web"
3313
+
3314
+ #: plugins/mycred-hook-jetpack.php:551
3315
+ msgid "Comment Subscriptions"
3316
+ msgstr "Suscripciónes a commentarios"
3317
+
3318
+ #: plugins/mycred-hook-bbPress.php:16
3319
+ msgid "Awards %_plural% for bbPress actions."
3320
+ msgstr "Concede %_plural% por acciones en bbPress."
3321
+
3322
+ #: plugins/mycred-hook-bbPress.php:432
3323
+ msgid "%plural% for New Forum"
3324
+ msgstr "%plural% por nuevo foro"
3325
+
3326
+ #: plugins/mycred-hook-bbPress.php:449
3327
+ msgid "%plural% for Forum Deletion"
3328
+ msgstr "%plural% por Eliminar Foro"
3329
+
3330
+ #: plugins/mycred-hook-bbPress.php:480
3331
+ msgid "Forum authors can receive %_plural% for creating new topics."
3332
+ msgstr "Autores "
3333
+
3334
+ #: plugins/mycred-hook-bbPress.php:497
3335
+ msgid "%plural% for Favorited Topic"
3336
+ msgstr "%plural% por Añadir Tema a tus \"Favoritos\""
3337
+
3338
+ #: plugins/mycred-hook-bbPress.php:514
3339
+ msgid "%plural% for New Reply"
3340
+ msgstr "%plural% por Nueva Respuesta"
3341
+
3342
+ #: plugins/mycred-hook-bbPress.php:532
3343
+ msgid "Topic authors can receive %_plural% for replying to their own Topic"
3344
+ msgstr ""
3345
+ "Autor de la tema puede recibir %_plural% por responder a su propia Tema"
3346
+
3347
+ #: plugins/mycred-hook-bbPress.php:536
3348
+ msgid "Show users %_plural% balance in replies"
3349
+ msgstr "Mostrar usuarios el saldo de %_plural% en las respuestas"
3350
+
3351
+ #: plugins/mycred-hook-bbPress.php:544
3352
+ msgid "%plural% for Reply Deletion"
3353
+ msgstr "%plural% para Borrar Respuesta"
3354
+
3355
+ #: plugins/mycred-hook-woocommerce.php:87
3356
+ msgid "Reward with %plural%"
3357
+ msgstr "Premiar con %plural%"
3358
+
3359
+ #: plugins/mycred-hook-woocommerce.php:216
3360
+ msgid "WooCommerce Product Reviews"
3361
+ msgstr ""
3362
+ " Revisión del Producto WooCommerce\n"
3363
+
3364
+ #: plugins/mycred-hook-woocommerce.php:217
3365
+ msgid ""
3366
+ "Awards %_plural% for users leaving reviews on your WooCommerce products."
3367
+ msgstr ""
3368
+ "Concede %_plural% a usuarios por escribir reseñas sobre tus productos "
3369
+ "WooCommerce."
3370
+
3371
+ #: plugins/mycred-hook-badgeOS.php:15
3372
+ msgid "BadgeOS"
3373
+ msgstr "BadgeOS"
3374
+
3375
+ #: plugins/mycred-hook-badgeOS.php:16
3376
+ msgid ""
3377
+ "Default settings for each BadgeOS Achievement type. These settings may be "
3378
+ "overridden for individual achievement type."
3379
+ msgstr ""
3380
+ "Configuraciones predefinidos para cada clase de BadgeOS Logro (Achievement). "
3381
+ "Estos ajustes pueden ser anulados para el tipo de logro individual."
3382
+
3383
+ #: plugins/mycred-hook-badgeOS.php:121
3384
+ msgid ""
3385
+ "Please setup your <a href=\"%s\">default settings</a> before using this "
3386
+ "feature."
3387
+ msgstr ""
3388
+ "Por favor configura tus <a href=\"%s\">configuraciones predefinidos</a> "
3389
+ "antes de usar este función."
3390
+
3391
+ #: plugins/mycred-hook-badgeOS.php:137 plugins/mycred-hook-badgeOS.php:139
3392
+ msgid "%plural% to Award"
3393
+ msgstr "%plural% a Conceder"
3394
+
3395
+ #. also "Ponga cero para inhabilitar"
3396
+ #: plugins/mycred-hook-badgeOS.php:141
3397
+ msgid "Use zero to disable"
3398
+ msgstr "Ponga cero para desactivar"
3399
+
3400
+ #: plugins/mycred-hook-badgeOS.php:154
3401
+ msgid "Deduction Log Template"
3402
+ msgstr "Plantilla de Registro Descontado"
3403
+
3404
+ #: plugins/mycred-hook-badgeOS.php:315
3405
+ msgid "Default %s for %s"
3406
+ msgstr "Predeterminar %s por %s"
3407
+
3408
+ #: plugins/mycred-hook-badgeOS.php:322
3409
+ msgid "Use zero to disable users gaining %_plural%"
3410
+ msgstr "Ponga cero para que los usuarios no obtengan %_plural%"
3411
+
3412
+ #: plugins/mycred-hook-badgeOS.php:326
3413
+ msgid "Default Log template"
3414
+ msgstr "Plantilla de Registro Predefinido"
3415
+
3416
+ #: includes/mycred-setup.php:50
3417
+ msgid "myCRED needs your attention."
3418
+ msgstr "myCRED precisa tu atención."
3419
+
3420
+ #: includes/mycred-setup.php:50
3421
+ msgid "Run Setup"
3422
+ msgstr "Ejecutar Configuración"
3423
+
3424
+ #: includes/mycred-setup.php:63 includes/mycred-setup.php:64
3425
+ msgid "myCRED Setup"
3426
+ msgstr "Instalación de myCRED"
3427
+
3428
+ #: includes/mycred-setup.php:105
3429
+ #: addons/sell-content/myCRED-addon-sell-content.php:490
3430
+ msgid "%s Setup"
3431
+ msgstr "Configurar %s"
3432
+
3433
+ #: includes/mycred-remote.php:581
3434
+ msgid "This feature requires WordPress Permalinks to be setup and enabled!"
3435
+ msgstr ""
3436
+ "¡Esta característica técnica requiere que los Permalinks de Wordpress esten "
3437
+ "activados y configurado!"
3438
+
3439
+ #: includes/mycred-remote.php:585
3440
+ msgid "Click Update Settings to load the Remote API settings."
3441
+ msgstr ""
3442
+ "Haga clic sobre Actualizar Configuraciones para cargar la configuración de "
3443
+ "API remoto."
3444
+
3445
+ #: includes/mycred-remote.php:588
3446
+ msgid "Allow Remote Access"
3447
+ msgstr "Permita Acceso Remoto"
3448
+
3449
+ #: includes/mycred-remote.php:613
3450
+ msgid "Remote Access"
3451
+ msgstr "Acceso Remoto"
3452
+
3453
+ #: includes/mycred-remote.php:615 addons/buy-creds/gateways/bitpay.php:245
3454
+ msgid "API Key"
3455
+ msgstr "Clave de la API"
3456
+
3457
+ #: includes/mycred-remote.php:618
3458
+ msgid "Key"
3459
+ msgstr "Clave"
3460
+
3461
+ #: includes/mycred-remote.php:620
3462
+ msgid "Required for this feature to work!<br />Minimum 12 characters."
3463
+ msgstr ""
3464
+ "¡Precisado para que esta característica técnica funcione!<br /> Minimo 12 "
3465
+ "símbolos."
3466
+
3467
+ #: includes/mycred-remote.php:623
3468
+ msgid "Key Length"
3469
+ msgstr "Longitud de la Clave"
3470
+
3471
+ #: includes/mycred-remote.php:628
3472
+ msgid "Generate New Key"
3473
+ msgstr "Generar nueva clave"
3474
+
3475
+ #: includes/mycred-remote.php:630
3476
+ msgid "Warning!"
3477
+ msgstr "¡Aviso!"
3478
+
3479
+ #: includes/mycred-remote.php:630
3480
+ msgid ""
3481
+ "Keep this key safe! Those you share this key with will be able to remotely "
3482
+ "deduct / add / transfer %plural%!"
3483
+ msgstr ""
3484
+ "¡Mantenga la seguridad de esta clave! Aquellos con quien compartes esta "
3485
+ "clave podran restar / añadir / transferir %plural% de forma remota."
3486
+
3487
+ #: includes/mycred-remote.php:632
3488
+ msgid "Incoming URI"
3489
+ msgstr "URI Entrante"
3490
+
3491
+ #: includes/mycred-remote.php:636
3492
+ msgid ""
3493
+ "The incoming call address. Remote calls made to any other URL will be "
3494
+ "ignored."
3495
+ msgstr ""
3496
+ "La dirección de la llamada entrante. Se ignorará las llamadas remotas a "
3497
+ "cualquier otro URL."
3498
+
3499
+ #: includes/mycred-remote.php:639
3500
+ msgid "Debug Mode"
3501
+ msgstr "Modo de Depuración"
3502
+
3503
+ #: includes/mycred-remote.php:642
3504
+ msgid ""
3505
+ "Remember to disable when not used to prevent mischievous calls from learning "
3506
+ "about your setup!"
3507
+ msgstr ""
3508
+ "Recuerda a desactivarlo cuando no está en uso para prevenir que llamadas "
3509
+ "maliciosas conozcan detalles de tu configuración!"
3510
+
3511
+ #: includes/mycred-about.php:32
3512
+ msgid "Welcome to %s %s"
3513
+ msgstr "Bienvenido a %s %s"
3514
+
3515
+ #: includes/mycred-overview.php:25
3516
+ msgid "%s Overview"
3517
+ msgstr "Descripción de %s"
3518
+
3519
+ #: includes/mycred-overview.php:82
3520
+ #: addons/stats/widgets/mycred-stats-widget-circulation.php:136
3521
+ #: addons/stats/widgets/mycred-stats-widget-circulation.php:265
3522
+ msgid "Total amount in circulation"
3523
+ msgstr "Suma total en circulación"
3524
+
3525
+ #. also, "Otorgado"
3526
+ #: includes/mycred-overview.php:85
3527
+ msgid "Awarded"
3528
+ msgstr "Concedido"
3529
+
3530
+ #: includes/mycred-overview.php:88
3531
+ msgid "Deducted"
3532
+ msgstr "Deducido"
3533
+
3534
+ #: includes/mycred-install.php:73
3535
+ msgid "myCRED requires SQL 5.0 or higher. Version detected: "
3536
+ msgstr "myCRED requiere SWL 5.0 o más alto. La versión detectada:"
3537
+
3538
+ #: includes/mycred-install.php:78
3539
+ msgid ""
3540
+ "The mcrypt PHP library must be enabled in order to use this plugin! Please "
3541
+ "check your PHP configuration or contact your host and ask them to enable it "
3542
+ "for you!"
3543
+ msgstr ""
3544
+ "La biblioteca PHP mcrypt debe ser habilitado para poder usar este plugin! "
3545
+ "Por favor verifica tu configuración de PHP o contacta a tu web host y "
3546
+ "pideles que lo habiliten para ti!"
3547
+
3548
+ #: includes/mycred-install.php:83
3549
+ msgid ""
3550
+ "Sorry but your WordPress installation does not reach the minimum "
3551
+ "requirements for running myCRED. The following errors were given:"
3552
+ msgstr ""
3553
+ "Lo sentimos, pero tu instalación de WordPress no alcanza a los requisitos "
3554
+ "mínimos de mycred. Se produce los siguientes errores:"
3555
+
3556
+ #: includes/mycred-widgets.php:19
3557
+ msgid "(%s) My Balance"
3558
+ msgstr "(%s) Mi Saldo"
3559
+
3560
+ #: includes/mycred-widgets.php:176 includes/mycred-widgets.php:359
3561
+ #: includes/mycred-widgets.php:567 addons/ranks/myCRED-addon-ranks.php:1366
3562
+ #: addons/gateway/carts/mycred-woocommerce.php:91
3563
+ #: addons/transfer/includes/mycred-transfer-widgets.php:78
3564
+ #: addons/sell-content/includes/mycred-sell-shortcodes.php:186
3565
+ #: addons/buy-creds/gateways/bank-transfer.php:161
3566
+ #: addons/buy-creds/gateways/skrill.php:333
3567
+ msgid "Title"
3568
+ msgstr "Titulo"
3569
+
3570
+ #: includes/mycred-widgets.php:199
3571
+ msgid "Include history"
3572
+ msgstr "Incluir el historial"
3573
+
3574
+ #: includes/mycred-widgets.php:203
3575
+ msgid "History Title"
3576
+ msgstr "Titulo de Historial"
3577
+
3578
+ #. the English needs to be corrected to "Number of Entries"
3579
+ #: includes/mycred-widgets.php:207
3580
+ msgid "Number of entires"
3581
+ msgstr "Numero de Entradas"
3582
+
3583
+ #: includes/mycred-widgets.php:211 includes/mycred-widgets.php:386
3584
+ msgid "Row layout"
3585
+ msgstr "Disposición de Filas"
3586
+
3587
+ #: includes/mycred-widgets.php:218 includes/mycred-widgets.php:586
3588
+ msgid "Show message when not logged in"
3589
+ msgstr "Mostrar mensaje cuando no ha iniciado la sesión"
3590
+
3591
+ #: includes/mycred-widgets.php:222 includes/mycred-widgets.php:590
3592
+ msgid "Message"
3593
+ msgstr "Mensaje"
3594
+
3595
+ #: includes/mycred-widgets.php:282
3596
+ msgid "(%s) Leaderboard"
3597
+ msgstr "(%s) Tabla de Clasificación"
3598
+
3599
+ #: includes/mycred-widgets.php:373
3600
+ msgid "Based On"
3601
+ msgstr "Basado Sobre"
3602
+
3603
+ #: includes/mycred-widgets.php:375
3604
+ msgid ""
3605
+ "Use \"balance\" to base the leaderboard on your users current balances or "
3606
+ "use a specific reference."
3607
+ msgstr ""
3608
+ "Utiliza \"saldo\" para basar la tabla de clasificación sobre los saldos "
3609
+ "actuales de tus usuarios o utiliza una referencia especifica."
3610
+
3611
+ #: includes/mycred-widgets.php:375
3612
+ msgid "Reference Guide"
3613
+ msgstr "Guia de Referencia"
3614
+
3615
+ #: includes/mycred-widgets.php:379
3616
+ msgid "Visible to non-members"
3617
+ msgstr "Visible al público (no miembros)"
3618
+
3619
+ #: includes/mycred-widgets.php:382
3620
+ msgid "Number of users"
3621
+ msgstr "Numero de Usuarios"
3622
+
3623
+ #: includes/mycred-widgets.php:391
3624
+ msgid "Offset"
3625
+ msgstr "Offset"
3626
+
3627
+ #: includes/mycred-widgets.php:393
3628
+ msgid "Optional offset of order. Use zero to return the first in the list."
3629
+ msgstr ""
3630
+ "Opcional desplazamiento (offset) de la orden. Utilice cero para devolver el "
3631
+ "primero en la lista."
3632
+
3633
+ #: includes/mycred-widgets.php:396
3634
+ msgid "Order"
3635
+ msgstr "Orden"
3636
+
3637
+ #: includes/mycred-widgets.php:401 includes/classes/class.query-log.php:553
3638
+ msgid "Ascending"
3639
+ msgstr "Ascendente"
3640
+
3641
+ #: includes/mycred-widgets.php:402 includes/classes/class.query-log.php:553
3642
+ msgid "Descending"
3643
+ msgstr "Descendente"
3644
+
3645
+ #: includes/mycred-widgets.php:415
3646
+ msgid "Append current users position"
3647
+ msgstr "Añade la posición actual de usuarios "
3648
+
3649
+ #: includes/mycred-widgets.php:416
3650
+ msgid ""
3651
+ "If the current user is not in this leaderboard, you can select to append "
3652
+ "them at the end with their current position."
3653
+ msgstr ""
3654
+ "Si el usuario actual no esta en esta tabla de clasificación, puedes elegir a "
3655
+ "agregarles al final con su posición actual."
3656
+
3657
+ #: includes/mycred-widgets.php:469
3658
+ msgid "(%s) Wallet"
3659
+ msgstr "(%s) Cartera"
3660
+
3661
+ #: includes/mycred-widgets.php:579
3662
+ msgid "Row Layout"
3663
+ msgstr "Disposición de Filas"
3664
+
3665
+ #: includes/mycred-functions.php:85
3666
+ msgid "Point"
3667
+ msgstr "Punto"
3668
+
3669
+ #: includes/mycred-functions.php:86
3670
+ msgid "Points"
3671
+ msgstr "Puntos"
3672
+
3673
+ #: includes/mycred-functions.php:466
3674
+ msgid "Deleted"
3675
+ msgstr "Borrado"
3676
+
3677
+ #: includes/mycred-functions.php:607
3678
+ msgid "Deleted Item"
3679
+ msgstr "Artículo Borrado"
3680
+
3681
+ #: includes/mycred-functions.php:671
3682
+ #: addons/email-notices/myCRED-addon-email-notices.php:861
3683
+ #: addons/gateway/carts/mycred-wpecommerce.php:370
3684
+ msgid "General"
3685
+ msgstr "General"
3686
+
3687
+ #: includes/mycred-functions.php:678
3688
+ msgid "User Related"
3689
+ msgstr "Relacionado al Usuario"
3690
+
3691
+ #: includes/mycred-functions.php:685
3692
+ msgid "Post Related"
3693
+ msgstr "Relacionado a la Entrada"
3694
+
3695
+ #: includes/mycred-functions.php:692
3696
+ msgid "Comment Related"
3697
+ msgstr "Relacionado al Comentario"
3698
+
3699
+ #: includes/mycred-functions.php:699
3700
+ msgid "Widget Related"
3701
+ msgstr "Relacionado al Widget"
3702
+
3703
+ #: includes/mycred-functions.php:706
3704
+ msgid "Amount Related"
3705
+ msgstr "Cantidad Relacionada"
3706
+
3707
+ #: includes/mycred-functions.php:713
3708
+ msgid "Video Related"
3709
+ msgstr "Relacionado al Video"
3710
+
3711
+ #: includes/mycred-functions.php:724
3712
+ msgid "and"
3713
+ msgstr "y"
3714
+
3715
+ #: includes/mycred-functions.php:726
3716
+ msgid "Available Template Tags:"
3717
+ msgstr "Etiquetas de Plantilla Disponibles:"
3718
+
3719
+ #: includes/importers/mycred-cubepoints.php:298
3720
+ msgid "No balances were imported."
3721
+ msgstr "Ningun saldo fue importado."
3722
+
3723
+ #: includes/importers/mycred-cubepoints.php:298
3724
+ msgid "No log entries were imported!"
3725
+ msgstr "¡No se importo ninguna entrada de registro!"
3726
+
3727
+ #: includes/importers/mycred-cubepoints.php:306
3728
+ #: includes/importers/mycred-log-entries.php:168
3729
+ msgid ""
3730
+ "Import complete - A total of <strong>%d</strong> entries were successfully "
3731
+ "imported. <strong>%d</strong> was skipped."
3732
+ msgstr ""
3733
+ "Importación Finalizado - En total, <strong>%d</strong> entradas fueron "
3734
+ "importado con éxito. Se saltaron <strong>%d</strong>."
3735
+
3736
+ #: includes/importers/mycred-cubepoints.php:320
3737
+ #: includes/importers/mycred-balances.php:212
3738
+ #: includes/importers/mycred-log-entries.php:180
3739
+ #: addons/stats/abstracts/mycred-abstract-stat-widget.php:100
3740
+ msgid "View Log"
3741
+ msgstr "Ver Registro"
3742
+
3743
+ #: includes/importers/mycred-cubepoints.php:320
3744
+ #: includes/importers/mycred-balances.php:212
3745
+ #: includes/importers/mycred-log-entries.php:180
3746
+ msgid "Import More"
3747
+ msgstr "Importar Más"
3748
+
3749
+ #: includes/importers/mycred-cubepoints.php:335
3750
+ msgid "No CubePoints log."
3751
+ msgstr "No hay registro de CubePoints."
3752
+
3753
+ #: includes/importers/mycred-cubepoints.php:348
3754
+ msgid "Import CubePoints Log"
3755
+ msgstr "Importar registro de CubePoints"
3756
+
3757
+ #: includes/importers/mycred-cubepoints.php:369
3758
+ msgid "Select what to import"
3759
+ msgstr "Elige lo que deseas importar"
3760
+
3761
+ #: includes/importers/mycred-cubepoints.php:370
3762
+ msgid "Log Entries Only"
3763
+ msgstr "Solo Entradas de Registro"
3764
+
3765
+ #: includes/importers/mycred-cubepoints.php:371
3766
+ msgid "CubePoints Balances Only"
3767
+ msgstr "Saldos de CubePoints Unicamente"
3768
+
3769
+ #: includes/importers/mycred-cubepoints.php:372
3770
+ msgid "Log Entries and Balances"
3771
+ msgstr "Solo Entradas y Saldos de Registro"
3772
+
3773
+ #: includes/importers/mycred-cubepoints.php:387
3774
+ msgid "Import"
3775
+ msgstr "Importar"
3776
+
3777
+ #: includes/importers/mycred-cubepoints.php:396
3778
+ msgid ""
3779
+ "Warning! Importing CubePoints balances will replace your users myCRED "
3780
+ "balance!"
3781
+ msgstr ""
3782
+ "¡Advertencia! ¡La importación de los saldos de CubePoints reemplazará el "
3783
+ "saldo de myCRED para tus usuarios!"
3784
+
3785
+ #: includes/importers/mycred-balances.php:104
3786
+ #: includes/importers/mycred-balances.php:187
3787
+ #: includes/importers/mycred-balances.php:230
3788
+ #: includes/importers/mycred-balances.php:245
3789
+ #: includes/importers/mycred-log-entries.php:104
3790
+ #: includes/importers/mycred-log-entries.php:153
3791
+ #: includes/importers/mycred-log-entries.php:199
3792
+ #: includes/importers/mycred-log-entries.php:216
3793
+ msgid "Sorry, there has been an error."
3794
+ msgstr "Lo sentimos, se ha producido un error."
3795
+
3796
+ #: includes/importers/mycred-balances.php:105
3797
+ #: includes/importers/mycred-log-entries.php:105
3798
+ msgid "The file does not exist, please try again."
3799
+ msgstr "El fichero no existe, por favor inténtelo de nuevo más tarde."
3800
+
3801
+ #: includes/importers/mycred-balances.php:188
3802
+ #: includes/importers/mycred-log-entries.php:154
3803
+ msgid "The CSV is invalid."
3804
+ msgstr "El CSV no es valido."
3805
+
3806
+ #: includes/importers/mycred-balances.php:200
3807
+ msgid ""
3808
+ "Import complete - A total of <strong>%d</strong> balances were successfully "
3809
+ "imported. <strong>%d</strong> was skipped."
3810
+ msgstr ""
3811
+ "Importación Finalizado - En total, <strong>%d</strong> saldos fueron "
3812
+ "importado con éxito. Se saltaron <strong>%d</strong>."
3813
+
3814
+ #: includes/importers/mycred-balances.php:261
3815
+ msgid "Import Balances"
3816
+ msgstr "Saldos Importar"
3817
+
3818
+ #: includes/importers/mycred-balances.php:282
3819
+ msgid "Import balances from a CSV file."
3820
+ msgstr "Importa saldos de registro desde un fichero CSV."
3821
+
3822
+ #: includes/importers/mycred-balances.php:293
3823
+ #: includes/importers/mycred-log-entries.php:263
3824
+ msgid ""
3825
+ "Before you can upload your import file, you will need to fix the following "
3826
+ "error:"
3827
+ msgstr ""
3828
+ "Antes que puedas subir tu fichero de importe, tendras que corregir los "
3829
+ "errores siguientes:"
3830
+
3831
+ #: includes/importers/mycred-balances.php:305
3832
+ #: includes/importers/mycred-log-entries.php:275
3833
+ msgid "Choose a file from your computer:"
3834
+ msgstr "Elige un fichero en tu ordenador:"
3835
+
3836
+ #: includes/importers/mycred-balances.php:311
3837
+ #: includes/importers/mycred-log-entries.php:281
3838
+ msgid "Maximum size: %s"
3839
+ msgstr "Tamaño Máximo: %s"
3840
+
3841
+ #: includes/importers/mycred-balances.php:316
3842
+ #: includes/importers/mycred-log-entries.php:286
3843
+ msgid "OR enter path to file:"
3844
+ msgstr "O rellena la ruta al fichero:"
3845
+
3846
+ #: includes/importers/mycred-balances.php:323
3847
+ #: includes/importers/mycred-log-entries.php:293
3848
+ msgid "Delimiter"
3849
+ msgstr "Delimitador"
3850
+
3851
+ #: includes/importers/mycred-balances.php:327
3852
+ msgid "Method"
3853
+ msgstr "Método"
3854
+
3855
+ #: includes/importers/mycred-balances.php:329
3856
+ msgid "Replace current balances with the amount in this CSV file"
3857
+ msgstr "Sustituir los balances actuales con los montos en el archivo CSV"
3858
+
3859
+ #: includes/importers/mycred-balances.php:330
3860
+ msgid "Adjust current balances according to the amount in this CSV file"
3861
+ msgstr "Ajustar los balances actuales de acuerdo al monto en el archivo CSV"
3862
+
3863
+ #: includes/importers/mycred-log-entries.php:232
3864
+ msgid "Import Log Entries"
3865
+ msgstr "Importar Entradas de Registro"
3866
+
3867
+ #: includes/importers/mycred-log-entries.php:253
3868
+ msgid "Import log entries from a CSV file."
3869
+ msgstr "Importa las entradas de registro desde un fichero CSV."
3870
+
3871
+ #: includes/shortcodes/mycred_exchange.php:33
3872
+ #: includes/shortcodes/mycred_exchange.php:41
3873
+ #: includes/shortcodes/mycred_exchange.php:136
3874
+ #: includes/shortcodes/mycred_exchange.php:156
3875
+ msgid "You are excluded from using %s."
3876
+ msgstr "Esta exluido del uso de %s."
3877
+
3878
+ #: includes/shortcodes/mycred_exchange.php:37
3879
+ #: includes/shortcodes/mycred_exchange.php:146
3880
+ msgid "Your balance is too low to use this feature."
3881
+ msgstr "Tu saldo esta demasiado bajo para usar esta característica."
3882
+
3883
+ #: includes/shortcodes/mycred_exchange.php:63
3884
+ msgid "Your current %s balance"
3885
+ msgstr "Tu Saldo Actual %s"
3886
+
3887
+ #: includes/shortcodes/mycred_exchange.php:70
3888
+ msgid "Minimum %s"
3889
+ msgstr "Minimo %s"
3890
+
3891
+ #: includes/shortcodes/mycred_exchange.php:75
3892
+ #: addons/gateway/event-booking/mycred-eventespresso3.php:498
3893
+ #: addons/gateway/event-booking/mycred-eventsmanager.php:578
3894
+ #: addons/gateway/event-booking/mycred-eventsmanager-pro.php:650
3895
+ #: addons/gateway/carts/mycred-wpecommerce.php:389
3896
+ #: addons/gateway/carts/mycred-woocommerce.php:140
3897
+ msgid "Exchange Rate"
3898
+ msgstr "Tipo de Cambio"
3899
+
3900
+ #: includes/shortcodes/mycred_exchange.php:76
3901
+ msgid "1 %s = <span class=\"rate\">%s</span> %s"
3902
+ msgstr "1 %s = <span class=\"rate\">%s</span> %s"
3903
+
3904
+ #: includes/shortcodes/mycred_exchange.php:124
3905
+ msgid "Point types not found."
3906
+ msgstr "Clase de puntos no encontrado."
3907
+
3908
+ #: includes/shortcodes/mycred_exchange.php:169
3909
+ msgid "You must exchange at least %s!"
3910
+ msgstr "Debes intercambiar por lo menos %s!"
3911
+
3912
+ #: includes/shortcodes/mycred_exchange.php:178
3913
+ #: addons/transfer/myCRED-addon-transfer.php:153
3914
+ msgid "Insufficient Funds. Please try a lower amount."
3915
+ msgstr "Fondos Insuficientes. Por favor intenta con una cantidad menor."
3916
+
3917
+ #: includes/shortcodes/mycred_exchange.php:191
3918
+ msgid "Exchange from %s"
3919
+ msgstr "Intercambiar desde %s"
3920
+
3921
+ #: includes/shortcodes/mycred_exchange.php:203
3922
+ msgid "Exchange to %s"
3923
+ msgstr "Intercambiar a %s"
3924
+
3925
+ #: includes/shortcodes/mycred_exchange.php:211
3926
+ msgid "You have successfully exchanged %s into %s."
3927
+ msgstr "Has intercambiado %s a %s con éxito."
3928
+
3929
+ #: includes/shortcodes/mycred_video.php:44
3930
+ msgid "A video ID is required for this shortcode"
3931
+ msgstr "Este código corto (shortcode) precisa un ID del video."
3932
+
3933
+ #: includes/classes/class.query-export.php:374
3934
+ #: includes/classes/class.query-log.php:979
3935
+ msgid "User Missing"
3936
+ msgstr "Usuario Ausente"
3937
+
3938
+ #: includes/classes/class.query-export.php:487
3939
+ msgid "Search Results"
3940
+ msgstr "Resultados de la Búsqueda"
3941
+
3942
+ #: includes/classes/class.query-log.php:427
3943
+ msgid "No log entries found"
3944
+ msgstr "Ninguna entrada de registro encontrada"
3945
+
3946
+ #: includes/classes/class.query-log.php:527
3947
+ msgid "Show all references"
3948
+ msgstr "Muestra todas las referencias"
3949
+
3950
+ #: includes/classes/class.query-log.php:552
3951
+ msgid "Show in order"
3952
+ msgstr "Mostrar en Orden"
3953
+
3954
+ #: includes/classes/class.query-log.php:573
3955
+ msgid "Filter"
3956
+ msgstr "Filtro"
3957
+
3958
+ #: includes/classes/class.query-log.php:1147
3959
+ msgid "No export options available."
3960
+ msgstr "No hay opciones para exportar."
3961
+
3962
+ #: includes/classes/class.query-log.php:1178
3963
+ #: includes/classes/class.query-log.php:1180
3964
+ msgid "Search Log"
3965
+ msgstr "Busqueda de Registro"
3966
+
3967
+ #. buscar las entradas en el registro
3968
+ #: includes/classes/class.query-log.php:1179
3969
+ msgid "search log entries"
3970
+ msgstr "Búsqueda de las entradas de registro"
3971
+
3972
+ #: includes/classes/class.query-log.php:1543
3973
+ msgid "Website Registration"
3974
+ msgstr "Inscripción del Sitio Web"
3975
+
3976
+ #: includes/classes/class.query-log.php:1544
3977
+ msgid "Website Visit"
3978
+ msgstr "Visita de Sitio Web"
3979
+
3980
+ #: includes/classes/class.query-log.php:1545
3981
+ msgid "Viewing Content (Member)"
3982
+ msgstr "Viendo Contenido (Miembro)"
3983
+
3984
+ #: includes/classes/class.query-log.php:1546
3985
+ msgid "Viewing Content (Author)"
3986
+ msgstr "Viendo Contenido (Autor)"
3987
+
3988
+ #: includes/classes/class.query-log.php:1547
3989
+ msgid "Logging in"
3990
+ msgstr "Accediendo"
3991
+
3992
+ #: includes/classes/class.query-log.php:1548
3993
+ msgid "Publishing Content"
3994
+ msgstr "Publicando Contenido"
3995
+
3996
+ #: includes/classes/class.query-log.php:1549
3997
+ msgid "Approved Comment"
3998
+ msgstr "Comentario Aprobado"
3999
+
4000
+ #: includes/classes/class.query-log.php:1550
4001
+ msgid "Unapproved Comment"
4002
+ msgstr "Comentario no Aprobado"
4003
+
4004
+ #: includes/classes/class.query-log.php:1551
4005
+ msgid "SPAM Comment"
4006
+ msgstr "Comentario SPAM"
4007
+
4008
+ #: includes/classes/class.query-log.php:1553
4009
+ msgid "Link Click"
4010
+ msgstr "Click al Enlace"
4011
+
4012
+ #: includes/classes/class.query-log.php:1554
4013
+ msgid "Watching Video"
4014
+ msgstr "Mirando Video"
4015
+
4016
+ #: includes/classes/class.query-log.php:1555
4017
+ msgid "Visitor Referral"
4018
+ msgstr "Referencia de Visitante"
4019
+
4020
+ #: includes/classes/class.query-log.php:1556
4021
+ msgid "Signup Referral"
4022
+ msgstr "Referencia de Inscripción "
4023
+
4024
+ #: includes/classes/class.query-log.php:1560
4025
+ msgid "New Profile Update"
4026
+ msgstr "Nuevo Perfil Actualizado"
4027
+
4028
+ #: includes/classes/class.query-log.php:1562
4029
+ msgid "Avatar Upload"
4030
+ msgstr "Subir Avatar"
4031
+
4032
+ #: includes/classes/class.query-log.php:1565
4033
+ msgid "Ended Friendship"
4034
+ msgstr "Amistad Terminada"
4035
+
4036
+ #: includes/classes/class.query-log.php:1566
4037
+ msgid "New Profile Comment"
4038
+ msgstr "Nuevo Comentario de Perfil"
4039
+
4040
+ #: includes/classes/class.query-log.php:1567
4041
+ msgid "Profile Comment Deletion"
4042
+ msgstr "Borrar Comentario del Perfil"
4043
+
4044
+ #: includes/classes/class.query-log.php:1570
4045
+ msgid "New Message"
4046
+ msgstr "Nuevo Mensaje"
4047
+
4048
+ #: includes/classes/class.query-log.php:1572
4049
+ msgid "New Group"
4050
+ msgstr "Nuevo Grupo"
4051
+
4052
+ #: includes/classes/class.query-log.php:1573
4053
+ msgid "Deleted Group"
4054
+ msgstr "Grupo Borrado"
4055
+
4056
+ #: includes/classes/class.query-log.php:1574
4057
+ msgid "New Group Forum Topic"
4058
+ msgstr "Nuevo Tema del Fórum de Grupo"
4059
+
4060
+ #: includes/classes/class.query-log.php:1575
4061
+ msgid "Edit Group Forum Topic"
4062
+ msgstr "Editar el Tema del Fórum de Grupo"
4063
+
4064
+ #: includes/classes/class.query-log.php:1576
4065
+ msgid "New Group Forum Post"
4066
+ msgstr "Nueva Entrada del Fórum de Grupo"
4067
+
4068
+ #: includes/classes/class.query-log.php:1577
4069
+ msgid "Edit Group Forum Post"
4070
+ msgstr "Editar Entrada del Fórum de Grupo"
4071
+
4072
+ #: includes/classes/class.query-log.php:1578
4073
+ msgid "Joining Group"
4074
+ msgstr "Agregar al Grupo"
4075
+
4076
+ #: includes/classes/class.query-log.php:1579
4077
+ msgid "Leaving Group"
4078
+ msgstr "Dejando el Grupo"
4079
+
4080
+ #: includes/classes/class.query-log.php:1580
4081
+ msgid "New Group Avatar"
4082
+ msgstr "Nuevo Avatar del Grupo"
4083
+
4084
+ #: includes/classes/class.query-log.php:1582
4085
+ msgid "New Group Comment"
4086
+ msgstr ""
4087
+ "Nuevo Comentario al Grupo\n"
4088
+
4089
+ #: includes/classes/class.query-log.php:1592
4090
+ msgid "New Link"
4091
+ msgstr "Nuevo Enlace"
4092
+
4093
+ #: includes/classes/class.query-log.php:1593
4094
+ msgid "Link Voting"
4095
+ msgstr "Votar sobre Enlace"
4096
+
4097
+ #: includes/classes/class.query-log.php:1594
4098
+ msgid "Link Update"
4099
+ msgstr "Enlace Actualizado"
4100
+
4101
+ #: includes/classes/class.query-log.php:1598
4102
+ msgid "New Forum (bbPress)"
4103
+ msgstr "Nuevo Fórum (bbPress)"
4104
+
4105
+ #: includes/classes/class.query-log.php:1599
4106
+ msgid "New Forum Topic (bbPress)"
4107
+ msgstr "Nuevo Tema de Fórum (bbPress)"
4108
+
4109
+ #: includes/classes/class.query-log.php:1600
4110
+ msgid "Favorited Topic (bbPress)"
4111
+ msgstr "Tema Favorito (bbPress)"
4112
+
4113
+ #: includes/classes/class.query-log.php:1601
4114
+ msgid "New Topic Reply (bbPress)"
4115
+ msgstr "Nueva Respuesta a Tema (bbPress)"
4116
+
4117
+ #: includes/classes/class.query-log.php:1605
4118
+ msgid "Form Submission (Contact Form 7)"
4119
+ msgstr "Sumisión de Formulario (Contact Form 7)"
4120
+
4121
+ #: includes/classes/class.query-log.php:1608
4122
+ msgid "Form Submission (Gravity Form)"
4123
+ msgstr "Sumisión de Formulario (Gravity Form)"
4124
+
4125
+ #: includes/classes/class.query-log.php:1611
4126
+ msgid "New Forum Topic (SimplePress)"
4127
+ msgstr "Nuevo Tema de Fórum (SimplePress)"
4128
+
4129
+ #: includes/classes/class.query-log.php:1612
4130
+ msgid "New Forum Post (SimplePress)"
4131
+ msgstr "Nueva Entrada de Fórum (SimplePress)"
4132
+
4133
+ #: includes/classes/class.query-log.php:1633
4134
+ msgid "Poll Voting"
4135
+ msgstr "Votación"
4136
+
4137
+ #: includes/classes/class.query-log.php:1636
4138
+ msgid "Sending an Invite"
4139
+ msgstr "Mandando una Invitación"
4140
+
4141
+ #: includes/classes/class.query-log.php:1637
4142
+ msgid "Accepting an Invite"
4143
+ msgstr "Aceptando una Invitación"
4144
+
4145
+ #: includes/classes/class.query-log.php:1643
4146
+ #: addons/banking/myCRED-addon-banking.php:150
4147
+ msgid "Compound Interest"
4148
+ msgstr "Interés Compuesto"
4149
+
4150
+ #: includes/classes/class.query-log.php:1651
4151
+ msgid "buyCRED Purchase (PayPal Standard)"
4152
+ msgstr "Compra buyCRED (PayPal Standard)"
4153
+
4154
+ #: includes/classes/class.query-log.php:1652
4155
+ msgid "buyCRED Purchase (Skrill)"
4156
+ msgstr "Compra buyCRED (Skrill)"
4157
+
4158
+ #: includes/classes/class.query-log.php:1653
4159
+ msgid "buyCRED Purchase (Zombaio)"
4160
+ msgstr "Compra buyCRED (Zombaio)"
4161
+
4162
+ #: includes/classes/class.query-log.php:1654
4163
+ msgid "buyCRED Purchase (NETBilling)"
4164
+ msgstr "Compra buyCRED (NETBilling)"
4165
+
4166
+ #: includes/classes/class.query-log.php:1655
4167
+ msgid "buyCRED Purchase (BitPay)"
4168
+ msgstr "Compra buyCRED (BitPay)"
4169
+
4170
+ #: includes/classes/class.query-log.php:1660
4171
+ msgid "Coupon Purchase"
4172
+ msgstr "Compra Cupón"
4173
+
4174
+ #: includes/classes/class.query-log.php:1664
4175
+ msgid "Store Purchase (WooCommerce)"
4176
+ msgstr "Compra de Tienda (WooCommerce)"
4177
+
4178
+ #: includes/classes/class.query-log.php:1669
4179
+ msgid "Store Purchase (MarketPress)"
4180
+ msgstr "Compra de Tienda (MarketPress)"
4181
+
4182
+ #: includes/classes/class.query-log.php:1673
4183
+ msgid "Store Purchase (WP E-Commerce)"
4184
+ msgstr "Compra de Tienda (WP E-Commerce)"
4185
+
4186
+ #: includes/classes/class.query-log.php:1679
4187
+ msgid "Event Payment (Event Espresso)"
4188
+ msgstr "Pago por Evento (Event Espresso)"
4189
+
4190
+ #: includes/classes/class.query-log.php:1680
4191
+ msgid "Event Sale (Event Espresso)"
4192
+ msgstr "Venta de Evento (Event Espresso)"
4193
+
4194
+ #: includes/classes/class.query-log.php:1684
4195
+ msgid "Event Payment (Events Manager)"
4196
+ msgstr "Pago por Evento (Events Manager)"
4197
+
4198
+ #: includes/classes/class.query-log.php:1685
4199
+ msgid "Event Sale (Events Manager)"
4200
+ msgstr "Venta de Evento (Events Manager)"
4201
+
4202
+ #: includes/classes/class.query-log.php:1694
4203
+ #: addons/transfer/myCRED-addon-transfer.php:48
4204
+ msgid "Transfer"
4205
+ msgstr "Transferir"
4206
+
4207
+ #: includes/classes/class.query-log.php:1698
4208
+ msgid "Manual Adjustment by Admin"
4209
+ msgstr "Ajuste Manual por Admin"
4210
+
4211
+ #: addons/banking/myCRED-addon-banking.php:45
4212
+ #: addons/banking/myCRED-addon-banking.php:46
4213
+ #: addons/banking/myCRED-addon-banking.php:47
4214
+ msgid "Banking"
4215
+ msgstr "Banco"
4216
+
4217
+ #: addons/banking/myCRED-addon-banking.php:141
4218
+ msgid "Central Banking"
4219
+ msgstr "Banco Central"
4220
+
4221
+ #: addons/banking/myCRED-addon-banking.php:159
4222
+ msgid "Recurring Payouts"
4223
+ msgstr "Pagos Recurrentes"
4224
+
4225
+ #: addons/banking/myCRED-addon-banking.php:160
4226
+ msgid "Setup mass %_singular% payouts for your users."
4227
+ msgstr "Configurar pago en masa &_singular% para tus usuarios."
4228
+
4229
+ #: addons/banking/myCRED-addon-banking.php:253
4230
+ msgid "%s Banking"
4231
+ msgstr "%s Bancario"
4232
+
4233
+ #: addons/banking/myCRED-addon-banking.php:273
4234
+ #: addons/buy-creds/modules/buycred-module-core.php:581
4235
+ msgid "Enable"
4236
+ msgstr "Habilitar"
4237
+
4238
+ #: addons/banking/myCRED-addon-banking.php:292
4239
+ msgid "Update Changes"
4240
+ msgstr "Actualizar Cambios"
4241
+
4242
+ #: addons/transfer/myCRED-addon-transfer.php:41
4243
+ msgid "You do not have enough %plural% to send."
4244
+ msgstr "No tienes bastante %plural% para mandar."
4245
+
4246
+ #: addons/transfer/myCRED-addon-transfer.php:42
4247
+ msgid "You have exceeded your %limit% transfer limit."
4248
+ msgstr "Has excedido tu limite de transferencia de %limit%."
4249
+
4250
+ #: addons/transfer/myCRED-addon-transfer.php:146
4251
+ msgid "Transaction completed."
4252
+ msgstr "Transacción Finalizada"
4253
+
4254
+ #: addons/transfer/myCRED-addon-transfer.php:147
4255
+ msgid ""
4256
+ "Security token could not be verified. Please contact your site administrator!"
4257
+ msgstr ""
4258
+ "No se pudo verificar el 'token' (código) de seguridad. ¡Por favor, póngase "
4259
+ "en contacto con el administrador del sitio!"
4260
+
4261
+ #: addons/transfer/myCRED-addon-transfer.php:148
4262
+ #: addons/transfer/myCRED-addon-transfer.php:155
4263
+ msgid "Communications error. Please try again later."
4264
+ msgstr "Error en comunicación. Por favor inténtelo de nuevo más tarde."
4265
+
4266
+ #: addons/transfer/myCRED-addon-transfer.php:149
4267
+ msgid "Recipient not found. Please try again."
4268
+ msgstr "El recipiente no fuel encontrado. Por favor Inténtelo de nuevo."
4269
+
4270
+ #: addons/transfer/myCRED-addon-transfer.php:150
4271
+ msgid "Transaction declined by recipient."
4272
+ msgstr "Transacción rechazada por el destinatario"
4273
+
4274
+ #: addons/transfer/myCRED-addon-transfer.php:151
4275
+ msgid "Incorrect amount. Please try again."
4276
+ msgstr "Cantidad incorecta. Por favor inténtelo de nuevo."
4277
+
4278
+ #: addons/transfer/myCRED-addon-transfer.php:152
4279
+ msgid ""
4280
+ "This myCRED Add-on has not yet been setup! No transfers are allowed until "
4281
+ "this has been done!"
4282
+ msgstr ""
4283
+ "¡Esta Extensión de myCRED todavía no ha sido configurado! No se permite "
4284
+ "transferencias hasta que se haga esto."
4285
+
4286
+ #: addons/transfer/myCRED-addon-transfer.php:154
4287
+ msgid "Transfer Limit exceeded."
4288
+ msgstr "Límite de transferencia excedida."
4289
+
4290
+ #: addons/transfer/myCRED-addon-transfer.php:360
4291
+ msgid "No limits."
4292
+ msgstr "Sin limite."
4293
+
4294
+ #: addons/transfer/myCRED-addon-transfer.php:361
4295
+ msgid "Impose daily limit."
4296
+ msgstr "Imponer limite diario."
4297
+
4298
+ #: addons/transfer/myCRED-addon-transfer.php:362
4299
+ msgid "Impose weekly limit."
4300
+ msgstr "Imponer limite semanal."
4301
+
4302
+ #: addons/transfer/myCRED-addon-transfer.php:369
4303
+ msgid "User Login (user_login)"
4304
+ msgstr "Ingreso Usuario (user_login)"
4305
+
4306
+ #: addons/transfer/myCRED-addon-transfer.php:370
4307
+ msgid "User Email (user_email)"
4308
+ msgstr "Correo Electrónico del Usuario (user_email)"
4309
+
4310
+ #: addons/transfer/myCRED-addon-transfer.php:378
4311
+ msgid "Transfers"
4312
+ msgstr "Transferencias"
4313
+
4314
+ #: addons/transfer/myCRED-addon-transfer.php:388
4315
+ msgid "Select the point types that users can transfer."
4316
+ msgstr "Elige el clase de punto que el usuario puede transferir."
4317
+
4318
+ #: addons/transfer/myCRED-addon-transfer.php:398
4319
+ msgid "Log template for sending"
4320
+ msgstr "Plantilla de registros para transmitir"
4321
+
4322
+ #: addons/transfer/myCRED-addon-transfer.php:405
4323
+ msgid "Log template for receiving"
4324
+ msgstr "Plantilla de registros para recibir"
4325
+
4326
+ #: addons/transfer/myCRED-addon-transfer.php:412
4327
+ msgid "Autofill Recipient"
4328
+ msgstr "Destinatario del Relleno Automático"
4329
+
4330
+ #: addons/transfer/myCRED-addon-transfer.php:426
4331
+ msgid "Select what user details recipients should be autofilled by."
4332
+ msgstr ""
4333
+ "Selecciona cuales detalles del usuario al destinatario deben ser rellenados "
4334
+ "automáticamente."
4335
+
4336
+ #: addons/transfer/myCRED-addon-transfer.php:429
4337
+ msgid "Reload"
4338
+ msgstr "Recargar"
4339
+
4340
+ #: addons/transfer/myCRED-addon-transfer.php:432
4341
+ msgid "Reload page on successful transfers."
4342
+ msgstr "Actualizar la pagina despues de transferencias finalizadas."
4343
+
4344
+ #: addons/transfer/myCRED-addon-transfer.php:435
4345
+ #: addons/coupons/myCRED-addon-coupons.php:250
4346
+ #: addons/banking/services/mycred-service-payouts.php:599
4347
+ #: addons/banking/services/mycred-service-payouts.php:760
4348
+ msgid "Limits"
4349
+ msgstr "imites"
4350
+
4351
+ #: addons/transfer/myCRED-addon-transfer.php:456
4352
+ msgid "Limit Amount"
4353
+ msgstr "Limitar la Cantidad"
4354
+
4355
+ #: addons/transfer/myCRED-addon-transfer.php:460
4356
+ #: addons/sell-content/myCRED-addon-sell-content.php:553
4357
+ #: addons/gateway/event-booking/mycred-eventespresso3.php:525
4358
+ msgid "Templates"
4359
+ msgstr "Plantillas"
4360
+
4361
+ #: addons/transfer/myCRED-addon-transfer.php:463
4362
+ #: addons/sell-content/myCRED-addon-sell-content.php:573
4363
+ #: addons/gateway/event-booking/mycred-eventespresso3.php:538
4364
+ #: addons/gateway/carts/mycred-wpecommerce.php:411
4365
+ msgid "Visitors"
4366
+ msgstr "Visitantes"
4367
+
4368
+ #: addons/ranks/myCRED-addon-ranks.php:218
4369
+ #: addons/ranks/myCRED-addon-ranks.php:227
4370
+ #: addons/ranks/myCRED-addon-ranks.php:237
4371
+ #: addons/ranks/myCRED-addon-ranks.php:339
4372
+ #: addons/ranks/myCRED-addon-ranks.php:340
4373
+ #: addons/ranks/myCRED-addon-ranks.php:724
4374
+ #: addons/ranks/myCRED-addon-ranks.php:1358
4375
+ #: addons/ranks/myCRED-addon-ranks.php:1648
4376
+ msgid "Ranks"
4377
+ msgstr "Rangos"
4378
+
4379
+ #: addons/ranks/myCRED-addon-ranks.php:222
4380
+ #: addons/ranks/myCRED-addon-ranks.php:724
4381
+ #: addons/ranks/myCRED-addon-ranks.php:873
4382
+ #: addons/ranks/myCRED-addon-ranks.php:876
4383
+ #: addons/ranks/myCRED-addon-ranks.php:904
4384
+ msgid "Rank"
4385
+ msgstr "Rango"
4386
+
4387
+ #: addons/ranks/myCRED-addon-ranks.php:223
4388
+ #: addons/ranks/myCRED-addon-ranks.php:224
4389
+ #: addons/email-notices/myCRED-addon-email-notices.php:126
4390
+ #: addons/email-notices/myCRED-addon-email-notices.php:127
4391
+ #: addons/badges/myCRED-addon-badges.php:150
4392
+ #: addons/badges/myCRED-addon-badges.php:151
4393
+ #: addons/banking/services/mycred-service-payouts.php:896
4394
+ msgid "Add New"
4395
+ msgstr "Añade Nuevo"
4396
+
4397
+ #: addons/ranks/myCRED-addon-ranks.php:225
4398
+ msgid "Edit Rank"
4399
+ msgstr "Editar Rango"
4400
+
4401
+ #: addons/ranks/myCRED-addon-ranks.php:226
4402
+ msgid "New Rank"
4403
+ msgstr "Nuevo Rango"
4404
+
4405
+ #: addons/ranks/myCRED-addon-ranks.php:228
4406
+ msgid "View Rank"
4407
+ msgstr "Ver Rango"
4408
+
4409
+ #: addons/ranks/myCRED-addon-ranks.php:229
4410
+ msgid "Search Ranks"
4411
+ msgstr "Búsqueda de Rangos"
4412
+
4413
+ #: addons/ranks/myCRED-addon-ranks.php:234
4414
+ #: addons/ranks/myCRED-addon-ranks.php:1285
4415
+ msgid "No ranks found"
4416
+ msgstr "Ningun rango encontrado"
4417
+
4418
+ #: addons/ranks/myCRED-addon-ranks.php:235
4419
+ msgid "No ranks found in Trash"
4420
+ msgstr "Ningun rango encontrao el la papelera"
4421
+
4422
+ #: addons/ranks/myCRED-addon-ranks.php:283
4423
+ #: addons/ranks/myCRED-addon-ranks.php:284
4424
+ #: addons/ranks/myCRED-addon-ranks.php:285
4425
+ #: addons/ranks/myCRED-addon-ranks.php:286
4426
+ #: addons/ranks/myCRED-addon-ranks.php:287
4427
+ #: addons/ranks/myCRED-addon-ranks.php:290
4428
+ #: addons/ranks/myCRED-addon-ranks.php:291
4429
+ msgid "Rank Updated."
4430
+ msgstr "Rango Actualizado."
4431
+
4432
+ #: addons/ranks/myCRED-addon-ranks.php:481
4433
+ msgid "Completed - Total of %d users effected"
4434
+ msgstr "Completado - Un total %d usuarios afectados"
4435
+
4436
+ #: addons/ranks/myCRED-addon-ranks.php:987
4437
+ msgid "Warning! All ranks will be deleted! This can not be undone!"
4438
+ msgstr ""
4439
+ "¡Advertencia! ¡Todos los rangos seran borrados! ¡No se puede deshacer esto!"
4440
+
4441
+ #: addons/ranks/myCRED-addon-ranks.php:988
4442
+ msgid "Are you sure you want to re-assign user ranks?"
4443
+ msgstr "Esta seguro que quieres reasignar rangos de los usuarios?"
4444
+
4445
+ #: addons/ranks/myCRED-addon-ranks.php:1073
4446
+ #: addons/ranks/myCRED-addon-ranks.php:1174
4447
+ msgid "Rank Title"
4448
+ msgstr "Titulo de Rango"
4449
+
4450
+ #: addons/ranks/myCRED-addon-ranks.php:1074
4451
+ msgid "Logo"
4452
+ msgstr "Logotipo"
4453
+
4454
+ #: addons/ranks/myCRED-addon-ranks.php:1075
4455
+ #: addons/badges/myCRED-addon-badges.php:828
4456
+ #: addons/badges/myCRED-addon-badges.php:829
4457
+ msgid "Requirement"
4458
+ msgstr "Requisito"
4459
+
4460
+ #: addons/ranks/myCRED-addon-ranks.php:1101
4461
+ msgid "No Logo Set"
4462
+ msgstr "No hay Logotipo Configurado"
4463
+
4464
+ #: addons/ranks/myCRED-addon-ranks.php:1116
4465
+ #: addons/ranks/myCRED-addon-ranks.php:1121
4466
+ msgid "Any Value"
4467
+ msgstr "Cualquier Valor"
4468
+
4469
+ #: addons/ranks/myCRED-addon-ranks.php:1118
4470
+ #: addons/buy-creds/modules/buycred-module-core.php:327
4471
+ msgid "Minimum %plural%"
4472
+ msgstr "Minimo %_plural%"
4473
+
4474
+ #: addons/ranks/myCRED-addon-ranks.php:1123
4475
+ msgid "Maximum %plural%"
4476
+ msgstr "Maximo %plural%"
4477
+
4478
+ #: addons/ranks/myCRED-addon-ranks.php:1274
4479
+ #: addons/ranks/myCRED-addon-ranks.php:1275
4480
+ msgid "Not Set"
4481
+ msgstr "No Configurado"
4482
+
4483
+ #: addons/ranks/myCRED-addon-ranks.php:1363
4484
+ msgid "Rank Features"
4485
+ msgstr "Caracteristicas de los Rangos"
4486
+
4487
+ #: addons/ranks/myCRED-addon-ranks.php:1367
4488
+ msgid "%plural% requirement"
4489
+ msgstr "%plural% requisito"
4490
+
4491
+ #: addons/ranks/myCRED-addon-ranks.php:1370
4492
+ msgid "Content"
4493
+ msgstr "Contenido"
4494
+
4495
+ #: addons/ranks/myCRED-addon-ranks.php:1372
4496
+ msgid "Excerpt"
4497
+ msgstr "Extracto"
4498
+
4499
+ #: addons/ranks/myCRED-addon-ranks.php:1374
4500
+ msgid "Comments"
4501
+ msgstr "Comentario"
4502
+
4503
+ #: addons/ranks/myCRED-addon-ranks.php:1376
4504
+ msgid "Page Attributes"
4505
+ msgstr "Atributos de Página"
4506
+
4507
+ #: addons/ranks/myCRED-addon-ranks.php:1378
4508
+ msgid "Custom Fields"
4509
+ msgstr "Campo Personalizado"
4510
+
4511
+ #: addons/ranks/myCRED-addon-ranks.php:1382
4512
+ msgid "Public"
4513
+ msgstr "Público"
4514
+
4515
+ #. This is not clear, especially the second sentence (fragment)!
4516
+ #: addons/ranks/myCRED-addon-ranks.php:1386
4517
+ msgid ""
4518
+ "If you want to create a template archive for each rank, you must select to "
4519
+ "have ranks public. Defaults to disabled."
4520
+ msgstr ""
4521
+ "Si desea crear un archivo de plantilla para cada rango, debe seleccionar que "
4522
+ "los rangos sean público. Los valores predeterminados desactivado."
4523
+
4524
+ #: addons/ranks/myCRED-addon-ranks.php:1389
4525
+ msgid "Archive URL"
4526
+ msgstr "URL del Archivo"
4527
+
4528
+ #: addons/ranks/myCRED-addon-ranks.php:1393
4529
+ msgid "Ignored if Ranks are not public"
4530
+ msgstr "Sera Ingnorado si los Rangos no son Pulicos"
4531
+
4532
+ #. not sure if this is order, as in ordering pizza or order as in rank, organization
4533
+ #: addons/ranks/myCRED-addon-ranks.php:1396
4534
+ msgid "Display Order"
4535
+ msgstr "Orden de Visualización"
4536
+
4537
+ #: addons/ranks/myCRED-addon-ranks.php:1404
4538
+ msgid "Ascending - Lowest rank to highest"
4539
+ msgstr "Ascendente - Rango más bajo a lo más alto"
4540
+
4541
+ #: addons/ranks/myCRED-addon-ranks.php:1405
4542
+ msgid "Descending - Highest rank to lowest"
4543
+ msgstr "Descendiente - Rango más alto al más bajo"
4544
+
4545
+ #: addons/ranks/myCRED-addon-ranks.php:1416
4546
+ msgid ""
4547
+ "Select in what order ranks should be displayed in your admin area and/or "
4548
+ "front if ranks are \"Public\""
4549
+ msgstr ""
4550
+ "Elige en que orden se debe mostrar los rangos en tu area de administrador "
4551
+ "y/o en el frente si los rangos son \"Público\""
4552
+
4553
+ #: addons/ranks/myCRED-addon-ranks.php:1422
4554
+ msgid "Rank Basis"
4555
+ msgstr "Base de Rango"
4556
+
4557
+ #: addons/ranks/myCRED-addon-ranks.php:1425
4558
+ msgid "Users are ranked according to their current balance."
4559
+ msgstr "Los usuarios se clasifican según su saldo actual."
4560
+
4561
+ #: addons/ranks/myCRED-addon-ranks.php:1428
4562
+ msgid ""
4563
+ "Users are ranked according to the total amount of %_plural% they have "
4564
+ "accumulated."
4565
+ msgstr ""
4566
+ "Los usuarios se clasifican según la cantidad total de %_plural% que han "
4567
+ "acumulado."
4568
+
4569
+ #: addons/ranks/myCRED-addon-ranks.php:1432
4570
+ #: addons/ranks/myCRED-addon-ranks.php:1437
4571
+ msgid "Calculate Totals"
4572
+ msgstr "Calcular Totales"
4573
+
4574
+ #: addons/ranks/myCRED-addon-ranks.php:1435
4575
+ msgid ""
4576
+ "Once a users total has been calculated, they will be assigned to their "
4577
+ "appropriate roles. For this reason, it is highly recommended that you first "
4578
+ "setup your ranks!"
4579
+ msgstr ""
4580
+ "Una vez que la suma del usuario haya sido calculado, sus roles "
4581
+ "corespondientes seran asignados. ¡Por esta razón, se recomienda altamente "
4582
+ "que primero configures los rangos!"
4583
+
4584
+ #: addons/ranks/myCRED-addon-ranks.php:1436
4585
+ msgid ""
4586
+ "Depending on your log size and number of users this process may take a while."
4587
+ " Please do not leave, click \"Update Settings\" or re-fresh this page until "
4588
+ "this is completed!"
4589
+ msgstr ""
4590
+ "Segun el tamaño de registro y los numeros de usuarios este proceso puede "
4591
+ "llevar un rato. ¡Por favor no abandone esta pagina, haga click sobre "
4592
+ "\"Actualizar Configuraciones\" o refrescar la pagina hasta que se haya "
4593
+ "completado!"
4594
+
4595
+ #: addons/ranks/myCRED-addon-ranks.php:1454
4596
+ msgid "Include in Profile Header."
4597
+ msgstr "Incluir en Encabezado del Perfil"
4598
+
4599
+ #: addons/ranks/myCRED-addon-ranks.php:1456
4600
+ msgid "Include under the \"Profile\" tab and Profile Header."
4601
+ msgstr "Incluir bajo la pestanã \"Perfil\" y Encabezado de Perfil."
4602
+
4603
+ #: addons/ranks/myCRED-addon-ranks.php:1460
4604
+ msgid "Rank in BuddyPress"
4605
+ msgstr "Rango en BuddyPress"
4606
+
4607
+ #: addons/ranks/myCRED-addon-ranks.php:1500
4608
+ #: addons/badges/myCRED-addon-badges.php:1183
4609
+ msgid "Include in Profile"
4610
+ msgstr "Incluir en el Perfil"
4611
+
4612
+ #: addons/ranks/myCRED-addon-ranks.php:1584
4613
+ msgid "Script Communication Error"
4614
+ msgstr "Error del Script de Comunicación"
4615
+
4616
+ #: addons/ranks/myCRED-addon-ranks.php:1651
4617
+ msgid "User Meta Key"
4618
+ msgstr "Clave Meta del Usuario"
4619
+
4620
+ #: addons/ranks/myCRED-addon-ranks.php:1655
4621
+ msgid "No. of ranks"
4622
+ msgstr "Numero de Rangos"
4623
+
4624
+ #: addons/ranks/myCRED-addon-ranks.php:1660
4625
+ msgid "Remove All Ranks"
4626
+ msgstr "Quitar todos los Rangos"
4627
+
4628
+ #: addons/ranks/myCRED-addon-ranks.php:1660
4629
+ msgid "Assign Ranks to Users"
4630
+ msgstr "Asignar Rango a los Usuarios"
4631
+
4632
+ #: addons/notifications/myCRED-addon-notifications.php:191
4633
+ msgid "Notifications"
4634
+ msgstr "Notificaciones"
4635
+
4636
+ #: addons/notifications/myCRED-addon-notifications.php:193
4637
+ msgid "Styling"
4638
+ msgstr "Diseño/Estilo"
4639
+
4640
+ #: addons/notifications/myCRED-addon-notifications.php:196
4641
+ msgid "Use the included CSS Styling for notifications."
4642
+ msgstr "Utilice el Estilo CSS incluido para notificaciones."
4643
+
4644
+ #: addons/notifications/myCRED-addon-notifications.php:203
4645
+ msgid ""
4646
+ "Use %entry% to show the log entry in the notice and %amount% for the amount."
4647
+ msgstr ""
4648
+ "Utiliza %entry% para mostrar la entrada de registro en el aviso y %amount% "
4649
+ "para la cantidad."
4650
+
4651
+ #: addons/notifications/myCRED-addon-notifications.php:206
4652
+ msgid "Transient Lifespan"
4653
+ msgstr "Duración de Transitorio"
4654
+
4655
+ #: addons/notifications/myCRED-addon-notifications.php:210
4656
+ msgid ""
4657
+ "The number of days a users notification is saved before being automatically "
4658
+ "deleted."
4659
+ msgstr ""
4660
+ "Cuantos dias una notificación del usuario se guarda antes de automáticamente "
4661
+ "borrarse."
4662
+
4663
+ #: addons/notifications/myCRED-addon-notifications.php:213
4664
+ msgid "Duration"
4665
+ msgstr "Duracion"
4666
+
4667
+ #: addons/email-notices/myCRED-addon-email-notices.php:167
4668
+ #: addons/email-notices/myCRED-addon-email-notices.php:168
4669
+ #: addons/email-notices/myCRED-addon-email-notices.php:169
4670
+ #: addons/email-notices/myCRED-addon-email-notices.php:170
4671
+ #: addons/email-notices/myCRED-addon-email-notices.php:173
4672
+ #: addons/email-notices/myCRED-addon-email-notices.php:174
4673
+ #: addons/email-notices/myCRED-addon-email-notices.php:175
4674
+ #: addons/email-notices/myCRED-addon-email-notices.php:176
4675
+ msgid "Email Notice Updated."
4676
+ msgstr "Aviso atraves de correo electrónico Actualizado."
4677
+
4678
+ #: addons/email-notices/myCRED-addon-email-notices.php:254
4679
+ #: addons/email-notices/myCRED-addon-email-notices.php:271
4680
+ msgid "Email Subject"
4681
+ msgstr "Asunto del Correo Electrónico"
4682
+
4683
+ #: addons/email-notices/myCRED-addon-email-notices.php:272
4684
+ #: addons/sell-content/myCRED-addon-sell-content.php:493
4685
+ #: addons/banking/services/mycred-service-payouts.php:565
4686
+ #: addons/banking/services/mycred-service-payouts.php:880
4687
+ msgid "Status"
4688
+ msgstr "Estatus"
4689
+
4690
+ #: addons/email-notices/myCRED-addon-email-notices.php:298
4691
+ msgid "Not Active"
4692
+ msgstr "No esta Activo"
4693
+
4694
+ #: addons/email-notices/myCRED-addon-email-notices.php:301
4695
+ msgid "Scheduled:<br /><strong>%1$s</strong>"
4696
+ msgstr "Programada:<br /><strong>%1$s</strong>"
4697
+
4698
+ #: addons/email-notices/myCRED-addon-email-notices.php:306
4699
+ #: addons/banking/services/mycred-service-payouts.php:31
4700
+ msgid "Active"
4701
+ msgstr "Activo"
4702
+
4703
+ #: addons/email-notices/myCRED-addon-email-notices.php:308
4704
+ msgid "Active - Last run:<br /><strong>%1$s</strong>"
4705
+ msgstr "Activo - Ultima ejecución:<br /><strong>%1$s</strong>"
4706
+
4707
+ #: addons/email-notices/myCRED-addon-email-notices.php:321
4708
+ msgid "Email is sent when"
4709
+ msgstr "el Correo Electrónico se envia cuando"
4710
+
4711
+ #: addons/email-notices/myCRED-addon-email-notices.php:323
4712
+ msgid "Missing instance for this notice!"
4713
+ msgstr "¡Falta una instancia para este aviso!"
4714
+
4715
+ #: addons/email-notices/myCRED-addon-email-notices.php:332
4716
+ #: addons/email-notices/myCRED-addon-email-notices.php:334
4717
+ #: addons/email-notices/myCRED-addon-email-notices.php:336
4718
+ msgid "Sent To"
4719
+ msgstr "Enviado A:"
4720
+
4721
+ #: addons/email-notices/myCRED-addon-email-notices.php:334
4722
+ #: addons/email-notices/myCRED-addon-email-notices.php:568
4723
+ msgid "Administrator"
4724
+ msgstr "Administrador"
4725
+
4726
+ #: addons/email-notices/myCRED-addon-email-notices.php:336
4727
+ msgid "Both Administrator and User"
4728
+ msgstr "Tanto Administrador como Usuario"
4729
+
4730
+ #: addons/email-notices/myCRED-addon-email-notices.php:384
4731
+ #: addons/email-notices/myCRED-addon-email-notices.php:1400
4732
+ msgid "Email Settings"
4733
+ msgstr "Configuraciones de Correo Electrónico"
4734
+
4735
+ #: addons/email-notices/myCRED-addon-email-notices.php:393
4736
+ msgid "Available Template Tags"
4737
+ msgstr "Etiquetas (tags) de Plantilla Disponibles"
4738
+
4739
+ #: addons/email-notices/myCRED-addon-email-notices.php:404
4740
+ msgid "Email Header"
4741
+ msgstr "Encabezado del Correo Electrónico"
4742
+
4743
+ #: addons/email-notices/myCRED-addon-email-notices.php:490
4744
+ msgid ""
4745
+ "Once a notice is \"published\" it becomes active! Select \"Save Draft\" if "
4746
+ "you are not yet ready to use this email notice!"
4747
+ msgstr ""
4748
+ "¡Una vez que un aviso sea \"publicado\" se activa! ¡Elige \"Guardar "
4749
+ "Borrador\" si aun no estás listo para utilizar este aviso por email!"
4750
+
4751
+ #: addons/email-notices/myCRED-addon-email-notices.php:492
4752
+ msgid "This notice will become active on:<br /><strong>%1$s</strong>"
4753
+ msgstr "Este aviso se activará en:<br /><strong>%1$s</strong>"
4754
+
4755
+ #: addons/email-notices/myCRED-addon-email-notices.php:494
4756
+ msgid "This email notice is active."
4757
+ msgstr "Esta notificación de correo electrónico esta activada."
4758
+
4759
+ #: addons/email-notices/myCRED-addon-email-notices.php:520
4760
+ msgid "Send this email notice when..."
4761
+ msgstr "Envia este aviso por correo electrónico cuando..."
4762
+
4763
+ #: addons/email-notices/myCRED-addon-email-notices.php:563
4764
+ msgid "Recipient:"
4765
+ msgstr "Destinatario:"
4766
+
4767
+ #: addons/email-notices/myCRED-addon-email-notices.php:571
4768
+ msgid "Both"
4769
+ msgstr "Ambos"
4770
+
4771
+ #: addons/email-notices/myCRED-addon-email-notices.php:607
4772
+ #: addons/email-notices/myCRED-addon-email-notices.php:1403
4773
+ msgid "Senders Name:"
4774
+ msgstr "Nombre del Remitente"
4775
+
4776
+ #: addons/email-notices/myCRED-addon-email-notices.php:611
4777
+ #: addons/email-notices/myCRED-addon-email-notices.php:1407
4778
+ msgid "Senders Email:"
4779
+ msgstr "Correo Electrónico del Remitente:"
4780
+
4781
+ #: addons/email-notices/myCRED-addon-email-notices.php:615
4782
+ msgid "Reply-To Email:"
4783
+ msgstr "Responder-A Correo Electrónico:"
4784
+
4785
+ #: addons/email-notices/myCRED-addon-email-notices.php:640
4786
+ msgid "CSS Styling"
4787
+ msgstr "Estilo CSS"
4788
+
4789
+ #: addons/email-notices/myCRED-addon-email-notices.php:663
4790
+ msgid "Site Related"
4791
+ msgstr "Relacionado al Sitio"
4792
+
4793
+ #: addons/email-notices/myCRED-addon-email-notices.php:669
4794
+ msgid "Your websites title"
4795
+ msgstr "Titulo de tu pagina web"
4796
+
4797
+ #: addons/email-notices/myCRED-addon-email-notices.php:677
4798
+ msgid "Your websites address"
4799
+ msgstr "Dirección de tu pagina web"
4800
+
4801
+ #: addons/email-notices/myCRED-addon-email-notices.php:685
4802
+ msgid "Your websites tagline (description)"
4803
+ msgstr "La descripción de tu sitio web (lema o eslogan)"
4804
+
4805
+ #: addons/email-notices/myCRED-addon-email-notices.php:693
4806
+ msgid "Your websites admin email"
4807
+ msgstr "El correo electrónico de admin para tu pagina web"
4808
+
4809
+ #: addons/email-notices/myCRED-addon-email-notices.php:701
4810
+ msgid "Total number of blog members"
4811
+ msgstr "Número total de miembros del blog"
4812
+
4813
+ #. can also be users as in plural, I've assumed it is user singular with a missing apostrophe
4814
+ #: addons/email-notices/myCRED-addon-email-notices.php:862
4815
+ msgid "users balance changes"
4816
+ msgstr "el saldo de usuario cambia"
4817
+
4818
+ #: addons/email-notices/myCRED-addon-email-notices.php:863
4819
+ msgid "user gains %_plural%"
4820
+ msgstr "usuario gana %_plural%"
4821
+
4822
+ #: addons/email-notices/myCRED-addon-email-notices.php:864
4823
+ msgid "user lose %_plural%"
4824
+ msgstr "usuario pierde %_plural%"
4825
+
4826
+ #: addons/email-notices/myCRED-addon-email-notices.php:865
4827
+ msgid "users balance reaches zero"
4828
+ msgstr "saldo de usuario llega a cero"
4829
+
4830
+ #. can also be users as in plural, I've assumed it is user singular with a missing apostrophe
4831
+ #: addons/email-notices/myCRED-addon-email-notices.php:866
4832
+ msgid "users balance goes minus"
4833
+ msgstr "el saldo de usuario cae a negativo"
4834
+
4835
+ #: addons/email-notices/myCRED-addon-email-notices.php:880
4836
+ msgid "Sell Content Add-on"
4837
+ msgstr "Extensión para Vender Contenido"
4838
+
4839
+ #: addons/email-notices/myCRED-addon-email-notices.php:881
4840
+ msgid "user buys content"
4841
+ msgstr "usuario compra contenido"
4842
+
4843
+ #: addons/email-notices/myCRED-addon-email-notices.php:882
4844
+ msgid "authors content gets sold"
4845
+ msgstr "el contenido del autor sera vendido"
4846
+
4847
+ #: addons/email-notices/myCRED-addon-email-notices.php:889
4848
+ msgid "buyCREDs Add-on"
4849
+ msgstr "Extensión de compraCREDs"
4850
+
4851
+ #: addons/email-notices/myCRED-addon-email-notices.php:890
4852
+ msgid "user buys %_plural%"
4853
+ msgstr "usuario compra %_plural%"
4854
+
4855
+ #: addons/email-notices/myCRED-addon-email-notices.php:897
4856
+ msgid "Transfer Add-on"
4857
+ msgstr "Extensión de Transferencias"
4858
+
4859
+ #: addons/email-notices/myCRED-addon-email-notices.php:898
4860
+ msgid "user sends %_plural%"
4861
+ msgstr "usuario manda %_plural%"
4862
+
4863
+ #: addons/email-notices/myCRED-addon-email-notices.php:899
4864
+ msgid "user receives %_plural%"
4865
+ msgstr "usuario recibe %_plural%"
4866
+
4867
+ #: addons/email-notices/myCRED-addon-email-notices.php:906
4868
+ msgid "Ranks Add-on"
4869
+ msgstr "Extensión de Rangos"
4870
+
4871
+ #: addons/email-notices/myCRED-addon-email-notices.php:907
4872
+ msgid "user is demoted"
4873
+ msgstr "se ha degrado al usuario"
4874
+
4875
+ #: addons/email-notices/myCRED-addon-email-notices.php:908
4876
+ msgid "user is promoted"
4877
+ msgstr "se ha promovido al usuario"
4878
+
4879
+ #: addons/email-notices/myCRED-addon-email-notices.php:1337
4880
+ #: addons/coupons/myCRED-addon-coupons.php:112
4881
+ msgid "Email Notices"
4882
+ msgstr "Avisos por Correo Electrónico"
4883
+
4884
+ #: addons/email-notices/myCRED-addon-email-notices.php:1339
4885
+ msgid ""
4886
+ "Settings that apply to all email notices and can not be overridden for "
4887
+ "individual emails."
4888
+ msgstr ""
4889
+ "Ajustes que se aplica a todos los correos electrónicos y que no seran "
4890
+ "anulados para correos electronicos especificos."
4891
+
4892
+ #: addons/email-notices/myCRED-addon-email-notices.php:1340
4893
+ msgid "Email Format"
4894
+ msgstr "Formato de Correo Electrónico"
4895
+
4896
+ #: addons/email-notices/myCRED-addon-email-notices.php:1343
4897
+ msgid "Plain text emails only."
4898
+ msgstr "Correo electrónico usando texto sin formato."
4899
+
4900
+ #: addons/email-notices/myCRED-addon-email-notices.php:1346
4901
+ msgid "HTML or Plain text emails."
4902
+ msgstr "Correo electrónico usando HTML o texto sin formato."
4903
+
4904
+ #: addons/email-notices/myCRED-addon-email-notices.php:1349
4905
+ msgid "Filters"
4906
+ msgstr "Filtros"
4907
+
4908
+ #: addons/email-notices/myCRED-addon-email-notices.php:1353
4909
+ msgid ""
4910
+ "Allow WordPress and Third Party Plugins to filter the email subject before "
4911
+ "an email is sent."
4912
+ msgstr ""
4913
+ "Permite a Wordpress y a los Plugins de terceros a filtrar el asunto del "
4914
+ "correo electrónico antes de enviarlo."
4915
+
4916
+ #: addons/email-notices/myCRED-addon-email-notices.php:1357
4917
+ msgid ""
4918
+ "Allow WordPress and Third Party Plugins to filter the email content before "
4919
+ "an email is sent."
4920
+ msgstr ""
4921
+ "Permite a Wordpress y a los Plugins de terceros a filtrar el contenido del "
4922
+ "correo electrónico antes de enviarlo."
4923
+
4924
+ #: addons/email-notices/myCRED-addon-email-notices.php:1363
4925
+ #: addons/email-notices/myCRED-addon-email-notices.php:1370
4926
+ msgid "Email Schedule"
4927
+ msgstr "Itinerario de Emails"
4928
+
4929
+ #: addons/email-notices/myCRED-addon-email-notices.php:1365
4930
+ msgid "WordPress Cron is disabled. Emails will be sent immediately."
4931
+ msgstr ""
4932
+ "WordPress Cron esta desactivado. Los emails seran mandados inmediatamente."
4933
+
4934
+ #: addons/email-notices/myCRED-addon-email-notices.php:1374
4935
+ msgid "Send emails immediately"
4936
+ msgstr "Mandar emails inmediatamente"
4937
+
4938
+ #: addons/email-notices/myCRED-addon-email-notices.php:1378
4939
+ msgid "Send emails once an hour"
4940
+ msgstr "Mandar emails una vez a la hora"
4941
+
4942
+ #: addons/email-notices/myCRED-addon-email-notices.php:1382
4943
+ msgid "Send emails once a day"
4944
+ msgstr "Mandar emails una vez al dia"
4945
+
4946
+ #: addons/email-notices/myCRED-addon-email-notices.php:1385
4947
+ msgid "Subscriptions"
4948
+ msgstr "Suscripciones"
4949
+
4950
+ #: addons/email-notices/myCRED-addon-email-notices.php:1387
4951
+ msgid ""
4952
+ "Use the %s shortcode to allow users to subscribe / unsubscribe to email "
4953
+ "updates."
4954
+ msgstr ""
4955
+ "Utilize el %s codigo corto para permitir que los usuarios suscriben o darsen "
4956
+ "de baja a informes vía correo electrónico."
4957
+
4958
+ #: addons/email-notices/myCRED-addon-email-notices.php:1392
4959
+ msgid "SMTP Override"
4960
+ msgstr "Invalidar SMTP"
4961
+
4962
+ #: addons/email-notices/myCRED-addon-email-notices.php:1396
4963
+ msgid ""
4964
+ "SMTP Debug. Enable if you are experiencing issues with wp_mail() or if you "
4965
+ "use a SMTP plugin for emails."
4966
+ msgstr ""
4967
+ "Depurar SMTP. Habilitar si hay erores con wp_mail() o si utiliza un plugin "
4968
+ "SMTP para email."
4969
+
4970
+ #: addons/email-notices/myCRED-addon-email-notices.php:1399
4971
+ msgid ""
4972
+ "Default email settings. These settings can be individually overridden when "
4973
+ "editing emails."
4974
+ msgstr ""
4975
+ "Configuraciones predeterminadas para correos electrónicos. Estos ajustes "
4976
+ "pueden ser anulado individualmente cuando se edita correos electrónicos."
4977
+
4978
+ #: addons/email-notices/myCRED-addon-email-notices.php:1411
4979
+ msgid "Reply-To:"
4980
+ msgstr "Responder-A:"
4981
+
4982
+ #: addons/email-notices/myCRED-addon-email-notices.php:1415
4983
+ msgid "Default Email Content"
4984
+ msgstr "Contenido de Correo Electrónico Predefinido"
4985
+
4986
+ #: addons/email-notices/myCRED-addon-email-notices.php:1419
4987
+ msgid "Default email content."
4988
+ msgstr "Contenido de correo electrónico predefinido."
4989
+
4990
+ #: addons/email-notices/myCRED-addon-email-notices.php:1422
4991
+ msgid "Default Email Styling"
4992
+ msgstr "Estilo de Correo Electrónico Predefinido"
4993
+
4994
+ #: addons/email-notices/myCRED-addon-email-notices.php:1426
4995
+ msgid "Ignored if HTML is not allowed in emails."
4996
+ msgstr "Sera ignorado si no se permite HTML en los correos electrónicos."
4997
+
4998
+ #: addons/email-notices/myCRED-addon-email-notices.php:1523
4999
+ msgid "Unsubscribe"
5000
+ msgstr "Cancelar la Suscripción"
5001
+
5002
+ #: addons/email-notices/myCRED-addon-email-notices.php:1524
5003
+ msgid "Email Notice"
5004
+ msgstr "Aviso por Correo Electrónico"
5005
+
5006
+ #: addons/email-notices/myCRED-addon-email-notices.php:1545
5007
+ msgid "There are no email notifications yet."
5008
+ msgstr "Todavía no hay notificaciones de email."
5009
+
5010
+ #: addons/email-notices/myCRED-addon-email-notices.php:1552
5011
+ #: addons/buy-creds/modules/buycred-module-pending.php:506
5012
+ msgid "Save Changes"
5013
+ msgstr "Guardar Cambios"
5014
+
5015
+ #: addons/badges/myCRED-addon-badges.php:148
5016
+ #: addons/badges/myCRED-addon-badges.php:154
5017
+ #: addons/badges/myCRED-addon-badges.php:160
5018
+ #: addons/badges/myCRED-addon-badges.php:295
5019
+ #: addons/badges/myCRED-addon-badges.php:296
5020
+ #: addons/badges/myCRED-addon-badges.php:1134
5021
+ #: addons/badges/myCRED-addon-badges.php:1256
5022
+ #: addons/badges/myCRED-addon-badges.php:1259
5023
+ msgid "Badges"
5024
+ msgstr "Insignias"
5025
+
5026
+ #: addons/badges/myCRED-addon-badges.php:149
5027
+ msgid "Badge"
5028
+ msgstr "Insignia"
5029
+
5030
+ #: addons/badges/myCRED-addon-badges.php:152
5031
+ msgid "Edit Badge"
5032
+ msgstr "Editar Insignia"
5033
+
5034
+ #: addons/badges/myCRED-addon-badges.php:153
5035
+ msgid "New Badge"
5036
+ msgstr "Nueva Insignia"
5037
+
5038
+ #: addons/badges/myCRED-addon-badges.php:155
5039
+ msgid "View Badge"
5040
+ msgstr "Ver Insignia"
5041
+
5042
+ #: addons/badges/myCRED-addon-badges.php:156
5043
+ msgid "Search Badge"
5044
+ msgstr "Buscar Insignia"
5045
+
5046
+ #: addons/badges/myCRED-addon-badges.php:157
5047
+ msgid "No badges found"
5048
+ msgstr "Ninguna Insignia Encontrada"
5049
+
5050
+ #: addons/badges/myCRED-addon-badges.php:158
5051
+ msgid "No badges found in Trash"
5052
+ msgstr "Ninguna Insignia Encontrada en la Papelera"
5053
+
5054
+ #: addons/badges/myCRED-addon-badges.php:270
5055
+ #: addons/badges/myCRED-addon-badges.php:271
5056
+ #: addons/badges/myCRED-addon-badges.php:272
5057
+ #: addons/badges/myCRED-addon-badges.php:273
5058
+ #: addons/badges/myCRED-addon-badges.php:277
5059
+ #: addons/badges/myCRED-addon-badges.php:278
5060
+ #: addons/badges/myCRED-addon-badges.php:279
5061
+ msgid "Badge Updated."
5062
+ msgstr "Insignia Actualizada"
5063
+
5064
+ #: addons/badges/myCRED-addon-badges.php:396
5065
+ #: addons/badges/myCRED-addon-badges.php:480
5066
+ msgid "Badge Name"
5067
+ msgstr "Nombre de Insignia"
5068
+
5069
+ #: addons/badges/myCRED-addon-badges.php:397
5070
+ msgid "Default Image"
5071
+ msgstr "Imagen Predefinida"
5072
+
5073
+ #: addons/badges/myCRED-addon-badges.php:399
5074
+ msgid "Requirements"
5075
+ msgstr "Requisitos"
5076
+
5077
+ #: addons/badges/myCRED-addon-badges.php:516
5078
+ msgid "Badge Image"
5079
+ msgstr "Imagen de la Insignia"
5080
+
5081
+ #: addons/badges/myCRED-addon-badges.php:517
5082
+ msgid "Use as Badge"
5083
+ msgstr "Utiliza como Insignia"
5084
+
5085
+ #: addons/badges/myCRED-addon-badges.php:678
5086
+ msgid "Assign Badge"
5087
+ msgstr "Asignar Insignia"
5088
+
5089
+ #: addons/badges/myCRED-addon-badges.php:679
5090
+ msgid "Remove Connections"
5091
+ msgstr "Quitar Conexiones"
5092
+
5093
+ #: addons/badges/myCRED-addon-badges.php:777
5094
+ msgid "Time(s)"
5095
+ msgstr "Tiempo(s)"
5096
+
5097
+ #: addons/badges/myCRED-addon-badges.php:778
5098
+ msgid "In total"
5099
+ msgstr "En Total"
5100
+
5101
+ #: addons/badges/myCRED-addon-badges.php:1184
5102
+ msgid "Include in Forum Replies"
5103
+ msgstr "Incluir en Respuesta de Fórum"
5104
+
5105
+ #: addons/badges/myCRED-addon-badges.php:1185
5106
+ msgid "Include in Profile and Forum Replies"
5107
+ msgstr "Incluir en Perfil y Respuestas de Fórum"
5108
+
5109
+ #: addons/badges/myCRED-addon-badges.php:1408
5110
+ msgid "No users has yet earned this badge."
5111
+ msgstr "Ningun usuario ha ganado esta insignia."
5112
+
5113
+ #: addons/badges/myCRED-addon-badges.php:1435
5114
+ msgid "%s connections where removed."
5115
+ msgstr "%s conexiones han sido quitados."
5116
+
5117
+ #: addons/coupons/myCRED-addon-coupons.php:100
5118
+ #: addons/coupons/myCRED-addon-coupons.php:106
5119
+ #: addons/coupons/myCRED-addon-coupons.php:168
5120
+ #: addons/coupons/myCRED-addon-coupons.php:169
5121
+ #: addons/coupons/myCRED-addon-coupons.php:659
5122
+ msgid "Coupons"
5123
+ msgstr "Cupones"
5124
+
5125
+ #: addons/coupons/myCRED-addon-coupons.php:101
5126
+ msgid "Coupon"
5127
+ msgstr "Cupón"
5128
+
5129
+ #: addons/coupons/myCRED-addon-coupons.php:102
5130
+ #: addons/coupons/myCRED-addon-coupons.php:103
5131
+ msgid "Create New"
5132
+ msgstr "Crear Nuevo"
5133
+
5134
+ #: addons/coupons/myCRED-addon-coupons.php:104
5135
+ msgid "Edit Coupon"
5136
+ msgstr "Editar Cupón"
5137
+
5138
+ #: addons/coupons/myCRED-addon-coupons.php:105
5139
+ msgid "New Coupon"
5140
+ msgstr "Nuevo Cupón"
5141
+
5142
+ #: addons/coupons/myCRED-addon-coupons.php:108
5143
+ msgid "Search coupons"
5144
+ msgstr "Busqueda de Cupones"
5145
+
5146
+ #: addons/coupons/myCRED-addon-coupons.php:109
5147
+ msgid "No coupons found"
5148
+ msgstr "Ningun Cupón Encontrado"
5149
+
5150
+ #: addons/coupons/myCRED-addon-coupons.php:110
5151
+ msgid "No coupons found in Trash"
5152
+ msgstr "Ningun Cupón Encontrado en la Papelera"
5153
+
5154
+ #: addons/coupons/myCRED-addon-coupons.php:143
5155
+ #: addons/coupons/myCRED-addon-coupons.php:144
5156
+ #: addons/coupons/myCRED-addon-coupons.php:145
5157
+ #: addons/coupons/myCRED-addon-coupons.php:146
5158
+ #: addons/coupons/myCRED-addon-coupons.php:149
5159
+ #: addons/coupons/myCRED-addon-coupons.php:150
5160
+ #: addons/coupons/myCRED-addon-coupons.php:151
5161
+ #: addons/coupons/myCRED-addon-coupons.php:152
5162
+ msgid "Coupon updated."
5163
+ msgstr "Cupón Actualizado"
5164
+
5165
+ #: addons/coupons/myCRED-addon-coupons.php:148
5166
+ msgid "Coupon published."
5167
+ msgstr "Cupón Publicado."
5168
+
5169
+ #: addons/coupons/myCRED-addon-coupons.php:230
5170
+ #: addons/coupons/myCRED-addon-coupons.php:247
5171
+ msgid "Coupon Code"
5172
+ msgstr "Código de Cupón"
5173
+
5174
+ #: addons/coupons/myCRED-addon-coupons.php:248
5175
+ #: addons/coupons/myCRED-addon-coupons.php:481
5176
+ msgid "Value"
5177
+ msgstr "Valor"
5178
+
5179
+ #: addons/coupons/myCRED-addon-coupons.php:251
5180
+ #: addons/sell-content/includes/mycred-sell-shortcodes.php:188
5181
+ msgid "Expires"
5182
+ msgstr "Expire"
5183
+
5184
+ #: addons/coupons/myCRED-addon-coupons.php:307
5185
+ msgid "Per User"
5186
+ msgstr "Por Usuario"
5187
+
5188
+ #: addons/coupons/myCRED-addon-coupons.php:316
5189
+ #: addons/sell-content/includes/mycred-sell-shortcodes.php:231
5190
+ msgid "Never"
5191
+ msgstr "Nunca"
5192
+
5193
+ #: addons/coupons/myCRED-addon-coupons.php:322
5194
+ msgid "Expired"
5195
+ msgstr "Caducado"
5196
+
5197
+ #: addons/coupons/myCRED-addon-coupons.php:326
5198
+ msgid "In %s time"
5199
+ msgstr "En %s tiempo"
5200
+
5201
+ #: addons/coupons/myCRED-addon-coupons.php:425
5202
+ msgid "Coupon Setup"
5203
+ msgstr "Configuración de Cupón"
5204
+
5205
+ #: addons/coupons/myCRED-addon-coupons.php:434
5206
+ msgid "Coupon Limits"
5207
+ msgstr "Limites de Cupón"
5208
+
5209
+ #: addons/coupons/myCRED-addon-coupons.php:443
5210
+ msgid "Coupon Requirements"
5211
+ msgstr "Requisitos de Cupón"
5212
+
5213
+ #: addons/coupons/myCRED-addon-coupons.php:483
5214
+ msgid "The amount of %plural% this coupon is worth."
5215
+ msgstr "La cantidad de %plural% que vale este cupón."
5216
+
5217
+ #: addons/coupons/myCRED-addon-coupons.php:492
5218
+ msgid "Select the point type that this coupon is applied."
5219
+ msgstr "Elige el clase de puntos al cual este cupón se aplica."
5220
+
5221
+ #: addons/coupons/myCRED-addon-coupons.php:504
5222
+ msgid "Expire"
5223
+ msgstr "Caducar"
5224
+
5225
+ #: addons/coupons/myCRED-addon-coupons.php:506
5226
+ msgid ""
5227
+ "Optional date when this coupon expires. Expired coupons will be trashed."
5228
+ msgstr ""
5229
+ "La fecha opcional cuando este cupón caduca. Cupones caducados seran "
5230
+ "destrozado."
5231
+
5232
+ #: addons/coupons/myCRED-addon-coupons.php:534
5233
+ msgid "Global Maximum"
5234
+ msgstr "Máximo Global"
5235
+
5236
+ #. not clear if this is referring to the maximum number of users or to the maximum "points" a user can have or accrue?
5237
+ #: addons/coupons/myCRED-addon-coupons.php:541
5238
+ msgid "User Maximum"
5239
+ msgstr "Máximo Usuario"
5240
+
5241
+ #: addons/coupons/myCRED-addon-coupons.php:543
5242
+ msgid "The maximum number of times this coupon can be used by a user."
5243
+ msgstr ""
5244
+ "El máximo numero de veces que se puede utilizadar este cupón por un usuario."
5245
+
5246
+ #: addons/coupons/myCRED-addon-coupons.php:574
5247
+ #: addons/banking/services/mycred-service-interest.php:499
5248
+ msgid "Minimum Balance"
5249
+ msgstr "Saldo Minimo"
5250
+
5251
+ #: addons/coupons/myCRED-addon-coupons.php:579
5252
+ msgid ""
5253
+ "Optional minimum balance a user must have in order to use this coupon. Use "
5254
+ "zero to disable."
5255
+ msgstr ""
5256
+ "Mínimo saldo opcional que el usuario debe tener para utilizar este cupón. "
5257
+ "Utilice cero para inhabilitar."
5258
+
5259
+ #: addons/coupons/myCRED-addon-coupons.php:586
5260
+ msgid "Maximum Balance"
5261
+ msgstr "Saldo Máximo"
5262
+
5263
+ #: addons/coupons/myCRED-addon-coupons.php:591
5264
+ msgid ""
5265
+ "Optional maximum balance a user can have in order to use this coupon. Use "
5266
+ "zero to disable."
5267
+ msgstr ""
5268
+ "Saldo máximo opcional que un usuario puede tener para usar este cupón. Ponga "
5269
+ "cero para desactivar."
5270
+
5271
+ #: addons/coupons/myCRED-addon-coupons.php:665
5272
+ msgid ""
5273
+ "Log entry for successful coupon redemption. Use %coupon% to show the coupon "
5274
+ "code."
5275
+ msgstr ""
5276
+ "Entrada del registro al exitoso canje del cupón. Utilice %coupon% para "
5277
+ "mostrar el código del cupón."
5278
+
5279
+ #: addons/coupons/myCRED-addon-coupons.php:668
5280
+ msgid "Invalid Coupon Message"
5281
+ msgstr "Mensaje Cupón Invalido"
5282
+
5283
+ #: addons/coupons/myCRED-addon-coupons.php:672
5284
+ msgid "Message to show when users try to use a coupon that does not exists."
5285
+ msgstr ""
5286
+ "Mostrar mensaje cuando los usuarios intenten usar un cupón que no existe."
5287
+
5288
+ #: addons/coupons/myCRED-addon-coupons.php:675
5289
+ msgid "Expired Coupon Message"
5290
+ msgstr "Mensaje de Cupón Caducado"
5291
+
5292
+ #: addons/coupons/myCRED-addon-coupons.php:679
5293
+ msgid "Message to show when users try to use that has expired."
5294
+ msgstr "Mostrar mensaje cuando los usuarios intenten usar lo que ha caducado."
5295
+
5296
+ #: addons/coupons/myCRED-addon-coupons.php:682
5297
+ msgid "User Limit Message"
5298
+ msgstr "Mensaje de Límite de Usuario"
5299
+
5300
+ #: addons/coupons/myCRED-addon-coupons.php:686
5301
+ msgid "Message to show when the user limit has been reached for the coupon."
5302
+ msgstr "Mostrar mensaje cuando el cupón alcanza su límite de usuarios."
5303
+
5304
+ #: addons/coupons/myCRED-addon-coupons.php:689
5305
+ msgid "Minimum Balance Message"
5306
+ msgstr "Mensaje de Saldo Mínimo"
5307
+
5308
+ #: addons/coupons/myCRED-addon-coupons.php:693
5309
+ msgid ""
5310
+ "Message to show when a user does not meet the minimum balance requirement. "
5311
+ "(if used)"
5312
+ msgstr ""
5313
+ "Mostrar mensaje cuando el usuario no cumple con el saldo mínimo requerido. "
5314
+ "(si se utiliza)"
5315
+
5316
+ #: addons/coupons/myCRED-addon-coupons.php:696
5317
+ msgid "Maximum Balance Message"
5318
+ msgstr "Mensaje Saldo Máximo"
5319
+
5320
+ #: addons/coupons/myCRED-addon-coupons.php:700
5321
+ msgid ""
5322
+ "Message to show when a user does not meet the maximum balance requirement. "
5323
+ "(if used)"
5324
+ msgstr ""
5325
+ "Mostrar mensaje cuando un usuario no alcanza el saldo máximo requerido. (si "
5326
+ "se utiliza)"
5327
+
5328
+ #: addons/coupons/myCRED-addon-coupons.php:703
5329
+ msgid "Success Message"
5330
+ msgstr "Mensaje de éxito"
5331
+
5332
+ #: addons/coupons/myCRED-addon-coupons.php:707
5333
+ msgid ""
5334
+ "Message to show when a coupon was successfully deposited to a users account."
5335
+ msgstr ""
5336
+ "Monstrar mensaje cuando un cupón se deposita con éxito en una cuenta usuaria."
5337
+
5338
+ #: addons/sell-content/myCRED-addon-sell-content.php:238
5339
+ #: addons/sell-content/myCRED-addon-sell-content.php:241
5340
+ #: addons/sell-content/myCRED-addon-sell-content.php:506
5341
+ msgid "Profit Share"
5342
+ msgstr "Reparto de Utilidades"
5343
+
5344
+ #: addons/sell-content/myCRED-addon-sell-content.php:365
5345
+ #: addons/sell-content/myCRED-addon-sell-content.php:830
5346
+ msgid "Sell Content"
5347
+ msgstr "Vender Contenido"
5348
+
5349
+ #: addons/sell-content/myCRED-addon-sell-content.php:367
5350
+ msgid "Post Types"
5351
+ msgstr "Post Types"
5352
+
5353
+ #: addons/sell-content/myCRED-addon-sell-content.php:497
5354
+ #: addons/sell-content/myCRED-addon-sell-content.php:903
5355
+ #: addons/gateway/event-booking/mycred-eventespresso3.php:495
5356
+ #: addons/gateway/event-booking/mycred-eventsmanager.php:336
5357
+ #: addons/gateway/event-booking/mycred-eventsmanager.php:339
5358
+ #: addons/gateway/event-booking/mycred-eventsmanager-pro.php:153
5359
+ #: addons/gateway/event-booking/mycred-eventsmanager-pro.php:156
5360
+ msgid "Price"
5361
+ msgstr "Precio"
5362
+
5363
+ #: addons/sell-content/myCRED-addon-sell-content.php:513
5364
+ #: addons/sell-content/myCRED-addon-sell-content.php:548
5365
+ #: addons/gateway/event-booking/mycred-eventespresso3.php:473
5366
+ #: addons/gateway/event-booking/mycred-eventsmanager.php:619
5367
+ #: addons/gateway/event-booking/mycred-eventsmanager-pro.php:703
5368
+ #: addons/transfer/includes/mycred-transfer-widgets.php:88
5369
+ msgid "Button Label"
5370
+ msgstr "Eqiqueta Asignada al Botón"
5371
+
5372
+ #: addons/banking/services/mycred-service-central.php:117
5373
+ msgid "Ignore Manual Adjustments"
5374
+ msgstr "Ignorar Ajustes Manuales"
5375
+
5376
+ #: addons/banking/services/mycred-service-interest.php:28
5377
+ msgid "%plural% interest rate payment"
5378
+ msgstr "%plural% pago de tasa de interés"
5379
+
5380
+ #: addons/banking/services/mycred-service-interest.php:481
5381
+ #: addons/banking/services/mycred-service-interest.php:652
5382
+ msgid "Interest Rate"
5383
+ msgstr "Tasa de Interés"
5384
+
5385
+ #: addons/banking/services/mycred-service-interest.php:528
5386
+ #: addons/banking/services/mycred-service-interest.php:529
5387
+ #: addons/banking/services/mycred-service-payouts.php:791
5388
+ msgid "Comma separated list of user IDs"
5389
+ msgstr "Lista del IDs de usuarios delimitado por comas"
5390
+
5391
+ #: addons/banking/services/mycred-service-payouts.php:573
5392
+ msgid "Last Run"
5393
+ msgstr "Ultima Ejecución"
5394
+
5395
+ #: addons/banking/services/mycred-service-payouts.php:591
5396
+ #: addons/gateway/carts/mycred-wpecommerce.php:396
5397
+ msgid "Payout"
5398
+ msgstr "Desembolso"
5399
+
5400
+ #. also, "Cada Hora"
5401
+ #: addons/banking/includes/mycred-banking-functions.php:79
5402
+ msgid "Hourly"
5403
+ msgstr "Por Hora"
5404
+
5405
+ #: addons/banking/includes/mycred-banking-functions.php:84
5406
+ msgid "Daily"
5407
+ msgstr "Diario"
5408
+
5409
+ #: addons/banking/includes/mycred-banking-functions.php:89
5410
+ msgid "Weekly"
5411
+ msgstr "Semanal"
5412
+
5413
+ #: addons/banking/includes/mycred-banking-functions.php:94
5414
+ msgid "Monthly"
5415
+ msgstr "Mensual"
5416
+
5417
+ #: addons/banking/includes/mycred-banking-functions.php:99
5418
+ msgid "Quarterly"
5419
+ msgstr "Trimestral"
5420
+
5421
+ #: addons/banking/includes/mycred-banking-functions.php:104
5422
+ msgid "Semiannually"
5423
+ msgstr "Semestral"
5424
+
5425
+ #: addons/banking/includes/mycred-banking-functions.php:109
5426
+ msgid "Annually"
5427
+ msgstr "Anual"
5428
+
5429
+ #: addons/gateway/event-booking/mycred-eventespresso3.php:26
5430
+ #: addons/gateway/event-booking/mycred-eventsmanager.php:540
5431
+ #: addons/gateway/event-booking/mycred-eventsmanager-pro.php:626
5432
+ #: addons/buy-creds/modules/buycred-module-core.php:673
5433
+ msgid "Payments"
5434
+ msgstr "Pagos"
5435
+
5436
+ #: addons/gateway/event-booking/mycred-eventespresso3.php:27
5437
+ #: addons/gateway/event-booking/mycred-eventsmanager.php:35
5438
+ #: addons/gateway/event-booking/mycred-eventsmanager-pro.php:39
5439
+ #: addons/buy-creds/modules/buycred-module-pending.php:733
5440
+ msgid "Pay Now"
5441
+ msgstr "Pagar Ahora"
5442
+
5443
+ #: addons/gateway/event-booking/mycred-eventespresso3.php:32
5444
+ msgid "Payment for Event Registration"
5445
+ msgstr "Pago para Registrar Evento"
5446
+
5447
+ #: addons/gateway/event-booking/mycred-eventespresso3.php:311
5448
+ #: addons/gateway/event-booking/mycred-eventespresso3.php:336
5449
+ #: addons/gateway/event-booking/mycred-eventsmanager.php:416
5450
+ #: addons/gateway/carts/mycred-wpecommerce.php:120
5451
+ msgid "Total Cost"
5452
+ msgstr "Coste Total"
5453
+
5454
+ #: addons/gateway/event-booking/mycred-eventespresso3.php:315
5455
+ #: addons/gateway/event-booking/mycred-eventespresso3.php:340
5456
+ msgid "Balance After Purchase"
5457
+ msgstr "Saldo Despues de Compra"
5458
+
5459
+ #: addons/gateway/event-booking/mycred-eventespresso3.php:380
5460
+ msgid "Activate %s"
5461
+ msgstr "Activar %s"
5462
+
5463
+ #: addons/gateway/event-booking/mycred-eventespresso3.php:389
5464
+ msgid "Deactivate %s"
5465
+ msgstr "Desactivar %s"
5466
+
5467
+ #: addons/gateway/event-booking/mycred-eventespresso3.php:402
5468
+ msgid "Gateway Settings"
5469
+ msgstr "Configuraciones de la Pasarela de Pago"
5470
+
5471
+ #: addons/gateway/event-booking/mycred-eventespresso3.php:442
5472
+ #: addons/gateway/event-booking/mycred-eventsmanager.php:524
5473
+ #: addons/gateway/event-booking/mycred-eventsmanager-pro.php:595
5474
+ msgid "How many %s is 1 %s worth?"
5475
+ msgstr "¿Cuantos %s vale un %s?"
5476
+
5477
+ #. also, "Titulo de la Pasarela de Pago" depending on the technical nature of the action being done
5478
+ #: addons/gateway/event-booking/mycred-eventespresso3.php:463
5479
+ msgid "Gateway Title"
5480
+ msgstr "Titulo de la Red de Enlace"
5481
+
5482
+ #: addons/gateway/event-booking/mycred-eventespresso3.php:465
5483
+ msgid "Title to show on Payment page"
5484
+ msgstr "Titulo que se mostrara en tu pagina de Pago"
5485
+
5486
+ #: addons/gateway/event-booking/mycred-eventespresso3.php:468
5487
+ msgid "Payment Type"
5488
+ msgstr "Clase de Pago"
5489
+
5490
+ #: addons/gateway/event-booking/mycred-eventespresso3.php:470
5491
+ msgid "Title to show on receipts and logs"
5492
+ msgstr "El titulo a mostrar en la factura y en los registros."
5493
+
5494
+ #: addons/gateway/event-booking/mycred-eventespresso3.php:475
5495
+ msgid "Pay Button"
5496
+ msgstr "Botón de Pago"
5497
+
5498
+ #: addons/gateway/event-booking/mycred-eventespresso3.php:503
5499
+ msgid "Important!"
5500
+ msgstr "¡Importante!"
5501
+
5502
+ #: addons/gateway/event-booking/mycred-eventespresso3.php:505
5503
+ msgid ""
5504
+ "You can disable purchases using this gateway by adding a custom Event Meta: "
5505
+ "<code>mycred_no_sale</code>"
5506
+ msgstr ""
5507
+ "Puedes inhabilitar compras a traves de esta pasarela mediante la adición de "
5508
+ "un Evento Meta personalizado: <code>mycred_no_sale</code>"
5509
+
5510
+ #: addons/gateway/event-booking/mycred-eventespresso3.php:506
5511
+ msgid "Users must be logged in to use this gateway!"
5512
+ msgstr "¡Los usuarios deben estar conectado para usar esta pasarela de pago!"
5513
+
5514
+ #: addons/gateway/event-booking/mycred-eventespresso3.php:510
5515
+ #: addons/gateway/event-booking/mycred-eventsmanager.php:569
5516
+ #: addons/gateway/event-booking/mycred-eventsmanager-pro.php:641
5517
+ #: addons/gateway/carts/mycred-wpecommerce.php:393
5518
+ #: addons/gateway/carts/mycred-woocommerce.php:168
5519
+ msgid "Profit Sharing"
5520
+ msgstr "Reparto de Ganancias"
5521
+
5522
+ #: addons/gateway/event-booking/mycred-eventespresso3.php:512
5523
+ #: addons/gateway/event-booking/mycred-eventsmanager.php:572
5524
+ #: addons/gateway/event-booking/mycred-eventsmanager-pro.php:644
5525
+ #: addons/gateway/carts/mycred-wpecommerce.php:397
5526
+ #: addons/gateway/carts/mycred-woocommerce.php:170
5527
+ msgid "Option to share sales with the product owner. Use zero to disable."
5528
+ msgstr ""
5529
+ "Opción de compartir las ventas con el dueño del producto. Utilice cero para "
5530
+ "inhabilitar."
5531
+
5532
+ #: addons/gateway/event-booking/mycred-eventespresso3.php:528
5533
+ msgid "Solvent users"
5534
+ msgstr "Usuarios Solventes"
5535
+
5536
+ #: addons/gateway/event-booking/mycred-eventespresso3.php:530
5537
+ msgid ""
5538
+ "Message to show users on the payment page before they are charged. Leave "
5539
+ "empty to hide."
5540
+ msgstr ""
5541
+ "Mostrar mensaje a los usuarios en la pagina de pago antes de cobrar. Dejalo "
5542
+ "vacío para ocultar. "
5543
+
5544
+ #: addons/gateway/event-booking/mycred-eventespresso3.php:533
5545
+ msgid "Insolvent users"
5546
+ msgstr "Usuarios Insolventes"
5547
+
5548
+ #: addons/gateway/event-booking/mycred-eventespresso3.php:535
5549
+ msgid "Message to show users who do not have enough points to pay."
5550
+ msgstr ""
5551
+ "Mostrar mensaje a los usuarios que no tienen suficientes puntos con que "
5552
+ "pagar."
5553
+
5554
+ #: addons/gateway/event-booking/mycred-eventespresso3.php:540
5555
+ msgid "Message to show visitors (users not logged in) on the payment page."
5556
+ msgstr ""
5557
+ "Mostrar mensaje a los visitantes (usuarios que no han iniciado sesión) en la "
5558
+ "pagina de pago."
5559
+
5560
+ #: addons/gateway/event-booking/mycred-eventsmanager.php:29
5561
+ #: addons/gateway/event-booking/mycred-eventsmanager-pro.php:33
5562
+ msgid "Payment for tickets to %link_with_title%"
5563
+ msgstr "Pago de entradas para %link_with_title%"
5564
+
5565
+ #: addons/gateway/event-booking/mycred-eventsmanager.php:30
5566
+ #: addons/gateway/event-booking/mycred-eventsmanager-pro.php:34
5567
+ msgid "Ticket refund for %link_with_title%"
5568
+ msgstr "Reembolso de entrada para "
5569
+
5570
+ #: addons/gateway/event-booking/mycred-eventsmanager.php:34
5571
+ #: addons/gateway/event-booking/mycred-eventsmanager-pro.php:38
5572
+ msgid "Pay using your %_plural% balance"
5573
+ msgstr "Paga utilizando tu saldo de %_plural%"
5574
+
5575
+ #: addons/gateway/event-booking/mycred-eventsmanager.php:36
5576
+ #: addons/gateway/event-booking/mycred-eventsmanager-pro.php:40
5577
+ msgid "Pay"
5578
+ msgstr "Pagar"
5579
+
5580
+ #: addons/gateway/event-booking/mycred-eventsmanager.php:39
5581
+ #: addons/gateway/event-booking/mycred-eventsmanager-pro.php:44
5582
+ msgid "Thank you for your payment!"
5583
+ msgstr "¡Gracias por su pago!"
5584
+
5585
+ #: addons/gateway/event-booking/mycred-eventsmanager.php:40
5586
+ #: addons/gateway/event-booking/mycred-eventsmanager-pro.php:45
5587
+ msgid "I'm sorry but you can not pay for these tickets using %_plural%"
5588
+ msgstr "Lo siento pero no puedes pagar estos billetes usando %_plural%"
5589
+
5590
+ #: addons/gateway/event-booking/mycred-eventsmanager.php:333
5591
+ #: addons/gateway/event-booking/mycred-eventsmanager-pro.php:150
5592
+ msgid "Ticket Type"
5593
+ msgstr "Clase de Billete"
5594
+
5595
+ #: addons/gateway/event-booking/mycred-eventsmanager.php:342
5596
+ #: addons/gateway/event-booking/mycred-eventsmanager-pro.php:159
5597
+ msgid "Spaces"
5598
+ msgstr "Espacios"
5599
+
5600
+ #: addons/gateway/event-booking/mycred-eventsmanager.php:420
5601
+ msgid "Balance After Payment"
5602
+ msgstr "Saldo despues de Pago"
5603
+
5604
+ #: addons/gateway/event-booking/mycred-eventsmanager.php:532
5605
+ msgid "Click to toggle"
5606
+ msgstr "Haga clic para alternar"
5607
+
5608
+ #: addons/gateway/event-booking/mycred-eventsmanager.php:533
5609
+ msgid "%s Payments"
5610
+ msgstr "Pagos de "
5611
+
5612
+ #: addons/gateway/event-booking/mycred-eventsmanager.php:542
5613
+ #: addons/gateway/event-booking/mycred-eventsmanager-pro.php:628
5614
+ msgid "Disabled - Users CAN NOT pay for tickets using %plural%."
5615
+ msgstr "Deshabilitado - Usuarios NO PUEDEN pagar entradas utilizando %plural%."
5616
+
5617
+ #: addons/gateway/event-booking/mycred-eventsmanager.php:543
5618
+ #: addons/gateway/event-booking/mycred-eventsmanager-pro.php:629
5619
+ msgid "Single - Users can ONLY pay for tickets using %plural%."
5620
+ msgstr "Individuales - Usuarios NO PUEDEN pagar entradas utilizando %plural%."
5621
+
5622
+ #: addons/gateway/event-booking/mycred-eventsmanager.php:544
5623
+ #: addons/gateway/event-booking/mycred-eventsmanager-pro.php:630
5624
+ msgid "Multi - Users can pay for tickets using other gateways or %plural%."
5625
+ msgstr ""
5626
+ "Multi-usuarios pueden pagar entradas utilizando otras pasarelas de pago o "
5627
+ "%plural%."
5628
+
5629
+ #: addons/gateway/event-booking/mycred-eventsmanager.php:562
5630
+ #: addons/gateway/event-booking/mycred-eventsmanager.php:595
5631
+ #: addons/gateway/event-booking/mycred-eventsmanager-pro.php:634
5632
+ #: addons/gateway/event-booking/mycred-eventsmanager-pro.php:667
5633
+ msgid "Refunds"
5634
+ msgstr "Reembolsos"
5635
+
5636
+ #: addons/gateway/event-booking/mycred-eventsmanager.php:565
5637
+ msgid ""
5638
+ "The percentage of the paid amount to refund if a booking gets cancelled. Use "
5639
+ "zero for no refunds. No refunds are given to \"Rejected\" bookings."
5640
+ msgstr ""
5641
+ "El porcentaje de la cantidad pagada que se reembolsará si se cancela una "
5642
+ "reserva. Utilice cero para no ofrecer reembolso ninguno. No se reembolsa "
5643
+ "reservas \"Rechazadas\""
5644
+
5645
+ #: addons/gateway/event-booking/mycred-eventsmanager.php:585
5646
+ #: addons/gateway/event-booking/mycred-eventsmanager-pro.php:657
5647
+ msgid "Log Templates"
5648
+ msgstr "Plantillas de Registro"
5649
+
5650
+ #: addons/gateway/event-booking/mycred-eventsmanager.php:588
5651
+ #: addons/gateway/event-booking/mycred-eventsmanager-pro.php:660
5652
+ msgid "Purchases"
5653
+ msgstr "Compras"
5654
+
5655
+ #: addons/gateway/event-booking/mycred-eventsmanager.php:605
5656
+ #: addons/gateway/event-booking/mycred-eventsmanager-pro.php:689
5657
+ msgid "Payment Link Label"
5658
+ msgstr "La Etiqueta del Enlace de Pago"
5659
+
5660
+ #: addons/gateway/event-booking/mycred-eventsmanager.php:608
5661
+ #: addons/gateway/event-booking/mycred-eventsmanager-pro.php:692
5662
+ msgid ""
5663
+ "The payment link shows / hides the payment form under \"My Bookings\". No "
5664
+ "HTML allowed."
5665
+ msgstr ""
5666
+ "El enlace de pago muestra / oculta el formulario de pago en \"Mis Reservas\"."
5667
+ " ¡No se permite HTML!"
5668
+
5669
+ #: addons/gateway/event-booking/mycred-eventsmanager.php:612
5670
+ #: addons/gateway/event-booking/mycred-eventsmanager-pro.php:696
5671
+ msgid "Payment Header"
5672
+ msgstr "Encabezado de Pago"
5673
+
5674
+ #: addons/gateway/event-booking/mycred-eventsmanager.php:615
5675
+ #: addons/gateway/event-booking/mycred-eventsmanager-pro.php:699
5676
+ msgid "Shown on top of the payment form. No HTML allowed."
5677
+ msgstr "Mostrar en la encima del formulario de pago. No se permite HTML."
5678
+
5679
+ #: addons/gateway/event-booking/mycred-eventsmanager.php:622
5680
+ #: addons/gateway/event-booking/mycred-eventsmanager-pro.php:706
5681
+ msgid "The button label for payments. No HTML allowed!"
5682
+ msgstr "La etiqueta para el botón de pagos. ¡No se permite HTML!"
5683
+
5684
+ #: addons/gateway/event-booking/mycred-eventsmanager.php:626
5685
+ #: addons/gateway/event-booking/mycred-eventsmanager-pro.php:717
5686
+ #: addons/gateway/carts/mycred-wpecommerce.php:404
5687
+ msgid "Messages"
5688
+ msgstr "Mensajes"
5689
+
5690
+ #: addons/gateway/event-booking/mycred-eventsmanager.php:629
5691
+ #: addons/gateway/event-booking/mycred-eventsmanager-pro.php:720
5692
+ msgid "Successful Payments"
5693
+ msgstr "Compras Finalizadas con Exito"
5694
+
5695
+ #: addons/gateway/event-booking/mycred-eventsmanager.php:632
5696
+ #: addons/gateway/event-booking/mycred-eventsmanager.php:639
5697
+ #: addons/gateway/event-booking/mycred-eventsmanager-pro.php:723
5698
+ #: addons/gateway/event-booking/mycred-eventsmanager-pro.php:730
5699
+ msgid "No HTML allowed!"
5700
+ msgstr "¡No se permite HTML!"
5701
+
5702
+ #: addons/gateway/event-booking/mycred-eventsmanager-pro.php:41
5703
+ msgid "%plural% Cost"
5704
+ msgstr "%plural% Coste"
5705
+
5706
+ #: addons/gateway/event-booking/mycred-eventsmanager-pro.php:213
5707
+ msgid "Your Balance"
5708
+ msgstr "Su Saldo"
5709
+
5710
+ #: addons/gateway/event-booking/mycred-eventsmanager-pro.php:374
5711
+ msgid "You can not pay using this gateway."
5712
+ msgstr "No puede usar esta pasarela de pago."
5713
+
5714
+ #: addons/gateway/event-booking/mycred-eventsmanager-pro.php:492
5715
+ msgid "Reject"
5716
+ msgstr "Rechazar"
5717
+
5718
+ #: addons/gateway/event-booking/mycred-eventsmanager-pro.php:501
5719
+ msgid "Edit/View"
5720
+ msgstr "Editar/Ver"
5721
+
5722
+ #: addons/gateway/event-booking/mycred-eventsmanager-pro.php:637
5723
+ msgid ""
5724
+ "The percentage of the paid amount to refund if a user cancels their booking. "
5725
+ "Use zero for no refunds. No refunds are given to \"Rejected\" bookings!"
5726
+ msgstr ""
5727
+ "El porcentaje de la cantidad pagada que se reembolsará si se cancela una "
5728
+ "reserva. Utilice cero para no ofrecer reembolso ninguno. No se reembolsa "
5729
+ "reservas \"Rechazadas\""
5730
+
5731
+ #: addons/gateway/event-booking/mycred-eventsmanager-pro.php:710
5732
+ msgid "Cart & Checkout Cost"
5733
+ msgstr "Coste de Carrito y Página de pago"
5734
+
5735
+ #: addons/gateway/event-booking/mycred-eventsmanager-pro.php:713
5736
+ msgid "Label for cost in %plural%"
5737
+ msgstr "Etiqueta para coste en %plural%"
5738
+
5739
+ #: addons/gateway/carts/mycred-wpecommerce.php:20
5740
+ msgid "Payment for Order: #%order_id%"
5741
+ msgstr "Pago por el Pedido"
5742
+
5743
+ #: addons/gateway/carts/mycred-wpecommerce.php:23
5744
+ msgid "Store sale"
5745
+ msgstr "Venta desde la Tienda"
5746
+
5747
+ #: addons/gateway/carts/mycred-wpecommerce.php:25
5748
+ msgid "You must be logged in to use this gateway"
5749
+ msgstr "Debe esta conectado para usar esta pasarela de pago."
5750
+
5751
+ #: addons/gateway/carts/mycred-wpecommerce.php:26
5752
+ msgid "Insufficient Funds."
5753
+ msgstr "Fondos Insuficientes."
5754
+
5755
+ #: addons/gateway/carts/mycred-wpecommerce.php:27
5756
+ msgid "Deduct the amount from your balance."
5757
+ msgstr "Restar la cantidad de su saldo."
5758
+
5759
+ #: addons/gateway/carts/mycred-wpecommerce.php:107
5760
+ #: addons/buy-creds/gateways/bank-transfer.php:110
5761
+ msgid "Item"
5762
+ msgstr "Articulo"
5763
+
5764
+ #: addons/gateway/carts/mycred-wpecommerce.php:128
5765
+ #: addons/gateway/carts/mycred-woocommerce.php:756
5766
+ msgid "Your current balance"
5767
+ msgstr "Tu saldo actual"
5768
+
5769
+ #: addons/gateway/carts/mycred-wpecommerce.php:202
5770
+ msgid "You can not use this gateway."
5771
+ msgstr "No puedes usar esta pasarela de pago."
5772
+
5773
+ #: addons/gateway/carts/mycred-wpecommerce.php:373
5774
+ msgid "Log Template for Payments"
5775
+ msgstr "Plantilla de Registro para Pagos"
5776
+
5777
+ #: addons/gateway/carts/mycred-wpecommerce.php:390
5778
+ msgid "How much is 1 %s worth in %s"
5779
+ msgstr "Cuanto vale 1 %s en %s"
5780
+
5781
+ #: addons/gateway/carts/mycred-wpecommerce.php:407
5782
+ msgid "Instructions"
5783
+ msgstr "Instrucciones"
5784
+
5785
+ #: addons/gateway/carts/mycred-wpecommerce.php:408
5786
+ msgid ""
5787
+ "Optional instructions to show users when selecting this gateway. Leave empty "
5788
+ "to hide."
5789
+ msgstr ""
5790
+ "Instrucciones opcionales para mostrar a los usuarios cuando se selecciona "
5791
+ "esta pasarela. Deje el campo vacío para ocultarlo."
5792
+
5793
+ #: addons/gateway/carts/mycred-wpecommerce.php:412
5794
+ msgid "Message to show visitors who are not logged in."
5795
+ msgstr "Muestra mensaje a los visitantes que no han iniciado sesión."
5796
+
5797
+ #: addons/gateway/carts/mycred-wpecommerce.php:416
5798
+ msgid ""
5799
+ "Message to show when users does not have enough %plural% to pay using this "
5800
+ "gateway."
5801
+ msgstr ""
5802
+ "Monstrar mensaje cuando los usuarios no tienen bastante %plural% con que "
5803
+ "pagar usando esta pasarela de pago."
5804
+
5805
+ #: addons/gateway/carts/mycred-woocommerce.php:30
5806
+ msgid "Let users pay using their myCRED balance."
5807
+ msgstr "Permite que los usuarios paguen mediante su saldo myCRED."
5808
+
5809
+ #: addons/gateway/carts/mycred-woocommerce.php:84
5810
+ msgid "Enable/Disable"
5811
+ msgstr "Activar/Desactivar"
5812
+
5813
+ #: addons/gateway/carts/mycred-woocommerce.php:86
5814
+ msgid "Enable myCRED Payment"
5815
+ msgstr "Activar Pago myCRED"
5816
+
5817
+ #: addons/gateway/carts/mycred-woocommerce.php:88
5818
+ msgid ""
5819
+ "Users who are not logged in or excluded from using myCRED will not have "
5820
+ "access to this gateway!"
5821
+ msgstr ""
5822
+ "¡Los usuarios que no estan ingresado o los que han sido excluido de utilizar "
5823
+ "myCRED no tendran acceso a esta pasarela de pago!"
5824
+
5825
+ #: addons/gateway/carts/mycred-woocommerce.php:93
5826
+ msgid "Title to show for this payment option."
5827
+ msgstr "Mostrar este titulo para esta opción de pago."
5828
+
5829
+ #: addons/gateway/carts/mycred-woocommerce.php:94
5830
+ msgid "Pay with myCRED"
5831
+ msgstr "Paga con myCRED"
5832
+
5833
+ #. not sure if it is "message to customers" or "message from customers"? current translation is "message to customers"
5834
+ #: addons/gateway/carts/mycred-woocommerce.php:98
5835
+ msgid "Customer Message"
5836
+ msgstr "Mensaje a los Clientes"
5837
+
5838
+ #: addons/gateway/carts/mycred-woocommerce.php:109
5839
+ #: addons/gateway/carts/mycred-woocommerce.php:181
5840
+ msgid "Refund Log Template"
5841
+ msgstr "Plantilla de Registro de Reembolsos"
5842
+
5843
+ #: addons/gateway/carts/mycred-woocommerce.php:121
5844
+ msgid "Select the point type users can use to pay."
5845
+ msgstr ""
5846
+ "Elige el clase de punto que los usuarios pueden utilizar para realizar pagos."
5847
+
5848
+ #: addons/gateway/carts/mycred-woocommerce.php:135
5849
+ msgid "How much is 1 %_singular% worth in %currency%?"
5850
+ msgstr "¿Cuanto vale un 1 %_singular% en %currency%?"
5851
+
5852
+ #: addons/gateway/carts/mycred-woocommerce.php:147
5853
+ msgid "Show Total"
5854
+ msgstr "Mostrar Total"
5855
+
5856
+ #: addons/gateway/carts/mycred-woocommerce.php:149
5857
+ msgid "Show the final price in %_plural% ."
5858
+ msgstr "Mostrar el precio final en %_plural%."
5859
+
5860
+ #: addons/gateway/carts/mycred-woocommerce.php:152
5861
+ msgid "Show in Cart"
5862
+ msgstr "Mostrar en Carrito"
5863
+
5864
+ #: addons/gateway/carts/mycred-woocommerce.php:153
5865
+ msgid "Show on Checkout Page"
5866
+ msgstr "Mostrar en la página de pago"
5867
+
5868
+ #: addons/gateway/carts/mycred-woocommerce.php:154
5869
+ msgid "Show in Cart and on Checkout Page"
5870
+ msgstr "Mostrar en el Carrito y en la página de pago"
5871
+
5872
+ #: addons/gateway/carts/mycred-woocommerce.php:161
5873
+ msgid "Order Total in %_plural%"
5874
+ msgstr "Total del Pedido en %_plural%"
5875
+
5876
+ #: addons/gateway/carts/mycred-woocommerce.php:177
5877
+ msgid "Log entry template for profit sharing."
5878
+ msgstr "Plantilla para entradas de registro para el reparto de ganancias."
5879
+
5880
+ #: addons/gateway/carts/mycred-woocommerce.php:183
5881
+ msgid "Log entry template for refunds of profit shares."
5882
+ msgstr ""
5883
+ "Plantilla de entrada de registro para reembolsos de reparto de ganancias."
5884
+
5885
+ #: addons/gateway/carts/mycred-woocommerce.php:213
5886
+ msgid "myCRED Payment"
5887
+ msgstr "Pago myCRED"
5888
+
5889
+ #: addons/gateway/carts/mycred-woocommerce.php:237
5890
+ msgid "You must be logged in to pay with %_plural%"
5891
+ msgstr "Debes haber iniciado sesión para pagar con %_plural%"
5892
+
5893
+ #: addons/gateway/carts/mycred-woocommerce.php:245
5894
+ msgid "You can not use this gateway. Please try a different payment option."
5895
+ msgstr ""
5896
+ "No puede usar esta pasarela de pago. Por favor prueba una opción de pago "
5897
+ "diferente."
5898
+
5899
+ #: addons/gateway/carts/mycred-woocommerce.php:262
5900
+ #: addons/sell-content/includes/mycred-sell-functions.php:511
5901
+ msgid "Insufficient funds."
5902
+ msgstr "Fondos Insuficientes."
5903
+
5904
+ #: addons/gateway/carts/mycred-woocommerce.php:414
5905
+ msgid "Your account has successfully been charged."
5906
+ msgstr "Su cuenta ha sido cambiado con éxito."
5907
+
5908
+ #: addons/transfer/includes/mycred-transfer-widgets.php:19
5909
+ msgid "(%s) Transfer"
5910
+ msgstr "(%s) Transfererir"
5911
+
5912
+ #: addons/transfer/includes/mycred-transfer-widgets.php:22
5913
+ msgid "Allow transfers between users."
5914
+ msgstr "Permitir transferencias entre usuarios."
5915
+
5916
+ #: addons/transfer/includes/mycred-transfer-widgets.php:82
5917
+ msgid "Show users balance"
5918
+ msgstr "Mostrar el saldo de usuarios"
5919
+
5920
+ #: addons/transfer/includes/mycred-transfer-widgets.php:85
5921
+ msgid "Show users limit"
5922
+ msgstr "Mostrar los límites de usuarios"
5923
+
5924
+ #: addons/transfer/includes/mycred-transfer-shortcodes.php:156
5925
+ msgid "username"
5926
+ msgstr "nombre de usuario"
5927
+
5928
+ #: addons/transfer/includes/mycred-transfer-shortcodes.php:159
5929
+ msgid "email"
5930
+ msgstr "correo electrónico"
5931
+
5932
+ #. is this recipients plural or recipient's with an apostrophe missing?
5933
+ #: addons/transfer/includes/mycred-transfer-shortcodes.php:161
5934
+ msgid "recipients %s"
5935
+ msgstr "destinatarios %s"
5936
+
5937
+ #: addons/ranks/includes/mycred-rank-shortcodes.php:128
5938
+ #: addons/ranks/includes/mycred-rank-shortcodes.php:211
5939
+ msgid "No users found with this rank"
5940
+ msgstr "Ningun usuario encontrado con este rango"
5941
+
5942
+ #: addons/ranks/includes/mycred-rank-shortcodes.php:135
5943
+ msgid "Rank ID is required!"
5944
+ msgstr "¡ID de Rango obligatorio!"
5945
+
5946
+ #: addons/stats/abstracts/mycred-abstract-stat-widget.php:103
5947
+ msgid "Hooks"
5948
+ msgstr "Ganchos"
5949
+
5950
+ #: addons/sell-content/includes/mycred-sell-shortcodes.php:187
5951
+ #: addons/buy-creds/abstracts/mycred-abstract-payment-gateway.php:693
5952
+ #: addons/buy-creds/modules/buycred-module-pending.php:290
5953
+ #: addons/buy-creds/modules/buycred-module-pending.php:637
5954
+ #: addons/buy-creds/modules/buycred-module-pending.php:750
5955
+ #: addons/buy-creds/gateways/bank-transfer.php:112
5956
+ msgid "Cost"
5957
+ msgstr "Coste"
5958
+
5959
+ #: addons/buy-creds/abstracts/mycred-abstract-payment-gateway.php:163
5960
+ msgid "Select currency"
5961
+ msgstr "Elige moneda"
5962
+
5963
+ #. also, "Pago de Prueba" depending on context
5964
+ #: addons/buy-creds/abstracts/mycred-abstract-payment-gateway.php:445
5965
+ #: addons/buy-creds/gateways/bank-transfer.php:96
5966
+ msgid "Test Payment"
5967
+ msgstr "Probar Pago"
5968
+
5969
+ #: addons/buy-creds/abstracts/mycred-abstract-payment-gateway.php:451
5970
+ #: addons/buy-creds/gateways/bank-transfer.php:100
5971
+ msgid "Payment"
5972
+ msgstr "PAgo"
5973
+
5974
+ #: addons/buy-creds/abstracts/mycred-abstract-payment-gateway.php:685
5975
+ #: addons/buy-creds/gateways/bank-transfer.php:118
5976
+ msgid "%s Purchase"
5977
+ msgstr "Compra %s"
5978
+
5979
+ #: addons/buy-creds/abstracts/mycred-abstract-payment-gateway.php:786
5980
+ msgid "Continue to %s"
5981
+ msgstr "Continuar a %s"
5982
+
5983
+ #: addons/buy-creds/abstracts/mycred-abstract-payment-gateway.php:787
5984
+ #: addons/buy-creds/gateways/bitpay.php:225
5985
+ msgid "Click here if you are not automatically redirected"
5986
+ msgstr "Haga clic aqui si no se encuentra redirigida automáticamente"
5987
+
5988
+ #: addons/buy-creds/abstracts/mycred-abstract-payment-gateway.php:1501
5989
+ msgid "January"
5990
+ msgstr "Enero"
5991
+
5992
+ #: addons/buy-creds/abstracts/mycred-abstract-payment-gateway.php:1502
5993
+ msgid "February"
5994
+ msgstr "Febrero"
5995
+
5996
+ #: addons/buy-creds/abstracts/mycred-abstract-payment-gateway.php:1503
5997
+ msgid "March"
5998
+ msgstr "Marzo"
5999
+
6000
+ #: addons/buy-creds/abstracts/mycred-abstract-payment-gateway.php:1504
6001
+ msgid "April"
6002
+ msgstr "Abril"
6003
+
6004
+ #: addons/buy-creds/abstracts/mycred-abstract-payment-gateway.php:1505
6005
+ msgid "May"
6006
+ msgstr "Mayo"
6007
+
6008
+ #: addons/buy-creds/abstracts/mycred-abstract-payment-gateway.php:1506
6009
+ msgid "June"
6010
+ msgstr "Junio"
6011
+
6012
+ #: addons/buy-creds/abstracts/mycred-abstract-payment-gateway.php:1507
6013
+ msgid "July"
6014
+ msgstr "Julio"
6015
+
6016
+ #: addons/buy-creds/abstracts/mycred-abstract-payment-gateway.php:1508
6017
+ msgid "August"
6018
+ msgstr "Agosto"
6019
+
6020
+ #: addons/buy-creds/abstracts/mycred-abstract-payment-gateway.php:1509
6021
+ msgid "September"
6022
+ msgstr "Septiembre"
6023
+
6024
+ #: addons/buy-creds/abstracts/mycred-abstract-payment-gateway.php:1510
6025
+ msgid "October"
6026
+ msgstr "Octubre"
6027
+
6028
+ #: addons/buy-creds/abstracts/mycred-abstract-payment-gateway.php:1511
6029
+ msgid "November"
6030
+ msgstr "Noviembre"
6031
+
6032
+ #: addons/buy-creds/abstracts/mycred-abstract-payment-gateway.php:1512
6033
+ msgid "December"
6034
+ msgstr "Diciembre"
6035
+
6036
+ #: addons/buy-creds/modules/buycred-module-pending.php:158
6037
+ msgctxt "Post Type General Name"
6038
+ msgid "Pending Payments"
6039
+ msgstr "Pagos Pendientes"
6040
+
6041
+ #: addons/buy-creds/modules/buycred-module-pending.php:159
6042
+ msgctxt "Post Type Singular Name"
6043
+ msgid "Pending Payment"
6044
+ msgstr "Pago Pendiente"
6045
+
6046
+ #: addons/buy-creds/modules/buycred-module-pending.php:160
6047
+ #: addons/buy-creds/modules/buycred-module-pending.php:162
6048
+ #: addons/buy-creds/modules/buycred-module-pending.php:252
6049
+ #: addons/buy-creds/modules/buycred-module-pending.php:253
6050
+ msgid "Pending Payments"
6051
+ msgstr "Pagos Pendientes"
6052
+
6053
+ #: addons/buy-creds/modules/buycred-module-pending.php:166
6054
+ msgid "Edit Pending Payment"
6055
+ msgstr "Editar Pago Pendiente"
6056
+
6057
+ #: addons/buy-creds/modules/buycred-module-pending.php:169
6058
+ #: addons/buy-creds/modules/buycred-module-pending.php:170
6059
+ msgid "Not found in Trash"
6060
+ msgstr "No ha sido encontrado en la Papelera"
6061
+
6062
+ #: addons/buy-creds/modules/buycred-module-pending.php:286
6063
+ #: addons/buy-creds/modules/buycred-module-pending.php:747
6064
+ #: addons/buy-creds/modules/buycred-module-core.php:755
6065
+ #: addons/buy-creds/gateways/bank-transfer.php:113
6066
+ msgid "Transaction ID"
6067
+ msgstr "Identificación de la Transacción"
6068
+
6069
+ #: addons/buy-creds/modules/buycred-module-pending.php:288
6070
+ #: addons/buy-creds/modules/buycred-module-core.php:751
6071
+ msgid "Buyer"
6072
+ msgstr "Comprador"
6073
+
6074
+ #: addons/buy-creds/modules/buycred-module-pending.php:291
6075
+ #: addons/buy-creds/modules/buycred-module-pending.php:612
6076
+ #: addons/buy-creds/modules/buycred-module-pending.php:748
6077
+ #: addons/buy-creds/modules/buycred-module-core.php:750
6078
+ #: addons/buy-creds/includes/buycred-functions.php:119
6079
+ msgid "Gateway"
6080
+ msgstr "Pasarela"
6081
+
6082
+ #: addons/buy-creds/modules/buycred-module-pending.php:292
6083
+ msgid "Type"
6084
+ msgstr "Clase"
6085
+
6086
+ #: addons/buy-creds/modules/buycred-module-pending.php:389
6087
+ #: addons/buy-creds/modules/buycred-module-pending.php:494
6088
+ msgid "Pay Out"
6089
+ msgstr "Desembolso"
6090
+
6091
+ #: addons/buy-creds/modules/buycred-module-pending.php:489
6092
+ msgid "Save"
6093
+ msgstr "Guardar"
6094
+
6095
+ #: addons/buy-creds/modules/buycred-module-pending.php:643
6096
+ #: addons/buy-creds/gateways/bank-transfer.php:180
6097
+ #: addons/buy-creds/gateways/bitpay.php:251
6098
+ #: addons/buy-creds/gateways/paypal-standard.php:279
6099
+ #: addons/buy-creds/gateways/skrill.php:294
6100
+ msgid "Currency"
6101
+ msgstr "Moneda"
6102
+
6103
+ #: addons/buy-creds/modules/buycred-module-pending.php:814
6104
+ msgid "No pending payments found"
6105
+ msgstr "Ningun pago pendiente encontrado"
6106
+
6107
+ #: addons/buy-creds/modules/buycred-module-core.php:28
6108
+ #: addons/buy-creds/modules/buycred-module-core.php:29
6109
+ #: addons/buy-creds/modules/buycred-module-core.php:30
6110
+ msgid "Payment Gateways"
6111
+ msgstr "Pasarela de Pago"
6112
+
6113
+ #: addons/buy-creds/modules/buycred-module-core.php:297
6114
+ msgid "Please login to purchase %_plural%"
6115
+ msgstr "Identifícate antes de comprar %_plural%"
6116
+
6117
+ #: addons/buy-creds/modules/buycred-module-core.php:312
6118
+ msgid "Gift purchase from %display_name%."
6119
+ msgstr "Regalo comprado de parte de %display_name%."
6120
+
6121
+ #: addons/buy-creds/modules/buycred-module-core.php:331
6122
+ msgid "Minimum amount of %plural% a user must purchase. Will default to 1."
6123
+ msgstr ""
6124
+ "La mínima cantidad de %plural% que el usuario debe comprar. Sera predefinido "
6125
+ "a 1."
6126
+
6127
+ #: addons/buy-creds/modules/buycred-module-core.php:339
6128
+ msgid ""
6129
+ "Select the point types that users can buy. You must select at least one!"
6130
+ msgstr ""
6131
+ "Elige el clase de punto que el usuario puede comprar. Debes eligir al menos "
6132
+ "uno!"
6133
+
6134
+ #: addons/buy-creds/modules/buycred-module-core.php:350
6135
+ msgid "Login Template"
6136
+ msgstr "Plantilla de Ingreso"
6137
+
6138
+ #: addons/buy-creds/modules/buycred-module-core.php:354
6139
+ msgid "Content to show when a user is not logged in."
6140
+ msgstr "Mostrar este contenido cuando un usuario no ha sido ingresado."
6141
+
6142
+ #: addons/buy-creds/modules/buycred-module-core.php:364
6143
+ msgid "Thank You Page"
6144
+ msgstr "Página de Agradecimiento"
6145
+
6146
+ #: addons/buy-creds/modules/buycred-module-core.php:367
6147
+ #: addons/buy-creds/modules/buycred-module-core.php:390
6148
+ msgid "Custom URL"
6149
+ msgstr "URL Personalizada"
6150
+
6151
+ #: addons/buy-creds/modules/buycred-module-core.php:372
6152
+ #: addons/buy-creds/modules/buycred-module-core.php:395
6153
+ msgid "Page"
6154
+ msgstr "Página"
6155
+
6156
+ #: addons/buy-creds/modules/buycred-module-core.php:387
6157
+ msgid "Cancellation Page"
6158
+ msgstr "Página de Cancelación"
6159
+
6160
+ #: addons/buy-creds/modules/buycred-module-core.php:410
6161
+ #: addons/buy-creds/modules/buycred-module-core.php:511
6162
+ #: addons/buy-creds/modules/buycred-module-core.php:762
6163
+ msgid "Purchase Log"
6164
+ msgstr "Registro de Compras"
6165
+
6166
+ #: addons/buy-creds/modules/buycred-module-core.php:412
6167
+ msgid "Show seperate log for %_plural% purchases."
6168
+ msgstr "Mostrar registro distinto para compras de %_plural%."
6169
+
6170
+ #: addons/buy-creds/modules/buycred-module-core.php:414
6171
+ msgid "Gifting"
6172
+ msgstr "Regalar"
6173
+
6174
+ #: addons/buy-creds/modules/buycred-module-core.php:416
6175
+ msgid "Allow users to buy %_plural% for other users."
6176
+ msgstr "Prmita que usuarios compren %_plural% para otros usuarios."
6177
+
6178
+ #: addons/buy-creds/modules/buycred-module-core.php:417
6179
+ msgid "Allow users to buy %_plural% for content authors."
6180
+ msgstr "Prmita que usuarios compren %_plural% para autores de contenido."
6181
+
6182
+ #: addons/buy-creds/modules/buycred-module-core.php:425
6183
+ msgid "Available Shortcodes"
6184
+ msgstr "Códigos cortos Disponibles"
6185
+
6186
+ #: addons/buy-creds/modules/buycred-module-core.php:510
6187
+ msgid "buyCRED Purchase Log"
6188
+ msgstr "compraCRED Registro de Compras"
6189
+
6190
+ #: addons/buy-creds/modules/buycred-module-core.php:555
6191
+ msgid "%s Payment Gateways"
6192
+ msgstr "%s Pasarelas de Pago"
6193
+
6194
+ #: addons/buy-creds/modules/buycred-module-core.php:590
6195
+ msgid "Sandbox Mode"
6196
+ msgstr "Modo Entorno Aislado"
6197
+
6198
+ #: addons/buy-creds/modules/buycred-module-core.php:593
6199
+ msgid "Enable for test purchases."
6200
+ msgstr "Habilitar para compras de prueba."
6201
+
6202
+ #: addons/buy-creds/modules/buycred-module-core.php:613
6203
+ msgid "More Gateways"
6204
+ msgstr "Mas Pasarelas"
6205
+
6206
+ #: addons/buy-creds/modules/buycred-module-core.php:754
6207
+ msgid "Payed"
6208
+ msgstr "Pagado"
6209
+
6210
+ #: addons/buy-creds/modules/buycred-module-core.php:970
6211
+ msgid "No purchases found"
6212
+ msgstr "No se encontro ninguna compra"
6213
+
6214
+ #: addons/buy-creds/modules/buycred-module-core.php:1357
6215
+ msgid "Buy Now"
6216
+ msgstr "Compra Ahora"
6217
+
6218
+ #: addons/buy-creds/gateways/bank-transfer.php:59
6219
+ #: addons/buy-creds/gateways/bitpay.php:163
6220
+ #: addons/buy-creds/gateways/netbilling.php:144
6221
+ #: addons/buy-creds/gateways/zombaio.php:267
6222
+ #: addons/buy-creds/gateways/paypal-standard.php:207
6223
+ #: addons/buy-creds/gateways/skrill.php:186
6224
+ msgid "Please setup this gateway before attempting to make a purchase!"
6225
+ msgstr ""
6226
+ "¡Por favor configure esta puerta de enlace antes de intentar hacer una "
6227
+ "compra!"
6228
+
6229
+ #: addons/buy-creds/gateways/bank-transfer.php:186
6230
+ #: addons/buy-creds/gateways/bitpay.php:265
6231
+ #: addons/buy-creds/gateways/netbilling.php:234
6232
+ #: addons/buy-creds/gateways/paypal-standard.php:298
6233
+ #: addons/buy-creds/gateways/skrill.php:320
6234
+ msgid "Exchange Rates"
6235
+ msgstr "Tipo de Cambio"
6236
+
6237
+ #: addons/buy-creds/gateways/bitpay.php:62
6238
+ #: addons/buy-creds/gateways/netbilling.php:92
6239
+ #: addons/buy-creds/gateways/paypal-standard.php:145
6240
+ #: addons/buy-creds/gateways/skrill.php:124
6241
+ msgid "Price mismatch. Expected: %s Received: %s"
6242
+ msgstr "Desajuste de precio. Esperaba: %s Recibido: %s"
6243
+
6244
+ #: addons/buy-creds/gateways/bitpay.php:68
6245
+ #: addons/buy-creds/gateways/paypal-standard.php:151
6246
+ #: addons/buy-creds/gateways/skrill.php:130
6247
+ msgid "Currency mismatch. Expected: %s Received: %s"
6248
+ msgstr "Desajuste de moneda. Esperaba: %s Recibido: %s"
6249
+
6250
+ #: addons/buy-creds/gateways/bitpay.php:74
6251
+ #: addons/buy-creds/gateways/netbilling.php:98
6252
+ #: addons/buy-creds/gateways/paypal-standard.php:157
6253
+ #: addons/buy-creds/gateways/skrill.php:136
6254
+ msgid "Payment not completed. Received: %s"
6255
+ msgstr "Pago no cumplido. Recibido: %s"
6256
+
6257
+ #: addons/buy-creds/gateways/bitpay.php:85
6258
+ #: addons/buy-creds/gateways/netbilling.php:109
6259
+ #: addons/buy-creds/gateways/zombaio.php:237
6260
+ #: addons/buy-creds/gateways/paypal-standard.php:168
6261
+ #: addons/buy-creds/gateways/skrill.php:147
6262
+ msgid "Failed to credit users account."
6263
+ msgstr "No se pudo creditar la cuenta del usuario."
6264
+
6265
+ #: addons/buy-creds/gateways/bitpay.php:208
6266
+ #: addons/buy-creds/gateways/bitpay.php:219
6267
+ #: addons/buy-creds/gateways/netbilling.php:190
6268
+ #: addons/buy-creds/gateways/zombaio.php:297
6269
+ #: addons/buy-creds/gateways/paypal-standard.php:261
6270
+ #: addons/buy-creds/gateways/skrill.php:275
6271
+ msgid "Processing payment &hellip;"
6272
+ msgstr "Procesando el pago &hellip;"
6273
+
6274
+ #: addons/buy-creds/gateways/bitpay.php:211
6275
+ msgid ""
6276
+ "Could not create a BitPay Invoice. Please contact the site administrator!"
6277
+ msgstr ""
6278
+ "¡No se pudo crear una factura de BitPay. Por favor pongase en contacto con "
6279
+ "el administrador del sitio!"
6280
+
6281
+ #: addons/buy-creds/gateways/bitpay.php:212
6282
+ msgid "Bitpay returned the following error message:"
6283
+ msgstr "Bitpay comunico este mensaje de error:"
6284
+
6285
+ #: addons/buy-creds/gateways/bitpay.php:254
6286
+ msgid "Currency Code"
6287
+ msgstr "Código de Moneda"
6288
+
6289
+ #: addons/buy-creds/gateways/bitpay.php:258
6290
+ #: addons/buy-creds/gateways/netbilling.php:227
6291
+ #: addons/buy-creds/gateways/paypal-standard.php:291
6292
+ #: addons/buy-creds/gateways/skrill.php:313
6293
+ msgid "Item Name"
6294
+ msgstr "Nombre de Artículo"
6295
+
6296
+ #: addons/buy-creds/gateways/bitpay.php:262
6297
+ #: addons/buy-creds/gateways/netbilling.php:231
6298
+ #: addons/buy-creds/gateways/paypal-standard.php:295
6299
+ #: addons/buy-creds/gateways/skrill.php:317
6300
+ msgid "Description of the item being purchased by the user."
6301
+ msgstr "Descripción del artículo que el usuario esta comprando."
6302
+
6303
+ #: addons/buy-creds/gateways/bitpay.php:269
6304
+ msgid "Transaction Speed"
6305
+ msgstr "Velocidad de la Transacción"
6306
+
6307
+ #: addons/buy-creds/gateways/bitpay.php:276
6308
+ msgid "High"
6309
+ msgstr "Alto"
6310
+
6311
+ #: addons/buy-creds/gateways/bitpay.php:277
6312
+ msgid "Medium"
6313
+ msgstr "Medio"
6314
+
6315
+ #: addons/buy-creds/gateways/bitpay.php:278
6316
+ msgid "Low"
6317
+ msgstr "Bajo"
6318
+
6319
+ #: addons/buy-creds/gateways/bitpay.php:291
6320
+ msgid "Full Notifications"
6321
+ msgstr "Notificaciones Completas"
6322
+
6323
+ #: addons/buy-creds/gateways/netbilling.php:208
6324
+ msgid "Account ID"
6325
+ msgstr "ID de la Cuenta"
6326
+
6327
+ #: addons/buy-creds/gateways/netbilling.php:214
6328
+ msgid "Site Tag"
6329
+ msgstr "Etiqueta (tag) del Sitio"
6330
+
6331
+ #: addons/buy-creds/gateways/netbilling.php:220
6332
+ msgid "Order Integrity Key"
6333
+ msgstr "Clave de Integridad del Pedido"
6334
+
6335
+ #: addons/buy-creds/gateways/netbilling.php:224
6336
+ msgid "Found under Step 12 on the Fraud Defense page."
6337
+ msgstr "Se encuentra en Paso 12 de la página sobre Defensa contra Fraude."
6338
+
6339
+ #: addons/buy-creds/gateways/netbilling.php:238
6340
+ msgid "Postback CGI URL"
6341
+ msgstr "Devolución de la URL CGI"
6342
+
6343
+ #: addons/buy-creds/gateways/netbilling.php:242
6344
+ msgid ""
6345
+ "For this gateway to work, you must login to your NETbilling account and edit "
6346
+ "your site. Under \"Default payment form settings\" make sure the Postback "
6347
+ "CGI URL is set to the above address and \"Return method\" is set to POST."
6348
+ msgstr ""
6349
+ "Para que esta pasarela de pago funcione, deberia acceder a su cuenta "
6350
+ "NETbilling y editar su sitio web. En \"Configuración de Formularios "
6351
+ "Predefinido\" asegúrese de que la devolución de la URL CGI esta ajustada a "
6352
+ "la dirección indicada arriba y \"Método de Retorno\" está ajustado a POST."
6353
+
6354
+ #: addons/buy-creds/gateways/netbilling.php:290
6355
+ msgid "Incorrect Credit Card number"
6356
+ msgstr "Número de Tarjeta de Crédito Incorrecta"
6357
+
6358
+ #: addons/buy-creds/gateways/netbilling.php:296
6359
+ msgid "The credit card entered is past its expiration date."
6360
+ msgstr "La tarjeta de crédito ha pasado su fecha de vencimiento."
6361
+
6362
+ #: addons/buy-creds/gateways/netbilling.php:299
6363
+ msgid "The CVV2 number entered is not valid."
6364
+ msgstr "El numero CVV2 teclado no es valido."
6365
+
6366
+ #: addons/buy-creds/gateways/netbilling.php:306
6367
+ msgid "The bank routing number entered is not valid."
6368
+ msgstr "El número de ruta bancaria introducido no es valido."
6369
+
6370
+ #: addons/buy-creds/gateways/netbilling.php:310
6371
+ msgid "The bank account number entered is not valid."
6372
+ msgstr "La cuenta bancaria introducida no es valida."
6373
+
6374
+ #: addons/buy-creds/gateways/zombaio.php:204
6375
+ msgid "Duplicate transaction. Received: %s"
6376
+ msgstr "Transacción duplicado. Recibido: %s"
6377
+
6378
+ #: addons/buy-creds/gateways/zombaio.php:210
6379
+ msgid "Live transaction while debug mode is enabled! Received: %s"
6380
+ msgstr "Depuración de transacciones en vivo esta habilitado! Recibido: %s"
6381
+
6382
+ #: addons/buy-creds/gateways/zombaio.php:315
6383
+ msgid "Site ID"
6384
+ msgstr "ID del Sitio de web"
6385
+
6386
+ #. or "Contraseña de GW" not clear based on lack of context
6387
+ #: addons/buy-creds/gateways/zombaio.php:321
6388
+ msgid "GW Password"
6389
+ msgstr "Contraseña GW"
6390
+
6391
+ #: addons/buy-creds/gateways/zombaio.php:327
6392
+ msgid "Pricing ID"
6393
+ msgstr "ID de Precios"
6394
+
6395
+ #: addons/buy-creds/gateways/zombaio.php:333
6396
+ #: addons/buy-creds/gateways/skrill.php:338
6397
+ msgid "Logo URL"
6398
+ msgstr "URL del Logotipo"
6399
+
6400
+ #: addons/buy-creds/gateways/zombaio.php:339
6401
+ msgid "IP Verification"
6402
+ msgstr "Verificación de IP"
6403
+
6404
+ #: addons/buy-creds/gateways/zombaio.php:342
6405
+ msgid "Do not verify that callbacks are coming from Zombaio."
6406
+ msgstr "No verifique que las devoluciónes de llamadas proceden de Zombaio."
6407
+
6408
+ #: addons/buy-creds/gateways/zombaio.php:345
6409
+ msgid "Language"
6410
+ msgstr "Lengua"
6411
+
6412
+ #: addons/buy-creds/gateways/zombaio.php:352
6413
+ msgid "Postback URL (ZScript)"
6414
+ msgstr "Devolución de la URL (ZScript)"
6415
+
6416
+ #: addons/buy-creds/gateways/zombaio.php:356
6417
+ msgid ""
6418
+ "For this gateway to work, login to ZOA and set the Postback URL to the above "
6419
+ "address and click validate."
6420
+ msgstr ""
6421
+ "Para que esta puerta de enlace funcione, ingrese en ZOA y ajuste la "
6422
+ "devolución de datos de la URL a la dirección que se encuentra arriba y haga "
6423
+ "clic sobre validar."
6424
+
6425
+ #: addons/buy-creds/gateways/paypal-standard.php:192
6426
+ #: addons/buy-creds/gateways/skrill.php:171
6427
+ msgid "Success"
6428
+ msgstr "Exito"
6429
+
6430
+ #: addons/buy-creds/gateways/paypal-standard.php:193
6431
+ #: addons/buy-creds/gateways/skrill.php:172
6432
+ msgid "Thank you for your purchase"
6433
+ msgstr "Gracias por su compra"
6434
+
6435
+ #: addons/buy-creds/gateways/paypal-standard.php:285
6436
+ msgid "Account Email"
6437
+ msgstr "Cuenta de Correo Electrónico"
6438
+
6439
+ #: addons/buy-creds/gateways/skrill.php:226
6440
+ msgid "Return to "
6441
+ msgstr "Volver a"
6442
+
6443
+ #: addons/buy-creds/gateways/skrill.php:258
6444
+ msgid "Product:"
6445
+ msgstr "Producto:"
6446
+
6447
+ #: addons/buy-creds/gateways/skrill.php:267
6448
+ msgid "Gift to:"
6449
+ msgstr "Regalar a:"
6450
+
6451
+ #: addons/buy-creds/gateways/skrill.php:268
6452
+ msgid "(author)"
6453
+ msgstr "(autor)"
6454
+
6455
+ #: addons/buy-creds/gateways/skrill.php:301
6456
+ msgid "Merchant Account Email"
6457
+ msgstr "Correo electrónico de la Cuenta Comerciante"
6458
+
6459
+ #: addons/buy-creds/gateways/skrill.php:307
6460
+ msgid "Secret Word"
6461
+ msgstr "Palabra Secreta"
6462
+
6463
+ #: addons/buy-creds/gateways/skrill.php:324
6464
+ msgid "Confirmation Email"
6465
+ msgstr "Correo electrónico de confirmación"
6466
+
6467
+ #: addons/buy-creds/gateways/skrill.php:327
6468
+ msgid ""
6469
+ "Ask Skrill to send me a confirmation email for each successful purchase."
6470
+ msgstr ""
6471
+ "Pide a Skrill que me mande un email de confirmación para cada compra "
6472
+ "finalizada con éxito."
6473
+
6474
+ #: addons/buy-creds/gateways/skrill.php:330
6475
+ msgid "Checkout Page"
6476
+ msgstr "Página de Pago"
6477
+
6478
+ #: addons/buy-creds/gateways/skrill.php:335
6479
+ msgid ""
6480
+ "If left empty, your account email is used as title on the Skill Payment Page."
6481
+ msgstr ""
6482
+ "Si se deja vacío, el correo electrónico de su cuenta sera utilizada como "
6483
+ "título en la Página de Pagos Skrill. "
6484
+
6485
+ #: addons/buy-creds/gateways/skrill.php:340
6486
+ msgid ""
6487
+ "The URL to the image you want to use on the top of the gateway. For best "
6488
+ "integration results we recommend you use logos with dimensions up to 200px "
6489
+ "in width and 50px in height."
6490
+ msgstr ""
6491
+ "La URL de la imagen que quieres usar en la encima de la pasarela de pago. "
6492
+ "Para obtener la mejor integración recomendamos que uses logotipos con "
6493
+ "dimensiones de hasta 200 píxeles de ancho y 50 px de altura."
6494
+
6495
+ #: addons/buy-creds/gateways/skrill.php:343
6496
+ msgid "Confirmation Note"
6497
+ msgstr "Nota de Confirmación"
6498
+
6499
+ #: addons/buy-creds/gateways/skrill.php:345
6500
+ msgid ""
6501
+ "Optional text to show user once a transaction has been successfully "
6502
+ "completed. This text is shown by Skrill."
6503
+ msgstr ""
6504
+ "Texto opcional a mostrar al usuario cuando la transacción haya sido "
6505
+ "completado con éxito. Este texto sera mostrado por Skrill."
6506
+
6507
+ #. URI of the plugin
6508
+ msgid "http://mycred.me"
6509
+ msgstr "http://mycred.me"
6510
+
6511
+ #. Author of the plugin
6512
+ msgid "Gabriel S Merovingi"
6513
+ msgstr "Gabriel S Merovingi"
6514
+
6515
+ #. Author URI of the plugin
6516
+ msgid "http://www.merovingi.com"
6517
+ msgstr "http://www.merovingi.com"
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
lang/mycred-es_VE.mo CHANGED
Binary file
lang/mycred-es_VE.po CHANGED
@@ -1,7209 +1,6496 @@
1
- msgid ""
2
- msgstr ""
3
- "Project-Id-Version: myCRED\n"
4
- "Report-Msgid-Bugs-To: http://mycred.me\n"
5
- "POT-Creation-Date: 2014-03-20 14:26+0100\n"
6
- "PO-Revision-Date: Fri Aug 12 2016 19:23:09 GMT+0200 (CEST)\n"
7
- "Last-Translator: mycreddemo <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"
11
- "Plural-Forms: nplurals=2; plural=n != 1\n"
12
- "MIME-Version: 1.0\n"
13
- "Content-Type: text/plain; charset=UTF-8\n"
14
- "Content-Transfer-Encoding: 8bit\n"
15
- "X-Poedit-SourceCharset: UTF-8\n"
16
- "X-Generator: Loco - https://localise.biz/\n"
17
- "X-Poedit-Basepath: .\n"
18
- "X-Poedit-KeywordsList: _:1;gettext:1;dgettext:2;ngettext:1,2;dngettext:2,3;"
19
- "__:1;_e:1;_c:1;_n:1,2;_n_noop:1,2;_nc:1,2;__ngettext:1,2;__ngettext_noop:1,2;"
20
- "_x:1,2c;_ex:1,2c;_nx:1,2,4c;_nx_noop:1,2,3c;_n_js:1,2;_nx_js:1,2,3c;"
21
- "esc_attr__:1;esc_html__:1;esc_attr_e:1;esc_html_e:1;esc_attr_x:1,2c;"
22
- "esc_html_x:1,2c;comments_number_link:2,3;t:1;st:1;trans:1;transChoice:1,2\n"
23
- "X-Poedit-SearchPath-0: /Users/gabriel/Sites/paypana/wp-"
24
- "content/plugins/mycred\n"
25
- "X-Poedit-SearchPath-1: .\n"
26
- "X-Loco-Target-Locale: es_VE"
27
-
28
- #: ../abstracts/mycred-abstract-hook.php:284
29
- msgid "/ Day"
30
- msgstr ""
31
-
32
- #: ../abstracts/mycred-abstract-hook.php:285
33
- msgid "/ Week"
34
- msgstr ""
35
-
36
- #: ../abstracts/mycred-abstract-hook.php:286
37
- msgid "/ Month"
38
- msgstr ""
39
-
40
- #: ../abstracts/mycred-abstract-hook.php:287
41
- msgid "in Total"
42
- msgstr ""
43
-
44
- #: ../modules/mycred-module-management.php:182
45
- msgid "Balance successfully updated"
46
- msgstr ""
47
-
48
- #: ../modules/mycred-module-management.php:187
49
- msgid "Request declined"
50
- msgstr ""
51
-
52
- #: ../modules/mycred-module-management.php:222
53
- msgid "No recent activity found."
54
- msgstr ""
55
-
56
- #: ../modules/mycred-module-management.php:235 ../modules/mycred-module-
57
- #: management.php:651 ../modules/mycred-module-log.php:93 ../modules/mycred-
58
- #: module-log.php:918 ../includes/classes/class.query-export.php:263 ..
59
- #: includes/classes/class.query-export.php:360 ../includes/classes/class.query-
60
- #: log.php:379 ../addons/transfer/includes/mycred-transfer-widgets.php:101
61
- msgid "Reference"
62
- msgstr ""
63
-
64
- #: ../modules/mycred-module-management.php:278
65
- msgid "View complete history"
66
- msgstr ""
67
-
68
- #: ../modules/mycred-module-management.php:623 ../modules/mycred-module-export.
69
- #: php:400 ../modules/mycred-module-export.php:448 ../addons/buy-
70
- #: creds/modules/buycred-module-core.php:1271
71
- msgid "Username"
72
- msgstr ""
73
-
74
- #: ../modules/mycred-module-management.php:635
75
- msgid "Total Balance"
76
- msgstr ""
77
-
78
- #: ../modules/mycred-module-management.php:661
79
- msgid "Log under a custom reference"
80
- msgstr ""
81
-
82
- #: ../modules/mycred-module-management.php:667
83
- msgid "lowercase without empty spaces"
84
- msgstr ""
85
-
86
- #: ../modules/mycred-module-management.php:680
87
- msgid "Update"
88
- msgstr ""
89
-
90
- #: ../modules/mycred-module-management.php:683
91
- msgid "Recent Activity"
92
- msgstr ""
93
-
94
- #: ../modules/mycred-module-settings.php:240
95
- msgid "Invalid decimal value."
96
- msgstr ""
97
-
98
- #: ../modules/mycred-module-settings.php:290
99
- msgid "Log Updated"
100
- msgstr ""
101
-
102
- #: ../modules/mycred-module-settings.php:433
103
- msgid ""
104
- "In order to adjust the number of decimal places you want to use we must "
105
- "update your log. It is highly recommended that you backup your current log "
106
- "before continuing!"
107
- msgstr ""
108
-
109
- #: ../modules/mycred-module-settings.php:458
110
- msgid "Update Database"
111
- msgstr ""
112
-
113
- #: ../modules/mycred-module-settings.php:469 ../modules/mycred-module-settings.
114
- #: php:481
115
- msgid "No decimals"
116
- msgstr ""
117
-
118
- #: ../modules/mycred-module-settings.php:493
119
- #, php-format
120
- msgid "<a href=\"%s\">Click here</a> to change your default point types setup."
121
- msgstr ""
122
-
123
- #: ../modules/mycred-module-settings.php:529 ../modules/mycred-module-addons.php:
124
- #: 369
125
- msgid "Documentation"
126
- msgstr ""
127
-
128
- #: ../modules/mycred-module-settings.php:547 ../includes/mycred-setup.php:279
129
- msgid "Singular"
130
- msgstr ""
131
-
132
- #: ../modules/mycred-module-settings.php:548 ../modules/mycred-module-settings.
133
- #: php:554 ../modules/mycred-module-settings.php:604 ../modules/mycred-module-
134
- #: settings.php:611 ../modules/mycred-module-settings.php:798 ../modules/mycred-
135
- #: module-settings.php:804 ../includes/mycred-setup.php:280 ../includes/mycred-
136
- #: setup.php:286 ../includes/mycred-setup.php:333 ../includes/mycred-setup.php:
137
- #: 340 ../addons/banking/services/mycred-service-central.php:111 ..
138
- #: addons/banking/services/mycred-service-interest.php:482 ..
139
- #: addons/banking/services/mycred-service-interest.php:500
140
- msgid "Required"
141
- msgstr ""
142
-
143
- #: ../modules/mycred-module-settings.php:553 ../includes/mycred-setup.php:285
144
- msgid "Plural"
145
- msgstr ""
146
-
147
- #: ../modules/mycred-module-settings.php:558 ../includes/mycred-setup.php:290
148
- msgid ""
149
- "These labels are used throughout the admin area and when presenting points "
150
- "to your users."
151
- msgstr ""
152
-
153
- #: ../modules/mycred-module-settings.php:590
154
- msgid "Set decimals to zero if you prefer to use whole numbers."
155
- msgstr ""
156
-
157
- #: ../modules/mycred-module-settings.php:592
158
- msgid ""
159
- "As this is your main point type, the value you select here will be the "
160
- "largest number of decimals your installation will support."
161
- msgstr ""
162
-
163
- #: ../modules/mycred-module-settings.php:603 ../includes/mycred-setup.php:332
164
- msgid "Point Editors"
165
- msgstr ""
166
-
167
- #: ../modules/mycred-module-settings.php:605 ../includes/mycred-setup.php:334
168
- msgid "The capability of users who can edit balances."
169
- msgstr ""
170
-
171
- #: ../modules/mycred-module-settings.php:610 ../includes/mycred-setup.php:339
172
- msgid "Point Administrators"
173
- msgstr ""
174
-
175
- #: ../modules/mycred-module-settings.php:612 ../includes/mycred-setup.php:341
176
- msgid "The capability of users who can edit settings."
177
- msgstr ""
178
-
179
- #: ../modules/mycred-module-settings.php:618 ../includes/mycred-setup.php:346
180
- msgid "Max. Amount"
181
- msgstr ""
182
-
183
- #: ../modules/mycred-module-settings.php:620 ../includes/mycred-setup.php:348
184
- msgid "The maximum amount allowed to be paid out in a single instance."
185
- msgstr ""
186
-
187
- #: ../modules/mycred-module-settings.php:625 ../includes/mycred-setup.php:353
188
- msgid "Exclude by User ID"
189
- msgstr ""
190
-
191
- #: ../modules/mycred-module-settings.php:626 ../includes/mycred-setup.php:354
192
- msgid "Optional"
193
- msgstr ""
194
-
195
- #: ../modules/mycred-module-settings.php:627 ../includes/mycred-setup.php:355
196
- msgid "Comma separated list of user IDs to exclude from using this point type."
197
- msgstr ""
198
-
199
- #: ../modules/mycred-module-settings.php:631 ../includes/mycred-setup.php:359
200
- msgid "Exclude point editors"
201
- msgstr ""
202
-
203
- #: ../modules/mycred-module-settings.php:634 ../includes/mycred-setup.php:362
204
- msgid "Exclude point administrators"
205
- msgstr ""
206
-
207
- #: ../modules/mycred-module-settings.php:644
208
- msgid "Other Settings"
209
- msgstr ""
210
-
211
- #: ../modules/mycred-module-settings.php:696
212
- msgid "Balance Meta Key"
213
- msgstr ""
214
-
215
- #: ../modules/mycred-module-settings.php:809
216
- msgid ""
217
- "The meta key must be lowercase and only contain letters or underscores. All "
218
- "other characters will be deleted!"
219
- msgstr ""
220
-
221
- #: ../modules/mycred-module-addons.php:173
222
- msgid "Give your users badges based on their interaction with your website."
223
- msgstr ""
224
-
225
- #: ../modules/mycred-module-addons.php:273
226
- msgid ""
227
- "Gives you access to your myCRED Staticstics based on your users gains and "
228
- "loses."
229
- msgstr ""
230
-
231
- #: ../modules/mycred-module-addons.php:328
232
- msgid "Get More Add-ons"
233
- msgstr ""
234
-
235
- #: ../modules/mycred-module-addons.php:343
236
- msgid "Add-ons Reloaded"
237
- msgstr ""
238
-
239
- #: ../modules/mycred-module-log.php:215
240
- msgid "Invalid or empty reference"
241
- msgstr ""
242
-
243
- #: ../modules/mycred-module-log.php:220
244
- msgid "Log Entry cannot be empty"
245
- msgstr ""
246
-
247
- #: ../modules/mycred-module-log.php:241
248
- msgid "Could not save the new log entry"
249
- msgstr ""
250
-
251
- #: ../modules/mycred-module-log.php:262
252
- msgid "Log entry successfully updated"
253
- msgstr ""
254
-
255
- #: ../modules/mycred-module-log.php:307
256
- #, php-format
257
- msgid "1 Entry Deleted"
258
- msgid_plural "%d Entries Deleted"
259
- msgstr[0] ""
260
- msgstr[1] ""
261
-
262
- #: ../modules/mycred-module-log.php:469
263
- msgid "The log entry was successfully updated."
264
- msgstr ""
265
-
266
- #: ../modules/mycred-module-log.php:470
267
- msgid "The selected log entry could not be deleted."
268
- msgstr ""
269
-
270
- #: ../modules/mycred-module-log.php:507
271
- #, php-format
272
- msgctxt "e.g. Log entries from April 12th 2016"
273
- msgid "Log entries from %s"
274
- msgstr ""
275
-
276
- #: ../modules/mycred-module-log.php:565
277
- msgid ""
278
- "Warning. The required Mcrypt PHP Library is not installed on this server! "
279
- "Certain hooks and shortcodes will not work correctly!"
280
- msgstr ""
281
-
282
- #: ../modules/mycred-module-log.php:925
283
- msgid "Original Entry"
284
- msgstr ""
285
-
286
- #: ../modules/mycred-module-log.php:937
287
- msgid "Delete Entry"
288
- msgstr ""
289
-
290
- #: ../modules/mycred-module-log.php:942
291
- msgid "Update Entry"
292
- msgstr ""
293
-
294
- #: ../modules/mycred-module-network.php:141
295
- msgid "I am sorry but your network is too big to use these features."
296
- msgstr ""
297
-
298
- #: ../modules/mycred-module-export.php:358
299
- msgid "Make both format options available."
300
- msgstr ""
301
-
302
- #: ../modules/mycred-module-export.php:360
303
- msgid "Exports"
304
- msgstr ""
305
-
306
- #: ../modules/mycred-module-export.php:366
307
- msgid "Front End Exports"
308
- msgstr ""
309
-
310
- #: ../modules/mycred-module-export.php:382 ../modules/mycred-module-export.php:430
311
- msgid "Export Format"
312
- msgstr ""
313
-
314
- #: ../modules/mycred-module-export.php:398 ../modules/mycred-module-export.php:446
315
- msgid "File Name"
316
- msgstr ""
317
-
318
- #: ../modules/mycred-module-export.php:407
319
- msgid ""
320
- "If enabled, users will only be able to export their own log entries! Export "
321
- "tools becomes available wherever you are using the mycred_history shortcode "
322
- "or in the users profile."
323
- msgstr ""
324
-
325
- #: ../modules/mycred-module-export.php:414
326
- msgid "Back End Exports"
327
- msgstr ""
328
-
329
- #: ../modules/mycred-module-export.php:455
330
- msgid ""
331
- "Raw format should be used when you intend to use the export tool to backup "
332
- "or import entries in another installation. Formatted exports reflect what "
333
- "users see in their history archive."
334
- msgstr ""
335
-
336
- #: ../modules/mycred-module-hooks.php:83
337
- #, php-format
338
- msgid "%plural% for daily visits"
339
- msgstr ""
340
-
341
- #: ../modules/mycred-module-hooks.php:84
342
- #, php-format
343
- msgid "Award %_plural% for visiting your website on a daily basis."
344
- msgstr ""
345
-
346
- #: ../modules/mycred-module-hooks.php:90
347
- #, php-format
348
- msgid "%plural% for viewing content"
349
- msgstr ""
350
-
351
- #: ../modules/mycred-module-hooks.php:91
352
- #, php-format
353
- msgid "Award %_plural% for viewing content."
354
- msgstr ""
355
-
356
- #: ../modules/mycred-module-hooks.php:98
357
- #, php-format
358
- msgid "Award %_plural% for logging in."
359
- msgstr ""
360
-
361
- #: ../modules/mycred-module-hooks.php:105
362
- #, php-format
363
- msgid "Award %_plural% for publishing content."
364
- msgstr ""
365
-
366
- #: ../modules/mycred-module-hooks.php:111
367
- #, php-format
368
- msgid "%plural% for trashed content"
369
- msgstr ""
370
-
371
- #: ../modules/mycred-module-hooks.php:112
372
- msgid "Award or Deduct %_plural% when content gets trashed."
373
- msgstr ""
374
-
375
- #: ../modules/mycred-module-hooks.php:126
376
- #, php-format
377
- msgid "Award %_plural% for clicks on links generated by the %shortcode% shortcode."
378
- msgstr ""
379
-
380
- #: ../modules/mycred-module-hooks.php:133
381
- #, php-format
382
- msgid "Award %_plural% for watches videos embedded using the %shortcode% shortcode."
383
- msgstr ""
384
-
385
- #: ../modules/mycred-module-hooks.php:140
386
- #, php-format
387
- msgid "Award %_plural% for signup or visitor referrals."
388
- msgstr ""
389
-
390
- #: ../modules/mycred-module-hooks.php:264
391
- #, php-format
392
- msgid "%s Hooks %s"
393
- msgstr ""
394
-
395
- #: ../modules/mycred-module-hooks.php:270
396
- msgid "Available Hooks"
397
- msgstr ""
398
-
399
- #: ../modules/mycred-module-hooks.php:270
400
- msgctxt "removing-widget"
401
- msgid "Deactivate"
402
- msgstr ""
403
-
404
- #: ../modules/mycred-module-hooks.php:274
405
- msgid ""
406
- "To activate a hook drag it to a sidebar or click on it. To deactivate a hook "
407
- "and delete its settings, drag it back."
408
- msgstr ""
409
-
410
- #: ../modules/mycred-module-hooks.php:345
411
- msgid "Add Hook"
412
- msgstr ""
413
-
414
- #: ../modules/mycred-module-hooks.php:384
415
- msgid "Active Hooks"
416
- msgstr ""
417
-
418
- #: ../modules/mycred-module-hooks.php:387
419
- msgid "The following hooks are used for all users."
420
- msgstr ""
421
-
422
- #: ../modules/mycred-module-hooks.php:474
423
- #, php-format
424
- msgid "The following hooks are used for %s."
425
- msgstr ""
426
-
427
- #: ../modules/mycred-module-hooks.php:1011
428
- #, php-format
429
- msgid "%plural% for viewing Posts"
430
- msgstr ""
431
-
432
- #: ../modules/mycred-module-hooks.php:1014 ../modules/mycred-module-hooks.php:
433
- #: 1031 ../modules/mycred-module-hooks.php:1045 ../modules/mycred-module-hooks.
434
- #: php:1062 ../modules/mycred-module-hooks.php:1122 ../modules/mycred-module-
435
- #: hooks.php:1139
436
- msgid "Member"
437
- msgstr ""
438
-
439
- #: ../modules/mycred-module-hooks.php:1042
440
- #, php-format
441
- msgid "%plural% for viewing Pages"
442
- msgstr ""
443
-
444
- #: ../modules/mycred-module-hooks.php:1119
445
- #, php-format
446
- msgid "%plural% for viewing %s"
447
- msgstr ""
448
-
449
- #: ../modules/mycred-module-hooks.php:3293
450
- msgid "Visitors Referred"
451
- msgstr ""
452
-
453
- #: ../modules/mycred-module-hooks.php:3297
454
- msgid "Signups Referred"
455
- msgstr ""
456
-
457
- #: ../modules/mycred-module-buddypress.php:415 ../addons/badges/myCRED-addon-
458
- #: badges.php:1147
459
- msgid "Include in Profile Header"
460
- msgstr ""
461
-
462
- #: ../modules/mycred-module-buddypress.php:417 ../addons/badges/myCRED-addon-
463
- #: badges.php:1149
464
- msgid "Include under the \"Profile\" tab and Profile Header"
465
- msgstr ""
466
-
467
- #: ../modules/mycred-module-buddypress.php:456
468
- #, php-format
469
- msgid "Members and visitors can view other members %_singular% balance."
470
- msgstr ""
471
-
472
- #: ../plugins/mycred-hook-wp-postratings.php:15
473
- msgid "Post Ratings"
474
- msgstr ""
475
-
476
- #: ../plugins/mycred-hook-wp-postratings.php:16
477
- #, php-format
478
- msgid ""
479
- "Awards %_plural% for post ratings. Supports awarding %_plural% both to post "
480
- "author and the user rating."
481
- msgstr ""
482
-
483
- #: ../plugins/mycred-hook-wp-postratings.php:84
484
- msgid "Based on rating"
485
- msgstr ""
486
-
487
- #: ../plugins/mycred-hook-wp-postratings.php:159 ../includes/classes/class.query-
488
- #: log.php:1629
489
- msgid "Adding a Rating"
490
- msgstr ""
491
-
492
- #: ../plugins/mycred-hook-wp-postratings.php:169 ../plugins/mycred-hook-wp-
493
- #: postratings.php:188
494
- msgid "Use the Rating Value instead of the amount set here."
495
- msgstr ""
496
-
497
- #: ../plugins/mycred-hook-wp-postratings.php:178 ../includes/classes/class.query-
498
- #: log.php:1630
499
- msgid "Receiving a Rating"
500
- msgstr ""
501
-
502
- #: ../plugins/mycred-hook-marketpress.php:70 ../plugins/mycred-hook-woocommerce.
503
- #: php:87
504
- #, php-format
505
- msgid "Reward with %plural%"
506
- msgstr ""
507
-
508
- #: ../plugins/mycred-hook-buddypress.php:610
509
- msgid "New Profile Activity"
510
- msgstr ""
511
-
512
- #: ../plugins/mycred-hook-buddypress.php:627
513
- msgid "Deleted Profile Activity"
514
- msgstr ""
515
-
516
- #: ../plugins/mycred-hook-buddypress.php:644
517
- msgid "New Profile Avatar"
518
- msgstr ""
519
-
520
- #: ../plugins/mycred-hook-buddypress.php:661
521
- msgid "New Profile Cover Image"
522
- msgstr ""
523
-
524
- #: ../plugins/mycred-hook-buddypress.php:678 ../includes/classes/class.query-log.
525
- #: php:1565
526
- msgid "New Friendship"
527
- msgstr ""
528
-
529
- #: ../plugins/mycred-hook-buddypress.php:688
530
- #, php-format
531
- msgid ""
532
- "Users with zero balance can not add friends. Requires that you deduct "
533
- "%_plural% for adding a new friend."
534
- msgstr ""
535
-
536
- #: ../plugins/mycred-hook-buddypress.php:698
537
- msgid "Ending Friendship"
538
- msgstr ""
539
-
540
- #: ../plugins/mycred-hook-buddypress.php:711
541
- msgid "New Comment"
542
- msgstr ""
543
-
544
- #: ../plugins/mycred-hook-buddypress.php:728 ../includes/classes/class.query-log.
545
- #: php:1553
546
- msgid "Deleted Comment"
547
- msgstr ""
548
-
549
- #: ../plugins/mycred-hook-buddypress.php:741
550
- msgid "Favorit Activity"
551
- msgstr ""
552
-
553
- #: ../plugins/mycred-hook-buddypress.php:758
554
- msgid "Removing Favorit Activity"
555
- msgstr ""
556
-
557
- #: ../plugins/mycred-hook-buddypress.php:771
558
- msgid "New Private Message"
559
- msgstr ""
560
-
561
- #: ../plugins/mycred-hook-buddypress.php:788 ../includes/classes/class.query-log.
562
- #: php:1572
563
- msgid "Sending Gift"
564
- msgstr ""
565
-
566
- #: ../plugins/mycred-hook-buddypress.php:1564
567
- #, php-format
568
- msgid "%plural% for New Cover Image"
569
- msgstr ""
570
-
571
- #: ../plugins/mycred-hook-affiliatewp.php:15
572
- msgid "AffiliateWP"
573
- msgstr ""
574
-
575
- #: ../plugins/mycred-hook-affiliatewp.php:16
576
- #, php-format
577
- msgid ""
578
- "Awards %_plural% for affiliate signups, referring visitors and store sale "
579
- "referrals."
580
- msgstr ""
581
-
582
- #: ../plugins/mycred-hook-affiliatewp.php:222
583
- msgid "Affiliate Signup"
584
- msgstr ""
585
-
586
- #: ../plugins/mycred-hook-affiliatewp.php:252
587
- msgid "Referring Sales"
588
- msgstr ""
589
-
590
- #: ../plugins/mycred-hook-affiliatewp.php:255
591
- msgid "Pay a set amount for all referrals."
592
- msgstr ""
593
-
594
- #: ../plugins/mycred-hook-affiliatewp.php:256
595
- #, php-format
596
- msgid "AffiliateWP will use %plural% as currency so pay the referral amount."
597
- msgstr ""
598
-
599
- #: ../plugins/mycred-hook-affiliatewp.php:257
600
- msgid "Apply an exchange rate against the referral amount."
601
- msgstr ""
602
-
603
- #: ../plugins/mycred-hook-affiliatewp.php:265
604
- msgid "Log template - Payout"
605
- msgstr ""
606
-
607
- #: ../plugins/mycred-hook-affiliatewp.php:270
608
- msgid "Log template - Refund"
609
- msgstr ""
610
-
611
- #: ../plugins/mycred-hook-sharethis.php:15
612
- #, php-format
613
- msgid "%plural% for Sharing"
614
- msgstr ""
615
-
616
- #: ../plugins/mycred-hook-sharethis.php:16
617
- #, php-format
618
- msgid ""
619
- "Awards %_plural% for users sharing / liking your website content to popular "
620
- "social media sites."
621
- msgstr ""
622
-
623
- #: ../plugins/mycred-hook-sharethis.php:257
624
- msgid "Your ShareThis public key is not set."
625
- msgstr ""
626
-
627
- #: ../plugins/mycred-hook-sharethis.php:262
628
- msgid "No ShareThis services detected. Please check your installation."
629
- msgstr ""
630
-
631
- #: ../plugins/mycred-hook-wp-favorite-posts.php:234
632
- msgid "Authors Content added to favorites"
633
- msgstr ""
634
-
635
- #: ../plugins/mycred-hook-wp-favorite-posts.php:265
636
- msgid "Removing Content from Favorites (Author)"
637
- msgstr ""
638
-
639
- #: ../plugins/mycred-hook-bbPress.php:540
640
- #, php-format
641
- msgid "Show users %_plural% balance in their bbPress profiles."
642
- msgstr ""
643
-
644
- #: ../plugins/mycred-hook-bbPress.php:544
645
- #, php-format
646
- msgid "%plural% for Reply Deletion"
647
- msgstr ""
648
-
649
- #: ../plugins/mycred-hook-woocommerce.php:216
650
- msgid "WooCommerce Product Reviews"
651
- msgstr ""
652
-
653
- #: ../plugins/mycred-hook-woocommerce.php:217
654
- #, php-format
655
- msgid "Awards %_plural% for users leaving reviews on your WooCommerce products."
656
- msgstr ""
657
-
658
- #: ../includes/mycred-setup.php:106
659
- #, php-format
660
- msgid ""
661
- "Before you can begin using %s, you must setup your first point type. This "
662
- "includes what you want to call your points, how these points are presented "
663
- "and who has access to it."
664
- msgstr ""
665
-
666
- #: ../includes/mycred-setup.php:111
667
- msgid "Your First Point Type"
668
- msgstr ""
669
-
670
- #: ../includes/mycred-setup.php:127
671
- msgid "Advanced Settings"
672
- msgstr ""
673
-
674
- #: ../includes/mycred-setup.php:133
675
- msgid "Change Default Point Type Key"
676
- msgstr ""
677
-
678
- #: ../includes/mycred-setup.php:135
679
- msgid ""
680
- "You can change the meta key used to store the default point type using the "
681
- "MYCRED_DEFAULT_TYPE_KEY constant. Copy the above code to your wp-config.php "
682
- "file to use."
683
- msgstr ""
684
-
685
- #: ../includes/mycred-setup.php:136
686
- msgid ""
687
- "If you intend to change the default meta key, you should do so before "
688
- "continuing on in this setup!"
689
- msgstr ""
690
-
691
- #: ../includes/mycred-setup.php:139
692
- msgid "Whitelabel"
693
- msgstr ""
694
-
695
- #: ../includes/mycred-setup.php:141
696
- msgid ""
697
- "You can re-label myCRED using the MYCRED_DEFAULT_LABEL constant. Copy the "
698
- "above code to your wp-config.php file to use."
699
- msgstr ""
700
-
701
- #: ../includes/mycred-setup.php:149
702
- msgid "Create Point Type"
703
- msgstr ""
704
-
705
- #: ../includes/mycred-setup.php:149
706
- msgid "Hide"
707
- msgstr ""
708
-
709
- #: ../includes/mycred-setup.php:149 ../includes/mycred-setup.php:149
710
- msgid "Advanced"
711
- msgstr ""
712
-
713
- #: ../includes/mycred-setup.php:155
714
- msgid "Processing ..."
715
- msgstr ""
716
-
717
- #: ../includes/mycred-setup.php:160
718
- msgid "Setup Complete!"
719
- msgstr ""
720
-
721
- #: ../includes/mycred-setup.php:161
722
- msgid "Congratulations! You are now ready to use myCRED. What's next?"
723
- msgstr ""
724
-
725
- #: ../includes/mycred-setup.php:166
726
- msgid "Enabling Hooks"
727
- msgstr ""
728
-
729
- #: ../includes/mycred-setup.php:167
730
- msgid ""
731
- "If you intend to give your users points for interacting with your website "
732
- "automatically, your next step should be to enable and setup the hooks you "
733
- "want to use."
734
- msgstr ""
735
-
736
- #: ../includes/mycred-setup.php:168
737
- msgid "Setup Hooks"
738
- msgstr ""
739
-
740
- #: ../includes/mycred-setup.php:172
741
- msgid ""
742
- "If you want to use advanced features such as Transfers, Point Purchases etc. "
743
- "your next step should be to enable and setup your add-ons."
744
- msgstr ""
745
-
746
- #: ../includes/mycred-setup.php:173
747
- msgid "Setup Add-ons"
748
- msgstr ""
749
-
750
- #: ../includes/mycred-setup.php:176
751
- msgid "Adjust Settings"
752
- msgstr ""
753
-
754
- #: ../includes/mycred-setup.php:177
755
- msgid ""
756
- "If you need to make further changes to your settings or add new point types, "
757
- "you can visit your default point type's settings."
758
- msgstr ""
759
-
760
- #: ../includes/mycred-setup.php:178
761
- msgid "View Settings"
762
- msgstr ""
763
-
764
- #: ../includes/mycred-setup.php:322
765
- msgid "Set to decimals to zero if you prefer to use whole numbers."
766
- msgstr ""
767
-
768
- #: ../includes/mycred-setup.php:442
769
- msgid "Please make sure you fill out all required fields!"
770
- msgstr ""
771
-
772
- #: ../includes/shortcodes/mycred_exchange.php:27 ..
773
- #: includes/shortcodes/mycred_hook_table.php:24 ..
774
- #: includes/shortcodes/mycred_give.php:29
775
- msgid "Point type not found."
776
- msgstr ""
777
-
778
- #: ../includes/shortcodes/mycred_exchange.php:33 ..
779
- #: includes/shortcodes/mycred_exchange.php:41 ..
780
- #: includes/shortcodes/mycred_exchange.php:136 ..
781
- #: includes/shortcodes/mycred_exchange.php:156
782
- #, php-format
783
- msgid "You are excluded from using %s."
784
- msgstr ""
785
-
786
- #: ../includes/shortcodes/mycred_exchange.php:37 ..
787
- #: includes/shortcodes/mycred_exchange.php:146
788
- msgid "Your balance is too low to use this feature."
789
- msgstr ""
790
-
791
- #: ../includes/shortcodes/mycred_exchange.php:63
792
- #, php-format
793
- msgid "Your current %s balance"
794
- msgstr ""
795
-
796
- #: ../includes/shortcodes/mycred_exchange.php:70
797
- #, php-format
798
- msgid "Minimum %s"
799
- msgstr ""
800
-
801
- #: ../includes/shortcodes/mycred_exchange.php:76
802
- #, php-format
803
- msgid "1 %s = <span class=\"rate\">%s</span> %s"
804
- msgstr ""
805
-
806
- #: ../includes/shortcodes/mycred_exchange.php:124
807
- msgid "Point types not found."
808
- msgstr ""
809
-
810
- #: ../includes/shortcodes/mycred_exchange.php:169
811
- #, php-format
812
- msgid "You must exchange at least %s!"
813
- msgstr ""
814
-
815
- #: ../includes/shortcodes/mycred_exchange.php:178 ../addons/transfer/myCRED-addon-
816
- #: transfer.php:154
817
- msgid "Insufficient Funds. Please try a lower amount."
818
- msgstr ""
819
-
820
- #: ../includes/shortcodes/mycred_exchange.php:191
821
- #, php-format
822
- msgid "Exchange from %s"
823
- msgstr ""
824
-
825
- #: ../includes/shortcodes/mycred_exchange.php:203
826
- #, php-format
827
- msgid "Exchange to %s"
828
- msgstr ""
829
-
830
- #: ../includes/shortcodes/mycred_exchange.php:211
831
- #, php-format
832
- msgid "You have successfully exchanged %s into %s."
833
- msgstr ""
834
-
835
- #: ../includes/shortcodes/mycred_hook_table.php:21
836
- msgid "No instances found for this point type"
837
- msgstr ""
838
-
839
- #: ../includes/shortcodes/mycred_hook_table.php:79
840
- msgid "Instance"
841
- msgstr ""
842
-
843
- #: ../includes/mycred-remote.php:619
844
- msgid "16, 24 or 32 characters"
845
- msgstr ""
846
-
847
- #: ../includes/classes/class.query-export.php:263
848
- msgid "Reference ID"
849
- msgstr ""
850
-
851
- #: ../includes/classes/class.query-export.php:263
852
- msgid "Data"
853
- msgstr ""
854
-
855
- #: ../includes/classes/class.query-export.php:464
856
- msgid "Export log entries raw"
857
- msgstr ""
858
-
859
- #: ../includes/classes/class.query-export.php:465
860
- msgid "Export log entries formatted"
861
- msgstr ""
862
-
863
- #: ../includes/classes/class.query-export.php:482
864
- msgid "All Log Entries"
865
- msgstr ""
866
-
867
- #: ../includes/classes/class.query-export.php:492
868
- msgid "Users Log Entries"
869
- msgstr ""
870
-
871
- #: ../includes/classes/class.query-export.php:493
872
- msgid "Export History"
873
- msgstr ""
874
-
875
- #: ../includes/classes/class.query-log.php:489
876
- msgid "Bulk Actions"
877
- msgstr ""
878
-
879
- #: ../includes/classes/class.query-log.php:490
880
- msgid "Export Raw"
881
- msgstr ""
882
-
883
- #: ../includes/classes/class.query-log.php:491
884
- msgid "Export Formatted"
885
- msgstr ""
886
-
887
- #: ../includes/classes/class.query-log.php:507
888
- msgid "Apply"
889
- msgstr ""
890
-
891
- #: ../includes/classes/class.query-log.php:544
892
- msgid "User ID, Username, Email or Nicename"
893
- msgstr ""
894
-
895
- #: ../includes/classes/class.query-log.php:610
896
- msgid "Log entries navigation"
897
- msgstr ""
898
-
899
- #: ../includes/classes/class.query-log.php:735
900
- #, php-format
901
- msgid "1 entry"
902
- msgid_plural "%d entries"
903
- msgstr[0] ""
904
- msgstr[1] ""
905
-
906
- #: ../includes/classes/class.query-log.php:765
907
- msgid "First page"
908
- msgstr ""
909
-
910
- #: ../includes/classes/class.query-log.php:775
911
- msgid "Previous page"
912
- msgstr ""
913
-
914
- #: ../includes/classes/class.query-log.php:782 ../includes/classes/class.query-
915
- #: log.php:785
916
- msgid "Current Page"
917
- msgstr ""
918
-
919
- #: ../includes/classes/class.query-log.php:791
920
- #, php-format
921
- msgctxt "paging"
922
- msgid "%1$s of %2$s"
923
- msgstr ""
924
-
925
- #: ../includes/classes/class.query-log.php:798
926
- msgid "Next page"
927
- msgstr ""
928
-
929
- #: ../includes/classes/class.query-log.php:808
930
- msgid "Last page"
931
- msgstr ""
932
-
933
- #: ../includes/classes/class.query-log.php:868 ../includes/classes/class.query-
934
- #: log.php:889
935
- msgid "Select all"
936
- msgstr ""
937
-
938
- #: ../includes/classes/class.query-log.php:972
939
- msgid "Select entry"
940
- msgstr ""
941
-
942
- #: ../includes/classes/class.query-log.php:993
943
- msgid "Show more details"
944
- msgstr ""
945
-
946
- #: ../includes/classes/class.query-log.php:1017
947
- msgid "Filter by Date"
948
- msgstr ""
949
-
950
- #: ../includes/classes/class.query-log.php:1066
951
- msgid "Filter by User"
952
- msgstr ""
953
-
954
- #: ../includes/classes/class.query-log.php:1068
955
- msgid "Filter by ID"
956
- msgstr ""
957
-
958
- #: ../includes/classes/class.query-log.php:1544
959
- msgid "Website Registration"
960
- msgstr ""
961
-
962
- #: ../includes/classes/class.query-log.php:1545
963
- msgid "Website Visit"
964
- msgstr ""
965
-
966
- #: ../includes/classes/class.query-log.php:1546
967
- msgid "Viewing Content (Member)"
968
- msgstr ""
969
-
970
- #: ../includes/classes/class.query-log.php:1547
971
- msgid "Viewing Content (Author)"
972
- msgstr ""
973
-
974
- #: ../includes/classes/class.query-log.php:1548
975
- msgid "Logging in"
976
- msgstr ""
977
-
978
- #: ../includes/classes/class.query-log.php:1549
979
- msgid "Publishing Content"
980
- msgstr ""
981
-
982
- #: ../includes/classes/class.query-log.php:1551
983
- msgid "Unapproved Comment"
984
- msgstr ""
985
-
986
- #: ../includes/classes/class.query-log.php:1552
987
- msgid "SPAM Comment"
988
- msgstr ""
989
-
990
- #: ../includes/classes/class.query-log.php:1554
991
- msgid "Link Click"
992
- msgstr ""
993
-
994
- #: ../includes/classes/class.query-log.php:1555
995
- msgid "Watching Video"
996
- msgstr ""
997
-
998
- #: ../includes/classes/class.query-log.php:1556
999
- msgid "Visitor Referral"
1000
- msgstr ""
1001
-
1002
- #: ../includes/classes/class.query-log.php:1557
1003
- msgid "Signup Referral"
1004
- msgstr ""
1005
-
1006
- #: ../includes/classes/class.query-log.php:1561
1007
- msgid "New Profile Update"
1008
- msgstr ""
1009
-
1010
- #: ../includes/classes/class.query-log.php:1562
1011
- msgid "Profile Update Removal"
1012
- msgstr ""
1013
-
1014
- #: ../includes/classes/class.query-log.php:1563
1015
- msgid "Avatar Upload"
1016
- msgstr ""
1017
-
1018
- #: ../includes/classes/class.query-log.php:1564
1019
- msgid "Profile Cover Upload"
1020
- msgstr ""
1021
-
1022
- #: ../includes/classes/class.query-log.php:1566
1023
- msgid "Ended Friendship"
1024
- msgstr ""
1025
-
1026
- #: ../includes/classes/class.query-log.php:1567
1027
- msgid "New Profile Comment"
1028
- msgstr ""
1029
-
1030
- #: ../includes/classes/class.query-log.php:1568
1031
- msgid "Profile Comment Deletion"
1032
- msgstr ""
1033
-
1034
- #: ../includes/classes/class.query-log.php:1569
1035
- msgid "Add Activity to Favorites"
1036
- msgstr ""
1037
-
1038
- #: ../includes/classes/class.query-log.php:1570
1039
- msgid "Remove Activity from Favorites"
1040
- msgstr ""
1041
-
1042
- #: ../includes/classes/class.query-log.php:1571
1043
- msgid "New Message"
1044
- msgstr ""
1045
-
1046
- #: ../includes/classes/class.query-log.php:1573
1047
- msgid "New Group"
1048
- msgstr ""
1049
-
1050
- #: ../includes/classes/class.query-log.php:1574
1051
- msgid "Deleted Group"
1052
- msgstr ""
1053
-
1054
- #: ../includes/classes/class.query-log.php:1575
1055
- msgid "New Group Forum Topic"
1056
- msgstr ""
1057
-
1058
- #: ../includes/classes/class.query-log.php:1576
1059
- msgid "Edit Group Forum Topic"
1060
- msgstr ""
1061
-
1062
- #: ../includes/classes/class.query-log.php:1577
1063
- msgid "New Group Forum Post"
1064
- msgstr ""
1065
-
1066
- #: ../includes/classes/class.query-log.php:1578
1067
- msgid "Edit Group Forum Post"
1068
- msgstr ""
1069
-
1070
- #: ../includes/classes/class.query-log.php:1579
1071
- msgid "Joining Group"
1072
- msgstr ""
1073
-
1074
- #: ../includes/classes/class.query-log.php:1580
1075
- msgid "Leaving Group"
1076
- msgstr ""
1077
-
1078
- #: ../includes/classes/class.query-log.php:1581
1079
- msgid "New Group Avatar"
1080
- msgstr ""
1081
-
1082
- #: ../includes/classes/class.query-log.php:1582
1083
- msgid "New Group Cover"
1084
- msgstr ""
1085
-
1086
- #: ../includes/classes/class.query-log.php:1583
1087
- msgid "New Group Comment"
1088
- msgstr ""
1089
-
1090
- #: ../includes/classes/class.query-log.php:1593
1091
- msgid "New Link"
1092
- msgstr ""
1093
-
1094
- #: ../includes/classes/class.query-log.php:1594
1095
- msgid "Link Voting"
1096
- msgstr ""
1097
-
1098
- #: ../includes/classes/class.query-log.php:1595
1099
- msgid "Link Update"
1100
- msgstr ""
1101
-
1102
- #: ../includes/classes/class.query-log.php:1599
1103
- msgid "New Forum (bbPress)"
1104
- msgstr ""
1105
-
1106
- #: ../includes/classes/class.query-log.php:1600
1107
- msgid "New Forum Topic (bbPress)"
1108
- msgstr ""
1109
-
1110
- #: ../includes/classes/class.query-log.php:1601
1111
- msgid "Favorited Topic (bbPress)"
1112
- msgstr ""
1113
-
1114
- #: ../includes/classes/class.query-log.php:1602
1115
- msgid "New Topic Reply (bbPress)"
1116
- msgstr ""
1117
-
1118
- #: ../includes/classes/class.query-log.php:1606
1119
- msgid "Form Submission (Contact Form 7)"
1120
- msgstr ""
1121
-
1122
- #: ../includes/classes/class.query-log.php:1609
1123
- msgid "Form Submission (Gravity Form)"
1124
- msgstr ""
1125
-
1126
- #: ../includes/classes/class.query-log.php:1612
1127
- msgid "New Forum Topic (SimplePress)"
1128
- msgstr ""
1129
-
1130
- #: ../includes/classes/class.query-log.php:1613
1131
- msgid "New Forum Post (SimplePress)"
1132
- msgstr ""
1133
-
1134
- #: ../includes/classes/class.query-log.php:1622
1135
- msgid "Affiliate Signup (AffiliateWP)"
1136
- msgstr ""
1137
-
1138
- #: ../includes/classes/class.query-log.php:1623
1139
- msgid "Referred Visit (AffiliateWP)"
1140
- msgstr ""
1141
-
1142
- #: ../includes/classes/class.query-log.php:1624
1143
- msgid "Affiliate Referral (AffiliateWP)"
1144
- msgstr ""
1145
-
1146
- #: ../includes/classes/class.query-log.php:1625
1147
- msgid "Referral Refund (AffiliateWP)"
1148
- msgstr ""
1149
-
1150
- #: ../includes/classes/class.query-log.php:1634
1151
- msgid "Poll Voting"
1152
- msgstr ""
1153
-
1154
- #: ../includes/classes/class.query-log.php:1637
1155
- msgid "Sending an Invite"
1156
- msgstr ""
1157
-
1158
- #: ../includes/classes/class.query-log.php:1638
1159
- msgid "Accepting an Invite"
1160
- msgstr ""
1161
-
1162
- #: ../includes/classes/class.query-log.php:1645
1163
- msgid "Recurring Payout"
1164
- msgstr ""
1165
-
1166
- #: ../includes/classes/class.query-log.php:1649
1167
- msgid "Badge Reward"
1168
- msgstr ""
1169
-
1170
- #: ../includes/classes/class.query-log.php:1652
1171
- msgid "buyCRED Purchase (PayPal Standard)"
1172
- msgstr ""
1173
-
1174
- #: ../includes/classes/class.query-log.php:1653
1175
- msgid "buyCRED Purchase (Skrill)"
1176
- msgstr ""
1177
-
1178
- #: ../includes/classes/class.query-log.php:1654
1179
- msgid "buyCRED Purchase (Zombaio)"
1180
- msgstr ""
1181
-
1182
- #: ../includes/classes/class.query-log.php:1655
1183
- msgid "buyCRED Purchase (NETBilling)"
1184
- msgstr ""
1185
-
1186
- #: ../includes/classes/class.query-log.php:1656
1187
- msgid "buyCRED Purchase (BitPay)"
1188
- msgstr ""
1189
-
1190
- #: ../includes/classes/class.query-log.php:1661
1191
- msgid "Coupon Purchase"
1192
- msgstr ""
1193
-
1194
- #: ../includes/classes/class.query-log.php:1665
1195
- msgid "Store Purchase (WooCommerce)"
1196
- msgstr ""
1197
-
1198
- #: ../includes/classes/class.query-log.php:1666
1199
- msgid "Store Reward (WooCommerce)"
1200
- msgstr ""
1201
-
1202
- #: ../includes/classes/class.query-log.php:1667
1203
- msgid "Product Review (WooCommerce)"
1204
- msgstr ""
1205
-
1206
- #: ../includes/classes/class.query-log.php:1670
1207
- msgid "Store Purchase (MarketPress)"
1208
- msgstr ""
1209
-
1210
- #: ../includes/classes/class.query-log.php:1671
1211
- msgid "Store Reward (MarketPress)"
1212
- msgstr ""
1213
-
1214
- #: ../includes/classes/class.query-log.php:1674
1215
- msgid "Store Purchase (WP E-Commerce)"
1216
- msgstr ""
1217
-
1218
- #: ../includes/classes/class.query-log.php:1680
1219
- msgid "Event Payment (Event Espresso)"
1220
- msgstr ""
1221
-
1222
- #: ../includes/classes/class.query-log.php:1681
1223
- msgid "Event Sale (Event Espresso)"
1224
- msgstr ""
1225
-
1226
- #: ../includes/classes/class.query-log.php:1685
1227
- msgid "Event Payment (Events Manager)"
1228
- msgstr ""
1229
-
1230
- #: ../includes/classes/class.query-log.php:1686
1231
- msgid "Event Sale (Events Manager)"
1232
- msgstr ""
1233
-
1234
- #: ../includes/classes/class.query-log.php:1690
1235
- msgid "Content Purchase"
1236
- msgstr ""
1237
-
1238
- #: ../includes/classes/class.query-log.php:1691
1239
- msgid "Content Sale"
1240
- msgstr ""
1241
-
1242
- #: ../includes/classes/class.query-log.php:1699
1243
- msgid "Manual Adjustment by Admin"
1244
- msgstr ""
1245
-
1246
- #: ../includes/mycred-rest-api.php:114 ../includes/mycred-rest-api.php:135 ..
1247
- #: includes/mycred-rest-api.php:156 ../includes/mycred-rest-api.php:176
1248
- msgid "message"
1249
- msgstr ""
1250
-
1251
- #: ../includes/mycred-install.php:63
1252
- msgid "myCRED requires WordPress 4.0 or higher. Version detected:"
1253
- msgstr ""
1254
-
1255
- #: ../includes/mycred-install.php:68
1256
- msgid "myCRED requires PHP 5.3 or higher. Version detected: "
1257
- msgstr ""
1258
-
1259
- #: ../includes/mycred-install.php:78
1260
- msgid ""
1261
- "The mcrypt PHP library must be enabled in order to use this plugin! Please "
1262
- "check your PHP configuration or contact your host and ask them to enable it "
1263
- "for you!"
1264
- msgstr ""
1265
-
1266
- #: ../includes/mycred-widgets.php:392
1267
- msgid "Based On"
1268
- msgstr ""
1269
-
1270
- #: ../includes/mycred-widgets.php:394
1271
- msgid ""
1272
- "Use \"balance\" to base the leaderboard on your users current balances or use "
1273
- "a specific reference."
1274
- msgstr ""
1275
-
1276
- #: ../includes/mycred-widgets.php:394
1277
- msgid "Reference Guide"
1278
- msgstr ""
1279
-
1280
- #: ../includes/mycred-widgets.php:439
1281
- msgid "Timeframe"
1282
- msgstr ""
1283
-
1284
- #: ../includes/mycred-widgets.php:441
1285
- msgid ""
1286
- "Option to limit the leaderboard based on a specific timeframe. Leave empty "
1287
- "if not used."
1288
- msgstr ""
1289
-
1290
- #: ../includes/mycred-functions.php:2569
1291
- msgid "per day"
1292
- msgstr ""
1293
-
1294
- #: ../includes/mycred-functions.php:2571
1295
- msgid "per week"
1296
- msgstr ""
1297
-
1298
- #: ../includes/mycred-functions.php:2573
1299
- msgid "per month"
1300
- msgstr ""
1301
-
1302
- #: ../includes/mycred-functions.php:2575
1303
- msgid "in total"
1304
- msgstr ""
1305
-
1306
- #: ../includes/mycred-functions.php:2577 ../includes/mycred-functions.php:2581
1307
- #, php-format
1308
- msgid "Maximum once"
1309
- msgid_plural "Maximum %d times"
1310
- msgstr[0] ""
1311
- msgstr[1] ""
1312
-
1313
- #: ../includes/mycred-functions.php:2608
1314
- #, php-format
1315
- msgctxt "ex. 21st."
1316
- msgid "%dst"
1317
- msgstr ""
1318
-
1319
- #: ../includes/mycred-functions.php:2615
1320
- #, php-format
1321
- msgctxt "ex. 32nd."
1322
- msgid "%dnd"
1323
- msgstr ""
1324
-
1325
- #: ../includes/mycred-functions.php:2622
1326
- #, php-format
1327
- msgctxt "ex. 43rd."
1328
- msgid "%drd"
1329
- msgstr ""
1330
-
1331
- #: ../includes/mycred-functions.php:2633
1332
- #, php-format
1333
- msgctxt "ex. 50th"
1334
- msgid "%dth"
1335
- msgstr ""
1336
-
1337
- #. Description of the plugin
1338
- msgid "An adaptive points management system for WordPress powered websites."
1339
- msgstr ""
1340
-
1341
- #: ../addons/banking/myCRED-addon-banking.php:141
1342
- msgid "Central Banking"
1343
- msgstr ""
1344
-
1345
- #: ../addons/banking/myCRED-addon-banking.php:142
1346
- #, php-format
1347
- msgid ""
1348
- "Instead of creating %_plural% out of thin-air, all payouts are made from a "
1349
- "nominated \"Central Bank\" account. Any %_plural% a user spends or loses are "
1350
- "deposited back into this account. If the central bank runs out of %_plural%, "
1351
- "no %_plural% will be paid out."
1352
- msgstr ""
1353
-
1354
- #: ../addons/banking/myCRED-addon-banking.php:151
1355
- msgid ""
1356
- "Offer your users interest on the %_plural% they earn on your website. The "
1357
- "interest is compounded daily."
1358
- msgstr ""
1359
-
1360
- #: ../addons/banking/myCRED-addon-banking.php:160
1361
- #, php-format
1362
- msgid "Setup mass %_singular% payouts for your users."
1363
- msgstr ""
1364
-
1365
- #: ../addons/banking/myCRED-addon-banking.php:202
1366
- msgid "New Recurring Payout"
1367
- msgstr ""
1368
-
1369
- #: ../addons/banking/myCRED-addon-banking.php:203
1370
- msgid "Edit Recurring Payout"
1371
- msgstr ""
1372
-
1373
- #: ../addons/banking/myCRED-addon-banking.php:205
1374
- msgid "Please fill out all required fields that are highlighted in red."
1375
- msgstr ""
1376
-
1377
- #: ../addons/banking/myCRED-addon-banking.php:206
1378
- msgid "Are you sure you want to remove this schedule? This can not be undone!"
1379
- msgstr ""
1380
-
1381
- #: ../addons/banking/myCRED-addon-banking.php:271
1382
- msgid "Warning"
1383
- msgstr ""
1384
-
1385
- #: ../addons/banking/myCRED-addon-banking.php:271
1386
- msgid ""
1387
- "This banking service uses the WordPress CRON to schedule events. If the "
1388
- "WordPress CRON is disabled, this service will not work correctly."
1389
- msgstr ""
1390
-
1391
- #: ../addons/banking/services/mycred-service-central.php:110
1392
- msgid "Central Bank Account"
1393
- msgstr ""
1394
-
1395
- #: ../addons/banking/services/mycred-service-central.php:113
1396
- msgid "The ID of the user representing the central bank."
1397
- msgstr ""
1398
-
1399
- #: ../addons/banking/services/mycred-service-central.php:117
1400
- msgid "Ignore Manual Adjustments"
1401
- msgstr ""
1402
-
1403
- #: ../addons/banking/services/mycred-service-interest.php:429
1404
- msgid "Daily Compound Schedule"
1405
- msgstr ""
1406
-
1407
- #: ../addons/banking/services/mycred-service-interest.php:432 ..
1408
- #: addons/banking/services/mycred-service-interest.php:457 ..
1409
- #: addons/banking/services/mycred-service-payouts.php:726
1410
- msgid "Year"
1411
- msgstr ""
1412
-
1413
- #: ../addons/banking/services/mycred-service-interest.php:433 ..
1414
- #: addons/banking/services/mycred-service-interest.php:458 ..
1415
- #: addons/banking/services/mycred-service-payouts.php:732 ..
1416
- #: addons/banking/includes/mycred-banking-functions.php:95
1417
- msgid "Month"
1418
- msgstr ""
1419
-
1420
- #: ../addons/banking/services/mycred-service-interest.php:434 ..
1421
- #: addons/banking/services/mycred-service-interest.php:459 ..
1422
- #: addons/banking/includes/mycred-banking-functions.php:85
1423
- msgid "Day"
1424
- msgstr ""
1425
-
1426
- #: ../addons/banking/services/mycred-service-interest.php:454
1427
- msgid "Payout Schedule"
1428
- msgstr ""
1429
-
1430
- #: ../addons/banking/services/mycred-service-interest.php:493
1431
- msgid "Payout Frequency"
1432
- msgstr ""
1433
-
1434
- #: ../addons/banking/services/mycred-service-interest.php:506
1435
- msgid "Payout Log Table"
1436
- msgstr ""
1437
-
1438
- #: ../addons/banking/services/mycred-service-interest.php:519
1439
- msgid ""
1440
- "Changing the payout period once the service is enabled, will only take "
1441
- "effect once the currently scheduled payout runs. To change this, you will "
1442
- "also need to adjust the payout schedule above."
1443
- msgstr ""
1444
-
1445
- #: ../addons/banking/services/mycred-service-interest.php:524
1446
- msgid "Exclude by ID"
1447
- msgstr ""
1448
-
1449
- #: ../addons/banking/services/mycred-service-interest.php:528 ..
1450
- #: addons/banking/services/mycred-service-interest.php:529 ..
1451
- #: addons/banking/services/mycred-service-payouts.php:789
1452
- msgid "Comma separated list of user IDs"
1453
- msgstr ""
1454
-
1455
- #: ../addons/banking/services/mycred-service-interest.php:535
1456
- msgid "Exclude by Role"
1457
- msgstr ""
1458
-
1459
- #: ../addons/banking/services/mycred-service-interest.php:539
1460
- msgid "Roles to exclude"
1461
- msgstr ""
1462
-
1463
- #: ../addons/banking/services/mycred-service-interest.php:655
1464
- msgid "Leave empty to pay the default rate."
1465
- msgstr ""
1466
-
1467
- #: ../addons/banking/services/mycred-service-payouts.php:30
1468
- msgid "Waiting to Start"
1469
- msgstr ""
1470
-
1471
- #: ../addons/banking/services/mycred-service-payouts.php:32
1472
- msgid "Running"
1473
- msgstr ""
1474
-
1475
- #: ../addons/banking/services/mycred-service-payouts.php:33
1476
- msgid "Finished"
1477
- msgstr ""
1478
-
1479
- #: ../addons/banking/services/mycred-service-payouts.php:34
1480
- msgid "Stopped"
1481
- msgstr ""
1482
-
1483
- #: ../addons/banking/services/mycred-service-payouts.php:444
1484
- msgid "Not yet started"
1485
- msgstr ""
1486
-
1487
- #: ../addons/banking/services/mycred-service-payouts.php:455
1488
- msgid "Currently Running"
1489
- msgstr ""
1490
-
1491
- #: ../addons/banking/services/mycred-service-payouts.php:470
1492
- msgid "View Schedule"
1493
- msgstr ""
1494
-
1495
- #: ../addons/banking/services/mycred-service-payouts.php:470 ..
1496
- #: addons/stats/widgets/mycred-stats-widget-daily-loses.php:151 ..
1497
- #: addons/stats/widgets/mycred-stats-widget-daily-gains.php:151
1498
- msgid "View"
1499
- msgstr ""
1500
-
1501
- #: ../addons/banking/services/mycred-service-payouts.php:470
1502
- msgid "Delete Schedule"
1503
- msgstr ""
1504
-
1505
- #: ../addons/banking/services/mycred-service-payouts.php:521 ..
1506
- #: addons/banking/services/mycred-service-payouts.php:764
1507
- msgid "Min. Balance"
1508
- msgstr ""
1509
-
1510
- #: ../addons/banking/services/mycred-service-payouts.php:524 ..
1511
- #: addons/banking/services/mycred-service-payouts.php:771
1512
- msgid "Max. Balance"
1513
- msgstr ""
1514
-
1515
- #: ../addons/banking/services/mycred-service-payouts.php:529
1516
- msgid "Exclude Users"
1517
- msgstr ""
1518
-
1519
- #: ../addons/banking/services/mycred-service-payouts.php:531
1520
- msgid "Include Users"
1521
- msgstr ""
1522
-
1523
- #: ../addons/banking/services/mycred-service-payouts.php:538
1524
- msgid "Exclude Roles"
1525
- msgstr ""
1526
-
1527
- #: ../addons/banking/services/mycred-service-payouts.php:540
1528
- msgid "Include Roles"
1529
- msgstr ""
1530
-
1531
- #: ../addons/banking/services/mycred-service-payouts.php:557 ..
1532
- #: addons/banking/services/mycred-service-payouts.php:877
1533
- msgid "Job Title"
1534
- msgstr ""
1535
-
1536
- #: ../addons/banking/services/mycred-service-payouts.php:571
1537
- msgid "Start Date"
1538
- msgstr ""
1539
-
1540
- #: ../addons/banking/services/mycred-service-payouts.php:571
1541
- msgid "Last Run"
1542
- msgstr ""
1543
-
1544
- #: ../addons/banking/services/mycred-service-payouts.php:577
1545
- msgid "Eligible"
1546
- msgstr ""
1547
-
1548
- #: ../addons/banking/services/mycred-service-payouts.php:578
1549
- #, php-format
1550
- msgid "1 User"
1551
- msgid_plural "%d Users"
1552
- msgstr[0] ""
1553
- msgstr[1] ""
1554
-
1555
- #: ../addons/banking/services/mycred-service-payouts.php:583
1556
- msgid "Runs"
1557
- msgstr ""
1558
-
1559
- #: ../addons/banking/services/mycred-service-payouts.php:584
1560
- msgid "Infinite"
1561
- msgstr ""
1562
-
1563
- #: ../addons/banking/services/mycred-service-payouts.php:607
1564
- msgid "Will payout even if the central bank account has run out of funds."
1565
- msgstr ""
1566
-
1567
- #: ../addons/banking/services/mycred-service-payouts.php:612
1568
- msgid "Paid Out"
1569
- msgstr ""
1570
-
1571
- #: ../addons/banking/services/mycred-service-payouts.php:613
1572
- msgid "Completed"
1573
- msgstr ""
1574
-
1575
- #: ../addons/banking/services/mycred-service-payouts.php:614
1576
- msgid "Misses"
1577
- msgstr ""
1578
-
1579
- #: ../addons/banking/services/mycred-service-payouts.php:615
1580
- msgid "Runs Left"
1581
- msgstr ""
1582
-
1583
- #: ../addons/banking/services/mycred-service-payouts.php:635
1584
- msgid ""
1585
- "A miss is when a payout was declined by the plugin. This can be due to "
1586
- "custom code declining the payout or if the user is excluded."
1587
- msgstr ""
1588
-
1589
- #: ../addons/banking/services/mycred-service-payouts.php:680
1590
- msgid "Schedule Title"
1591
- msgstr ""
1592
-
1593
- #: ../addons/banking/services/mycred-service-payouts.php:692 ..
1594
- #: addons/banking/services/mycred-service-payouts.php:879
1595
- msgid "Frequency"
1596
- msgstr ""
1597
-
1598
- #: ../addons/banking/services/mycred-service-payouts.php:713
1599
- msgid "Payout even if the central bank account runs out of funds."
1600
- msgstr ""
1601
-
1602
- #: ../addons/banking/services/mycred-service-payouts.php:720
1603
- msgid "First Payout"
1604
- msgstr ""
1605
-
1606
- #: ../addons/banking/services/mycred-service-payouts.php:752
1607
- msgid "Repeat"
1608
- msgstr ""
1609
-
1610
- #: ../addons/banking/services/mycred-service-payouts.php:754
1611
- msgid "Use -1 for infinite runs."
1612
- msgstr ""
1613
-
1614
- #: ../addons/banking/services/mycred-service-payouts.php:766 ..
1615
- #: addons/banking/services/mycred-service-payouts.php:773 ../addons/sell-
1616
- #: content/myCRED-addon-sell-content.php:431 ../addons/sell-content/myCRED-addon-
1617
- #: sell-content.php:436
1618
- msgid "Use zero to disable."
1619
- msgstr ""
1620
-
1621
- #: ../addons/banking/services/mycred-service-payouts.php:782
1622
- msgid "Limit by ID"
1623
- msgstr ""
1624
-
1625
- #: ../addons/banking/services/mycred-service-payouts.php:796
1626
- msgid "Limit by Role(s)"
1627
- msgstr ""
1628
-
1629
- #: ../addons/banking/services/mycred-service-payouts.php:823
1630
- msgid "Schedule"
1631
- msgstr ""
1632
-
1633
- #: ../addons/banking/services/mycred-service-payouts.php:844
1634
- msgid "Include:"
1635
- msgstr ""
1636
-
1637
- #: ../addons/banking/services/mycred-service-payouts.php:845
1638
- msgid "Exclude:"
1639
- msgstr ""
1640
-
1641
- #: ../addons/banking/services/mycred-service-payouts.php:870
1642
- msgid ""
1643
- "As long as this service remains disabled, none of your scheduled payouts "
1644
- "will run!"
1645
- msgstr ""
1646
-
1647
- #: ../addons/banking/services/mycred-service-payouts.php:873
1648
- msgid "Schedules"
1649
- msgstr ""
1650
-
1651
- #: ../addons/banking/services/mycred-service-payouts.php:880
1652
- msgid "Last Ran"
1653
- msgstr ""
1654
-
1655
- #: ../addons/banking/services/mycred-service-payouts.php:881
1656
- msgid "Next Run"
1657
- msgstr ""
1658
-
1659
- #: ../addons/banking/services/mycred-service-payouts.php:889
1660
- msgid "No schedules found."
1661
- msgstr ""
1662
-
1663
- #: ../addons/banking/services/mycred-service-payouts.php:953
1664
- msgid "Schedule Added"
1665
- msgstr ""
1666
-
1667
- #: ../addons/banking/services/mycred-service-payouts.php:960
1668
- msgid ""
1669
- "While the recurring payout has been successfully saved, based on the limits "
1670
- "you set, right now there are no users that are eligible for a payout!"
1671
- msgstr ""
1672
-
1673
- #: ../addons/banking/services/mycred-service-payouts.php:972 ..
1674
- #: addons/banking/services/mycred-service-payouts.php:986
1675
- msgid "Schedule not found. Please refresh this page and try again."
1676
- msgstr ""
1677
-
1678
- #: ../addons/banking/services/mycred-service-payouts.php:991
1679
- msgid "Schedule Deleted"
1680
- msgstr ""
1681
-
1682
- #: ../addons/banking/includes/mycred-banking-functions.php:80
1683
- msgid "Hour"
1684
- msgstr ""
1685
-
1686
- #: ../addons/banking/includes/mycred-banking-functions.php:90
1687
- msgid "Week"
1688
- msgstr ""
1689
-
1690
- #: ../addons/banking/includes/mycred-banking-functions.php:100
1691
- msgid "Quarter"
1692
- msgstr ""
1693
-
1694
- #: ../addons/banking/includes/mycred-banking-functions.php:105
1695
- msgid "Semiannual"
1696
- msgstr ""
1697
-
1698
- #: ../addons/banking/includes/mycred-banking-functions.php:110
1699
- msgid "Annual"
1700
- msgstr ""
1701
-
1702
- #: ../addons/banking/includes/mycred-banking-functions.php:283
1703
- msgid "A title must be set."
1704
- msgstr ""
1705
-
1706
- #: ../addons/banking/includes/mycred-banking-functions.php:290
1707
- msgid "The amount to payout can not be zero."
1708
- msgstr ""
1709
-
1710
- #: ../addons/banking/includes/mycred-banking-functions.php:296
1711
- msgid "Start date can not be in the past."
1712
- msgstr ""
1713
-
1714
- #: ../addons/banking/includes/mycred-banking-functions.php:303
1715
- msgid "Repeat can not be zero."
1716
- msgstr ""
1717
-
1718
- #: ../addons/banking/includes/mycred-banking-functions.php:309
1719
- msgid "Duplicate schedule."
1720
- msgstr ""
1721
-
1722
- #: ../addons/gateway/event-booking/mycred-eventsmanager-pro.php:41
1723
- #, php-format
1724
- msgid "%plural% Cost"
1725
- msgstr ""
1726
-
1727
- #: ../addons/gateway/event-booking/mycred-eventsmanager-pro.php:213
1728
- msgid "Your Balance"
1729
- msgstr ""
1730
-
1731
- #: ../addons/gateway/event-booking/mycred-eventsmanager-pro.php:710
1732
- msgid "Cart & Checkout Cost"
1733
- msgstr ""
1734
-
1735
- #: ../addons/gateway/event-booking/mycred-eventsmanager-pro.php:713
1736
- #, php-format
1737
- msgid "Label for cost in %plural%"
1738
- msgstr ""
1739
-
1740
- #: ../addons/gateway/carts/mycred-woocommerce.php:109 ..
1741
- #: addons/gateway/carts/mycred-woocommerce.php:181
1742
- msgid "Refund Log Template"
1743
- msgstr ""
1744
-
1745
- #: ../addons/gateway/carts/mycred-woocommerce.php:183
1746
- msgid "Log entry template for refunds of profit shares."
1747
- msgstr ""
1748
-
1749
- #: ../addons/gateway/carts/mycred-woocommerce.php:262 ..
1750
- #: addons/gateway/carts/mycred-marketpress.php:402 ../addons/sell-
1751
- #: content/includes/mycred-sell-functions.php:501
1752
- msgid "Insufficient funds."
1753
- msgstr ""
1754
-
1755
- #: ../addons/gateway/carts/mycred-woocommerce.php:364
1756
- #, php-format
1757
- msgctxt "%s = Point amount formatted"
1758
- msgid "Refunded %s"
1759
- msgstr ""
1760
-
1761
- #: ../addons/transfer/myCRED-addon-transfer.php:456
1762
- msgid "Limit Amount"
1763
- msgstr ""
1764
-
1765
- #: ../addons/transfer/myCRED-addon-transfer.php:464
1766
- msgid ""
1767
- "The template to use when the transfer shortcode or widget is viewed by "
1768
- "someone who is not logged in."
1769
- msgstr ""
1770
-
1771
- #: ../addons/transfer/myCRED-addon-transfer.php:479
1772
- msgid ""
1773
- "The template to use if you select to show the transfer limit in the transfer "
1774
- "shortcode or widget. Ignored if there is no limit enforced."
1775
- msgstr ""
1776
-
1777
- #: ../addons/transfer/myCRED-addon-transfer.php:496
1778
- msgid ""
1779
- "The template to use if you select to show the users balance in the transfer "
1780
- "shortcode or widget. Ignored if balances are not shown."
1781
- msgstr ""
1782
-
1783
- #: ../addons/transfer/myCRED-addon-transfer.php:512
1784
- msgid "Default Button Label"
1785
- msgstr ""
1786
-
1787
- #: ../addons/transfer/myCRED-addon-transfer.php:514
1788
- msgid ""
1789
- "The default transfer button label. You can override this in the shortcode or "
1790
- "widget if needed."
1791
- msgstr ""
1792
-
1793
- #: ../addons/transfer/myCRED-addon-transfer.php:517
1794
- msgid "Insufficient Funds Warning"
1795
- msgstr ""
1796
-
1797
- #: ../addons/transfer/myCRED-addon-transfer.php:521
1798
- msgid "Message to show the user if they try to send more then they can afford."
1799
- msgstr ""
1800
-
1801
- #: ../addons/transfer/myCRED-addon-transfer.php:524
1802
- msgid "Limit Reached Warning"
1803
- msgstr ""
1804
-
1805
- #: ../addons/transfer/myCRED-addon-transfer.php:528
1806
- msgid ""
1807
- "Message to show the user once they reach their transfer limit. Ignored if no "
1808
- "limits are enforced."
1809
- msgstr ""
1810
-
1811
- #: ../addons/transfer/includes/mycred-transfer-widgets.php:105 ..
1812
- #: addons/transfer/includes/mycred-transfer-shortcodes.php:31 ../addons/buy-
1813
- #: creds/modules/buycred-module-pending.php:542 ../addons/buy-
1814
- #: creds/modules/buycred-module-core.php:1384
1815
- msgid "Recipient"
1816
- msgstr ""
1817
-
1818
- #: ../addons/transfer/includes/mycred-transfer-widgets.php:113
1819
- msgid "Placeholder"
1820
- msgstr ""
1821
-
1822
- #: ../addons/transfer/includes/mycred-transfer-widgets.php:117
1823
- msgid "Message for Excluded Users"
1824
- msgstr ""
1825
-
1826
- #: ../addons/ranks/myCRED-addon-ranks.php:216
1827
- #, php-format
1828
- msgid "Ranks for %s"
1829
- msgstr ""
1830
-
1831
- #: ../addons/ranks/myCRED-addon-ranks.php:230 ../addons/ranks/myCRED-addon-ranks.
1832
- #: php:1333
1833
- msgid "Rank Logo"
1834
- msgstr ""
1835
-
1836
- #: ../addons/ranks/myCRED-addon-ranks.php:231
1837
- msgid "Set rank logo"
1838
- msgstr ""
1839
-
1840
- #: ../addons/ranks/myCRED-addon-ranks.php:232
1841
- msgid "Remove rank logo"
1842
- msgstr ""
1843
-
1844
- #: ../addons/ranks/myCRED-addon-ranks.php:233
1845
- msgid "Use as Logo"
1846
- msgstr ""
1847
-
1848
- #: ../addons/ranks/myCRED-addon-ranks.php:283 ../addons/ranks/myCRED-addon-ranks.
1849
- #: php:284 ../addons/ranks/myCRED-addon-ranks.php:285 ../addons/ranks/myCRED-
1850
- #: addon-ranks.php:286 ../addons/ranks/myCRED-addon-ranks.php:287 ..
1851
- #: addons/ranks/myCRED-addon-ranks.php:290 ../addons/ranks/myCRED-addon-ranks.
1852
- #: php:291
1853
- msgid "Rank Updated."
1854
- msgstr ""
1855
-
1856
- #: ../addons/ranks/myCRED-addon-ranks.php:288
1857
- msgid "Rank Enabled."
1858
- msgstr ""
1859
-
1860
- #: ../addons/ranks/myCRED-addon-ranks.php:289
1861
- msgid "Rank Saved."
1862
- msgstr ""
1863
-
1864
- #: ../addons/ranks/myCRED-addon-ranks.php:1158
1865
- msgid "Rank Setup"
1866
- msgstr ""
1867
-
1868
- #: ../addons/ranks/myCRED-addon-ranks.php:1201
1869
- msgid "Minimum Balance Requirement"
1870
- msgstr ""
1871
-
1872
- #: ../addons/ranks/myCRED-addon-ranks.php:1207
1873
- msgid "Maximum Balance Requirement"
1874
- msgstr ""
1875
-
1876
- #: ../addons/ranks/myCRED-addon-ranks.php:1400
1877
- msgid ""
1878
- "Use this button to calculate or recalculate your users totals. If not used, "
1879
- "the users current balance will be used as a starting point."
1880
- msgstr ""
1881
-
1882
- #: ../addons/ranks/myCRED-addon-ranks.php:1442 ../addons/ranks/myCRED-addon-ranks.
1883
- #: php:1487
1884
- #, php-format
1885
- msgid ""
1886
- "Template to use when showing a users Rank in BuddyPress. Use %rank_title% "
1887
- "for the title and %rank_logo% to show the rank logo. HTML is allowed."
1888
- msgstr ""
1889
-
1890
- #: ../addons/ranks/myCRED-addon-ranks.php:1464
1891
- msgid "Include in Topic Replies"
1892
- msgstr ""
1893
-
1894
- #: ../addons/ranks/myCRED-addon-ranks.php:1465 ../addons/badges/myCRED-addon-
1895
- #: badges.php:1183
1896
- msgid "Include in Profile"
1897
- msgstr ""
1898
-
1899
- #: ../addons/ranks/myCRED-addon-ranks.php:1466
1900
- msgid "Include in Topic Replies and Profile"
1901
- msgstr ""
1902
-
1903
- #: ../addons/ranks/myCRED-addon-ranks.php:1470
1904
- msgid "Rank in bbPress"
1905
- msgstr ""
1906
-
1907
- #: ../addons/notifications/myCRED-addon-notifications.php:203
1908
- msgid "Restore to default"
1909
- msgstr ""
1910
-
1911
- #: ../addons/notifications/myCRED-addon-notifications.php:217
1912
- msgid ""
1913
- "Number of seconds before a notice is automatically removed after being shown "
1914
- "to user. Use zero to disable."
1915
- msgstr ""
1916
-
1917
- #: ../addons/email-notices/myCRED-addon-email-notices.php:124 ../addons/email-
1918
- #: notices/myCRED-addon-email-notices.php:130 ../addons/email-notices/myCRED-
1919
- #: addon-email-notices.php:136 ../addons/email-notices/myCRED-addon-email-notices.
1920
- #: php:192 ../addons/email-notices/myCRED-addon-email-notices.php:193
1921
- msgid "Email Notifications"
1922
- msgstr ""
1923
-
1924
- #: ../addons/email-notices/myCRED-addon-email-notices.php:125
1925
- msgid "Email Notification"
1926
- msgstr ""
1927
-
1928
- #: ../addons/email-notices/myCRED-addon-email-notices.php:128
1929
- msgid "Edit Email Notification"
1930
- msgstr ""
1931
-
1932
- #: ../addons/email-notices/myCRED-addon-email-notices.php:129
1933
- msgid "New Email Notification"
1934
- msgstr ""
1935
-
1936
- #: ../addons/email-notices/myCRED-addon-email-notices.php:132
1937
- msgid "Search Email Notifications"
1938
- msgstr ""
1939
-
1940
- #: ../addons/email-notices/myCRED-addon-email-notices.php:133
1941
- msgid "No email notifications found"
1942
- msgstr ""
1943
-
1944
- #: ../addons/email-notices/myCRED-addon-email-notices.php:134
1945
- msgid "No email notifications found in Trash"
1946
- msgstr ""
1947
-
1948
- #: ../addons/email-notices/myCRED-addon-email-notices.php:167 ../addons/email-
1949
- #: notices/myCRED-addon-email-notices.php:168 ../addons/email-notices/myCRED-
1950
- #: addon-email-notices.php:169 ../addons/email-notices/myCRED-addon-email-notices.
1951
- #: php:170 ../addons/email-notices/myCRED-addon-email-notices.php:173 ..
1952
- #: addons/email-notices/myCRED-addon-email-notices.php:174 ../addons/email-
1953
- #: notices/myCRED-addon-email-notices.php:175 ../addons/email-notices/myCRED-
1954
- #: addon-email-notices.php:176
1955
- msgid "Email Notice Updated."
1956
- msgstr ""
1957
-
1958
- #: ../addons/email-notices/myCRED-addon-email-notices.php:172
1959
- msgid "Email Notice Activated."
1960
- msgstr ""
1961
-
1962
- #: ../addons/email-notices/myCRED-addon-email-notices.php:347 ../addons/email-
1963
- #: notices/myCRED-addon-email-notices.php:588
1964
- msgid "All types"
1965
- msgstr ""
1966
-
1967
- #: ../addons/email-notices/myCRED-addon-email-notices.php:706
1968
- msgid "Instance Related"
1969
- msgstr ""
1970
-
1971
- #: ../addons/email-notices/myCRED-addon-email-notices.php:712
1972
- msgid "The users new balance"
1973
- msgstr ""
1974
-
1975
- #: ../addons/email-notices/myCRED-addon-email-notices.php:720
1976
- msgid "The users old balance"
1977
- msgstr ""
1978
-
1979
- #: ../addons/email-notices/myCRED-addon-email-notices.php:728
1980
- msgid "The amount of points gained or lost in this instance"
1981
- msgstr ""
1982
-
1983
- #: ../addons/email-notices/myCRED-addon-email-notices.php:736
1984
- msgid "The log entry"
1985
- msgstr ""
1986
-
1987
- #: ../addons/email-notices/myCRED-addon-email-notices.php:741
1988
- #, php-format
1989
- msgid "You can also use %s."
1990
- msgstr ""
1991
-
1992
- #: ../addons/email-notices/myCRED-addon-email-notices.php:741
1993
- msgid "user related template tags"
1994
- msgstr ""
1995
-
1996
- #: ../addons/email-notices/myCRED-addon-email-notices.php:872
1997
- msgid "Badge Add-on"
1998
- msgstr ""
1999
-
2000
- #: ../addons/email-notices/myCRED-addon-email-notices.php:873
2001
- msgid "user gains a badge"
2002
- msgstr ""
2003
-
2004
- #: ../addons/email-notices/myCRED-addon-email-notices.php:1357 ../addons/email-
2005
- #: notices/myCRED-addon-email-notices.php:1364
2006
- msgid "Email Schedule"
2007
- msgstr ""
2008
-
2009
- #: ../addons/email-notices/myCRED-addon-email-notices.php:1359
2010
- msgid "WordPress Cron is disabled. Emails will be sent immediately."
2011
- msgstr ""
2012
-
2013
- #: ../addons/email-notices/myCRED-addon-email-notices.php:1368
2014
- msgid "Send emails immediately"
2015
- msgstr ""
2016
-
2017
- #: ../addons/email-notices/myCRED-addon-email-notices.php:1372
2018
- msgid "Send emails once an hour"
2019
- msgstr ""
2020
-
2021
- #: ../addons/email-notices/myCRED-addon-email-notices.php:1376
2022
- msgid "Send emails once a day"
2023
- msgstr ""
2024
-
2025
- #: ../addons/email-notices/myCRED-addon-email-notices.php:1379
2026
- msgid "Subscriptions"
2027
- msgstr ""
2028
-
2029
- #: ../addons/email-notices/myCRED-addon-email-notices.php:1381
2030
- #, php-format
2031
- msgid ""
2032
- "Use the %s shortcode to allow users to subscribe / unsubscribe to email "
2033
- "updates."
2034
- msgstr ""
2035
-
2036
- #: ../addons/email-notices/myCRED-addon-email-notices.php:1386
2037
- msgid "SMTP Override"
2038
- msgstr ""
2039
-
2040
- #: ../addons/email-notices/myCRED-addon-email-notices.php:1390
2041
- msgid ""
2042
- "SMTP Debug. Enable if you are experiencing issues with wp_mail() or if you "
2043
- "use a SMTP plugin for emails."
2044
- msgstr ""
2045
-
2046
- #: ../addons/email-notices/myCRED-addon-email-notices.php:1520
2047
- msgid "Unsubscribe"
2048
- msgstr ""
2049
-
2050
- #: ../addons/email-notices/myCRED-addon-email-notices.php:1542
2051
- msgid "There are no email notifications yet."
2052
- msgstr ""
2053
-
2054
- #: ../addons/email-notices/myCRED-addon-email-notices.php:1549 ../addons/buy-
2055
- #: creds/modules/buycred-module-pending.php:483
2056
- msgid "Save Changes"
2057
- msgstr ""
2058
-
2059
- #: ../addons/stats/myCRED-addon-stats.php:58
2060
- msgid "Statistics"
2061
- msgstr ""
2062
-
2063
- #: ../addons/stats/myCRED-addon-stats.php:168
2064
- msgid "Statistics Color"
2065
- msgstr ""
2066
-
2067
- #: ../addons/stats/myCRED-addon-stats.php:172
2068
- msgid "Positive Values"
2069
- msgstr ""
2070
-
2071
- #: ../addons/stats/myCRED-addon-stats.php:178
2072
- msgid "Negative Values"
2073
- msgstr ""
2074
-
2075
- #: ../addons/stats/myCRED-addon-stats.php:240
2076
- msgid "Overview"
2077
- msgstr ""
2078
-
2079
- #: ../addons/stats/myCRED-addon-stats.php:302
2080
- msgid "Refresh"
2081
- msgstr ""
2082
-
2083
- #: ../addons/stats/myCRED-addon-stats.php:409
2084
- msgid "Your log is empty. No statistics can be shown."
2085
- msgstr ""
2086
-
2087
- #: ../addons/stats/widgets/mycred-stats-widget-circulation.php:44
2088
- #, php-format
2089
- msgid "Total %s:"
2090
- msgstr ""
2091
-
2092
- #: ../addons/stats/widgets/mycred-stats-widget-circulation.php:138 ..
2093
- #: addons/stats/widgets/mycred-stats-widget-circulation.php:267
2094
- #, php-format
2095
- msgid "Total amount of %s in circulation"
2096
- msgstr ""
2097
-
2098
- #: ../addons/stats/widgets/mycred-stats-widget-circulation.php:171 ..
2099
- #: addons/stats/widgets/mycred-stats-widget-circulation.php:302
2100
- msgid "Total gains (%)"
2101
- msgstr ""
2102
-
2103
- #: ../addons/stats/widgets/mycred-stats-widget-circulation.php:175 ..
2104
- #: addons/stats/widgets/mycred-stats-widget-circulation.php:306
2105
- msgid "Total loses (%)"
2106
- msgstr ""
2107
-
2108
- #: ../addons/stats/widgets/mycred-stats-widget-circulation.php:179 ..
2109
- #: addons/stats/widgets/mycred-stats-widget-circulation.php:309
2110
- #, php-format
2111
- msgid "Total Gained: %s"
2112
- msgstr ""
2113
-
2114
- #: ../addons/stats/widgets/mycred-stats-widget-circulation.php:179 ..
2115
- #: addons/stats/widgets/mycred-stats-widget-circulation.php:309
2116
- #, php-format
2117
- msgid "Total Spent: %s"
2118
- msgstr ""
2119
-
2120
- #: ../addons/stats/widgets/mycred-stats-widget-circulation.php:193 ..
2121
- #: addons/stats/widgets/mycred-stats-widget-circulation.php:323
2122
- msgid "This Year"
2123
- msgstr ""
2124
-
2125
- #: ../addons/stats/widgets/mycred-stats-widget-circulation.php:197 ..
2126
- #: addons/stats/widgets/mycred-stats-widget-circulation.php:199 ..
2127
- #: addons/stats/widgets/mycred-stats-widget-circulation.php:201 ..
2128
- #: addons/stats/widgets/mycred-stats-widget-circulation.php:203 ..
2129
- #: addons/stats/widgets/mycred-stats-widget-circulation.php:327 ..
2130
- #: addons/stats/widgets/mycred-stats-widget-circulation.php:329 ..
2131
- #: addons/stats/widgets/mycred-stats-widget-circulation.php:331 ..
2132
- #: addons/stats/widgets/mycred-stats-widget-circulation.php:333 ..
2133
- #: addons/badges/includes/mycred-badge-functions.php:267
2134
- msgid "Gained"
2135
- msgstr ""
2136
-
2137
- #: ../addons/stats/widgets/mycred-stats-widget-circulation.php:198 ..
2138
- #: addons/stats/widgets/mycred-stats-widget-circulation.php:200 ..
2139
- #: addons/stats/widgets/mycred-stats-widget-circulation.php:202 ..
2140
- #: addons/stats/widgets/mycred-stats-widget-circulation.php:204 ..
2141
- #: addons/stats/widgets/mycred-stats-widget-circulation.php:328 ..
2142
- #: addons/stats/widgets/mycred-stats-widget-circulation.php:330 ..
2143
- #: addons/stats/widgets/mycred-stats-widget-circulation.php:332 ..
2144
- #: addons/stats/widgets/mycred-stats-widget-circulation.php:334 ..
2145
- #: addons/badges/includes/mycred-badge-functions.php:267
2146
- msgid "Lost"
2147
- msgstr ""
2148
-
2149
- #: ../addons/stats/widgets/mycred-stats-widget-daily-loses.php:118
2150
- msgid "Most common ways your users have lost or spent points during this period."
2151
- msgstr ""
2152
-
2153
- #: ../addons/stats/widgets/mycred-stats-widget-daily-loses.php:120
2154
- #, php-format
2155
- msgid "Most common ways your users have lost or spent %_plural% during this period."
2156
- msgstr ""
2157
-
2158
- #: ../addons/stats/widgets/mycred-stats-widget-daily-loses.php:127
2159
- msgid "Loses in the last 10 days"
2160
- msgstr ""
2161
-
2162
- #: ../addons/stats/widgets/mycred-stats-widget-daily-loses.php:166 ..
2163
- #: addons/stats/widgets/mycred-stats-widget-daily-gains.php:166
2164
- msgid "No data found"
2165
- msgstr ""
2166
-
2167
- #: ../addons/stats/widgets/mycred-stats-widget-daily-gains.php:118
2168
- msgid "Most common ways your users have gained points during this period."
2169
- msgstr ""
2170
-
2171
- #: ../addons/stats/widgets/mycred-stats-widget-daily-gains.php:120
2172
- #, php-format
2173
- msgid "Most common ways your users have gained %_plural% during this period."
2174
- msgstr ""
2175
-
2176
- #: ../addons/stats/widgets/mycred-stats-widget-daily-gains.php:127
2177
- msgid "Gains in the last 10 days"
2178
- msgstr ""
2179
-
2180
- #: ../addons/badges/includes/mycred-badge-functions.php:248
2181
- #, php-format
2182
- msgid "Level %s"
2183
- msgstr ""
2184
-
2185
- #: ../addons/badges/includes/mycred-badge-functions.php:265
2186
- #, php-format
2187
- msgctxt "\"Points\" for \"reference\" x times"
2188
- msgid "%s for \"%s\" x %d"
2189
- msgstr ""
2190
-
2191
- #: ../addons/badges/includes/mycred-badge-functions.php:267
2192
- #, php-format
2193
- msgctxt "\"Gained/Lost\" \"x points\" for \"reference\""
2194
- msgid "%s %s for \"%s\""
2195
- msgstr ""
2196
-
2197
- #: ../addons/badges/includes/mycred-badge-functions.php:269 ..
2198
- #: addons/badges/myCRED-addon-badges.php:519 ../addons/badges/myCRED-addon-
2199
- #: badges.php:921
2200
- msgctxt "Comparison of badge requirements. A OR B"
2201
- msgid "OR"
2202
- msgstr ""
2203
-
2204
- #: ../addons/badges/includes/mycred-badge-functions.php:271 ..
2205
- #: addons/badges/myCRED-addon-badges.php:518 ../addons/badges/myCRED-addon-
2206
- #: badges.php:921
2207
- msgctxt "Comparison of badge requirements. A AND B"
2208
- msgid "AND"
2209
- msgstr ""
2210
-
2211
- #: ../addons/badges/includes/mycred-badge-functions.php:287 ..
2212
- #: addons/badges/myCRED-addon-badges.php:722
2213
- msgid "This badge is manually awarded."
2214
- msgstr ""
2215
-
2216
- #: ../addons/badges/myCRED-addon-badges.php:148 ../addons/badges/myCRED-addon-
2217
- #: badges.php:154 ../addons/badges/myCRED-addon-badges.php:160 ..
2218
- #: addons/badges/myCRED-addon-badges.php:295 ../addons/badges/myCRED-addon-
2219
- #: badges.php:296 ../addons/badges/myCRED-addon-badges.php:1134 ..
2220
- #: addons/badges/myCRED-addon-badges.php:1256 ../addons/badges/myCRED-addon-
2221
- #: badges.php:1259
2222
- msgid "Badges"
2223
- msgstr ""
2224
-
2225
- #: ../addons/badges/myCRED-addon-badges.php:149
2226
- msgid "Badge"
2227
- msgstr ""
2228
-
2229
- #: ../addons/badges/myCRED-addon-badges.php:152
2230
- msgid "Edit Badge"
2231
- msgstr ""
2232
-
2233
- #: ../addons/badges/myCRED-addon-badges.php:153
2234
- msgid "New Badge"
2235
- msgstr ""
2236
-
2237
- #: ../addons/badges/myCRED-addon-badges.php:155
2238
- msgid "View Badge"
2239
- msgstr ""
2240
-
2241
- #: ../addons/badges/myCRED-addon-badges.php:156
2242
- msgid "Search Badge"
2243
- msgstr ""
2244
-
2245
- #: ../addons/badges/myCRED-addon-badges.php:157
2246
- msgid "No badges found"
2247
- msgstr ""
2248
-
2249
- #: ../addons/badges/myCRED-addon-badges.php:158
2250
- msgid "No badges found in Trash"
2251
- msgstr ""
2252
-
2253
- #: ../addons/badges/myCRED-addon-badges.php:270 ../addons/badges/myCRED-addon-
2254
- #: badges.php:271 ../addons/badges/myCRED-addon-badges.php:272 ..
2255
- #: addons/badges/myCRED-addon-badges.php:273 ../addons/badges/myCRED-addon-
2256
- #: badges.php:277 ../addons/badges/myCRED-addon-badges.php:278 ..
2257
- #: addons/badges/myCRED-addon-badges.php:279
2258
- msgid "Badge Updated."
2259
- msgstr ""
2260
-
2261
- #: ../addons/badges/myCRED-addon-badges.php:275
2262
- msgid "Badge Enabled."
2263
- msgstr ""
2264
-
2265
- #: ../addons/badges/myCRED-addon-badges.php:276
2266
- msgid "Badge Saved."
2267
- msgstr ""
2268
-
2269
- #: ../addons/badges/myCRED-addon-badges.php:396 ../addons/badges/myCRED-addon-
2270
- #: badges.php:480
2271
- msgid "Badge Name"
2272
- msgstr ""
2273
-
2274
- #: ../addons/badges/myCRED-addon-badges.php:397
2275
- msgid "Default Image"
2276
- msgstr ""
2277
-
2278
- #: ../addons/badges/myCRED-addon-badges.php:398
2279
- msgid "First Level"
2280
- msgstr ""
2281
-
2282
- #: ../addons/badges/myCRED-addon-badges.php:399
2283
- msgid "Requirements"
2284
- msgstr ""
2285
-
2286
- #: ../addons/badges/myCRED-addon-badges.php:510 ../addons/badges/myCRED-addon-
2287
- #: badges.php:801
2288
- msgid "Add Level"
2289
- msgstr ""
2290
-
2291
- #: ../addons/badges/myCRED-addon-badges.php:511 ../addons/badges/myCRED-addon-
2292
- #: badges.php:802
2293
- msgid "Remove Level"
2294
- msgstr ""
2295
-
2296
- #: ../addons/badges/myCRED-addon-badges.php:512 ../addons/badges/myCRED-addon-
2297
- #: badges.php:755 ../addons/badges/myCRED-addon-badges.php:818 ..
2298
- #: addons/badges/myCRED-addon-badges.php:823
2299
- msgid "Set Image"
2300
- msgstr ""
2301
-
2302
- #: ../addons/badges/myCRED-addon-badges.php:513 ../addons/badges/myCRED-addon-
2303
- #: badges.php:755 ../addons/badges/myCRED-addon-badges.php:823
2304
- msgid "Change Image"
2305
- msgstr ""
2306
-
2307
- #: ../addons/badges/myCRED-addon-badges.php:514
2308
- msgid "Are you sure you want to remove this level?"
2309
- msgstr ""
2310
-
2311
- #: ../addons/badges/myCRED-addon-badges.php:515 ../addons/badges/myCRED-addon-
2312
- #: badges.php:819 ../addons/badges/myCRED-addon-badges.php:1288
2313
- msgid "Level"
2314
- msgstr ""
2315
-
2316
- #: ../addons/badges/myCRED-addon-badges.php:516
2317
- msgid "Badge Image"
2318
- msgstr ""
2319
-
2320
- #: ../addons/badges/myCRED-addon-badges.php:517
2321
- msgid "Use as Badge"
2322
- msgstr ""
2323
-
2324
- #: ../addons/badges/myCRED-addon-badges.php:571
2325
- msgid "Badge Setup"
2326
- msgstr ""
2327
-
2328
- #: ../addons/badges/myCRED-addon-badges.php:580
2329
- msgid "Default Badge Image"
2330
- msgstr ""
2331
-
2332
- #: ../addons/badges/myCRED-addon-badges.php:678
2333
- msgid "Assign Badge"
2334
- msgstr ""
2335
-
2336
- #: ../addons/badges/myCRED-addon-badges.php:679
2337
- msgid "Remove Connections"
2338
- msgstr ""
2339
-
2340
- #: ../addons/badges/myCRED-addon-badges.php:758
2341
- msgid "Optional image to show when a user has not earned this badge."
2342
- msgstr ""
2343
-
2344
- #: ../addons/badges/myCRED-addon-badges.php:777
2345
- msgid "Time(s)"
2346
- msgstr ""
2347
-
2348
- #: ../addons/badges/myCRED-addon-badges.php:778
2349
- msgid "In total"
2350
- msgstr ""
2351
-
2352
- #: ../addons/badges/myCRED-addon-badges.php:825
2353
- #, php-format
2354
- msgid "Level %d"
2355
- msgstr ""
2356
-
2357
- #: ../addons/badges/myCRED-addon-badges.php:849
2358
- msgid "Select Point Type"
2359
- msgstr ""
2360
-
2361
- #: ../addons/badges/myCRED-addon-badges.php:863
2362
- msgid "Select Reference"
2363
- msgstr ""
2364
-
2365
- #: ../addons/badges/myCRED-addon-badges.php:939
2366
- msgid "Reward"
2367
- msgstr ""
2368
-
2369
- #: ../addons/badges/myCRED-addon-badges.php:1163 ../addons/badges/myCRED-addon-
2370
- #: badges.php:1199
2371
- msgid "Show all badges, including badges users have not yet earned."
2372
- msgstr ""
2373
-
2374
- #: ../addons/badges/myCRED-addon-badges.php:1184
2375
- msgid "Include in Forum Replies"
2376
- msgstr ""
2377
-
2378
- #: ../addons/badges/myCRED-addon-badges.php:1185
2379
- msgid "Include in Profile and Forum Replies"
2380
- msgstr ""
2381
-
2382
- #: ../addons/badges/myCRED-addon-badges.php:1251
2383
- msgid "No image set"
2384
- msgstr ""
2385
-
2386
- #: ../addons/badges/myCRED-addon-badges.php:1283
2387
- msgid "Select a level"
2388
- msgstr ""
2389
-
2390
- #: ../addons/badges/myCRED-addon-badges.php:1297
2391
- msgid "Earned"
2392
- msgstr ""
2393
-
2394
- #: ../addons/badges/myCRED-addon-badges.php:1406
2395
- #, php-format
2396
- msgid "A total of %d users have received this badge."
2397
- msgstr ""
2398
-
2399
- #: ../addons/badges/myCRED-addon-badges.php:1408
2400
- msgid "No users has yet earned this badge."
2401
- msgstr ""
2402
-
2403
- #: ../addons/badges/myCRED-addon-badges.php:1433
2404
- msgid "No connections where removed."
2405
- msgstr ""
2406
-
2407
- #: ../addons/badges/myCRED-addon-badges.php:1435
2408
- #, php-format
2409
- msgid "%s connections where removed."
2410
- msgstr ""
2411
-
2412
- #: ../addons/coupons/myCRED-addon-coupons.php:249
2413
- msgid "Used"
2414
- msgstr ""
2415
-
2416
- #: ../addons/coupons/myCRED-addon-coupons.php:296 ../addons/coupons/myCRED-addon-
2417
- #: coupons.php:620
2418
- #, php-format
2419
- msgid "1 time"
2420
- msgid_plural "%d times"
2421
- msgstr[0] ""
2422
- msgstr[1] ""
2423
-
2424
- #: ../addons/coupons/myCRED-addon-coupons.php:453
2425
- msgid "Coupon Usage"
2426
- msgstr ""
2427
-
2428
- #: ../addons/coupons/myCRED-addon-coupons.php:536
2429
- msgid "The maximum number of times this coupon can be used."
2430
- msgstr ""
2431
-
2432
- #: ../addons/sell-content/myCRED-addon-sell-content.php:128
2433
- msgid "Sell Content Add-on Update Required"
2434
- msgstr ""
2435
-
2436
- #: ../addons/sell-content/myCRED-addon-sell-content.php:129
2437
- msgid "Before continuing to use this add-on you must setup and save your settings."
2438
- msgstr ""
2439
-
2440
- #: ../addons/sell-content/myCRED-addon-sell-content.php:214 ../addons/sell-
2441
- #: content/myCRED-addon-sell-content.php:434
2442
- msgid "Profit Share"
2443
- msgstr ""
2444
-
2445
- #: ../addons/sell-content/myCRED-addon-sell-content.php:297
2446
- msgid "Select all the post types you want to sell."
2447
- msgstr ""
2448
-
2449
- #: ../addons/sell-content/myCRED-addon-sell-content.php:313
2450
- msgid "You must select at least one post type to sell."
2451
- msgstr ""
2452
-
2453
- #: ../addons/sell-content/myCRED-addon-sell-content.php:367
2454
- msgid "Select all the point types accepted as payment."
2455
- msgstr ""
2456
-
2457
- #: ../addons/sell-content/myCRED-addon-sell-content.php:386
2458
- msgid "You must select at least one point type to accept as payment."
2459
- msgstr ""
2460
-
2461
- #: ../addons/sell-content/myCRED-addon-sell-content.php:429 ../addons/sell-
2462
- #: content/myCRED-addon-sell-content.php:837
2463
- msgid "Expiration"
2464
- msgstr ""
2465
-
2466
- #: ../addons/sell-content/myCRED-addon-sell-content.php:430 ../addons/sell-
2467
- #: content/myCRED-addon-sell-content.php:777 ../addons/sell-
2468
- #: content/includes/mycred-sell-shortcodes.php:181
2469
- msgid "Hour(s)"
2470
- msgstr ""
2471
-
2472
- #: ../addons/sell-content/myCRED-addon-sell-content.php:443
2473
- #, php-format
2474
- msgid "Use %price% to show the price set for each post."
2475
- msgstr ""
2476
-
2477
- #: ../addons/sell-content/myCRED-addon-sell-content.php:446
2478
- msgid "Button CSS Classes"
2479
- msgstr ""
2480
-
2481
- #: ../addons/sell-content/myCRED-addon-sell-content.php:452
2482
- msgid "Payment log entry template"
2483
- msgstr ""
2484
-
2485
- #: ../addons/sell-content/myCRED-addon-sell-content.php:457
2486
- msgid "Profit Share payout log entry template"
2487
- msgstr ""
2488
-
2489
- #: ../addons/sell-content/myCRED-addon-sell-content.php:459
2490
- msgid "Only used if profit sharing is enabled for this point type."
2491
- msgstr ""
2492
-
2493
- #: ../addons/sell-content/myCRED-addon-sell-content.php:470
2494
- msgid "Transactions"
2495
- msgstr ""
2496
-
2497
- #: ../addons/sell-content/myCRED-addon-sell-content.php:473
2498
- msgid "Reload page after successful payments."
2499
- msgstr ""
2500
-
2501
- #: ../addons/sell-content/myCRED-addon-sell-content.php:478
2502
- msgid ""
2503
- "Option to show a custom button label while the payment is being processed. "
2504
- "HTML is allowed."
2505
- msgstr ""
2506
-
2507
- #: ../addons/sell-content/myCRED-addon-sell-content.php:484
2508
- msgid "Members"
2509
- msgstr ""
2510
-
2511
- #: ../addons/sell-content/myCRED-addon-sell-content.php:485
2512
- msgid ""
2513
- "The template to use when a content is viewed by a member that is logged in "
2514
- "and can afford to pay. Only applied to content that is set for sale."
2515
- msgstr ""
2516
-
2517
- #: ../addons/sell-content/myCRED-addon-sell-content.php:502
2518
- msgid ""
2519
- "The template to use when a content is viewed by someone who is not logged in."
2520
- " Only applied to content that is set for sale."
2521
- msgstr ""
2522
-
2523
- #: ../addons/sell-content/myCRED-addon-sell-content.php:520
2524
- msgid ""
2525
- "The template to use when a content is viewed by a member that is logged but "
2526
- "can not afford to buy. Only applied to content that is set for sale."
2527
- msgstr ""
2528
-
2529
- #: ../addons/sell-content/myCRED-addon-sell-content.php:814
2530
- msgid "Never expires"
2531
- msgstr ""
2532
-
2533
- #: ../addons/sell-content/myCRED-addon-sell-content.php:823
2534
- #, php-format
2535
- msgid "Sell using %s"
2536
- msgstr ""
2537
-
2538
- #: ../addons/sell-content/includes/mycred-sell-functions.php:492
2539
- #, php-format
2540
- msgctxt "Point type name"
2541
- msgid "You can not pay using %s"
2542
- msgstr ""
2543
-
2544
- #: ../addons/sell-content/includes/mycred-sell-functions.php:752
2545
- #, php-format
2546
- msgctxt "all post type name"
2547
- msgid "All %s"
2548
- msgstr ""
2549
-
2550
- #: ../addons/sell-content/includes/mycred-sell-functions.php:756
2551
- #, php-format
2552
- msgctxt "all post type name"
2553
- msgid "%s I manually select"
2554
- msgstr ""
2555
-
2556
- #: ../addons/sell-content/includes/mycred-sell-functions.php:760
2557
- #, php-format
2558
- msgctxt "%s = post type name"
2559
- msgid "All %s except"
2560
- msgstr ""
2561
-
2562
- #: ../addons/sell-content/includes/mycred-sell-functions.php:761
2563
- #, php-format
2564
- msgctxt "%s = post type name"
2565
- msgid "Comma separated list of %s IDs to exclude"
2566
- msgstr ""
2567
-
2568
- #: ../addons/sell-content/includes/mycred-sell-functions.php:764
2569
- #, php-format
2570
- msgctxt "%s = post type name"
2571
- msgid "Only %s"
2572
- msgstr ""
2573
-
2574
- #: ../addons/sell-content/includes/mycred-sell-functions.php:765
2575
- #, php-format
2576
- msgctxt "%s = post type name"
2577
- msgid "Comma separated list of %s IDs"
2578
- msgstr ""
2579
-
2580
- #: ../addons/sell-content/includes/mycred-sell-functions.php:777
2581
- #, php-format
2582
- msgctxt "e.g. Only \"Posts\" in \"Categories\""
2583
- msgid "Only %s in %s"
2584
- msgstr ""
2585
-
2586
- #: ../addons/sell-content/includes/mycred-sell-functions.php:778 ../addons/sell-
2587
- #: content/includes/mycred-sell-functions.php:782 ../addons/sell-
2588
- #: content/includes/mycred-sell-functions.php:788 ../addons/sell-
2589
- #: content/includes/mycred-sell-functions.php:792
2590
- #, php-format
2591
- msgctxt "%s = taxonomy name"
2592
- msgid "Comma separated list of %s slugs"
2593
- msgstr ""
2594
-
2595
- #: ../addons/sell-content/includes/mycred-sell-functions.php:781
2596
- #, php-format
2597
- msgctxt "e.g. Only \"Posts\" not in \"Categories\""
2598
- msgid "Only %s not in %s"
2599
- msgstr ""
2600
-
2601
- #: ../addons/sell-content/includes/mycred-sell-functions.php:787
2602
- #, php-format
2603
- msgctxt "e.g. Only \"Posts\" with \"Tags\""
2604
- msgid "Only %s with %s"
2605
- msgstr ""
2606
-
2607
- #: ../addons/sell-content/includes/mycred-sell-functions.php:791
2608
- #, php-format
2609
- msgctxt "e.g. Only \"Posts\" without \"Tags\""
2610
- msgid "Only %s without %s"
2611
- msgstr ""
2612
-
2613
- #: ../addons/sell-content/includes/mycred-sell-shortcodes.php:233
2614
- #, php-format
2615
- msgctxt "e.g. 10 hours"
2616
- msgid "Purchase expires in %s"
2617
- msgstr ""
2618
-
2619
- #: ../addons/buy-creds/abstracts/mycred-abstract-payment-gateway.php:218
2620
- #, php-format
2621
- msgctxt "%s is replaced with the point amount and name."
2622
- msgid "Received new request to purchase %s."
2623
- msgstr ""
2624
-
2625
- #: ../addons/buy-creds/abstracts/mycred-abstract-payment-gateway.php:552
2626
- msgid "First Name"
2627
- msgstr ""
2628
-
2629
- #: ../addons/buy-creds/abstracts/mycred-abstract-payment-gateway.php:558
2630
- msgid "Last Name"
2631
- msgstr ""
2632
-
2633
- #: ../addons/buy-creds/abstracts/mycred-abstract-payment-gateway.php:566
2634
- msgid "Address Line 1"
2635
- msgstr ""
2636
-
2637
- #: ../addons/buy-creds/abstracts/mycred-abstract-payment-gateway.php:574
2638
- msgid "Address Line 2"
2639
- msgstr ""
2640
-
2641
- #: ../addons/buy-creds/abstracts/mycred-abstract-payment-gateway.php:582
2642
- msgid "City"
2643
- msgstr ""
2644
-
2645
- #: ../addons/buy-creds/abstracts/mycred-abstract-payment-gateway.php:588
2646
- msgid "Zip"
2647
- msgstr ""
2648
-
2649
- #: ../addons/buy-creds/abstracts/mycred-abstract-payment-gateway.php:596
2650
- msgid "State"
2651
- msgstr ""
2652
-
2653
- #: ../addons/buy-creds/abstracts/mycred-abstract-payment-gateway.php:604
2654
- msgid "Country"
2655
- msgstr ""
2656
-
2657
- #: ../addons/buy-creds/abstracts/mycred-abstract-payment-gateway.php:609
2658
- msgid "Choose Country"
2659
- msgstr ""
2660
-
2661
- #: ../addons/buy-creds/abstracts/mycred-abstract-payment-gateway.php:667
2662
- msgctxt "buyCRED order description"
2663
- msgid "Item"
2664
- msgstr ""
2665
-
2666
- #: ../addons/buy-creds/abstracts/mycred-abstract-payment-gateway.php:1477
2667
- msgid "January"
2668
- msgstr ""
2669
-
2670
- #: ../addons/buy-creds/abstracts/mycred-abstract-payment-gateway.php:1478
2671
- msgid "February"
2672
- msgstr ""
2673
-
2674
- #: ../addons/buy-creds/abstracts/mycred-abstract-payment-gateway.php:1479
2675
- msgid "March"
2676
- msgstr ""
2677
-
2678
- #: ../addons/buy-creds/abstracts/mycred-abstract-payment-gateway.php:1480
2679
- msgid "April"
2680
- msgstr ""
2681
-
2682
- #: ../addons/buy-creds/abstracts/mycred-abstract-payment-gateway.php:1481
2683
- msgid "May"
2684
- msgstr ""
2685
-
2686
- #: ../addons/buy-creds/abstracts/mycred-abstract-payment-gateway.php:1482
2687
- msgid "June"
2688
- msgstr ""
2689
-
2690
- #: ../addons/buy-creds/abstracts/mycred-abstract-payment-gateway.php:1483
2691
- msgid "July"
2692
- msgstr ""
2693
-
2694
- #: ../addons/buy-creds/abstracts/mycred-abstract-payment-gateway.php:1484
2695
- msgid "August"
2696
- msgstr ""
2697
-
2698
- #: ../addons/buy-creds/abstracts/mycred-abstract-payment-gateway.php:1485
2699
- msgid "September"
2700
- msgstr ""
2701
-
2702
- #: ../addons/buy-creds/abstracts/mycred-abstract-payment-gateway.php:1486
2703
- msgid "October"
2704
- msgstr ""
2705
-
2706
- #: ../addons/buy-creds/abstracts/mycred-abstract-payment-gateway.php:1487
2707
- msgid "November"
2708
- msgstr ""
2709
-
2710
- #: ../addons/buy-creds/abstracts/mycred-abstract-payment-gateway.php:1488
2711
- msgid "December"
2712
- msgstr ""
2713
-
2714
- #: ../addons/buy-creds/modules/buycred-module-pending.php:135
2715
- msgctxt "Post Type General Name"
2716
- msgid "Pending Payments"
2717
- msgstr ""
2718
-
2719
- #: ../addons/buy-creds/modules/buycred-module-pending.php:136
2720
- msgctxt "Post Type Singular Name"
2721
- msgid "Pending Payment"
2722
- msgstr ""
2723
-
2724
- #: ../addons/buy-creds/modules/buycred-module-pending.php:137 ../addons/buy-
2725
- #: creds/modules/buycred-module-pending.php:139 ../addons/buy-
2726
- #: creds/modules/buycred-module-pending.php:229 ../addons/buy-
2727
- #: creds/modules/buycred-module-pending.php:230
2728
- msgid "Pending Payments"
2729
- msgstr ""
2730
-
2731
- #: ../addons/buy-creds/modules/buycred-module-pending.php:143
2732
- msgid "Edit Pending Payment"
2733
- msgstr ""
2734
-
2735
- #: ../addons/buy-creds/modules/buycred-module-pending.php:146 ../addons/buy-
2736
- #: creds/modules/buycred-module-pending.php:147
2737
- msgid "Not found in Trash"
2738
- msgstr ""
2739
-
2740
- #: ../addons/buy-creds/modules/buycred-module-pending.php:177 ../addons/buy-
2741
- #: creds/modules/buycred-module-pending.php:178 ../addons/buy-
2742
- #: creds/modules/buycred-module-pending.php:179 ../addons/buy-
2743
- #: creds/modules/buycred-module-pending.php:180 ../addons/buy-
2744
- #: creds/modules/buycred-module-pending.php:181 ../addons/buy-
2745
- #: creds/modules/buycred-module-pending.php:182 ../addons/buy-
2746
- #: creds/modules/buycred-module-pending.php:183 ../addons/buy-
2747
- #: creds/modules/buycred-module-pending.php:184 ../addons/buy-
2748
- #: creds/modules/buycred-module-pending.php:185
2749
- msgid "Payment Updated."
2750
- msgstr ""
2751
-
2752
- #: ../addons/buy-creds/modules/buycred-module-pending.php:213
2753
- msgid "Pending payment successfully credited to account."
2754
- msgstr ""
2755
-
2756
- #: ../addons/buy-creds/modules/buycred-module-pending.php:215
2757
- msgid "Failed to credit the pending payment to account."
2758
- msgstr ""
2759
-
2760
- #: ../addons/buy-creds/modules/buycred-module-pending.php:265 ../addons/buy-
2761
- #: creds/modules/buycred-module-core.php:729
2762
- msgid "Buyer"
2763
- msgstr ""
2764
-
2765
- #: ../addons/buy-creds/modules/buycred-module-pending.php:269
2766
- msgid "Type"
2767
- msgstr ""
2768
-
2769
- #: ../addons/buy-creds/modules/buycred-module-pending.php:366 ../addons/buy-
2770
- #: creds/modules/buycred-module-pending.php:471
2771
- msgid "Pay Out"
2772
- msgstr ""
2773
-
2774
- #: ../addons/buy-creds/modules/buycred-module-pending.php:434
2775
- msgid "Pending Payment"
2776
- msgstr ""
2777
-
2778
- #: ../addons/buy-creds/modules/buycred-module-pending.php:472
2779
- msgid "Trash"
2780
- msgstr ""
2781
-
2782
- #: ../addons/buy-creds/modules/buycred-module-pending.php:536
2783
- msgid "Payer"
2784
- msgstr ""
2785
-
2786
- #: ../addons/buy-creds/modules/buycred-module-pending.php:645
2787
- msgid "Pending request created."
2788
- msgstr ""
2789
-
2790
- #: ../addons/buy-creds/modules/buycred-module-pending.php:693
2791
- #, php-format
2792
- msgid "Pending payment updated by %s"
2793
- msgstr ""
2794
-
2795
- #: ../addons/buy-creds/modules/buycred-module-pending.php:791
2796
- msgid "No pending payments found"
2797
- msgstr ""
2798
-
2799
- #: ../addons/buy-creds/modules/buycred-module-core.php:133
2800
- msgid "Bank Transfer"
2801
- msgstr ""
2802
-
2803
- #: ../addons/buy-creds/modules/buycred-module-core.php:315
2804
- msgid "Select the point types that users can buy. You must select at least one!"
2805
- msgstr ""
2806
-
2807
- #: ../addons/buy-creds/modules/buycred-module-core.php:591
2808
- msgid "More Gateways"
2809
- msgstr ""
2810
-
2811
- #: ../addons/buy-creds/modules/buycred-module-core.php:1029 ../addons/buy-
2812
- #: creds/modules/buycred-module-core.php:1043
2813
- msgid "buyCRED Exchange Rates"
2814
- msgstr ""
2815
-
2816
- #: ../addons/buy-creds/modules/buycred-module-core.php:1059
2817
- msgid "Leave empty to use the default value."
2818
- msgstr ""
2819
-
2820
- #: ../addons/buy-creds/modules/buycred-module-core.php:1428
2821
- msgid "Pay Using"
2822
- msgstr ""
2823
-
2824
- #: ../addons/buy-creds/gateways/bank-transfer.php:139
2825
- msgid "Continue"
2826
- msgstr ""
2827
-
2828
- #: ../addons/buy-creds/gateways/bank-transfer.php:167
2829
- msgid "Checkout Logo"
2830
- msgstr ""
2831
-
2832
- #: ../addons/buy-creds/gateways/bank-transfer.php:173
2833
- msgid "Bank Account Information"
2834
- msgstr ""
2835
-
2836
- #: ../addons/buy-creds/gateways/bank-transfer.php:177
2837
- msgid "Bank transfer details to show the user on the checkout page."
2838
- msgstr ""
2839
-
2840
- #: ../addons/buy-creds/gateways/bank-transfer.php:186 ../addons/buy-
2841
- #: creds/gateways/bitpay.php:265 ../addons/buy-creds/gateways/netbilling.php:234 .
2842
- #: ./addons/buy-creds/gateways/paypal-standard.php:298 ../addons/buy-
2843
- #: creds/gateways/skrill.php:320
2844
- msgid "Exchange Rates"
2845
- msgstr ""
2846
-
2847
- #: ../addons/buy-creds/gateways/bitpay.php:62 ../addons/buy-
2848
- #: creds/gateways/netbilling.php:92 ../addons/buy-creds/gateways/paypal-standard.
2849
- #: php:145 ../addons/buy-creds/gateways/skrill.php:124
2850
- #, php-format
2851
- msgid "Price mismatch. Expected: %s Received: %s"
2852
- msgstr ""
2853
-
2854
- #: ../addons/buy-creds/gateways/bitpay.php:68 ../addons/buy-creds/gateways/paypal-
2855
- #: standard.php:151 ../addons/buy-creds/gateways/skrill.php:130
2856
- #, php-format
2857
- msgid "Currency mismatch. Expected: %s Received: %s"
2858
- msgstr ""
2859
-
2860
- #: ../addons/buy-creds/gateways/bitpay.php:74 ../addons/buy-
2861
- #: creds/gateways/netbilling.php:98 ../addons/buy-creds/gateways/paypal-standard.
2862
- #: php:157 ../addons/buy-creds/gateways/skrill.php:136
2863
- #, php-format
2864
- msgid "Payment not completed. Received: %s"
2865
- msgstr ""
2866
-
2867
- #: ../addons/buy-creds/gateways/bitpay.php:85 ../addons/buy-
2868
- #: creds/gateways/netbilling.php:109 ../addons/buy-creds/gateways/zombaio.php:189
2869
- #: ../addons/buy-creds/gateways/paypal-standard.php:168 ../addons/buy-
2870
- #: creds/gateways/skrill.php:147
2871
- msgid "Failed to credit users account."
2872
- msgstr ""
2873
-
2874
- #: ../addons/buy-creds/gateways/zombaio.php:155
2875
- #, php-format
2876
- msgid "Duplicate transaction. Received: %s"
2877
- msgstr ""
2878
-
2879
- #: ../addons/buy-creds/gateways/zombaio.php:161
2880
- #, php-format
2881
- msgid "Live transaction while debug mode is enabled! Received: %s"
2882
- msgstr ""
2883
-
2884
- #: ../addons/buy-creds/gateways/paypal-standard.php:256
2885
- #, php-format
2886
- msgctxt "Return label. %s = Website name"
2887
- msgid "Return to %s"
2888
- msgstr ""
2889
-
2890
- #: ../abstracts/mycred-abstract-hook.php:90
2891
- msgid "This Hook has no settings"
2892
- msgstr "Este gancho no ha sido configurado"
2893
-
2894
- #: ../abstracts/mycred-abstract-hook.php:283 ../abstracts/mycred-abstract-hook.
2895
- #: php:354 ../modules/mycred-module-hooks.php:2401 ../includes/mycred-functions.
2896
- #: php:2563
2897
- msgid "No limit"
2898
- msgstr "Sin Limite"
2899
-
2900
- #: ../abstracts/mycred-abstract-hook.php:355
2901
- msgid "Once every 24 hours"
2902
- msgstr "Una vez cada 24 horas"
2903
-
2904
- #: ../abstracts/mycred-abstract-hook.php:356
2905
- msgid "Once every 7 days"
2906
- msgstr "Una vez cada 7 dias"
2907
-
2908
- #: ../abstracts/mycred-abstract-hook.php:357
2909
- msgid "Once per day (reset at midnight)"
2910
- msgstr "Una vez al dia (reinicializado al medianoche)"
2911
-
2912
- #: ../abstracts/mycred-abstract-hook.php:364 ../addons/banking/abstracts/mycred-
2913
- #: abstract-service.php:351 ../addons/email-notices/myCRED-addon-email-notices.
2914
- #: php:527 ../addons/email-notices/myCRED-addon-email-notices.php:859 ..
2915
- #: addons/badges/myCRED-addon-badges.php:880 ../addons/buy-
2916
- #: creds/abstracts/mycred-abstract-payment-gateway.php:1102 ../addons/buy-
2917
- #: creds/abstracts/mycred-abstract-payment-gateway.php:1127 ../addons/buy-
2918
- #: creds/modules/buycred-module-core.php:356 ../addons/buy-creds/modules/buycred-
2919
- #: module-core.php:379 ../addons/buy-creds/gateways/zombaio.php:358
2920
- msgid "Select"
2921
- msgstr "Seleccionar"
2922
-
2923
- #: ../abstracts/mycred-abstract-module.php:400 ../abstracts/mycred-abstract-
2924
- #: module.php:410
2925
- msgid "Surprise"
2926
- msgstr "Sorpresa"
2927
-
2928
- #: ../abstracts/mycred-abstract-module.php:528 ../modules/mycred-module-network.
2929
- #: php:98
2930
- msgid "click to close"
2931
- msgstr "haga clic para cerrar"
2932
-
2933
- #: ../abstracts/mycred-abstract-module.php:529 ../modules/mycred-module-network.
2934
- #: php:99
2935
- msgid "click to open"
2936
- msgstr "haga clic para abrir"
2937
-
2938
- #: ../abstracts/mycred-abstract-module.php:562 ../modules/mycred-module-network.
2939
- #: php:155 ../addons/gateway/event-booking/mycred-eventespresso3.php:451 ..
2940
- #: addons/email-notices/myCRED-addon-email-notices.php:1469 ../addons/buy-
2941
- #: creds/modules/buycred-module-core.php:538
2942
- msgid "Settings Updated"
2943
- msgstr "Configuraciones Actualizadas"
2944
-
2945
- #: ../modules/mycred-module-management.php:99
2946
- msgid "Update Balance"
2947
- msgstr "Actualizar Saldo"
2948
-
2949
- #: ../modules/mycred-module-management.php:112
2950
- msgid "User is excluded"
2951
- msgstr "El Usuario ha sido excluido"
2952
-
2953
- #: ../modules/mycred-module-management.php:120
2954
- msgid "Log Entry can not be empty"
2955
- msgstr "Entrada de registro no puede estar vacío"
2956
-
2957
- #: ../modules/mycred-module-management.php:128 ../modules/mycred-module-log.php:225
2958
- msgid "Amount can not be zero"
2959
- msgstr "La Cantidad no Puede ser Cero"
2960
-
2961
- #: ../modules/mycred-module-management.php:233 ../modules/mycred-module-log.php:
2962
- #: 94 ../modules/mycred-module-log.php:910 ../includes/classes/class.query-export.
2963
- #: php:263 ../includes/classes/class.query-export.php:399 ..
2964
- #: includes/classes/class.query-log.php:370 ../includes/classes/class.query-log.
2965
- #: php:380 ../addons/banking/services/mycred-service-payouts.php:738 ..
2966
- #: addons/sell-content/includes/mycred-sell-shortcodes.php:185 ../addons/buy-
2967
- #: creds/modules/buycred-module-core.php:730
2968
- msgid "Date"
2969
- msgstr "Fecha"
2970
-
2971
- #: ../modules/mycred-module-management.php:234 ../addons/banking/services/mycred-
2972
- #: service-interest.php:435 ../addons/banking/services/mycred-service-interest.
2973
- #: php:460 ../addons/banking/services/mycred-service-payouts.php:744
2974
- msgid "Time"
2975
- msgstr "Tiempo"
2976
-
2977
- #. need more context: entrada or inscripción
2978
- #: ../modules/mycred-module-management.php:236 ../modules/mycred-module-log.php:
2979
- #: 96 ../includes/classes/class.query-export.php:263 ../includes/classes/class.
2980
- #: query-export.php:406 ../includes/classes/class.query-log.php:372 ..
2981
- #: includes/classes/class.query-log.php:382
2982
- msgid "Entry"
2983
- msgstr "Entrada"
2984
-
2985
- #: ../modules/mycred-module-management.php:310
2986
- msgid "Edit Users Balance"
2987
- msgstr "Editar saldo del usuario"
2988
-
2989
- #: ../modules/mycred-module-management.php:311 ../modules/mycred-module-settings.
2990
- #: php:431 ../modules/mycred-module-log.php:465 ../modules/mycred-module-hooks.
2991
- #: php:306 ../modules/mycred-module-hooks.php:420 ../addons/banking/myCRED-addon-
2992
- #: banking.php:204
2993
- msgid "Close"
2994
- msgstr "Cerrar"
2995
-
2996
- #: ../modules/mycred-module-management.php:312 ../modules/mycred-module-settings.
2997
- #: php:426 ../modules/mycred-module-log.php:466 ../mycred.php:632 ..
2998
- #: addons/gateway/event-booking/mycred-eventsmanager.php:478 ..
2999
- #: addons/transfer/myCRED-addon-transfer.php:140 ../addons/ranks/myCRED-addon-
3000
- #: ranks.php:955 ../addons/ranks/myCRED-addon-ranks.php:1535 ..
3001
- #: addons/badges/myCRED-addon-badges.php:702
3002
- msgid "Processing..."
3003
- msgstr "Procesando..."
3004
-
3005
- #: ../modules/mycred-module-management.php:449
3006
- msgid "Excluded"
3007
- msgstr "Excluido"
3008
-
3009
- #: ../modules/mycred-module-management.php:459 ../modules/mycred-module-hooks.php:
3010
- #: 3129 ../addons/coupons/myCRED-addon-coupons.php:307
3011
- msgid "Total"
3012
- msgstr "Total"
3013
-
3014
- #: ../modules/mycred-module-management.php:469 ../modules/mycred-module-log.php:
3015
- #: 282 ../modules/mycred-module-log.php:283 ../mycred.php:931 ../addons/buy-
3016
- #: creds/modules/buycred-module-pending.php:437
3017
- msgid "History"
3018
- msgstr "Historial"
3019
-
3020
- #: ../modules/mycred-module-management.php:470
3021
- msgid "Adjust"
3022
- msgstr "Modificar"
3023
-
3024
- #: ../modules/mycred-module-management.php:535 ../modules/mycred-module-
3025
- #: management.php:538 ../mycred.php:864 ../addons/transfer/myCRED-addon-transfer.
3026
- #: php:495 ../addons/transfer/includes/mycred-transfer-shortcodes.php:33
3027
- msgid "Balance"
3028
- msgstr "Saldo"
3029
-
3030
- #: ../modules/mycred-module-management.php:617 ../addons/banking/services/mycred-
3031
- #: service-payouts.php:551
3032
- msgid "ID"
3033
- msgstr "ID"
3034
-
3035
- #: ../modules/mycred-module-management.php:629 ../addons/gateway/event-
3036
- #: booking/mycred-eventespresso3.php:307 ../addons/gateway/event-booking/mycred-
3037
- #: eventespresso3.php:332 ../addons/gateway/event-booking/mycred-eventsmanager.
3038
- #: php:412 ../addons/gateway/carts/mycred-marketpress.php:158
3039
- msgid "Current Balance"
3040
- msgstr "Saldo Actual"
3041
-
3042
- #: ../modules/mycred-module-management.php:644 ../plugins/mycred-hook-affiliatewp.
3043
- #: php:260 ../includes/shortcodes/mycred_exchange.php:69 ..
3044
- #: includes/shortcodes/mycred_hook_table.php:80 ../includes/classes/class.query-
3045
- #: export.php:263 ../includes/classes/class.query-export.php:383 ..
3046
- #: addons/transfer/includes/mycred-transfer-widgets.php:97 ..
3047
- #: addons/transfer/includes/mycred-transfer-shortcodes.php:32 ../addons/buy-
3048
- #: creds/abstracts/mycred-abstract-payment-gateway.php:668 ../addons/buy-
3049
- #: creds/modules/buycred-module-pending.php:266 ../addons/buy-
3050
- #: creds/modules/buycred-module-pending.php:608 ../addons/buy-
3051
- #: creds/modules/buycred-module-pending.php:726
3052
- msgid "Amount"
3053
- msgstr "Cantidad"
3054
-
3055
- #: ../modules/mycred-module-management.php:646
3056
- msgid "A positive or negative value"
3057
- msgstr "Un valor positivo o negativo"
3058
-
3059
- #: ../modules/mycred-module-management.php:672 ../modules/mycred-module-log.php:
3060
- #: 929 ../addons/gateway/event-booking/mycred-eventespresso3.php:518
3061
- msgid "Log Entry"
3062
- msgstr "Entrada de Registro"
3063
-
3064
- #: ../modules/mycred-module-management.php:673
3065
- msgid "optional"
3066
- msgstr "opcional"
3067
-
3068
- #: ../modules/mycred-module-settings.php:21 ../modules/mycred-module-settings.php:
3069
- #: 22 ../modules/mycred-module-settings.php:23 ../modules/mycred-module-network.
3070
- #: php:164 ../mycred.php:989 ../addons/gateway/carts/mycred-marketpress.php:409 ..
3071
- #: addons/stats/abstracts/mycred-abstract-stat-widget.php:106 ../addons/buy-
3072
- #: creds/modules/buycred-module-core.php:533
3073
- msgid "Settings"
3074
- msgstr "Configuraciones"
3075
-
3076
- #: ../modules/mycred-module-settings.php:138
3077
- msgid "Accounts successfully reset"
3078
- msgstr "Las cuentas fueron reiniciadas con éxito."
3079
-
3080
- #: ../modules/mycred-module-settings.php:190
3081
- msgid "No users found to export"
3082
- msgstr "No se encontro usuarios para exportar"
3083
-
3084
- #: ../modules/mycred-module-settings.php:427
3085
- msgid ""
3086
- "Warning! All entries in your log will be permanently removed! This can not "
3087
- "be undone!"
3088
- msgstr ""
3089
- "¡Aviso! Todas las entradas en su registro seran permanentemente borrado! "
3090
- "¡Esto no se puede deshacer!"
3091
-
3092
- #: ../modules/mycred-module-settings.php:428
3093
- msgid ""
3094
- "All log entries belonging to deleted users will be permanently deleted! This "
3095
- "can not be undone!"
3096
- msgstr ""
3097
- "¡Todas las entradas de registro perteneciendo al usuario seran "
3098
- "permanentemente borradas! ¡Esto no se puede deshacer!"
3099
-
3100
- #: ../modules/mycred-module-settings.php:429
3101
- msgid "Warning! All user balances will be set to zero! This can not be undone!"
3102
- msgstr ""
3103
- "¡Aviso! ¡Todo los saldos del usuario seran puesto a cero! ¡Esto no se puede "
3104
- "deshacer!"
3105
-
3106
- #: ../modules/mycred-module-settings.php:430
3107
- msgid "Done!"
3108
- msgstr "¡Realizado!"
3109
-
3110
- #: ../modules/mycred-module-settings.php:432
3111
- #, php-format
3112
- msgid "Export users %plural%"
3113
- msgstr "Exportar usuarios %plural%"
3114
-
3115
- #: ../modules/mycred-module-settings.php:529
3116
- #, php-format
3117
- msgid "%s Settings"
3118
- msgstr "Configuración de %s"
3119
-
3120
- #: ../modules/mycred-module-settings.php:538
3121
- msgid "Core Settings"
3122
- msgstr "Ajustes Basicos"
3123
-
3124
- #: ../modules/mycred-module-settings.php:543 ../includes/mycred-setup.php:275 ..
3125
- #: addons/gateway/event-booking/mycred-eventespresso3.php:460 ..
3126
- #: addons/gateway/event-booking/mycred-eventsmanager.php:602 ..
3127
- #: addons/gateway/event-booking/mycred-eventsmanager-pro.php:686
3128
- msgid "Labels"
3129
- msgstr "Etiquetas"
3130
-
3131
- #: ../modules/mycred-module-settings.php:561 ../includes/mycred-setup.php:293
3132
- msgid "Format"
3133
- msgstr "Formato"
3134
-
3135
- #: ../modules/mycred-module-settings.php:565 ../includes/mycred-setup.php:297
3136
- msgid "Prefix"
3137
- msgstr "Prefijo"
3138
-
3139
- #: ../modules/mycred-module-settings.php:571 ../includes/mycred-setup.php:303
3140
- msgid "Separators"
3141
- msgstr "Separadores"
3142
-
3143
- #: ../modules/mycred-module-settings.php:579 ../includes/mycred-setup.php:311
3144
- msgid "Decimals"
3145
- msgstr "Decimales"
3146
-
3147
- #: ../modules/mycred-module-settings.php:585 ../includes/mycred-setup.php:317
3148
- msgid "Suffix"
3149
- msgstr "Sufijo"
3150
-
3151
- #: ../modules/mycred-module-settings.php:592
3152
- msgid "Tip"
3153
- msgstr "Pista"
3154
-
3155
- #: ../modules/mycred-module-settings.php:599 ../includes/mycred-setup.php:328
3156
- msgid "Security"
3157
- msgstr "Seguridad"
3158
-
3159
- #: ../modules/mycred-module-settings.php:646
3160
- msgid "Delete log entries when user is deleted."
3161
- msgstr "Elimina las entradas de registro cuando se elimina el usuario."
3162
-
3163
- #: ../modules/mycred-module-settings.php:665
3164
- msgid "Management"
3165
- msgstr "Gestión"
3166
-
3167
- #: ../modules/mycred-module-settings.php:677 ../modules/mycred-module-log.php:433
3168
- msgid "Entries"
3169
- msgstr "Entradas"
3170
-
3171
- #: ../modules/mycred-module-settings.php:683 ../modules/mycred-module-settings.
3172
- #: php:708 ../addons/ranks/myCRED-addon-ranks.php:1624 ../addons/buy-
3173
- #: creds/modules/buycred-module-pending.php:443 ../addons/buy-
3174
- #: creds/modules/buycred-module-pending.php:729
3175
- msgid "Actions"
3176
- msgstr "Acciones"
3177
-
3178
- #: ../modules/mycred-module-settings.php:686
3179
- msgid "Empty Log"
3180
- msgstr "Registro Vacío"
3181
-
3182
- #: ../modules/mycred-module-settings.php:702 ../addons/ranks/myCRED-addon-ranks.
3183
- #: php:1045 ../addons/badges/myCRED-addon-badges.php:400
3184
- msgid "Users"
3185
- msgstr "Usuarios"
3186
-
3187
- #: ../modules/mycred-module-settings.php:710
3188
- msgid "Set all to zero"
3189
- msgstr "Ajusta todo a cero"
3190
-
3191
- #: ../modules/mycred-module-settings.php:727 ../includes/mycred-widgets.php:592 ..
3192
- #: addons/transfer/myCRED-addon-transfer.php:383 ..
3193
- #: addons/transfer/includes/mycred-transfer-widgets.php:109 ../addons/sell-
3194
- #: content/myCRED-addon-sell-content.php:365 ../addons/buy-creds/modules/buycred-
3195
- #: module-core.php:312
3196
- msgid "Point Types"
3197
- msgstr "Tipo de Puntos"
3198
-
3199
- #: ../modules/mycred-module-settings.php:741 ../modules/mycred-module-settings.
3200
- #: php:767 ../modules/mycred-module-settings.php:797
3201
- msgid "Meta Key"
3202
- msgstr "Clave Meta"
3203
-
3204
- #: ../modules/mycred-module-settings.php:747 ../modules/mycred-module-settings.
3205
- #: php:773 ../modules/mycred-module-settings.php:803 ..
3206
- #: addons/gateway/carts/mycred-woocommerce.php:159 ../addons/email-
3207
- #: notices/myCRED-addon-email-notices.php:575
3208
- msgid "Label"
3209
- msgstr "Etiqueta"
3210
-
3211
- #: ../modules/mycred-module-settings.php:754 ../modules/mycred-module-settings.
3212
- #: php:780 ../modules/mycred-module-hooks.php:306 ../modules/mycred-module-hooks.
3213
- #: php:420 ../includes/classes/class.query-log.php:492 ../includes/classes/class.
3214
- #: query-log.php:1076 ../addons/banking/services/mycred-service-payouts.php:470 ..
3215
- #: addons/gateway/event-booking/mycred-eventsmanager-pro.php:496
3216
- msgid "Delete"
3217
- msgstr "Borrar"
3218
-
3219
- #: ../modules/mycred-module-settings.php:793
3220
- msgid "Add New Type"
3221
- msgstr "Añadir Nuevo Tipo"
3222
-
3223
- #: ../modules/mycred-module-settings.php:821 ../addons/gateway/event-
3224
- #: booking/mycred-eventespresso3.php:551 ../addons/buy-creds/modules/buycred-
3225
- #: module-core.php:591
3226
- msgid "Update Settings"
3227
- msgstr "Actualizar Configuraciones"
3228
-
3229
- #: ../modules/mycred-module-settings.php:830
3230
- msgid "Identify users by"
3231
- msgstr "Identifique usuarios por"
3232
-
3233
- #: ../modules/mycred-module-settings.php:836
3234
- msgid "User ID"
3235
- msgstr "ID del Usuario"
3236
-
3237
- #: ../modules/mycred-module-settings.php:837
3238
- msgid "User Email"
3239
- msgstr "Email de Usuario"
3240
-
3241
- #: ../modules/mycred-module-settings.php:838
3242
- msgid "User Login"
3243
- msgstr "Ingreso de Usuario"
3244
-
3245
- #: ../modules/mycred-module-settings.php:846
3246
- msgid ""
3247
- "Use ID if you intend to use this export as a backup of your current site "
3248
- "while Email is recommended if you want to export to a different site."
3249
- msgstr ""
3250
- "Usa ID si deseas tener esta exportación como un respaldo de tu sitio, Usa "
3251
- "Email si deseas exportar la data a otro sitio"
3252
-
3253
- #: ../modules/mycred-module-settings.php:849
3254
- msgid "Import Log Entry"
3255
- msgstr "Importa la entrada de registro"
3256
-
3257
- #: ../modules/mycred-module-settings.php:851
3258
- #, php-format
3259
- msgid ""
3260
- "Optional log entry to use if you intend to import this file in a different "
3261
- "%s installation."
3262
- msgstr ""
3263
- "Usa la entrada de registro opcional si tiene la intención de importar este "
3264
- "fichero en otra instalación %s."
3265
-
3266
- #: ../modules/mycred-module-settings.php:854 ../modules/mycred-module-export.php:
3267
- #: 236 ../modules/mycred-module-export.php:263 ../modules/mycred-module-export.
3268
- #: php:313
3269
- msgid "Export"
3270
- msgstr "Exportar"
3271
-
3272
- #: ../modules/mycred-module-addons.php:25 ../modules/mycred-module-addons.php:26 .
3273
- #: ./includes/mycred-setup.php:171
3274
- msgid "Add-ons"
3275
- msgstr "Extensiones"
3276
-
3277
- #: ../modules/mycred-module-addons.php:184
3278
- msgid "Setup recurring payouts or offer / charge interest on user account balances."
3279
- msgstr ""
3280
- "Configura los pagos recurrentes u ofrecer / cobrar interés sobre los saldos "
3281
- "de las cuentas de usuarios."
3282
-
3283
- #: ../modules/mycred-module-addons.php:195
3284
- msgid ""
3285
- "The <strong>buy</strong>CRED Add-on allows your users to buy points using "
3286
- "PayPal, Skrill (Moneybookers) or NETbilling. <strong>buy</strong>CRED can "
3287
- "also let your users buy points for other members."
3288
- msgstr ""
3289
- "La Extensión <strong>compra</strong>CRED permite que tus usuarios compren "
3290
- "puntos utilizando PayPal, Skrill (Moneybookers) o NETbilling. "
3291
- "<strong>compra</strong>CRED tambien permite que tus usuarios compren puntos "
3292
- "para otros miembros."
3293
-
3294
- #: ../modules/mycred-module-addons.php:206
3295
- msgid ""
3296
- "The coupons add-on allows you to create coupons that users can use to add "
3297
- "points to their accounts."
3298
- msgstr ""
3299
- "Los cupones de add-on le permite crear cupones que los usuarios pueden "
3300
- "utilizar para agregar puntos a sus cuentas."
3301
-
3302
- #: ../modules/mycred-module-addons.php:217
3303
- msgid "Create email notices for any type of myCRED instance."
3304
- msgstr ""
3305
- "Crea avisos por correo electrónico para cualquier tipo de instancias de "
3306
- "myCRED."
3307
-
3308
- #: ../modules/mycred-module-addons.php:228
3309
- msgid ""
3310
- "Let your users pay using their <strong>my</strong>CRED points balance. "
3311
- "Supported Carts: WooCommerce, MarketPress and WP E-Commerce. Supported Event "
3312
- "Bookings: Event Espresso and Events Manager (free & pro)."
3313
- msgstr ""
3314
- "Permite que tus usuarios paguen utilizando el saldo de sus puntos "
3315
- "<strong>my</strong>CRED. Carritos soportados: WooCommerce, MarketPress and "
3316
- "WP E-Commerce. Reservas de Eventos soportados: Event Espresso and Events "
3317
- "Manager (gratis y pro)."
3318
-
3319
- #: ../modules/mycred-module-addons.php:239
3320
- msgid "Create pop-up notifications for when users gain or loose points."
3321
- msgstr "Crear notificaciones pop-up cuando los usuarios ganan o pierden puntos."
3322
-
3323
- #: ../modules/mycred-module-addons.php:251
3324
- msgid ""
3325
- "Create ranks for users reaching a certain number of %_plural% with the "
3326
- "option to add logos for each rank."
3327
- msgstr ""
3328
- "Crear rangos para los usuarios que alcanzan a un cierto número de %_plural% "
3329
- "con la opción de añadir logotipos para cada rango."
3330
-
3331
- #: ../modules/mycred-module-addons.php:262
3332
- msgid ""
3333
- "This add-on allows you to sell posts, pages or any public post types on your "
3334
- "website. You can either sell the entire content or using our shortcode, sell "
3335
- "parts of your content allowing you to offer \"teasers\"."
3336
- msgstr ""
3337
- "Esta extensión permite que vendas posts, páginas o cualquier tipo de "
3338
- "publicación en tu sitio web. Puedes venter contenidos enteros o utilizando "
3339
- "el código corto (shortcode), vender partes de tu contenido permitiendote "
3340
- "ofrecer \"avances\"."
3341
-
3342
- #: ../modules/mycred-module-addons.php:284
3343
- msgid ""
3344
- "Allow your users to send or \"donate\" points to other members by either using "
3345
- "the mycred_transfer shortcode or the myCRED Transfer widget."
3346
- msgstr ""
3347
- "Permite que los usuarios envien o \"donen\" puntos a otros miembros utilizando "
3348
- "el código corto (shortcode) de mycred_transfer o el widget de Transferencia "
3349
- "myCRED."
3350
-
3351
- #: ../modules/mycred-module-addons.php:328
3352
- #, php-format
3353
- msgid "%s Add-ons"
3354
- msgstr "%s Extensiones (addons)"
3355
-
3356
- #: ../modules/mycred-module-addons.php:335
3357
- msgid "Add-on Activated"
3358
- msgstr "Extensión Activado"
3359
-
3360
- #: ../modules/mycred-module-addons.php:338
3361
- msgid "Add-on Deactivated"
3362
- msgstr "Extensión Desactivado"
3363
-
3364
- #: ../modules/mycred-module-addons.php:406
3365
- msgid "Activate Add-on"
3366
- msgstr "Activar Extensión"
3367
-
3368
- #: ../modules/mycred-module-addons.php:407
3369
- msgid "Activate"
3370
- msgstr "Activar"
3371
-
3372
- #: ../modules/mycred-module-addons.php:413
3373
- msgid "Deactivate Add-on"
3374
- msgstr "Desactivar Extensión"
3375
-
3376
- #: ../modules/mycred-module-addons.php:414
3377
- msgid "Deactivate"
3378
- msgstr "Desactivar"
3379
-
3380
- #: ../modules/mycred-module-log.php:24 ../modules/mycred-module-log.php:25 ..
3381
- #: addons/gateway/event-booking/mycred-eventespresso3.php:515
3382
- msgid "Log"
3383
- msgstr "Registro"
3384
-
3385
- #: ../modules/mycred-module-log.php:92 ../modules/mycred-module-log.php:906 ..
3386
- #: includes/classes/class.query-export.php:263 ../includes/classes/class.query-
3387
- #: export.php:371 ../includes/classes/class.query-log.php:369 ..
3388
- #: includes/classes/class.query-log.php:378 ../addons/email-notices/myCRED-addon-
3389
- #: email-notices.php:332 ../addons/email-notices/myCRED-addon-email-notices.php:565
3390
- msgid "User"
3391
- msgstr "Usuario"
3392
-
3393
- #: ../modules/mycred-module-log.php:173
3394
- msgid "Row Deleted"
3395
- msgstr "Fila Borrado"
3396
-
3397
- #: ../modules/mycred-module-log.php:232
3398
- msgid "Log entry not found"
3399
- msgstr "No se encontro la entrada de registro "
3400
-
3401
- #: ../modules/mycred-module-log.php:464
3402
- msgid "Edit Log Entry"
3403
- msgstr "Edidar entrada de registro"
3404
-
3405
- #: ../modules/mycred-module-log.php:468
3406
- msgid "Are you sure you want to delete this log entry? This can not be undone!"
3407
- msgstr ""
3408
- "¿Esta seguro que quiere borrar esta entrada de registro? ¡Esto no se puede "
3409
- "deshacer!"
3410
-
3411
- #: ../modules/mycred-module-log.php:502
3412
- msgid "Search results for"
3413
- msgstr "Buscar entre resultados por"
3414
-
3415
- #: ../modules/mycred-module-log.php:554
3416
- #, php-format
3417
- msgid "%s Log"
3418
- msgstr "Registro de %s"
3419
-
3420
- #: ../modules/mycred-module-log.php:666
3421
- #, php-format
3422
- msgid "My %s History"
3423
- msgstr "Mi Historial de %s"
3424
-
3425
- #: ../modules/mycred-module-network.php:61 ../modules/mycred-module-network.php:
3426
- #: 62 ../addons/gateway/carts/mycred-woocommerce.php:29 ..
3427
- #: addons/gateway/carts/mycred-marketpress.php:274
3428
- msgid "myCRED"
3429
- msgstr "myCRED"
3430
-
3431
- #: ../modules/mycred-module-network.php:71 ../modules/mycred-module-network.php:72
3432
- msgid "Network Settings"
3433
- msgstr "Configuración de la Red"
3434
-
3435
- #: ../modules/mycred-module-network.php:135
3436
- #, php-format
3437
- msgid "%s Network"
3438
- msgstr "Red de %s"
3439
-
3440
- #: ../modules/mycred-module-network.php:151
3441
- #, php-format
3442
- msgid "Note! %s has not yet been setup."
3443
- msgstr "¡Aviso! %s no ha sido configurado."
3444
-
3445
- #: ../modules/mycred-module-network.php:158
3446
- #, php-format
3447
- msgid "Configure network settings for %s."
3448
- msgstr "Configure los parámetros de red para %s."
3449
-
3450
- #: ../modules/mycred-module-network.php:166
3451
- msgid "Master Template"
3452
- msgstr "Plantilla Principal"
3453
-
3454
- #: ../modules/mycred-module-network.php:170 ../modules/mycred-module-network.php:
3455
- #: 184 ../addons/buy-creds/gateways/bitpay.php:299
3456
- msgid "Yes"
3457
- msgstr "Sí"
3458
-
3459
- #: ../modules/mycred-module-network.php:174 ../modules/mycred-module-network.php:
3460
- #: 188 ../addons/buy-creds/gateways/bitpay.php:298
3461
- msgid "No"
3462
- msgstr "No"
3463
-
3464
- #: ../modules/mycred-module-network.php:177
3465
- #, php-format
3466
- msgid ""
3467
- "If enabled, %s will use your main site's settings for all other sites in "
3468
- "your network."
3469
- msgstr ""
3470
- "Si activado, %s utilizara la configuración de tu sitio principal para todas "
3471
- "los sitios en tu red."
3472
-
3473
- #: ../modules/mycred-module-network.php:180
3474
- msgid "Central Logging"
3475
- msgstr "Central de Registro"
3476
-
3477
- #: ../modules/mycred-module-network.php:191
3478
- #, php-format
3479
- msgid "If enabled, %s will log all site actions in your main site's log."
3480
- msgstr ""
3481
- "Si está activado, %s registrará todas las acciones en el registro de tu "
3482
- "sitio principal."
3483
-
3484
- #: ../modules/mycred-module-network.php:194
3485
- msgid "Site Block"
3486
- msgstr "Bloqueo de Sitio"
3487
-
3488
- #: ../modules/mycred-module-network.php:198
3489
- #, php-format
3490
- msgid "Comma separated list of blog ids where %s is to be disabled."
3491
- msgstr "Lista separada por comas de blog IDs donde %s se va a inhabilitar."
3492
-
3493
- #: ../modules/mycred-module-network.php:210
3494
- msgid "Save Network Settings"
3495
- msgstr "Guardar las Configuraciones de la Eed"
3496
-
3497
- #: ../modules/mycred-module-export.php:285 ../modules/mycred-module-export.php:
3498
- #: 332 ../includes/classes/class.query-log.php:1141
3499
- msgid ""
3500
- "Log entries are exported to a CSV file and depending on the number of "
3501
- "entries selected, the process may take a few seconds."
3502
- msgstr ""
3503
- "Se exporta las entradas de registro a un fichero CSV y dependiendo del "
3504
- "número de entradas seleccionadas, el proceso puede tardar unos segundos."
3505
-
3506
- #. also, "Inhabilitar"
3507
- #: ../modules/mycred-module-export.php:353 ../addons/sell-content/myCRED-addon-
3508
- #: sell-content.php:265
3509
- msgid "Disabled"
3510
- msgstr "Deshactivado"
3511
-
3512
- #: ../modules/mycred-module-export.php:354 ../addons/sell-content/myCRED-addon-
3513
- #: sell-content.php:266
3514
- msgid "Enabled"
3515
- msgstr "Habilitado"
3516
-
3517
- #: ../modules/mycred-module-export.php:400 ../modules/mycred-module-export.php:
3518
- #: 448 ../includes/importers/mycred-cubepoints.php:401 ../includes/classes/class.
3519
- #: query-export.php:263 ../includes/classes/class.query-export.php:391 ..
3520
- #: includes/mycred-widgets.php:195 ../includes/mycred-widgets.php:384 ..
3521
- #: addons/gateway/event-booking/mycred-eventespresso3.php:483 ..
3522
- #: addons/gateway/event-booking/mycred-eventsmanager.php:550 ..
3523
- #: addons/gateway/event-booking/mycred-eventsmanager-pro.php:611 ..
3524
- #: addons/gateway/carts/mycred-wpecommerce.php:383 ..
3525
- #: addons/gateway/carts/mycred-woocommerce.php:119 ..
3526
- #: addons/gateway/carts/mycred-marketpress.php:427 ../addons/ranks/myCRED-addon-
3527
- #: ranks.php:1048 ../addons/ranks/myCRED-addon-ranks.php:1218 ../addons/email-
3528
- #: notices/myCRED-addon-email-notices.php:276 ../addons/email-notices/myCRED-
3529
- #: addon-email-notices.php:582 ../addons/coupons/myCRED-addon-coupons.php:254 ..
3530
- #: addons/coupons/myCRED-addon-coupons.php:488 ../addons/buy-
3531
- #: creds/modules/buycred-module-pending.php:550 ../addons/buy-
3532
- #: creds/modules/buycred-module-pending.php:728
3533
- msgid "Point Type"
3534
- msgstr "Tipo de Puntos"
3535
-
3536
- #: ../modules/mycred-module-hooks.php:28 ../modules/mycred-module-hooks.php:29 ..
3537
- #: modules/mycred-module-hooks.php:30 ../addons/stats/abstracts/mycred-abstract-
3538
- #: stat-widget.php:103
3539
- msgid "Hooks"
3540
- msgstr "Ganchos"
3541
-
3542
- #: ../modules/mycred-module-hooks.php:76
3543
- #, php-format
3544
- msgid "%plural% for registrations"
3545
- msgstr "%plural% por inscripciones"
3546
-
3547
- #: ../modules/mycred-module-hooks.php:77
3548
- #, php-format
3549
- msgid "Award %_plural% for users joining your website."
3550
- msgstr "Concede %_plural% a usuarios para unirse a tu sitio de web."
3551
-
3552
- #: ../modules/mycred-module-hooks.php:97
3553
- #, php-format
3554
- msgid "%plural% for logins"
3555
- msgstr "%plural% para ingresos"
3556
-
3557
- #: ../modules/mycred-module-hooks.php:104
3558
- #, php-format
3559
- msgid "%plural% for publishing content"
3560
- msgstr "%plural% por publicar contenido"
3561
-
3562
- #: ../modules/mycred-module-hooks.php:118
3563
- #, php-format
3564
- msgid "%plural% for comments"
3565
- msgstr "%plural% por comentarios"
3566
-
3567
- #: ../modules/mycred-module-hooks.php:118
3568
- #, php-format
3569
- msgid "%plural% for Disqus comments"
3570
- msgstr "%plural% por comentarios Disqus"
3571
-
3572
- #: ../modules/mycred-module-hooks.php:119
3573
- #, php-format
3574
- msgid "Award %_plural% for making comments."
3575
- msgstr "Concede %_plural% por hacer comentarios."
3576
-
3577
- #: ../modules/mycred-module-hooks.php:125
3578
- #, php-format
3579
- msgid "%plural% for clicking on links"
3580
- msgstr "%plural% por hacer clic sobre enlaces"
3581
-
3582
- #: ../modules/mycred-module-hooks.php:132
3583
- #, php-format
3584
- msgid "%plural% for viewing Videos"
3585
- msgstr "%plural% por ver videos"
3586
-
3587
- #: ../modules/mycred-module-hooks.php:139
3588
- #, php-format
3589
- msgid "%plural% for referrals"
3590
- msgstr "%plural% por referencias (o recomendaciones)"
3591
-
3592
- #: ../modules/mycred-module-hooks.php:309 ../modules/mycred-module-hooks.php:423 .
3593
- #: ./addons/buy-creds/modules/buycred-module-pending.php:466
3594
- msgid "Save"
3595
- msgstr "Guardar"
3596
-
3597
- #: ../modules/mycred-module-hooks.php:344 ../addons/buy-creds/abstracts/mycred-
3598
- #: abstract-payment-gateway.php:455 ../addons/buy-creds/modules/buycred-module-
3599
- #: pending.php:711
3600
- msgid "Cancel"
3601
- msgstr "Cancelar"
3602
-
3603
- #: ../modules/mycred-module-hooks.php:751 ../modules/mycred-module-hooks.php:858 .
3604
- #: ./modules/mycred-module-hooks.php:1028 ../modules/mycred-module-hooks.php:1059
3605
- #: ../modules/mycred-module-hooks.php:1136 ../modules/mycred-module-hooks.php:
3606
- #: 1500 ../modules/mycred-module-hooks.php:1517 ../modules/mycred-module-hooks.
3607
- #: php:1566 ../modules/mycred-module-hooks.php:1755 ../modules/mycred-module-
3608
- #: hooks.php:1772 ../modules/mycred-module-hooks.php:1821 ../modules/mycred-
3609
- #: module-hooks.php:2273 ../modules/mycred-module-hooks.php:2290 ..
3610
- #: modules/mycred-module-hooks.php:2307 ../modules/mycred-module-hooks.php:3644 .
3611
- #: ./modules/mycred-module-hooks.php:3659 ../plugins/mycred-hook-invite-anyone.
3612
- #: php:211 ../plugins/mycred-hook-invite-anyone.php:232 ../plugins/mycred-hook-wp-
3613
- #: postratings.php:173 ../plugins/mycred-hook-wp-postratings.php:192 ..
3614
- #: plugins/mycred-hook-gravityforms.php:165 ../plugins/mycred-hook-simplepress.
3615
- #: php:309 ../plugins/mycred-hook-simplepress.php:322 ../plugins/mycred-hook-
3616
- #: simplepress.php:339 ../plugins/mycred-hook-simplepress.php:357 ..
3617
- #: plugins/mycred-hook-buddypress-gallery.php:116 ../plugins/mycred-hook-
3618
- #: buddypress.php:621 ../plugins/mycred-hook-buddypress.php:638 ../plugins/mycred-
3619
- #: hook-buddypress.php:655 ../plugins/mycred-hook-buddypress.php:672 ..
3620
- #: plugins/mycred-hook-buddypress.php:692 ../plugins/mycred-hook-buddypress.php:
3621
- #: 705 ../plugins/mycred-hook-buddypress.php:722 ../plugins/mycred-hook-
3622
- #: buddypress.php:735 ../plugins/mycred-hook-buddypress.php:752 ../plugins/mycred-
3623
- #: hook-buddypress.php:765 ../plugins/mycred-hook-buddypress.php:782 ..
3624
- #: plugins/mycred-hook-buddypress.php:799 ../plugins/mycred-hook-buddypress.php:
3625
- #: 1429 ../plugins/mycred-hook-buddypress.php:1442 ../plugins/mycred-hook-
3626
- #: buddypress.php:1459 ../plugins/mycred-hook-buddypress.php:1476 ..
3627
- #: plugins/mycred-hook-buddypress.php:1493 ../plugins/mycred-hook-buddypress.php:
3628
- #: 1510 ../plugins/mycred-hook-buddypress.php:1528 ../plugins/mycred-hook-
3629
- #: buddypress.php:1541 ../plugins/mycred-hook-buddypress.php:1558 ..
3630
- #: plugins/mycred-hook-buddypress.php:1575 ../plugins/mycred-hook-buddypress.php:
3631
- #: 1592 ../plugins/mycred-hook-buddypress-links.php:271 ../plugins/mycred-hook-
3632
- #: buddypress-links.php:288 ../plugins/mycred-hook-buddypress-links.php:305 ..
3633
- #: plugins/mycred-hook-buddypress-links.php:324 ../plugins/mycred-hook-
3634
- #: buddypress-links.php:341 ../plugins/mycred-hook-buddypress-links.php:354 ..
3635
- #: plugins/mycred-hook-affiliatewp.php:229 ../plugins/mycred-hook-affiliatewp.
3636
- #: php:246 ../plugins/mycred-hook-sharethis.php:307 ../plugins/mycred-hook-
3637
- #: buddypress-media.php:316 ../plugins/mycred-hook-buddypress-media.php:330 ..
3638
- #: plugins/mycred-hook-buddypress-media.php:344 ../plugins/mycred-hook-
3639
- #: buddypress-media.php:357 ../plugins/mycred-hook-buddypress-media.php:367 ..
3640
- #: plugins/mycred-hook-buddypress-media.php:377 ../plugins/mycred-hook-contact-
3641
- #: form7.php:168 ../plugins/mycred-hook-jetpack.php:545 ../plugins/mycred-hook-
3642
- #: jetpack.php:558 ../plugins/mycred-hook-bbPress.php:443 ../plugins/mycred-hook-
3643
- #: bbPress.php:456 ../plugins/mycred-hook-bbPress.php:473 ../plugins/mycred-hook-
3644
- #: bbPress.php:491 ../plugins/mycred-hook-bbPress.php:508 ../plugins/mycred-hook-
3645
- #: bbPress.php:525 ../plugins/mycred-hook-bbPress.php:551 ../plugins/mycred-hook-
3646
- #: badgeOS.php:336 ../addons/badges/myCRED-addon-badges.php:949
3647
- msgid "Log template"
3648
- msgstr "Plantilla de Registro"
3649
-
3650
- #: ../modules/mycred-module-hooks.php:1017 ../modules/mycred-module-hooks.php:
3651
- #: 1024 ../modules/mycred-module-hooks.php:1048 ../modules/mycred-module-hooks.
3652
- #: php:1055 ../modules/mycred-module-hooks.php:1125 ../modules/mycred-module-
3653
- #: hooks.php:1132 ../modules/mycred-module-hooks.php:1356 ../modules/mycred-
3654
- #: module-hooks.php:1496 ../modules/mycred-module-hooks.php:1513 ..
3655
- #: modules/mycred-module-hooks.php:1562 ../modules/mycred-module-hooks.php:1751 .
3656
- #: ./modules/mycred-module-hooks.php:1768 ../modules/mycred-module-hooks.php:1817
3657
- #: ../modules/mycred-module-hooks.php:3638 ../modules/mycred-module-hooks.php:
3658
- #: 3667 ../plugins/mycred-hook-invite-anyone.php:216 ../plugins/mycred-hook-
3659
- #: invite-anyone.php:219 ../plugins/mycred-hook-invite-anyone.php:237 ..
3660
- #: plugins/mycred-hook-invite-anyone.php:240 ../plugins/mycred-hook-wp-
3661
- #: postratings.php:165 ../plugins/mycred-hook-wp-postratings.php:184 ..
3662
- #: plugins/mycred-hook-gravityforms.php:160 ../plugins/mycred-hook-simplepress.
3663
- #: php:304 ../plugins/mycred-hook-simplepress.php:334 ../plugins/mycred-hook-
3664
- #: buddypress-gallery.php:111 ../plugins/mycred-hook-buddypress.php:616 ..
3665
- #: plugins/mycred-hook-buddypress.php:633 ../plugins/mycred-hook-buddypress.php:
3666
- #: 650 ../plugins/mycred-hook-buddypress.php:667 ../plugins/mycred-hook-
3667
- #: buddypress.php:684 ../plugins/mycred-hook-buddypress.php:717 ../plugins/mycred-
3668
- #: hook-buddypress.php:747 ../plugins/mycred-hook-buddypress.php:777 ..
3669
- #: plugins/mycred-hook-buddypress.php:794 ../plugins/mycred-hook-buddypress.php:
3670
- #: 1454 ../plugins/mycred-hook-buddypress.php:1471 ../plugins/mycred-hook-
3671
- #: buddypress.php:1488 ../plugins/mycred-hook-buddypress.php:1505 ..
3672
- #: plugins/mycred-hook-buddypress.php:1523 ../plugins/mycred-hook-buddypress.php:
3673
- #: 1553 ../plugins/mycred-hook-buddypress.php:1570 ../plugins/mycred-hook-
3674
- #: buddypress.php:1587 ../plugins/mycred-hook-buddypress-links.php:266 ..
3675
- #: plugins/mycred-hook-buddypress-links.php:283 ../plugins/mycred-hook-
3676
- #: buddypress-links.php:300 ../plugins/mycred-hook-buddypress-links.php:310 ..
3677
- #: plugins/mycred-hook-buddypress-links.php:319 ../plugins/mycred-hook-
3678
- #: buddypress-links.php:336 ../plugins/mycred-hook-affiliatewp.php:241 ..
3679
- #: plugins/mycred-hook-events-manager-light.php:205 ../plugins/mycred-hook-
3680
- #: sharethis.php:302 ../plugins/mycred-hook-buddypress-media.php:312 ..
3681
- #: plugins/mycred-hook-buddypress-media.php:326 ../plugins/mycred-hook-
3682
- #: buddypress-media.php:340 ../plugins/mycred-hook-wp-favorite-posts.php:222 ..
3683
- #: plugins/mycred-hook-wp-favorite-posts.php:240 ../plugins/mycred-hook-contact-
3684
- #: form7.php:163 ../plugins/mycred-hook-bbPress.php:438 ../plugins/mycred-hook-
3685
- #: bbPress.php:468 ../plugins/mycred-hook-bbPress.php:503 ../plugins/mycred-hook-
3686
- #: bbPress.php:520 ../plugins/mycred-hook-woocommerce.php:336 ..
3687
- #: includes/shortcodes/mycred_hook_table.php:81 ../addons/transfer/myCRED-addon-
3688
- #: transfer.php:478
3689
- msgid "Limit"
3690
- msgstr "Límite"
3691
-
3692
- #: ../modules/mycred-module-hooks.php:1021 ../modules/mycred-module-hooks.php:
3693
- #: 1037 ../modules/mycred-module-hooks.php:1052 ../modules/mycred-module-hooks.
3694
- #: php:1068 ../modules/mycred-module-hooks.php:1129 ../modules/mycred-module-
3695
- #: hooks.php:1145 ../modules/mycred-module-hooks.php:2268 ../modules/mycred-
3696
- #: module-hooks.php:2285 ../modules/mycred-module-hooks.php:2302
3697
- msgid "Content Author"
3698
- msgstr "Autor del Contenido"
3699
-
3700
- #. can also be "Plantilla de Bitácora"
3701
- #: ../modules/mycred-module-hooks.php:1349 ../modules/mycred-module-hooks.php:
3702
- #: 2624 ../modules/mycred-module-hooks.php:3015 ../plugins/mycred-hook-wp-polls.
3703
- #: php:154 ../plugins/mycred-hook-gd-star-rating.php:121 ../plugins/mycred-hook-
3704
- #: gd-star-rating.php:134 ../plugins/mycred-hook-events-manager-light.php:209 ..
3705
- #: plugins/mycred-hook-events-manager-light.php:222 ../plugins/mycred-hook-wp-
3706
- #: favorite-posts.php:226 ../plugins/mycred-hook-wp-favorite-posts.php:244 ..
3707
- #: plugins/mycred-hook-wp-favorite-posts.php:258 ../plugins/mycred-hook-wp-
3708
- #: favorite-posts.php:271 ../plugins/mycred-hook-woocommerce.php:340 ..
3709
- #: plugins/mycred-hook-badgeOS.php:143 ../plugins/mycred-hook-badgeOS.php:145 ..
3710
- #: plugins/mycred-hook-badgeOS.php:156 ../addons/banking/services/mycred-service-
3711
- #: interest.php:510 ../addons/banking/services/mycred-service-payouts.php:708 ..
3712
- #: addons/gateway/carts/mycred-wpecommerce.php:400 ..
3713
- #: addons/gateway/carts/mycred-woocommerce.php:103 ..
3714
- #: addons/gateway/carts/mycred-woocommerce.php:175 ..
3715
- #: addons/gateway/carts/mycred-marketpress.php:433 ..
3716
- #: addons/gateway/carts/mycred-marketpress.php:472 ../addons/coupons/myCRED-
3717
- #: addon-coupons.php:661 ../addons/buy-creds/modules/buycred-module-core.php:333 .
3718
- #: ./addons/buy-creds/modules/buycred-module-core.php:396
3719
- msgid "Log Template"
3720
- msgstr "Plantilla de Registro"
3721
-
3722
- #: ../modules/mycred-module-hooks.php:1490 ../modules/mycred-module-hooks.php:1745
3723
- #, php-format
3724
- msgid "%plural% for Posts"
3725
- msgstr "%plural% por Posts"
3726
-
3727
- #: ../modules/mycred-module-hooks.php:1507 ../modules/mycred-module-hooks.php:1762
3728
- #, php-format
3729
- msgid "%plural% for Pages"
3730
- msgstr "%plural% por Paginas"
3731
-
3732
- #: ../modules/mycred-module-hooks.php:1556 ../modules/mycred-module-hooks.php:1811
3733
- #, php-format
3734
- msgid "%plural% for %s"
3735
- msgstr "%plural% por %s"
3736
-
3737
- #: ../modules/mycred-module-hooks.php:2258
3738
- #, php-format
3739
- msgid ""
3740
- "%plural% are only awarded when your website has been synced with the Disqus "
3741
- "server!"
3742
- msgstr ""
3743
- "¡%_plural% seran concedidos unicamente cuando tu sitio web se ha "
3744
- "sincronizado con el servidor de Disqus!"
3745
-
3746
- #: ../modules/mycred-module-hooks.php:2261 ../includes/classes/class.query-log.
3747
- #: php:1550
3748
- msgid "Approved Comment"
3749
- msgstr "Comentario Aprobado"
3750
-
3751
- #: ../modules/mycred-module-hooks.php:2264 ../modules/mycred-module-hooks.php:
3752
- #: 2281 ../modules/mycred-module-hooks.php:2298
3753
- msgid "Comment Author"
3754
- msgstr "Autor del Comentario"
3755
-
3756
- #: ../modules/mycred-module-hooks.php:2278
3757
- msgid "Comment Marked SPAM"
3758
- msgstr "Comentario Marcado como SPAM"
3759
-
3760
- #: ../modules/mycred-module-hooks.php:2295
3761
- msgid "Trashed / Unapproved Comments"
3762
- msgstr "Comentarios Destrozados / No Aprobados"
3763
-
3764
- #: ../modules/mycred-module-hooks.php:2312 ../modules/mycred-module-hooks.php:
3765
- #: 2631 ../addons/banking/services/mycred-service-payouts.php:597 ..
3766
- #: addons/banking/services/mycred-service-payouts.php:758 ..
3767
- #: addons/transfer/myCRED-addon-transfer.php:435 ../addons/coupons/myCRED-addon-
3768
- #: coupons.php:250
3769
- msgid "Limits"
3770
- msgstr "imites"
3771
-
3772
- #: ../modules/mycred-module-hooks.php:2315
3773
- msgid "Limit per post"
3774
- msgstr "Límite por Entrada"
3775
-
3776
- #. what is the Spanish word for "post"? o anglicismo?
3777
- #: ../modules/mycred-module-hooks.php:2317
3778
- msgid ""
3779
- "The number of comments per post that grants %_plural% to the comment author. "
3780
- "Use zero for unlimited."
3781
- msgstr ""
3782
- "El numero de comentarios por cada post que concede %_plur